/********** Template CSS **********/
:root {
    --primary: #742ad3;
    --secondary: #878787;
    --light: #f7f2f0;
    --dark: #212121;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 162px;
    z-index: 99;
}


/*** Heading ***/

h3,
h4,
.fw-semi-bold {
    font-weight: 600;
    color: #772dd6 ;
    font-size: 20px;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/

.btn-square {
    width: 38px;
    height: 38px;
}
.btn-primary {
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    transition: all 0.5s ease;
    animation: titilarLuz 4s infinite; /* Aumentamos la duración para que sea más lenta */
  }
  
  @keyframes titilarLuz {
    0% {
      box-shadow: 0 0 5px #732ad36e, 0 0 10px #732ad36e, 0 0 15px #732ad36e; /* Resplandor suave */
    }
    50% {
      box-shadow: 0 0 10px #732ad3da, 0 0 15px #742ad3, 0 0 30px #732ad3da; /* Mayor intensidad en el centro */
    }
    100% {
      box-shadow: 0 0 5px #732ad36e, 0 0 10px #732ad36e, 0 0 15px #732ad36e; /* Vuelve al resplandor suave */
    }
  }
  
.btn-secondary{
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.destacado {
    display: block;
    position: relative;
    width: 130px;
    color: #000;
    margin-left: 21%;
    margin-bottom: 10px;
  }
  
  .destacado::after {
    content: '';
    position: absolute;
    bottom: 0; /* Coloca el borde en la parte inferior */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e8e8e8, #742ad3); /* Gradiente del borde */
  }


.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}
@media (max-width: 780px){
    .btn-primary{
        width: 98%;
        padding: 10px 0 14px;
        margin: 0px 0px 20px 0 !important;
    }
    .btn-secondary{
        width: 98%;
        padding: 10px 0 14px;
        margin: 0px 0px 20px 0 !important;
    }
    h1{
        font-size: 2.5rem;
    }
    h2{
        font-size: 1.9rem;
        margin-bottom: 25px !important;
    }
    .back-to-top{
        display: none !important;
    }
    .destacado {
        margin-left: 10%;
      }
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    font-weight: 400;
    color: var(--secondary) !important;
    outline: none;
    transition: .5s;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand h1 {
    background: url(../img/comunia.svg) no-repeat center;
    height: 38px;
    width: 165px;
    margin-bottom: 0;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .btn{
    height: 43px;
    margin-right: 10px;
}
.navbar .mb{
    display: none;
}
.navbar-brand{
    padding: 15px 0;
}
@media (max-width: 780px){
    .navbar .dk{
        display: none;
    }
    .navbar .mb{
        display: block;
        margin: auto;
    }
    .navbar{
        background-color: #f2f2f2;
    }
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #F4F4F4;
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid #FFF;
        box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.14);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 8px 0;
        text-align: center;
        margin: auto;
        color: var(--secondary) !important;
        border-bottom: solid 1px #fff;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: solid 1px #fff;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.14);
        z-index: 999;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: #F4F4F4;
    }

    .sticky-top.navbar-light .nav-link{
        color: #13042B;
      }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: url(../img/comunia.svg) no-repeat center;
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/* Estilos para la barra de navegación */
.navbar-nav {
    display: flex; /* Usamos flexbox para organizar los elementos */
    justify-content: space-between; /* Espacio entre el logo y los enlaces */
    align-items: center; /* Alineamos los elementos verticalmente */
    width: 100%; /* Aseguramos que ocupe el ancho completo */
  }
  
  /* Estilo para el logo */
  .navbar-brand {
    display: flex; /* Permite al logo y al texto comportarse como flex items */
    align-items: center; /* Alinea el logo y el texto verticalmente */
    color: #fff; /* Color blanco */
    text-decoration: none; /* Elimina el subrayado */
  }
  
  /* Contenedor de los enlaces de navegación */
  .navbar-links {
    display: flex; /* Usamos flexbox para alinear los enlaces en una fila */
    gap: 25px; /* Ajuste del espacio entre los enlaces */
    margin-left: auto; /* Empuja los enlaces hacia la derecha */
  }
  
  .navbar-links a {
    color: #fff; /* Color blanco para los enlaces */
    text-decoration: none; /* Elimina el subrayado */
    font-size: 16px; /* Tamaño de fuente */
    padding: 10px 15px; /* Espaciado alrededor de los enlaces */
  }
  @media (max-width: 780px){
    .navbar-links {
        display: block;
        margin: auto;
      }
}
/*** Hero Header ***/
.hero-header {
    padding: 13rem 0 10rem;
    position: relative;
}
.hero-header .spline{
    position: absolute;
    height: 418px;
    right: 1030px;
}
.ola {
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -50%;
    width: 100%;
  }
.hero-header .hpa-tierra {
    position: absolute;
    left: 5%;
    top: 70px;
    width: 145px;
    z-index: 10;
    animation-name: tierra;
    animation-iteration-count: infinite;
    animation-delay: 2000ms;
    animation-duration: 20700ms;
    animation-fill-mode: forwards;
    transform-origin: center;
    mix-blend-mode: multiply;
}

@keyframes tierra {
    0% {
        top: 125px;
        left: 5%;
        transform: scale(1); /* Sin zoom */
    }
    40% {
        top: 230px; /* Primero baja 50px */
        left: 5%; /* Se queda en la misma posición horizontal */
        transform: scale(1); /* Sin zoom */
    }
    70% {
        top: 350px; /* Mantiene la misma altura */
        left: 10%; /* Empieza a moverse hacia la derecha */
        transform: scale(0.6); /* Zoom out */
    }
    100% {
        top: 125px; /* Regresa a la posición original vertical */
        left: 5%; /* Regresa a la posición original horizontal */
        transform: scale(1); /* Vuelve al tamaño original */
    }
}

.hero-header .hpa-circulo {
    position: absolute;
    left: 23%;
    top: 50px;
    width: 110px;
    z-index: 10;
    animation-name: circulo;
    animation-iteration-count: infinite;
    animation-delay: 1500ms; /* Puedes ajustar el delay si deseas que empiece más tarde */
    animation-duration: 31000ms; /* Duración de la animación más corta para variar el tiempo */
    animation-fill-mode: forwards;
    transform-origin: center;
    mix-blend-mode: multiply;
}

@keyframes circulo {
    0% {
        top: 50px; /* Mantiene la misma altura */
        left: 23%; /* Comienza en la posición inicial */
        transform: scale(1); /* Sin zoom */
    }
    25% {
        top: 50px; /* Mantiene la misma altura */
        left: 27%; /* Se mueve un poco hacia la derecha */
        transform: scale(1.1); /* Aumenta ligeramente el tamaño */
    }
    40% {
        top: 50px; /* Mantiene la misma altura */
        left: 30%; /* Se mueve más a la derecha */
        transform: scale(0.9); /* Reduce el tamaño */
    }
    80% {
        top: 50px; /* Mantiene la misma altura */
        left: 45%; /* Se mueve aún más hacia la derecha */
        transform: scale(1.2); /* Aumenta el tamaño */
    }
    100% {
        top: 50px; /* Vuelve a la misma altura */
        left: 23%; /* Regresa a la posición original */
        transform: scale(1); /* Vuelve al tamaño original */
    }
}




  .hero-header .hpa-botella {
position: absolute;
  right: 5%;
  top: 90px;
  width: 180px;
  z-index: 10;
  animation-name: botella;
  animation-iteration-count: infinite;
  animation-delay: 0;
  animation-duration: 22000ms;
  animation-fill-mode: forwards;
  mix-blend-mode: multiply;
  }
  @keyframes botella {
    0%{top:270px; rotate: 180deg}
    25%{top:200px; right:2%; rotate: 180deg; width: 150px;}
    65%{top:40px; rotate: 160deg; right:10%;}
    100%{top:270px; right:5%; rotate: 180deg}
 }

 .hero-header .text-center{
    max-width: 1000px;
  margin: auto;
 }


@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 7rem 0;
    }
}
.hero-header-ss {
    padding: 9rem 0 0rem;
}
.caja-ss h5{
    margin-top: 15px;
  }
