
        /* --- VARIABLES --- */
        :root {
            --primary-blue: #0b2545; 
            --accent-gold: #aa7c33;  
            --text-dark: #333333;
            --bg-light: #f5f5f3;    
            --white: #ffffff;
            --font-serif: 'Marcellus', serif;
            --font-sans: 'Montserrat', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.5;
        }

        /* --- CABECERA --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 4%;
            background-color: var(--white);
            position: relative;
            z-index: 10;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            width: 60px; 
            height: auto;
        }

        .logo-text h1 {
            font-family: var(--font-serif);
            font-size: 24px;
            color: var(--primary-blue);
            letter-spacing: 1px;
            line-height: 1;
        }

        .logo-text p {
            font-size: 11px;
            color: var(--text-dark);
            font-weight: 500;
            margin-top: 2px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center; /* Mantiene los items alineados verticalmente al centro */
        }

        nav ul li a {
            text-decoration: none;
            color: var(--primary-blue);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: color 0.2s ease;
            text-transform: uppercase;
            /* AQUÍ ESTÁ LA MAGIA PARA CENTRAR EL TEXTO EN DOS LÍNEAS */
            display: block; 
            text-align: center;
            line-height: 1.2; 
        }

        nav ul li a:hover {
            color: var(--accent-gold);
        }

        /* Botón de donativo */
        .btn-donate {
            background-color: var(--accent-gold);
            color: var(--white);
            padding: 8px 14px; 
            border-radius: 4px;
            text-decoration: none;
            font-size: 11px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: background-color 0.2s ease;
            text-transform: uppercase;
        }

        .btn-donate:hover {
            background-color: #8a6225;
        }

        /* --- PÁGINA NOSOTROS --- */
.about-page {
    background-color: var(--white);
}

.about-page-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Hero interno */
.about-hero {
    background:
        linear-gradient(rgba(11, 37, 69, 0.78), rgba(11, 37, 69, 0.72)),
        var(--about-hero-image, url('../images/hero-4.webp')) no-repeat center center/cover;
    padding: 120px 8%;
    color: var(--white);
}

.about-hero-container {
    max-width: 850px;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 50px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 24px;
}

.about-hero h1::after {
    content: '';
    display: block;
    width: 190px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 24px;
}

.about-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 720px;
}

/* Secciones generales */
.about-history,
.mission-vision-section,
.objectives-section,
.achievements-section,
.about-allies-section,
.team-section,
.council-section,
.honorary-section {
    padding: 95px 8%;
}

.mission-vision-section,
.achievements-section,
.team-section,
.honorary-section {
    background-color: var(--bg-light);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-section-text h2,
.section-heading h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1.25;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 22px;
}

.about-section-text h2::after,
.section-heading h2::after {
    content: '';
    display: block;
    width: 180px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 22px;
}

.about-section-text p,
.section-heading p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 18px;
    max-width: 760px;
}

.centered-heading {
    text-align: center;
    margin: 0 auto 55px auto;
    max-width: 780px;
}

.centered-heading h2::after {
    margin-left: auto;
    margin-right: auto;
}

.centered-heading p {
    margin-left: auto;
    margin-right: auto;
}

/* Imagen historia */
.about-image-card {
    border-radius: 14px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.11);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

/* Cards generales */
.mission-vision-grid,
.specific-objectives-grid,
.achievements-grid,
.people-grid {
    display: grid;
    gap: 24px;
}

.mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
}

.specific-objectives-grid {
    grid-template-columns: repeat(4, 1fr);
}

.achievements-grid,
.people-grid {
    grid-template-columns: repeat(3, 1fr);
}

.institutional-card,
.general-objective-card,
.objective-card,
.achievement-card,
.person-card,
.council-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 26px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}

.institutional-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(11, 37, 69, 0.08);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.institutional-card h3,
.general-objective-card h3,
.achievement-card h3,
.person-card h3,
.council-card h3 {
    font-family: var(--font-serif);
    font-size: 23px;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 12px;
}

.institutional-card p,
.general-objective-card p,
.objective-card p,
.achievement-card p,
.person-card p {
    font-size: 13px;
    color: #555555;
}

.general-objective-card {
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    color: var(--white);
    margin-bottom: 28px;
}

.general-objective-card h3 {
    color: var(--white);
}

.general-objective-card p {
    color: rgba(255, 255, 255, 0.8);
}

