:root{
    --ColorPrincipal : #071f47;
    --ColorPrincipalOscuro : #051735;

    --FondoParaCuadros : rgba(255,255,255,0.05);
    --colordebordeparacuadros : rgba(52, 193, 205, 0.15);

    --cuadroWhatsapp : rgba(34, 184, 200, 0.12);
    --bordeWhatsapp : rgba(34, 184, 200, 0.35);

    --bordeCorreo : rgba(34, 184, 200, 0.35);
    --cuadroCorreo : rgba(34, 184, 200, 0.12);

    --cuadrosComplementarios : rgba(34, 184, 200, 0.18);

    --tw-text-opacity: 1;

    /* Turquesa principal del logo */
    --colortitulos: #22b8c8;

    /* Gris elegante */
    --colorsubtitulo : #b6c2d1;
}

@font-face {
  font-family: 'vivo';
  src: url('./recursos/fonts/vivoSansGlobal-Heavy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}

html,body{
    scroll-behavior: smooth;
    background: linear-gradient(
        135deg,
        #051735 0%,
        #0A2E6E 70%,
        #1597A6 100%
    );
}
main{
    top: 50px; 
}

section{
    max-width: 2000px;
    margin: 0 auto;
}
.logos{
    width: 8%;
    padding: 0;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.199);
}
.degradado{
    background: linear-gradient(
        135deg,
        #051735 0%,
        #0A2E6E 55%,
        #22B8C8 100%
    );
}

.icon-menu{
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.titulos{
    font-size: 3.62rem;
    line-height: 1;
    color: white;
    font-family: 'vivo',sans-serif;
    letter-spacing: -.025em;
}
.complemento_titulo{
     --tw-text-opacity: 1;
     color: var(--colortitulos);
}
.titulos-section{
    font-size: 3rem;
    line-height: 1;
    color: white;
    font-family: 'vivo',sans-serif;
    letter-spacing: -.025em;
}
.subtitulos{
    color: var(--colorsubtitulo);
    font-size: 1rem;
}
.menu{
    width: 100%;
    height: 70px;
    color: var(--colorsubtitulo);
    padding: 55px 10px;
    display: flex;
    position: fixed;
    z-index: 20;
    margin-bottom: 70px;
    align-items: center;
      background: rgba(5, 23, 53, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(34, 184, 200, 0.15);
    
}
.contenedor-menu{
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
}
.contenedor-menu ul{
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    gap: 10px;
    font-size: 0.875rem;
    text-align: center;
   
}


.contenedor-menu ul > li {
    padding: 5px 15px; /* ajusta a tu gusto */
     transition: all 0.2s ease;
}


.contenedor-menu ul>li:hover{
   background-color: rgba(34,184,200,.15);
    color: white;
    border-radius: 20px;
    cursor: pointer;

}

.contenedor-menu ul > li > a{
    text-decoration: none;
    color: var(--colorsubtitulo);
}

/*Elementos del main*/

.presentacion{
    width: 100%;
    height: 90vh;
    min-height: 600px;
    background-image: url("./recursos/img/fondo.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.presentacion::before{
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.indicador{
        background-color: #ffffff27;
    border: 1px solid var(--colordebordeparacuadros);
    color: #6adce8;
    font-size: 0.675rem;
    font-weight: bold;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 5px 10px;
    margin-bottom: 30px;
}
.introduccion{
    position: absolute;
    z-index: 10;
    width: 60% ;
    max-width: 2000px;
    margin: 0 auto;
}

.contenedor-introduccion{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contenedor-vacio{
    width: 45%;
}



/*Contenido Introduccion*/
.info{
    width: 80%;
    border: 1px solid var(--colordebordeparacuadros);
    color: white;
    border-radius: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.055);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info ul{
    list-style-type: none;
    padding: 0;
}
.info ul > li >  i{
      color: #22b8c8;
    font-size: 20px;
}
.botones{
    display: flex;
    gap: 10px;
    margin-top:20px;
}
.btn{
    width: max-content;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    gap: 10px;
    color: white;
    font-weight: 500;
    transition: transform 19s ease;
}
.whatsapp-btn{
     background-color: #22b8c8;
}
.whatsapp-btn:hover{
    background-color: #1597a6;
    color: white;
}

.fondo-btn{
    background-color: #ffffff27;
    border: 1px solid var(--colordebordeparacuadros);
}
.fondo-btn:hover{
    background-color: #ffffff52;
    color: white;
}
.conoce{
    background-color: var(--FondoParaCuadros);
    border: 1px solid var(--colordebordeparacuadros);
    color: rgba(255, 255, 255, 0.808);
}
.conoce:hover{
    background-color: var(--FondoParaCuadros);
    color: white;
    border: 1px solid white;
}


/*Quienes somos*/

.contenedor-section{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    gap: 20px;
    margin-top: 50px;
}
.cuadros{
    width: 70%;
    display: flex;
    gap: 20px;
    
}
.cuadros div{
    background-color: var(--FondoParaCuadros);
    border-radius: 10px;
    border: 1px solid var(--colordebordeparacuadros);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.cuadros i, .cuadros svg{
background-color: rgba(34,184,200,.15);
    color: #22b8c8;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 20px;
}
.cuadros span{
    color: white;
    text-align: center;
}
.cuadros p{
    color: var(--colorsubtitulo);
    text-align: center;
}



/*Equipo*/
.equipo{
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 160px !important;
}
.contenedor-equipo{
    display: flex;
    justify-content: center;
    gap: 20px;

}
.contenedor-equipo div{
    display: flex;
    flex-direction: column;
}
.contenedor-equipo img{
    width: 120px;
    height:  120px;
    max-width: 130px;
    max-height: 130px;

    border-radius: 20px;
    border: 2px solid var(--bordeCorreo);
    object-fit: cover;
    transition: transform 0.4s  ease;

    margin: 0 auto;
}
.contenedor-equipo img:hover{
    transform: scale(1.02);
}
.nombres{
    color: white;
    text-align: center;
}
.cargo{
    color: var(--colorsubtitulo);
    text-align: center;
    font-size: 0.875rem;
}

/*testimonios*/
.amarillo{
    color: rgb(219, 180, 3);
    font-size: 0.775rem;
}
.testimonios{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}
.cuadro-testimonios{
    width: 45%;
    border: 1px solid var(--colordebordeparacuadros);
    background-color: var(--FondoParaCuadros);
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 10px 30px;
    gap: 30px;
    text-align: left;
    margin-top: 30px;
}
.img-testimonio img{
    width: 140px;
    height: 140px;
    border-radius: 20px;
    border: 2px solid var(--colordebordeparacuadros);
    object-fit: cover;
}
.comillas{
    color: var(--cuadrosComplementarios);
    font-size: 4rem;
    padding: 0;
    transform: rotate(360deg);
}
.cuadro-testimonios p{
    color: rgb(211, 211, 211);
    font-size: 1.1rem;
}
.stars{
    color: rgb(255, 209, 4);
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}
.cargo{
    text-align: left !important;
    font-size: 0.875rem !important;
}


/*Form */
.contenedor-consulta{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.formulario{
    width: 60%;
    display: flex;
    gap: 40px;
    margin-top: 40px !important;
}
.izquierda{
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.derecha{
    width: 65%;
}

/*REDES IZQUIERDA*/
.redes{
    display: flex;
    background-color: var(--cuadroWhatsapp);
    color: white;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
}
.contenido-redes{
    display: flex;
    flex-direction: column;
}
.icon{
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius:10px;
}

.whatsapp-icon{
    background-color: #22c55e;
}
.whatsapp-text {
    color: #22c55e;
}
.mail-icon{
      background-color: rgba(10,46,110,.25);
}

.correo-fondo{
     background-color: rgba(78, 70, 229, 0.288);
}
.icon-complemento{
    background-color: var(--FondoParaCuadros);
    color: rgba(255, 255, 255, 0.603);
}
.redes-cuadros{
    display: flex;
    gap: 10px;
}
.contenido-red-cuadros{
    display: flex;
    flex-direction: column;
    color: white;
}

.nombre-redes{
    color: rgba(255, 255, 255, 0.685);
}

.maps{
    color: white;
    display: flex;
    flex-direction: column;
    background-color: var(--FondoParaCuadros);
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
}
.morado,.link-maps{
    color: var(--colortitulos);
}

.link-maps{
    text-decoration: none;
}
.link-maps:visited{
    text-decoration: none;
     color: var(--colortitulos);
     font-weight: bold;
}
iframe{
    width: 100%;
    height: 320px;
}

.cuadro-formulario{
    background-color: var(--FondoParaCuadros);
    border: 2px solid var(--colordebordeparacuadros);
    height: max-content;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fila{
    display: flex;
    width: 100%;
    gap: 20px;
}
.fila-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.822);
    gap: 10px;
}

.fila-text input,.fila-text textarea{
    width: 100%;
    border: 1px solid var(--colordebordeparacuadros);
    background-color: var(--FondoParaCuadros);
    border-radius: 10px;
    color: white;
    height: 40px;
}
.fila-text textarea{
    height: 140px !important;
}


.cuadro-formulario button{
        background-color: #22b8c8;
      border: 0;
      color: white;
      width: 100%;
      border-radius: 20px;
      height: 50px;
}
.cuadro-formulario button:hover{
    background-color: #1597a6;
}

footer{
    margin-top: 70px;
    background-color: var(--ColorPrincipalOscuro);
    padding: 40px;
    text-align: center;
    color: white;
    font-weight: 0.875rem;
}



@media (max-width:768px) {


    .menu{
        position: fixed;
        z-index: 100;
    }
     .icon-menu{
        display: block;
    }

    .contenedor-menu ul{
        position:absolute;
        left: 0;
        top: 70px;
        width: 100%;
        flex-direction: column;
      background:#051735;
        z-index: 110px;
        align-items: flex-start;
        padding-left: 20px;
        display: none;
    }

    .contenedor-menu ul.active{
        display: flex;
    }

    .contenedor-menu{
        width: 90%;
    }
    .contenedor-menu ul>li{
        padding: 15px;
        text-align: left !important;
    }


    .introduccion{
        width: 80%;
        height: 80%;
    }


    .titulos{
        font-size: 2rem;
    }
    .contenedor-introduccion{
        width: 100%;
    }
    .info{
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }
    .contenedor-vacio{
        display: none;
    }
    .botones{
        flex-direction: column;
    }




    .titulos-section,.subtitulos{
        text-align: center;
    }


    .cuadros{
        width: 100%;
        flex-direction: column;
    }
    .contenedor-equipo{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .cargo{
        text-align: center !important;
    }
    .movil{
        font-size: 2rem !important;
    }

    .cuadro-testimonios{
        width: 80%;
        flex-direction: column;
    }
    .movil-testimonio{
        text-align: left !important;
    }


    .fila{
        flex-direction: column;
    }

    .formulario{
        width: 90%;
        flex-direction: column;
    }
    .izquierda,.derecha{
        width: 100%;
    }
}