/* ==========================================================================
   ETC - THEME SEASONAL: AMOR Y AMISTAD (SEPTIEMBRE)
   Diseño sobrio, elegante y minimalista con Dark Glassmorphism y Neón Magenta
   ========================================================================== */

:root {
    --season-pink-primary: #ff2ead;
    --season-pink-light: #ff66c4;
    --season-pink-deep: #b5179e;
    --season-rose-soft: #ffa8d5;
    --season-gold: #ffd166;
    --season-bg-glass: rgba(32, 6, 44, 0.92);
    --season-border-glow: rgba(255, 46, 173, 0.45);
    --season-shadow-glow: 0 8px 26px rgba(255, 46, 173, 0.25);
}

/* ==========================================
   1. CANVAS DE PARTÍCULAS / CORAZONES DE FONDO
   ========================================== */
.seasonal-particles-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    z-index: 9999 !important;
    /* Capa visible por encima del fondo negro de secciones pero bajo el texto */
    opacity: 1 !important;
    display: block !important;
    filter: drop-shadow(0 0 6px rgba(255, 46, 173, 0.4));
    transition: opacity 0.5s ease;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==========================================
   2. EFECTO AL CLIC: MICRO-CORAZONES Y ONDA DE AMOR Y AMISTAD
   Micro-interacción delicada, elegante y sutil:
   - Onda suave de afecto translúcida
   - 2-3 mini-corazones achatados (no altos) flotando delicadamente
   - Micro-destellos dorados de amistad
   ========================================== */
.seasonal-click-charm {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none !important;
    z-index: 99999 !important;
    user-select: none !important;
}

/* Corazón elegante de tamaño medio al Clic */
.charm-heart-expand {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    margin-left: -21px;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform, opacity;
    animation: charmHeartExpandAnim 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.charm-heart-expand path {
    fill: rgba(255, 46, 173, 0.30) !important;
    stroke: rgba(255, 102, 196, 0.85) !important;
    stroke-width: 1.5px !important;
    filter: drop-shadow(0 0 10px rgba(255, 46, 173, 0.55)) !important;
}

@keyframes charmHeartExpandAnim {
    0% {
        transform: scale(0.25);
        opacity: 0.9;
    }

    100% {
        transform: scale(3.2);
        opacity: 0;
    }
}

/* ==========================================
   3. BARRIDO DE LUZ FUGAZ EN EL LOGO (SHINE SWEEP)
   Destello elegante que recorre las letras de ETC periódicamente
   ========================================== */
.logo {
    position: relative !important;
}

.seasonal-logo-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
    -webkit-mask-image: url("/ASSETS/CONVENIOS/logo-navbar.svg");
    mask-image: url("/ASSETS/CONVENIOS/logo-navbar.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.seasonal-logo-shine::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -130%;
    width: 65%;
    height: 180%;
    background: linear-gradient(115deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, 0.45) 42%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 102, 196, 0.88) 56%,
            rgba(255, 209, 102, 0.65) 62%,
            rgba(255, 255, 255, 0) 80%,
            transparent 100%);
    transform: rotate(22deg);
    filter: drop-shadow(0 0 6px rgba(255, 46, 173, 0.85));
    animation: seasonalLogoSweep 7.5s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    will-change: transform, left;
}

/* Efecto hover sobre el logo: resplandor ambiental suave y barrido rápido */
.logo:hover .navbar-logo-img {
    filter: drop-shadow(0 0 12px rgba(255, 46, 173, 0.8)) drop-shadow(0 0 4px rgba(255, 209, 102, 0.5));
    transition: filter 0.35s ease;
}

.logo .navbar-logo-img {
    transition: filter 0.35s ease;
}

.logo:hover .seasonal-logo-shine::after {
    animation-duration: 2.2s;
}

@keyframes seasonalLogoSweep {
    0% {
        left: -130%;
        opacity: 0;
    }

    4% {
        opacity: 0.95;
    }

    22% {
        left: 170%;
        opacity: 1;
    }

    23% {
        opacity: 0;
    }

    100% {
        left: 170%;
        opacity: 0;
    }
}



/* ==========================================
   3.5 EFECTO GLOW SUTIL EN TARJETAS / MÓDULOS (CARD HOVER GLOW)
   Iluminación suave con halo neón magenta y luz tenue de amistad al pasar el cursor
   ========================================== */
.stat-counter-card,
.option-content,
.testimonial-marquee-card,
.flip-card-front,
.flip-card-back,
.mvv-card,
.feature-card,
.team-card,
.caes-flyer-card,
.faq-item,
.glossary-card,
.payment-card,
.reveal-card,
.pqrs-intro-card,
.step-new-card,
.auth-card-pqrs,
.v-time-content,
.testimonial-card,
.vocational-wizard-container,
.policy-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease !important;
}

/* Capa interior desactivada para evitar recuadros de luz al pasar el cursor */
.stat-counter-card::before,
.option-content::before,
.testimonial-marquee-card::before,
.flip-card-front::before,
.flip-card-back::before,
.mvv-card::before,
.feature-card::before,
.team-card::before,
.caes-flyer-card::before,
.faq-item::before,
.glossary-card::before,
.payment-card::before,
.reveal-card::before,
.pqrs-intro-card::before,
.step-new-card::before,
.auth-card-pqrs::before,
.v-time-content::before,
.testimonial-card::before,
.vocational-wizard-container::before,
.policy-card::before {
    display: none !important;
}

