.contenedor-restriccion {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* --- MENÚ SECUNDARIO (Superior - Gris/Blanco) --- */
.barra-menu-secundario {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e4e6;
    padding: 8px 0;
}

.barra-menu-secundario ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.barra-menu-secundario a {
    color: #4361ee; /* Tono de azul claro/enlace institucional */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif, Arial;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.barra-menu-secundario a:hover {
    color: #1b396a;
    text-decoration: underline;
}

/* --- MENÚ PRINCIPAL (Inferior - Azul Marino) --- */
.barra-menu-principal {
    background-color: #1b396a; /* Azul Marino Oficial */
    padding: 10px 0;
}

.barra-menu-principal ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.barra-menu-principal a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif, Arial;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.barra-menu-principal a:hover,
.barra-menu-principal a.activo {
    color: #dfb15b; /* Detalle dorado */
}

/* --- ÁREA DE CONTENIDO (Alineación y Espaciados) --- */
.area-contenido {
    padding: 50px 0;
    background-color: #fcfcfc;
    min-height: 55vh;
}

.titulo-seccion h1 {
    font-family: 'Montserrat', sans-serif, Arial;
    color: #131313;
    font-size: 28px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.linea-decorativa {
    width: 60px;
    height: 4px;
    background-color: #1b396a;
    margin-bottom: 35px;
}

/* --- DISEÑO ESPECÍFICO DE MISIÓN Y VISIÓN --- */
.bloques-identidad {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tarjeta-identidad {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border-top: 4px solid #1b396a;
}

.icono-bloque {
    font-size: 28px;
    margin-bottom: 15px;
}

.tarjeta-identidad h2 {
    margin: 0 0 15px 0;
    color: #1b396a;
    font-size: 22px;
}

.tarjeta-identidad p {
    color: #555555;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* --- DISEÑO ESPECÍFICO DE SEMBLANZA (LOGOS SUELTOS Y COMPLETOS) --- */
.articulo-semblanza {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    max-width: 850px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center; 
}

/* Contenedor invisible (sin marco, sin fondo, sin sombra) */
.imagen-semblanza {
    width: 100%;
    max-width: 260px; 
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen suelta y completa */
.imagen-semblanza img {
    width: 100%;
    height: auto;
    max-height: 140px; 
    object-fit: contain; /* Garantiza que el logo se muestre completo sin cortes */
    display: block;
}

.texto-semblanza {
    width: 100%; 
}

.parrafo-destacado {
    font-size: 17px;
    color: #1b396a;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.articulo-semblanza p {
    color: #444444;
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 15px 0;
    text-align: justify;
}