/* =======================================================
   ESTILOS BLINDADOS DE NOSOTROS (nosotros.css)
   Prefijo de encapsulamiento: nosotros-
   ======================================================= */

/* --- HERO NOSOTROS --- */
.nosotros-hero {
    height: 50vh; 
    min-height: 500px;
    background-image: url('../img/HeroSN.jpg'); 
    background-color: var(--azul-intra, #003366);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nosotros-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.412); 
    z-index: 1;
}

.nosotros-hero-content {
    position: relative;
    z-index: 2;
}

.nosotros-hero h1 {
    color: var(--blanco, #ffffff);
    font-size: 3.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0;
}

/* --- INTRODUCCIÓN NOSOTROS --- */
.nosotros-intro {
    padding: 80px 5% 60px;
    background-color: var(--blanco, #ffffff);
}

.nosotros-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nosotros-intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.nosotros-intro-lead {
    font-size: 1.4rem;
    color: #444444;
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;
}

.nosotros-intro-lead strong {
    color: var(--azul-intra, #003366);
    font-weight: 700;
}

.nosotros-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    display: block;
}

/* =======================================================
   ESTILOS DE MISIÓN, VISIÓN Y VALORES 
   ======================================================= */
.nosotros-mvv-section {
    padding: 90px 5%;
    background-color: #ffffff;
}

/* Retícula superior para Misión y Visión */
.nosotros-mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.nosotros-mvv-card {
    background: #f1f5f9; /* Fondo gris claro interno */
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.05);
    border-top: 5px solid var(--rojo-intra, #cc0000); 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.1);
}

.nosotros-mvv-icon {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nosotros-mvv-icon i {
    font-size: 2.2rem;
    color: var(--azul-intra, #003366);
}

.nosotros-mvv-text h2 {
    color: var(--azul-intra, #003366);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.nosotros-mvv-text p {
    color: #334155;
    font-size: 1.25rem;
    line-height: 1.75;
    margin: 0;
    text-align: justify;
}

/* --- SECCIÓN DE VALORES --- */
.nosotros-valores-container {
    margin-top: 90px;
    text-align: center;
}

.nosotros-valores-title {
    color: var(--azul-intra, #003366);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.nosotros-valores-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 3px;
    background-color: var(--rojo-intra, #cc0000);
}

.nosotros-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

/* Tarjetas de valores con fondo gris y tipografía más grande */
.nosotros-valor-card {
    background: #f1f5f9; 
    padding: 35px;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 51, 102, 0.04);
    transition: all 0.3s ease;
}

.nosotros-valor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 51, 102, 0.08);
}

.nosotros-valor-icon {
    flex: 0 0 65px;
    height: 65px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nosotros-valor-icon i {
    font-size: 2rem;
    color: var(--azul-intra, #003366);
}

.nosotros-valor-content h3 {
    color: var(--azul-intra, #003366);
    font-size: 1.5rem; 
    font-weight: 700;
    margin-bottom: 8px;
}

.nosotros-valor-content p {
    color: #334155;
    font-size: 1.2rem; 
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

/* Ajuste responsive para celulares */
@media (max-width: 768px) {
    .nosotros-mvv-grid,
    .nosotros-valores-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-valor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .nosotros-mvv-card {
        padding: 30px 20px;
    }

    .nosotros-valor-content p, 
    .nosotros-mvv-text p {
        text-align: justify;
    }
}