/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fff;
    width: 100%;
    padding: 5px 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #1E1E1E;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 5px 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
    color: #C00000;
}

.animate__animated {
    visibility: visible;
}

/* Estilos para el botón de contacto */
.nav-links .btn-contact {
    background-color: #C00000;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid #C00000;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Efecto "GROW ELLIPSE" */
.ov-btn-grow-ellipse::after {
    content: "";
    background: #fff;
    position: absolute;
    z-index: -1;
    padding: 5px 20px;
    display: block;
    border-radius: 50%;
    left: -50%;
    right: -50%;
    top: -150%;
    bottom: -150%;
    transform: scale(0, 0);
    transition: all 0.4s ease;
}

.ov-btn-grow-ellipse:hover::after {
    transition: all 0.6s ease-out;
    transform: scale(1, 1);
}

.ov-btn-grow-ellipse:hover {
    background-color: #fff;
    color: #C00000;
    border-color: #C00000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.ov-btn-grow-ellipse:active {
    transform: translateY(1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    margin-right: 20px;
}

/* Estilos para el menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #1E1E1E;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Añadir esta clase */
.nav-links.nav-active {
    display: flex;
}

/* Añadir estas animaciones */
.hamburger.toggle .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        z-index: 9;
    }

    .nav-links.nav-active {
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links a {
        padding: 20px;
        border-bottom: 1px solid #ddd; /* Eliminar esta línea si no quieres el borde */
    }

    .nav-links a:hover {
        background-color: transparent; /* Cambiar a transparent para eliminar el efecto hover gris */
    }

    .nav-links .btn-contact {
        margin: 20px auto;
    }

    header {
        padding: 5px 20px;
    }
    
    .logo img {
        height: 50px; /* Reduce el tamaño del logo */
    }
}

/* Nueva clase para el header fijo */
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}




/* Estilos para la sección principal */
#main {
    background: url('images/fondo.png') no-repeat bottom center / cover, #FFFFFF;
    min-height: 691px;
    padding: 20px 5vw 20px 5vw; /* Añadido padding inferior */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    position: relative;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    padding-top: 20px;
    flex-wrap: nowrap;
}

.text, .image-container {
    flex: 1;
    max-width: 50%;
}

.text h1 {
    font-family: 'Merriweather', serif;
    font-size: 50px;
    color: #191919;
    margin-bottom: 40px;
}

.text p {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #393939;
    margin-bottom: 30px;
}