.objective-card span,
.achievement-year,
.person-card span,
.council-card span {
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Aliados */
.about-allies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-ally-logo {
    height: 105px;
    background-color: var(--bg-light);
    border: 1px solid rgba(11, 37, 69, 0.07);
    border-radius: 10px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-ally-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Personas */
.person-photo {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    background-color: var(--bg-light);
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Consejos */
.council-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.honorary-card {
    border-top: 4px solid var(--accent-gold);
}

/* Responsividad */
@media (max-width: 1050px) {
    .two-column-layout,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .specific-objectives-grid,
    .achievements-grid,
    .people-grid,
    .about-allies-grid,
    .council-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 700px) {
    .about-hero {
        padding: 95px 6%;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-history,
    .mission-vision-section,
    .objectives-section,
    .achievements-section,
    .about-allies-section,
    .team-section,
    .council-section,
    .honorary-section {
        padding: 75px 6%;
    }

    .about-section-text h2,
    .section-heading h2 {
        font-size: 29px;
    }

    .specific-objectives-grid,
    .achievements-grid,
    .people-grid,
    .about-allies-grid,
    .council-list {
        grid-template-columns: 1fr;
    }

    .person-photo {
        height: 250px;
    }
}
/* --- FOOTER --- */
.site-footer {
    background:
        linear-gradient(135deg, #071a33 0%, #0b2545 100%);
    color: var(--white);
    padding: 72px 8% 28px 8%;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(170, 124, 51, 0.18);
    border-radius: 50%;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -110px;
    width: 280px;
    height: 280px;
    background-color: rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.75fr 0.9fr 0.9fr;
    gap: 42px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Marca */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 58px;
    height: auto;
}

.footer-logo h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    line-height: 1;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-logo p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 4px;
}

.footer-description {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 420px;
    margin-bottom: 24px;
}

/* Redes */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Columnas */
.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 58px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 11px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

/* Contacto */
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.footer-contact p i {
    color: var(--accent-gold);
    margin-top: 2px;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact p a:hover {
    color: var(--accent-gold);
}

.footer-donate-btn {
    margin-top: 14px;
    background-color: var(--accent-gold);
    color: var(--white) !important;
    text-decoration: none;
    font-size: 11px !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: all 0.25s ease;
}

.footer-donate-btn:hover {
    background-color: #8a6225;
    padding-left: 18px !important;
    gap: 12px;
}

/* Footer inferior */
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a,
.footer-bottom-links span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Responsividad footer */
@media (max-width: 1050px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding: 62px 6% 26px 6%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo h2 {
        font-size: 24px;
    }
}

/* --- NUESTRA HISTORIA MEJORADA --- */
.history-enhanced {
    background-color: var(--white);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.history-enhanced::before {
    content: '';
    position: absolute;
    top: 80px;
    right: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(170, 124, 51, 0.14);
    border-radius: 50%;
}

.history-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.history-main-content h2 {
    font-family: var(--font-serif);
    font-size: 38px;
    line-height: 1.22;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 26px;
}

.history-main-content h2::after {
    content: '';
    display: block;
    width: 190px;
    height: 3px;
    background-color: var(--accent-gold);
    margin-top: 24px;
}

.history-main-content p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.75;
}

.history-main-content strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Frase destacada */
.history-quote {
    margin: 34px 0;
    padding: 28px 30px;
    border-left: 4px solid var(--accent-gold);
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 400;
    border-radius: 0 10px 10px 0;
}

/* Panel lateral */
.history-side-panel {
    position: sticky;
    top: 30px;
    display: grid;
    gap: 24px;
}

.history-image-box {
    position: relative;
    min-height: 330px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.11);
}

.history-image-box img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.history-image-box:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.history-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 37, 69, 0.04),
        rgba(11, 37, 69, 0.76)
    );
}

.history-image-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
    color: var(--white);
}

.history-image-caption span {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.history-image-caption strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 25px;
    line-height: 1.15;
    font-weight: 400;
}

/* Tarjetas laterales */
.history-facts-card,
.history-focus-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px 26px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
}

.history-facts-card h3,
.history-focus-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 22px;
}

.history-facts-card h3::after,
.history-focus-card h3::after {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 12px;
}

