/* ===== CONFIGURACIÓN GENERAL ===== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #F3F4F6;
    color: #374151;
    line-height: 1.6;
}

/* ===== HEADER ===== */

header{
    background-color: #1E3A8A;
    color: white;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1{
    font-size: 28px;
}

nav ul{
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: .3s;
}

nav ul li a:hover{
    color: #93C5FD;
}

/* ===== BANNER ===== */

.banner{
    background: linear-gradient(
        rgba(37,99,235,.9),
        rgba(30,58,138,.9)
    );
    color: white;
    text-align: center;
    padding: 70px 20px;
}

.banner h2{
    font-size: 40px;
    margin-bottom: 15px;
}

.banner p{
    font-size: 18px;
}

/* ===== QUIÉNES SOMOS ===== */

.quienes-somos{
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.quienes-somos h2{
    color: #1E3A8A;
    margin-bottom: 20px;
}

.quienes-somos p{
    font-size: 17px;
}

/* ===== MISIÓN Y VISIÓN ===== */

.mision-vision{
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card{
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.card h2{
    color: #1E3A8A;
    margin-bottom: 15px;
}

/* ===== VALORES ===== */

.valores{
    padding: 50px 20px;
    text-align: center;
}

.valores h2{
    color: #1E3A8A;
    margin-bottom: 30px;
}

.contenedor-valores{
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.valor{
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.valor h3{
    color: #2563EB;
    margin-bottom: 10px;
}

/* ===== BENEFICIOS ===== */

.beneficios{
    padding: 50px 20px;
    text-align: center;
}

.beneficios h2{
    color: #1E3A8A;
    margin-bottom: 30px;
}

.contenedor-beneficios{
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.beneficio{
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.beneficio h3{
    color: #2563EB;
    margin-bottom: 10px;
}

/* ===== FOOTER ===== */

footer{
    background-color: #1E3A8A;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 50px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

    header{
        flex-direction: column;
        gap: 15px;
    }

    nav ul{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .banner h2{
        font-size: 30px;
    }

    .mision-vision{
        grid-template-columns: 1fr;
    }
}