*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
.despegable{
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}
.despegable:hover{
    transform: scale(1.1);
    color: #C9DCE8;
}
:root{
    --color-principal:#0077ff;
    --color-secundario:#003153;
    --color-fondo: #708090;
    --color-texto:white;
    --color-blanco:#C9DCE8;
    --fuente:'Arial', sans-serif;
}
html, body {
    padding: 0;
    margin: 0;
}
body{
    font-family:var(--fuente);
    background:var(--color-fondo);
    color:var(--color-texto);
    line-height:1.6;
    display: flex;
    flex-direction: column;
}
header{
  background-color: #003153; 
  width: 100%;
  padding: 0;
  margin: 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo img{
    width: 80px;
}
.logo h1 {
    color: white;
    font-size: 38px;
}
ul {
    text-align: right;
}
li {
    text-decoration: underline;
    border-radius: 5px;
    text-underline-offset: 7.5px;
}
li:hover {
    transform:translateY(-4px);
}
li a{
    font-size: 20px;
    padding: 10px;
}
li a:hover {
    border-spacing: 7px;
    transition: 1s;
    text-decoration: underline #3e5c77;
}
nav.logo {
    padding: 0;
    margin: 0;
}
nav{
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    position:relative;
}
.menu{
    display:flex;
    list-style:none;
    gap: 10px;
}
.menu a{
    color:white;
    text-decoration:none;
    font-weight: bold;
}
.menu li {
    list-style: none;
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nombrelogo {
    margin: 0;
    font-size: 2rem;
    border-radius: 5px;
    font-weight:bold;
    background:linear-gradient(
        90deg,
        black 0%,
        white 35%,
        white 50%,
        white 65%,
        black 100%
    );
    background-size:300%;
    color:transparent;
    background-clip:text;
    -webkit-background-clip:text;
    animation:brillo 10s linear infinite;
}
@keyframes brillo{
    from{
        background-position:-300%;
    }
    to{
        background-position:300%;
    }
}
.btn{
    display:inline-block;
    background-color:white;
    color:black;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
}
.btn:hover{
    background:var(--color-secundario);
    color: white;
}

.servicios{
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:50px;
    width: 100%;
}
.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: .3s;
}
.whatsapp:hover{
    transform: scale(1.1);
    background: #20b958;
}
.elegir,
.servicios{
    padding:80px 20%;
    text-align:center;
}
.elegir h2,
.servicios h2{
    font-size:38px;
    color:white;    
    margin-bottom:50px;
}
.contenedor-elegir{

    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}
.contenedor-servicios{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1200px;
    margin:auto;

}
.caja,
.card{
    width:320px;
    background:#F5F5F5;
    border-radius:18px;
    padding:35px;
    box-shadow:0px 10px 25px rgba(0,0,0,.12);
    transition:.4s;
}
.caja:hover,
.card:hover{
    transform:translateY(-12px);
    box-shadow:0px 20px 35px rgba(0,0,0,.18);
}
.caja i,
.card i{
    font-size:55px;
    color:#4B6782;
    margin-bottom:20px;
}
.caja h3,
.card h3{
    margin-bottom:15px;
    color:#2c3e50;
}
.caja p,
.card p{
    color:#666;
    line-height:1.7;
}
.card a{
    display:inline-block;
    margin-top:25px;
    background:#4B6782;
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}
.card a:hover{
    background:#2f4d68;
}
/* footer */
.footer{
    background:#3e5c77;
    color:black;
    margin-top:35px;
}
.footer-top{
    text-align:center;
    padding:90px 20px 50px;
}
.footer-top h2{
    font-size:15px;
    margin-bottom:10px;
}
.footer-top p{
    margin-bottom:30px;
}
.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    gap:20px;
    background:#25D366;
    color:black;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}
.btn-whatsapp:hover{
    transform:translateY(-5px);
    background:#1ebe5d;
    box-shadow:0 15px 30px rgba(37,211,102,.4);
}
.footer-container{
    max-width:1300px;
    margin:auto;
    padding:60px 30px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
}
.footer-col h3{
    margin-bottom:25px;
    font-size:16px;
}
.footer-col p{
    color:black;
    line-height:1.5;
}
.footer-col ul{
    list-style:none;
    color: white;
    text-align: left;
}
.footer-col ul li:hover { 
    color: white;
}
.footer-col ul li{
    margin-bottom:15px;
}
.footer-col ul li a{
    color:black;
    text-decoration:none;
    transition:.2s;
}
.footer-col ul li a:hover{
    color:white;
    text-decoration: underline black;
    padding-left:8px;
}
.contact li{
    color:black;
    text-decoration: none;
    display:flex;
    align-items:center;
    gap:10px;
}
.contact i{
    color:#25D366;
}
.social{
    display:flex;
    gap:15px;
    margin-top:25px;
}
.social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:black;
    background:rgba(255,255,255,.08);
    transition:.3s;
}
.social a:hover{
    background:#25D366;
    transform:translateY(-6px);
}
.footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.12);
}
.footer-bottom{
    max-width:1300px;
    margin:auto;
    padding:10px 10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}