/* Elevación e iluminación sutil de borde y sombra al pasar el cursor */
.stat-counter-card:hover,
.option-content:hover,
.testimonial-marquee-card:hover,
.mvv-card:hover,
.feature-card:hover,
.team-card:hover,
.caes-flyer-card:hover,
.faq-item:hover,
.glossary-card:hover,
.payment-card:hover,
.reveal-card:hover,
.pqrs-intro-card:hover,
.step-new-card:hover,
.auth-card-pqrs:hover,
.v-time-content:hover,
.testimonial-card:hover,
.policy-card:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.12) !important;
}

.stat-counter-card:hover {
    transform: translateY(-8px) !important;
}

/* Mantener el contenido visible y nítido por encima de la luz interior */
.stat-counter-card>*,
.option-card>*,
.testimonial-marquee-card>* {
    position: relative;
    z-index: 2;
}

/* ==========================================
   3.6 GLOW NEÓN MAGENTA EN BOTONES PRINCIPALES (CTA HOVER GLOW)
   Efecto sutil y resplandeciente en botones de llamada a la acción
   ========================================== */
.btn-primary,
.btn-secondary,
.btn-accent,
.cta-button,
.hero-cta,
.submit-btn,
.search-btn,
.action-btn,
.apply-btn {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease !important;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-accent:hover,
.cta-button:hover,
.hero-cta:hover,
.submit-btn:hover,
.search-btn:hover,
.action-btn:hover,
.apply-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
}

/* Iconos de las tarjetas de estadísticas con micro-iluminación en hover */
.stat-counter-card .stat-counter-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.stat-counter-card:hover .stat-counter-icon {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 0 14px rgba(255, 46, 173, 0.8)) drop-shadow(0 0 4px rgba(255, 209, 102, 0.45));
}

/* Número de estadística con sutil resplandor de texto en hover */
.stat-counter-card .stat-counter-number {
    transition: text-shadow 0.3s ease;
}

.stat-counter-card:hover .stat-counter-number {
    text-shadow: 0 0 16px rgba(255, 102, 196, 0.45);
}

/* ==========================================
   3.8 AXIS GLASSMORPHISM PARA TARJETAS DE HISTORIAS Y TEST VOCACIONAL
   Diseño inspirado en Axis: Cristal obsidiana translúcido, desenfoque profundo,
   bisel de luz superior nítido y fondo atmosférico con luces desenfocadas.
   ========================================== */

/* --- 0. ATMÓSFERA DE FONDO CON LUCES DESENFOCADAS (EFECTO AXIS OPTIMIZADO ZERO-LAG) --- */
.testimonials-marquee-section {
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.testimonials-marquee-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255, 46, 173, 0.18) 0%, rgba(181, 23, 158, 0.10) 30%, rgba(55, 12, 49, 0.04) 55%, transparent 72%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
    will-change: auto;
}

.testimonials-marquee-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 8%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.16) 0%, rgba(181, 23, 158, 0.08) 35%, transparent 72%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
    will-change: auto;
}

.marquee-header-container,
.marquee-wrapper {
    position: relative;
    z-index: 1;
}

.marquee-row {
    contain: layout paint;
}

/* Luces ambientales desenfocadas para la sección de Test Vocacional (Optimizado sin shader de blur) */
.contact-section {
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 12%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 46, 173, 0.16) 0%, rgba(181, 23, 158, 0.08) 32%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255, 102, 196, 0.15) 0%, rgba(55, 12, 49, 0.08) 35%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

/* --- 1. TARJETAS DE HISTORIAS DE ÉXITO (TESTIMONIAL MARQUEE) --- */
.testimonial-marquee-card {
    background: linear-gradient(145deg, rgba(22, 20, 32, 0.91) 0%, rgba(13, 12, 20, 0.95) 100%) !important;
    backdrop-filter: blur(10px) saturate(160%) contrast(100%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(160%) contrast(100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 22px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    contain: layout paint;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        backdrop-filter 0.3s ease !important;
}

.testimonial-marquee-card:hover {
    background: linear-gradient(145deg, rgba(28, 25, 40, 0.93) 0%, rgba(16, 15, 24, 0.97) 100%) !important;
    backdrop-filter: blur(28px) saturate(180%) contrast(100%) !important;
    -webkit-backdrop-filter: blur(28px) saturate(180%) contrast(100%) !important;
    border-color: rgba(255, 102, 196, 0.5) !important;
    border-top-color: rgba(255, 255, 255, 0.38) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.80),
        0 0 30px rgba(255, 46, 173, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-8px) scale(1.02) !important;
}

.testimonial-marquee-card .tm-image {
    border: 2px solid rgba(255, 102, 196, 0.5) !important;
    box-shadow: 0 0 12px rgba(255, 46, 173, 0.3) !important;
}

.testimonial-marquee-card .tm-badge {
    background: rgba(255, 46, 173, 0.16) !important;
    border: 1px solid rgba(255, 102, 196, 0.32) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-radius: 999px !important;
    color: #ffe0f3 !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
}

.testimonial-marquee-card .tm-stars {
    color: #fbbf24 !important;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5)) !important;
}

.testimonial-marquee-card .read-more {
    color: var(--season-pink-primary) !important;
    font-weight: 700 !important;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.testimonial-marquee-card .read-more:hover {
    color: #ffffff !important;
}

/* --- 2. MODALES GENERALES Y DE RESEÑAS (#review-modal, .modal-content, etc.) --- */
.modal,
.custom-modal,
.program-modal,
.timeline-modal,
.qr-modal,
.search-modal {
    background: rgba(8, 7, 14, 0.82) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    will-change: opacity;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.modal-content,
.custom-modal-content,
.program-modal-content,
.modal-content.testimonial-marquee-card {
    position: relative !important;
    background: linear-gradient(145deg, rgba(22, 18, 34, 0.98) 0%, rgba(12, 11, 18, 0.98) 100%) !important;
    border: 1px solid rgba(255, 102, 196, 0.3) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 22px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(255, 46, 173, 0.18) !important;
    overflow: hidden !important;
    padding: 2.25rem 2rem 1.75rem 2rem !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
}

.modal-content:hover,
.custom-modal-content:hover,
.program-modal-content:hover,
.modal-content.testimonial-marquee-card:hover {
    transform: none !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 46, 173, 0.25) !important;
    border-color: rgba(255, 102, 196, 0.5) !important;
}

.close-btn,
#review-modal .close-btn {
    position: absolute !important;
    top: 1rem !important;
    right: 1.25rem !important;
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 100 !important;
    transition: all 0.2s ease !important;
}

.close-btn:hover,
#review-modal .close-btn:hover {
    background: rgba(255, 46, 173, 0.35) !important;
    border-color: rgba(255, 102, 196, 0.6) !important;
    transform: rotate(90deg) scale(1.1) !important;
}

