/* ===================================================================
 *  mision-vision-valores.css
 *  Estilos específicos para la página Misión, Visión y Valores.
 * =================================================================== */

/* --- Estilos Generales de Sección --- */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.subtitle {
    display: block;
    color: #011954; /* Color de tu marca */
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* --- Cabecera de Página --- */
#page-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background-image: url('../imagenes/cabecera.jpg'); /* Puedes usar otra imagen si lo deseas */
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
#page-header .page-title {
    position: relative;
    color: white;
    font-weight: 500;
    font-size: 3.5rem;
}

/* --- Sección Misión y Visión --- */
.mission-vision-box {
    padding: 30px;
    height: 100%;
}
.mission-vision-box .icon {
    font-size: 3rem;
    color: #011954;
    margin-bottom: 20px;
}
.mission-vision-box .box-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.mission-vision-box .lead {
    color: #333;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* --- Sección de Valores --- */
.value-box {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.value-icon {
    font-size: 2.5rem;
    color: #011954;
    margin-bottom: 20px;
}
.value-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* --- Sección de Cita Inspiradora --- */
.inspirational-quote-section {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../imagenes/mvv1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax */
}
.inspirational-quote-section h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    color: #ffffff!important;
}