

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

        /* --- VARIABLES & BASE --- */
        :root {
            --primary-gold: #bfa37c;
            --secondary-gold: #d4c5b0;
            --text-dark: #1a1a1a;
            --text-grey: #666666;
            --bg-light: #Fcfcfb;
        }

        body {
            font-family: 'Raleway', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
            cursor: auto; /* Default PC */
        }

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

        a { text-decoration: none; color: inherit; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
        ul { list-style: none; padding: 0; margin: 0; }

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

        /* --- CLASES DE LUJO (UTILITIES) --- */
        .text-gold { color: var(--primary-gold); }
        .serif-italic { font-family: 'Playfair Display', serif; font-style: italic; }
        .tracking-wide { letter-spacing: 4px; text-transform: uppercase; font-size: 0.65rem; font-weight: 700; }
        
        .btn-luxury-outline {
            position: relative;
            padding: 15px 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text-dark);
            display: inline-block;
            cursor: auto;
        }
        .btn-luxury-outline::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
            background-color: var(--primary-gold); transform: scaleX(0.3); transform-origin: left; transition: transform 0.6s ease;
        }
        .btn-luxury-outline:hover::after { transform: scaleX(1); }

        .btn-reserve {
            display: inline-block;
            padding: 12px 35px;
            background-color: var(--text-dark);
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.65rem;
            font-weight: 700;
            border: 1px solid var(--text-dark);
            transition: all 0.4s ease;
            margin-left: 30px;
            cursor: pointer;
        }
        .btn-reserve:hover {
            background-color: transparent;
            color: var(--text-dark);
        }

        /* Animaciones */
        .reveal-up { opacity: 0; transform: translateY(80px); transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .reveal-up.active { opacity: 1; transform: translateY(0); }

        /* --- PAGE HEADER --- */
        .page-header { height: 80vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
        .page-header::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.7) 100%); z-index: 1; pointer-events: none; }
        .page-header-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; z-index: 0; animation: slowZoom 25s infinite alternate; }
        .page-header-content { position: relative; z-index: 2; text-align: center; color: white; margin-top: 60px; }
        .page-header h1 { font-size: 5.5rem; margin-bottom: 25px; text-shadow: 0 20px 50px rgba(0,0,0,0.5); font-style: italic; }
        .page-subtitle { font-size: 0.75rem; letter-spacing: 6px; text-transform: uppercase; font-weight: 700; color: var(--primary-gold); }

        @keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.15); } }

        /* --- INTRO SECTION --- */
        .intro-text-section {
            padding: 140px 5% 100px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .intro-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            color: var(--text-dark);
            margin-bottom: 40px;
            line-height: 1.2;
        }
        .intro-desc {
            font-size: 1.05rem;
            line-height: 2.2;
            color: #999999;
            font-weight: 300;
        }
        .intro-divider { width: 1px; height: 60px; background-color: var(--primary-gold); margin: 40px auto; opacity: 0.4; }

        /* --- FILTERS SECTION --- */
        .filters-container { position: sticky; top: 0; z-index: 900; background: rgba(252, 252, 251, 0.95); backdrop-filter: blur(10px); padding: 30px 0; border-bottom: 1px solid rgba(0,0,0,0.03); transition: top 0.3s; }
        
        .filters-wrapper { display: flex; justify-content: center; gap: 50px; }
        .filter-btn {
            background: none; border: none; font-family: 'Raleway', sans-serif;
            font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px;
            color: #aaa; cursor: pointer; position: relative; padding-bottom: 10px; transition: color 0.4s;
            white-space: nowrap; /* Evita que el texto salte de línea */
        }
        .filter-btn.active, .filter-btn:hover { color: var(--text-dark); font-weight: 700; }
        .filter-btn::after {
            content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
            background: var(--primary-gold); transition: all 0.4s ease; transform: translateX(-50%);
        }
        .filter-btn.active::after { width: 40px; }

        /* --- ROOMS LIST & CAROUSEL --- */
        .rooms-grid { padding: 0 0 150px; max-width: 100%; overflow: hidden; }
        
        .room-row { 
            display: flex; 
            align-items: center; 
            margin-bottom: 150px; 
            position: relative;
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 5%;
        }
        .room-row.hidden { display: none; }

        /* Image Column (Carousel Container) */
        .room-image-col { 
            flex: 0 0 60%; 
            position: relative; 
            overflow: hidden; 
            height: 650px; 
            cursor: pointer;
            box-shadow: 10px 10px 40px rgba(0,0,0,0.05);
            background-color: #f0f0f0; 
            z-index: 1;
        }
        /* Bootstrap Carousel Inner Reset */
        .carousel, .carousel-inner, .carousel-item { height: 100%; }
        
        .room-img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
            transition: transform 3s ease; 
        }
        .room-image-col:hover .room-img { transform: scale(1.05); }

        /* Sober Carousel Controls */
        .room-image-col .carousel-control-prev,
        .room-image-col .carousel-control-next {
            width: 50px;
            height: 50px;
            top: auto;
            bottom: 30px;
            transform: none;
            opacity: 1;
            transition: all 0.28s ease;
            background: rgba(0,0,0,0.72);
            border: 1px solid rgba(255,255,255,0.32);
            border-radius: 2px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            box-shadow: 0 10px 22px rgba(0,0,0,0.20);
            z-index: 6;
        }
        .room-row:nth-child(odd) .room-image-col .carousel-control-prev { left: 30px; }
        .room-row:nth-child(odd) .room-image-col .carousel-control-next { left: 75px; }
        .room-row:nth-child(even) .room-image-col .carousel-control-next { right: 30px; }
        .room-row:nth-child(even) .room-image-col .carousel-control-prev { right: 75px; left: auto; }
        .room-image-col:hover .carousel-control-prev,
        .room-image-col:hover .carousel-control-next {
            background: rgba(0,0,0,0.84);
            border-color: rgba(255,255,255,0.46);
        }
        .room-image-col .carousel-control-prev-icon,
        .room-image-col .carousel-control-next-icon {
            filter: brightness(0) invert(1) contrast(1.6);
            width: 1.18rem;
            height: 1.18rem;
            opacity: 1;
        }

        .room-image-col .carousel-control-prev-icon,
        .room-image-col .carousel-control-next-icon {
            background-size: 100% 100%;
        }
        .room-image-col .carousel-indicators {
            left: auto;
            right: auto;
            width: auto;
            margin: 0;
            bottom: 48px;
            gap: 7px;
            z-index: 5;
        }
        .room-row:nth-child(odd) .room-image-col .carousel-indicators { left: 138px; }
        .room-row:nth-child(even) .room-image-col .carousel-indicators { right: 138px; }
        .room-image-col .carousel-indicators [data-bs-target] {
            width: 26px;
            height: 1px;
            border-radius: 0;
            border: 0;
            background-color: rgba(255,255,255,0.45);
            opacity: 1;
            margin: 0;
        }
        .room-image-col .carousel-indicators .active {
            background-color: #ffffff;
        }

        /* Info Column */
        .room-info-col { 
            flex: 0 0 45%; 
            background: #fff; 
            padding: 60px 50px; 
            z-index: 2; 
            box-shadow: -20px 20px 60px rgba(0,0,0,0.05);
            transition: transform 0.6s ease;
            margin-left: -5%; /* Negative margin for overlap */
        }
        
        /* Alternating Layout */
        .room-row:nth-child(even) { flex-direction: row-reverse; }
        .room-row:nth-child(even) .room-info-col { 
            margin-left: 0;
            margin-right: -5%;
            text-align: left; 
            box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
        }
        
        .room-category { 
            color: var(--primary-gold); 
            font-size: 0.65rem; 
            letter-spacing: 3px; 
            text-transform: uppercase; 
            margin-bottom: 25px; 
            display: block; 
            font-weight: 700; 
        }
        .room-title { 
            font-size: 3.5rem; 
            margin-bottom: 30px; 
            line-height: 1.1; 
            font-family: 'Playfair Display', serif;
            font-style: italic;
        }
        .room-specs { 
            font-size: 0.8rem; 
            color: var(--text-grey); 
            margin-bottom: 40px; 
            font-family: 'Raleway', sans-serif; 
            border-top: 1px solid rgba(0,0,0,0.05); 
            border-bottom: 1px solid rgba(0,0,0,0.05); 
            padding: 20px 0; 
            display: flex;
            gap: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .room-desc { font-size: 1rem; line-height: 1.8; color: var(--text-grey); margin-bottom: 50px; font-weight: 300; }
        
        .room-features-icons { display: flex; gap: 30px; margin-bottom: 50px; color: var(--text-dark); opacity: 0.6; font-size: 1.2rem; }
        
        /* --- DETAILED FEATURES SECTION --- */
        .amenities-section { background: #0b0b0b; color: white; padding: 160px 0; position: relative; }
        .amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .amenity-card { 
            text-align: center; 
            padding: 50px 30px; 
            border: 1px solid rgba(255,255,255,0.08); 
            transition: all 0.5s ease; 
            cursor: auto; 
            background: transparent;
        }
        .amenity-card:hover { 
            background: rgba(255,255,255,0.03); 
            transform: translateY(-15px); 
            border-color: var(--primary-gold); 
        }
        .amenity-icon { font-size: 2rem; margin-bottom: 30px; color: var(--primary-gold); transition: transform 0.5s; }
        .amenity-card:hover .amenity-icon { transform: scale(1.1); }
        .amenity-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; font-weight: 700; }
        .amenity-text { font-size: 0.95rem; color: #888; line-height: 1.7; font-weight: 300; }

        /* --- RESPONSIVE MOBILE FIX --- */
        @media (max-width: 992px) {
            /* 1. RESET CURSOR */
            body, a, button, .room-image-col, .amenity-card, .btn-luxury-outline { cursor: auto !important; }
            .cursor-dot, .cursor-outline { display: none !important; }

            /* 2. TYPOGRAPHY SCALING & HERO */
            .page-header { height: 75vh; }
            .page-header h1 { font-size: 2.8rem; line-height: 1.1; margin-bottom: 15px; }
            .page-header-content p { font-size: 0.95rem !important; padding: 0 20px; line-height: 1.6 !important; }
            .page-subtitle { font-size: 0.65rem; letter-spacing: 4px; }
            .intro-title { font-size: 2.2rem; }
            .intro-text-section { padding: 90px 20px 50px; }
            .intro-desc { font-size: 0.95rem; padding: 0 10px; }
            
            /* 3. FILTROS SCROLLABLES (App Style) */
            .filters-container { padding: 20px 0; }
            .filters-wrapper { 
                gap: 30px; 
                padding: 0 25px; 
                justify-content: flex-start; 
                overflow-x: auto; 
                white-space: nowrap; 
                -webkit-overflow-scrolling: touch; 
                scrollbar-width: none; 
                -ms-overflow-style: none;
            }
            .filters-wrapper::-webkit-scrollbar { display: none; }

            /* 4. CARDS LAYOUT */
            .room-row { flex-direction: column !important; margin-bottom: 90px; padding: 0 15px; }
            
            .room-image-col { 
                height: 400px; 
                width: 100%; 
                box-shadow: 0 15px 35px rgba(0,0,0,0.05); 
                flex: 0 0 100%; 
            }

            /* Fix: Controles del carrusel siempre visibles en móvil */
            .carousel-control-prev, .carousel-control-next { opacity: 1 !important; width: 42px !important; height: 42px !important; bottom: 18px !important; top: auto !important; background: rgba(0,0,0,0.78) !important; border-color: rgba(255,255,255,0.34) !important; }
            .room-row:nth-child(odd) .room-image-col .carousel-control-prev { left: 16px !important; }
            .room-row:nth-child(odd) .room-image-col .carousel-control-next { left: 55px !important; }
            .room-row:nth-child(even) .room-image-col .carousel-control-prev { right: 55px !important; left: auto !important; }
            .room-row:nth-child(even) .room-image-col .carousel-control-next { right: 16px !important; left: auto !important; }
    
        .room-image-col .carousel-control-prev-icon,
        .room-image-col .carousel-control-next-icon {
            background-size: 100% 100%;
        }
        .room-image-col .carousel-indicators { bottom: 34px !important; }
            .room-row:nth-child(odd) .room-image-col .carousel-indicators { left: 108px !important; }
            .room-row:nth-child(even) .room-image-col .carousel-indicators { right: 108px !important; left: auto !important; }
            .room-image-col .carousel-indicators [data-bs-target] { width: 18px !important; }

            .room-info-col { 
                margin-top: -60px !important; /* Overlap limpio */
                width: 92% !important; 
                margin-left: auto !important; 
                margin-right: auto !important; 
                flex: 0 0 auto;
                text-align: center !important;
                padding: 40px 25px; 
                position: relative; 
                z-index: 10;
                box-shadow: 0 20px 50px rgba(0,0,0,0.08) !important;
                border-radius: 4px;
            }

            .room-title { font-size: 2.2rem; margin-bottom: 15px; }
            .room-category { margin-bottom: 15px; font-size: 0.65rem; }
            .room-specs { 
                justify-content: center; 
                font-size: 0.7rem; 
                gap: 15px; 
                flex-wrap: wrap; 
                padding: 15px 0;
            }
            .room-desc { font-size: 0.95rem; margin-bottom: 30px; }
            .room-features-icons { justify-content: center !important; margin-bottom: 35px; gap: 25px; font-size: 1.1rem; }
            
            /* Fix: Botones centrados y espaciados en móvil */
            .d-flex.align-items-center { 
                justify-content: center !important; 
                gap: 20px; 
                flex-wrap: wrap;
            }
            .btn-reserve { margin-left: 0 !important; padding: 12px 30px; }
        }

        /* Ajustes finos para móviles más pequeños (ej. iPhone SE) */
        @media (max-width: 576px) {
            .page-header h1 { font-size: 2.4rem; padding: 0 10px; }
            .page-header-content p { font-size: 0.85rem !important; }
            .intro-title { font-size: 1.8rem; }
            .room-image-col { height: 320px; }
            .room-info-col { width: 96% !important; padding: 30px 20px; margin-top: -40px !important; }
            .room-title { font-size: 1.8rem; }
            .room-specs { gap: 10px; font-size: 0.65rem; }
            .d-flex.align-items-center { gap: 15px; flex-direction: column; width: 100%; }
            .btn-reserve, .btn-luxury-outline { width: 100%; text-align: center; }
            .btn-luxury-outline::after { transform: scaleX(1); opacity: 0.3; } /* Línea siempre visible */
        }
    

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


/* =========================================================
   V43 - HABITACIONES MOBILE FINAL POLISH
   Corrección específica para que la página Habitaciones se vea limpia en móvil.
   ========================================================= */
@media (max-width: 991.98px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .page-header {
    height: auto !important;
    min-height: 64svh !important;
    padding: 126px 20px 76px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .page-header-content {
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .page-header h1 {
    font-size: clamp(3rem, 14vw, 5.4rem) !important;
    line-height: .95 !important;
    margin: 0 0 18px !important;
    padding: 0 !important;
  }

  .page-header-content p {
    max-width: 520px !important;
    margin: 16px auto 0 !important;
    padding: 0 8px !important;
    font-size: .95rem !important;
    line-height: 1.7 !important;
    letter-spacing: .4px !important;
  }

  .intro-text-section {
    padding: 74px 20px 34px !important;
    text-align: center !important;
  }

  .intro-title {
    font-size: clamp(2rem, 9vw, 3.1rem) !important;
    line-height: 1.06 !important;
    margin-bottom: 22px !important;
  }

  .intro-divider {
    margin: 0 auto 24px !important;
  }

  .intro-desc {
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    font-size: .95rem !important;
    line-height: 1.85 !important;
  }

  .filters-container {
    position: relative !important;
    top: auto !important;
    z-index: 30 !important;
    padding: 16px 0 14px !important;
    margin: 0 !important;
    background: rgba(249,248,246,.98) !important;
    border-top: 1px solid rgba(0,0,0,.04) !important;
    border-bottom: 1px solid rgba(0,0,0,.06) !important;
  }

  .filters-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    padding: 0 18px !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
  }

  .filter-btn {
    flex: 0 0 auto !important;
    scroll-snap-align: start !important;
    padding: 11px 16px !important;
    border: 1px solid rgba(0,0,0,.08) !important;
    background: #fff !important;
    color: #777 !important;
    font-size: .62rem !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
    border-radius: 999px !important;
  }

  .filter-btn.active,
  .filter-btn:hover {
    color: #111 !important;
    background: #f2eee7 !important;
    border-color: rgba(191,163,124,.34) !important;
  }

  .filter-btn::after {
    display: none !important;
  }

  .rooms-grid {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 46px 0 84px !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .room-row,
  .room-row:nth-child(even) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 680px !important;
    padding: 0 18px !important;
    margin: 0 auto 72px !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  .room-row.hidden {
    display: none !important;
  }

  .room-image-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    height: clamp(305px, 76vw, 460px) !important;
    min-height: 305px !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 44px rgba(0,0,0,.08) !important;
    background: #e9e5de !important;
  }

  .room-image-col .carousel,
  .room-image-col .carousel-inner,
  .room-image-col .carousel-item {
    height: 100% !important;
    width: 100% !important;
  }

  .room-img,
  .room-image-col img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .room-image-col:hover .room-img {
    transform: none !important;
  }

  .room-info-col,
  .room-row:nth-child(even) .room-info-col {
    width: calc(100% - 22px) !important;
    max-width: 100% !important;
    flex: none !important;
    margin: -26px auto 0 !important;
    padding: 28px 22px 30px !important;
    position: relative !important;
    z-index: 8 !important;
    text-align: left !important;
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: 0 20px 54px rgba(0,0,0,.09) !important;
    transform: none !important;
  }

  .room-category {
    display: block !important;
    margin-bottom: 12px !important;
    font-size: .58rem !important;
    letter-spacing: 2.8px !important;
  }

  .room-title {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
    line-height: 1.06 !important;
    margin: 0 0 18px !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .room-specs {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    padding: 15px 0 !important;
    margin: 0 0 18px !important;
    font-size: .66rem !important;
    letter-spacing: 1.5px !important;
  }

  .room-specs span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }

  .room-desc {
    font-size: .92rem !important;
    line-height: 1.75 !important;
    margin: 0 0 24px !important;
    color: #5e5e5e !important;
  }

  .room-features-icons {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    margin: 0 0 26px !important;
    font-size: 1.05rem !important;
  }

  .room-info-col .d-flex.align-items-center,
  .room-row:nth-child(even) .room-info-col .d-flex.align-items-center {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }

  .btn-luxury-outline,
  .btn-reserve {
    width: 100% !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 22px !important;
    font-size: .67rem !important;
    letter-spacing: 2.6px !important;
  }

  .btn-luxury-outline::after {
    width: 100% !important;
    transform: scaleX(1) !important;
    opacity: .22 !important;
  }

  .room-image-col .carousel-control-prev,
  .room-image-col .carousel-control-next,
  .room-row:nth-child(odd) .room-image-col .carousel-control-prev,
  .room-row:nth-child(odd) .room-image-col .carousel-control-next,
  .room-row:nth-child(even) .room-image-col .carousel-control-prev,
  .room-row:nth-child(even) .room-image-col .carousel-control-next {
    top: 16px !important;
    bottom: auto !important;
    width: 42px !important;
    height: 42px !important;
    opacity: 1 !important;
    background: rgba(0,0,0,.68) !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    transform: none !important;
    z-index: 12 !important;
  }

  .room-image-col .carousel-control-prev,
  .room-row:nth-child(odd) .room-image-col .carousel-control-prev,
  .room-row:nth-child(even) .room-image-col .carousel-control-prev {
    left: auto !important;
    right: 64px !important;
  }

  .room-image-col .carousel-control-next,
  .room-row:nth-child(odd) .room-image-col .carousel-control-next,
  .room-row:nth-child(even) .room-image-col .carousel-control-next {
    left: auto !important;
    right: 16px !important;
  }

  .room-image-col .carousel-control-prev-icon,
  .room-image-col .carousel-control-next-icon {
    width: 1rem !important;
    height: 1rem !important;
    filter: brightness(0) invert(1) contrast(1.5) !important;
  }

  .room-image-col .carousel-indicators,
  .room-row:nth-child(odd) .room-image-col .carousel-indicators,
  .room-row:nth-child(even) .room-image-col .carousel-indicators {
    top: 32px !important;
    bottom: auto !important;
    left: 18px !important;
    right: auto !important;
    width: auto !important;
    margin: 0 !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    z-index: 11 !important;
  }

  .room-image-col .carousel-indicators [data-bs-target] {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.7) !important;
    opacity: 1 !important;
    margin: 0 !important;
  }

  .room-image-col .carousel-indicators .active {
    background: #fff !important;
  }

  .amenities-section {
    padding: 72px 18px !important;
  }

  .amenities-section .section-title,
  .section-title {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
    line-height: 1.08 !important;
  }

  .amenities-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .amenity-card {
    padding: 34px 22px !important;
  }
}

@media (max-width: 575.98px) {
  .page-header {
    min-height: 58svh !important;
    padding: 112px 16px 62px !important;
  }

  .page-header h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem) !important;
  }

  .intro-text-section {
    padding-top: 62px !important;
  }

  .rooms-grid {
    padding-top: 34px !important;
  }

  .room-row,
  .room-row:nth-child(even) {
    padding: 0 12px !important;
    margin-bottom: 62px !important;
  }

  .room-image-col {
    height: clamp(286px, 82vw, 360px) !important;
    min-height: 286px !important;
  }

  .room-info-col,
  .room-row:nth-child(even) .room-info-col {
    width: calc(100% - 14px) !important;
    margin-top: -20px !important;
    padding: 25px 18px 26px !important;
  }

  .room-title {
    font-size: clamp(1.85rem, 9vw, 2.35rem) !important;
  }

  .room-desc {
    font-size: .88rem !important;
  }

  .filters-wrapper {
    padding-left: 14px !important;
    padding-right: 14px !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;
  }
}