/* --- 3. CONTENEDOR TEST VOCACIONAL (WIZARD VOCACIONAL) --- */
#vocational-wizard.vocational-wizard-container {
    background: linear-gradient(145deg, rgba(22, 20, 34, 0.88) 0%, rgba(13, 12, 20, 0.93) 100%) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 36px !important;
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 0 40px rgba(255, 46, 173, 0.12) !important;
}

#vocational-wizard.vocational-wizard-container:hover {
    border-color: rgba(255, 102, 196, 0.35) !important;
    border-top-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 36px 95px rgba(0, 0, 0, 0.82),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 50px rgba(255, 46, 173, 0.2) !important;
}

/* Tarjetas de opciones del test vocacional estilo Axis */
#vocational-wizard .option-content {
    background: linear-gradient(145deg, rgba(30, 27, 44, 0.72) 0%, rgba(16, 15, 24, 0.80) 100%) !important;
    backdrop-filter: blur(24px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.20) !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    padding: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#vocational-wizard .option-card:hover .option-content {
    border-color: rgba(255, 102, 196, 0.45) !important;
    border-top-color: rgba(255, 255, 255, 0.35) !important;
    background: linear-gradient(145deg, rgba(38, 34, 54, 0.82) 0%, rgba(20, 18, 30, 0.88) 100%) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 0 25px rgba(255, 46, 173, 0.2) !important;
}

#vocational-wizard .option-card input:checked+.option-content {
    background: linear-gradient(145deg, rgba(48, 22, 60, 0.84) 0%, rgba(24, 14, 34, 0.90) 100%) !important;
    border-color: rgba(255, 46, 173, 0.7) !important;
    border-top-color: rgba(255, 102, 196, 0.85) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(255, 46, 173, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    transform: translateY(-2px) scale(1.01) !important;
}

#vocational-wizard .option-content i {
    color: var(--season-pink-primary) !important;
    filter: drop-shadow(0 0 10px rgba(255, 46, 173, 0.4)) !important;
    transition: transform 0.3s ease, filter 0.3s ease !important;
}

#vocational-wizard .option-card:hover .option-content i,
#vocational-wizard .option-card input:checked+.option-content i {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 0 16px rgba(255, 46, 173, 0.8)) !important;
}

#vocational-wizard .side-step.active {
    background: linear-gradient(135deg, var(--season-pink-primary), #a855f7) !important;
    border-color: var(--season-pink-primary) !important;
    box-shadow: 0 0 20px rgba(255, 46, 173, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

#vocational-wizard .side-step.completed {
    background: rgba(168, 85, 247, 0.25) !important;
    border-color: rgba(168, 85, 247, 0.5) !important;
}

/* ==========================================
   4. CÁPSULA FLOTANTE DE ANUNCIO (TOP PILL)
   ========================================== */
.seasonal-announcement-pill {
    position: fixed;
    top: calc(var(--navbar-height, 72px) + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 12010;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.44rem 1.15rem;
    background: var(--season-bg-glass);
    border: 1px solid var(--season-border-glow);
    border-radius: 999px;
    box-shadow: var(--season-shadow-glow), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    color: #ffffff;
    font-family: var(--font-main, 'Outfit', sans-serif);
    font-size: 0.88rem;
    white-space: nowrap;
    animation: seasonalPillFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards, seasonalPillGlow 3.5s ease-in-out infinite alternate;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.3s ease;
}

/* Al scrollear, se retrae suavemente hacia arriba para no tapar contenido de lectura */
.seasonal-announcement-pill.is-scrolled-away {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(-24px) scale(0.96) !important;
    pointer-events: none !important;
}

/* Al cerrar explícitamente con la X */
.seasonal-announcement-pill.is-dismissed {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-50%) translateY(-28px) scale(0.92) !important;
    pointer-events: none !important;
    display: none !important;
}

/* Espaciado seguro en todas las páginas internas: el título nunca queda tapado por la cápsula */
.season-amor-amistad .directory-hero,
.season-amor-amistad.directory-page .directory-hero,
.season-amor-amistad .page-content>section:first-of-type,
.season-amor-amistad .main-header+main>section:first-of-type,
.season-amor-amistad .pqrs-section,
.season-amor-amistad .legal-content,
.season-amor-amistad .policy-container,
.season-amor-amistad .hero-preguntas {
    padding-top: calc(var(--navbar-height, 72px) + 60px) !important;
}

.seasonal-announcement-pill:hover {
    box-shadow: 0 10px 32px rgba(255, 46, 173, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 102, 196, 0.7);
}

/* ==========================================
   4.5 BOTÓN LANZADOR FLOTANTE DE RESPALDO (FLOATING LAUNCHER)
   Aparece en la esquina inferior izquierda cuando la cápsula superior está
   oculta o fue cerrada, permitiendo reabrir el modal en cualquier momento.
   ========================================== */
.seasonal-floating-launcher {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 11990;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.52rem 1.1rem;
    background: var(--season-bg-glass);
    border: 1px solid var(--season-border-glow);
    border-radius: 999px;
    box-shadow: var(--season-shadow-glow), 0 8px 24px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    color: #ffffff;
    font-family: var(--font-main, 'Outfit', sans-serif);
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        opacity 0.35s ease,
        visibility 0.35s ease;
    animation: launcherGlowPulse 3.2s ease-in-out infinite alternate;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.94);
    pointer-events: none;
    will-change: transform, opacity;
}

