*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    padding-top: 100px;
    background: linear-gradient(to bottom, #f8fbff, #eef5ff);
}
.header1{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 10px;

    background: white;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0,0,0,.08);

}

.contenedor{
width:90%;
max-width:1400px;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
width:170px;
}

nav ul{
display:flex;
list-style:none;
gap:55px;
}

nav a{
text-decoration:none;
color:#102a67;
font-weight:600;
}

.activo{
border-bottom:3px solid #2c6cff;
padding-bottom:8px;
}
.hero{

width:90%;
max-width:1400px;

margin:auto;

display:flex;
align-items:center;
justify-content:space-between;

padding:60px 0;
}

.texto{
width:45%;
}

.texto h1{
    font-size:70px;
    font-weight:800;
    background: linear-gradient(90deg,#102a67,#2563ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.texto h2{

font-size:55px;
font-weight:700;

color:#58b84c;

margin-bottom:25px;
}

.texto p{

font-size:26px;
line-height:1.7;

color:#333;

margin-bottom:35px;
}

.boton{
    background: linear-gradient(45deg,#2563ff,#58b84c);
    padding:18px 40px;
    border-radius:50px;
    color:white;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.boton:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(37,99,255,.3);
}
.imagen{
width:50%;
}

.imagen img{
width:100%;
}
.importancia{

padding:80px 5%;
text-align:center;
}

.importancia h2{

font-size:55px;

color:#102a67;
}

.linea{

width:60px;
height:4px;

background:#67c04f;

margin:15px auto 50px;
}
.cards{

display:flex;

justify-content:center;

gap:25px;

flex-wrap:wrap;
}

.card{
    width:280px;
    background:white;
    padding:40px 25px;
    border-radius:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-15px);
}

.icono{

width:90px;
height:90px;

margin:auto auto 20px;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:40px;

background:#eef5ff;
}

.card h3{

color:#102a67;

margin-bottom:15px;
}

.card p{

color:#555;
}

/* ===== HEADER ===== */

.header{
    width:100%;
    height:100px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 80px;

    background:white;
}

/* LOGO */

.logo {
    width:100px;
    height:100px;

}

/* MENU */

.navbar{
    display:flex;
    gap:30px;
}

.navbar a{

    text-decoration:none;

    color:#0b2c6d;

    font-size:16px;

    font-weight:600;

    position:relative;

    transition:.3s;
}
.activo::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-12px;

    width:100%;
    height:3px;

    background:#2563ff;

    border-radius:10px;
}
.navbar a:hover{
    color:#2563ff;
}
/* ===== SECCIÓN ¿QUÉ ES? ===== */


.contenedor-que-es{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.texto-que-es{
    flex:1;
}

.texto-que-es h2{
    font-size:48px;
    color:#0b2c6d;
    margin-bottom:25px;
}

.texto-que-es p{
    font-size:20px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

.imagen-que-es{
    flex:1;
    text-align:center;
}

.imagen-que-es img{
    width:100%;
    max-width:500px;
}
html{
    scroll-behavior:smooth;
}
.contactoo {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 20px auto;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
}
.contactoo h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #333333;
    font-size: 26px;
    text-align: center;
}
.contactoo label {
    display: block;
    margin-bottom: 8px;
    color: #555555;
    font-size: 14px;
    font-weight: 600;
}
.contactoo input[type="text"],
.contactoo input[type="email"],
.contactoo textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 15px;
    color: #333333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    outline: none;
}
.contactoo input[type="text"]:focus,
.contactoo input[type="email"]:focus,
.contactoo textarea:focus {
    border-color: #007bff;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}
.contactoo textarea {
    resize: vertical;
    min-height: 130px;
}
.contactoo button {
     width: 100%;
    padding: 14px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}
.contactoo button:hover{
    background-color:#0056b3;
}
.contactoo button:active {
    transform: scale(0.98);
}
.estadisticas{
    background: linear-gradient(135deg,#102a67,#2563ff);
    color:white;
    padding:100px 8%;
    border-radius:40px;
    margin:80px;
}

.estadisticas h2{
    color:white;
}

.estadisticas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.dato{
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:40px;
    border-radius:25px;
    text-align:center;
}

.dato h3{
    font-size:60px;
}
.imagenes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.imagenes img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:25px;
    transition:.4s;
    box-shadow:0 10px 20px rgba(0,0,0,.1);
}

.imagenes img:hover{
    transform:scale(1.05);
}
.footer{
    background:#102a67;
    color:white;
    text-align:center;
    padding:50px;
    margin-top:80px;
    border-radius:40px 40px 0 0;
}

/* ========================================= */
/* RESPONSIVE PARA TABLETS Y CELULARES */
/* ========================================= */

/* TABLETS */
@media (max-width: 1024px){

    body{
        padding-top: 140px;
    }

    .header1{
        flex-direction: column;
        height: auto;
        padding: 15px;
    }

    .navbar{
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .hero{
        flex-direction: column;
        text-align: center;
    }

    .texto,
    .imagen{
        width: 100%;
    }

    .texto h1{
        font-size: 50px;
    }

    .texto h2{
        font-size: 38px;
    }

    .texto p{
        font-size: 20px;
    }

    .importancia h2,
    .estadisticas h2,
    .galeria h2{
        font-size: 40px;
    }

    .card{
        width: 100%;
        max-width: 350px;
    }

    .estadisticas{
        margin: 40px 20px;
        padding: 60px 5%;
    }

    iframe{
        width: 100%;
        height: 400px;
    }

}

/* CELULARES */
@media (max-width: 768px){

    body{
        padding-top: 180px;
    }

    .logo{
        width: 80px;
        height: 80px;
    }

    .navbar{
        gap: 10px;
    }

    .navbar a{
        font-size: 14px;
    }

    .hero{
        padding: 30px 15px;
    }

    .texto h1{
        font-size: 38px;
        line-height: 1.2;
    }

    .texto h2{
        font-size: 28px;
    }

    .texto p{
        font-size: 18px;
    }

    .boton{
        display: inline-block;
        padding: 14px 28px;
        font-size: 15px;
    }

    .importancia{
        padding: 60px 15px;
    }

    .importancia h2{
        font-size: 30px;
    }

    .card{
        width: 100%;
        padding: 30px 20px;
    }

    .icono{
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .estadisticas{
        margin: 20px 10px;
        border-radius: 20px;
    }

    .dato h3{
        font-size: 45px;
    }

    .imagenes{
        grid-template-columns: 1fr;
    }

    .imagenes img{
        height: auto;
    }

    .contactoo{
        width: 95%;
        padding: 25px;
    }

    iframe{
        width: 100%;
        height: 250px;
    }

    .footer{
        padding: 30px 15px;
        border-radius: 20px 20px 0 0;
    }
}

/* CELULARES PEQUEÑOS */
@media (max-width: 480px){

    body{
        padding-top: 220px;
    }

    .texto h1{
        font-size: 30px;
    }

    .texto h2{
        font-size: 22px;
    }

    .texto p{
        font-size: 16px;
    }

    .navbar{
        gap: 8px;
    }

    .navbar a{
        font-size: 12px;
    }

    .importancia h2{
        font-size: 24px;
    }

    .dato h3{
        font-size: 35px;
    }

    iframe{
        height: 200px;
    }
}