/* Estilos para el botón "Conversemos" */
.btn-conversemos {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #C00000;
    padding: 10px 20px;
    border: 2px solid #C00000;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    margin-top: 80px;
    transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-conversemos::after {
    content: "";
    background: #C00000;
    position: absolute;
    z-index: -1;
    padding: 5px 20px;
    display: block;
    border-radius: 50%;
    left: -50%;
    right: -50%;
    top: -150%;
    bottom: -150%;
    transform: scale(0, 0);
    transition: all 0.4s ease;
}

.btn-conversemos:hover::after {
    transition: all 0.6s ease-out;
    transform: scale(1, 1);
}

.btn-conversemos:hover {
    background-color: #C00000;
    color: #fff;
    border-color: #C00000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-conversemos:hover .btn-icon {
    content: url('images/whatsAppB.svg');
}

.btn-conversemos:active {
    background-color: #C00000;
    color: #fff;
    transform: translateY(1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    width: 28.05px;
    height: 28.05px;
    margin-right: 10px;
}

/* Estilos generales para .image-container */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0; /* Elimina el margen superior */
    position: relative;
    width: 100%;
    height: 691px; /* Altura según la especificación */
    flex-wrap: wrap;
}

/* Estilos para cada imagen */
.image-container img {
    position: absolute;
}

/* Posicionamiento absoluto de las imágenes en pantallas grandes */
.img1 { width: 232px; height: 284px; left: 8px; top: 256px; }
.img2 { width: 32.02px; height: 153px; left: 175px; top: 198px; }
.img3 { width: 216px; height: 291px; left: 0px; top: 43px; }
.img4 { width: 122px; height: 243px; left: 261px; top: 91px; }
.img5 { width: 142px; height: 167px; left: 251px; top: 17px; }
.img6 { width: 68px; height: 159px; left: 429px; top: 150px; }
.img7 { width: 175px; height: 183px; left: 419px; top: 106px; }
.img8 { width: 178px; height: 195px; left: 232px; top: 184px; }
.img9 { width: 24px; height: 198px; left: 582px; top: 145px; }
.img10 { width: 399px; height: 195px; left: 251px; top: 327px; }
.img11 { width: 229px; height: 133px; left: 304px; top: 208px; }
.img12 { width: 151px; height: 87px; left: 48px; top: 299px; }


/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .btn-conversemos {
        margin: 20px auto; /* Centra el botón horizontalmente */
        display: block; /* Asegura que el botón sea un bloque para que el margen auto funcione */
    }
    .content {
        flex-direction: column;
        text-align: center;
    }

    .text, .image-container {
        max-width: 100%;
    }

    .text {
        margin-bottom: 20px;
    }

    .image-container {
        height: auto;
        position: relative;
        padding-bottom: 20px; /* Añadir padding inferior para asegurar que las imágenes no se superpongan con la siguiente sección */
        min-height: 200px; /* Añadir una altura mínima para asegurar que tenga altura suficiente */
        
    }

    .image-container img {
        position: absolute;
    }

    /* Posicionamiento absoluto de las imágenes en pantallas pequeñas */
    .img1 {
        width: 116px;
        height: 142.27px;
        left: 8px;
        top: 119.73px;
    }
    .img2 {
        width: 16.01px;
        height: 76.65px;
        left: 100.5px;
        top: 90.67px;
    }
    .img3 {
        width: 108px;
        height: 145.78px;
        left: 24px;
        top: 13.02px;
    }
    .img4 {
        width: 61px;
        height: 121.73px;
        left: 164.5px;
        top: 37.07px;
    }
    .img5 {
        width: 71px;
        height: 83.66px;
        left: 159.5px;
        top: 0px;
    }
    .img6 {
        width: 34px;
        height: 79.65px;
        left: 270.5px;
        top: 66.63px;
    }
    .img7 {
        width: 87.5px;
        height: 91.67px;
        left: 253.5px;
        top: 44.59px;
    }
    .img8 {
        width: 89px;
        height: 97.69px;
        left: 150px;
        top: 83.66px;
    }
    .img9 {
        width: 12px;
        height: 99.19px;
        left: 351px;
        top: 71.12px;
    }
    .img10 {
        width: 199px;
        height: 107px;
        left: 172px;
        top: 155px;
    }
    .img11 {
        width: 114.5px;
        height: 66.63px;
        left: 213px;
        top: 104.68px;
    }
    .img12 {
        width: 75.5px;
        height: 43.58px;
        left: 58px;
        top: 141.27px;
    }
}


/* Estilos para la sección "Nuestros Servicios" */
#servicios {
    background-color: #F2F5FD;
    text-align: center;
    padding: 50px 5vw;
    clear: both;
}

#servicios h2 {
    font-size: 0;
    margin-bottom: 10px;
}

.titulo-nuestros {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #191919;
    font-weight: 400;
    margin-right: 10px;
}

.titulo-servicios {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #C00000;
    font-weight: 900;
}

#servicios .line {
    width: 100px;
    height: 3px;
    background-color: #C00000;
    margin: 20px auto;
    transform-origin: left;
    transform: scaleX(0);
}

#servicios h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #393939;
    font-weight: 500;
    margin-bottom: 50px;
}

.servicios-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.servicio {
    text-align: center;
    width: 200px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.servicio img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    animation: float-card 3s ease-in-out infinite;
}

.servicio h4 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #191919;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.servicio p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #393939;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.servicio:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #C00000;
}

.servicio:hover img {
    animation: none;
}

.servicio:nth-child(1):hover img {
    content: url('images/PrescriptivaB.svg');
}

.servicio:nth-child(2):hover img {
    content: url('images/PredictivaB.svg');
}

.servicio:nth-child(3):hover img {
    content: url('images/DescriptivaB.svg');
}

.servicio:nth-child(4):hover img {
    content: url('images/DatosB.svg');
}

.servicio:nth-child(5):hover img {
    content: url('images/ConsultoríaB.svg');
}

.servicio:hover h4,
.servicio:hover p {
    color: #FFFFFF;
}

.servicio h4 span {
    font-size: 18px;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/*¿quienes somos*/
#nosotros {
    background-color: #FFFFFF;
    text-align: center;
    padding: 50px 5vw;
    position: relative;
}

#nosotros h2 {
    font-size: 0;
    margin-bottom: 10px;
    white-space: nowrap;
}

.titulo-¿Quiénes {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #191919;
    font-weight: 400;
    margin-right: 10px;
}

