

/* ---- source: Ballet - Andorra Park Hotel.html ---- */

        /* --- VARIABLES & BASE --- */
        :root {
            --primary-gold: #bfa37c;
            --text-dark: #111111;
            --text-grey: #555555;
            --bg-light: #F8F2F2;
            --nav-border-color: rgba(255, 255, 255, 0.3);
            --menu-bg: #F9F7F2;
            --menu-text: #4A4A4A;
            --menu-number: #C5B097;
            --menu-hover: #000000;
        }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
            /* El cursor none se maneja via JS/Media Query para no romper mobile */
            cursor: auto; 
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        p { line-height: 1.8; color: var(--text-grey); }
        a { text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }

        /* --- CUSTOM CURSOR (Desktop Only) --- */
        .cursor-dot, .cursor-outline { 
            position: fixed; top: 0; left: 0; 
            transform: translate(-50%, -50%); 
            border-radius: 50%; z-index: 9999; pointer-events: none; 
            display: block;
        }
        .cursor-dot { width: 8px; height: 8px; background-color: var(--text-dark); }
        .cursor-outline { width: 40px; height: 40px; border: 1px solid rgba(0,0,0,0.5); transition: width 0.2s, height 0.2s, background-color 0.2s; }
        body.hovering .cursor-outline { width: 60px; height: 60px; background-color: rgba(191, 163, 124, 0.2); border-color: transparent; }

        /* UTILITIES */
        .text-gold { color: var(--primary-gold); }
        .reveal-up { opacity: 0; transform: translateY(60px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
        .reveal-up.active { opacity: 1; transform: translateY(0); }
        
        .btn-luxury-link { 
            position: relative; display: inline-block; font-size: 0.8rem; letter-spacing: 3px; 
            text-transform: uppercase; padding-bottom: 5px; overflow: hidden; color: var(--text-dark); 
            font-weight: 700; border-bottom: 1px solid rgba(0,0,0,0.1); margin-top: 20px; 
        }
        .btn-luxury-link::after { 
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; 
            background-color: var(--primary-gold); transform: translateX(-101%); 
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
        }
        .btn-luxury-link:hover::after { transform: translateX(0); }
        
        /* --- NAVBAR --- */
        .custom-navbar { 
            position: fixed; top: 0; left: 0; width: 100%; height: 90px; 
            display: flex; justify-content: space-between; align-items: center; 
            z-index: 1000; color: white; 
            background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%); 
            border-bottom: 1px solid var(--nav-border-color); transition: background 0.3s, height 0.3s; 
        }
        .custom-navbar.scrolled { background-color: rgba(20, 20, 20, 0.98); height: 70px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        
        .nav-left, .nav-right { display: flex; align-items: center; height: 100%; }
        
        .menu-box { 
            width: 90px; height: 100%; display: flex; justify-content: center; align-items: center; 
            border-right: 1px solid var(--nav-border-color); cursor: pointer; transition: background 0.3s; z-index: 1001; 
        }
        .menu-box:hover { background: rgba(255,255,255,0.1); }
        .menu-svg { width: 30px; height: 30px; stroke-width: 1; stroke: white; }

        .brand-circle-container { padding: 0 25px; display: flex; align-items: center; border-right: 1px solid var(--nav-border-color); height: 30px; }
        .brand-circle { border: 1px solid white; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.8rem; }
        
        .nav-center { text-align: center; position: absolute; left: 50%; transform: translateX(-50%); width: 180px; }
        .nav-logo-img { height: 60px; width: auto; object-fit: contain; filter: brightness(0) invert(1); transition: all 0.3s; }
        
        .nav-right-items { display: flex; height: 100%; align-items: center; }
        .book-btn-container { 
            height: 100%; display: flex; align-items: center; padding: 0 35px; 
            border-left: 1px solid var(--nav-border-color); 
            font-weight: 700; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; 
        }
        .book-btn-container:hover { background: rgba(255,255,255,0.1); }

        /* --- OVERLAY MENU --- */
        .overlay-menu { 
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
            background-color: var(--menu-bg); z-index: 2000; opacity: 0; visibility: hidden; 
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); 
            display: flex; flex-direction: column; 
        }
        .overlay-menu.active { opacity: 1; visibility: visible; }
        
        .close-btn-box { 
            position: absolute; top: 0; left: 0; width: 90px; height: 90px; 
            display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 2001; 
        }
        .close-icon-svg { width: 24px; height: 24px; stroke: var(--menu-text); stroke-width: 1; transition: transform 0.5s; }
        .close-btn-box:hover .close-icon-svg { transform: rotate(90deg); }
        
        .menu-content-wrapper { 
            display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; 
        }
        .menu-image-col { flex: 0 0 45%; display: flex; justify-content: flex-end; padding-right: 50px; opacity: 0; transform: translateX(-20px); transition: 0.8s ease 0.2s; }
        .overlay-menu.active .menu-image-col { opacity: 1; transform: translateX(0); }
        .menu-image-container { width: 100%; max-width: 450px; aspect-ratio: 3/4; overflow: hidden; box-shadow: 20px 20px 60px rgba(0,0,0,0.05); }
        .menu-image-container img { width: 100%; height: 100%; object-fit: cover; }
        
        .menu-links-col { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-left: 30px; }
        .menu-links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, auto); column-gap: 80px; row-gap: 25px; }
        .menu-links li { opacity: 0; transform: translateY(20px); transition: 0.5s ease; }
        .menu-links a { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--menu-text); display: inline-block; }
        .menu-links a:hover { color: var(--menu-hover); transform: translateX(10px); }
        
        /* Stagger Delay for Menu */
        .overlay-menu.active .menu-links li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(7) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(8) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(9) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
        .overlay-menu.active .menu-links li:nth-child(10) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

        /* --- SECTIONS --- */
        .ballet-hero { 
            height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #000; 
        }
        .ballet-hero::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 75%, rgba(0,0,0,0.8) 100%);
            z-index: 1; pointer-events: none;
        }
        .ballet-hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); animation: slowZoom 25s infinite alternate; }
        .ballet-hero-content { position: absolute; text-align: center; color: white; z-index: 2; width: 90%; max-width: 1000px; }
        .ballet-hero-content h1 { font-size: 6rem; font-style: italic; margin-bottom: 10px; opacity: 0; animation: fadeUp 1s ease forwards 0.5s; }
        .ballet-hero-content p { font-size: 1.5rem; font-weight: 400; color: #ffffff !important; opacity: 0; animation: fadeUp 1s ease forwards 0.8s; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }

        @keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .ballet-intro { padding: 150px 5%; text-align: center; max-width: 1100px; margin: 0 auto; }
        .intro-divider { width: 1px; height: 100px; background-color: var(--primary-gold); margin: 50px auto; opacity: 0.5; }

        .philosophy-strip { background-color: #1a1a1a; color: white; padding: 120px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .philosophy-text { flex: 1; padding-right: 50px; min-width: 300px; }
        .philosophy-stats { flex: 1; display: flex; justify-content: space-around; min-width: 300px; }
        .stat-number { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--primary-gold); display: block; }
        .stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }

        .program-row { display: flex; min-height: 800px; border-bottom: 1px solid rgba(0,0,0,0.03); background-color: white; }
        .program-img-col { flex: 1; position: relative; overflow: hidden; }
        .program-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
        .program-row:hover .program-img { transform: scale(1.05); }
        .program-text-col { flex: 1; padding: 100px 8%; display: flex; flex-direction: column; justify-content: center; position: relative; }
        .program-num { font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(0,0,0,0.05); position: absolute; top: 40px; right: 40px; }
        .program-title { font-size: 3rem; margin-bottom: 30px; line-height: 1.2; }

        .studio-detail-section { padding: 150px 5%; background-color: white; text-align: center; }
        .studio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 60px; margin-top: 80px; }
        .studio-feature i { font-size: 2rem; color: var(--primary-gold); margin-bottom: 25px; }

        .levels-section { padding: 150px 5%; background-color: #FFFFFF; }
        .level-card { background: transparent; padding: 50px 0; margin-bottom: 0; display: flex; align-items: center; justify-content: space-between; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); border-top: 1px dashed rgba(0,0,0,0.15); }
        .level-card:last-child { border-bottom: 1px dashed rgba(0,0,0,0.15); }
        .level-card:hover { transform: translateX(10px); }
        .level-meta { font-size: 0.7rem; letter-spacing: 2px; color: #aaa; margin-bottom: 15px; display: block; text-transform: uppercase; font-weight: 700; }
        .level-info h4 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--text-dark); margin-bottom: 15px; }
        .level-desc { font-size: 0.95rem; max-width: 600px; color: var(--text-grey); line-height: 1.8; }
        .level-action { font-size: 0.75rem; letter-spacing: 2px; color: var(--primary-gold); text-decoration: none; text-transform: uppercase; font-weight: 700; display: flex; align-items: center; }
        .level-action:hover { color: var(--text-dark); }

        .cta-section { padding: 150px 0; background: url('https://images.unsplash.com/photo-1544297668-2a6288339b33?auto=format&fit=crop&w=1920&q=80') no-repeat center center; background-size: cover; position: relative; color: white; text-align: center; background-attachment: fixed; }
        .cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
        .cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 20px; }
        .cta-content h2 { font-size: 4rem; margin-bottom: 30px; }
        .btn-cta-gold { background-color: var(--primary-gold); color: white; padding: 20px 60px; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; border: none; transition: background 0.3s; display: inline-block; margin-top: 30px; font-weight: 700; }

        .luxury-footer { background-color: #000; color: #fff; padding: 100px 0 40px; font-family: 'Lato', sans-serif; }
        .footer-logo-section { text-align: center; margin-bottom: 80px; }
        .footer-col h5 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; margin-bottom: 30px; color: #fff; }
        .footer-col ul { list-style: none; padding: 0; }
        .footer-col ul li a { color: rgba(255,255,255,0.6); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; font-weight: 700; transition: color 0.3s; }
        .footer-col ul li a:hover { color: var(--primary-gold); }
        .footer-bottom-bar { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }

        /* ========================================= */
        /* === MOBILE OPTIMIZATION (CRITICAL) === */
        /* ========================================= */
        @media (hover: none) and (pointer: coarse) {
            /* Desactivar cursor custom y animaciones problemáticas en táctiles */
            body { cursor: auto !important; }
            .cursor-dot, .cursor-outline { display: none !important; }
            .menu-box, .book-btn-container, a, button { cursor: pointer !important; }
            .cta-section { background-attachment: scroll !important; } /* Parallax suele fallar en móvil */
            .program-row:hover .program-img { transform: none !important; }
            .level-card:hover { transform: none !important; }
        }

        @media (max-width: 992px) {
            /* Navbar Mobile Adjustments */
            .custom-navbar { height: 70px; padding: 0 10px; background-color: rgba(0,0,0,0.4); }
            .menu-box { width: 60px; border-right: none; }
            .nav-logo-img { height: 40px; }
            .brand-circle-container, .lang-selector, .gift-vouchers { display: none; } 
            .nav-right-items { border: none; }
            .book-btn-container { padding: 0 15px; font-size: 0.7rem; border: 1px solid rgba(255,255,255,0.3); height: 40px; border-radius: 2px; }
            .nav-right .phone-icon, .nav-right .nav-icon-box { display: none; }
            
            /* Typography Scale Down */
            .ballet-hero-content h1 { font-size: 4rem; line-height: 1.1; }
            .ballet-hero-content p { font-size: 1.2rem; margin-top: 10px; color: #ffffff !important; }
            h2, .program-title, .philosophy-text h3 { font-size: 2.2rem !important; }
            .studio-detail-section h2 { font-size: 2.5rem !important; }
            .cta-content h2 { font-size: 2.5rem !important; }

            /* Spacing Reductions */
            .ballet-intro { padding: 80px 20px; }
            .intro-divider { height: 60px; margin: 30px auto; }
            .philosophy-strip { padding: 60px 20px; flex-direction: column; gap: 40px; text-align: center; }
            .philosophy-text { padding-right: 0; }
            .studio-detail-section { padding: 80px 20px; }
            .studio-grid { gap: 40px; margin-top: 50px; }
            .levels-section { padding: 80px 20px; }
            .cta-section { padding: 100px 20px; }
            .btn-cta-gold { padding: 15px 30px; width: 100%; max-width: 300px; }

            /* Program Rows - Force Image Top / Text Bottom order & Centering */
            .program-row, .program-row[style*="row-reverse"] { flex-direction: column !important; min-height: auto; }
            .program-img-col { height: 400px; min-height: 400px; width: 100%; }
            .program-text-col { padding: 60px 20px; text-align: center; align-items: center; }
            .program-desc { margin-left: auto; margin-right: auto; text-align: center; }
            
            /* Program Links (Centered & Cleaned without the line) */
            .program-text-col .d-flex { justify-content: center !important; margin: 30px auto 0 auto !important; }
            .program-text-col .d-flex div { display: none !important; }

            /* Menu Overlay Mobile */
            .menu-image-col { display: none; }
            .menu-links-col { padding: 0; align-items: center; }
            .menu-links { grid-template-columns: 1fr; text-align: center; row-gap: 15px; }
            .menu-links a { font-size: 1.8rem; }
            .menu-num { display: none; }

            /* Levels Cards Centering */
            .level-card { flex-direction: column; text-align: center; padding: 40px 0; gap: 15px; align-items: center; }
            .level-action { width: auto; border: none; padding: 0; margin-top: 10px; justify-content: center; }

            /* Footer */
            .luxury-footer { padding: 60px 0 30px; }
            .footer-col { text-align: center; margin-bottom: 40px; }
            .footer-bottom-bar { flex-direction: column; gap: 20px; }
            .footer-socials a { margin: 0 15px; font-size: 1.2rem; }
        }

        @media (max-width: 768px) {
            /* Hero adjustments for smaller phones */
            .ballet-hero-content h1 { font-size: 3.2rem !important; line-height: 1.1; margin-bottom: 10px; }
            .ballet-hero-content p { font-size: 1.05rem !important; margin-top: 10px; padding: 0 10px; color: #ffffff !important; }
            
            /* Intro Section */
            .ballet-intro { padding: 60px 20px; }
            .ballet-intro h2 { font-size: 1.8rem !important; line-height: 1.4 !important; }
            .intro-body-text { font-size: 0.95rem !important; }
            .quote-icon { font-size: 4rem !important; margin-bottom: 10px !important; }
            
            /* Program Rows - Smaller image and adjusted large numbers */
            .program-img-col { height: 300px !important; min-height: 300px !important; }
            .program-text-col { padding: 50px 20px; }
            .program-num { top: 15px !important; right: 20px !important; font-size: 3.5rem !important; opacity: 0.08 !important; }
            .program-title { font-size: 2rem !important; margin-bottom: 15px !important; }
            .program-desc { font-size: 0.9rem !important; }

            /* Levels Section */
            .levels-section { padding: 60px 20px; }
            .levels-section h2 { font-size: 2.2rem !important; margin-bottom: 40px !important; }
            .level-card { padding: 30px 0; }
            .level-info h4 { font-size: 1.6rem !important; margin-bottom: 10px !important; }
            .level-desc { font-size: 0.9rem !important; }

            /* CTA Section */
            .cta-section { padding: 80px 20px; }
            .cta-content h2 { font-size: 2.2rem !important; margin-bottom: 15px !important; }
            .cta-content p { font-size: 0.95rem !important; line-height: 1.6 !important; }
            .btn-cta-gold { padding: 15px 20px !important; font-size: 0.8rem !important; }
        }
    

/* =========================================================
   UNIFIED NAV + FOOTER FROM HOME
   ========================================================= */
.custom-navbar { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 80px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; z-index: 1000 !important; color: #fff !important; background: transparent !important; padding: 0 40px !important; border-bottom: 1px solid rgba(255,255,255,0.15) !important; transition: all 0.4s ease !important; }
.custom-navbar.scrolled { background-color: rgba(10,10,10,0.9) !important; border-bottom-color: transparent !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
.custom-navbar .nav-left, .custom-navbar .nav-right { display: flex !important; align-items: center !important; height: 100% !important; }
.custom-navbar .nav-center { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; text-align: center !important; }
.menu-btn-minimal { cursor: pointer !important; display: flex !important; flex-direction: column !important; justify-content: center !important; width: 30px !important; height: 100% !important; padding-right: 15px !important; }
.nav-right-link { color: #fff !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; margin-right: 30px !important; transition: opacity 0.3s !important; text-decoration: none !important; }
.nav-right-link:hover { opacity: 0.7 !important; color: #fff !important; }
.nav-icon-stacked { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; width: 80px !important; height: 100% !important; cursor: pointer !important; border-left: 1px solid rgba(255,255,255,0.15) !important; transition: background 0.3s !important; color: #fff !important; }
.nav-icon-stacked:last-child { border-right: 1px solid rgba(255,255,255,0.15) !important; }
.nav-icon-stacked:hover { background: rgba(255,255,255,0.1) !important; }
.nav-icon-stacked i { font-size: 1.1rem !important; margin-bottom: 4px !important; opacity: 0.9 !important; }
.nav-icon-stacked span { font-size: 0.45rem !important; letter-spacing: 1px !important; text-transform: uppercase !important; font-weight: 700 !important; opacity: 0.8 !important; }
.mobile-reservar-btn { display: none !important; }

.overlay-menu { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: var(--menu-bg, #F9F7F2) !important; z-index: 2000 !important; opacity: 0 !important; visibility: hidden !important; transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important; overflow-y: auto !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.overlay-menu.active { opacity: 1 !important; visibility: visible !important; }
.close-btn-box { position: absolute !important; top: 0 !important; left: 0 !important; width: 90px !important; height: 90px !important; border-right: 1px solid rgba(0,0,0,0.05) !important; border-bottom: 1px solid rgba(0,0,0,0.05) !important; display: flex !important; justify-content: center !important; align-items: center !important; cursor: pointer !important; z-index: 2001 !important; transition: background 0.3s !important; }
.close-btn-box:hover { background: rgba(0,0,0,0.03) !important; }
.close-icon-svg { width: 28px !important; height: 28px !important; stroke: #111 !important; stroke-width: 1 !important; }
.menu-content-wrapper { width: 100% !important; max-width: 1400px !important; height: 80vh !important; display: flex !important; align-items: center !important; padding: 0 5% !important; }
.menu-image-col { flex: 0 0 40% !important; height: 100% !important; opacity: 0 !important; transform: translateX(-30px) !important; transition: all 0.8s ease 0.2s !important; }
.overlay-menu.active .menu-image-col { opacity: 1 !important; transform: translateX(0) !important; }
.menu-image-container { width: 100% !important; height: 100% !important; overflow: hidden !important; }
.menu-image-container img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 8s ease !important; opacity: 1 !important; display: block !important; }
.overlay-menu.active .menu-image-container img { transform: scale(1.05) !important; }
.menu-links-col { flex: 1 !important; padding-left: 8% !important; }
.menu-links { list-style: none !important; padding: 0 !important; margin: 0 !important; display: grid !important; grid-template-columns: 1fr 1fr !important; column-gap: 80px !important; row-gap: 28px !important; }
.menu-links li { opacity: 0 !important; transform: translateY(20px) !important; transition: all 0.5s ease !important; display: flex !important; align-items: baseline !important; }
.overlay-menu.active .menu-links li { opacity: 1 !important; transform: translateY(0) !important; }
.menu-num { font-size: 0.7rem !important; color: var(--menu-number, #C5B097) !important; margin-right: 18px !important; font-weight: 700 !important; letter-spacing: 1px !important; }
.menu-links a { font-family: 'Playfair Display', serif !important; font-size: clamp(2rem, 4vw, 4rem) !important; color: var(--menu-text, #4A4A4A) !important; line-height: 1 !important; text-decoration: none !important; transition: all 0.4s ease !important; }
.menu-links a:hover { color: var(--menu-hover, #000) !important; transform: translateX(10px) !important; }

.luxury-footer { background-color: #050505 !important; color: #fff !important; padding: 120px 0 30px !important; font-family: 'Lato', sans-serif !important; position: relative !important; z-index: 10 !important; }
.footer-logo-section { text-align: center !important; margin-bottom: 100px !important; }
.footer-main-row { margin-bottom: 60px !important; max-width: 1400px !important; margin-left: auto !important; margin-right: auto !important; padding: 0 5% !important; }
.footer-heading { font-family: 'Playfair Display', serif !important; font-style: italic !important; font-size: 2.4rem !important; font-weight: 400 !important; margin-bottom: 40px !important; color: #fff !important; }
.contact-desc { font-size: 0.85rem !important; color: #ccc !important; line-height: 1.8 !important; letter-spacing: 0.5px !important; margin-bottom: 30px !important; padding-right: 10px !important; }
.contact-details p { font-size: 0.8rem !important; color: #ccc !important; line-height: 1.8 !important; letter-spacing: 0.5px !important; margin-bottom: 0 !important; }
.contact-details i { font-size: 0.9rem !important; color: #fff !important; width: 20px !important; text-align: center !important; }
.footer-links { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-links li { margin-bottom: 25px !important; }
.footer-links li a { color: #fff !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 2.5px !important; text-transform: uppercase !important; transition: opacity 0.3s !important; opacity: 0.9 !important; cursor: pointer !important; text-decoration: none !important; }
.footer-links li a:hover { opacity: 0.5 !important; color: #fff !important; }
.footer-divider { width: 90% !important; height: 1px !important; background-color: rgba(255,255,255,0.1) !important; margin: 0 auto 30px !important; max-width: 1400px !important; }
.footer-bottom-row { display: flex !important; justify-content: space-between !important; align-items: center !important; max-width: 1400px !important; margin: 0 auto !important; padding: 0 5% !important; }
.footer-socials { display: flex !important; gap: 30px !important; align-items: center !important; }
.footer-socials a { color: #fff !important; font-size: 1.1rem !important; transition: opacity 0.3s !important; opacity: 0.9 !important; display: flex !important; align-items: center !important; cursor: pointer !important; text-decoration: none !important; }
.footer-socials a:hover { opacity: 0.5 !important; }
.footer-lang { font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; color: #fff !important; display: flex !important; align-items: center !important; opacity: 0.9 !important; transition: opacity 0.3s !important; cursor: pointer !important; }
.footer-lang:hover { opacity: 0.5 !important; }
.footer-copyright { text-align: center !important; font-size: 0.6rem !important; color: rgba(255,255,255,0.4) !important; letter-spacing: 1px !important; margin-top: 60px !important; text-transform: none !important; }

@media (max-width: 992px) {
    .custom-navbar { padding: 0 !important; background-color: #050505 !important; display: grid !important; grid-template-columns: 75px 1fr 110px !important; border-bottom: none !important; }
    .nav-left { gap: 0 !important; justify-content: center !important; border-right: 1px solid rgba(255,255,255,0.15) !important; width: 100% !important; }
    .menu-btn-minimal { padding: 0 !important; width: 100% !important; align-items: center !important; }
    .nav-center { position: relative !important; left: auto !important; transform: none !important; width: 100% !important; display: flex !important; justify-content: center !important; align-items: center !important; }
    .mobile-logo-wrapper { height: 32px !important; width: 50px !important; overflow: hidden !important; display: flex !important; justify-content: center !important; }
    .mobile-logo-wrapper img { height: 75px !important; object-position: center top !important; filter: brightness(0) invert(1) !important; }
    .mobile-reservar-btn { display: flex !important; align-items: center !important; justify-content: center !important; border-left: 1px solid rgba(255,255,255,0.15) !important; color: white !important; font-size: 0.65rem !important; letter-spacing: 2px !important; font-weight: 700 !important; text-transform: uppercase !important; cursor: pointer !important; height: 100% !important; text-decoration: none !important; }
    .nav-right { display: none !important; }
    .menu-image-col { display: none !important; }
    .menu-links-col { padding-left: 0 !important; padding-right: 0 !important; align-items: center !important; text-align: center !important; flex: 1 !important; }
    .menu-links { grid-template-columns: 1fr !important; row-gap: 25px !important; column-gap: 0 !important; justify-content: center !important; }
    .menu-links a { font-size: 1.8rem !important; }
    .close-btn-box { border: none !important; right: 0 !important; left: auto !important; width: 60px !important; height: 60px !important; }
    .menu-content-wrapper { flex-direction: column !important; height: auto !important; padding-top: 80px !important; padding-bottom: 50px !important; }
    .footer-logo-section { margin-bottom: 60px !important; }
    .footer-main-row { text-align: left !important; margin-bottom: 40px !important; }
    .footer-heading { margin-top: 40px !important; margin-bottom: 20px !important; font-size: 1.8rem !important; }
    .contact-details p { margin-bottom: 15px !important; }
    .footer-bottom-row { flex-direction: column !important; gap: 25px !important; align-items: flex-start !important; }
}


        /* --- HERO HEIGHT UNIFICATION --- */
        :root { --section-hero-height: 74vh; --section-hero-min-height: 560px; }

        header.hero,
        header.ballet-hero,
        header.contact-hero,
        header.exp-hero,
        header.hero-fullscreen,
        header.gastro-hero,
        header.page-header,
        header.room-hero,
        header.services-hero,
        header.hero-shop,
        header.hero-ultra {
            height: var(--section-hero-height) !important;
            min-height: var(--section-hero-min-height) !important;
        }

        @media (max-width: 991px) {
            :root { --section-hero-height: 66vh; --section-hero-min-height: 500px; }
        }

        @media (max-width: 575px) {
            :root { --section-hero-height: 58vh; --section-hero-min-height: 430px; }
        }

    
/* === FOOTER UNIFORME GLOBAL - REFERENCIA INICIO === */
body .luxury-footer {
    background-color: #050505 !important;
    color: #ffffff !important;
    padding: 120px 0 30px !important;
    font-family: 'Lato', sans-serif !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
body .luxury-footer .footer-logo-section {
    text-align: center !important;
    margin-bottom: 100px !important;
}
body .luxury-footer .footer-logo-section img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    opacity: 1 !important;
    display: inline-block !important;
    filter: brightness(0) invert(1) !important;
}
body .luxury-footer .footer-main-row {
    margin-bottom: 60px !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 5% !important;
    width: 100% !important;
}
body .luxury-footer .footer-heading {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    margin-bottom: 40px !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
}
body .luxury-footer .contact-desc {
    font-size: 0.85rem !important;
    color: #cccccc !important;
    line-height: 1.8 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 30px !important;
    padding-right: 10px !important;
    font-weight: 400 !important;
}
body .luxury-footer .contact-details p {
    font-size: 0.8rem !important;
    color: #cccccc !important;
    line-height: 1.8 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0 !important;
    font-weight: 400 !important;
}
body .luxury-footer .contact-details i {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    width: 20px !important;
    min-width: 20px !important;
    text-align: center !important;
}
body .luxury-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
body .luxury-footer .footer-links li {
    margin-bottom: 25px !important;
}
body .luxury-footer .footer-links li a {
    color: #ffffff !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
body .luxury-footer .footer-links li a:hover {
    opacity: 0.5 !important;
    color: #ffffff !important;
}
body .luxury-footer .footer-divider {
    width: 90% !important;
    height: 1px !important;
    background-color: rgba(255,255,255,0.1) !important;
    margin: 0 auto 30px !important;
    max-width: 1400px !important;
}
body .luxury-footer .footer-bottom-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 5% !important;
    width: 100% !important;
}
body .luxury-footer .footer-socials {
    display: flex !important;
    gap: 30px !important;
    align-items: center !important;
}
body .luxury-footer .footer-socials a {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
body .luxury-footer .footer-socials a:hover {
    opacity: 0.5 !important;
}
body .luxury-footer .footer-lang {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s !important;
    cursor: pointer !important;
}
body .luxury-footer .footer-lang:hover {
    opacity: 0.5 !important;
}
body .luxury-footer .footer-copyright {
    text-align: center !important;
    font-size: 0.6rem !important;
    color: rgba(255,255,255,0.4) !important;
    letter-spacing: 1px !important;
    margin-top: 60px !important;
    text-transform: none !important;
}
@media (max-width: 992px) {
    body .luxury-footer {
        padding: 80px 0 30px !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
    }
    body .luxury-footer .footer-logo-section {
        margin-bottom: 70px !important;
    }
    body .luxury-footer .footer-logo-section img {
        height: 90px !important;
    }
    body .luxury-footer .footer-heading {
        font-size: 2rem !important;
        margin-bottom: 28px !important;
    }
    body .luxury-footer .footer-main-row {
        margin-bottom: 45px !important;
        padding: 0 7% !important;
    }
    body .luxury-footer .footer-bottom-row {
        padding: 0 7% !important;
    }
}
@media (max-width: 768px) {
    body .luxury-footer {
        padding: 70px 0 28px !important;
    }
    body .luxury-footer .footer-logo-section {
        margin-bottom: 55px !important;
    }
    body .luxury-footer .footer-logo-section img {
        height: 78px !important;
    }
    body .luxury-footer .footer-main-row {
        padding: 0 28px !important;
        margin-bottom: 40px !important;
    }
    body .luxury-footer .footer-col {
        text-align: left !important;
    }
    body .luxury-footer .footer-heading {
        font-size: 1.85rem !important;
        margin-bottom: 24px !important;
    }
    body .luxury-footer .footer-links li {
        margin-bottom: 18px !important;
    }
    body .luxury-footer .footer-bottom-row {
        flex-direction: column !important;
        gap: 28px !important;
        padding: 0 28px !important;
        align-items: center !important;
    }
    body .luxury-footer .footer-socials {
        gap: 26px !important;
    }
    body .luxury-footer .footer-copyright {
        margin-top: 45px !important;
        padding: 0 28px !important;
    }
}




/* === NAVBAR SIZE UNIFORM FINAL === */
.custom-navbar,
.custom-navbar.scrolled,
.custom-navbar.dark-mode {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    padding: 0 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
}
.custom-navbar .nav-left,
.custom-navbar .nav-right {
    height: 80px !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
}
.custom-navbar .nav-center {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}
.custom-navbar .menu-btn-minimal {
    width: 30px !important;
    height: 80px !important;
    padding-right: 15px !important;
    display: flex !important;
    justify-content: center !important;
}
.custom-navbar .nav-center-text {
    font-size: 1.6rem !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
}
.custom-navbar .nav-icon-stacked {
    width: 80px !important;
    height: 80px !important;
    min-height: 80px !important;
}
.custom-navbar .nav-right-link {
    margin-right: 30px !important;
    font-size: 0.65rem !important;
    line-height: 1 !important;
}
.top-booking-strip {
    top: 80px !important;
}
@media (max-width: 992px) {
    .custom-navbar,
    .custom-navbar.scrolled,
    .custom-navbar.dark-mode {
        height: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 75px 1fr 110px !important;
        align-items: center !important;
        background-color: #050505 !important;
        border-bottom: none !important;
    }
    .custom-navbar .nav-left {
        height: 80px !important;
        min-height: 80px !important;
        width: 75px !important;
        justify-content: center !important;
        border-right: 1px solid rgba(255,255,255,0.15) !important;
    }
    .custom-navbar .menu-btn-minimal {
        width: 75px !important;
        height: 80px !important;
        padding: 0 !important;
        align-items: center !important;
    }
    .custom-navbar .nav-center {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        height: 80px !important;
        width: 100% !important;
    }
    .custom-navbar .mobile-logo-wrapper {
        width: 50px !important;
        height: 32px !important;
    }
    .custom-navbar .mobile-logo-wrapper img {
        height: 75px !important;
        width: auto !important;
        object-fit: contain !important;
        object-position: center top !important;
        filter: brightness(0) invert(1) !important;
    }
    .custom-navbar .mobile-reservar-btn {
        width: 110px !important;
        height: 80px !important;
        min-height: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-left: 1px solid rgba(255,255,255,0.15) !important;
        color: #ffffff !important;
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }
    .custom-navbar .nav-right { display: none !important; }
    .top-booking-strip { top: 80px !important; }
}



/* === FOOTER EXACTO GLOBAL - REFERENCIA PÁGINA INICIO === */
html body footer.luxury-footer,
html body .luxury-footer {
    background: #050505 !important;
    background-color: #050505 !important;
    color: #ffffff !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 120px 0 30px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    font-family: 'Lato', sans-serif !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}
html body .luxury-footer *,
html body .luxury-footer *::before,
html body .luxury-footer *::after {
    box-sizing: border-box !important;
}
html body .luxury-footer .footer-logo-section {
    text-align: center !important;
    margin: 0 0 100px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    display: block !important;
}
html body .luxury-footer .footer-logo-section img {
    height: 110px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    filter: brightness(0) invert(1) !important;
    transform: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-main-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto 60px auto !important;
    padding: 0 5% !important;
}
html body .luxury-footer .footer-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
}
html body .luxury-footer .footer-heading {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    text-align: left !important;
}
html body .luxury-footer .contact-desc {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.85rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: #cccccc !important;
    margin: 0 0 30px 0 !important;
    padding: 0 10px 0 0 !important;
    text-align: left !important;
}
html body .luxury-footer .contact-details {
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .contact-details p {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.8rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    color: #cccccc !important;
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
}
html body .luxury-footer .contact-details i {
    font-size: 0.9rem !important;
    color: #ffffff !important;
    width: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}
html body .luxury-footer .footer-links li {
    list-style: none !important;
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
    display: list-item !important;
}
html body .luxury-footer .footer-links li a {
    font-family: 'Lato', sans-serif !important;
    color: #ffffff !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-links li a:hover {
    opacity: 0.5 !important;
    color: #ffffff !important;
}
html body .luxury-footer .footer-divider {
    width: 90% !important;
    max-width: 1400px !important;
    height: 1px !important;
    min-height: 1px !important;
    background: rgba(255,255,255,0.1) !important;
    background-color: rgba(255,255,255,0.1) !important;
    margin: 0 auto 30px auto !important;
    padding: 0 !important;
    border: 0 !important;
    display: block !important;
}
html body .luxury-footer .footer-bottom-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 5% !important;
    gap: 0 !important;
}
html body .luxury-footer .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-socials a {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
    transition: opacity 0.3s !important;
    opacity: 0.9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-socials a:hover { opacity: 0.5 !important; }
html body .luxury-footer .footer-lang {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.65rem !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
}
html body .luxury-footer .footer-lang:hover { opacity: 0.5 !important; }
html body .luxury-footer .footer-copyright {
    font-family: 'Lato', sans-serif !important;
    text-align: center !important;
    font-size: 0.6rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    color: rgba(255,255,255,0.4) !important;
    letter-spacing: 1px !important;
    margin: 60px 0 0 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}
@media (max-width: 992px) {
    html body footer.luxury-footer,
    html body .luxury-footer {
        padding: 80px 0 30px !important;
    }
    html body .luxury-footer .footer-logo-section { margin-bottom: 70px !important; }
    html body .luxury-footer .footer-logo-section img { height: 90px !important; }
    html body .luxury-footer .footer-heading { font-size: 2rem !important; margin-bottom: 28px !important; }
    html body .luxury-footer .footer-main-row { margin-bottom: 45px !important; padding: 0 7% !important; }
    html body .luxury-footer .footer-bottom-row { padding: 0 7% !important; }
}
@media (max-width: 768px) {
    html body footer.luxury-footer,
    html body .luxury-footer {
        padding: 70px 0 28px !important;
    }
    html body .luxury-footer .footer-logo-section { margin-bottom: 55px !important; }
    html body .luxury-footer .footer-logo-section img { height: 78px !important; }
    html body .luxury-footer .footer-main-row { padding: 0 28px !important; margin-bottom: 40px !important; }
    html body .luxury-footer .footer-col { text-align: left !important; }
    html body .luxury-footer .footer-heading { font-size: 1.85rem !important; margin-bottom: 24px !important; }
    html body .luxury-footer .footer-links li { margin-bottom: 18px !important; }
    html body .luxury-footer .footer-bottom-row {
        flex-direction: column !important;
        gap: 28px !important;
        padding: 0 28px !important;
        align-items: center !important;
    }
    html body .luxury-footer .footer-socials { gap: 26px !important; }
    html body .luxury-footer .footer-copyright { margin-top: 45px !important; padding: 0 28px !important; }
}



    .custom-navbar { height: 80px !important; }
    .top-booking-strip {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        height: 75px !important;
        background-color: transparent !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
        z-index: 999 !important;
        align-items: center !important;
        padding: 0 40px !important;
        transition: all 0.4s ease !important;
        pointer-events: auto !important;
        box-sizing: border-box !important;
    }
    .top-booking-strip.scrolled {
        background-color: rgba(232, 230, 225, 0.95) !important;
        border-bottom-color: transparent !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    .top-booking-strip.transparent-strip {
        background-color: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        pointer-events: none !important;
        border-color: transparent !important;
    }
    .booking-fields-wrapper {
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
        display: flex !important;
        flex-grow: 1 !important;
        align-items: center !important;
        margin: 0 !important;
        transform: translateY(0) !important;
    }
    .booking-fields-wrapper.hidden-fields {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-50px) !important;
    }
    .booking-field-new {
        margin-right: 25px !important;
        flex-shrink: 0 !important;
    }
    .booking-field-new label {
        display: block !important;
        font-size: 0.6rem !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        color: #ffffff !important;
        margin-bottom: 5px !important;
        text-transform: uppercase !important;
        transition: color 0.4s ease !important;
        font-family: 'Lato', sans-serif !important;
        line-height: 1.2 !important;
    }
    .top-booking-strip.scrolled .booking-field-new label {
        color: #111111 !important;
    }
    .field-box {
        background-color: rgba(255, 255, 255, 0.15) !important;
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
        color: #ffffff !important;
        min-width: 220px !important;
        height: auto !important;
        border: none !important;
        outline: none !important;
        font-family: 'Lato', sans-serif !important;
        transition: all 0.4s ease !important;
        cursor: text !important;
        appearance: none !important;
        -webkit-appearance: none !important;
        display: block !important;
        border-radius: 2px !important;
        box-shadow: none !important;
        line-height: 1.4 !important;
    }
    select.field-box {
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
        background-repeat: no-repeat !important;
        background-position: right 10px center !important;
        padding-right: 30px !important;
        cursor: pointer !important;
    }
    select.field-box option {
        color: #111111 !important;
        background-color: #ffffff !important;
    }
    .field-box:hover,
    .field-box:focus {
        background-color: rgba(255, 255, 255, 0.25) !important;
    }
    .field-box.promo {
        font-style: italic !important;
        color: #eeeeee !important;
        min-width: 150px !important;
    }
    .field-box::placeholder {
        color: #eeeeee !important;
        opacity: 1 !important;
    }
    .top-booking-strip.scrolled .field-box {
        background-color: rgba(0, 0, 0, 0.06) !important;
        color: #111111 !important;
    }
    .top-booking-strip.scrolled select.field-box {
        background-image: url('data:image/svg+xml;utf8,<svg fill="%23111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    }
    .top-booking-strip.scrolled .field-box:hover,
    .top-booking-strip.scrolled .field-box:focus {
        background-color: rgba(0, 0, 0, 0.1) !important;
    }
    .top-booking-strip.scrolled .field-box.promo {
        color: #666666 !important;
    }
    .top-booking-strip.scrolled .field-box::placeholder {
        color: #666666 !important;
    }
    .btn-consultar-dark {
        background-color: #ffffff !important;
        color: #000000 !important;
        border: none !important;
        padding: 11px 30px !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
        transition: all 0.4s ease !important;
        margin-top: 16px !important;
        font-family: 'Lato', sans-serif !important;
        border-radius: 0 !important;
        height: auto !important;
        line-height: 1.4 !important;
    }
    .btn-consultar-dark:hover {
        background-color: #dddddd !important;
    }
    .top-booking-strip.scrolled .btn-consultar-dark {
        background-color: #000000 !important;
        color: #ffffff !important;
    }
    .top-booking-strip.scrolled .btn-consultar-dark:hover {
        background-color: #333333 !important;
    }
    .ocultar-toggle {
        font-size: 0.65rem !important;
        font-weight: 700 !important;
        letter-spacing: 1px !important;
        color: #ffffff !important;
        cursor: pointer !important;
        text-transform: uppercase !important;
        transition: color 0.4s ease !important;
        pointer-events: auto !important;
        font-family: 'Lato', sans-serif !important;
        white-space: nowrap !important;
    }
    .top-booking-strip.scrolled .ocultar-toggle {
        color: #111111 !important;
    }
    .ocultar-toggle.text-light-custom {
        color: #ffffff !important;
        text-shadow: 0 2px 5px rgba(0,0,0,0.6) !important;
    }
    .flatpickr-calendar,
    .flatpickr-calendar * {
        cursor: pointer !important;
    }
    @media (max-width: 991.98px) {
        .top-booking-strip { display: none !important; }
    }



/* Mobile repair v2: scoped, placed after page CSS. */
@media (max-width: 991.98px) {
  html, body { width:100% !important; max-width:100% !important; overflow-x:hidden !important; -webkit-text-size-adjust:100% !important; }
  body { cursor:auto !important; background:#fff !important; }
  *, *::before, *::after { box-sizing:border-box !important; }
  img, video, iframe, canvas, svg { max-width:100% !important; }
  .cursor-dot, .cursor-outline { display:none !important; }
  input, select, textarea { font-size:16px !important; }

  /* Navbar */
  .custom-navbar {
    position:fixed !important; top:0 !important; left:0 !important; right:0 !important;
    width:100% !important; height:64px !important; min-height:64px !important;
    padding:0 16px !important; display:flex !important; align-items:center !important; justify-content:space-between !important;
    background:rgba(8,8,8,.96) !important; color:#fff !important;
    border-bottom:1px solid rgba(255,255,255,.12) !important; z-index:5000 !important;
    backdrop-filter:blur(14px) !important; -webkit-backdrop-filter:blur(14px) !important;
  }
  .custom-navbar.scrolled { height:64px !important; background:rgba(8,8,8,.97) !important; }
  .nav-left, .nav-right, .nav-center { height:64px !important; display:flex !important; align-items:center !important; }
  .nav-left { min-width:44px !important; flex:0 0 auto !important; z-index:2 !important; }
  .nav-center { position:absolute !important; left:50% !important; top:0 !important; transform:translateX(-50%) !important; width:auto !important; max-width:62vw !important; justify-content:center !important; text-align:center !important; }
  .nav-right { min-width:44px !important; flex:0 0 auto !important; justify-content:flex-end !important; z-index:2 !important; }
  .nav-right > *:not(.mobile-reservar-btn) { display:none !important; }
  .menu-btn-minimal { width:44px !important; height:44px !important; min-width:44px !important; display:flex !important; align-items:center !important; justify-content:center !important; padding:0 !important; }
  .nav-center img, .custom-navbar img { max-height:36px !important; width:auto !important; object-fit:contain !important; }

  /* Booking form below navbar, in document flow, sticky on scroll. */
  .top-booking-strip, .top-booking-strip.d-none, .top-booking-strip.d-lg-flex {
    display:block !important; position:sticky !important; top:64px !important; left:auto !important; right:auto !important;
    width:100% !important; height:auto !important; min-height:0 !important; margin-top:64px !important;
    padding:10px 12px 12px !important; background:rgba(249,247,242,.98) !important; color:#111 !important;
    border-bottom:1px solid rgba(0,0,0,.08) !important; box-shadow:0 12px 24px rgba(0,0,0,.08) !important;
    z-index:4500 !important; opacity:1 !important; visibility:visible !important; transform:none !important; pointer-events:auto !important;
    backdrop-filter:blur(14px) !important; -webkit-backdrop-filter:blur(14px) !important;
  }
  .top-booking-strip.transparent-strip, .top-booking-strip.scrolled { background:rgba(249,247,242,.98) !important; border-bottom:1px solid rgba(0,0,0,.08) !important; pointer-events:auto !important; }
  .booking-fields-wrapper, .booking-fields-wrapper.hidden-fields {
    display:grid !important; grid-template-columns:1fr 1fr !important; gap:8px !important; width:100% !important; max-width:100% !important;
    margin:0 !important; padding:0 !important; opacity:1 !important; visibility:visible !important; pointer-events:auto !important; transform:none !important; align-items:end !important;
  }
  .booking-field-new { width:100% !important; min-width:0 !important; margin:0 !important; padding:0 !important; flex:initial !important; }
  .booking-field-new:first-child { grid-column:1 / -1 !important; }
  .booking-field-new label, .top-booking-strip.scrolled .booking-field-new label {
    display:block !important; margin:0 0 4px !important; color:#111 !important; font-size:.52rem !important; line-height:1.1 !important;
    letter-spacing:1.2px !important; font-weight:800 !important; text-transform:uppercase !important;
  }
  .field-box, input.field-box, select.field-box, .top-booking-strip.scrolled .field-box {
    width:100% !important; min-width:0 !important; max-width:100% !important; height:38px !important; min-height:38px !important;
    padding:0 10px !important; border:1px solid rgba(0,0,0,.12) !important; border-radius:0 !important;
    background:#fff !important; color:#111 !important; line-height:38px !important; box-shadow:none !important; outline:none !important;
  }
  .field-box::placeholder, .top-booking-strip.scrolled .field-box::placeholder { color:rgba(17,17,17,.55) !important; }
  .btn-consultar-dark, .top-booking-strip.scrolled .btn-consultar-dark {
    width:100% !important; min-width:0 !important; max-width:100% !important; height:38px !important; min-height:38px !important;
    padding:0 8px !important; display:flex !important; align-items:center !important; justify-content:center !important;
    background:#111 !important; color:#fff !important; border:1px solid #111 !important; border-radius:0 !important;
    font-size:.58rem !important; line-height:1.1 !important; letter-spacing:1px !important; font-weight:800 !important; text-align:center !important; white-space:normal !important;
  }
  .ocultar-toggle, #toggleBookingBtn { display:none !important; }

  /* Heroes */
  .hero, .ballet-hero, .contact-hero, .exp-hero, .hero-fullscreen, .gastro-hero, .room-hero, .services-hero, .hero-shop, .hero-ultra {
    min-height:62svh !important; height:auto !important; padding:52px 16px !important; display:flex !important; align-items:center !important; justify-content:center !important; overflow:hidden !important;
  }
  .hero img, .hero-img, .ballet-hero-img, .contact-hero-img, .exp-hero-bg, .hero-bg, .gastro-hero-img, .room-hero-bg, .services-hero-img, .hero-shop-img, .hero-bg-img {
    width:100% !important; height:100% !important; object-fit:cover !important; object-position:center !important;
  }
  .hero-content, .hero-text-box, .ballet-hero-content, .contact-hero-content, .exp-hero-content, .hero-content-center, .room-hero-content, .services-hero-content, .hero-shop-content {
    width:100% !important; max-width:100% !important; padding-left:16px !important; padding-right:16px !important; text-align:center !important; z-index:5 !important;
  }
  .hero-title, .ballet-hero-content h1, .contact-hero-title, .exp-hero-title, .hero-title-art, .hero-shop-title, .services-hero-content h1, .room-hero-content h1, .hero-content h1, h1.page-title, .product-title-main {
    font-size:clamp(2.05rem, 11vw, 3.15rem) !important; line-height:1 !important; letter-spacing:-.04em !important; margin-bottom:14px !important; overflow-wrap:break-word !important;
  }
  .ballet-hero-content p, .contact-hero-content p, .exp-hero-content p, .services-hero-content p, .hero-shop-content p, .room-hero-content p, .hero-content p, .hero-subtitle, .hero-desc-art, .gastro-desc-hero {
    color:#fff !important; text-shadow:0 2px 12px rgba(0,0,0,.48) !important; font-size:clamp(.92rem, 3.8vw, 1.08rem) !important; line-height:1.55 !important; max-width:92vw !important; margin-left:auto !important; margin-right:auto !important;
  }

  /* Pages without hero */
  .cart-page-container, .checkout-container, .auth-container, .dashboard-container, .thank-you-container, .legal-container, .product-page-container, main, .main-content {
    width:100% !important; max-width:100% !important;
  }
  .cart-page-container, .checkout-container, .auth-container, .dashboard-container, .thank-you-container, .legal-container, .product-page-container {
    padding-left:16px !important; padding-right:16px !important;
  }

  /* Layout safety */
  section, .section { max-width:100% !important; overflow-x:hidden !important; }
  .container, .container-fluid, .container-fluid-custom { max-width:100% !important; padding-left:16px !important; padding-right:16px !important; }
  .row { margin-left:0 !important; margin-right:0 !important; }
  .row > * { padding-left:0 !important; padding-right:0 !important; }
  .hero-boxes-grid, .rooms-grid, .services-grid, .products-grid, .gallery-grid, .studio-grid, .features-grid, .footer-grid, .footer-links-grid, .dashboard-grid, .cart-layout, .checkout-layout, .product-main-grid, .product-layout {
    display:grid !important; grid-template-columns:1fr !important; gap:24px !important;
  }
  .program-row, .philosophy-strip, .level-card, .footer-bottom-bar, .product-actions { display:flex !important; flex-direction:column !important; align-items:stretch !important; gap:22px !important; }
  .program-text-col, .program-img-col, .philosophy-text, .philosophy-stats, .product-info-wrapper, .product-gallery { width:100% !important; max-width:100% !important; padding-left:0 !important; padding-right:0 !important; position:relative !important; top:auto !important; }
  .program-row { min-height:0 !important; }
  .program-img-col, .product-img-wrap, .room-img-wrap, .service-img-wrap { min-height:280px !important; }
  h2, .section-title, .section-title-luxury, .program-title, .cta-content h2, .level-info h4, .product-card-title { font-size:clamp(1.85rem, 8vw, 2.75rem) !important; line-height:1.08 !important; }
  p, .luxury-desc, .product-short-desc, .level-desc { font-size:.98rem !important; line-height:1.7 !important; }

  /* Overlay menu */
  .overlay-menu { align-items:flex-start !important; justify-content:flex-start !important; padding:84px 22px 36px !important; overflow-y:auto !important; -webkit-overflow-scrolling:touch !important; }
  .close-btn-box { width:64px !important; height:64px !important; top:0 !important; left:0 !important; }
  .menu-content-wrapper, .overlay-content, .menu-inner { width:100% !important; max-width:100% !important; display:block !important; }
  .menu-image-container, .menu-image-col { display:none !important; }
  .menu-links, .overlay-menu ul { width:100% !important; padding:0 !important; margin:0 !important; }
  .menu-links li, .overlay-menu li { margin-bottom:12px !important; }
  .menu-links a, .overlay-menu li a, .nav-item-box { font-size:clamp(1.55rem, 8vw, 2.45rem) !important; line-height:1.12 !important; width:100% !important; }

  /* Footer */
  .luxury-footer, footer.luxury-footer { width:100% !important; padding:58px 18px 28px !important; margin:0 !important; overflow:hidden !important; background:#000 !important; color:#fff !important; }
  .footer-logo-section { margin-bottom:42px !important; text-align:center !important; }
  .footer-logo-section img, .footer-logo img { max-width:210px !important; height:auto !important; object-fit:contain !important; margin:0 auto !important; }
  .footer-col, .footer-column { width:100% !important; text-align:center !important; margin-bottom:30px !important; padding:0 !important; }
  .footer-col h5, .footer-column h5, .footer-title { font-size:1.28rem !important; margin-bottom:18px !important; color:#fff !important; }
  .footer-col ul, .footer-column ul { padding:0 !important; margin:0 !important; list-style:none !important; }
  .footer-col li, .footer-column li { margin-bottom:11px !important; }
  .footer-col a, .footer-column a, .footer-bottom-bar a { color:rgba(255,255,255,.68) !important; font-size:.7rem !important; line-height:1.7 !important; letter-spacing:1.6px !important; }
  .footer-bottom-bar { border-top:1px solid rgba(255,255,255,.14) !important; padding-top:24px !important; margin-top:18px !important; text-align:center !important; justify-content:center !important; align-items:center !important; }
  .footer-socials, .social-links { display:flex !important; justify-content:center !important; align-items:center !important; gap:18px !important; flex-wrap:wrap !important; }
}

@media (max-width: 575.98px) {
  .custom-navbar { height:62px !important; min-height:62px !important; padding-left:14px !important; padding-right:14px !important; }
  .nav-left, .nav-right, .nav-center { height:62px !important; }
  .top-booking-strip, .top-booking-strip.d-none, .top-booking-strip.d-lg-flex { top:62px !important; margin-top:62px !important; padding:9px 10px 10px !important; }
  .booking-fields-wrapper, .booking-fields-wrapper.hidden-fields { gap:7px !important; }
  .field-box, input.field-box, select.field-box, .btn-consultar-dark { height:36px !important; min-height:36px !important; line-height:36px !important; }
  .btn-consultar-dark { font-size:.54rem !important; letter-spacing:.9px !important; }
  .hero, .ballet-hero, .contact-hero, .exp-hero, .hero-fullscreen, .gastro-hero, .room-hero, .services-hero, .hero-shop, .hero-ultra { min-height:60svh !important; padding-top:44px !important; padding-bottom:44px !important; }
}



@media (min-width: 992px) {
  .overlay-menu {
    width: 100vw !important;
    height: 100vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .overlay-menu .menu-content-wrapper {
    width: min(1180px, calc(100vw - 180px)) !important;
    max-width: min(1180px, calc(100vw - 180px)) !important;
    height: min(78vh, 720px) !important;
    min-height: 560px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr) !important;
    align-items: center !important;
    column-gap: clamp(44px, 5vw, 82px) !important;
    box-sizing: border-box !important;
  }

  .overlay-menu .menu-image-col {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-image-container {
    width: 100% !important;
    max-width: 390px !important;
    height: min(68vh, 620px) !important;
    min-height: 520px !important;
    aspect-ratio: 0.68 / 1 !important;
    overflow: hidden !important;
    box-shadow: 0 28px 70px rgba(0,0,0,0.12) !important;
    background: #ddd !important;
  }

  .overlay-menu .menu-image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
  }

  .overlay-menu .menu-links-col {
    min-width: 0 !important;
    width: 100% !important;
    height: auto !important;
    flex: none !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-links {
    width: 100% !important;
    max-width: 680px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: clamp(42px, 5vw, 76px) !important;
    row-gap: clamp(18px, 2.4vh, 28px) !important;
    justify-content: stretch !important;
    align-items: start !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-links li {
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: baseline !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .overlay-menu .menu-num {
    display: inline-block !important;
    width: 34px !important;
    min-width: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.64rem !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    color: var(--menu-number, #C5B097) !important;
    text-align: right !important;
    transform: translateY(-0.18em) !important;
  }

  .overlay-menu .menu-links a {
    min-width: 0 !important;
    width: auto !important;
    max-width: 100% !important;
    display: inline-block !important;
    font-size: clamp(2.3rem, 3.05vw, 3.35rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
    color: var(--menu-text, #4A4A4A) !important;
    transform: none !important;
  }

  .overlay-menu .menu-links a:hover {
    transform: translateX(8px) !important;
    color: var(--menu-hover, #000000) !important;
  }

  .close-btn-box {
    width: 76px !important;
    height: 76px !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    background: rgba(249,247,242,0.72) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .overlay-menu .menu-content-wrapper {
    width: calc(100vw - 110px) !important;
    max-width: calc(100vw - 110px) !important;
    grid-template-columns: 0.74fr 1.26fr !important;
    column-gap: 42px !important;
  }
  .overlay-menu .menu-image-container {
    max-width: 330px !important;
    min-height: 480px !important;
  }
  .overlay-menu .menu-links {
    max-width: 640px !important;
    column-gap: 38px !important;
  }
  .overlay-menu .menu-links a {
    font-size: clamp(2rem, 3vw, 2.9rem) !important;
  }
}

@media (max-width: 991.98px) {
  .overlay-menu {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 88px 24px 40px !important;
  }
  .overlay-menu .menu-content-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    padding: 0 !important;
    display: block !important;
  }
  .overlay-menu .menu-image-col,
  .overlay-menu .menu-image-container {
    display: none !important;
  }
  .overlay-menu .menu-links-col {
    width: 100% !important;
    padding: 0 !important;
  }
  .overlay-menu .menu-links {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .overlay-menu .menu-links li {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: baseline !important;
    margin: 0 !important;
  }
  .overlay-menu .menu-links a {
    font-size: clamp(1.9rem, 10vw, 3.25rem) !important;
    line-height: 1.05 !important;
    white-space: normal !important;
  }
  .close-btn-box {
    width: 68px !important;
    height: 68px !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
  }
}



@media (min-width: 992px) {
  .custom-navbar .nav-left {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: auto !important;
    min-width: 152px !important;
    height: 54px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.08) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02) !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
  }
  .custom-navbar #openMenuBtn:hover,
  .custom-navbar .menu-btn-minimal:hover {
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(255,255,255,0.28) !important;
    transform: translateY(-1px) !important;
  }
  .custom-navbar #openMenuBtn svg,
  .custom-navbar .menu-btn-minimal svg {
    width: 24px !important;
    height: 16px !important;
    flex: 0 0 auto !important;
  }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ · EXPLORAR";
    display: inline-block !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.64rem !important;
    font-weight: 700 !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.98) !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    height: 54px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.07) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex img {
    height: 30px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 34px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    font-size: 0.66rem !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
  }
}
@media (max-width: 991.98px) {
  .custom-navbar .menu-btn-minimal {
    position: relative !important;
  }
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ";
    position: absolute !important;
    left: 50% !important;
    bottom: 6px !important;
    transform: translateX(-50%) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.42rem !important;
    letter-spacing: 1.6px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.88) !important;
    line-height: 1 !important;
    pointer-events: none !important;
  }
  .custom-navbar .menu-btn-minimal svg {
    transform: translateY(-6px) !important;
  }
}



/* Ajuste refinado del acceso al mega menú: sobrio, hotelero y sin estilo de botón comercial */
@media (min-width: 992px) {
  .custom-navbar .nav-left {
    width: auto !important;
    min-width: 150px !important;
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
  }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    height: 80px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    position: relative !important;
  }
  .custom-navbar #openMenuBtn::before,
  .custom-navbar .menu-btn-minimal::before {
    content: "" !important;
    position: absolute !important;
    right: -10px !important;
    top: 50% !important;
    width: 1px !important;
    height: 30px !important;
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.18) !important;
  }
  .custom-navbar #openMenuBtn svg,
  .custom-navbar .menu-btn-minimal svg {
    width: 25px !important;
    height: 15px !important;
    flex: 0 0 auto !important;
    transform: none !important;
    opacity: 0.98 !important;
  }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ" !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.47rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.8px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.82) !important;
    white-space: nowrap !important;
    pointer-events: none !important;
  }
  .custom-navbar #openMenuBtn:hover,
  .custom-navbar .menu-btn-minimal:hover {
    background: transparent !important;
    border: none !important;
    transform: none !important;
  }
  .custom-navbar #openMenuBtn:hover::after,
  .custom-navbar .menu-btn-minimal:hover::after {
    color: #ffffff !important;
  }
  .custom-navbar #openMenuBtn:hover svg path,
  .custom-navbar .menu-btn-minimal:hover svg path {
    stroke-width: 1.8 !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    height: 80px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex img {
    height: 31px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 0.64rem !important;
    letter-spacing: 1.7px !important;
    font-weight: 700 !important;
    opacity: 0.95 !important;
  }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"]::after {
    content: "" !important;
    display: inline-block !important;
    width: 4px !important;
    height: 4px !important;
    border-right: 1px solid rgba(255,255,255,0.75) !important;
    border-bottom: 1px solid rgba(255,255,255,0.75) !important;
    transform: rotate(45deg) translateY(-2px) !important;
    margin-left: 7px !important;
  }
}
@media (max-width: 991.98px) {
  .custom-navbar .menu-btn-minimal {
    position: relative !important;
    gap: 5px !important;
  }
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 6px !important;
    transform: translateX(-50%) !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.40rem !important;
    letter-spacing: 1.55px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.82) !important;
    line-height: 1 !important;
    pointer-events: none !important;
  }
  .custom-navbar .menu-btn-minimal svg {
    transform: translateY(-6px) !important;
    width: 25px !important;
    height: 15px !important;
  }
}



/* Restauración final de barra de navegación: botón menú, logo lateral e idioma */
.custom-navbar #openMenuBtn,
.custom-navbar .menu-btn-minimal {
  position: relative !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 4px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  transition: background 0.25s ease, border-color 0.25s ease !important;
}
.custom-navbar #openMenuBtn:hover,
.custom-navbar .menu-btn-minimal:hover {
  background: rgba(255,255,255,0.105) !important;
  border-color: rgba(255,255,255,0.19) !important;
}
.custom-navbar #openMenuBtn svg,
.custom-navbar .menu-btn-minimal svg {
  display: none !important;
}
.custom-navbar #openMenuBtn::before,
.custom-navbar .menu-btn-minimal::before {
  content: "" !important;
  display: block !important;
  width: 26px !important;
  height: 14px !important;
  flex: 0 0 auto !important;
  background:
    linear-gradient(#fff,#fff) top center / 26px 1.4px no-repeat,
    linear-gradient(#fff,#fff) bottom center / 26px 1.4px no-repeat !important;
  opacity: 0.96 !important;
  position: relative !important;
  inset: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.custom-navbar #openMenuBtn::after,
.custom-navbar .menu-btn-minimal::after {
  content: "MENÚ" !important;
  display: block !important;
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.43rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 1.7px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.84) !important;
  pointer-events: none !important;
}
@media (min-width: 992px) {
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    height: 58px !important;
    padding: 0 !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex {
    display: inline-flex !important;
    align-items: center !important;
    gap: 22px !important;
    margin-left: 18px !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex img {
    height: 38px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
  }
  .custom-navbar .nav-left .dropdown { margin-left: 4px !important; }
  .custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.9px !important;
    color: #fff !important;
  }
}
@media (max-width: 991.98px) {
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    margin-left: 7px !important;
  }
  .custom-navbar #openMenuBtn::before,
  .custom-navbar .menu-btn-minimal::before {
    width: 24px !important;
    height: 13px !important;
    background:
      linear-gradient(#fff,#fff) top center / 24px 1.35px no-repeat,
      linear-gradient(#fff,#fff) bottom center / 24px 1.35px no-repeat !important;
  }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    font-size: 0.40rem !important;
    letter-spacing: 1.55px !important;
  }
}



/* Ajuste definitivo: botón de menú discreto y consistente en todas las páginas */
.custom-navbar #openMenuBtn,
.custom-navbar .menu-btn-minimal {
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  position: relative !important;
  background: rgba(255,255,255,0.055) !important;
  border: 1px solid rgba(255,255,255,0.11) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  overflow: hidden !important;
}
.custom-navbar #openMenuBtn:hover,
.custom-navbar .menu-btn-minimal:hover {
  background: rgba(255,255,255,0.085) !important;
  border-color: rgba(255,255,255,0.17) !important;
  transform: none !important;
}
.custom-navbar #openMenuBtn svg,
.custom-navbar .menu-btn-minimal svg {
  display: none !important;
}
.custom-navbar #openMenuBtn::before,
.custom-navbar .menu-btn-minimal::before {
  content: "" !important;
  display: block !important;
  width: 24px !important;
  height: 13px !important;
  flex: 0 0 auto !important;
  background:
    linear-gradient(#fff,#fff) top center / 24px 1.25px no-repeat,
    linear-gradient(#fff,#fff) bottom center / 24px 1.25px no-repeat !important;
  opacity: 0.94 !important;
  position: relative !important;
  inset: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}
.custom-navbar #openMenuBtn::after,
.custom-navbar .menu-btn-minimal::after {
  content: "MENÚ" !important;
  display: block !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.39rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 1.45px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.82) !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}
.custom-navbar .nav-left {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  height: 100% !important;
}
.custom-navbar .nav-left > .d-none.d-lg-flex {
  gap: 24px !important;
  margin-left: 0 !important;
}
.custom-navbar .nav-left > .d-none.d-lg-flex img {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: brightness(0) invert(1) !important;
}
.custom-navbar .nav-left .dropdown {
  margin-left: 2px !important;
}
.custom-navbar .nav-left .dropdown > span[data-bs-toggle="dropdown"] {
  font-size: 0.68rem !important;
  letter-spacing: 1.9px !important;
  font-weight: 700 !important;
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    height: 50px !important;
    margin-left: 7px !important;
  }
  .custom-navbar .nav-left { gap: 0 !important; }
}



@media (max-width: 991.98px) {
  html, body { overflow-x: hidden !important; width: 100% !important; }
  body { padding-top: 0 !important; }

  /* NAVBAR MOBILE FINAL */
  .custom-navbar,
  .custom-navbar.scrolled,
  .custom-navbar.dark-mode {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 64px !important;
    min-height: 64px !important;
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) 104px !important;
    align-items: center !important;
    padding: 0 !important;
    background: rgba(5,5,5,0.98) !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.10) !important;
    z-index: 3000 !important;
    overflow: hidden !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
  }
  .custom-navbar .nav-left,
  .custom-navbar .nav-center,
  .custom-navbar .nav-right,
  .custom-navbar .mobile-reservar-btn {
    height: 64px !important;
    min-height: 64px !important;
  }
  .custom-navbar .nav-left {
    width: 64px !important;
    min-width: 64px !important;
    max-width: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    border-right: 1px solid rgba(255,255,255,0.10) !important;
  }
  .custom-navbar .nav-left > .d-none.d-lg-flex,
  .custom-navbar .nav-right,
  .custom-navbar .nav-right.d-none,
  .custom-navbar .nav-icon-stacked,
  .custom-navbar .nav-right-link {
    display: none !important;
  }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal {
    position: relative !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 8px 0 6px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    background: rgba(255,255,255,0.055) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 4px !important;
    transform: none !important;
    overflow: hidden !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
  }
  .custom-navbar #openMenuBtn::before,
  .custom-navbar .menu-btn-minimal::before { content: none !important; display: none !important; }
  .custom-navbar #openMenuBtn::after,
  .custom-navbar .menu-btn-minimal::after {
    content: "MENÚ" !important;
    position: static !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.44rem !important;
    line-height: 1 !important;
    letter-spacing: 1.45px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.92) !important;
    pointer-events: none !important;
  }
  .custom-navbar #openMenuBtn svg,
  .custom-navbar .menu-btn-minimal svg {
    width: 23px !important;
    height: 14px !important;
    margin: 0 !important;
    transform: none !important;
    display: block !important;
    flex: 0 0 auto !important;
  }
  .custom-navbar #openMenuBtn svg path,
  .custom-navbar .menu-btn-minimal svg path { stroke: #fff !important; stroke-width: 1.55 !important; }
  .custom-navbar .nav-center {
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    text-align: center !important;
  }
  .custom-navbar .nav-center > img.d-none.d-lg-block { display: none !important; }
  .custom-navbar .mobile-logo-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 34px !important;
    overflow: hidden !important;
  }
  .custom-navbar .mobile-logo-wrapper img {
    display: block !important;
    height: 66px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
  }
  .custom-navbar .mobile-reservar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 104px !important;
    min-width: 104px !important;
    max-width: 104px !important;
    padding: 0 10px !important;
    color: #fff !important;
    border-left: 1px solid rgba(255,255,255,0.10) !important;
    font-size: 0.54rem !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    cursor: pointer !important;
  }

  /* BOOKING FORM MOBILE FINAL */
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: stretch !important;
    padding: 12px 14px 14px !important;
    margin: 0 !important;
    background: rgba(249,247,242,0.98) !important;
    color: #111 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    z-index: 2990 !important;
    pointer-events: auto !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06) !important;
    transform: translateY(0) !important;
  }
  .top-booking-strip.booking-mobile-hidden {
    display: none !important;
  }
  .booking-field-new {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: initial !important;
  }
  .booking-field-new label,
  .top-booking-strip.scrolled .booking-field-new label,
  .top-booking-strip.transparent-strip .booking-field-new label {
    display: block !important;
    margin: 0 0 5px !important;
    color: #111 !important;
    font-size: 0.52rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
  }
  .field-box,
  input.field-box,
  select.field-box,
  .top-booking-strip.scrolled .field-box,
  .top-booking-strip.transparent-strip .field-box {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(0,0,0,0.06) !important;
    color: #111 !important;
    font-size: 0.88rem !important;
    line-height: 42px !important;
    box-shadow: none !important;
    outline: none !important;
  }
  select.field-box,
  .top-booking-strip.scrolled select.field-box,
  .top-booking-strip.transparent-strip select.field-box {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 20px !important;
  }
  .field-box::placeholder,
  .top-booking-strip.scrolled .field-box::placeholder { color: rgba(17,17,17,0.55) !important; }
  .btn-consultar-dark,
  .top-booking-strip.scrolled .btn-consultar-dark,
  .top-booking-strip.transparent-strip .btn-consultar-dark {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    background: #050505 !important;
    color: #fff !important;
    border: 1px solid #050505 !important;
    font-size: 0.62rem !important;
    letter-spacing: 1.8px !important;
    line-height: 1 !important;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .booking-field-new:has(.btn-consultar-dark) { grid-column: 1 / -1 !important; }
  .ocultar-toggle,
  #toggleBookingBtn {
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 2px 0 0 !important;
    height: 20px !important;
    color: #111 !important;
    font-size: 0.55rem !important;
    letter-spacing: 1.6px !important;
    line-height: 1 !important;
    text-align: center !important;
    cursor: pointer !important;
  }
  .ocultar-toggle i,
  #toggleBookingBtn i { font-size: 0.62rem !important; margin-left: 6px !important; }

  /* Store pages / pages without booking keep compact spacing */
  body.store-page .top-booking-strip,
  body.shop-page .top-booking-strip,
  .no-booking .top-booking-strip {
    display: none !important;
  }

  header.hero,
  header.ballet-hero,
  header.contact-hero,
  header.exp-hero,
  header.hero-fullscreen,
  header.gastro-hero,
  header.room-hero,
  header.services-hero,
  header.hero-shop,
  header.hero-ultra,
  .page-header {
    margin-top: 64px !important;
  }
  body:has(.top-booking-strip) header.hero,
  body:has(.top-booking-strip) header.ballet-hero,
  body:has(.top-booking-strip) header.contact-hero,
  body:has(.top-booking-strip) header.exp-hero,
  body:has(.top-booking-strip) header.hero-fullscreen,
  body:has(.top-booking-strip) header.gastro-hero,
  body:has(.top-booking-strip) header.room-hero,
  body:has(.top-booking-strip) header.services-hero,
  body:has(.top-booking-strip) header.hero-ultra,
  body:has(.top-booking-strip) .page-header {
    margin-top: 220px !important;
  }
}
@media (max-width: 420px) {
  .custom-navbar,
  .custom-navbar.scrolled,
  .custom-navbar.dark-mode { grid-template-columns: 60px minmax(0, 1fr) 92px !important; height: 62px !important; min-height: 62px !important; }
  .custom-navbar .nav-left { width: 60px !important; min-width: 60px !important; max-width: 60px !important; height: 62px !important; min-height: 62px !important; }
  .custom-navbar #openMenuBtn,
  .custom-navbar .menu-btn-minimal { width: 46px !important; min-width: 46px !important; height: 46px !important; }
  .custom-navbar .mobile-reservar-btn { width: 92px !important; min-width: 92px !important; max-width: 92px !important; height: 62px !important; min-height: 62px !important; font-size: 0.50rem !important; letter-spacing: 1px !important; }
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip { top: 62px !important; padding: 10px 12px 12px !important; gap: 9px !important; }
  .field-box,
  input.field-box,
  select.field-box { height: 40px !important; min-height: 40px !important; font-size: 0.82rem !important; }
  .btn-consultar-dark { height: 40px !important; min-height: 40px !important; font-size: 0.58rem !important; }
}



/* === FOOTER MÓVIL FINAL === */
@media (max-width: 767.98px) {
  html, body { overflow-x: hidden !important; }

  html body footer.luxury-footer,
  html body .luxury-footer {
    width: 100% !important;
    max-width: 100% !important;
    padding: 58px 0 26px !important;
    margin: 0 !important;
    background: #050505 !important;
    color: #fff !important;
    overflow: hidden !important;
  }

  html body .luxury-footer .footer-logo-section {
    width: 100% !important;
    margin: 0 0 42px !important;
    padding: 0 22px !important;
    text-align: center !important;
  }

  html body .luxury-footer .footer-logo-section img {
    height: 62px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    display: inline-block !important;
    margin: 0 auto !important;
    filter: brightness(0) invert(1) !important;
  }

  html body .luxury-footer .footer-main-row,
  html body .luxury-footer .row.footer-main-row {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 24px !important;
  }

  html body .luxury-footer .footer-col,
  html body .luxury-footer [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 0 38px !important;
    text-align: left !important;
  }

  html body .luxury-footer .footer-col:last-child,
  html body .luxury-footer [class*="col-"]:last-child {
    margin-bottom: 26px !important;
  }

  html body .luxury-footer .footer-heading {
    font-size: 1.72rem !important;
    line-height: 1.15 !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
    color: #fff !important;
    text-align: left !important;
  }

  html body .luxury-footer .contact-desc {
    font-size: 0.82rem !important;
    line-height: 1.75 !important;
    color: rgba(255,255,255,0.68) !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  html body .luxury-footer .contact-details,
  html body .luxury-footer .contact-details p {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .luxury-footer .contact-details p {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 0.78rem !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.72) !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
  }

  html body .luxury-footer .contact-details i {
    width: 18px !important;
    min-width: 18px !important;
    margin: 3px 0 0 !important;
    color: rgba(255,255,255,0.95) !important;
    text-align: center !important;
  }

  html body .luxury-footer .footer-links {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body .luxury-footer .footer-links li {
    margin: 0 !important;
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.09) !important;
  }

  html body .luxury-footer .footer-links li:first-child {
    border-top: 1px solid rgba(255,255,255,0.09) !important;
  }

  html body .luxury-footer .footer-links li a {
    display: block !important;
    width: 100% !important;
    font-size: 0.66rem !important;
    line-height: 1.35 !important;
    letter-spacing: 2.1px !important;
    color: rgba(255,255,255,0.92) !important;
    opacity: 1 !important;
  }

  html body .luxury-footer .footer-divider {
    width: calc(100% - 48px) !important;
    max-width: calc(100% - 48px) !important;
    margin: 8px auto 24px !important;
    background: rgba(255,255,255,0.12) !important;
  }

  html body .luxury-footer .footer-bottom-row {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 24px !important;
  }

  html body .luxury-footer .footer-socials {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 2px !important;
    margin: 0 !important;
  }

  html body .luxury-footer .footer-socials a {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: #fff !important;
    font-size: 0.98rem !important;
  }

  html body .luxury-footer .dropup {
    width: 100% !important;
  }

  html body .luxury-footer .footer-lang {
    width: 100% !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 14px !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    font-size: 0.66rem !important;
    letter-spacing: 2px !important;
    color: #fff !important;
  }

  html body .luxury-footer .footer-copyright {
    width: 100% !important;
    max-width: 100% !important;
    margin: 30px 0 0 !important;
    padding: 0 24px !important;
    text-align: left !important;
    font-size: 0.58rem !important;
    line-height: 1.7 !important;
    letter-spacing: 0.8px !important;
    color: rgba(255,255,255,0.42) !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  html body footer.luxury-footer,
  html body .luxury-footer {
    padding: 76px 0 30px !important;
  }

  html body .luxury-footer .footer-logo-section {
    margin-bottom: 58px !important;
  }

  html body .luxury-footer .footer-logo-section img {
    height: 82px !important;
    max-width: 190px !important;
  }

  html body .luxury-footer .footer-main-row,
  html body .luxury-footer .row.footer-main-row {
    padding: 0 44px !important;
    gap: 0 !important;
  }

  html body .luxury-footer .footer-col,
  html body .luxury-footer [class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 36px !important;
    padding: 0 !important;
  }

  html body .luxury-footer .footer-bottom-row {
    padding: 0 44px !important;
    gap: 24px !important;
  }

  html body .luxury-footer .footer-divider {
    width: calc(100% - 88px) !important;
    max-width: calc(100% - 88px) !important;
  }
}



@media (max-width: 991.98px) {
  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
  }

  .overlay-menu {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    z-index: 3000 !important;
    background: #F9F7F2 !important;
    color: #111111 !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 !important;
    transition: opacity .38s ease, visibility .38s ease !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .overlay-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .close-btn-box {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 68px !important;
    height: 68px !important;
    min-width: 68px !important;
    min-height: 68px !important;
    background: rgba(249,247,242,.96) !important;
    border-right: 1px solid rgba(0,0,0,.08) !important;
    border-bottom: 1px solid rgba(0,0,0,.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3100 !important;
    margin: 0 !important;
  }

  .close-btn-box svg,
  .close-icon-svg {
    width: 24px !important;
    height: 24px !important;
    stroke: #111111 !important;
    stroke-width: 1.4 !important;
  }

  .menu-content-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: calc(100dvh - 68px) !important;
    margin: 0 !important;
    padding: 34px 24px 44px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    overflow: visible !important;
  }

  .menu-image-col,
  .menu-image-container,
  .overlay-menu .menu-image-col,
  .overlay-menu .menu-image-container {
    display: none !important;
  }

  .menu-links-col,
  .overlay-menu .menu-links-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    text-align: left !important;
  }

  .menu-links,
  .overlay-menu .menu-links {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .menu-links li,
  .overlay-menu .menu-links li {
    width: 100% !important;
    min-height: 56px !important;
    margin: 0 !important;
    padding: 14px 0 !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    align-items: baseline !important;
    border-bottom: 1px solid rgba(0,0,0,.075) !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-num,
  .overlay-menu .menu-num {
    grid-column: 1 !important;
    width: 42px !important;
    min-width: 42px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: .62rem !important;
    line-height: 1 !important;
    letter-spacing: 1.5px !important;
    color: #BFA37C !important;
    opacity: 1 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .menu-links a,
  .overlay-menu .menu-links a {
    grid-column: 2 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.05rem, 9vw, 3.05rem) !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
    color: #333333 !important;
    text-decoration: none !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .menu-links a:hover,
  .overlay-menu .menu-links a:hover {
    color: #000000 !important;
    transform: none !important;
  }
}

@media (max-width: 420px) {
  .menu-content-wrapper {
    padding: 28px 18px 38px !important;
  }

  .menu-links li,
  .overlay-menu .menu-links li {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    column-gap: 8px !important;
    min-height: 52px !important;
    padding: 12px 0 !important;
  }

  .menu-num,
  .overlay-menu .menu-num {
    width: 36px !important;
    min-width: 36px !important;
    font-size: .56rem !important;
  }

  .menu-links a,
  .overlay-menu .menu-links a {
    font-size: clamp(1.8rem, 9.5vw, 2.55rem) !important;
  }
}



@media (max-width: 991.98px) {
  html, body { overflow-x: hidden !important; }
  .top-booking-strip#bookingStrip,
  #bookingStrip.top-booking-strip,
  #bookingStrip.top-booking-strip.d-none,
  #bookingStrip.top-booking-strip.d-lg-flex {
    position: fixed !important;
    top: 66px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 12px 14px 14px !important;
    background: rgba(248,247,244,0.98) !important;
    border-top: 1px solid rgba(0,0,0,0.04) !important;
    border-bottom: 1px solid rgba(0,0,0,0.10) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.10) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    z-index: 998 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }
  #bookingStrip .booking-fields-wrapper,
  #bookingStrip #bookingFields {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: end !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #bookingStrip .booking-field-new {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: none !important;
  }
  #bookingStrip .booking-field-new:first-child {
    grid-column: 1 / -1 !important;
  }
  #bookingStrip .booking-field-new:last-child {
    grid-column: 1 / -1 !important;
  }
  #bookingStrip .booking-field-new label,
  #bookingStrip.top-booking-strip.scrolled .booking-field-new label,
  #bookingStrip.top-booking-strip.transparent-strip .booking-field-new label {
    display: block !important;
    margin: 0 0 6px !important;
    color: #111 !important;
    font-size: 0.58rem !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: 1.9px !important;
    text-transform: uppercase !important;
    text-shadow: none !important;
  }
  #bookingStrip .field-box,
  #bookingStrip input.field-box,
  #bookingStrip select.field-box,
  #bookingStrip.top-booking-strip.scrolled .field-box,
  #bookingStrip.top-booking-strip.transparent-strip .field-box {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    display: block !important;
    padding: 0 14px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 0 !important;
    background-color: rgba(0,0,0,0.055) !important;
    color: #111 !important;
    font-size: 0.86rem !important;
    line-height: 46px !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
    outline: none !important;
  }
  #bookingStrip select.field-box {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 34px !important;
  }
  #bookingStrip .field-box::placeholder,
  #bookingStrip.top-booking-strip.scrolled .field-box::placeholder {
    color: rgba(17,17,17,0.48) !important;
    opacity: 1 !important;
  }
  #bookingStrip .btn-consultar-dark,
  #bookingStrip.top-booking-strip.scrolled .btn-consultar-dark {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #050505 !important;
    color: #fff !important;
    border: 1px solid #050505 !important;
    border-radius: 0 !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 2.2px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
  }
  #bookingStrip .ocultar-toggle,
  #bookingStrip #toggleBookingBtn {
    position: absolute !important;
    top: -34px !important;
    right: 12px !important;
    height: 28px !important;
    padding: 0 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: rgba(5,5,5,0.86) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 0 !important;
    font-size: 0.54rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    z-index: 1002 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }
  #bookingStrip #toggleBookingIcon { font-size: 0.62rem !important; margin-left: 2px !important; }
  #bookingStrip.booking-mobile-collapsed {
    padding: 0 !important;
    min-height: 0 !important;
    height: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  #bookingStrip.booking-mobile-collapsed .booking-fields-wrapper,
  #bookingStrip.booking-mobile-collapsed #bookingFields {
    display: none !important;
  }
  body.has-mobile-booking { padding-top: 222px !important; }
  body.has-mobile-booking.booking-mobile-is-collapsed { padding-top: 66px !important; }
  body.has-mobile-booking .page-header,
  body.has-mobile-booking header.hero,
  body.has-mobile-booking .hero,
  body.has-mobile-booking .ballet-hero,
  body.has-mobile-booking .contact-hero,
  body.has-mobile-booking .exp-hero,
  body.has-mobile-booking .gastro-hero,
  body.has-mobile-booking .services-hero,
  body.has-mobile-booking .hero-ultra,
  body.has-mobile-booking .room-hero {
    margin-top: 0 !important;
  }
}
@media (max-width: 480px) {
  #bookingStrip.top-booking-strip,
  #bookingStrip.top-booking-strip.d-none,
  #bookingStrip.top-booking-strip.d-lg-flex {
    top: 62px !important;
    padding: 10px 12px 12px !important;
  }
  #bookingStrip .booking-fields-wrapper,
  #bookingStrip #bookingFields {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }
  #bookingStrip .booking-field-new,
  #bookingStrip .booking-field-new:first-child,
  #bookingStrip .booking-field-new:last-child {
    grid-column: 1 / -1 !important;
  }
  #bookingStrip .field-box,
  #bookingStrip input.field-box,
  #bookingStrip select.field-box {
    height: 44px !important;
    min-height: 44px !important;
    line-height: 44px !important;
    font-size: 0.82rem !important;
  }
  #bookingStrip .btn-consultar-dark { height: 46px !important; min-height: 46px !important; }
  #bookingStrip .ocultar-toggle,
  #bookingStrip #toggleBookingBtn { top: -31px !important; right: 10px !important; height: 26px !important; }
  body.has-mobile-booking { padding-top: 346px !important; }
  body.has-mobile-booking.booking-mobile-is-collapsed { padding-top: 62px !important; }
}
@media (min-width: 992px) {
  body.has-mobile-booking { padding-top: 0 !important; }
}



@media (min-width: 992px) {
  .booking-mobile-close-btn { display: none !important; }
}
@media (max-width: 991.98px) {
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip {
    position: fixed !important;
    padding-top: 42px !important;
  }
  .booking-mobile-close-btn {
    position: absolute !important;
    top: 10px !important;
    right: 12px !important;
    width: auto !important;
    height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 0 2px !important;
    background: transparent !important;
    border: none !important;
    color: #111 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 0.56rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.7px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    z-index: 5 !important;
  }
  .booking-mobile-close-btn i {
    width: 22px !important;
    height: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.78rem !important;
    border: 1px solid rgba(0,0,0,0.18) !important;
    border-radius: 50% !important;
  }
  .booking-fields-wrapper {
    grid-column: 1 / -1 !important;
    width: 100% !important;
  }
}
@media (max-width: 420px) {
  .top-booking-strip,
  .top-booking-strip.d-none,
  .top-booking-strip.d-lg-flex,
  .top-booking-strip.scrolled,
  .top-booking-strip.transparent-strip {
    padding-top: 40px !important;
  }
  .booking-mobile-close-btn { top: 9px !important; right: 10px !important; }
}



@media (max-width: 991.98px) {
  #bookingStrip.booking-mobile-force-hidden,
  #bookingStrip.booking-mobile-force-hidden.d-none,
  #bookingStrip.booking-mobile-force-hidden.d-lg-flex,
  #bookingStrip.booking-mobile-force-hidden.scrolled,
  #bookingStrip.booking-mobile-force-hidden.transparent-strip {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .booking-mobile-close-btn {
    pointer-events: auto !important;
    z-index: 9999 !important;
  }
}



@media (max-width: 991.98px) {
  body.booking-mobile-force-gap-closed {
    padding-top: 62px !important;
  }
  body.booking-mobile-force-gap-closed #bookingStrip,
  body.booking-mobile-force-gap-closed .top-booking-strip#bookingStrip {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  body.booking-mobile-force-gap-closed header,
  body.booking-mobile-force-gap-closed .hero,
  body.booking-mobile-force-gap-closed .page-header,
  body.booking-mobile-force-gap-closed .ballet-hero,
  body.booking-mobile-force-gap-closed .contact-hero,
  body.booking-mobile-force-gap-closed .exp-hero,
  body.booking-mobile-force-gap-closed .gastro-hero,
  body.booking-mobile-force-gap-closed .services-hero,
  body.booking-mobile-force-gap-closed .hero-ultra,
  body.booking-mobile-force-gap-closed .room-hero {
    margin-top: 0 !important;
  }
}



@media (max-width: 991.98px) {
  html.booking-mobile-closed,
  body.booking-mobile-closed {
    padding-top: 0 !important;
    margin-top: 0 !important;
    overflow-x: hidden !important;
  }

  html.booking-mobile-closed #bookingStrip,
  body.booking-mobile-closed #bookingStrip,
  html.booking-mobile-closed .top-booking-strip,
  body.booking-mobile-closed .top-booking-strip,
  html.booking-mobile-closed .top-booking-strip.d-none,
  body.booking-mobile-closed .top-booking-strip.d-none,
  html.booking-mobile-closed .top-booking-strip.d-lg-flex,
  body.booking-mobile-closed .top-booking-strip.d-lg-flex,
  html.booking-mobile-closed .top-booking-strip.scrolled,
  body.booking-mobile-closed .top-booking-strip.scrolled,
  html.booking-mobile-closed .top-booking-strip.transparent-strip,
  body.booking-mobile-closed .top-booking-strip.transparent-strip {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    transform: translateY(-120%) !important;
  }

  html.booking-mobile-closed header,
  body.booking-mobile-closed header,
  html.booking-mobile-closed main,
  body.booking-mobile-closed main,
  html.booking-mobile-closed .page-header,
  body.booking-mobile-closed .page-header,
  html.booking-mobile-closed header.hero,
  body.booking-mobile-closed header.hero,
  html.booking-mobile-closed .hero,
  body.booking-mobile-closed .hero,
  html.booking-mobile-closed .ballet-hero,
  body.booking-mobile-closed .ballet-hero,
  html.booking-mobile-closed .contact-hero,
  body.booking-mobile-closed .contact-hero,
  html.booking-mobile-closed .exp-hero,
  body.booking-mobile-closed .exp-hero,
  html.booking-mobile-closed .gastro-hero,
  body.booking-mobile-closed .gastro-hero,
  html.booking-mobile-closed .services-hero,
  body.booking-mobile-closed .services-hero,
  html.booking-mobile-closed .hero-ultra,
  body.booking-mobile-closed .hero-ultra,
  html.booking-mobile-closed .room-hero,
  body.booking-mobile-closed .room-hero {
    margin-top: 0 !important;
    transform: none !important;
  }

  html.booking-mobile-closed header.hero,
  body.booking-mobile-closed header.hero,
  html.booking-mobile-closed .hero,
  body.booking-mobile-closed .hero,
  html.booking-mobile-closed .page-header,
  body.booking-mobile-closed .page-header,
  html.booking-mobile-closed .ballet-hero,
  body.booking-mobile-closed .ballet-hero,
  html.booking-mobile-closed .contact-hero,
  body.booking-mobile-closed .contact-hero,
  html.booking-mobile-closed .exp-hero,
  body.booking-mobile-closed .exp-hero,
  html.booking-mobile-closed .gastro-hero,
  body.booking-mobile-closed .gastro-hero,
  html.booking-mobile-closed .services-hero,
  body.booking-mobile-closed .services-hero,
  html.booking-mobile-closed .hero-ultra,
  body.booking-mobile-closed .hero-ultra,
  html.booking-mobile-closed .room-hero,
  body.booking-mobile-closed .room-hero {
    padding-top: 62px !important;
  }
}



@media (max-width: 991.98px) {
  html.booking-mobile-closed,
  body.booking-mobile-closed,
  body.booking-mobile-closed.has-mobile-booking,
  body.booking-mobile-closed.booking-mobile-is-collapsed,
  body.booking-mobile-closed.booking-mobile-force-gap-closed {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  body.booking-mobile-closed #bookingStrip,
  body.booking-mobile-closed .top-booking-strip#bookingStrip,
  body.booking-mobile-closed .top-booking-strip,
  body.booking-mobile-closed .top-booking-strip.d-none,
  body.booking-mobile-closed .top-booking-strip.d-lg-flex,
  body.booking-mobile-closed .top-booking-strip.scrolled,
  body.booking-mobile-closed .top-booking-strip.transparent-strip,
  html.booking-mobile-closed body #bookingStrip,
  html.booking-mobile-closed body .top-booking-strip {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    overflow: hidden !important;
    transform: none !important;
  }

  body.booking-mobile-closed:has(#bookingStrip) header,
  body.booking-mobile-closed:has(#bookingStrip) header.hero,
  body.booking-mobile-closed:has(#bookingStrip) .hero,
  body.booking-mobile-closed:has(#bookingStrip) .page-header,
  body.booking-mobile-closed:has(#bookingStrip) .ballet-hero,
  body.booking-mobile-closed:has(#bookingStrip) .contact-hero,
  body.booking-mobile-closed:has(#bookingStrip) .exp-hero,
  body.booking-mobile-closed:has(#bookingStrip) .gastro-hero,
  body.booking-mobile-closed:has(#bookingStrip) .services-hero,
  body.booking-mobile-closed:has(#bookingStrip) .hero-ultra,
  body.booking-mobile-closed:has(#bookingStrip) .room-hero,
  html.booking-mobile-closed body header,
  html.booking-mobile-closed body header.hero,
  html.booking-mobile-closed body .hero,
  html.booking-mobile-closed body .page-header,
  html.booking-mobile-closed body .ballet-hero,
  html.booking-mobile-closed body .contact-hero,
  html.booking-mobile-closed body .exp-hero,
  html.booking-mobile-closed body .gastro-hero,
  html.booking-mobile-closed body .services-hero,
  html.booking-mobile-closed body .hero-ultra,
  html.booking-mobile-closed body .room-hero {
    margin-top: 0 !important;
  }
}


/* V42 - Mega menu fixed local image fallback */
.overlay-menu .menu-image-container {
  background: #e6e2dc url('../static/menu-fixed.jpg') center center / cover no-repeat !important;
}
.overlay-menu .menu-image-container img#menuImage {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  opacity: 1 !important;
  color: transparent !important;
  font-size: 0 !important;
}

/* V86: tamaño normal del logo principal centrado en la barra de navegación */
@media (min-width: 992px) {
  .custom-navbar .nav-center,
  nav.custom-navbar .nav-center {
    max-width: 340px !important;
    width: auto !important;
    overflow: visible !important;
  }
  .custom-navbar .nav-center > a.nav-logo-home-link,
  nav.custom-navbar .nav-center > a.nav-logo-home-link {
    max-width: 340px !important;
    width: auto !important;
    height: 80px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .custom-navbar .nav-center > a.nav-logo-home-link img,
  nav.custom-navbar .nav-center > a.nav-logo-home-link img {
    width: auto !important;
    max-width: 320px !important;
    height: auto !important;
    max-height: 34px !important;
    object-fit: contain !important;
    display: block !important;
  }
  .custom-navbar.scrolled .nav-center > a.nav-logo-home-link,
  nav.custom-navbar.scrolled .nav-center > a.nav-logo-home-link {
    height: 64px !important;
  }
  .custom-navbar.scrolled .nav-center > a.nav-logo-home-link img,
  nav.custom-navbar.scrolled .nav-center > a.nav-logo-home-link img {
    max-width: 280px !important;
    max-height: 28px !important;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .custom-navbar .nav-center,
  nav.custom-navbar .nav-center,
  .custom-navbar .nav-center > a.nav-logo-home-link,
  nav.custom-navbar .nav-center > a.nav-logo-home-link {
    max-width: 280px !important;
  }
  .custom-navbar .nav-center > a.nav-logo-home-link img,
  nav.custom-navbar .nav-center > a.nav-logo-home-link img {
    max-width: 260px !important;
    max-height: 30px !important;
  }
}


/* V157 - Mejora sutil de secciones Ballet sin cambios drásticos */
.ballet-hero::after {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.76) 0%, rgba(0,0,0,.18) 30%, rgba(0,0,0,.22) 70%, rgba(0,0,0,.82) 100%),
    radial-gradient(circle at 50% 45%, rgba(191,163,124,.14) 0%, rgba(191,163,124,0) 42%);
}
.ballet-hero-content h1 {
  font-size: clamp(4rem, 7vw, 6.4rem);
  letter-spacing: -.045em;
  margin-bottom: 16px;
}
.ballet-hero-content p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.ballet-intro {
  position: relative;
  padding: 130px 5% 118px;
  background: linear-gradient(180deg, #f8f2f2 0%, #fbf7f4 100%);
}
.ballet-intro::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 64px;
  width: 86px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(191,163,124,0) 0%, rgba(191,163,124,.95) 50%, rgba(191,163,124,0) 100%);
}
.ballet-intro .quote-icon {
  opacity: .35 !important;
  margin-bottom: 14px !important;
}
.ballet-intro h2 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  color: #1d181a;
  letter-spacing: -.035em;
}
.intro-divider {
  height: 76px;
  margin: 40px auto;
  opacity: .55;
}
.intro-body-text {
  line-height: 1.92 !important;
  color: #63585a !important;
}

.program-section {
  background: #fff;
  padding: 20px 0 0;
}
.program-row {
  min-height: 760px;
  margin-bottom: 22px;
  border-bottom: 0;
  box-shadow: 0 18px 48px rgba(16,8,10,.035);
}
.program-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}
.program-text-col {
  background: linear-gradient(180deg, #fbf7f4 0%, #f7f0eb 100%);
  border: 1px solid rgba(191,163,124,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68);
}
.program-row:nth-child(even) .program-text-col {
  background: linear-gradient(180deg, #fff 0%, #faf6f2 100%);
}
.program-text-col::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(191,163,124,.10);
  pointer-events: none;
}
.program-num {
  color: rgba(191,163,124,.32) !important;
  opacity: .75 !important;
}
.program-title {
  font-size: clamp(2.5rem, 4vw, 3.7rem) !important;
  line-height: 1.08 !important;
  color: #1c1719;
}
.program-desc {
  color: #62575a !important;
  line-height: 1.9 !important;
}
.program-text-col a.fw-bold {
  position: relative;
  padding-bottom: 7px;
}
.program-text-col a.fw-bold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #bfa37c;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .32s ease;
}
.program-text-col a.fw-bold:hover::after { transform: scaleX(1); }

.levels-section {
  position: relative;
  padding: 135px 5% 145px;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f2 100%);
}
.levels-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(191,163,124,0) 0%, rgba(191,163,124,.48) 50%, rgba(191,163,124,0) 100%);
}
.levels-section h2 {
  font-size: clamp(2.7rem, 4.5vw, 4rem) !important;
  line-height: 1.04;
  color: #1c1719;
}
.level-card {
  padding: 38px 28px;
  border-top: 1px solid rgba(191,163,124,.18);
  background: rgba(255,255,255,.58);
  transition: transform .34s ease, background .34s ease, box-shadow .34s ease;
}
.level-card:last-child { border-bottom: 1px solid rgba(191,163,124,.18); }
.level-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(16,8,10,.045);
}
.level-meta { color: #b1916c; letter-spacing: 2.5px; }
.level-info h4 {
  font-size: clamp(1.75rem, 2.7vw, 2.35rem) !important;
  color: #1d181a;
}
.level-desc { color: #615659; }
.level-action {
  color: #9c7b56;
  white-space: nowrap;
}

.cta-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  background-attachment: fixed;
}
.cta-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.54) 100%);
}
.cta-content h2 {
  font-size: clamp(3rem, 5.5vw, 5rem) !important;
  line-height: 1.04;
}
.cta-content p {
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}
.btn-cta-gold {
  background: rgba(191,163,124,.96);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.btn-cta-gold:hover {
  background: #fff;
  color: #111;
}

@media (max-width: 992px) {
  .ballet-intro {
    padding: 76px 22px 68px !important;
  }
  .ballet-intro::before {
    top: 36px;
    width: 62px;
  }
  .intro-divider {
    height: 54px;
    margin: 28px auto;
  }
  .program-section { padding-top: 0; }
  .program-row,
  .program-row[style] {
    flex-direction: column !important;
    min-height: 0 !important;
    margin-bottom: 18px;
  }
  .program-img-col { height: 330px !important; min-height: 330px !important; }
  .program-text-col {
    padding: 46px 24px !important;
  }
  .program-text-col::before { inset: 10px; }
  .program-title { font-size: clamp(2rem, 8vw, 2.75rem) !important; }
  .levels-section { padding: 78px 20px 86px !important; }
  .levels-section h2 { margin-bottom: 42px !important; }
  .level-card {
    padding: 28px 18px !important;
    display: block !important;
  }
  .level-card:hover { transform: none; }
  .level-action { margin-top: 18px; display: inline-flex; }
  .cta-section { min-height: 500px; padding: 86px 20px !important; background-attachment: scroll; }
}


/* V183 - Botones Ballet a WhatsApp */
a.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}


/* =========================================================================
   MODAL DE RESERVA — Escuela de Ballet Andorra Park (.brm-*)
   ========================================================================= */
.brm-overlay {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(28, 24, 20, 0.55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.brm-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.brm-overlay * { box-sizing: border-box; cursor: auto; }

.brm-dialog {
  position: relative;
  width: 100%; max-width: 620px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #f7f4ee;
  border: 1px solid rgba(176, 154, 122, 0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.30), 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 2px;
  padding: 46px 48px 38px;
  transform: translateY(24px) scale(0.985);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
  font-family: 'Lato', sans-serif;
}
.brm-overlay.is-open .brm-dialog { transform: translateY(0) scale(1); opacity: 1; }

.brm-close {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; padding: 0;
  color: #1a1a1a;
}
.brm-close svg { stroke: currentColor; stroke-width: 1.6; transition: transform 0.4s ease, color 0.3s ease; }
.brm-close:hover svg { color: #8b7355; transform: rotate(90deg); }

/* --- Cabecera + stepper --- */
.brm-head { text-align: center; margin-bottom: 30px; }
.brm-kicker {
  display: block; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: #b09a7a; margin-bottom: 10px;
}
.brm-title {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: 2.3rem; color: #1a1a1a; margin: 0 0 26px; line-height: 1.15;
}
.brm-steps { display: flex; align-items: center; justify-content: center; gap: 0; }
.brm-step-dot { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.brm-step-dot i {
  font-style: normal; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  border: 1px solid rgba(139,115,85,0.45); color: #b09a7a; background: transparent;
  transition: all 0.35s ease;
}
.brm-step-dot small { font-size: 0.55rem; letter-spacing: 1.5px; text-transform: uppercase; color: #b6ada0; transition: color 0.35s ease; }
.brm-step-dot.is-active i, .brm-step-dot.is-done i { background: #8b7355; border-color: #8b7355; color: #fff; }
.brm-step-dot.is-active small, .brm-step-dot.is-done small { color: #8b7355; }
.brm-step-line { width: 46px; height: 1px; background: rgba(139,115,85,0.3); margin: 0 6px 18px; }

/* --- Paneles --- */
.brm-panel { display: none; animation: brmFade 0.45s ease both; }
.brm-panel.is-active { display: block; }
@keyframes brmFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.brm-lead {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #1a1a1a;
  text-align: center; margin: 0 0 24px; font-weight: 400;
}

/* --- Paso 1: tarjetas de clase --- */
.brm-classes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.brm-class-card {
  display: flex; align-items: center; gap: 12px; text-align: left;
  padding: 15px 16px; background: #fff;
  border: 1px solid rgba(176,154,122,0.30); border-radius: 2px;
  cursor: pointer; transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: 'Lato', sans-serif;
}
.brm-class-card:hover { border-color: #b09a7a; box-shadow: 0 6px 18px rgba(139,115,85,0.10); }
.brm-class-check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid rgba(139,115,85,0.5); position: relative; transition: all 0.25s ease;
}
.brm-class-name { font-size: 0.88rem; color: #3a352e; line-height: 1.3; }
.brm-class-card[aria-checked="true"] { border-color: #8b7355; background: #fbf9f4; box-shadow: 0 6px 18px rgba(139,115,85,0.14); }
.brm-class-card[aria-checked="true"] .brm-class-check { background: #8b7355; border-color: #8b7355; }
.brm-class-card[aria-checked="true"] .brm-class-check::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg);
}
.brm-class-card[aria-checked="true"] .brm-class-name { color: #1a1a1a; font-weight: 700; }

/* --- Paso 2: franjas horarias --- */
.brm-field-label {
  display: block; font-size: 0.66rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #8a8073; margin: 22px 0 10px;
}
.brm-field-label em { font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; color: #b6ada0; }
.brm-panel[data-panel="2"] .brm-lead { margin-bottom: 6px; }
.brm-slot-class {
  text-align: center; font-size: 0.82rem; color: #8b7355; font-weight: 700;
  letter-spacing: 0.3px; margin: 0 0 18px;
}
.brm-slot-class:empty { display: none; }
.brm-panel[data-panel="2"] .brm-field-label[data-brm-slots-label] { margin-top: 0; }

.brm-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 10px; }
.brm-slot {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  padding: 12px 14px; background: #fff;
  border: 1px solid rgba(176,154,122,0.30); border-radius: 2px;
  cursor: pointer; transition: all 0.22s ease; font-family: 'Lato', sans-serif; text-align: left;
}
.brm-slot:hover { border-color: #b09a7a; box-shadow: 0 6px 16px rgba(139,115,85,0.10); }
.brm-slot-day { font-size: 0.82rem; font-weight: 700; color: #1a1a1a; }
.brm-slot-time { font-size: 0.74rem; color: #8a8073; letter-spacing: 0.3px; }
.brm-slot-note {
  margin-top: 4px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.6px;
  text-transform: uppercase; color: #b09a7a;
}
.brm-slot.is-selected { background: #8b7355; border-color: #8b7355; }
.brm-slot.is-selected .brm-slot-day { color: #fff; }
.brm-slot.is-selected .brm-slot-time { color: rgba(255,255,255,0.85); }
.brm-slot.is-selected .brm-slot-note { color: rgba(255,255,255,0.9); }

.brm-slots-empty {
  margin: 4px 0 0; padding: 14px 16px; background: #efe9df;
  border-left: 3px solid #b09a7a; border-radius: 2px;
  font-size: 0.84rem; color: #5a5246; line-height: 1.6;
}

/* --- Campos de formulario --- */
.brm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.brm-field { display: block; }
.brm-field-full { grid-column: 1 / -1; }
.brm-input {
  width: 100%; padding: 12px 14px; background: #fff;
  border: 1px solid rgba(176,154,122,0.35); border-radius: 2px;
  font-size: 0.92rem; color: #1a1a1a; font-family: 'Lato', sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.brm-input:focus { outline: none; border-color: #8b7355; box-shadow: 0 0 0 3px rgba(139,115,85,0.12); }
textarea.brm-input { resize: vertical; min-height: 76px; }

.brm-summary {
  margin-top: 22px; padding: 16px 18px; background: #efe9df;
  border-left: 3px solid #b09a7a; border-radius: 2px;
  font-size: 0.82rem; color: #5a5246; line-height: 1.6;
}
.brm-summary strong { color: #1a1a1a; }

/* --- Caja "nivel seleccionado" (modal de Niveles y Grupos) --- */
.brm-level-box {
  padding: 18px 20px; background: #fbf9f4;
  border: 1px solid rgba(139,115,85,0.25); border-left: 3px solid #8b7355; border-radius: 2px;
}
.brm-level-label {
  display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #b09a7a; margin-bottom: 8px;
}
.brm-level-name {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1a1a1a;
  margin: 0 0 6px; line-height: 1.2;
}
.brm-level-detail { margin: 0; font-size: 0.86rem; color: #5a5246; line-height: 1.6; }
.brm-level-detail:empty { display: none; }

/* --- Mensaje de error --- */
.brm-error {
  margin: 18px 0 0; padding: 12px 16px;
  background: #f7e9e6; border: 1px solid #e0b4ab; border-radius: 2px;
  color: #9a3b2a; font-size: 0.82rem;
}

/* --- Acciones --- */
.brm-actions { display: flex; gap: 12px; margin-top: 30px; }
.brm-btn {
  flex: 1; padding: 15px 24px; border: none; border-radius: 2px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease; font-family: 'Lato', sans-serif;
}
.brm-btn-primary { background: #8b7355; color: #fff; }
.brm-btn-primary:hover:not(:disabled) { background: #1a1a1a; }
.brm-btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }
.brm-btn-ghost { flex: 0 0 auto; background: transparent; color: #8b7355; border: 1px solid rgba(139,115,85,0.4); }
.brm-btn-ghost:hover { background: rgba(139,115,85,0.08); }
.brm-btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.brm-btn.is-loading::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
  border-radius: 50%; animation: brmSpin 0.7s linear infinite;
}
@keyframes brmSpin { to { transform: rotate(360deg); } }

/* --- Pantalla de éxito --- */
.brm-success-panel { text-align: center; padding: 20px 0 6px; }
.brm-success-icon {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,115,85,0.12);
}
.brm-success-icon svg { stroke: #8b7355; }
.brm-success-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 1.9rem; color: #1a1a1a; margin: 0 0 12px; }
.brm-success-text { font-size: 0.92rem; color: #5a5246; line-height: 1.7; max-width: 420px; margin: 0 auto 28px; }
.brm-success-panel .brm-btn { flex: 0 0 auto; min-width: 220px; margin: 0 auto; display: inline-block; }

/* --- Responsive --- */
@media (max-width: 600px) {
  .brm-overlay { padding: 0; align-items: flex-end; }
  .brm-dialog {
    max-width: 100%; max-height: 92vh; border-radius: 14px 14px 0 0;
    padding: 38px 22px 26px;
  }
  .brm-title { font-size: 1.85rem; }
  .brm-classes { grid-template-columns: 1fr; }
  .brm-grid { grid-template-columns: 1fr; }
  .brm-step-line { width: 26px; }
  .brm-step-dot small { font-size: 0.5rem; }
  .brm-actions { flex-wrap: wrap; }
}


/* =========================================================================
   NIVELES Y GRUPOS — Acordeón plegable por categorías
   ========================================================================= */
.levels-accordion { max-width: 1000px; margin: 0 auto; }
.level-group { border-top: 1px solid rgba(191,163,124,.30); }
.level-group:last-child { border-bottom: 1px solid rgba(191,163,124,.30); }
.level-group-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: none; cursor: pointer; padding: 32px 10px; text-align: left;
  font-family: 'Playfair Display', serif; transition: color .3s ease;
}
.level-group-title { font-size: clamp(1.6rem, 2.6vw, 2.15rem); color: #1c1719; line-height: 1.1; }
.level-group-header:hover .level-group-title { color: #9c7b56; }
.level-group-meta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.level-group-count {
  font-family: 'Lato', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #b1916c; border: 1px solid rgba(191,163,124,.5);
  border-radius: 999px; padding: 6px 13px; white-space: nowrap;
}
.level-group-chevron { color: #b1916c; font-size: .95rem; transition: transform .4s ease; }
.level-group.is-open .level-group-chevron { transform: rotate(180deg); }
.level-group-panel { max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.22,1,.36,1); }
.level-group-inner { padding: 4px 0 14px; }
.levels-accordion .level-card { padding: 30px 20px; border-top: 1px dashed rgba(191,163,124,.28); background: transparent; }
.levels-accordion .level-card:hover { transform: translateX(8px); background: rgba(255,255,255,.65); box-shadow: 0 12px 28px rgba(16,8,10,.04); }
.levels-accordion .level-group-inner .level-card:first-child { border-top: none; }
.levels-accordion .level-card:last-child { border-bottom: none; }
@media (max-width: 992px) {
  .level-group-header { padding: 24px 4px; }
  .level-group-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .levels-accordion .level-card { padding: 24px 6px !important; }
}
