.rooms-mobile-highlight {
    display: none;
    background: #f6f7fb;
    padding: 60px 0 40px;
}

.rooms-mobile-highlight__inner {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.rooms-mobile-highlight__header {
    text-align: center;
    padding: 0 0 30px;
}

.rooms-mobile-highlight__intro-description {
    text-align: left;
    margin: 0 auto 32px;
    max-width: 480px;
    color: #0f4281;
}

.rooms-mobile-highlight__intro-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(15, 66, 129, 0.2);
    color: #0f4281;
}

.rooms-mobile-highlight__intro-title {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.28;
    margin: 0 0 18px;
    color: #0f4281;
}

.rooms-mobile-highlight__intro-text {
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 14px;
    color: #5a626f;
}

.rooms-mobile-highlight__intro-photo {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 30px;
    position: relative;
}

.rooms-intro-slider {
    display: grid;
    grid-template-areas: "slide";
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
}

.rooms-intro-slide {
    grid-area: slide;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.rooms-intro-slide.active {
    opacity: 1;
    z-index: 1;
}

.rooms-mobile-highlight__intro-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.rooms-mobile-highlight__intro-photo.curated-destinations-photo {
    aspect-ratio: 4/3;
}

.rooms-mobile-highlight__intro-photo.curated-destinations-photo img {
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.rooms-mobile-highlight__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0f4281;
    margin-bottom: 10px;
}

.rooms-mobile-highlight__title {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.2;
    color: #0f4281;
    margin: 0;
}

.rooms-mobile-highlight__carousel-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.rooms-mobile-highlight__carousel {
    display: flex;
    transition: transform 0.35s ease;
}

.rooms-mobile-highlight__slide {
    min-width: 100%;
    flex: 0 0 100%;
    padding: 18px 0 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.rooms-mobile-highlight__image {
    width: 100%;
    max-width: 420px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
}

.rooms-mobile-highlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centrar imagen de The Pool Garden que es muy ancha - mostrar parte derecha (pergola, área descanso) */
.rooms-mobile-highlight__image img[alt="The Pool Garden"],
.room-image img[alt="The Pool Garden"] {
    object-position: 75% center;
    object-fit: cover;
}

.rooms-mobile-highlight__info {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.rooms-mobile-highlight__rating {
    font-size: 16px;
    letter-spacing: 4px;
    color: #caab5e;
    margin: 0 0 6px;
}

.rooms-mobile-highlight__slide-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #0f4281;
    margin: 0 0 10px;
    line-height: 1.3;
}

.rooms-mobile-highlight__description {
    font-size: 15px;
    line-height: 1.6;
    color: #5a616a;
    margin: 0 0 16px;
}

.rooms-mobile-highlight__activities-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #0f4281;
    margin: 0 0 10px;
    text-align: left;
}

.rooms-mobile-highlight__activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.rooms-mobile-highlight__activities-list li {
    font-size: 14px;
    line-height: 1.7;
    color: #5a616a;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
}

.rooms-mobile-highlight__activities-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #caab5e;
    font-weight: bold;
}

.rooms-mobile-highlight__activities-list li:last-child {
    margin-bottom: 0;
}

.rooms-mobile-highlight__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 36px 0 24px;
}

.rooms-mobile-highlight__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 66, 129, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rooms-mobile-highlight__dot.is-active {
    width: 28px;
    border-radius: 5px;
    background: #0f4281;
}

@media screen and (max-width: 1024px) {
    .rooms-mobile-highlight {
        display: block;
    }
}

/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f4281;
    --secondary-color: #caab5e;
    --accent-color: #caab5e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --overlay-color: rgba(15, 66, 129, 0.75);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: "Philosopher", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-size-body: 1rem;
    --font-size-small: 0.9375rem;
    --font-line-heading: 1.15;
    --font-line-body: 1.7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--primary-color);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: var(--font-line-body);
    font-size: var(--font-size-body);
}

p,
.hero-description,
.body-text {
    font-family: var(--font-body);
    line-height: var(--font-line-body);
    letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.rooms-sticky-title,
.views-title,
.contact-info-title {
    font-family: var(--font-heading);
    line-height: var(--font-line-heading);
    letter-spacing: -0.01em;
    color: var(--text-light);
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2.5rem, 4.8vw, 3.5rem);
}

h3 {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
}