@media (max-width: 991.98px) {
    .hero-header-ss {
        padding: 0rem 0 0rem 0;
    }
}
@media (max-width: 780px){
    .hero-header-ss {
        padding-top: 1rem !important;
      }
      .navbar-light .navbar-brand h1 {
        background: url(../img/comunia.svg) no-repeat center;
        height: 35px;
        width: 162px;
        margin-left: 28px;
      }
      .hero-header .text-center {
        max-width: 90%;
        margin: auto;
        padding: 0;
      }
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.progress  .bg-primary {
    background-color: #0490db !important;
  }

/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: .5s;
}

.service-item  .simulation-uno{
    color: var(--light);
    background: url(../img/1x/simulator-1.png) center center no-repeat;
    background-size: contain;
}
.service-item:hover .simulation-uno {
    color: var(--dark);
    background: url(../img/1x/simulator-1b.png) center center no-repeat;
    background-size: contain;
}
.service-item  .simulation-dos{
    color: var(--light);
    background: url(../img/1x/simulator-2.png) center center no-repeat;
    background-size: contain;
}
.service-item:hover .simulation-dos {
    color: var(--dark);
    background: url(../img/1x/simulator-2b.png) center center no-repeat;
    background-size: contain;
}
.service-item  .simulation-tres{
    color: var(--light);
    background: url(../img/1x/simulator-3.png) center center no-repeat;
    background-size: contain;
}
.service-item:hover .simulation-tres {
    color: var(--dark);
    background: url(../img/1x/simulator-3b.png) center center no-repeat;
    background-size: contain;
}
.service-item  .simulation-cuatro{
    color: var(--light);
    background: url(../img/1x/simulator-4.png) center center no-repeat;
    background-size: contain;
}
.service-item:hover .simulation-cuatro {
    color: var(--dark);
    background: url(../img/1x/simulator-4b.png) center center no-repeat;
    background-size: contain;
}
.service-item  .simulation-cinco{
    color: var(--light);
    background: url(../img/1x/simulator-5.png) center center no-repeat;
    background-size: contain;
}
.service-item:hover .simulation-cinco {
    color: var(--dark);
    background: url(../img/1x/simulator-5b.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(247, 72, 137);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
    background: #9a52f7;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    color: #cecece;
    min-height: 257px;
}
.testimonial-carousel .testimonial-item:hover {
    border: solid 1px #fff;
}
.testimonial-carousel .testimonial-item h5{
    color: #f7f2f0;
    font-size: 1.3rem;
}
.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev{
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    color: #fff;
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
    padding: 11px 13px;
}
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    color: #fff;
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
    padding: 11px 17px;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
@media (max-width: 780px){
    .testimonial-carousel .testimonial-item h5 {
        padding-right: 30px;
      }
}

/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

.accordion-button{
    font-size: 1.5rem;
    color: #212121;
    background-color: #f2f2f2;
    border-bottom: solid 2px #212121;
    margin-bottom: 30px;
}
.accordion-item{
    background: none;
    border: none;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}
  .accordion-button:not(.collapsed) {
    color: #8F35EF;
    background-color: #f2f2f2;
    box-shadow: none;
    border-bottom: solid 2px #8F35EF;
    margin-bottom: 0;
  }
  .accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
    border-bottom: solid 2px #8F35EF;
  }
  .accordion-button::after {
    background-image: url(../img/drop-down.svg);
  }
  