.footer-bottom p{
    color:black;
}
.footer-bottom a{
    color:black;
    margin-left:25px;
    text-decoration:none;
    transition:.3s;
}
.footer-bottom a:hover{
    color:white;
    text-decoration: none;
}

.linea-blanca {
  background-color: white;
  border: none;
  height: 1.5px; 
  width: 100%; 
}

/* banner */
.hero{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}
.slider{
    width:100%;
    height:100%;
    position:relative;
}
.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:1s;
    overflow:hidden;
}
.slide.active{
    opacity:1;
    z-index:1;
}
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoom 8s linear infinite;
}
@keyframes zoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.12);
    }
}
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}
.contenido{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:500px;
    margin-left:auto;
    margin-right: auto;
    color:white;
    z-index:20;
    animation:entrada 1s;
}
.izquierda{
    left:8%;
}
.centro{
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
}
.derecha{
    right:8%;
    text-align:right;
}
.subtitulo{
    font-size:18px;
    color:#38bdf8;
    letter-spacing:3px;
    text-transform:uppercase;
}
.contenido h1{
    font-size:65px;
    margin:20px 0;
    line-height:1.1;
}
.contenido p{
    font-size:20px;
    margin-bottom:35px;
    line-height:1.8;
}
.botones{
    display:flex;
    gap:20px;
}
.boton-segundo{
    display:flex;
    text-align: center;
    gap:20px;
}
.boton-tercero{
    display:flex;
    gap:20px;
}
.btn-principal{
    background:#2563eb;
    color:white;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    transition:.4s;
}
.btn-principal:hover{
    background:#1d4ed8;
    transform:translateY(-5px);
}
.btn-secundario{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:16px 40px;
    border-radius:50px;
    transition:.4s;
}
.btn-secundario:hover{
    background:white;
    color:black;
}
.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:28px;
    background:rgba(255,255,255,.2);
    color:white;
    backdrop-filter:blur(10px);
    transition:.3s;
    z-index:100;
}
.prev{
    left:30px;
}
.next{
    right:30px;
}
.prev:hover,
.next:hover{
    background:white;
    color:black;
}
.indicadores{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:15px;
    z-index:200;
}
.dot{
    width:16px;
    height:16px;
    border-radius:50%;
    background:white;
    opacity:.4;
    cursor:pointer;
    transition:.4s;
}
.dot.active{
    opacity:1;
    transform:scale(1.4);
}
@keyframes entrada{
    from{
        opacity:0;
        transform:translateY(70px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:900px){
.hero{
    height:90vh;
}
.contenido{
    width:90%;
    left:50%;
    right:auto;
    transform:translate(-50%,-50%);
    text-align:center;
}
.contenido h1{
    font-size:42px;
}
.contenido p{
    font-size:18px;
}
.botones{
    justify-content:center;
    flex-wrap:wrap;
}
.prev,
.next{
    display:none;
}
}
/*¿POR QUÉ ELEGIRNOS?*/

.elegir{

    padding:100px 8%;
    background:#708090;
    text-align:center;

}

.elegir h2{

    font-size:42px;
    margin-bottom:15px;
    color:white;

}

.subtitulo{

    max-width:700px;
    margin:0 auto 60px;
    color:#d9e6f2;
    font-size:20px;

}

.contenedor-elegir{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.caja{

    background:white;
    border-radius:20px;
    padding:40px 30px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.4s;

}

.caja:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 35px rgba(0,0,0,.25);

}

.caja i{

    font-size:60px;
    color:#003153;
    margin-bottom:20px;

}

.caja h3{

    color:#003153;
    margin-bottom:15px;
    font-size:24px;

}

.caja p{

    color:#555;
    line-height:1.8;

}
/*PROCESO*/

.proceso{

    padding:100px 8%;
    background:#f5f7fa;
    text-align:center;

}

.proceso h2{

    color:#003153;
    font-size:42px;
    margin-bottom:60px;

}

.contenedor-proceso{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:35px;

}

.paso{

    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.paso span{

    display:flex;
    justify-content:center;
    align-items:center;
    
    width:70px;
    height:70px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#003153;
    color:white;
 
    font-size:28px;
    font-weight:bold;

}

.paso h3{

    color:#003153;
    margin-bottom:15px;

}

.paso p{

    color:#666;
    line-height:1.8;

}
/*SERVICIOS*/

.servicios{

    padding:100px 8%;
    background:#708090;
    text-align:center;

}

.servicios h2{

    font-size:42px;
    color:white;
    margin-bottom:60px;

}

.contenedor-servicios{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1200px;
    margin:auto;

}

.card{

    background:white;
    border-radius:20px;
    padding:40px 30px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.card:hover{

    transform:translateY(-12px);

}

.card i{

    font-size:60px;
    color:#003153;
    margin-bottom:20px;

}

.card h3{

    color:#003153;
    margin-bottom:15px;

}

.card p{

    color:#555;
    line-height:1.8;

}

.card a{

    display:inline-block;
    margin-top:25px;
    padding:12px 28px;

    background:#1d63ff;
    color:white;

    border-radius:30px;
    text-decoration:none;

    transition:.3s;

}

.card a:hover{

    background:#003153;

}
/*TESTIMONIOS*/

.testimonios{

    padding:100px 8%;
    background:#f5f7fa;
    text-align:center;

}

.testimonios h2{

    color:#003153;
    font-size:42px;
    margin-bottom:60px;

}

.contenedor-testimonios{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;

}

.testimonio{

    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);

}

.testimonio p{

    margin:20px 0;
    color:#555;
    line-height:1.8;

}

.testimonio h4{

    color:#003153;

}
/*ACERCA DE NOSOTROS*/

.nosotros{

    padding:100px 8%;
    background:#708090;

}

.nosotros-contenedor{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;

}

.nosotros-imagen{

    flex:1;
    min-width:300px;

}

.nosotros-imagen img{

    width:100%;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,.25);
    transition:.4s;

}

.nosotros-imagen img:hover{

    transform:scale(1.03);

}

.nosotros-texto{

    flex:1;
    min-width:320px;

}

.nosotros-texto span{

    color:#4db8ff;
    font-size:18px;
    letter-spacing:3px;
    font-weight:bold;

}

.nosotros-texto h2{

    font-size:45px;
    color:white;
    margin:20px 0;

}

.nosotros-texto p{

    font-size:18px;
    color:#f1f1f1;
    line-height:1.9;
    margin-bottom:20px;

}
/*MISIÓN Y VISIÓN*/

.mision-vision{

    padding:100px 8%;
    background:#f5f7fa;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;

}

.info{

    background:white;
    padding:40px;
    border-radius:20px;
    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    transition:.4s;

}

.info:hover{

    transform:translateY(-12px);

}

.info i{

    font-size:60px;
    color:#003153;
    margin-bottom:20px;

}

.info h3{

    color:#003153;
    margin-bottom:15px;
    font-size:30px;

}

.info p{

    color:#666;
    line-height:1.8;

}
/*VALORES*/

.valores{

    padding:100px 8%;
    background:#708090;
    text-align:center;

}

.valores h2{

    font-size:42px;
    margin-bottom:60px;
    color:white;

}

.contenedor-valores{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;

}

.valor{

    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.4s;

}

.valor:hover{

    transform:translateY(-12px);

}

.valor i{

    font-size:60px;
    color:#003153;
    margin-bottom:20px;

}

.valor h3{

    color:#003153;
    margin-bottom:15px;

}

.valor p{

    color:#666;
    line-height:1.8;

}
/*ESTADÍSTICAS*/

.estadisticas{

    padding:100px 8%;
    background:#003153;
    text-align:center;

}

.estadisticas h2{

    color:white;
    font-size:42px;
    margin-bottom:60px;

}

.estadisticas-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

}

.estadisticas-grid div{

    background:#0d456d;
    padding:40px;
    border-radius:18px;
    transition:.4s;

}

.estadisticas-grid div:hover{

    transform:translateY(-10px);

    background:#15527f;

}

.estadisticas-grid h3{

    font-size:50px;
    color:#4db8ff;
    margin-bottom:15px;

}

.estadisticas-grid p{

    color:white;
    font-size:18px;

}
/*PREGUNTAS FRECUENTES*/

.faq{

    padding:100px 8%;
    background:#708090;

}

.faq-titulo{

    text-align:center;
    margin-bottom:60px;

}

.faq-titulo h2{

    font-size:42px;
    color:white;
    margin-bottom:15px;

}

.faq-titulo p{

    color:#d9e6f2;
    font-size:20px;

}

.faq-contenedor{

    max-width:900px;
    margin:auto;

}

.faq-item{

    background:white;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
    transition:.3s;

}

.faq-item:hover{

    transform:translateY(-5px);

}
/*PREGUNTA*/

.faq-pregunta{

    width:100%;
    background:white;
    border:none;
    outline:none;

    padding:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    font-size:20px;
    font-weight:bold;

    color:#003153;

    transition:.3s;

}

.faq-pregunta:hover{

    background:#f5f7fa;

}

.faq-pregunta span{

    font-size:28px;
    color:#0077ff;
    transition:.3s;

}
/*RESPUESTA*/

.faq-respuesta{

    max-height:0;
    color: black;
    overflow:hidden;
    text-align: center;
    transition:max-height .4s ease;

    background:#f8f8f8;

}

.faq-respuesta{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}
/*ACTIVO*/


.faq-item.activo .faq-pregunta span{

    transform:rotate(45deg);

}

/*CONTACTO*/

.contacto{

    padding:100px 8%;
    background:#708090;

}

.contacto-titulo{

    text-align:center;
    margin-bottom:60px;

}

.contacto-titulo h2{

    font-size:42px;
    color:white;
    margin-bottom:15px;

}

.contacto-titulo p{

    font-size:20px;
    color:#d9e6f2;

}

.contacto-contenedor{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;

}
/*FORMULARIO*/

.formulario{

    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.grupo{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;

}

.formulario input,
.formulario textarea{

    width:100%;
    padding:15px;
    border:1px solid #d6d6d6;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;

}

.formulario textarea{

    resize:none;
    margin-top:20px;

}

.formulario input:focus,
.formulario textarea:focus{

    border-color:#0077ff;
    box-shadow:0 0 10px rgba(0,119,255,.2);

}
/*BOTÓN*/

.formulario button{

    margin-top:25px;
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#003153;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;

}

.formulario button i{

    margin-right:10px;

}

.formulario button:hover{

    background:#00509e;
    transform:translateY(-4px);

}
/*INFORMACIÓN*/

.info-contacto{

    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.dato{

    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:35px;

}

.dato i{

    font-size:28px;
    color:#0077ff;
    width:35px;

}

.dato h3{

    color:#003153;
    margin-bottom:8px;

}

.dato p{

    color:#666;

}
/*=========================================
            BOTÓN WHATSAPP
=========================================*/

.btn-contacto{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    margin-top:40px;

    background:#25D366;
    color:white;

    text-decoration:none;

    padding:16px;

    border-radius:12px;

    transition:.3s;

}

.btn-contacto:hover{

    background:#1ebe5d;

    transform:translateY(-4px);

}
/*mobil*/

@media (max-width: 768px){

nav{
    padding:15px 20px;
}
.logo img{
    width:60px;
    height:50px;
}
.nombrelogo{
    font-size:1.5rem;
}
.despegable{
    display:block;
    z-index:100;
    padding-right: 5px;
    cursor: pointer;

}
.menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#003153;
    flex-direction:column;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: .3s;
}
.menu li{
    width:100%;
    text-align:center;
    padding:-1px 0px;
    margin: -1px 0px;
    transition: .3s;
}
.menu li:hover{
    background:#0d466e;
}
.menu a{
    display:block;
    width:100%;
}
.menu.activo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
}
.contenido {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
}
.botones{
    display: flex;
}
.boton-segundo{
    display: block;
    gap:20px;
    text-align: center;
}
.boton-tercero{
    display: block;
    text-align: center;
}
 .contenedor-servicios{

        grid-template-columns:1fr;

    }

.elegir,
.proceso,
.servicios,
.testimonios{

    padding:70px 25px;

}

.elegir h2,
.proceso h2,
.Servicios h2,
.testimonios h2{

    font-size:32px;

}

.subtitulo{

    font-size:18px;

}

.caja,
.card,
.paso,
.testimonio{

    padding:30px 25px;

}
.nosotros,
.mision-vision,
.valores,
.estadisticas{

    padding:70px 25px;

}

.nosotros-contenedor{

    flex-direction:column;

}

.nosotros-texto{

    text-align:center;

}

.nosotros-texto h2{

    font-size:34px;

}

.nosotros-texto p{

    font-size:17px;

}

.valores h2,
.estadisticas h2{

    font-size:32px;

}

.info,
.valor{

    padding:30px;

}

.estadisticas-grid h3{

    font-size:40px;

}
.faq{

    padding:70px 25px;

}

.faq-titulo h2{

    font-size:34px;

}

.faq-titulo p{

    font-size:17px;

}

.faq-pregunta{

    font-size:17px;
    padding:20px;

}

.faq-respuesta p{

    font-size:16px;

}
.contacto{

    padding:70px 25px;

}

.contacto-contenedor{

    grid-template-columns:1fr;

}

.grupo{

    grid-template-columns:1fr;

}

.contacto-titulo h2{

    font-size:34px;

}

.contacto-titulo p{

    font-size:17px;

}

.formulario,
.info-contacto{

    padding:30px;

}
}