h4,
h5,
h6 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   Header Styles
======================================== */
.header {
    width: 100%;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.header.scrolled {
    background-color: rgba(8, 33, 72, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo Section - Centered */
.header-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 0 14px 0;
}

.header.scrolled .header-logo-section {
    padding: 18px 0 12px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: 190px;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover .logo-image {
    transform: translateY(-4px);
}

/* Navigation Section */
.header-nav-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    position: relative;
    gap: 28px;
    width: 100%;
}

.header-cta {
    margin-left: auto;
}

.header-nav-section::before,
.header-nav-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.header-nav-section::before {
    top: 0;
}

.header-nav-section::after {
    bottom: 0;
}

.header.scrolled .header-nav-section {
    padding: 14px 0;
}

/* Navigation */
.nav {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

/* ========================================
   DESKTOP STYLES (min-width: 1025px)
   ======================================== */
@media (min-width: 1025px) {

    /* ========================================
       VIEWS SECTION - Mostrar/Ocultar Versiones
       ======================================== */
    .views-desktop {
        display: block !important;
    }

    .views-mobile {
        display: none !important;
    }

    .views-mobile-section {
        display: none !important;
    }

    /* ========================================
       ROOMS SECTION - Mostrar/Ocultar Versiones
       ======================================== */
    .rooms-desktop {
        display: block !important;
    }

    .rooms-mobile {
        display: none !important;
    }

    /* ========================================
       CURATED DESTINATIONS - Mostrar/Ocultar Versiones
       ======================================== */
    .curated-destinations-desktop {
        display: block !important;
    }

    .curated-destinations-mobile {
        display: none !important;
    }

    /* ========================================
       FOOTER - DESKTOP
       ======================================== */
    .footer-bottom {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        flex-direction: row !important;
    }

    .footer-bottom .footer-copy {
        order: 0 !important;
        width: auto !important;
        justify-self: flex-start !important;
    }

    .footer-bottom .footer-terms {
        order: 0 !important;
        width: auto !important;
        justify-self: flex-end !important;
    }

    /* ========================================
       SECCIÓN CURATED DESTINATIONS - DESKTOP
       Asegurar que los estilos desktop se mantengan
       ======================================== */
    /* Solo aplicar a la versión desktop, NO a la móvil */
    .rooms-section--inverse.curated-destinations-desktop .rooms-container {
        grid-template-columns: 0.8fr 1.2fr !important;
        display: grid !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .rooms-sticky-content {
        order: 0 !important;
        position: sticky !important;
        top: 40px !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .rooms-sticky-wrapper {
        padding: 0 60px 40px 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .rooms-scroll-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 80px !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .room-item {
        grid-template-columns: 1fr 520px !important;
        display: grid !important;
        gap: 0 !important;
        position: relative !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .room-image {
        order: 2 !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .room-info {
        order: 1 !important;
        padding-left: 0 !important;
        padding-right: 30px !important;
    }

    .rooms-section--inverse.curated-destinations-desktop .room-item::before {
        content: '' !important;
        position: absolute !important;
        left: calc(100% - 544px) !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 1px !important;
        background: rgba(15, 66, 129, 0.15) !important;
        z-index: 1 !important;
    }

    /* Asegurar que la versión móvil esté oculta en desktop */
    .curated-destinations-mobile {
        display: none !important;
    }

    .curated-destinations-mobile .curated-mobile-container {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .nav::before {
        display: none !important;
    }

    .nav {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
        width: auto !important;
        height: auto !important;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    text-transform: none;
    font-family: 'Philosopher', sans-serif;
    opacity: 0.8;
    padding: 4px 0;
    transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease, letter-spacing 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    transform: translateY(-2px);
    letter-spacing: 1.8px;
    color: #ffffff;
}

.header-left-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: auto;
}

.language-switch {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    overflow: hidden;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Philosopher', sans-serif;
    font-size: 12px;
    letter-spacing: 1.6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--text-light);
}

/* CTA Button */
.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    background-color: var(--text-light);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: 'Philosopher', sans-serif;
}

.btn-schedule::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--accent-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-schedule:hover::before {
    width: 300px;
    height: 300px;
}

.btn-schedule:hover {
    color: var(--primary-color);
}

.btn-schedule svg {
    position: relative;
    z-index: 1;
    transition: var(--transition);
    width: 14px;
    height: 14px;
}

.btn-schedule:hover svg {
    transform: translateX(5px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 16px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}




.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 350px 0 220px;
    max-width: 920px;
    margin: 0 auto;
    pointer-events: none;
}

.hero-content * {
    pointer-events: auto;
}

.hero-subtitle {
    margin: 0 auto 28px;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(236, 190, 69, 0.9), transparent);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.hero-description {
    font-family: var(--font-heading);
    font-size: clamp(38px, 6.2vw, 68px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.4s;
}

.hero-description>span:not(.hero-description-last-line) {
    display: block;
}

.hero-description-last-line {
    display: inline-flex !important;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.hero-text-coming {
    display: inline;
    white-space: nowrap;
}

.hero-cta-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
    flex-shrink: 0;
}

.hero-separator {
    width: 120px;
    height: 2px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, rgba(236, 190, 69, 0.9), transparent);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-copy {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s forwards 0.7s;
}

.btn-hero-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 28px 52px;
    border-radius: 999px;
    font-size: 18px;
    margin-left: 0;
    border: 1px solid rgba(236, 190, 69, 0.4);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    background-color: rgba(8, 33, 72, 0.9);
    white-space: nowrap;
}

.btn-hero-reserve__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(8, 33, 72, 0.85);
}

.btn-hero-reserve__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: btnSlideShow 9s infinite;
}

.btn-hero-reserve__slide:nth-child(1) {
    animation-delay: 0s;
}

.btn-hero-reserve__slide:nth-child(2) {
    animation-delay: 3s;
}

.btn-hero-reserve__slide:nth-child(3) {
    animation-delay: 6s;
}

.btn-hero-reserve__slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 33, 72, 0.75);
}

.btn-hero-reserve__text {
    position: relative;
    z-index: 1;
}

@keyframes btnSlideShow {

    0%,
    30% {
        opacity: 1;
    }

    33.33%,
    100% {
        opacity: 0;
    }
}

.btn-hero-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(236, 190, 69, 0.45);
}

.btn-hero-reserve:hover .btn-hero-reserve__slide::after {
    background: rgba(236, 190, 69, 0.45);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Welcome Section
======================================== */
.welcome {
    padding: 140px 0;
    background: #ffffff;
}

.welcome-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 80px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 40px;
    position: relative;
}

.welcome-container::before {
    display: none;
}

.welcome-content {
    max-width: 520px;
}

.welcome-eyebrow {
    font-family: 'Philosopher', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 66, 129, 0.25);
    width: fit-content;
}

.welcome-title {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.15;
    color: #0f4281 !important;
    margin-bottom: 32px;
    max-width: 520px;
    letter-spacing: -0.02em;
}

.welcome-text {
    font-family: 'Sentient', serif;
    font-size: 17px;
    line-height: 1.85;
    color: rgba(8, 33, 72, 0.7) !important;
    margin-bottom: 44px;
    max-width: 520px;
}

.welcome-text strong {
    font-weight: 600;
    color: rgba(123, 94, 74, 0.95);
}

.welcome-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(8, 33, 72, 0.85) !important;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(8, 33, 72, 0.25);
    padding-bottom: 6px;
    transition: color 0.3s ease, gap 0.3s ease, border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.welcome-link svg {
    transition: transform 0.3s ease;
}

.welcome-link:hover {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    gap: 16px;
}

.welcome-link:hover svg {
    transform: translateX(4px);
}

.welcome-media {
    position: relative;
}

.welcome-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 1px;
    height: 100%;
    background: rgba(15, 66, 129, 0.15);
    z-index: 1;
}

.welcome-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: -60px;
    max-width: 580px;
    box-shadow: 0 25px 50px rgba(8, 33, 72, 0.15);
    border-radius: 5px;
}

.welcome-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
    object-fit: cover;
}

.experience-video {
    width: 100%;
    padding: 0;
    background-color: #ffffff;
    position: relative;
}

.experience-video .container {
    position: absolute;
    top: 60px;
    left: 0;
    right: auto;
    z-index: 10;
    margin: 0;
    padding-left: 40px;
    max-width: none;
}

.experience-video__heading {
    text-align: left;
    width: 100%;
}

.experience-video__title {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 5.8vw, 70px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-align: left;
    max-width: 800px;
}

.experience-video__title br {
    display: block;
}

.experience-video__media-wrapper {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    background: #000;
    margin: 0;
}

.experience-video__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 33, 72, 0.45) 0%, rgba(8, 33, 72, 0.55) 100%);
    z-index: 1;
}

.experience-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

/* ========================================
   Rooms & Spaces Section (Sticky)
======================================== */
.rooms-section {
    background: #ffffff;
    padding: 140px 0;
    position: relative;
    overflow: visible;
}

.rooms-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: start;
    position: relative;
}

/* ========================================
   SECCIÓN CURATED DESTINATIONS (rooms-section--inverse)
   ESTILOS BASE - DESKTOP (por defecto)
   ======================================== */
.rooms-section--inverse .rooms-container {
    grid-template-columns: 0.8fr 1.2fr;
    display: grid;
}

.rooms-section--inverse .rooms-sticky-content {
    order: 0;
    position: sticky;
    top: 40px;
}

.rooms-section--inverse .rooms-sticky-wrapper {
    padding: 0 60px 40px 0;
    align-items: flex-start;
    text-align: left;
}

.rooms-section--inverse .rooms-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.rooms-section--inverse .room-item {
    grid-template-columns: 1fr 520px;
    display: grid;
    gap: 0;
    position: relative;
}

.rooms-section--inverse .room-image {
    order: 2;
}

.rooms-section--inverse .room-info {
    order: 1;
    padding-left: 0;
    padding-right: 30px;
}

.rooms-section--inverse .room-item::before {
    content: '';
    position: absolute;
    left: calc(100% - 544px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(15, 66, 129, 0.15);
    z-index: 1;
}

/* Left Column - Scrolling Content */
.rooms-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.room-item {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 50px;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.room-item::before {
    content: '';
    position: absolute;
    left: 560px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(15, 66, 129, 0.15);
}

.room-item:nth-child(1) {
    animation-delay: 0.1s;
}

.room-item:nth-child(2) {
    animation-delay: 0.2s;
}

.room-item:nth-child(3) {
    animation-delay: 0.3s;
}

.room-item:nth-child(4) {
    animation-delay: 0.4s;
}

.room-item:nth-child(5) {
    animation-delay: 0.5s;
}

.room-item:nth-child(6) {
    animation-delay: 0.6s;
}

.room-item:nth-child(7) {
    animation-delay: 0.7s;
}

.room-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s ease;
}

.room-item:hover .room-image img {
    transform: scale(1.05);
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 24px;
}

.room-rating {
    display: flex;
    gap: 4px;
    font-size: 16px;
    color: #caab5e;
    margin-bottom: 4px;
}

.room-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #0f4281;
    line-height: 1.25;
    margin: 0;
}