.accordion-button:not(.collapsed)::after {
    background-image: url(../img/drop-up.svg);
}
.fondo-violeta{
    margin: 20px 0;
    color: #fff;
    background: #13042B;
}
.fondo-violeta ul{
    color: #F74889;
}
.fondo-gris{
    background: #F6F4F9;
    color: #13042B;
    text-align: center;
}
.fondo-gris h4 img{
    margin-top: -12px;
    margin-left: 10px;
}
.caja-ss {
    transition: .5s;
    min-height: 208px;
  }
.img-2{
    object-fit: fill;
    height: 246px;
    margin-bottom: 35px;
}
.img-4{
    object-fit: fill;
    height: 326px;
}
.img-5{
    object-fit: fill;
    height: 305px;
}

.carousel {
    background: url(../img/fondo-09.png) no-repeat;
    background-size: 100%;
height: 721px;
}
.imagenes-carousel{
    width: 60%;
    margin: 170px auto 0;
}


.tabs-prod .nav-link {
    color: #959595;
    padding: .5rem 5rem;
    font-weight: 800;
  }
  .tabs-prod .nav-link.active,   .tabs-prod .nav-item.show .nav-link {
    background-color: #D0FF7D;
  }
  .tabs-prod{
    margin-bottom: 30px;
  }

  .testimonial-carousel .owl-item img {
    display: block;
    width: 60px;
    float: left;
    margin-top: -4px;
    margin-left: -7px;
  }

  .fa-solid{
    font-size: 1rem;
  margin-left: 5px;
  }

  .casosexito-carousel .img-casosexito{
    float: left;
    width: 30%;
    overflow: hidden;
    margin-right: 20px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    height: 348px;
  }
  .casosexito-carousel .img-casosexito img{
    height: 100%;
  }
  .casosexito-carousel span{
display: block;
  }
  .casosexito-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.casosexito-carousel .owl-nav .owl-prev{
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    color: #878787;
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
    padding: 11px 13px;
}
.casosexito-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    color: #878787;
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
    padding: 11px 17px;
}

