/* Variables de inicio */
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300);
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url(' https://fonts.googleapis.com/css?family=Proxima+Nova ');
:root{
    --turquesaDigital: #32D6C5;
    --verdeEsperanza: #5ED69E;
    --verdeProfundo:#1E7D6B;
    --grisTecnologia:#E8EDEE;
    --antracita:#1E1E1E;
    --slateGray:#708090;
}
/* Reseteos */
*{
    margin: 0;
    padding: 0;
}
html{
    box-sizing: border-box;
    font-family: 'Open Sans', 'Raleway', sans-serif;
}
*, *:before, *:after{
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

/* Header */

.header{
    width: 100%;
    position: fixed;
    top: 0;
    /* border-bottom: 2px solid black; */
    z-index: 999;
}

.logoClori{
    margin-top: 20px;
    width: 150px;
    height: 70px;
    object-fit: cover;
}

.logoClori2{
    margin-top: 0px;
    width: 150px;
    height: 150px;
    object-fit: cover;
}


.nav{
    width: 100%;
    background-color: white;
}

.mobile-nav{
    display: none;
}

.desktop-nav{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.lista-nav-desktop{
    width: 35%;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.lista-nav-desktop li a{
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.boton {
    background-color: var(--verdeEsperanza); /* Verde-turquesa suave */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    /* font-weight: bold; */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton:hover {
    background-color: var(--verdeProfundo); /* Un tono más oscuro en hover */
}

.boton:active {
    background-color: var(--verdeProfundo); /* Un tono más oscuro en hover */
}

.boton2 {
    width: 100%;
    background-color: var(--grisTecnologia); /* Verde-turquesa suave */
    border: 2px solid var(--grisTecnologia);
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton2:hover {
    background-color: white;
}

.boton2:active {
    background-color: white;
}

.boton3 {
    background-color: white;
    border: 3px solid var(--verdeProfundo);
    color: black;
    padding: 14px 55px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton3:hover {
    background-color: var(--turquesaDigital); /* Verde-turquesa suave */
}

.boton3:active {
    background-color: var(--turquesaDigital); /* Verde-turquesa suave */
}

/* Nav para telefono */

.mobile-nav-sec1{
    width: 45%;
    display: flex;
    gap: 20px; /* Espacio fijo entre elementos */
    justify-content: start; /* No se separan más aunque haya espacio disponible */
    align-items: center; /* Opcional: alinea verticalmente si hace falta */
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    width: 35px;
    height: 25px;
}

.menu-toggle .bar {
    display: block;
    width: 30px;
    height: 5px;
    background-color: black;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* MENÚ */
.menu {
    display: none;
}

.menu a {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
    width: 66%;
    padding: 30px;
}

/* MENÚ EN MODO ACTIVO */
.menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* TRANSFORMACIONES DE LA CRUZ */
.menu-toggle-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle-active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle-active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* MEDIA QUERIES */
@media (min-width: 801px) {
    .menu-toggle,
    .menu {
        display: none !important;
    }
    }

    @media (max-width: 800px) {
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 700px) {
    .mobile-nav{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    .desktop-nav{
        display: none;
    }

    .mobile-navbar .menu {
        display: none;
        /* ... ya tienes las propiedades necesarias aquí ... */
    }

    .mobile-navbar .menu.active {
        display: flex;
    }
}


/* MAIN */

.main{
    margin-top: 94px;
    width: 100%;
}

.heroSection{
    width: 100%;
    background-image: url('../img/hojas.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: white;
    height: 80vh;  /* Cambié el 80% por 80vh para que sea relativo a la altura de la ventana */
    display: flex; /* Agregamos display flex */
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
}

.heroSectionContent{
    margin: auto;
    width: 66%;
    height: 66%;
    display: flex;
    flex-direction: column;
    gap: 20px !important;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.heroSectionContent h1{
    font-size: 70px;
    font-family: 'Proxima Nova';
    font-weight: bold;
}

@media (max-width: 700px) {
    .heroSectionContent{
        width: 90%;
    }

    .heroSectionContent h1{
        font-size: 50px;
    }
}

/* OTRAS SECCIONES */

.beneficiosSection{
    width: 100%;
}

.beneficiosSectionContent{
    text-align: center;
    width: 60%;
    margin: 50px auto;
    padding: 30px;
}

.beneficiosSectionContent ul{
    text-align: left;
}

.beneficiosSectionContent h2{
    font-size: 50px;
}

.beneficiosIntro, .beneficiosTexto{
    color: gray;
    color: gray;
    font-size: 20px;
    line-height: 1.6;
}

.resaltado{
    color: var(--verdeEsperanza);
}

.subrayado{
    text-decoration: underline;
}

.beneficios-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

@media (max-width: 700px) {
    .beneficios-grid{
        grid-template-columns: 1fr;
    }

    .beneficiosSectionContent{
        width: 90%;
    }
}

.beneficio-card{
    width: 100%;
    background-color: var(--grisTecnologia);
    border-radius: 10px;
    text-align: center;
    display: flex;
    line-height: 1.6;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 40px;
    align-items: center;
    padding: 15px;
    -webkit-box-shadow: 6px 6px 15px -7px rgba(0,0,0,0.53);
    -moz-box-shadow: 6px 6px 15px -7px rgba(0,0,0,0.53);
    box-shadow: 6px 6px 15px -7px rgba(0,0,0,0.53);
}

.beneficio-card img{
    width: 80px;
    margin: auto;
}

.fadeInUp {
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadeInUp.visible {
    opacity: 1;
    transform: translateY(0);
}

.explicacionSection{
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 10px;
    margin: 100px 0;
}
.explicacionSection > *{
    width: 40%;
    text-align: center;
}

.explicacionSection h2{
    font-size: 45px;
}

.explicacionIzquierda p{
    font-size: 20px;
    color: grey;
    line-height: 1.6;
}

.explicacionDerecha img{
    width: 50%;
}

@media (max-width: 700px) {
    .explicacionSection{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 50px;
        margin: 60px 0;
    }
    .explicacionSection > *{
        width: 80%;
        text-align: center;
    }

    .explicacionIzquierda{
        order: 2 !important;
    }
    
}

.alianzasSection{
    margin: 100px 0;
    width: 100%;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.alianzasSection h2{
    font-size: 35px;
}

.alianzasCarousel {
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
}
  
.alianzasCarousel img {
    flex-shrink: 0;
    width: 100px;
    height: auto;
}

@media (max-width: 700px) {
    .alianzasCarousel img {
        width: 60px;
    }
    
    
}

.finalSection{
    margin-top: 100px;
    margin-bottom: 0;
    width: 100%;
    padding: 80px 0;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    background-image: url('../img/hojas.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

.finalSection h2{
    font-size: 35px;
    color: white;
}

.finalSection p{
    font-size: 25px;
    color: white;
}

.boton4{
    width: 200px !important;
}

.faqSection{
    margin-top: 80px;
    width: 100%;
}

.faqSection h2{
    text-align: center;
}

.faq-grid{
    margin: 50px auto;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.faq-card{
    width: 100%;
    background-color: var(--grisTecnologia);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px;
    -webkit-box-shadow: 6px 6px 15px -7px rgba(0,0,0,0.53);
    -moz-box-shadow: 6px 6px 15px -7px rgba(0,0,0,0.53);
    box-shadow: 6px 6px 15px -7px rgba(0,0,0,0.53);
}

.faq-card-visible{
    display: flex;
    width: 95%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.faq-card-visible button{
    background-color: transparent;
    border: none;
    padding: 2px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    font-size: 30px;
}

.faq-card-desplegable{
    display: none;
    margin-top: 50px;
}

.faq-card-desplegable p{
    font-size: 20px;
    line-height: 1.6;
    color: grey;
}

/* FOOTER */

.footer{
    width: 100%;
    color: white;
    background-color: #53565A;
    padding: 40px;
}

.footerSec1, .footerSec2{
    margin: auto;
    text-align: center;
}