.room-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #5a616a;
    margin: 0;
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 66, 129, 0.15);
}

.room-detail-item {
    display: flex;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
}

.room-detail-label {
    font-weight: 600;
    color: #0f4281;
}

.room-detail-value {
    color: #5a616a;
}

.room-amenities {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.room-amenity-badge {
    padding: 6px 14px;
    background-color: #caab5e;
    color: #0f4281;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    text-transform: uppercase;
}

.room-activities {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 66, 129, 0.15);
}

.room-activities-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: #0f4281;
    margin: 0 0 12px 0;
}

.room-activities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-activities-list li {
    font-family: var(--font-body);
    font-size: 14px;
    color: #5a616a;
    padding-left: 20px;
    position: relative;
}

.room-activities-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #caab5e;
    font-weight: 700;
    font-size: 18px;
}

/* Right Column - Sticky Content */
.rooms-sticky-content {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.rooms-sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 0 40px 60px;
    background: transparent;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    align-items: flex-end;
    text-align: right;
}

.rooms-sticky-contact {
    display: grid;
    gap: 20px;
    padding-top: 12px;
}

.rooms-eyebrow {
    font-family: 'Philosopher', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 66, 129, 0.25);
    width: fit-content;
}

.rooms-section--inverse .rooms-eyebrow {
    text-align: left;
    margin-left: 0;
}

.rooms-section:not(.rooms-section--inverse) .rooms-eyebrow {
    text-align: right;
    margin-left: auto;
}

.rooms-sticky-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #0f4281;
    line-height: 1.2;
    margin: 0;
}

.rooms-section--inverse .rooms-sticky-title {
    text-align: left;
}

.rooms-section:not(.rooms-section--inverse) .rooms-sticky-title {
    text-align: right;
}

.rooms-sticky-description {
    font-family: 'Sentient', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6b6b6b;
    margin: 0;
    max-width: 460px;
}

.rooms-section--inverse .rooms-sticky-description {
    text-align: left;
    margin-left: 0;
}

.rooms-section:not(.rooms-section--inverse) .rooms-sticky-description {
    text-align: right;
    margin-left: auto;
}

.rooms-sticky-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 16px;
}

.rooms-sticky-image.curated-destinations-desktop {
    aspect-ratio: 1/1;
    margin-bottom: 5px;
}

.rooms-sticky-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rooms-sticky-image.curated-destinations-desktop img {
    cursor: zoom-in;
}

.rooms-sticky-image.rooms-intro-desktop-slider {
    aspect-ratio: 1/1;
}

.slider-caption {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5a626f;
    margin-top: 4px;
    letter-spacing: 0.5px;
    font-style: italic;
    opacity: 0.9;
}

/* ========================================
   Panoramic Views Carousel
======================================== */
.views {
    min-height: 80vh;
    background: #ffffff;
}

.views-container {
    display: grid;
    grid-template-columns: 70% 30%;
    min-height: 80vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.views-carousel {
    position: relative;
    height: 80vh;
    overflow: hidden;
    user-select: none;
    cursor: grab;
}

.views-carousel.dragging {
    cursor: grabbing;
}

.views-carousel.dragging .views-slide img {
    pointer-events: none;
}

.views-carousel__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.views-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.views-slide.active {
    opacity: 1;
    z-index: 1;
}

.views-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.views-carousel__controls {
    position: absolute;
    bottom: 32px;
    right: 32px;
    transform: none;
    display: flex;
    z-index: 5;
    gap: 12px;
}

.views-control {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.views-control+.views-control {
    margin-left: 0;
}

.views-control:hover {
    transform: translateY(-1px) scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.views-content {
    background: #0f4281;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 80vh;
    padding: 60px 80px 80px 100px;
}

.views-content__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
    width: 100%;
    margin-left: auto;
    text-align: right;
    align-items: flex-end;
}

.views-section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 32px 0;
    text-align: right;
    max-width: 100%;
    width: 100%;
    order: -1;
}

.views-title {
    font-family: var(--font-heading);
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.6px;
    color: #ffffff;
}

.views-quote-author {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin: 0;
}

.views-description {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 0.2px;
    color: rgba(26, 26, 26, 0.85);
    margin: 0;
}

.rooms-availability-link svg {
    transition: transform 0.3s ease;
}

.rooms-availability-link:hover svg {
    transform: translateX(4px);
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: #f8f9fa;
    padding: 160px 0;
}

.contact-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 110px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 110px;
    align-items: start;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 90px 90px;
    box-shadow: 0 40px 90px rgba(139, 96, 72, 0.15);
}

.contact-form-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #0f4281;
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-field label {
    font-family: 'Philosopher', sans-serif;
    font-size: 14px;
    letter-spacing: 0.6px;
    color: #0f4281;
}

.contact-form-field input,
.contact-form-field textarea,
.contact-form-field select {
    font-family: 'Sentient', serif;
    font-size: 15px;
    color: #333333;
    background: transparent;
    border: 1px solid rgba(15, 66, 129, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-field input[type="date"] {
    position: relative;
}

.contact-form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238b6048' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus,
.contact-form-field select:focus {
    outline: none;
    border-color: #0f4281;
    color: #322b27;
    box-shadow: 0 0 0 4px rgba(15, 66, 129, 0.15);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-fieldset legend {
    font-family: 'Philosopher', sans-serif;
    font-size: 14px;
    letter-spacing: 0.6px;
    color: #0f4281;
}

.contact-radio-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
}

.contact-radio-group--inline {
    display: flex;
    gap: 32px;
}

.contact-checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 24px;
}

.radio-option,
.checkbox-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sentient', serif;
    font-size: 15px;
    color: #333333;
    cursor: pointer;
}

.radio-option input,
.checkbox-option input {
    accent-color: #0f4281;
    width: 16px;
    height: 16px;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form-note {
    font-family: 'Sentient', serif;
    font-size: 12px;
    color: #666666;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    background: #0f4281;
    color: #ffffff;
    font-family: 'Philosopher', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form-submit svg {
    transition: transform 0.3s ease;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 66, 129, 0.35);
    background: #0a2f5c;
}

.contact-form-submit:hover svg {
    transform: translateX(4px);
}

.contact-form-status {
    font-family: 'Sentient', serif;
    font-size: 14px;
    color: #567856;
    margin: 0;
    min-height: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    color: rgba(21, 17, 12, 0.85);
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    align-self: flex-start;
    height: fit-content;
    align-items: flex-start;
    text-align: left;
}

.contact-info-title {
    font-family: 'Philosopher', sans-serif;
    font-size: clamp(30px, 3.1vw, 44px);
    line-height: 1.15;
    color: #0f4281;
    margin: 0;
}

.contact-info-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.contact-agent-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(8, 33, 72, 0.15);
    align-items: flex-start;
    text-align: left;
}

.contact-agent-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0f4281;
    text-transform: uppercase;
    text-align: left;
    align-self: flex-start;
}

.contact-info-content {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    align-items: flex-start;
    align-self: flex-start;
}

.contact-info-content strong {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #333333;
}

