/* ESTILOS DEL FOOTER CINEMATOGRÁFICO */
/* BEGIN cinematic-footer-css */
    /* --- FOOTER CINEMATOGRÁFICO DE VIDA SILVESTRE --- */
    .footer-cinematic {
        position: relative;
        background-color: #0a1711; /* Verde bosque muy oscuro */
        color: #faf9f6; /* Marfil */
        padding: 5rem 1.5rem 2rem 1.5rem;
        width: 100vw !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        box-sizing: border-box;
        overflow: visible; /* Permite que el divisor sobresalga arriba sin recortarse */
        font-family: 'Inter', sans-serif; /* Fallback explícito a Inter */
        z-index: 5 !important;
    }

    .footer-organic-divider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 240px;
        transform: translateY(-99%) translateY(45px); /* Se superpone arriba pero baja 45px en total para dar máximo aire con respecto al mapa */
        z-index: 10;
        pointer-events: none;
    }

    .footer-organic-divider svg {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center bottom;
    }

    /* Fondo Ilustrado con Capas de Profundidad */
    .footer-cinematic-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .footer-svg-background {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* --- MICRO-ANIMACIONES DISCRETAS --- */
    
    /* 1. Vuelo pausado e infinito del Cóndor */
    @keyframes condorSoar {
        0% { transform: translate(-100px, 120px) scale(1.5); opacity: 0; }
        5% { opacity: 0.35; }
        95% { opacity: 0.35; }
        100% { transform: translate(1540px, 60px) scale(1.3); opacity: 0; }
    }

    .condor-soar-path {
        animation: condorSoar 35s linear infinite;
        transform-origin: center;
    }

    /* 2. Deriva lenta de la Neblina */
    @keyframes driftFog1 {
        0% { transform: translateX(-5%); }
        50% { transform: translateX(5%); }
        100% { transform: translateX(-5%); }
    }

    @keyframes driftFog2 {
        0% { transform: translateX(5%); }
        50% { transform: translateX(-5%); }
        100% { transform: translateX(5%); }
    }

    .mist-drift-1 { animation: driftFog1 50s ease-in-out infinite; }
    .mist-drift-2 { animation: driftFog2 70s ease-in-out infinite; }

    /* --- CONTENIDO DEL FOOTER --- */
    .footer-content-wrap {
        position: relative;
        z-index: 5;
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .footer-columns-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
        gap: 3rem;
        padding-bottom: 4rem;
        border-bottom: 1px solid rgba(250, 249, 246, 0.08);
        opacity: 1 !important;
        transform: none !important;
    }

    /* Columna de Información Principal */
    .info-column { display: flex; flex-direction: column; align-items: flex-start; }
    .footer-logo { max-height: 80px; height: auto; width: auto; margin-bottom: 1.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
    .footer-purpose { font-size: 0.9rem; line-height: 1.6; color: rgba(250, 249, 246, 0.7); margin: 0; }

    .footer-column-title {
        font-family: 'Montserrat', sans-serif; /* Fallback explícito */
        font-size: 1.15rem;
        font-weight: 700;
        color: #ff9800;
        margin-bottom: 1.8rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        position: relative;
    }
    .footer-column-title::after {
        content: ''; position: absolute; bottom: -6px; left: 0; width: 24px; height: 1.5px; background-color: rgba(250, 249, 246, 0.2);
    }

    /* Enlaces del Footer */
    .footer-links-list { list-style: none; padding: 0; margin: 0; }
    .footer-links-list li { margin-bottom: 0.9rem; display: flex; align-items: center; }
    .footer-links-list li::before {
        content: ''; display: inline-block; width: 8px; height: 8px; background-color: #ff9800;
        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L7,19.04C14.07,17.47 19.34,14.65 21,8C21,8 19.5,6.5 17,8Z'/></svg>") no-repeat center;
        -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L7,19.04C14.07,17.47 19.34,14.65 21,8C21,8 19.5,6.5 17,8Z'/></svg>") no-repeat center;
        margin-right: 10px; opacity: 0.5; transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .footer-links-list li:hover::before { transform: rotate(15deg) scale(1.2); opacity: 1; }
    .footer-links-list a { color: rgba(250, 249, 246, 0.75) !important; text-decoration: none; font-size: 0.92rem; transition: color 0.3s ease, padding-left 0.3s ease; }
    .footer-links-list a:hover { color: #faf9f6 !important; padding-left: 4px; }

    /* Columna de Contacto */
    .footer-contact-details { list-style: none; padding: 0; margin: 0 0 1.8rem 0; }
    .footer-contact-details li { margin-bottom: 1.1rem; display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.9rem; line-height: 1.5; color: rgba(250, 249, 246, 0.7); }
    .contact-icon { font-size: 1.1rem; opacity: 0.8; }

    .btn-footer-map {
        display: inline-flex; align-items: center; justify-content: center; background-color: transparent; color: #ff9800 !important;
        border: 1px solid rgba(255, 152, 0, 0.4); padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none;
        font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s ease;
    }
    .btn-footer-map:hover { background-color: #ff9800; color: #10261c !important; border-color: #ff9800; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2); }

    /* Pie de Footer (Copyright) */
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.82rem; color: rgba(250, 249, 246, 0.4); }
    .footer-bottom a { color: rgba(250, 249, 246, 0.4) !important; text-decoration: none; transition: color 0.3s ease; }
    .footer-bottom a:hover { color: rgba(250, 249, 246, 0.8) !important; }
    .dot-divider { margin: 0 0.5rem; }

    /* --- RESPONSIVIDAD --- */
    @media (max-width: 992px) {
        .footer-cinematic { padding-top: 6rem; }
        .footer-columns-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    }
    @media (max-width: 576px) {
        .footer-cinematic { padding-top: 5rem; padding-left: 1.2rem; padding-right: 1.2rem; }
        .footer-columns-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
        .footer-bottom { flex-direction: column; gap: 1.2rem; text-align: center; }
        .footer-logo { max-height: 70px; }
    }
/* END cinematic-footer-css */


/* --- SECCIÓN 9: APOYA NUESTRA MISIÓN (BANNER BOSQUE/SELVA) --- */
.experiencias-mision-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 7rem 2rem 14rem 2rem; /* Safe padding for overlapping footer mountains */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 2;
    background-size: cover;
    background-position: center;
}

.mision-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(7, 15, 10, 0.72) 0%, rgba(7, 15, 10, 0.65) 50%, rgba(7, 15, 10, 0.8) 100%);
    z-index: 1;
}

.mision-container {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
}

.mision-tagline {
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ff9800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mision-title {
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-size: clamp(2.3rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mision-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    max-width: 720px;
}

.mision-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff9800 0%, #f39c12 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
    margin-top: 0.5rem;
}

.mision-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 152, 0, 0.55);
    background: linear-gradient(135deg, #e68a00 0%, #e08e0b 100%);
}

@media (max-width: 992px) {
    .experiencias-mision-section { padding: 5rem 2rem 12rem 2rem; }
}

/* ESTILOS DEL BOTÓN FLOTANTE DE WHATSAPP (SI SON NECESARIOS) */
/* Los mantenemos encapsulados correctamente */
.refugio-wa-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}
.refugio-wa-btn {
    pointer-events: auto; width: 60px; height: 60px; border-radius: 50%;
    background-color: #0f6c5f; border: 2px solid #cc7a00; display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 8px 24px rgba(15, 108, 95, 0.3); transition: all 0.25s ease;
}
.refugio-wa-btn svg { width: 32px; height: 32px; fill: #faf9f6; }
.refugio-wa-btn:hover { background-color: #0b4e45; border-color: #ff9800; box-shadow: 0 12px 30px rgba(15, 108, 95, 0.45); transform: translateY(-4px); }

@media (max-width: 991px) {
    .refugio-wa-container { bottom: 24px; right: 24px; gap: 12px; }
}
@media (max-width: 576px) {
    .refugio-wa-container { bottom: 20px; right: 20px; }
    .refugio-wa-btn { width: 54px; height: 54px; }
}


/* --- ESTILOS DE WHATSAPP FLOTANTE (INJECTED) --- */
    :root {
        --refugio-green: #0f6c5f;
        --refugio-green-dark: #0b4e45;
        --refugio-forest-deep: #0a1711;
        --refugio-gold: #cc7a00;
        --refugio-gold-light: #ff9800;
        --refugio-ivory: #faf9f6;
        --refugio-ivory-trans: rgba(250, 249, 246, 0.96);
        --refugio-shadow: 0 10px 30px rgba(7, 11, 8, 0.15);
        --refugio-shadow-btn: 0 8px 24px rgba(15, 108, 95, 0.3);
        --refugio-shadow-btn-hover: 0 12px 32px rgba(15, 108, 95, 0.45);
        --refugio-font-heading: 'Montserrat', sans-serif;
        --refugio-font-body: 'Inter', sans-serif;
    }

    /* Contenedor Flotante Principal con animación de entrada elegante */
    .refugio-wa-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
        font-family: var(--refugio-font-body);
        pointer-events: none;
        
        opacity: 0;
        transform: translateY(20px);
        animation: refugio-wa-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        
        transition: bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.3s ease,
                    transform 0.3s ease;
    }

    @keyframes refugio-wa-slide-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* El botón circular de WhatsApp */
    .refugio-wa-btn {
        pointer-events: auto;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: var(--refugio-green);
        border: 2px solid var(--refugio-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: var(--refugio-shadow-btn);
        transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    background-color 0.25s ease, 
                    border-color 0.25s ease, 
                    box-shadow 0.25s ease;
        outline: none;
        animation: refugio-wa-pulse 3s infinite ease-in-out;
    }

    @keyframes refugio-wa-pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 8px 24px rgba(15, 108, 95, 0.3), 0 0 0 0 rgba(204, 122, 0, 0.2);
        }
        50% {
            transform: scale(1.04);
            box-shadow: 0 10px 28px rgba(15, 108, 95, 0.4), 0 0 0 8px rgba(204, 122, 0, 0);
        }
        100% {
            transform: scale(1);
            box-shadow: 0 8px 24px rgba(15, 108, 95, 0.3), 0 0 0 0 rgba(204, 122, 0, 0);
        }
    }

    .refugio-wa-btn:hover {
        background-color: var(--refugio-green-dark);
        border-color: var(--refugio-gold-light);
        box-shadow: 0 12px 30px rgba(15, 108, 95, 0.45);
        transform: translateY(-4px);
        animation-play-state: paused;
    }

    .refugio-wa-btn svg {
        width: 32px;
        height: 32px;
        fill: var(--refugio-ivory);
        transition: transform 0.3s ease;
    }

    .refugio-wa-btn:hover svg {
        transform: scale(1.05);
    }

    /* Tarjeta de ayuda premium */
    .refugio-wa-card {
        pointer-events: auto;
        width: 290px;
        background: var(--refugio-ivory-trans);
        border: 1px solid rgba(204, 122, 0, 0.25);
        border-radius: 18px;
        padding: 20px;
        box-shadow: var(--refugio-shadow);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
    }

    .refugio-wa-card.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        visibility: visible;
    }

    .refugio-wa-close {
        position: absolute;
        top: 12px;
        right: 14px;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: 300;
        color: var(--refugio-forest-deep);
        cursor: pointer;
        padding: 4px;
        line-height: 1;
        opacity: 0.5;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .refugio-wa-close:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    .refugio-wa-title {
        font-family: var(--refugio-font-heading);
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--refugio-forest-deep);
        line-height: 1.35;
        margin: 0;
        padding-right: 15px;
    }

    .refugio-wa-text {
        font-size: 0.85rem;
        color: #4a544f;
        line-height: 1.45;
        margin: 0;
    }

    .refugio-wa-chat-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: var(--refugio-green);
        color: var(--refugio-ivory) !important;
        text-decoration: none !important;
        font-family: var(--refugio-font-heading);
        font-size: 0.85rem;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 12px;
        border: 1px solid var(--refugio-gold);
        box-shadow: 0 4px 12px rgba(15, 108, 95, 0.15);
        transition: background-color 0.25s ease, 
                    border-color 0.25s ease, 
                    box-shadow 0.25s ease, 
                    transform 0.2s ease;
    }

    .refugio-wa-chat-btn:hover {
        background-color: var(--refugio-green-dark);
        border-color: var(--refugio-gold-light);
        box-shadow: 0 6px 16px rgba(15, 108, 95, 0.25);
        transform: translateY(-1px);
    }

    .refugio-wa-chat-btn svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

    @media (max-width: 991px) {
        .refugio-wa-container {
            bottom: 24px;
            right: 24px;
            gap: 12px;
        }
        
        .refugio-wa-card {
            width: 250px;
            padding: 16px;
            gap: 10px;
            border-radius: 14px;
        }
        
        .refugio-wa-title {
            font-size: 0.88rem;
        }
        
        .refugio-wa-text {
            font-size: 0.8rem;
        }
        
        .refugio-wa-chat-btn {
            font-size: 0.8rem;
            padding: 8px 12px;
            border-radius: 10px;
        }
    }

    @media (max-width: 576px) {
        .refugio-wa-container {
            bottom: 20px;
            right: 20px;
        }
        
        .refugio-wa-btn {
            width: 54px;
            height: 54px;
        }

