:root {
    --gold-dark: #b8860b;
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-box: #f9f9f9;
}

/* Contenedor General */
/* --- HERO SECTION --- */
.mision-hero {
    position: relative;
    background: url('../img/fondo2.png') no-repeat center center;
    background-size: cover;
    height: 380px;
    width: 100%;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.45); /* Capa oscura para legibilidad */
    width: 100%;
    height: 100%;
    display: table;
}

.hero-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 400;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.hero-line {
    margin: 0 auto 15px auto;
}

.hero-subtitle {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

/* --- SECCIÓN DE CONTENIDO (COLUMNAS) --- */
.mision-vision-content {
    padding: 80px 20px;
}

.mv-row {
    width: 100%;
    margin-left: -25px;
    margin-right: -25px;
}

.mv-row::after {
    content: "";
    display: table;
    clear: both;
}

.mv-col {
    width: calc(50% - 50px);
    float: left;
    margin: 0 25px;
    box-sizing: border-box;
}

/* Círculo identificador amarillo/dorado */
.circle-badge {
    width: 45px;
    height: 45px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    margin-bottom: 20px;
}

.mv-col h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 30px;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: 400;
}

.accent-bar {
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
    margin-bottom: 25px;
}

.mv-text {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

/* --- RECUADROS GRISES DESTACADOS --- */
.highlight-box {
    background-color: var(--bg-box);
    border-radius: 8px;
    padding: 30px;
    margin-top: 35px;
    box-sizing: border-box;
}

.highlight-box h3 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 15px 0;
}

.highlight-box ul {
    list-style: none; /* Quitamos viñetas nativas */
    padding: 0;
    margin: 0;
}

.highlight-box ul li {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px; /* Espacio para la viñeta personalizada */
}

.highlight-box ul li:last-child {
    margin-bottom: 0;
}

/* Viñeta dorada personalizada */
.highlight-box ul li::before {
    content: "•";
    color: var(--gold-primary);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}


/* Tablets y Laptops Pequeñas (Menor a 992px) */
@media (max-width: 992px) {
    .mv-col {
        width: 100%;
        float: none;
        margin: 0 0 60px 0; /* Espaciado vertical al apilarse */
    }
    
    .mv-col:last-child {
        margin-bottom: 0;
    }
    
    .mision-vision-content {
        padding: 60px 20px;
    }
}

/* Celulares (Menor a 768px) */
@media (max-width: 768px) {
    .mision-hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .mv-col h2 {
        font-size: 26px;
    }
    
    .highlight-box {
        padding: 20px;
    }
}