.contact-info-content span {
    font-family: var(--font-body);
    font-size: 15px;
    color: #333333;
}

.contact-info-content a {
    font-family: var(--font-body);
    font-size: 15px;
    color: #333333;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #0f4281;
}

/* ========================================
   Map Section
======================================== */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

/* ========================================
   Terms and Conditions Section
======================================== */
.terms-section {
    padding: 140px 0;
    background: #ffffff;
    min-height: 100vh;
}

/* Terms Page - Dark Background Style */
body.terms-page-body {
    background-color: #0f4281;
}

body.terms-page-body .header {
    background-color: transparent;
    position: relative;
}

body.terms-page-body .header.scrolled {
    background-color: rgba(8, 33, 72, 0.95);
}

.terms-page {
    background: #0f4281 !important;
    padding: 180px 0 120px;
    min-height: 100vh;
}

.terms-page .terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.terms-page .terms-content {
    color: #ffffff;
}

.terms-page .terms-eyebrow {
    color: rgba(255, 255, 255, 0.6) !important;
    border-bottom: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.terms-page .terms-title {
    color: #ffffff !important;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.15;
    margin-bottom: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.terms-page .terms-intro {
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 72px;
    padding-bottom: 40px;
    max-width: 880px;
}

.terms-page .terms-section-content {
    margin-bottom: 64px;
}

.terms-page .terms-section-title {
    color: #ffffff !important;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 56px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.terms-page .terms-section-title:first-of-type {
    margin-top: 0;
}

.terms-page .terms-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.terms-page .terms-text:last-child {
    margin-bottom: 0;
}

.terms-page .terms-contact-info {
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid #caab5e;
    padding: 32px 40px;
    border-radius: 4px;
    margin: 48px 0;
}

.terms-page .terms-contact-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.terms-page .terms-contact-item:last-child {
    margin-bottom: 0;
}

.terms-page .terms-contact-item strong {
    color: #ffffff !important;
    font-weight: 600;
    margin-right: 8px;
}

.terms-page .terms-contact-item a {
    color: #caab5e !important;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(202, 171, 94, 0.3);
}

.terms-page .terms-contact-item a:hover {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.terms-page .terms-last-updated {
    color: rgba(255, 255, 255, 0.55) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 56px;
    padding-top: 32px;
    font-style: italic;
}

.terms-page .terms-last-updated strong {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    font-style: normal;
}

.terms-page .terms-back-link {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.terms-page .terms-back-btn {
    color: #caab5e !important;
    border-bottom: 1px solid rgba(202, 171, 94, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease, gap 0.3s ease, border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    padding-bottom: 4px;
}

.terms-page .terms-back-btn:hover {
    color: #ffffff !important;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    gap: 14px;
}

.terms-page .terms-back-btn svg {
    transition: transform 0.3s ease;
}

.terms-page .terms-back-btn:hover svg {
    transform: translateX(-4px);
}

/* Footer styles for terms page */
body.terms-page-body .footer {
    background-color: #0f4281;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.terms-page-body .footer-description,
body.terms-page-body .footer-title,
body.terms-page-body .footer-links a,
body.terms-page-body .footer-contact span,
body.terms-page-body .footer-copy {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.terms-page-body .footer-links a:hover,
body.terms-page-body .footer-contact a:hover {
    color: #caab5e !important;
}

body.terms-page-body .footer-back,
body.terms-page-body .footer-terms {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.terms-page-body .footer-back:hover,
body.terms-page-body .footer-terms:hover {
    color: #caab5e !important;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.terms-content {
    width: 100%;
}

.terms-eyebrow {
    font-family: 'Philosopher', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 66, 129, 0.25);
    width: fit-content;
}

.terms-title {
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.15;
    color: #0f4281;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.terms-intro {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: rgba(8, 33, 72, 0.8);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(15, 66, 129, 0.15);
}

.terms-section-content {
    margin-bottom: 48px;
}

.terms-section-title {
    font-family: 'Philosopher', sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    color: #0f4281;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.terms-section-title:first-of-type {
    margin-top: 0;
}

.terms-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.85;
    color: rgba(8, 33, 72, 0.75);
    margin-bottom: 20px;
}

.terms-text:last-child {
    margin-bottom: 0;
}

.terms-contact-info {
    background: rgba(15, 66, 129, 0.05);
    padding: 24px 32px;
    border-radius: 8px;
    margin: 32px 0;
    border-left: 3px solid var(--primary-color);
}

.terms-contact-item {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(8, 33, 72, 0.85);
    margin-bottom: 12px;
}

.terms-contact-item:last-child {
    margin-bottom: 0;
}

.terms-contact-item strong {
    font-weight: 600;
    color: #0f4281;
    margin-right: 8px;
}

.terms-contact-item a {
    color: #0f4281;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-contact-item a:hover {
    color: var(--secondary-color);
}

.terms-last-updated {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(8, 33, 72, 0.6);
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 66, 129, 0.15);
    font-style: italic;
}

.terms-last-updated strong {
    font-weight: 600;
    color: rgba(8, 33, 72, 0.8);
}

.terms-back-link {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 66, 129, 0.15);
}

.terms-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #0f4281;
    text-transform: uppercase;
    transition: color 0.3s ease, gap 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.terms-back-btn:hover {
    color: var(--secondary-color);
    gap: 16px;
}

.terms-back-btn svg {
    transition: transform 0.3s ease;
}

.terms-back-btn:hover svg {
    transform: translateX(-4px);
}

/* ========================================
   Mobile Scroll Animations
======================================== */
@media (max-width: 1024px) {

    /* Animación base para contenedores */
    .mobile-scroll-fade {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-scroll-fade.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Aplicar a secciones principales */
    .welcome,
    .experience-video,
    .rooms-mobile-highlight,
    .views-mobile-section,
    .curated-destinations-mobile,
    .contact {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .welcome.animate,
    .experience-video.animate,
    .rooms-mobile-highlight.animate,
    .views-mobile-section.animate,
    .curated-destinations-mobile.animate,
    .contact.animate {
        opacity: 1;
        transform: translateY(0);
    }

    /* Contenedores internos con delay escalonado */
    .welcome-container,
    .rooms-mobile-highlight__inner,
    .views-mobile-wrapper,
    .curated-mobile-container,
    .contact-container {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
            transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        transition-delay: 0.1s;
    }

    .welcome-container.animate,
    .rooms-mobile-highlight__inner.animate,
    .views-mobile-wrapper.animate,
    .curated-mobile-container.animate,
    .contact-container.animate {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
    Responsive Design
======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-list {
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(50px, 8vw, 90px);
    }

    .welcome {
        padding: 110px 0;
    }

    .terms-section {
        padding: 110px 0;
    }

    .terms-container {
        padding: 0 30px;
    }

    .welcome-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 32px;
    }

    .welcome-container::before {
        display: none;
    }

    .welcome-content {
        max-width: 100%;
    }

    .welcome-image-wrapper {
        margin-right: 0;
        max-width: 100%;
    }

    .experience-video .container {
        top: 40px;
        padding-left: 40px;
    }

    .experience-video__media-wrapper {
        height: 500px;
    }

    .rooms-section {
        padding: 100px 0;
    }

    /* ========================================
       SECCIÓN ROOMS GENERAL - MÓVIL
       ======================================== */
    .rooms-container {
        grid-template-columns: 1fr !important;
    }

    .rooms-sticky-content {
        order: -1;
    }

    /* ========================================
       VIEWS SECTION - Mostrar/Ocultar Versiones
       ======================================== */
    .views-desktop {
        display: none !important;
    }

    .views-mobile-section {
        display: block !important;
    }

    /* Ocultar versión desktop en móvil */
    .views.views-desktop {
        display: none !important;
    }

    /* ========================================
       ROOMS SECTION - Mostrar/Ocultar Versiones
       ======================================== */
    .rooms-desktop {
        display: none !important;
    }

    .rooms-mobile {
        display: block !important;
    }

    /* ========================================
       CURATED DESTINATIONS - Mostrar/Ocultar Versiones
       ======================================== */
    .curated-destinations-desktop {
        display: none !important;
    }

    .curated-destinations-mobile {
        display: block !important;
    }

    /* Asegurar que la versión móvil tenga el padding correcto */
    .curated-destinations-mobile.rooms-section,
    .curated-destinations-mobile.rooms-section--inverse {
        padding: 100px 0 !important;
        display: block !important;
        background: #ffffff !important;
        position: relative !important;
        overflow: visible !important;
        min-height: auto !important;
        height: auto !important;
    }

    /* Asegurar que el contenedor móvil sea visible */
    .curated-destinations-mobile .curated-mobile-container {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Asegurar que la versión desktop esté oculta en móvil */
    .curated-destinations-desktop {
        display: none !important;
    }

    /* Ajustar el contenedor móvil en pantallas pequeñas */
    .curated-mobile-container {
        padding: 0 20px 40px !important;
        display: block !important;
    }

    /* Ocultar cualquier elemento de rooms-container en la versión móvil */
    .curated-destinations-mobile .rooms-container {
        display: none !important;
    }

    /* ========================================
       SECCIÓN CURATED DESTINATIONS - MÓVIL
       Solo afecta a esta sección específica
       ======================================== */
    /* Asegurar que la versión móvil NO use los estilos de rooms-section--inverse */
    .curated-destinations-mobile.rooms-section--inverse {
        display: block !important;
        padding: 100px 0 !important;
        background: #ffffff !important;
    }

    .curated-destinations-mobile.rooms-section--inverse .rooms-container {
        display: none !important;
    }

    .curated-destinations-mobile .curated-mobile-container {
        display: block !important;
        visibility: visible !important;
    }

    /* Estilos para la versión desktop (solo cuando NO es móvil) */
    .rooms-section--inverse:not(.curated-destinations-mobile) .rooms-container {
        grid-template-columns: 1fr !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .rooms-sticky-content {
        order: -1 !important;
        position: relative !important;
        top: 0 !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .rooms-sticky-wrapper {
        padding: 0 !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .rooms-scroll-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 60px !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .room-item {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .room-image {
        order: 1 !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .room-info {
        order: 2 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .rooms-section--inverse:not(.curated-destinations-mobile) .room-item::before {
        display: none !important;
    }

    .contact {
        padding: 120px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 50px;
    }

    .contact-form-card {
        padding: 70px 60px;
    }

    /* Ocultar footer desktop en móvil */
    .footer-desktop {
        display: none !important;
    }

    /* Mostrar footer móvil */
    .footer-mobile {
        display: block !important;
    }

    /* Estilos del footer móvil */
    .footer-top-mobile {
        padding: 30px 30px 30px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-columns-mobile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-column-menu-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-column-contact-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-column-contact-mobile .footer-title {
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 12px;
    }

    .footer-contact-icon {
        display: none !important;
    }

    .footer-top {
        padding: 40px 40px 40px;
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }

    .footer-top>* {
        border-left: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-brand {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    /* Crear contenedor para las 2 columnas: MENU (todos los links) y CONTACT */
    .footer-column--explore {
        position: relative;
        width: calc(50% - 15px);
        margin-right: 30px;
        display: inline-block;
        vertical-align: top;
    }

    .footer-column--explore .footer-title,
    .footer-column--plan .footer-title {
        display: none;
    }

    /* Plan se muestra dentro del mismo espacio que Explore (debajo de los links de Explore) */
    .footer-column--plan {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .footer-column--plan .footer-links {
        margin-top: 0;
        padding-top: 0;
    }

    .footer-column--contact {
        width: calc(50% - 15px);
        display: inline-block;
        vertical-align: top;
        margin-top: 0;
    }

    .footer-column--contact .footer-title {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Ocultar iconos de contacto en móvil */
    .footer-contact-icon {
        display: none !important;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }

    .footer-column,
    .footer-column--contact {
        align-items: flex-start;
        text-align: left;
    }

    .footer-column--contact {
        align-items: flex-start;
    }

    .footer-text-watermark {
        display: none !important;
    }

    .footer-giant-text {
        display: none !important;
    }

    .footer-watermark-label {
        display: none !important;
    }

    .footer-back {
        display: none !important;
    }

    .footer-bottom {
        padding: 10px 40px;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px;
        text-align: center;
        align-items: center;
    }

    .footer-bottom .footer-copy {
        order: 1;
        width: 100%;
        justify-self: center !important;
    }

    .footer-bottom .footer-terms {
        order: 2;
        width: 100%;
        justify-self: center !important;
    }

    .contact-info {
        padding-top: 0;
        position: static;
    }

    .contact-checkbox-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-radio-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-radio-group--inline {
        gap: 24px;
        flex-wrap: wrap;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-title {
        font-size: clamp(28px, 8vw, 38px);
    }

    .contact-agent-card {
        align-items: flex-start;
        text-align: left;
    }

    .contact-agent-details {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .contact-info-item {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .terms-section {
        padding: 80px 0;
    }

    .terms-page {
        padding: 120px 0 80px !important;
    }

    .terms-page .terms-container {
        padding: 0 24px !important;
    }

    .terms-page .terms-title {
        font-size: clamp(36px, 9vw, 56px) !important;
        margin-bottom: 24px !important;
    }

    .terms-page .terms-eyebrow {
        font-size: 11px !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 16px !important;
    }

    .terms-page .terms-intro {
        font-size: 16px !important;
        margin-bottom: 48px !important;
        padding-bottom: 28px !important;
    }

    .terms-page .terms-section-title {
        font-size: clamp(22px, 5.5vw, 30px) !important;
        margin-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .terms-page .terms-text {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .terms-page .terms-contact-info {
        padding: 24px 28px !important;
        margin: 32px 0 !important;
    }

    .terms-page .terms-contact-item {
        font-size: 15px !important;
    }

    .terms-page .terms-last-updated {
        font-size: 13px !important;
        margin-top: 40px !important;
        padding-top: 24px !important;
    }

    .terms-page .terms-back-link {
        margin-top: 48px !important;
        padding-top: 32px !important;
    }

    .terms-page .terms-back-btn {
        font-size: 12px !important;
        letter-spacing: 1.8px !important;
    }

    .contact-info-label {
        text-align: left;
        align-self: flex-start;
    }

    .contact-info-content {
        text-align: left;
        align-items: flex-start;
        align-self: flex-start;
    }

    .footer-text-watermark {
        display: none !important;
    }

    .footer-giant-text {
        display: none !important;
    }

    .footer-watermark-label {
        display: none !important;
    }

    .footer-back {
        display: none !important;
    }

    .footer-bottom {
        padding: 10px 30px;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom .footer-copy {
        order: 1;
        width: 100%;
        justify-self: center !important;
    }

    .footer-bottom .footer-terms {
        order: 2;
        width: 100%;
        justify-self: center !important;
    }

    /* ========================================
       SECCIÓN ROOMS GENERAL - MÓVIL (continuación)
       ======================================== */
    .rooms-container {
        padding: 0 40px;
        gap: 60px;
    }

    .rooms-scroll-content {
        gap: 60px;
    }

    .room-item {
        grid-template-columns: 1fr !important;
    }

    .room-item::before {
        display: none;
    }

    .room-image {
        height: 420px;
    }

    .room-title {
        font-size: 24px;
    }

    .room-info {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .rooms-sticky-wrapper {
        position: relative;
        top: 0;
        padding: 0;
    }

    .rooms-sticky-title {
        font-size: 40px;
    }

    .rooms-sticky-image {
        height: 300px;
    }

    .views {
        padding: 0 !important;
        margin: 0 !important;
    }

    .views-container {
        grid-template-columns: 1fr;
        min-height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }

    .views-carousel {
        height: 65vh;
        margin: 0;
        padding: 0;
    }

    .views-content {
        min-height: auto !important;
        padding: 30px 30px !important;
        margin: 0 !important;
    }

    .views-content__inner {
        margin: 0 auto;
    }
}

/* Estilos del footer móvil - Base */
.footer-top-mobile {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-brand-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-columns-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column-menu-mobile,
.footer-column-contact-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-column-contact-mobile .footer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-mobile .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12px;
}

.footer-mobile .footer-contact-icon {
    display: none !important;
}

@media (max-width: 768px) {

    /* Asegurar que la versión móvil esté visible */
    .curated-destinations-mobile {
        display: block !important;
    }

    .curated-destinations-desktop {
        display: none !important;
    }

    .curated-destinations-mobile.rooms-section {
        padding: 80px 0 !important;
        display: block !important;
        background: #ffffff !important;
    }

    .header-logo-section {
        padding: 25px 0 15px 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 10001;
        margin-left: auto;
        position: relative;
    }

    .header-nav-section {
        padding: 22px 0;
        gap: 20px;
    }

    .header.scrolled .header-nav-section {
        padding: 18px 0;
    }

    .header-left-controls {
        margin-right: 0;
    }

    /* Mobile Menu Overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(8, 33, 72, 0.95);
        backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        z-index: 9998;
    }

    .nav.active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background-color: transparent;
        padding: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0.4s,
            transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999 !important;
        pointer-events: none;
    }

    .nav.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1);
        pointer-events: auto !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 32px;
        padding: 60px 40px;
        background: rgba(15, 66, 129, 0.98);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        max-width: 90%;
        width: 100%;
        max-width: 400px;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        position: relative;
        z-index: 10000;
        list-style: none;
    }

    .nav.active .nav-list {
        opacity: 1 !important;
        transform: translateY(0);
        display: flex !important;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 2px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateX(-20px);
    }

    .nav.active .nav-link {
        opacity: 1 !important;
        transform: translateX(0);
        animation: slideInLeft 0.5s ease forwards;
    }

    .nav.active .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav.active .nav-link:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav.active .nav-link:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav.active .nav-link:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav.active .nav-link:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav.active .nav-link:nth-child(6) {
        animation-delay: 0.35s;
    }

    .nav.active .nav-link:nth-child(7) {
        animation-delay: 0.4s;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
        letter-spacing: 2.5px;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .header-cta {
        display: none;
    }

    .hero-content {
        padding: 280px 0 180px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 70px);
    }

    .hero-description {
        font-size: clamp(22px, 6.8vw, 36px);
        line-height: 1.15;
        letter-spacing: 2px;
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .hero-description span:not(.hero-description-last-line) {
        display: block;
        margin-bottom: 4px;
    }

    .hero-description-last-line {
        margin-top: -8px;
    }

    .hero-description-last-line {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 12px;
    }

    .hero-text-coming {
        display: block;
    }

    .hero-cta-wrapper {
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 32px;
        width: 100%;
        display: flex;
    }

    .btn-hero-reserve {
        padding: 20px 40px;
        font-size: 16px;
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
        max-width: 280px;
    }

    .hero-copy {
        font-size: 16px;
        padding: 0 24px;
        max-width: 100%;
    }

    .welcome {
        padding: 90px 0;
    }

    .welcome-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .welcome-container::before {
        display: none;
    }

    .welcome-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .welcome-text {
        font-size: 16px;
    }

    .welcome-media::before {
        display: none;
    }

    .welcome-image-wrapper {
        margin-right: 0;
        max-width: 100%;
    }

    .experience-video .container {
        top: 30px;
        padding-left: 30px;
    }

    .experience-video__media-wrapper {
        height: 420px;
    }

    .experience-video__title {
        font-size: clamp(32px, 7vw, 48px);
        letter-spacing: 2px;
        line-height: 1.25;
        max-width: 90%;
    }

    .rooms-section {
        padding: 80px 0;
    }

    .rooms-container {
        grid-template-columns: 1fr !important;
        padding: 0 30px;
        gap: 80px;
    }

    .rooms-section--inverse .rooms-container {
        grid-template-columns: 1fr !important;
    }

    .rooms-scroll-content {
        gap: 50px;
    }

    .room-item {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .rooms-section--inverse .room-item {
        grid-template-columns: 1fr !important;
    }

    .rooms-section--inverse .room-image {
        order: 1;
    }

    .rooms-section--inverse .room-info {
        order: 2;
        padding-left: 0;
        padding-right: 0;
    }

    .room-item::before {
        display: none;
    }

    .room-image {
        height: 280px;
    }

    .room-title {
        font-size: 26px;
    }

    .room-description {
        font-size: 15px;
    }

    .room-info {
        padding-left: 0;
    }

    .rooms-sticky-content {
        order: -1;
    }

    .rooms-section--inverse .rooms-sticky-content {
        order: -1;
    }

    .rooms-sticky-wrapper {
        position: relative;
        top: 0;
        padding: 0;
    }

    .rooms-section--inverse .rooms-sticky-wrapper {
        padding: 0;
        align-items: flex-start;
        text-align: left;
    }

    .rooms-sticky-title {
        font-size: 36px;
    }

    .rooms-sticky-image {
        height: 280px;
    }

    .views {
        padding: 0 !important;
        margin: 0 !important;
    }

    .views-container {
        margin: 0 !important;
        padding: 0 !important;
    }

    .views-carousel {
        height: 55vh;
        margin: 0 !important;
        padding: 0 !important;
    }

    .views-carousel__controls {
        bottom: 24px;
        right: 24px;
        gap: 12px;
    }

    .views-control {
        width: 48px;
        height: 48px;
    }

    .views-content {
        align-items: flex-start;
        padding: 20px 20px 20px !important;
        margin: 0 !important;
        min-height: auto !important;
    }

    .views-content__inner {
        margin: 0 !important;
        padding: 0 !important;
    }

    .views-section-title {
        margin-bottom: 16px !important;
    }

    .views-title {
        font-size: clamp(20px, 4.5vw, 26px);
    }

    .views-description {
        font-size: 14px;
    }

    .contact-container {
        padding: 0 24px;
    }

    .contact-form-card {
        padding: 55px 42px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer {
        padding: 40px 0 40px;
    }

    .footer-top {
        padding: 30px 30px 30px;
        display: flex !important;
        flex-direction: column;
        gap: 40px;
    }

    .footer-top>* {
        border-left: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-brand {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .footer-description {
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }

    /* Crear contenedor flex para las 2 columnas MENU y CONTACT */
    .footer-column--explore {
        width: calc(50% - 12px);
        margin-right: 24px;
        display: inline-block;
        vertical-align: top;
    }

    .footer-column--explore::before {
        content: 'MENU';
        display: block;
        font-family: var(--font-heading);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .footer-column--explore .footer-title,
    .footer-column--plan .footer-title {
        display: none;
    }

    .footer-column--explore {
        width: calc(50% - 12px);
        margin-right: 24px;
        display: inline-block;
        vertical-align: top;
    }

    .footer-column--explore .footer-title,
    .footer-column--plan .footer-title {
        display: none;
    }

    /* Plan se muestra dentro del mismo espacio que Explore (debajo de los links de Explore) */
    .footer-column--plan {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .footer-column--plan .footer-links {
        margin-top: 0;
        padding-top: 0;
    }

    .footer-column--contact {
        width: calc(50% - 12px);
        display: inline-block;
        vertical-align: top;
    }

    .footer-column--contact .footer-title {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Ocultar iconos de contacto en móvil */
    .footer-contact-icon {
        display: none !important;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0;
    }

    .footer-column,
    .footer-column--contact {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-links {
        align-items: flex-start;
        text-align: left;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
    }

    .rooms-sticky-wrapper {
        padding: 0 20px 40px;
    }

    .rooms-sticky-contact {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {

    /* Asegurar que la versión móvil esté visible */
    .curated-destinations-mobile {
        display: block !important;
    }

    .curated-destinations-desktop {
        display: none !important;
    }

    .curated-destinations-mobile.rooms-section {
        padding: 60px 0 !important;
        display: block !important;
        background: #ffffff !important;
    }

    .container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero-content {
        padding: 200px 0 140px;
    }

    .hero-title {
        font-size: clamp(35px, 10vw, 60px);
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: clamp(18px, 6.2vw, 30px);
        line-height: 1.15;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        padding: 0 16px;
    }

    .hero-description span:not(.hero-description-last-line) {
        display: block;
        margin-bottom: 3px;
    }

    .hero-description-last-line {
        margin-top: -6px;
    }

    .hero-description-last-line {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
    }

    .hero-text-coming {
        display: block;
    }

    .hero-cta-wrapper {
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 28px;
        width: 100%;
        display: flex;
    }

    .btn-hero-reserve {
        padding: 18px 36px;
        font-size: 14px;
        margin-left: 0;
        margin-top: 6px;
        width: 100%;
        max-width: 260px;
        letter-spacing: 1.5px;
    }

    .hero-copy {
        font-size: 15px;
        padding: 0 20px;
        line-height: 1.6;
    }

    .btn-schedule {
        padding: 12px 24px;
        font-size: 11px;
    }

    .welcome {
        padding: 70px 0;
    }

    .welcome-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 20px;
    }

    .welcome-container::before {
        display: none;
    }

    .welcome-media::before {
        display: none;
    }

    .welcome-link {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .welcome-image-wrapper {
        margin-right: 0;
        max-width: 100%;
    }

    .experience-video .container {
        top: 24px;
        padding-left: 20px;
    }

    .experience-video__media-wrapper {
        height: 350px;
    }

    .experience-video__title {
        font-size: clamp(24px, 8vw, 36px);
        letter-spacing: 1.5px;
        line-height: 1.25;
        max-width: 90%;
    }

    .rooms-section {
        padding: 60px 0;
    }

    .rooms-container {
        grid-template-columns: 1fr !important;
        padding: 0 20px;
        gap: 40px;
    }

    .rooms-section--inverse .rooms-container {
        grid-template-columns: 1fr !important;
    }

    .rooms-scroll-content {
        gap: 48px;
    }

    .room-item {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .rooms-section--inverse .room-item {
        grid-template-columns: 1fr !important;
    }

    .rooms-section--inverse .room-image {
        order: 1;
    }

    .rooms-section--inverse .room-info {
        order: 2;
        padding-left: 0;
        padding-right: 0;
    }

    .room-image {
        height: 300px;
    }

    .room-info {
        padding-left: 0;
    }

    .rooms-sticky-content {
        order: -1;
    }

    .rooms-section--inverse .rooms-sticky-content {
        order: -1;
    }

    .rooms-sticky-wrapper {
        position: static;
        padding: 0 20px 40px;
    }

    .rooms-section--inverse .rooms-sticky-wrapper {
        padding: 0 20px 40px;
        align-items: flex-start;
        text-align: left;
    }

    .rooms-sticky-image {
        height: 240px;
    }

    .rooms-sticky-contact {
        grid-template-columns: 1fr;
    }

    .views-container {
        grid-template-columns: 1fr;
        min-height: 100vh;
    }

    .views-carousel {
        height: 40vh;
    }

    .views-content {
        min-height: auto;
        padding: 32px 20px 40px;
    }

    .views-title {
        font-size: clamp(18px, 4.6vw, 24px);
    }

    .views-description {
        font-size: 13px;
    }

    .views-carousel__controls {
        bottom: 18px;
        right: 20px;
        gap: 8px;
    }

    .views-control {
        width: 40px;
        height: 40px;
    }
}


/* ========================================
   Views Section - Versiones Desktop y Móvil
======================================== */
/* Versión Desktop - Visible por defecto */
.views-desktop {
    display: block !important;
}

/* Versión Móvil - Oculto por defecto */
.views-mobile {
    display: none !important;
}

/* ========================================
   Rooms Section - Versiones Desktop y Móvil
======================================== */
/* Versión Desktop - Visible por defecto */
.rooms-desktop {
    display: block;
}

/* Versión Móvil - Oculto por defecto */
.rooms-mobile {
    display: none !important;
    background: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    overflow: visible !important;
}

/* ========================================
   Rooms Section - Nueva versión móvil (independiente)
======================================== */
.rooms-mobile-v2 {
    display: none;
    background: #ffffff;
    padding: 0;
    margin: 0;
}

.rooms-mobile-v2__intro {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    text-align: left;
}

.rooms-mobile-v2__eyebrow {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0f4281;
    display: block;
    margin-bottom: 12px;
}

.rooms-mobile-v2__title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.2;
    color: #0f4281;
    margin-bottom: 18px;
}

.rooms-mobile-v2__description {
    font-size: 16px;
    line-height: 1.8;
    color: #5a616a;
    margin-bottom: 30px;
}

.rooms-mobile-v2__intro-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.rooms-mobile-v2__intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rooms-mobile-v2__carousel-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
}

.rooms-mobile-v2__carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px 50px;
    overflow: hidden !important;
    touch-action: pan-y;
}

.rooms-mobile-v2__carousel {
    display: flex !important;
    gap: 0;
    transition: transform 0.35s ease;
    will-change: transform;
    position: relative;
    width: 100%;
}

.rooms-mobile-v2__slide {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.rooms-mobile-v2__slide-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 0;
    flex-shrink: 0;
}

.rooms-mobile-v2__slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rooms-mobile-v2__slide-info {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px 28px;
    background: #ffffff;
}

.rooms-mobile-v2__slide-rating {
    font-size: 18px;
    letter-spacing: 4px;
    color: #caab5e;
    margin-bottom: 8px;
    text-align: center;
}

.rooms-mobile-v2__slide-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #0f4281;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.rooms-mobile-v2__slide-description {
    font-size: 15px;
    line-height: 1.7;
    color: #5a616a;
    margin: 0;
}

.rooms-mobile-v2__dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px auto 0;
    padding: 0 20px;
    visibility: visible !important;
    opacity: 1 !important;
}

.rooms-mobile-v2__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 66, 129, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.rooms-mobile-v2__dot.is-active {
    background: #0f4281;
    width: 28px;
    border-radius: 5px;
}

@media screen and (max-width: 1024px) {
    .rooms-desktop {
        display: none !important;
    }

    .rooms-mobile-v2 {
        display: block;
    }
}

/* Asegurar que rooms-mobile no herede estilos de rooms-section */
.rooms-section.rooms-mobile {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    position: relative !important;
    overflow: visible !important;
    min-height: auto !important;
    height: auto !important;
}

/* ========================================
   Curated Destinations - Versiones Desktop y Móvil
======================================== */
/* Versión Desktop - Visible por defecto (solo desktop) */
.curated-destinations-desktop {
    display: block;
}

/* Versión Móvil - Oculto por defecto (se mostrará en media queries móviles) */
.curated-destinations-mobile {
    display: none;
    background: #ffffff;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: visible;
}

/* Forzar visibilidad en móvil - regla base para todos los tamaños móviles */
@media screen and (max-width: 1024px) {

    section.curated-destinations-mobile,
    .curated-destinations-mobile,
    .rooms-section.curated-destinations-mobile,
    .rooms-section--inverse.curated-destinations-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #ffffff !important;
        padding: 100px 0 !important;
        position: relative !important;
        overflow: visible !important;
        min-height: auto !important;
        height: auto !important;
    }

    .curated-destinations-mobile .curated-mobile-container,
    .curated-destinations-mobile .curated-mobile-header,
    .curated-destinations-mobile .curated-mobile-carousel-wrapper,
    .curated-destinations-mobile .curated-mobile-controls {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .curated-destinations-mobile .rooms-container {
        display: none !important;
    }

    .curated-destinations-desktop {
        display: none !important;
    }
}

/* ========================================
   Curated Destinations - Carrusel Móvil
======================================== */
.curated-mobile-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px 40px;
    width: 100%;
    background: #ffffff;
}

.curated-mobile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.curated-mobile-header .rooms-eyebrow {
    display: block;
    margin-bottom: 12px;
}

.curated-mobile-header .rooms-sticky-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 20px;
    color: #0f4281;
}

.curated-mobile-header .rooms-sticky-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a616a;
    max-width: 600px;
    margin: 0 auto 30px;
}

.curated-mobile-header-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.curated-mobile-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.curated-mobile-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden !important;
    touch-action: pan-x;
    display: block !important;
    visibility: visible !important;
}

.curated-mobile-carousel {
    display: flex !important;
    gap: 0;
    transition: transform 0.3s ease;
    will-change: transform;
    position: relative;
    width: 100%;
    min-height: 1px;
    transform: translateX(0);
}

.curated-mobile-slide {
    min-width: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.curated-mobile-slide .room-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.curated-mobile-slide .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.curated-mobile-slide .room-info {
    padding: 0;
    width: 100%;
    flex-shrink: 0;
}

.curated-mobile-slide .room-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.curated-mobile-slide .room-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.curated-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.curated-mobile-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.curated-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 66, 129, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.curated-mobile-dot.active {
    background: #0f4281;
    width: 24px;
    border-radius: 5px;
}

/* ========================================
   Views Section - Versión Móvil (Nueva desde cero)
======================================== */
.views-mobile-section {
    padding: 0;
    margin: 0;
    background: #ffffff;
    width: 100%;
    display: none;
}

.views-mobile-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.views-mobile-image-container {
    position: relative;
    width: 100%;
    height: 55vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.views-mobile-slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.views-mobile-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.views-mobile-slide-item.active {
    opacity: 1;
    z-index: 1;
}

.views-mobile-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.views-mobile-nav {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.views-mobile-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.views-mobile-nav-btn:hover {
    transform: translateY(-1px) scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.views-mobile-text-container {
    background: #0f4281;
    width: 100%;
    margin: 0;
    padding: 50px 20px;
    display: block;
}

.views-mobile-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: left;
}

.views-mobile-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.views-mobile-quote {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.6px;
    color: #ffffff;
    margin: 0;
}

.views-mobile-author {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin: 0;
}

/* ========================================
   Rooms Section - Carrusel Móvil
======================================== */
.rooms-mobile-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 80px 20px 40px;
    width: 100%;
    display: block !important;
}

.rooms-mobile-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.rooms-mobile-header .rooms-eyebrow {
    display: block;
    margin-bottom: 12px;
}

.rooms-mobile-header .rooms-sticky-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 20px;
    color: #0f4281;
}

.rooms-mobile-header .rooms-sticky-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a616a;
    max-width: 600px;
    margin: 0 auto 30px;
}

.rooms-mobile-header-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.rooms-mobile-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rooms-mobile-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-x;
    display: block !important;
}

.rooms-mobile-carousel {
    display: flex !important;
    gap: 0;
    transition: transform 0.3s ease;
    will-change: transform;
    position: relative;
    width: 100%;
}

.rooms-mobile-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.rooms-mobile-slide .room-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.rooms-mobile-slide .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rooms-mobile-slide .room-info {
    padding: 0;
    width: 100%;
    flex-shrink: 0;
}

.rooms-mobile-slide .room-rating {
    display: flex;
    gap: 4px;
    font-size: 16px;
    color: #caab5e;
    margin-bottom: 4px;
}

.rooms-mobile-slide .room-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #0f4281;
    line-height: 1.25;
    margin: 0 0 12px 0;
}

.rooms-mobile-slide .room-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #5a616a;
    margin: 0 0 16px 0;
}

.rooms-mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-mobile-dots {
    display: flex !important;
    gap: 8px;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.rooms-mobile-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 66, 129, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.rooms-mobile-dot.active {
    background: #0f4281;
    width: 24px;
    border-radius: 5px;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #0f4281;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Mobile - Solo visible en móvil */
.footer-mobile {
    display: none;
}

/* Footer Desktop - Solo visible en desktop */
.footer-desktop {
    display: block;
}

/* Estilos base del footer móvil */
.footer-top-mobile {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-brand-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.footer-columns-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column-menu-mobile,
.footer-column-contact-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-column-contact-mobile .footer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-mobile .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12px;
}

.footer-mobile .footer-contact-icon {
    display: none !important;
}

.footer-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 60px 60px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 60px;
    position: relative;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-top>*:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 40px;
}

.footer-top>*:first-child {
    padding-right: 40px;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-description {
    font-family: 'Sentient', serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 320px;
}

.footer-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    font-family: 'Sentient', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 2.2;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-family: 'Sentient', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(202, 171, 94, 0.15);
    color: #caab5e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    margin: 0;
}

.footer-text-watermark {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: -1px auto 0;
}

.footer-watermark-label {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    font-family: 'Philosopher', sans-serif;
    font-size: 18px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.footer-text-watermark::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.footer-giant-text {
    font-family: 'Philosopher', sans-serif;
    font-size: clamp(140px, 15vw, 220px);
    font-weight: 700;
    letter-spacing: 20px;
    color: rgba(255, 255, 255, 0.08);
    opacity: 0.3;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    transform: translateY(14px);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: center;
    gap: 40px;
    font-family: 'Philosopher', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .footer-copy {
    justify-self: flex-start;
}

.footer-bottom .footer-terms {
    justify-self: flex-end;
}

.footer-copy {
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-back svg {
    fill: currentColor;
}

.footer-back:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-terms {
    font-family: 'Philosopher', sans-serif;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-terms:hover {
    color: #ffffff;
}

/* ========================================
   Image Lightbox
======================================== */
body.modal-open {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
    padding: 40px;
}

.image-lightbox.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox__image {
    max-width: min(1200px, 90vw);
    max-height: 88vh;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

.image-lightbox__close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.05);
}