.casosexito-carousel .owl-nav .owl-prev:hover,
.casosexito-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}
  .tt-evaluacion{
    background-image: linear-gradient(to right, #fabd87, #f27ebe); /* Degradado de colores */
  -webkit-background-clip: text; /* Aplica el fondo solo al texto */
  color: transparent; /* Hace que el color del texto sea transparente para ver el degradado */
  }
  .bg-dark{
    color: #f2f2f2;
    background: url(../img/bg-evaluacion.png);
  }
  .evaluacion ul{
    list-style: none;
    padding: 0;
  }
  .evaluacion .col-lg-6{
    padding: 0;
  }
  .evaluacion li{
    margin-bottom: 10px;
  }
  .evaluacion i{
    background-image: linear-gradient(to right, #fabd87, #f27ebe); /* Degradado de colores */
    -webkit-background-clip: text; /* Aplica el fondo solo al texto */
    color: transparent; /* Hace que el color del texto sea transparente para ver el degradado */
  }
  .evaluacion .calendar{
    border: solid 1px #fff;
    border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 30px;
  }
  .evaluacion .calendar .destacado{
    color: #fff;
    margin-left: 0;
  }
  @media (max-width: 780px){
    .evaluacion ul{
        padding-left: 0;
      }
      .casosexito-carousel .img-casosexito{
        width: 100%;
        float: none;
    margin-bottom: 20px;
      }
      .casosexito-carousel .img-casosexito img{
        height: 114%;
      }
  }
  .navbar-links .active{
    color: #742ad3;
  }

  .nosotros{
    padding: 13rem 0 5rem;
    position: relative;
    border-bottom: solid 1px #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.14);
  }
  .nosotros p{
    color: #742ad3;
  }
  .nosotros-2 strong{
    color: #742ad3;
  }
  .que-necesitamos{
    background: #ffffff6e;
    padding: 30px;
    border-bottom: solid 1px #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.14);
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .que-necesitamos img{
    float: left;
  margin-right: 30px;
  width: 300px;
  }
  .nosotros-2 h4 img {
    display: block;
    width: 60px;
    float: left;
    margin-top: -4px;
    margin-left: -7px;
  }
  .nosotros-2 .servicios{
    border: solid 2px #752bd4;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 20px;
    text-align: left;
    width: 32%;
    margin: auto;
  }
  .elegirnos {
    padding: 30px;
    background: #9a52f7;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    color: #cecece;
    min-height: 200px;
    width: 24%;
    margin: auto;
  }
  .elegirnos  h5 {
    color: #f7f2f0;
    font-size: 1.3rem;
  }
  .porque-elegirnos .btn-primary {
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    transition: all 0.5s ease;
    animation: none;
    position: absolute;
    bottom: -9px;
    right: 11%;
  }
  .porque-elegirnos{
    position: relative;
  }
  @media (max-width: 991.98px) {
    .nosotros {
        padding: 7rem 0 3rem 0;
    }
    .que-necesitamos img{
      margin-right: 0;
      width: 100%;
      }
      .nosotros-2 .servicios {
        width: 90%;
        margin-bottom: 20px;
      }
      .elegirnos {
        width: 88%;
        margin-bottom: 20px;
      }
      .porque-elegirnos .btn-primary {
        position: initial;
      }
  }

  .nosotros-2 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .porque-elegirnos{
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  @media (min-width: 1700px){
    .casosexito-carousel .img-casosexito {
        height: 255px;
      }
  }
  .px-7{
    padding-right: 10rem !important;
  padding-left: 10rem !important;
  }
  .bg-porqueelegirnos{
    background: url(../img/bg-nosotros.png);
    background-size: 101%;
  }
  @media (max-width: 780px){
    .nosotros-2 {
        padding-right: 5% !important;
        padding-left: 5% !important;
      }
      .px-7{
        padding-right: 5% !important;
        padding-left: 5% !important;
      }
      .porque-elegirnos {
        padding-right: 5% !important;
        padding-left: 5% !important;
      }
      .bg-porqueelegirnos {
        background: linear-gradient(180deg, rgba(116,42,211,1) 0%, rgba(154,82,247,1) 100%) !important;
      }
  }
  #tecnologias .logos{
    display: flex;
    justify-content: space-between;
    margin: 45px 0;
  }

  footer .nav-link{
    font-weight: 500;
  }
  @media (max-width: 780px){
    #tecnologias .logos{
        display: block;
        text-align: center;
      }
      #tecnologias .logos img{
        margin: 20px;
      }
  }
  .cUP1np9gMvFQrcPftuf{
    margin: 0 !important;
  padding: 0 !important;
  background: #212121 !important;
  }
  #faq h3{
    font-weight: 500;
  color: #212121;
  font-size: 1.5rem;
  }
  #faq .col-lg-6{
width: 48%;
margin: 0 auto 25px;
  }
  #faq .col-lg-12{
    margin-bottom: 25px;
      }
      #faq .dest{
        border: solid 2px #6222cc;
          }
          #faq .dest h3{
            color: #6222cc;
          }
#faq .mas-dudas h3 {
  color: #6222cc;
  text-align: center;
}
@media (max-width: 780px){
    #faq .col-lg-6 {
        width: 100%;
      }
      #faq .col-lg-12{
       text-align: left !important;
          }
}
footer .contacto-msj{
  display: none;
}
#hablemos {
  background: url(../img/whatsapp-2.svg) no-repeat center #f2f2f2;
  background-size: auto;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.14);
border-radius: 90px;
width: 75px;
height: 75px;
display: block;
position: fixed;
bottom: 30px;
right: 30px;
z-index: 199;
background-size: 50px;
}
#hablemos:hover {
  background: url(../img/whatsapp-2.svg) no-repeat center #e8e8e8;
  box-shadow: 1px 2px 7px rgba(74, 74, 74, 0.514);
  background-size: 53px;
}