/* ===================================================================
 *  quienes-somos.css
 *  Estilos específicos para la página ¿Quiénes Somos?
 * =================================================================== */

/* --- 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');
    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 Pilares / Características --- */
.feature-box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    background-color: #0119541a;
    color: #011954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* --- Sección de Llamada a la Acción (CTA) --- */
.cta-section {
    padding: 80px 0;
    background-color: #343a40; /* Fondo oscuro */
    color: #ffffff;
}
.cta-title {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}
.btn-primary {
    background-color: #e61a21;
    border-color: #e61a21;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #c01218;
    border-color: #c01218;
    transform: translateY(-2px);
}