.seasonal-floating-launcher.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.seasonal-floating-launcher:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 102, 196, 0.85);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65), 0 0 26px rgba(255, 46, 173, 0.65);
}

.seasonal-floating-launcher:active {
    transform: translateY(-1px) scale(0.98);
}

.seasonal-floating-launcher .launcher-heart-icon {
    font-size: 1.05rem;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(255, 46, 173, 0.8));
    animation: launcherHeartBounce 2.5s ease-in-out infinite;
}

.seasonal-floating-launcher .launcher-label {
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #ffffff 30%, #ffd1e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes launcherGlowPulse {
    0% {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 46, 173, 0.25);
    }

    100% {
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 24px rgba(255, 46, 173, 0.55), 0 0 8px rgba(255, 209, 102, 0.35);
    }
}

@keyframes launcherHeartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

@media (max-width: 768px) {
    .seasonal-floating-launcher {
        bottom: 20px;
        left: 16px;
        padding: 0.46rem 0.92rem;
        font-size: 0.78rem;
    }
}

.seasonal-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    animation: seasonalHeartbeat 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 46, 173, 0.8));
}

.seasonal-pill-tag {
    background: linear-gradient(135deg, var(--season-pink-primary), var(--season-pink-deep));
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(255, 46, 173, 0.4);
}

.seasonal-pill-text {
    font-weight: 400;
    color: #f3e6f7;
}

.seasonal-pill-text strong {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, var(--season-rose-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seasonal-pill-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 46, 173, 0.24);
    color: #ffffff;
    border: 1px solid rgba(255, 102, 196, 0.6);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    font-family: inherit;
}

.seasonal-pill-cta:hover {
    background: var(--season-pink-primary);
    color: #ffffff;
    border-color: var(--season-pink-light);
    box-shadow: 0 0 16px rgba(255, 46, 173, 0.65);
    transform: scale(1.04);
}

.seasonal-pill-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.2rem 0.45rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    border-radius: 50%;
    margin-left: 0.15rem;
}

.seasonal-pill-close:hover {
    color: #ffffff;
    transform: scale(1.18);
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   4. BADGE DESTACADO EN LA SECCIÓN HERO
   ========================================== */
.seasonal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 46, 173, 0.14);
    border: 1px solid rgba(255, 46, 173, 0.42);
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
    color: #f7d5f0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(255, 46, 173, 0.22);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.seasonal-hero-badge:hover {
    background: rgba(255, 46, 173, 0.26);
    border-color: rgba(255, 102, 196, 0.75);
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(255, 46, 173, 0.38);
}

.seasonal-hero-badge .badge-heart {
    animation: seasonalHeartbeat 1.8s ease-in-out infinite;
    display: inline-block;
}

.seasonal-hero-badge strong {
    color: #ffffff;
    font-weight: 700;
}

/* ==========================================
   5. DETALLE EN BOTÓN FLOTANTE DE WHATSAPP
   ========================================== */
.float-whatsapp {
    position: fixed;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.float-whatsapp.seasonal-wa-active {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 16px rgba(255, 46, 173, 0.5) !important;
    animation: seasonalWaGlow 3s ease-in-out infinite alternate;
}

.seasonal-wa-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--season-bg-glass);
    border: 1px solid var(--season-border-glow);
    padding: 0.48rem 0.95rem;
    border-radius: 20px;
    color: #ffffff;
    font-family: var(--font-main, 'Outfit', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 46, 173, 0.35);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    pointer-events: none;
    opacity: 0.96;
    animation: seasonalFloatTooltip 3s ease-in-out infinite;
}

.seasonal-wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--season-bg-glass);
}

/* ==========================================
   7. MODAL GENERADOR DE TARJETA DE AMIGO SECRETO
   ========================================== */
