
        /* --- 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;
        }
        
        /* --- 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);
}

/* 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;
    }
}
/* --- 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;
    }
}

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

.contact-page-container {
    max-width: 1180px;
    margin: 0 auto;
}

/* HERO CONTACTO */
.contact-hero {
    background:
        linear-gradient(135deg, rgba(11, 37, 69, 0.78), rgba(7, 26, 51, 0.72)),
        var(--contact-hero-image, url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80')) no-repeat center center/cover;
    padding: 135px 8% 105px 8%;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(170, 124, 51, 0.26);
    border-radius: 50%;
}

.contact-hero-container {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1.12;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
}

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

.contact-hero p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    max-width: 760px;
}

/* CANALES */
.contact-channels-section {
    background-color: var(--bg-light);
    padding: 95px 8% 100px 8%;
    position: relative;
    overflow: hidden;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.contact-channel-card {
    background-color: var(--white);
    border-radius: 14px;
    padding: 34px 30px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    border-top: 4px solid var(--accent-gold);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.contact-channel-icon {
    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;
    margin-bottom: 24px;
}

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

.contact-channel-card h3 {
    font-family: var(--font-serif);
    font-size: 23px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 12px;
    word-break: break-word;
}

.contact-channel-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0;
}

/* MOTIVOS DE CONTACTO */
.contact-reasons-section {
    background-color: var(--white);
    padding: 100px 8% 105px 8%;
    position: relative;
    overflow: hidden;
}

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

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

.contact-reason-card {
    background-color: var(--bg-light);
    border-radius: 14px;
    padding: 34px 30px;
    border: 1px solid rgba(11, 37, 69, 0.07);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.contact-reason-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--accent-gold);
    border: 1px solid rgba(170, 124, 51, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 22px;
}

.contact-reason-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.2;
    color: var(--primary-blue);
    font-weight: 400;
    margin-bottom: 14px;
}

.contact-reason-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.email-suggestion {
    background-color: var(--white);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.email-suggestion span {
    display: block;
    color: var(--accent-gold);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.email-suggestion strong {
    display: block;
    color: var(--primary-blue);
    font-size: 13px;
    line-height: 1.4;
}

.contact-reason-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.contact-reason-card li {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.45;
    color: #555555;
}

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

/* REDES SOCIALES */
.contact-social-section {
    background-color: var(--bg-light);
    padding: 95px 8% 100px 8%;
}

.contact-social-box {
    background:
        linear-gradient(135deg, #0b2545 0%, #071a33 100%);
    border-radius: 18px;
    padding: 46px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    box-shadow: 0 22px 54px rgba(11, 37, 69, 0.16);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.contact-social-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
    margin-bottom: 0;
}

.contact-social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.contact-social-link {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.contact-social-link:hover {
    transform: translateY(-6px);
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.contact-social-link i {
    font-size: 25px;
}

.contact-social-link span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* CTA FINAL */
.contact-final-cta {
    background-color: var(--white);
    padding: 95px 8% 105px 8%;
}

.contact-final-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.contact-final-box > i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    margin-bottom: 24px;
}

.contact-final-box h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.contact-final-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 28px;
}

.contact-final-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.8px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

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

/* RESPONSIVE CONTACTO */
@media (max-width: 1050px) {
    .contact-channels-grid,
    .contact-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-social-box {
        grid-template-columns: 1fr;
    }

    .contact-social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 700px) {
    .contact-hero {
        padding: 110px 6% 80px 6%;
    }

    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-channels-section,
    .contact-reasons-section,
    .contact-social-section,
    .contact-final-cta {
        padding: 80px 6% 85px 6%;
    }

    .contact-channels-grid,
    .contact-reasons-grid {
        grid-template-columns: 1fr;
    }

    .contact-channel-card,
    .contact-reason-card {
        padding: 30px 26px;
    }

    .contact-social-box {
        padding: 38px 28px;
    }

    .contact-social-content h2,
    .contact-final-box h2 {
        font-size: 29px;
    }

    .contact-social-link {
        width: 96px;
        height: 96px;
    }
}
.contact-reason-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 12px 17px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

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

.contact-reason-btn i {
    font-size: 11px;
}
    