/* V150 - Mejora visual de secciones de Habitaciones */
.page-header {
  min-height: 78vh;
}
.page-header::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 32%, rgba(0,0,0,.24) 72%, rgba(0,0,0,.78) 100%),
    radial-gradient(circle at 50% 40%, rgba(191,163,124,.12) 0%, rgba(191,163,124,0) 46%);
}
.page-header-content {
  max-width: 980px;
}
.page-header h1 {
  font-size: clamp(3.8rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.intro-text-section {
  position: relative;
  padding: 140px 20px 95px;
}
.intro-text-section::before {
  content: '';
  display: block;
  width: 78px;
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, rgba(191,163,124,0) 0%, rgba(191,163,124,.95) 50%, rgba(191,163,124,0) 100%);
}
.intro-title {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1.04;
  margin-bottom: 28px;
}
.intro-divider {
  height: 70px;
  margin: 30px auto;
  opacity: .55;
}
.intro-desc {
  max-width: 980px;
  margin: 0 auto;
  color: #8e8784;
  line-height: 2.05;
}

.rooms-grid {
  padding: 0 0 165px;
}
.room-row {
  margin-bottom: 125px;
  gap: 0;
}
.room-image-col {
  height: 680px;
  border: 1px solid rgba(191,163,124,.12);
  box-shadow: 0 24px 60px rgba(18,10,12,.06);
}
.room-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
  z-index: 2;
}
.room-price-tag {
  z-index: 7;
  background: rgba(17,17,17,.84);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.room-image-col .carousel-control-prev,
.room-image-col .carousel-control-next {
  bottom: 28px;
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,.76);
  border-color: rgba(255,255,255,.34);
}
.room-image-col .carousel-indicators {
  bottom: 46px;
}
.room-info-col {
  position: relative;
  padding: 64px 56px;
  border: 1px solid rgba(191,163,124,.14);
  background: linear-gradient(180deg, #ffffff 0%, #faf6f2 100%);
  box-shadow: -24px 24px 64px rgba(18,10,12,.06);
}
.room-info-col::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(191,163,124,.12);
  pointer-events: none;
}
.room-row:nth-child(even) .room-info-col {
  box-shadow: 24px 24px 64px rgba(18,10,12,.06);
}
.room-category {
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.room-title {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.04;
  margin-bottom: 24px;
  color: #181415;
}
.room-specs {
  padding: 18px 0;
  margin-bottom: 30px;
  color: #7f7476;
  gap: 22px;
}
.room-desc {
  color: #665b5e;
  line-height: 1.9;
  margin-bottom: 40px;
}
.room-features-icons {
  gap: 18px;
  margin-bottom: 38px;
}
.room-features-icons i,
.room-features-icons svg {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid rgba(191,163,124,.18);
  background: rgba(191,163,124,.08);
  color: #9b7c59;
}
.btn-luxury-outline {
  min-height: 54px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(17,17,17,.78);
  background: rgba(255,255,255,.3);
}
.btn-luxury-outline:hover {
  box-shadow: 0 14px 28px rgba(18,10,12,.08);
}

.amenities-section {
  position: relative;
  padding: 170px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(191,163,124,.10) 0%, rgba(191,163,124,0) 22%),
    linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}