/* Ocultar únicamente la cápsula superior cuando el modal está abierto para evitar solapamientos */
body.seasonal-modal-open .seasonal-announcement-pill {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.seasonal-generator-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 9, 18, 0.48) !important;
    -webkit-backdrop-filter: blur(28px) saturate(180%) contrast(92%) !important;
    backdrop-filter: blur(28px) saturate(180%) contrast(92%) !important;
    z-index: 99999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1.25rem !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.seasonal-generator-backdrop.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.seasonal-generator-card {
    position: relative !important;
    z-index: 100000000 !important;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    background: linear-gradient(145deg, rgba(22, 21, 34, 0.76) 0%, rgba(13, 12, 20, 0.84) 100%) !important;
    -webkit-backdrop-filter: blur(36px) saturate(180%) !important;
    backdrop-filter: blur(36px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 26px !important;
    padding: 2.2rem;
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.72),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 0 35px rgba(255, 46, 173, 0.12) !important;
    color: #ffffff;
    font-family: var(--font-main, 'Outfit', sans-serif);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.seasonal-generator-backdrop.is-open .seasonal-generator-card {
    transform: scale(1) translateY(0);
}

.seasonal-generator-card:hover {
    border-color: rgba(255, 255, 255, 0.18) !important;
    border-top-color: rgba(255, 255, 255, 0.32) !important;
    box-shadow: 0 36px 95px rgba(0, 0, 0, 0.78),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        0 0 45px rgba(255, 46, 173, 0.2) !important;
}

.seasonal-generator-card::before {
    content: '';
    position: absolute;
    top: -110px;
    right: -110px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 46, 173, 0.16) 0%, rgba(255, 102, 196, 0.05) 45%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.seasonal-generator-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.seasonal-generator-close:hover {
    background: rgba(255, 46, 173, 0.28);
    border-color: rgba(255, 102, 196, 0.55);
    transform: rotate(90deg) scale(1.08);
}

.seasonal-generator-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.seasonal-generator-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 46, 173, 0.12);
    border: 1px solid rgba(255, 102, 196, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 14px rgba(255, 46, 173, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.35rem 0.95rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffe0f3;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.seasonal-generator-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0 0 0.45rem 0;
    background: linear-gradient(135deg, #ffffff 40%, var(--season-rose-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.seasonal-generator-subtitle {
    font-size: 0.95rem;
    color: #d1bdd9;
    margin: 0;
    max-width: 620px;
    margin-inline: auto;
    line-height: 1.45;
}

.seasonal-generator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    align-items: stretch;
    margin-bottom: 1.6rem;
}

.seasonal-form-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.seasonal-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.seasonal-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1daf0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.seasonal-input-text,
.seasonal-select,
.seasonal-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.75rem 0.95rem;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.seasonal-input-text:hover,
.seasonal-select:hover,
.seasonal-textarea:hover {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.seasonal-input-text:focus,
.seasonal-select:focus,
.seasonal-textarea:focus {
    border-color: rgba(255, 102, 196, 0.6);
    border-top-color: rgba(255, 102, 196, 0.75);
    background: rgba(255, 46, 173, 0.06);
    box-shadow: 0 0 0 3px rgba(255, 46, 173, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.seasonal-select option {
    background: #181524;
    color: #ffffff;
}

.seasonal-textarea {
    resize: vertical;
    min-height: 76px;
    font-size: 0.86rem;
    line-height: 1.4;
}

.seasonal-preview-col {
    display: flex;
    flex-direction: column;
}

.seasonal-preview-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f1daf0;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.seasonal-preview-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg, rgba(30, 27, 44, 0.62) 0%, rgba(16, 15, 24, 0.70) 100%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 1.4rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 24px rgba(255, 46, 173, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.seasonal-preview-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 0 32px rgba(255, 46, 173, 0.15);
}

.seasonal-preview-card::after {
    content: '💌';
    position: absolute;
    bottom: -15px;
    right: -10px;
    font-size: 5.2rem;
    opacity: 0.07;
    pointer-events: none;
    transform: rotate(-15deg);
}

.seasonal-card-to-from {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffd6f0;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    padding-bottom: 0.55rem;
}

.seasonal-card-quote {
    font-size: 0.94rem;
    line-height: 1.55;
    color: #ffffff;
    font-style: italic;
    margin: 0.4rem 0 1rem 0;
    flex-grow: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.seasonal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
    color: #c9b4d4;
}

.seasonal-card-badge {
    background: rgba(255, 46, 173, 0.15);
    border: 1px solid rgba(255, 102, 196, 0.32);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    font-weight: 700;
    color: #ffe0f3;
}

.seasonal-actions-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.seasonal-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 0.85rem 1.6rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: inherit;
}

.seasonal-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #2bf074 0%, #17a999 100%);
}

.seasonal-btn-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.85rem 1.4rem;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.seasonal-btn-copy:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    border-top-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.seasonal-btn-copy.is-copied {
    background: rgba(0, 255, 136, 0.25);
    border-color: #00ff88;
    color: #00ff88;
}

/* ==========================================
   8. ANIMACIONES CLAVE
   ========================================== */
@keyframes seasonalPillFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-14px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes seasonalPillGlow {
    0% {
        border-color: rgba(255, 46, 173, 0.38);
        box-shadow: 0 6px 20px rgba(255, 46, 173, 0.2);
    }

    100% {
        border-color: rgba(255, 102, 196, 0.6);
        box-shadow: 0 10px 30px rgba(255, 46, 173, 0.35);
    }
}

@keyframes seasonalHeartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.2);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.12);
    }

    70% {
        transform: scale(1);
    }
}

@keyframes seasonalWaGlow {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 46, 173, 0.35);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 46, 173, 0.6);
    }
}

@keyframes seasonalFloatTooltip {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 4px));
    }
}

/* ==========================================
   9. RESPONSIVE / ADAPTACIÓN MÓVIL
   ========================================== */