.titulo-Somos {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #C00000;
    font-weight: 900;
}

.titulo-pregunta {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #191919;
    font-weight: 400;
    margin-right: 10px;
}

#nosotros .line {
    width: 100px;
    height: 3px;
    background-color: #C00000;
    margin: 20px auto;
    transform-origin: left;
    transform: scaleX(0);
}



.nosotros-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.nosotros-imagen,
.nosotros-texto {
    flex: 1;
    max-width: 50%;
    box-sizing: border-box;
}

.nosotros-imagen {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.nosotros-imagen img {
    max-width: 100%;
    height: auto;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.nosotros-texto {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    line-height: 27px;
    text-align: left;
    padding-left: 20px;
    padding-right: 200px;
    box-sizing: border-box;
}

.scifi-data {
    color: #C00000;
    font-weight: 600;
}

.regular-text {
    color: #393939;
    font-weight: 400;
}

.semi-bold-text {
    color: #393939;
    font-weight: 600;
}

.nosotros-texto p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .nosotros-content {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-imagen,
    .nosotros-texto {
        max-width: 100%;
    }

    .nosotros-texto {
        text-align: center;
        padding-right: 20px;
    }
    
}

/* Estilos para la imagen satélite */
.imagen-satelite {
    position: absolute;
    top: 106%;
    left: 80%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 40%;
    max-width: 350px;
    opacity: 0.8;
    pointer-events: none;
    animation: float-satellite 3s ease-in-out infinite;
}

@keyframes float-satellite {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -55%);
    }
}

/* Estilos para la sección "Sectores de Experiencia" */
#sectores {
    text-align: center;
    padding: 50px 5vw;
    background: url('images/imagenExperiencia.gif') no-repeat center center;
    background-size: cover;
}

.titulo-Sectores {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 400;
    margin-right: 3px;
    white-space: nowrap; /* Asegura que el texto no se separe en diferentes líneas */
}

.titulo-Experiencia {
    font-family: 'Merriweather', serif;
    font-size: 40px;
    color: #C00000;
    font-weight: 900;
    white-space: nowrap; /* Asegura que el texto no se separe en diferentes líneas */
}

#sectores h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    white-space: nowrap; /* Asegura que el texto no se separe en diferentes líneas */
}

#sectores .line {
    width: 100px;
    height: 3px;
    background-color: #C00000;
    margin: 20px auto 100px auto;
    transform-origin: left;
    transform: scaleX(0);
}

.primera-fila {
    margin-top: 100px;
}

.sectores-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sector {
    text-align: center;
    width: 200px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent;
    border-radius: 12px;
}

.sector img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.sector h4 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    color: #FFFFFF;
}

.sector::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        500px circle at var(--mouse-x) var(--mouse-y),
        hsla(348, 80%, 60%, 0.35),
        transparent 40%
    );
    border-radius: inherit;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

#sectores:hover > .sector::before {
    opacity: 1;
}

.sector:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    

    #sectores h2 {
        flex-direction: column; /* Asegura que las palabras no se separen en diferentes líneas */
    }
}


/* Sección Formulario */
#contacto {
    padding: 80px 10vw 20px;
    background-color: #ffffff;
}



.contacto-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.contacto-info {
    flex: 1;
    max-width: 45%;
}

.contacto-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #191919;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.info-item img {
    width: 33px;
    height: 33px;
    margin-right: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #393939;
}

.info-item-element {
    visibility: hidden;
}

.contacto-form {
    flex: 1;
    max-width: 45%;
    background-color: #191919;
    padding: 40px;
    border-radius: 20px;
}

.contacto-form p {
    margin-bottom: 20px;
}

.contacto-form .form-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.titulo-Formulario {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
}

.titulo-2Formulario {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #C00000;
}

.contacto-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacto-form .form-row {
    display: flex;
    gap: 15px;
}


.contacto-form input,
.contacto-form textarea {
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #393939;
    border: 1px solid #cccccc;
    border-radius: 5px;
    flex: 1;
    width: 100%; /* Asegura que los inputs tomen el ancho completo del contenedor */
    box-sizing: border-box; /* Incluye el padding y borde dentro del ancho total */
}

.contacto-form textarea {
    min-height: 100px;
}

.contacto-form textarea[name="mensaje"] {
    min-height: 200px;
}

