/* --- VARIABLES GLOBALES DE DISEÑO --- */
:root {
    --primary-blue: #071c42;
    --accent-yellow: #f3c12c;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* --- CLASES DE SOPORTE GENERAL --- */
.text-primary-dark { color: var(--primary-blue); }
.text-warning-dark { color: #d4a316; }
.tracking-wide { letter-spacing: 0.5px; font-size: 12px; }
.max-width-600 { max-width: 600px; }

/* --- SECCIONES REUTILIZABLES --- */
.about-section, .objectives, .leadership, .world-section {
    padding: 90px 0;
}

.section-subtitle {
    display: inline-block;
    color: #d4a316;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title-main {
    color: var(--primary-blue);
    font-weight: 800;
    position: relative;
}

/* --- HERO (CON MEJOR CAPA DE CONTRASTE) --- */
.about-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(7, 28, 66, 0.88), rgba(7, 28, 66, 0.92)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2000');
    background-size: cover;
    background-position: center;
    color: white;
}

.about-hero h1 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-badge {
    background: rgba(243, 193, 44, 0.2);
    color: var(--accent-yellow);
    border: 1px solid rgba(243, 193, 44, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* --- CARDS DE ESTADÍSTICAS --- */
.about-stats {
    padding: 70px 0;
    background: var(--bg-light);
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7, 28, 66, 0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.icon-stat {
    font-size: 28px;
    color: var(--accent-yellow);
}

/* --- CARDS DE OBJETIVOS --- */
.objective-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(7, 28, 66, 0.03);
    border: 1px solid #edf2f7;
}

.badge-icon-blue {
    background: rgba(7, 28, 66, 0.06);
    color: var(--primary-blue);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 20px;
}

.text-dark-blue { color: var(--primary-blue); }

/* --- AUTORIDADES PRINCIPALES --- */
.authority-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
}

.border-top-warning {
    border-top: 4px solid var(--accent-yellow);
}

.role-badge {
    font-size: 11px;
    background: #f1f5f9;
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.authority-card h5 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

/* --- COORDINADORES REGIONALES --- */
.regional-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.regional-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border-left: 4px solid var(--primary-blue);
}

.regional-card h5 {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.regional-card p {
    margin: 0;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 17px;
}

/* --- DISEÑO DE LAS SECRETARÍAS (REDISEÑO DE LA LISTA FEA) --- */
.custom-accordion .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
}

.bg-light-blue {
    background-color: #f0f4f8 !important;
}

.bg-light-flat {
    background-color: #fafbfc;
}

.country-pill {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01);
}

.country-pill .country-name {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.country-pill .manager-name {
    font-size: 13px;
    color: #475569;
}

/* --- MAPA --- */
.map-style {
    filter: drop-shadow(0px 10px 20px rgba(7, 28, 66, 0.1));
    max-height: 350px;
}

/* --- SECCIÓN CTA --- */
.about-cta {
    padding: 90px 0;
    background: var(--primary-blue);
    color: white;
}

.btn-custom-cta {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-custom-cta:hover {
    background-color: #e5b31c;
    transform: scale(1.03);
    color: var(--primary-blue);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media(max-width: 991px) {
    .about-hero {
        text-align: center;
        padding: 60px 0;
        min-height: 50vh;
    }
    .about-hero h1 {
        font-size: 48px;
    }
    .about-section, .objectives, .leadership, .world-section {
        padding: 60px 0;
    }
}