@media (max-width: 820px) {
    .seasonal-generator-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .seasonal-announcement-pill {
        top: calc(var(--navbar-height, 72px) + 8px);
        width: calc(100% - 1.5rem);
        max-width: 440px;
        padding: 0.45rem 0.85rem;
        font-size: 0.82rem;
        gap: 0.5rem;
    }

    .seasonal-pill-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.78rem;
    }

    .seasonal-pill-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }

    .seasonal-pill-cta {
        padding: 0.25rem 0.65rem;
        font-size: 0.74rem;
    }

    .seasonal-generator-card {
        padding: 1.6rem 1.2rem;
        border-radius: 22px;
    }

    .seasonal-generator-title {
        font-size: 1.5rem;
    }

    .seasonal-actions-row {
        flex-direction: column;
        width: 100%;
    }

    .seasonal-btn-whatsapp,
    .seasonal-btn-copy {
        width: 100%;
    }

    .seasonal-wa-tooltip {
        display: none;
    }
}

/* ==========================================================================
   11. CUPIDO SEASONAL - VUELO, FLECHA Y REPOSO EN LA T (HERO Y NAVBAR)
   ========================================================================== */

/* 11.1 CUPIDO EN EL HERO (LOGO CENTRAL 'ETC' DE INDEX.HTML) */
.hero-text .letter-t {
    position: relative !important;
    overflow: visible !important;
    display: inline-block !important;
}

.seasonal-hero-cupid-wrap {
    position: absolute;
    /* Pegado elegantemente a la barra superior de la T */
    top: -0.95em;
    left: 50%;
    transform: translateX(-50%);
    width: 1.25em;
    height: 1.8em;
    pointer-events: auto;
    z-index: 2050;
    display: block;
    transform-origin: center bottom;
    transition: filter 0.3s ease;
}

.seasonal-hero-cupid-wrap.is-animating {
    pointer-events: none;
    transition: none;
}

.seasonal-hero-cupid-wrap .seasonal-cupid-frame-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    transform: scaleX(-1);
    filter: drop-shadow(0 0 4px rgba(255, 46, 173, 0.45));
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* Pose de reposo en el Hero: cabeza descansando a la izquierda sobre la T */
.seasonal-hero-cupid-wrap.is-resting {
    animation: seasonalHeroCupidRestBreathe 3.4s ease-in-out infinite;
    cursor: pointer;
}

.seasonal-hero-cupid-wrap.is-resting .seasonal-cupid-frame-img {
    transform: scaleX(1);
}

@keyframes seasonalHeroCupidRestBreathe {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.22));
    }

    50% {
        transform: translateX(-50%) translateY(-0.06em);
        filter: drop-shadow(0 4px 10px rgba(255, 46, 173, 0.45));
    }
}

.seasonal-hero-cupid-wrap:hover .seasonal-cupid-frame-img {
    transform: scaleX(-1) scale(1.1) translateY(-0.04em);
    filter: drop-shadow(0 4px 12px rgba(255, 46, 173, 0.6));
}

.seasonal-hero-cupid-wrap.is-resting:hover .seasonal-cupid-frame-img {
    transform: scaleX(1) scale(1.1) translateY(-0.04em);
}

.seasonal-hero-cupid-wrap.is-fluttering {
    animation: seasonalHeroCupidFlutter 0.8s ease-in-out;
}

@keyframes seasonalHeroCupidFlutter {

    0%,
    100% {
        transform: translateX(-50%) rotate(0);
    }

    25% {
        transform: translateX(-50%) translateY(-0.07em) rotate(-5deg);
    }

    50% {
        transform: translateX(-50%) translateY(-0.04em) rotate(4deg);
    }

    75% {
        transform: translateX(-50%) translateY(-0.06em) rotate(-2deg);
    }
}

html body .main-header {
    height: 138px !important;
}

html body {
    --navbar-height: 138px !important;
}

html body .main-header .nav-container {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 2.5rem !important;
    padding: 0 2rem !important;
    height: 100% !important;
}

/* Los títulos de menú se mantienen centrados en altura y alineados hacia la izquierda junto al logo */
html body .main-header .nav-links,
html body .main-header .mobile-menu-btn {
    transform: none !important;
    margin: 0 !important;
}

/* ÚNICAMENTE el LOGO se baja para que Cupido tenga holgura arriba */
html body .main-header .logo,
html body .logo {
    overflow: visible !important;
    position: relative !important;
    margin-top: 14px !important;
    transform: translateY(14px) !important;
    margin-right: 0.5rem !important;
    flex-shrink: 0 !important;
}

.seasonal-logo-cupid-wrap {
    position: absolute;
    top: -57px !important;
    left: 50%;
    width: 60px !important;
    height: 80px !important;
    pointer-events: auto;
    z-index: 12010;
    display: block;
    transform-origin: center bottom;
    /* Recostado sobre el trazo superior de la T con perfecto acomodo */
    transform: translateX(-50%);
    transition: filter 0.3s ease;
}

.seasonal-logo-cupid-wrap.is-animating {
    pointer-events: none;
    transition: none;
}

.seasonal-logo-cupid-wrap .seasonal-cupid-frame-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    transform: scaleX(-1);
    filter: drop-shadow(0 0 4px rgba(255, 46, 173, 0.45));
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* Pose de reposo: respiración sutil y mágica sobre la T (cabeza a la izquierda) */
.seasonal-logo-cupid-wrap.is-resting {
    animation: seasonalCupidRestBreathe 3.4s ease-in-out infinite;
    cursor: pointer;
}

.seasonal-logo-cupid-wrap.is-resting .seasonal-cupid-frame-img {
    transform: scaleX(1);
}

@keyframes seasonalCupidRestBreathe {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.22));
    }

    50% {
        transform: translateX(-50%) translateY(-2.5px);
        filter: drop-shadow(0 3px 8px rgba(255, 46, 173, 0.45));
    }
}