.history-fact {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.history-fact:last-child {
    margin-bottom: 0;
}

.history-fact i {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.history-fact span {
    display: block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.history-fact p {
    font-size: 13px;
    color: #555555;
    margin-bottom: 0;
    line-height: 1.45;
}

.history-focus-card ul {
    list-style: none;
}

.history-focus-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 13px;
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
}

.history-focus-card li:last-child {
    margin-bottom: 0;
}

.history-focus-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

/* Responsividad historia */
@media (max-width: 1050px) {
    .history-layout {
        grid-template-columns: 1fr;
    }

    .history-side-panel {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .history-image-box {
        grid-column: span 2;
    }
}

@media (max-width: 700px) {
    .history-enhanced {
        padding: 80px 6% 85px 6%;
    }

    .history-main-content h2 {
        font-size: 30px;
    }

    .history-quote {
        font-size: 21px;
        padding: 24px 24px;
    }

    .history-side-panel {
        grid-template-columns: 1fr;
    }

    .history-image-box {
        grid-column: span 1;
        min-height: 300px;
    }

    .history-image-box img {
        min-height: 300px;
    }
}
/* --- MISIÓN Y VISIÓN MEJORADA --- */
.mission-vision-enhanced {
    background:
        linear-gradient(135deg, rgba(245, 245, 243, 0.96), rgba(255, 255, 255, 0.98));
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.mission-vision-enhanced::before {
    content: '';
    position: absolute;
    top: -90px;
    left: -100px;
    width: 290px;
    height: 290px;
    background-color: rgba(170, 124, 51, 0.08);
    border-radius: 50%;
}

.mission-vision-enhanced::after {
    content: '';
    position: absolute;
    bottom: -130px;
    right: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: 50%;
}

.mission-vision-heading {
    position: relative;
    z-index: 2;
}

.mission-vision-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    position: relative;
    z-index: 2;
}

.mv-card {
    min-height: 410px;
    border-radius: 16px;
    padding: 42px 38px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.1);
}

.mission-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-top: 5px solid var(--accent-gold);
}

.vision-card {
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    color: var(--white);
    border: 1px solid rgba(170, 124, 51, 0.28);
}

.mv-card::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(170, 124, 51, 0.08);
}