.amenities-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,.55) 50%, rgba(191,163,124,0) 100%);
}
.amenities-grid {
  gap: 34px;
  max-width: 1480px;
}
.amenity-card {
  position: relative;
  padding: 54px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.amenity-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(191,163,124,.10);
  pointer-events: none;
}
.amenity-card:hover {
  transform: translateY(-10px);
  border-color: rgba(191,163,124,.55);
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.05) 100%);
}
.amenity-icon {
  font-size: 2.1rem;
  margin-bottom: 24px;
}
.amenity-title {
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.amenity-text {
  color: #9a9492;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .page-header {
    min-height: 64svh;
  }
  .page-header h1 {
    font-size: clamp(2.7rem, 11vw, 3.6rem);
  }
  .intro-text-section {
    padding: 88px 20px 55px;
  }
  .intro-text-section::before {
    width: 58px;
    margin-bottom: 18px;
  }
  .intro-title {
    font-size: clamp(2rem, 8vw, 2.7rem);
    margin-bottom: 18px;
  }
  .intro-divider {
    height: 52px;
    margin: 20px auto;
  }
  .intro-desc {
    line-height: 1.8;
  }
  .rooms-grid {
    padding-bottom: 95px;
  }
  .room-row {
    margin-bottom: 85px;
  }
  .room-image-col {
    height: 400px;
    border-bottom: 0;
  }
  .room-info-col {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 32px 22px;
    box-shadow: 0 18px 40px rgba(18,10,12,.06) !important;
  }
  .room-info-col::before {
    inset: 10px;
  }
  .room-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 18px;
  }
  .room-specs {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 16px 0;
    margin-bottom: 22px;
  }
  .room-desc {
    margin-bottom: 28px;
    line-height: 1.75;
  }
  .room-features-icons {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }
  .room-features-icons i,
  .room-features-icons svg {
    width: 40px;
    height: 40px;
    padding: 9px;
  }
  .btn-luxury-outline {
    width: 100%;
    min-height: 50px;
  }
  .amenities-section {
    padding: 95px 0;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 18px;
  }
  .amenity-card {
    padding: 34px 22px;
  }
  .amenity-card::before {
    inset: 10px;
  }
}


/* V176 - Eliminar iconos de amenities en tarjetas de habitaciones */
.room-features-icons {
  display: none !important;
}
.room-info-col .room-desc {
  margin-bottom: 34px;
}
@media (max-width: 992px) {
  .room-info-col .room-desc {
    margin-bottom: 26px;
  }
}