.seasonal-logo-cupid-wrap:hover .seasonal-cupid-frame-img {
    transform: scaleX(-1) scale(1.08) translateY(-1px);
    filter: drop-shadow(0 4px 10px rgba(255, 46, 173, 0.65));
}

.seasonal-logo-cupid-wrap.is-resting:hover .seasonal-cupid-frame-img {
    transform: scaleX(1) scale(1.08) translateY(-1px);
}

/* Reacción al clic: pataleo alegre */
.seasonal-logo-cupid-wrap.is-fluttering {
    animation: seasonalCupidFlutter 0.8s ease-in-out;
}

@keyframes seasonalCupidFlutter {

    0%,
    100% {
        transform: translateX(-50%) rotate(0);
    }

    25% {
        transform: translateX(-50%) translateY(-5px) rotate(-4deg);
    }

    50% {
        transform: translateX(-50%) translateY(-2px) rotate(3deg);
    }

    75% {
        transform: translateX(-50%) translateY(-4px) rotate(-2deg);
    }
}

/* 11.3 FLECHA DE AMOR DISPARADA POR CUPIDO */
.seasonal-cupid-arrow-projectile {
    position: fixed;
    pointer-events: none;
    z-index: 12060;
    width: 82px;
    height: 30px;
    transform-origin: center center;
    filter: drop-shadow(0 0 10px #ff2ead) drop-shadow(0 0 4px #ffd166);
    will-change: transform, opacity;
}

.seasonal-cupid-sparkle-heart {
    position: fixed;
    pointer-events: none;
    z-index: 12059;
    font-size: 14px;
    animation: seasonalHeartFloatAway 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes seasonalHeartFloatAway {
    0% {
        transform: translate(0, 0) scale(0.3);
        opacity: 1;
    }

    100% {
        transform: translate(var(--dx, 20px), var(--dy, -35px)) scale(1.3);
        opacity: 0;
    }
}

/* Ajustes responsivos móviles */
@media (max-width: 768px) {
    html body .main-header {
        height: 90px !important;
    }

    html body {
        --navbar-height: 90px !important;
    }

    html body .main-header .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 1.2rem !important;
        height: 100% !important;
    }

    html body .main-header .logo,
    html body .logo {
        margin-top: 10px !important;
        transform: translateY(10px) !important;
        position: relative !important;
    }

    html body .main-header .mobile-menu-btn {
        transform: translateY(10px) !important;
        margin: 0 !important;
    }

    .seasonal-hero-cupid-wrap {
        width: 2.3em;
        height: 2.8em;
        bottom: 95%;
    }

    .seasonal-logo-cupid-wrap {
        width: 44px !important;
        height: 52px !important;
        top: -34px !important;
        left: 50.5%;
        transform: translateX(-50%);
    }

    .seasonal-hero-badge {
        font-size: 0.72rem !important;
        padding: 0.25rem 0.75rem !important;
        margin-bottom: 0.5rem !important;
        max-width: 92% !important;
    }

    @keyframes seasonalCupidRestBreathe {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-2px);
        }
    }
}

/* ==========================================
   10. ACCESIBILIDAD (REDUCED MOTION)
   ========================================== */
@media (prefers-reduced-motion: reduce) {

    .seasonal-pill-icon,
    .seasonal-hero-badge .badge-heart,
    .seasonal-wa-tooltip {
        animation-duration: 4s !important;
    }

    .seasonal-announcement-pill {
        animation: none !important;
    }

    .charm-heart-expand {
        animation-duration: 0.25s !important;
    }

    .seasonal-logo-cupid-wrap {
        animation: none !important;
    }
}

/* ==========================================================================
   12. EFECTO BLOOM / TRANSICIÓN LUMINOSA DE INCRUSTACIÓN EN NAVBAR
   ========================================================================== */