.vision-card::after {
    border: 1px solid rgba(170, 124, 51, 0.28);
    background-color: transparent;
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.mv-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgba(11, 37, 69, 0.08);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.vision-card .mv-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.mv-card-header span {
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card h3 {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.vision-card h3 {
    color: var(--white);
}

.mv-card h3::after {
    content: '';
    display: block;
    width: 110px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 16px;
}

.mv-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #555555;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.82);
}

/* Franja de valores */
.mission-values-strip {
    margin-top: 34px;
    background-color: var(--white);
    border-radius: 14px;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(11, 37, 69, 0.07);
    position: relative;
    z-index: 2;
}

.mission-value-item {
    text-align: center;
    padding: 14px 10px;
    border-right: 1px solid rgba(11, 37, 69, 0.08);
}

.mission-value-item:last-child {
    border-right: none;
}

.mission-value-item i {
    display: block;
    color: var(--accent-gold);
    font-size: 23px;
    margin-bottom: 10px;
}

.mission-value-item span {
    display: block;
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Responsividad misión y visión */
@media (max-width: 1050px) {
    .mission-vision-enhanced-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        min-height: auto;
    }

    .mission-values-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .mission-value-item {
        border-right: none;
    }
}

@media (max-width: 700px) {
    .mission-vision-enhanced {
        padding: 80px 6% 85px 6%;
    }

    .mv-card {
        padding: 34px 28px;
    }

    .mv-card h3 {
        font-size: 29px;
    }

    .mv-card p {
        font-size: 13px;
    }

    .mission-values-strip {
        grid-template-columns: 1fr;
        padding: 18px 20px;
    }

    .mission-value-item {
        border-bottom: 1px solid rgba(11, 37, 69, 0.08);
    }

    .mission-value-item:last-child {
        border-bottom: none;
    }
}
/* --- OBJETIVOS MEJORADOS --- */
.objectives-enhanced {
    background-color: var(--white);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.objectives-enhanced::before {
    content: '';
    position: absolute;
    top: 90px;
    right: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(170, 124, 51, 0.14);
    border-radius: 50%;
}

.objectives-enhanced::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -110px;
    width: 300px;
    height: 300px;
    background-color: rgba(11, 37, 69, 0.035);
    border-radius: 50%;
}

.objectives-heading {
    position: relative;
    z-index: 2;
}

/* Objetivo general */
.general-objective-enhanced {
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 44px 46px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 22px 54px rgba(11, 37, 69, 0.18);
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 34px;
}

.general-objective-enhanced::after {
    content: '';
    position: absolute;
    right: -85px;
    bottom: -85px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(170, 124, 51, 0.35);
    border-radius: 50%;
}

.general-objective-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.general-objective-content {
    position: relative;
    z-index: 2;
}

.general-objective-content span {
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.general-objective-content h3 {
    font-family: var(--font-serif);
    font-size: 31px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 18px;
}

.general-objective-content h3::after {
    content: '';
    display: block;
    width: 130px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 18px;
}

.general-objective-content p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

/* Objetivos específicos */
.specific-objectives-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.specific-objective-card {
    background-color: var(--bg-light);
    border-radius: 14px;
    padding: 36px 30px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    border-top: 4px solid var(--accent-gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.specific-objective-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.085);
    border-color: rgba(170, 124, 51, 0.4);
}

.specific-objective-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background-color: rgba(170, 124, 51, 0.08);
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.specific-objective-card:hover::after {
    transform: scale(1.35);
}

.specific-objective-number {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: var(--font-serif);
    font-size: 48px;
    line-height: 1;
    color: rgba(11, 37, 69, 0.08);
    z-index: 1;
}

.specific-objective-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--accent-gold);
    border: 1px solid rgba(170, 124, 51, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.specific-objective-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.specific-objective-card p {
    font-size: 13px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Responsividad objetivos */
@media (max-width: 1050px) {
    .specific-objectives-enhanced-grid {
        grid-template-columns: 1fr;
    }

    .general-objective-enhanced {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .objectives-enhanced {
        padding: 80px 6% 85px 6%;
    }

    .general-objective-enhanced {
        padding: 36px 28px;
    }

    .general-objective-content h3 {
        font-size: 27px;
    }

    .general-objective-content p {
        font-size: 13px;
    }

    .specific-objective-card {
        padding: 32px 26px;
    }

    .specific-objective-card h3 {
        font-size: 22px;
    }
}
/* Título objetivos específicos */
.specific-objectives-title {
    max-width: 760px;
    margin: 54px auto 34px auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.specific-objectives-title h3 {
    font-family: var(--font-serif);
    font-size: 31px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 16px;
}

.specific-objectives-title h3::after {
    content: '';
    display: block;
    width: 130px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 18px auto 0 auto;
}

.specific-objectives-title p {
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
    margin: 0 auto;
    max-width: 680px;
}

@media (max-width: 700px) {
    .specific-objectives-title {
        margin: 42px auto 28px auto;
    }

    .specific-objectives-title h3 {
        font-size: 26px;
    }

    .specific-objectives-title p {
        font-size: 13px;
    }
}

/* --- RECONOCIMIENTOS Y LOGROS: GALERÍA DOCUMENTAL --- */
.achievements-gallery-section {
    background-color: var(--bg-light);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.achievements-gallery-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(170, 124, 51, 0.14);
    border-radius: 50%;
}

.achievements-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -120px;
    width: 310px;
    height: 310px;
    background-color: rgba(11, 37, 69, 0.035);
    border-radius: 50%;
}

/* --- ENLACE A TODOS LOS HITOS INSTITUCIONALES --- */
.achievements-more-link {
    margin: 48px auto 0 auto;
    max-width: 820px;
    text-align: center;
    background-color: var(--white);
    border-radius: 16px;
    padding: 36px 34px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.055);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.achievements-more-link::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(170, 124, 51, 0.22);
    border-radius: 50%;
}

.achievements-more-link span {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.achievements-more-link h3 {
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.achievements-more-link h3::after {
    content: '';
    display: block;
    width: 130px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 18px auto 0 auto;
}

.achievements-more-link p {
    max-width: 650px;
    margin: 0 auto 26px auto;
    font-size: 14px;
    line-height: 1.65;
    color: #555555;
    position: relative;
    z-index: 2;
}

.achievements-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: background-color 0.25s ease, transform 0.25s ease;
    position: relative;
    z-index: 2;
}

.achievements-more-btn:hover {
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}

.achievements-more-btn i {
    font-size: 12px;
}

@media (max-width: 700px) {
    .achievements-more-link {
        margin-top: 38px;
        padding: 32px 26px;
    }

    .achievements-more-link h3 {
        font-size: 25px;
    }

    .achievements-more-link p {
        font-size: 13px;
    }

    .achievements-more-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 12px;
        line-height: 1.4;
    }
}

.achievements-heading {
    position: relative;
    z-index: 2;
}

/* Galería */
.achievements-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Card base */
.achievement-gallery-card {
    grid-column: span 2;
    background-color: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.achievement-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
}

/* Card grande destacada */
.achievement-large {
    grid-column: span 3;
    grid-row: span 2;
}

.achievement-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.achievement-large .achievement-image {
    height: 360px;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.achievement-gallery-card:hover .achievement-image img {
    transform: scale(1.07);
    filter: saturate(1.05);
}

/* Etiqueta sobre imagen */
.achievement-type {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: var(--accent-gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 8px 12px;
    border-radius: 50px;
}

/* Texto */
.achievement-caption {
    padding: 26px 24px 28px 24px;
}

.achievement-caption span {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.achievement-caption h3 {
    font-family: var(--font-serif);
    font-size: 23px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 12px;
}

.achievement-large .achievement-caption h3 {
    font-size: 28px;
}

.achievement-caption p {
    font-size: 12px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* Variante para documentos escaneados */
.achievement-gallery-card.document-card .achievement-image img {
    object-fit: contain;
    padding: 18px;
    background-color: var(--white);
}

/* Responsividad */
@media (max-width: 1100px) {
    .achievements-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-gallery-card,
    .achievement-large {
        grid-column: span 1;
        grid-row: auto;
    }

    .achievement-large .achievement-image {
        height: 280px;
    }
}

@media (max-width: 700px) {
    .achievements-gallery-section {
        padding: 80px 6% 85px 6%;
    }

    .achievements-gallery {
        grid-template-columns: 1fr;
    }

    .achievement-image,
    .achievement-large .achievement-image {
        height: 240px;
    }

    .achievement-caption h3,
    .achievement-large .achievement-caption h3 {
        font-size: 22px;
    }
}
/* --- INSTITUCIONES AMIGAS Y ALIADOS: LOGOS LIBRES --- */
.allies-free-section {
    background-color: var(--white);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.allies-free-section::before {
    content: '';
    position: absolute;
    top: 70px;
    right: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(170, 124, 51, 0.14);
    border-radius: 50%;
}

.allies-free-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -110px;
    width: 310px;
    height: 310px;
    background-color: rgba(11, 37, 69, 0.035);
    border-radius: 50%;
}

.allies-section-heading {
    position: relative;
    z-index: 2;
}

/* Mural de logos */
.allies-free-section .allies-view-switch {
    margin-top: 40px;
}

.allies-free-wall {
    max-width: 1050px;
    margin: 58px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 42px 58px;
    position: relative;
    z-index: 2;
    padding: 28px 0;
}

.allies-free-section .allies-view-switch .allies-free-wall {
    margin-top: 12px;
}

/* Línea decorativa detrás de los logos */
.allies-free-wall::before {
    content: '';
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(170, 124, 51, 0.26),
        transparent
    );
    z-index: -1;
}

.allies-free-wall::after {
    content: '';
    position: absolute;
    width: 72%;
    height: 72%;
    border: 1px solid rgba(11, 37, 69, 0.06);
    border-radius: 50%;
    z-index: -2;
}

/* Logo libre */
.ally-free-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    opacity: 0;
    animation: allyFloatIn 0.7s ease forwards;
}

.ally-free-logo.has-link {
    cursor: pointer;
}

/* Delays para que aparezcan con ritmo */
.ally-free-logo:nth-child(1) { animation-delay: 0.04s; }
.ally-free-logo:nth-child(2) { animation-delay: 0.10s; }
.ally-free-logo:nth-child(3) { animation-delay: 0.16s; }
.ally-free-logo:nth-child(4) { animation-delay: 0.22s; }
.ally-free-logo:nth-child(5) { animation-delay: 0.28s; }
.ally-free-logo:nth-child(6) { animation-delay: 0.34s; }
.ally-free-logo:nth-child(7) { animation-delay: 0.40s; }
.ally-free-logo:nth-child(8) { animation-delay: 0.46s; }

.ally-free-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        filter 0.28s ease;
}

.ally-free-logo:hover img {
    opacity: 1;
    transform: translateY(-6px) scale(1.08);
    filter: drop-shadow(0 10px 18px rgba(11, 37, 69, 0.16));
}

/* Tamaños variables para que no parezca una grilla rígida */
.logo-size-sm {
    width: 110px;
    height: 58px;
}

.logo-size-md {
    width: 145px;
    height: 74px;
}

.logo-size-lg {
    width: 180px;
    height: 88px;
}

/* Animación de entrada */
@keyframes allyFloatIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividad */
@media (max-width: 900px) {
    .allies-free-wall {
        gap: 34px 42px;
    }

    .logo-size-sm {
        width: 96px;
        height: 52px;
    }

    .logo-size-md {
        width: 125px;
        height: 64px;
    }

    .logo-size-lg {
        width: 155px;
        height: 78px;
    }
}

@media (max-width: 600px) {
    .allies-free-section {
        padding: 80px 6% 85px 6%;
    }

    .allies-free-wall {
        gap: 30px 34px;
        margin-top: 42px;
    }

    .allies-free-wall::before,
    .allies-free-wall::after {
        display: none;
    }

    .ally-free-logo::after {
        display: none;
    }

    .logo-size-sm,
    .logo-size-md,
    .logo-size-lg {
        width: 125px;
        height: 64px;
    }
}


/* --- EQUIPO EJECUTIVO SIN FOTOS --- */
.team-no-photo-section {
    background-color: var(--bg-light);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.team-no-photo-section::before {
    content: '';
    position: absolute;
    top: 80px;
    right: -120px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(170, 124, 51, 0.14);
    border-radius: 50%;
}

.team-no-photo-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -110px;
    width: 310px;
    height: 310px;
    background-color: rgba(11, 37, 69, 0.035);
    border-radius: 50%;
}

.team-heading {
    position: relative;
    z-index: 2;
}

.executive-team-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.executive-member-card {
    grid-column: span 2;
    background-color: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    border-top: 4px solid var(--accent-gold);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.executive-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.085);
    border-color: rgba(170, 124, 51, 0.4);
}

.executive-member-card::after {
    content: '';
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 135px;
    height: 135px;
    background-color: rgba(170, 124, 51, 0.08);
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.executive-member-card:hover::after {
    transform: scale(1.35);
}

.executive-main {
    grid-column: span 6;
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    color: var(--white);
    border-top: none;
    border-left: 5px solid var(--accent-gold);
    align-items: center;
    padding: 38px 34px;
}

.member-symbol {
    min-width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: rgba(11, 37, 69, 0.08);
    border: 1px solid rgba(170, 124, 51, 0.28);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.executive-main .member-symbol {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(170, 124, 51, 0.55);
}

.member-info {
    position: relative;
    z-index: 2;
}

.member-role {
    display: block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.executive-main .member-role {
    color: var(--accent-gold);
}

.member-info h3 {
    font-family: var(--font-serif);
    font-size: 25px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 0;
}

.executive-main .member-info h3 {
    color: var(--white);
    font-size: 31px;
}


/* --- CONSEJO CONSULTIVO --- */
.consultive-council-section {
    background-color: var(--white);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.consultive-council-section::before {
    content: '';
    position: absolute;
    top: 85px;
    left: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(170, 124, 51, 0.14);
    border-radius: 50%;
}

.council-heading {
    position: relative;
    z-index: 2;
}

.consultive-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.consultive-group-card {
    background-color: var(--bg-light);
    border-radius: 14px;
    padding: 36px 32px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.consultive-group-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.085);
}

.consultive-group-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.consultive-icon {
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.consultive-group-header span {
    display: block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.consultive-group-header h3 {
    font-family: var(--font-serif);
    font-size: 25px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 0;
}

.consultive-members-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.consultive-members-list li {
    background-color: var(--white);
    border-left: 3px solid var(--accent-gold);
    border-radius: 8px;
    padding: 16px 18px;
    color: var(--primary-blue);
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.035);
}

.consultive-members-list strong {
    font-weight: 600;
}


/* --- CONSEJO HONORÍFICO --- */
.honorary-council-section {
    background:
        radial-gradient(circle at top right, rgba(170, 124, 51, 0.16), transparent 30%),
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.honorary-council-section::before {
    content: '';
    position: absolute;
    top: 75px;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.honorary-heading {
    position: relative;
    z-index: 2;
}

.honorary-heading h2 {
    color: var(--white);
}

.honorary-heading p {
    color: rgba(255, 255, 255, 0.76);
}

.honorary-heading h2::after {
    background-color: var(--accent-gold);
}

.honorary-members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.honorary-member-card {
    background-color: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 38px 34px;
    border: 1px solid rgba(170, 124, 51, 0.25);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.honorary-member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.honorary-member-card::after {
    content: '';
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(170, 124, 51, 0.22);
    border-radius: 50%;
}

.honorary-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.honorary-label {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.honorary-member-card h3 {
    font-family: var(--font-serif);
    font-size: 29px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.honorary-member-card p {
    font-size: 14px;
    line-height: 1.55;
    color: #555555;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}


/* --- RESPONSIVIDAD EQUIPO Y CONSEJOS --- */
@media (max-width: 1050px) {
    .executive-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .executive-member-card,
    .executive-main {
        grid-column: span 1;
    }

    .consultive-layout,
    .honorary-members-grid {
        grid-template-columns: 1fr;
    }

    .executive-main .member-info h3 {
        font-size: 25px;
    }
}

@media (max-width: 700px) {
    .team-no-photo-section,
    .consultive-council-section,
    .honorary-council-section {
        padding: 80px 6% 85px 6%;
    }

    .executive-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .executive-member-card,
    .executive-main {
        grid-column: span 1;
        flex-direction: column;
        padding: 22px 16px;
        gap: 14px;
        border-radius: 12px;
    }
    
    .executive-main {
        align-items: flex-start;
        border-left: none;
        border-top: 4px solid var(--accent-gold);
    }

    .member-symbol {
        min-width: 48px;
        width: 48px;
        height: 48px;
        font-size: 17px;
    }
    
    .member-role {
        font-size: 8px;
        letter-spacing: 0.7px;
        line-height: 1.35;
        margin-bottom: 7px;
    }

    .member-info h3,
    .executive-main .member-info h3 {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .executive-member-card::after {
        width: 95px;
        height: 95px;
        right: -45px;
        bottom: -45px;
    }

    .consultive-group-card,
    .honorary-member-card {
        padding: 32px 26px;
    }

    .consultive-group-header {
        flex-direction: column;
    }

    .consultive-group-header h3 {
        font-size: 23px;
    }

    .honorary-member-card h3 {
        font-size: 25px;
    }
}
/* --- FUNDACIÓN CEHISEF EN CONSTRUCCIÓN --- */
.foundation-coming-soon {
    background-color: var(--bg-light);
    padding: 95px 8% 100px 8%;
    position: relative;
    overflow: hidden;
}

.foundation-coming-soon::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(170, 124, 51, 0.15);
    border-radius: 50%;
}

.foundation-coming-soon::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -110px;
    width: 300px;
    height: 300px;
    background-color: rgba(11, 37, 69, 0.035);
    border-radius: 50%;
}

.foundation-box {
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    color: var(--white);
    border-radius: 18px;
    padding: 46px 48px;
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 32px;
    align-items: center;
    box-shadow: 0 22px 54px rgba(11, 37, 69, 0.18);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.foundation-box::after {
    content: '';
    position: absolute;
    right: -85px;
    bottom: -85px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(170, 124, 51, 0.35);
    border-radius: 50%;
}

.foundation-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.foundation-content {
    position: relative;
    z-index: 2;
}

.foundation-content h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.foundation-content h2::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 18px;
}

.foundation-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    max-width: 850px;
}

.foundation-status {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    padding: 11px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.foundation-status i {
    color: var(--accent-gold);
}

.foundation-decoration {
    position: relative;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    padding-left: 22px;
}

.foundation-decoration span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* Responsividad Fundación */
@media (max-width: 1050px) {
    .foundation-box {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .foundation-decoration {
        writing-mode: horizontal-tb;
        transform: none;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 700px) {
    .foundation-coming-soon {
        padding: 80px 6% 85px 6%;
    }

    .foundation-box {
        padding: 36px 28px;
    }

    .foundation-content h2 {
        font-size: 28px;
    }

    .foundation-content p {
        font-size: 13px;
    }

    .foundation-status {
        align-items: flex-start;
        border-radius: 10px;
        line-height: 1.4;
    }
}
/* --- MIEMBRO HONORÍFICO VITALICIO --- */
.lifetime-honor-section {
    background-color: var(--white);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

.lifetime-honor-section::before {
    content: '';
    position: absolute;
    top: 80px;
    left: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(170, 124, 51, 0.16);
    border-radius: 50%;
}

.lifetime-honor-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -120px;
    width: 320px;
    height: 320px;
    background-color: rgba(11, 37, 69, 0.035);
    border-radius: 50%;
}

.lifetime-honor-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(11, 37, 69, 0.2);
    position: relative;
    z-index: 2;
}

.lifetime-honor-card::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(170, 124, 51, 0.32);
    border-radius: 50%;
    z-index: 1;
}

.lifetime-honor-image {
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.lifetime-honor-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifetime-honor-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(11, 37, 69, 0.08),
            rgba(11, 37, 69, 0.36)
        );
}

.lifetime-honor-content {
    padding: 17px 52px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.lifetime-honor-content h2 {
    font-family: var(--font-serif);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 26px;
}

.lifetime-honor-content h2::after {
    content: '';
    display: block;
    width: 160px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-top: 20px;
}

.lifetime-honor-name {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-gold);
    padding: 22px 24px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 28px;
}

.lifetime-honor-name span {
    display: block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.lifetime-honor-name h3 {
    font-family: var(--font-serif);
    font-size: 31px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
}

.lifetime-honor-name p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    margin-bottom: 0;
}

.lifetime-honor-content > p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 18px;
}

.lifetime-honor-content strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.lifetime-honor-seal {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(170, 124, 51, 0.16);
    border: 1px solid rgba(170, 124, 51, 0.34);
    color: var(--white);
    padding: 12px 17px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lifetime-honor-seal i {
    color: var(--accent-gold);
}

/* Responsividad */
@media (max-width: 1000px) {
    .lifetime-honor-card {
        grid-template-columns: 1fr;
    }

    .lifetime-honor-image {
        min-height: 380px;
    }

    .lifetime-honor-image::after {
        background:
            linear-gradient(
                to bottom,
                rgba(11, 37, 69, 0.04),
                rgba(11, 37, 69, 0.36)
            );
    }
}

@media (max-width: 700px) {
    .lifetime-honor-section {
        padding: 80px 6% 85px 6%;
    }

    .lifetime-honor-content {
        padding: 38px 28px;
    }

    .lifetime-honor-content h2 {
        font-size: 31px;
    }

    .lifetime-honor-name h3 {
        font-size: 26px;
    }

    .lifetime-honor-content > p {
        font-size: 13px;
    }

    .lifetime-honor-seal {
        border-radius: 12px;
        align-items: flex-start;
        line-height: 1.4;
    }
}
/* --- ACCIONES DEL HEADER --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- BOTÓN HAMBURGUESA --- */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.menu-toggle:hover {
    background-color: var(--accent-gold);
}

.menu-toggle:active {
    transform: scale(0.96);
}

/* --- MENÚ RESPONSIVE --- */
@media (max-width: 1024px) {
    header {
        position: relative;
        flex-wrap: wrap;
        gap: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    nav.main-nav {
        display: none;
        width: 100%;
        order: 3;
        background-color: var(--white);
        border-top: 1px solid rgba(11, 37, 69, 0.08);
        padding-top: 14px;
        margin-top: 8px;
        animation: mobileMenuFade 0.25s ease both;
    }

    nav.main-nav.active {
        display: block;
    }

    nav.main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    nav.main-nav ul li {
        width: 100%;
    }

    nav.main-nav ul li a {
        display: block;
        width: 100%;
        max-width: none !important;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(11, 37, 69, 0.07);
        color: var(--primary-blue);
        text-align: left;
    }

    nav.main-nav ul li a::after {
        display: none;
    }

    .btn-donate {
        padding: 11px 16px;
        font-size: 11px;
    }
}

@keyframes mobileMenuFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- AJUSTES PARA CELULAR PEQUEÑO --- */
@media (max-width: 520px) {
    header {
        padding: 18px 6%;
    }

    /* --- .logo-text p {--- */
    /* ---    display: none;--- */
    /* ---}--- */

    .btn-donate {
        display: none;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }
}
    