/* RESET AGRESIVO Y FIX PARA STICKY HEADER */
        html, body {
            margin: 0 !important;
            padding: 0 !important;
            width: 100%;
            font-family: 'Work Sans', sans-serif;
            background-color: #f8f2e2;
            scroll-behavior: smooth;
            /* EVITAR OVERFLOW OCULTO PARA NO ROMPER EL MENU STICKY */
        }

        h1, h2, h3, h4, h5, h6, .font-serif {
            font-family: 'Playfair Display', serif;
        }

        /* CLASES DE IDIOMA */
        .lang-es { display: none !important; }
        .lang-en { display: inline-block; }

        /* Rotación continua para el sticker */
        .badge-circle {
            animation: rotate 15s linear infinite;
        }
        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .text-balance {
            text-wrap: balance;
        }
        
        a, button {
            transition: all 0.3s ease-in-out;
        }
    
        /* --------------------------------------------------
           Fluent Forms - Team Alyssa
        -------------------------------------------------- */
        .alyssa-form-card {
            background: #ffffff;
            border: 1px solid rgba(30, 58, 138, 0.10);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 18px 45px rgba(30, 58, 138, 0.10);
        }
        .alyssa-form-card .ff-el-input--label label {
            color: #1e3a8a;
            font-family: 'Work Sans', sans-serif;
            font-weight: 700;
        }
        .alyssa-form-card .ff-el-form-control {
            border: 1px solid #d7dce5 !important;
            border-radius: 10px !important;
            background: #fbfcfe !important;
            min-height: 48px;
            font-family: 'Work Sans', sans-serif;
            transition: border-color .2s ease, box-shadow .2s ease;
        }
        .alyssa-form-card textarea.ff-el-form-control { min-height: 120px; }
        .alyssa-form-card .ff-el-form-control:focus {
            border-color: #5c43a4 !important;
            box-shadow: 0 0 0 3px rgba(92, 67, 164, 0.12) !important;
        }
        .alyssa-form-card .ff-el-group { margin-bottom: 18px; }
        .alyssa-form-card .ff-el-form-check-label, .alyssa-form-card .ff_t_c {
            color: #333333;
            font-family: 'Work Sans', sans-serif;
            line-height: 1.55;
        }
        .alyssa-form-card .ff-btn-submit {
            background: #5c43a4 !important;
            border: 0 !important;
            border-radius: 999px !important;
            color: #ffffff !important;
            padding: 14px 28px !important;
            font-family: 'Work Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .12em;
            text-transform: uppercase;
            box-shadow: 0 10px 24px rgba(92, 67, 164, 0.20);
        }
        .alyssa-form-card .ff-btn-submit:hover {
            background: #d0594a !important;
            transform: translateY(-1px);
        }
        @media (min-width: 768px) { .alyssa-form-card { padding: 36px; } }
        .alyssa-popup-form-card { box-shadow: none; border-color: rgba(30, 58, 138, 0.08); }
        .alyssa-form-modal { overscroll-behavior: contain; }
        .alyssa-form-modal > div { scrollbar-width: thin; }

        /* --------------------------------------------------
           HERO IMAGE RESPONSIVE
        -------------------------------------------------- */
        .hero-image-wrap { height: auto; display: flex; align-items: flex-end; }
        .hero-main-image { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center bottom; background: #5c43a4; }
        @media (min-width: 768px) {
            .hero-image-wrap { height: auto; display: flex; align-items: flex-end; }
            .hero-main-image { height: 100%; max-height: none; object-fit: cover; object-position: center 15%; }
        }
        @media (max-width: 767px) {
            .hero-main-image { max-height: 60vh; }
            .hero-image-wrap .badge-circle { width: 10rem; height: 10rem; top: 1rem; right: 1rem; }
        }
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-image-wrap { align-self: stretch; min-height: 100%; position: relative; overflow: hidden; background: #5c43a4; }
            .hero-main-image { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover !important; object-position: center 20% !important; display: block; }
        }

        /* --------------------------------------------------
           MOBILE NAVIGATION & SOCIAL ICONS
        -------------------------------------------------- */
        .mobile-nav-menu { max-height: calc(100vh - 90px); overflow-y: auto; overscroll-behavior: contain; }
        .mobile-nav-link {
            display: block; padding: 15px 4px; border-bottom: 1px solid rgba(30, 58, 138, 0.10); color: #1e3a8a;
            font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
        }
        .mobile-nav-link:hover { color: #d0594a; padding-left: 10px; }
        
        .mobile-social-icon {
            width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
            border-radius: 999px; color: #ffffff; background: #5c43a4; box-shadow: 0 6px 16px rgba(92, 67, 164, .16);
            transition: all 0.3s ease;
        }
        .mobile-social-icon:hover { background: #d0594a; transform: translateY(-2px); }
        .mobile-social-icon svg { width: 21px; height: 21px; }

        /* --------------------------------------------------
           PREMIUM GALLERY LIGHTBOX
        -------------------------------------------------- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
            padding: 24px;
        }
        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img { transform: scale(1.08); }
        
        #full-gallery-modal {
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        /* --------------------------------------------------
           PREMIUM SINGLE GALLERY SHOWCASE
        -------------------------------------------------- */
        .premium-gallery-showcase {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            width: 100%;
        }
        @media (min-width: 1024px) {
            .premium-gallery-showcase {
                flex-direction: row;
                align-items: flex-end;
                justify-content: flex-end;
            }
        }
        .showcase-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
            border: 1px solid rgba(255,255,255,0.15);
            transform: rotate(-2deg);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            z-index: 10;
        }
        .showcase-image-wrapper:hover {
            transform: rotate(0deg) scale(1.02);
            box-shadow: 0 30px 60px -15px rgba(0,0,0,0.7);
        }
        .showcase-image-wrapper img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        @media (min-width: 768px) {
            .showcase-image-wrapper img { height: 500px; }
        }
        .view-gallery-btn-premium {
            background: #ffffff;
            color: #1e3a8a;
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
            z-index: 20;
        }
        .view-gallery-btn-premium:hover {
            background: #d0594a;
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(208, 89, 74, 0.4);
        }
        .view-gallery-btn-premium:hover .text-brand-rust { color: #ffffff; }

        /* --------------------------------------------------
           FULL-WIDTH SITE FIX (ELEMENTOR COMPATIBILITY)
        -------------------------------------------------- */
        .alyssa-site-shell {
            position: relative;
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* --------------------------------------------------
           EFECTOS VARIOS
        -------------------------------------------------- */
        .glowing-text-anim {
            background: linear-gradient(110deg, #f8f2e2 0%, #ffffff 20%, #d0594a 50%, #ffffff 80%, #f8f2e2 100%);
            background-size: 200% auto;
            color: #ffffff;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShine 3.5s linear infinite;
            filter: drop-shadow(0 0 10px rgba(208, 89, 74, 0.4));
            display: inline-block;
        }
        @keyframes textShine { to { background-position: 200% center; } }
        
        /* WhatsApp */
        .alyssa-whatsapp-widget {
            position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom));
            z-index: 45; display: flex; align-items: center; justify-content: flex-end; gap: 12px;
            transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
        }
        .alyssa-whatsapp-widget.is-hidden-for-popup { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); }
        .alyssa-whatsapp-message {
            position: relative; max-width: 245px; padding: 12px 15px; background: #ffffff; color: #1e3a8a;
            border: 1px solid rgba(30, 58, 138, 0.10); border-radius: 14px; box-shadow: 0 10px 30px rgba(30, 58, 138, 0.18);
            font-family: 'Work Sans', sans-serif; font-size: 12px; line-height: 1.4; text-align: left;
        }
        .alyssa-whatsapp-message strong { color: #5c43a4; font-weight: 700; }
        .alyssa-whatsapp-message::after {
            content: ""; position: absolute; right: -6px; top: 50%; width: 12px; height: 12px; background: #ffffff;
            border-top: 1px solid rgba(30, 58, 138, 0.10); border-right: 1px solid rgba(30, 58, 138, 0.10); transform: translateY(-50%) rotate(45deg);
        }
        .alyssa-whatsapp-button {
            width: 58px; height: 58px; flex: 0 0 58px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
            background: #25D366; color: #ffffff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22); transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
        }
        .alyssa-whatsapp-button:hover { transform: translateY(-2px) scale(1.03); background: #1ebe5d; box-shadow: 0 15px 34px rgba(0, 0, 0, 0.26); }
        .alyssa-whatsapp-button svg { width: 31px; height: 31px; }
        @media (max-width: 767px) {
            .alyssa-whatsapp-widget { right: max(12px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); flex-direction: column; align-items: flex-end; gap: 8px; }
            .alyssa-whatsapp-message { max-width: min(235px, calc(100vw - 32px)); padding: 10px 13px; font-size: 11px; border-radius: 12px; }
            .alyssa-whatsapp-message::after { right: 20px; top: auto; bottom: -6px; transform: rotate(135deg); }
            .alyssa-whatsapp-button { width: 54px; height: 54px; flex-basis: 54px; }
            .alyssa-whatsapp-button svg { width: 29px; height: 29px; }
        }

        /* Campaign Video Styles */
        .announcement-video-modal { padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left)); }
        .announcement-video-shell { display: flex; flex-direction: column; width: min(100%, 1152px); max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); overflow: hidden; }
        .announcement-video-stage { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
        .announcement-video-stage video { display: block; width: 100%; height: auto; max-width: 100%; max-height: calc(100vh - 190px); max-height: calc(100dvh - 190px); background: #000; object-fit: contain; }
        .announcement-video-footer { flex: 0 0 auto; min-width: 0; }
        .announcement-video-help { min-width: 0; flex: 1 1 260px; }
        #announcementLandscapeButton { flex: 0 1 auto; max-width: 100%; min-width: 0; white-space: normal !important; text-align: center; line-height: 1.25; }
        #announcementLandscapeButton svg { flex: 0 0 auto; }
        @media (max-width: 767px) {
            .announcement-video-modal { padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left)); }
            .announcement-video-shell { width: 100%; max-height: calc(100vh - 16px); max-height: calc(100dvh - 16px); border-radius: 14px; }
            .announcement-video-stage video { max-height: calc(100vh - 210px); max-height: calc(100dvh - 210px); }
            .announcement-video-footer { padding: 12px !important; }
            .announcement-video-help { display: none; }
            #announcementLandscapeButton { width: 100%; justify-content: center; padding: 12px 16px !important; font-size: 10px !important; }
        }

/* WordPress theme integration */
body { color:#333333; -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }
::selection { background:#d0594a; color:#fff; }
body.admin-bar #alyssa-main-header { top:32px !important; }
@media (max-width:782px){ body.admin-bar #alyssa-main-header { top:46px !important; } }
.record-content-lang { width:100%; }