.seasonal-bloom-container {
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    width: 0;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seasonal-bloom-flash {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #ffa8d5 30%, #ff2ead 65%, transparent 100%);
    box-shadow: 0 0 60px 30px rgba(255, 255, 255, 0.95), 0 0 100px 50px rgba(255, 46, 173, 0.9);
    animation: seasonalBloomFlash 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.seasonal-bloom-core {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 40px 20px #ffd166;
    animation: seasonalBloomCore 0.45s ease-out forwards;
}

.seasonal-bloom-ring {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 209, 102, 0.95);
    box-shadow: 0 0 25px rgba(255, 46, 173, 0.85);
    animation: seasonalBloomRing 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes seasonalBloomFlash {
    0% {
        transform: scale(0.2);
        opacity: 0;
        filter: brightness(2.8);
    }

    35% {
        transform: scale(1.6);
        opacity: 1;
        filter: brightness(2.2);
    }

    100% {
        transform: scale(3);
        opacity: 0;
        filter: brightness(1);
    }
}

@keyframes seasonalBloomCore {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.9;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes seasonalBloomRing {
    0% {
        transform: scale(0.3);
        opacity: 1;
    }

    100% {
        transform: scale(4.2);
        opacity: 0;
        border-width: 1px;
    }
}

/* Transición con resplandor en el Logo de la Navbar al incrustarse */
.seasonal-logo-bloom-active {
    animation: seasonalLogoBloomPop 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes seasonalLogoBloomPop {
    0% {
        filter: drop-shadow(0 0 0px transparent);
        transform: scale(0.95);
    }

    35% {
        filter: drop-shadow(0 0 30px #ff2ead) drop-shadow(0 0 18px #ffd166) brightness(1.45);
        transform: scale(1.15);
    }

    100% {
        filter: drop-shadow(0 0 0px transparent);
        transform: scale(1);
    }
}

/* =========================================================
   NUEVAS INTERACCIONES DE AMOR Y AMISTAD: 
/* 1. BOTÓN VOLVER ARRIBA CON FORMA EXCLUSIVA DE CORAZÓN (UBICADO VERTICALMENTE SOBRE WHATSAPP) */
html body #backToTop.seasonal-heart-back-to-top,
html body button#backToTop.back-to-top.seasonal-heart-back-to-top,
html.light-theme body button#backToTop.back-to-top.seasonal-heart-back-to-top,
#backToTop.seasonal-heart-back-to-top {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    width: 56px !important;
    height: 56px !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    bottom: 100px !important;
    right: 25px !important;
    cursor: pointer !important;
    z-index: 10000 !important;
    clip-path: path('M 28 49.875 L 24.85 46.9 C 12.425 35.7 4.2 28.175 4.2 18.9 C 4.2 11.2 10.15 5.25 17.85 5.25 C 22.05 5.25 26.075 7.175 28 10.325 C 29.925 7.175 33.95 5.25 38.15 5.25 C 45.85 5.25 51.8 11.2 51.8 18.9 C 51.8 28.175 31.15 46.9 28 49.875 Z') !important;
    -webkit-clip-path: path('M 28 49.875 L 24.85 46.9 C 12.425 35.7 4.2 28.175 4.2 18.9 C 4.2 11.2 10.15 5.25 17.85 5.25 C 22.05 5.25 26.075 7.175 28 10.325 C 29.925 7.175 33.95 5.25 38.15 5.25 C 45.85 5.25 51.8 11.2 51.8 18.9 C 51.8 28.175 31.15 46.9 28 49.875 Z') !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease !important;
}

#backToTop.seasonal-heart-back-to-top::before,
#backToTop.seasonal-heart-back-to-top::after {
        display: none !important;
        content: none !important;
    }

    #backToTop.seasonal-heart-back-to-top .heart-btt-svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        color: #d81b60;
        fill: #d81b60;
        filter: drop-shadow(0 4px 10px rgba(216, 27, 96, 0.5));
        transition: transform 0.3s ease, color 0.3s ease, fill 0.3s ease, filter 0.3s ease;
    }

    #backToTop.seasonal-heart-back-to-top .heart-btt-arrow {
        position: relative;
        z-index: 2;
        color: #ffffff;
        font-size: 1.15rem;
        margin-top: -3px;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
    }

    #backToTop.seasonal-heart-back-to-top:hover {
        transform: scale(1.16) translateY(-4px) !important;
    }

    #backToTop.seasonal-heart-back-to-top:hover .heart-btt-svg {
        color: #ff2ead;
        fill: #ff2ead;
        filter: drop-shadow(0 6px 14px rgba(255, 46, 173, 0.7));
    }

    #backToTop.seasonal-heart-back-to-top:hover .heart-btt-arrow {
        transform: translateY(-2px);
    }

    /* 2. CAJA DE REGALO INTERACTIVA SOBRE LOS BOTONES (COLORES SOBRIOS Y ELEGANTES) */
    .gift-wrapped-btn {
        position: relative !important;
        overflow: hidden !important;
    }

    .gift-cover-layer {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: inherit !important;
        background: linear-gradient(135deg, #4a0e3f 0%, #2b0825 100%) !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        z-index: 10 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        user-select: none !important;
        transition: filter 0.25s ease, border-color 0.25s ease !important;
    }

    /* Cintas elegantes vino/dorado tenue */
    .gift-ribbon-vertical {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 12px;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #ff2ead, #ff66c4, #ff2ead);
        opacity: 0.85;
    }

    .gift-ribbon-horizontal {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 10px;
        transform: translateY(-50%);
        background: linear-gradient(180deg, #ff2ead, #ff66c4, #ff2ead);
        opacity: 0.85;
    }

    /* Moño elegante en el centro */
    .gift-bow {
        position: absolute;
        top: -11px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 12;
    }

    .bow-center {
        font-size: 1.25rem;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
        animation: bowPulse 2s infinite ease-in-out;
    }

    /* Texto de la etiqueta sobria */
    .gift-tag-text {
        position: relative;
        z-index: 11;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        background: rgba(15, 3, 20, 0.92);
        padding: 3px 10px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        white-space: nowrap;
    }

    /* EFECTO HOVER: Saltar y Temblar alegremente */
    .gift-cover-layer:hover {
        animation: giftShakeJump 0.45s infinite ease-in-out;
        filter: brightness(1.1);
    }

    @keyframes giftShakeJump {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        20% {
            transform: translateY(-5px) rotate(-3deg);
        }

        40% {
            transform: translateY(-7px) rotate(3deg);
        }

        60% {
            transform: translateY(-5px) rotate(-2deg);
        }

        80% {
            transform: translateY(-2px) rotate(2deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }

    /* EFECTO CLIC: Caída/Desapariencia animada con apertura */
    .gift-cover-layer.is-opening {
        animation: giftOpenUnpack 0.65s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards !important;
        pointer-events: none !important;
    }

    @keyframes giftOpenUnpack {
        0% {
            transform: scale(1) translateY(0) rotate(0deg);
            opacity: 1;
        }

        30% {
            transform: scale(1.12) translateY(-12px) rotate(-6deg);
            opacity: 0.95;
        }

        100% {
            transform: scale(0.6) translateY(120px) rotate(25deg);
            opacity: 0;
            filter: blur(8px);
        }
    }