@media (max-width: 768px) {
    
    .contacto-info h2 {
        font-size: 30px; /* Ajusta el tamaño de fuente en pantallas pequeñas */
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .contacto-form .form-row {
        flex-direction: column; /* Asegura que los inputs se apilen verticalmente en pantallas pequeñas */
        gap: 10px; /* Ajusta el espacio entre los elementos */
    }
}
/* Estilos específicos para el botón de enviar */
.btn-enviar {
    background-color: #C00000;
    color: #fff;
    width: 115px;
    height: 40px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid #C00000;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-top: 20px;
}

/* Efecto "GROW ELLIPSE" */
.btn-enviar.ov-btn-grow-ellipse::after {
    content: "";
    background: #fff;
    position: absolute;
    z-index: -1;
    padding: 5px 20px;
    display: block;
    border-radius: 50%;
    left: -50%;
    right: -50%;
    top: -150%;
    bottom: -150%;
    transform: scale(0, 0);
    transition: all 0.4s ease;
}

.btn-enviar.ov-btn-grow-ellipse:hover::after {
    transition: all 0.6s ease-out;
    transform: scale(1, 1);
}

.btn-enviar.ov-btn-grow-ellipse:hover {
    background-color: #fff;
    color: #C00000;
    border-color: #C00000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-enviar.ov-btn-grow-ellipse:active {
    transform: translateY(1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contacto-container {
        flex-direction: column;
    }

    .contacto-info,
    .contacto-form {
        max-width: 100%;
    }

    .contacto-form .form-row {
        flex-direction: column;
    }
}

/* Estilos para la sección CTA */
#cta {
    position: relative;
    background: url('images/cta.gif') no-repeat center center;
    background-size: cover;
    padding: 100px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
    flex-wrap: wrap; 
}

.cta-texto {
    flex: 3;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    margin-top: 20px;
    margin-right: 30px;
    padding-top: 15px;
    padding-right: 25px;
}

/* Estilos para el botón "Conversemos" en la sección CTA */
.cta-boton {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-conversemos-cta {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #C00000;
    padding: 10px 20px;
    border: 2px solid #C00000;
    border-radius: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-conversemos-cta::after {
    content: "";
    background: #C00000;
    position: absolute;
    z-index: -1;
    padding: 5px 20px;
    display: block;
    border-radius: 50%;
    left: -50%;
    right: -50%;
    top: -150%;
    bottom: -150%;
    transform: scale(0, 0);
    transition: all 0.4s ease;
}

.btn-conversemos-cta:hover::after {
    transition: all 0.6s ease-out;
    transform: scale(1, 1);
}

.btn-conversemos-cta:hover {
    background-color: #C00000;
    color: #fff;
    border-color: #C00000;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-conversemos-cta:hover .btn-icon-cta {
    content: url('images/whatsAppB.svg');
}

.btn-conversemos-cta:active {
    background-color: #C00000;
    color: #fff;
    transform: translateY(1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-icon-cta {
    width: 28.05px;
    height: 28.05px;
    margin-right: 10px;
}
@media (max-width: 768px) {
    #cta {
        padding-top: 20px; 
    }

    .cta-container {
        flex-direction: column; 
        align-items: center;
        text-align: center;
    }

    .cta-texto {
        font-size: 30px; 
        margin-right: 0;
        margin-bottom: 20px;
        padding-right: 0;
        margin-top: 60px; 
    }

    .cta-boton {
        margin-top: 0;
    }

    .btn-conversemos-cta {
        font-size: 20px; 
        padding: 10px 20px;
    }
}


/* Estilos para el footer */
footer {
    background-color: #000000;
    position: relative;
    width: 100%;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;  
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1526px;
    padding: 20px;
    flex-wrap: wrap; 
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.footer-margin-paragraph {
    margin-top: 10px;
}

.margin-top-img {
    margin-top: 30px;
}

.logo-column {
    flex: 0.5;
}

.contact-column {
    flex: 2;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2px;
}

.footer-contact-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-contact {
    display: flex;
    align-items: center;
    margin: 10px;
}

.footer-contact img {
    margin-right: 10px;
    width: 24px;
    height: auto;
}

.alianzas-img {
    width: 30px;
    height: auto;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 2px; /* Ajusta el margen superior para una mejor visualización en pantallas pequeñas */
}

.footer-line {
    border-top: 1px solid #FFFFFF;
    margin: 5px auto;
    width: 90%; 
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 10px; 
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        padding: 10px 0;
    }

    .footer-contact-wrapper {
        flex-direction: column;
    }

    .footer-line {
        width: 90%;
    }
}
