/* Estilos para la página de galería con fondo transparente */

/* Hacer que el fondo del body tenga la imagen de fondo */
body.landing #page-wrapper {
    background-image: url("../../images/bannernoche.jpg") !important;
    background-attachment: fixed !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative !important;
    z-index: 0 !important;
}

/* Eliminar el overlay en toda la página */
body.landing #page-wrapper::before {
    content: none !important; /* Desactivamos el pseudo-elemento */
}

/* Asegurar que el wrapper no tenga fondo sólido pero mantenga su estructura */
.wrapper {
    background-color: transparent !important;
}

/* Estilo específico para la sección de galería - con fondo blanco semitransparente */
#gallery {
    position: relative;
    z-index: 1;
    padding: 6em 0 4em 0;
    background-color: rgba(255, 255, 255, 0.85) !important; /* Fondo blanco con 85% de opacidad */
    width: 100% !important; /* Asegurar que ocupe todo el ancho */
    max-width: 100% !important; /* Eliminar cualquier restricción de ancho máximo */
    margin: 0 !important; /* Eliminar cualquier margen */
}

/* Cambiar el color del texto del encabezado para mejor contraste con fondo blanco */
#gallery .major h2 {
    color: #2e3842 !important; /* Color oscuro para el título */
}

#gallery .major p {
    color: #4E4852 !important; /* Color gris oscuro para el subtítulo */
}

/* Estilos para la cuadrícula de imágenes */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 3 columnas */
    grid-gap: 20px !important;
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Estilos para cada imagen de la galería */
.gallery-item {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    height: 0 !important;
    padding-bottom: 75% !important; /* Proporción 4:3 */
}

.gallery-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2) !important;
}

/* La imagen dentro del contenedor */
.gallery-item img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Para que la imagen cubra el contenedor sin deformarse */
    transition: transform 0.5s ease !important;
}

.gallery-item:hover img {
    transform: scale(1.05) !important; /* Efecto de zoom suave al pasar el cursor */
}

/* Títulos de las imágenes */
.gallery-caption {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 10px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    text-align: center !important;
}

.gallery-item:hover .gallery-caption {
    opacity: 1 !important;
}

/* Lightbox para imágenes ampliadas */
.lightbox {
    display: none;
    position: fixed !important;
    z-index: 10003 !important; /* Mayor que el menú hamburguesa (10002) */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    text-align: center !important;
}

.lightbox.active {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.lightbox-container {
    position: relative !important;
    display: inline-block !important;
}

.lightbox-content {
    max-width: 90vw !important;
    max-height: 80vh !important;
    display: block !important;
}

.lightbox-close {
    position: absolute !important;
    top: -15px !important; /* Posicionar en la esquina superior derecha de la imagen */
    right: -15px !important;
    font-size: 18px !important;
    color: white !important;
    cursor: pointer !important;
    z-index: 10004 !important; /* Mayor que el lightbox para asegurar que esté en la capa superior */
    background-color: rgba(46, 56, 66, 0.8) !important; /* Mismo color y transparencia que el header */
    border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Borde sutil como el header */
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important; /* Misma transición que el header */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important; /* Misma sombra que el header */
    font-weight: normal !important;
}

.lightbox-close:hover {
    background-color: rgba(46, 56, 66, 0.9) !important; /* Más opaco al hover, como el header */
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
    transform: scale(1.05) !important; /* Efecto sutil */
}

/* Botones de navegación (anterior/siguiente) */
.lightbox-prev,
.lightbox-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 0 !important; /* Ocultamos el texto para usar pseudo-elementos */
    color: white !important;
    cursor: pointer !important;
    z-index: 10004 !important;
    background-color: rgba(46, 56, 66, 0.8) !important; /* Mismo estilo que el botón cerrar */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    user-select: none !important;
    backdrop-filter: blur(10px) !important; /* Efecto de desenfoque elegante */
}

/* Flechas personalizadas con pseudo-elementos */
.lightbox-prev::before,
.lightbox-next::before {
    content: '';
    width: 12px !important;
    height: 12px !important;
    border-left: 2px solid white !important;
    border-bottom: 2px solid white !important;
    display: block !important;
}

.lightbox-prev::before {
    transform: rotate(45deg) !important; /* Flecha izquierda */
    margin-left: 3px !important; /* Centrar visualmente */
}

.lightbox-next::before {
    transform: rotate(-135deg) !important; /* Flecha derecha */
    margin-right: 3px !important; /* Centrar visualmente */
}

.lightbox-prev {
    left: -70px !important; /* Posicionar a la izquierda de la imagen */
}

.lightbox-next {
    right: -70px !important; /* Posicionar a la derecha de la imagen */
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(46, 56, 66, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Efecto de pulso sutil al hover */
.lightbox-prev:hover::before,
.lightbox-next:hover::before {
    border-color: rgba(255, 255, 255, 0.9) !important;
}

/* Corregir el comportamiento responsivo para pantallas medianas */
@media screen and (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columnas en tablets */
    }
    
    .lightbox-prev {
        left: -60px !important; /* Acercar un poco en tablets */
        width: 45px !important;
        height: 45px !important;
    }
    
    .lightbox-next {
        right: -60px !important; /* Acercar un poco en tablets */
        width: 45px !important;
        height: 45px !important;
    }
    
    .lightbox-prev::before,
    .lightbox-next::before {
        width: 10px !important;
        height: 10px !important;
    }
}

/* Corregir el comportamiento responsivo para pantallas pequeñas */
@media screen and (max-width: 736px) {
    .gallery-grid {
        grid-template-columns: 1fr !important; /* 1 columna en móviles */
    }
    
    /* Botones de navegación más grandes y MÁS TRANSPARENTES en móviles */
    .lightbox-prev,
    .lightbox-next {
        width: 50px !important; /* Más grandes para facilitar el toque */
        height: 50px !important;
        /* Posicionar sobre la imagen para mejor accesibilidad */
        top: 50% !important;
        transform: translateY(-50%) !important;
        background-color: rgba(46, 56, 66, 0.4) !important; /* MÁS TRANSPARENTE en móvil */
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(5px) !important; /* Menos desenfoque */
    }
    
    .lightbox-prev {
        left: 15px !important; /* Dentro del área visible */
    }
    
    .lightbox-next {
        right: 15px !important; /* Dentro del área visible */
    }
    
    .lightbox-prev::before,
    .lightbox-next::before {
        width: 12px !important; /* Flechas más grandes en móvil */
        height: 12px !important;
        border-width: 2px !important; /* Líneas más gruesas */
        border-color: rgba(255, 255, 255, 0.8) !important; /* Flechas semi-transparentes */
    }
    
    /* Botón de cerrar más grande, accesible y TRANSPARENTE */
    .lightbox-close {
        width: 40px !important; /* Más grande para facilitar el toque */
        height: 40px !important;
        font-size: 20px !important; /* X más visible */
        top: 15px !important; /* Posición más accesible */
        right: 15px !important;
        background-color: rgba(46, 56, 66, 0.5) !important; /* MÁS TRANSPARENTE en móvil */
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        color: rgba(255, 255, 255, 0.9) !important; /* X semi-transparente */
    }
    
    /* ELIMINAR pseudo-elementos problemáticos que bloquean clics */
    .lightbox-prev::after,
    .lightbox-next::after,
    .lightbox-close::after {
        display: none !important; /* No crear áreas de toque adicionales */
    }
    
    /* Efectos de toque para móviles - MÁS VISIBLES al presionar */
    .lightbox-prev:active,
    .lightbox-next:active {
        background-color: rgba(46, 56, 66, 0.8) !important; /* Más opaco al presionar */
        transform: translateY(-50%) scale(0.95) !important; /* Efecto de presión */
        border-color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .lightbox-prev:active::before,
    .lightbox-next:active::before {
        border-color: white !important; /* Flechas completamente blancas al presionar */
    }
    
    .lightbox-close:active {
        background-color: rgba(46, 56, 66, 0.8) !important; /* Más opaco al presionar */
        transform: scale(0.95) !important; /* Efecto de presión */
        color: white !important; /* X completamente blanca al presionar */
        border-color: rgba(255, 255, 255, 0.6) !important;
    }
}

/* Estilos adicionales para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .lightbox-content {
        max-width: 95vw !important;
        max-height: 75vh !important;
    }
    
    /* En pantallas muy pequeñas, botones ligeramente más pequeños pero AÚN MÁS TRANSPARENTES */
    .lightbox-prev,
    .lightbox-next {
        width: 45px !important;
        height: 45px !important;
        background-color: rgba(46, 56, 66, 0.3) !important; /* Aún más transparente */
    }
    
    .lightbox-prev {
        left: 10px !important;
    }
    
    .lightbox-next {
        right: 10px !important;
    }
    
    .lightbox-close {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
        top: 10px !important;
        right: 10px !important;
        background-color: rgba(46, 56, 66, 0.4) !important; /* Más transparente */
    }
}

/* Estilos para el header y footer */
#header {
    background-color: rgba(46, 56, 66, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

#header.alt {
    background-color: rgba(46, 56, 66, 0.5) !important;
}

#menu {
    background-color: rgba(33, 178, 166, 0.95) !important;
}

#footer {
    background-color: rgba(29, 36, 42, 0.9) !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 2em 0 !important;
}

/* Asegurar que los botones respondan al toque en móviles */
@media (hover: none) and (pointer: coarse) {
    /* Dispositivos táctiles */
    .lightbox-prev,
    .lightbox-next,
    .lightbox-close {
        -webkit-tap-highlight-color: transparent !important; /* Eliminar highlight azul en iOS */
        -webkit-touch-callout: none !important; /* Eliminar menú contextual en iOS */
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        user-select: none !important;
        touch-action: manipulation !important; /* Optimizar para toques */
    }
    
    /* Hacer botones aún más transparentes en dispositivos táctiles */
    .lightbox-prev,
    .lightbox-next {
        background-color: rgba(46, 56, 66, 0.3) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .lightbox-close {
        background-color: rgba(46, 56, 66, 0.4) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    /* Estados activos más visibles solo cuando se presiona */
    .lightbox-prev:active,
    .lightbox-next:active {
        background-color: rgba(46, 56, 66, 0.7) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }
    
    .lightbox-close:active {
        background-color: rgba(46, 56, 66, 0.7) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
    }
}

/* Asegurar que los estilos hover no interfieran en dispositivos táctiles */
@media (hover: hover) and (pointer: fine) {
    /* Solo aplicar hover en dispositivos con mouse */
    .lightbox-prev:hover,
    .lightbox-next:hover {
        background-color: rgba(46, 56, 66, 0.95) !important;
        border-color: rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
        transform: translateY(-50%) scale(1.1) !important;
    }
    
    .lightbox-close:hover {
        background-color: rgba(46, 56, 66, 0.9) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
        transform: scale(1.05) !important;
    }
}

/* Asegurar que el wrapper no tenga fondo sólido pero mantenga su estructura */
.wrapper {
    background-color: transparent !important;
}



/* ========================================
   SECCIÓN CINEMATOGRÁFICA DE HABITACIONES
   ======================================== */

/* Contenedor principal cinematográfico */
.cinematic-rooms {
    width: 100% !important;
    position: relative !important;
    margin-top: 0 !important;
    background: #000 !important;
}

/* ========== VIDEO HERO SECTION ========== */
.video-hero {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    margin-left: calc(-50vw + 50%) !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    object-fit: cover !important;
}

.video-gradient {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.8) 100%
    ) !important;
    z-index: 2 !important;
}

.video-content {
    position: relative !important;
    z-index: 3 !important;
    text-align: center !important;
    color: white !important;
    max-width: 800px !important;
    padding: 2em !important;
}

.video-content h2 {
    font-size: 4em !important;
    font-weight: 300 !important;
    margin-bottom: 1em !important;
    letter-spacing: 0.1em !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.video-content p {
    font-size: 1.5em !important;
    font-weight: 300 !important;
    margin-bottom: 3em !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

.scroll-indicator {
    position: absolute !important;
    bottom: 3em !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    animation: bounce 2s infinite !important;
}

.scroll-indicator span {
    display: block !important;
    margin-bottom: 0.5em !important;
    font-size: 0.9em !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.scroll-indicator i {
    font-size: 1.5em !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) !important;
    }
    40% {
        transform: translateX(-50%) translateY(-10px) !important;
    }
    60% {
        transform: translateX(-50%) translateY(-5px) !important;
    }
}

/* ========== ROOMS SHOWCASE ========== */
.rooms-showcase {
    background: linear-gradient(180deg, rgba(46, 56, 66, 0.95) 0%, rgba(46, 56, 66, 0.85) 100%) !important;
    padding: 0 !important;
    min-height: 100vh !important;
    width: 100% !important;
}

.room-slide {
    display: flex !important;
    min-height: 100vh !important;
    width: 100% !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.room-slide:nth-child(even) {
    flex-direction: row-reverse !important;
    background: linear-gradient(135deg, rgba(46, 56, 66, 0.9) 0%, rgba(46, 56, 66, 0.8) 100%) !important;
}

.room-slide:nth-child(odd) {
    background: linear-gradient(135deg, rgba(46, 56, 66, 0.95) 0%, rgba(46, 56, 66, 0.85) 100%) !important;
}

/* ========== ROOM IMAGE SECTION ========== */
.room-image {
    flex: 1 !important;
    height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.room-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    filter: brightness(0.8) contrast(1.1) !important;
}

.room-slide:hover .room-image img {
    transform: scale(1.05) !important;
    filter: brightness(0.9) contrast(1.2) !important;
}

.image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        45deg,
        rgba(46, 56, 66, 0.6) 0%,
        rgba(46, 56, 66, 0.2) 50%,
        rgba(46, 56, 66, 0.7) 100%
    ) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 2em !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.room-slide:hover .image-overlay {
    opacity: 1 !important;
}

.room-number {
    font-size: 4em !important;
    font-weight: 100 !important;
    color: rgba(255, 255, 255, 0.3) !important;
    line-height: 1 !important;
    font-family: 'Arial', sans-serif !important;
}

.expand-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(33, 178, 166, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.expand-btn:hover {
    background: rgba(33, 178, 166, 1) !important;
    transform: scale(1.1) !important;
}

/* ========== ROOM DETAILS SECTION ========== */
.room-details {
    flex: 1 !important;
    padding: 4em !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
}

.room-category {
    font-size: 0.8em !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: #33b2a6 !important;
    margin-bottom: 1em !important;
    font-weight: 500 !important;
}

.room-details h3 {
    font-size: 3.5em !important;
    font-weight: 300 !important;
    margin-bottom: 1em !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    background: linear-gradient(135deg, #ffffff, #cccccc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.room-details p {
    font-size: 1.3em !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2.5em !important;
    font-weight: 300 !important;
}

/* ========== AMENITIES SECTION ========== */
.amenities {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1em !important;
    margin-top: 1.5em !important;
}

/* Habitaciones con 6 amenities - 3 columnas x 2 filas */
.room-slide[data-room="double"] .amenities {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8em !important;
}

.amenity {
    display: flex !important;
    align-items: center !important;
    gap: 0.6em !important;
    padding: 0.6em !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    min-width: 120px !important; /* Ancho mínimo para uniformidad */
    min-height: 38px !important; /* Altura mínima uniforme */
    box-sizing: border-box !important;
}

.amenity:hover {
    background: rgba(33, 178, 166, 0.1) !important;
    border-color: rgba(33, 178, 166, 0.3) !important;
    transform: translateY(-2px) !important;
}

.amenity i {
    font-size: 1.2em !important;
    color: #33b2a6 !important;
    width: 20px !important;
    text-align: center !important;
}

.amenity span {
    font-size: 0.8em !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
    white-space: nowrap !important; /* Evitar salto de línea */
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important; /* Ocupar espacio disponible */
    line-height: 1.2 !important;
}

/* Texto más compacto para amenidades con textos largos */
.amenity span[data-translate*="view"] {
    font-size: 0.7em !important; /* Más pequeño para textos largos */
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 980px) {
    .video-content h2 {
        font-size: 3em !important;
    }
    
    .video-content p {
        font-size: 1.3em !important;
    }
    
    .room-details {
        padding: 3em !important;
    }
    
    .room-details h3 {
        font-size: 2.8em !important;
    }
    
    .amenities {
        grid-template-columns: 1fr !important;
    }
    
    /* Habitaciones dobles en tablets - 2 columnas */
    .room-slide[data-room="double"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 736px) {
    .video-hero {
        height: 80vh !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .cinematic-rooms {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .video-content h2 {
        font-size: 2.5em !important;
    }
    
    .video-content p {
        font-size: 1.1em !important;
    }
    
    .room-slide {
        flex-direction: column !important;
        min-height: auto !important;
        width: 100% !important;
    }
    
    .room-slide:nth-child(even) {
        flex-direction: column !important;
    }
    
    .room-image {
        height: 60vh !important;
        width: 100% !important;
    }
    
    .room-details {
        padding: 2em !important;
        width: 100% !important;
    }
    
    .room-details h3 {
        font-size: 2.2em !important;
    }
    
    .room-details p {
        font-size: 1.1em !important;
    }
    
    .room-number {
        font-size: 2.5em !important;
    }
    
    .amenities {
        gap: 1em !important;
    }
    
    /* Habitaciones dobles en móviles - 2 columnas */
    .room-slide[data-room="double"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6em !important;
    }
    
    .amenity {
        padding: 0.5em !important;
        gap: 0.5em !important;
        min-width: 100px !important; /* Ancho mínimo en móviles */
        min-height: 35px !important; /* Altura mínima en móviles */
    }
    
    .amenity i {
        font-size: 1em !important;
        width: 16px !important;
    }
    
    .amenity span {
        font-size: 0.75em !important;
    }
    
    /* Texto aún más compacto para amenidades largas en móviles */
    .amenity span[data-translate*="view"] {
        font-size: 0.65em !important;
    }
}

/* ========================================
   DIVISOR SIMPLE ENTRE SECCIONES
   ======================================== */

.section-divider {
    position: relative !important;
    width: 100% !important;
    height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1em !important;
}

.divider-line-simple {
    width: 60% !important;
    height: 1px !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(33, 178, 166, 0.3) 10%,
        rgba(33, 178, 166, 0.8) 50%,
        rgba(33, 178, 166, 0.3) 90%,
        transparent 100%
    ) !important;
    position: relative !important;
}

.divider-line-simple::before {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    background: rgba(33, 178, 166, 0.8) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 10px rgba(33, 178, 166, 0.5) !important;
}

.divider-label {
    color: #2e3842 !important;
    font-size: 0.9em !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 0.3em 1.5em !important;
    border-radius: 20px !important;
    border: 1px solid rgba(33, 178, 166, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================
   SECCIÓN CINEMATOGRÁFICA DE HABITACIONES
   ======================================== */

/* Contenedor principal cinematográfico */
.cinematic-rooms {
    width: 100% !important;
    position: relative !important;
    margin-top: 0 !important;
    background: #000 !important;
}

/* ========== VIDEO HERO SECTION ========== */
.video-hero {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    margin-left: calc(-50vw + 50%) !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    object-fit: cover !important;
}

.video-gradient {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.8) 100%
    ) !important;
    z-index: 2 !important;
}

.video-content {
    position: relative !important;
    z-index: 3 !important;
    text-align: center !important;
    color: white !important;
    max-width: 800px !important;
    padding: 2em !important;
}

.video-content h2 {
    font-size: 4em !important;
    font-weight: 300 !important;
    margin-bottom: 1em !important;
    letter-spacing: 0.1em !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.video-content p {
    font-size: 1.5em !important;
    font-weight: 300 !important;
    margin-bottom: 3em !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

.scroll-indicator {
    position: absolute !important;
    bottom: 3em !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    animation: bounce 2s infinite !important;
}

.scroll-indicator span {
    display: block !important;
    margin-bottom: 0.5em !important;
    font-size: 0.9em !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
}

.scroll-indicator i {
    font-size: 1.5em !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) !important;
    }
    40% {
        transform: translateX(-50%) translateY(-10px) !important;
    }
    60% {
        transform: translateX(-50%) translateY(-5px) !important;
    }
}

/* ========== ROOMS SHOWCASE ========== */
.rooms-showcase {
    background: linear-gradient(180deg, rgba(46, 56, 66, 0.95) 0%, rgba(46, 56, 66, 0.85) 100%) !important;
    padding: 0 !important;
    min-height: 100vh !important;
    width: 100% !important;
}

.room-slide {
    display: flex !important;
    min-height: 100vh !important;
    width: 100% !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.room-slide:nth-child(even) {
    flex-direction: row-reverse !important;
    background: linear-gradient(135deg, rgba(46, 56, 66, 0.9) 0%, rgba(46, 56, 66, 0.8) 100%) !important;
}

.room-slide:nth-child(odd) {
    background: linear-gradient(135deg, rgba(46, 56, 66, 0.95) 0%, rgba(46, 56, 66, 0.85) 100%) !important;
}

/* ========== ROOM IMAGE SECTION ========== */
.room-image {
    flex: 1 !important;
    height: 100vh !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.room-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    filter: brightness(0.8) contrast(1.1) !important;
}

.room-slide:hover .room-image img {
    transform: scale(1.05) !important;
    filter: brightness(0.9) contrast(1.2) !important;
}

.image-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
        45deg,
        rgba(46, 56, 66, 0.6) 0%,
        rgba(46, 56, 66, 0.2) 50%,
        rgba(46, 56, 66, 0.7) 100%
    ) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    padding: 2em !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.room-slide:hover .image-overlay {
    opacity: 1 !important;
}

.room-number {
    font-size: 4em !important;
    font-weight: 100 !important;
    color: rgba(255, 255, 255, 0.3) !important;
    line-height: 1 !important;
    font-family: 'Arial', sans-serif !important;
}

.expand-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(33, 178, 166, 0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.expand-btn:hover {
    background: rgba(33, 178, 166, 1) !important;
    transform: scale(1.1) !important;
}

/* ========== ROOM DETAILS SECTION ========== */
.room-details {
    flex: 1 !important;
    padding: 4em !important;
    color: white !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
}

.room-category {
    font-size: 0.8em !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: #33b2a6 !important;
    margin-bottom: 1em !important;
    font-weight: 500 !important;
}

.room-details h3 {
    font-size: 3.5em !important;
    font-weight: 300 !important;
    margin-bottom: 1em !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    background: linear-gradient(135deg, #ffffff, #cccccc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.room-details p {
    font-size: 1.3em !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2.5em !important;
    font-weight: 300 !important;
}

/* ========== AMENITIES SECTION ========== */
.amenities {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1em !important;
    margin-top: 1.5em !important;
}

/* Habitaciones con 6 amenities - 3 columnas x 2 filas */
.room-slide[data-room="double"] .amenities {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8em !important;
}

.amenity {
    display: flex !important;
    align-items: center !important;
    gap: 0.6em !important;
    padding: 0.6em !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    min-width: 120px !important;
    min-height: 38px !important;
    box-sizing: border-box !important;
}

.amenity:hover {
    background: rgba(33, 178, 166, 0.1) !important;
    border-color: rgba(33, 178, 166, 0.3) !important;
    transform: translateY(-2px) !important;
}

.amenity i {
    font-size: 1.2em !important;
    color: #33b2a6 !important;
    width: 20px !important;
    text-align: center !important;
}

.amenity span {
    font-size: 0.8em !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1 !important;
    line-height: 1.2 !important;
}

/* Texto más compacto para amenidades con textos largos */
.amenity span[data-translate*="view"] {
    font-size: 0.7em !important;
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 980px) {
    .video-content h2 {
        font-size: 3em !important;
    }
    
    .video-content p {
        font-size: 1.3em !important;
    }
    
    .room-details {
        padding: 3em !important;
    }
    
    .room-details h3 {
        font-size: 2.8em !important;
    }
    
    .amenities {
        grid-template-columns: 1fr !important;
    }
    
    /* Habitaciones dobles en tablets - 2 columnas */
    .room-slide[data-room="double"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .section-divider {
        height: 70px !important;
        gap: 0.8em !important;
    }
    
    .divider-line-simple {
        width: 70% !important;
    }
    
    .divider-label {
        font-size: 0.85em !important;
        padding: 0.25em 1.2em !important;
    }
}

@media screen and (max-width: 736px) {
    .video-hero {
        height: 80vh !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .cinematic-rooms {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .video-content h2 {
        font-size: 2.5em !important;
    }
    
    .video-content p {
        font-size: 1.1em !important;
    }
    
    .room-slide {
        flex-direction: column !important;
        min-height: auto !important;
        width: 100% !important;
    }
    
    .room-slide:nth-child(even) {
        flex-direction: column !important;
    }
    
    .room-image {
        height: 60vh !important;
        width: 100% !important;
    }
    
    .room-details {
        padding: 2em !important;
        width: 100% !important;
    }
    
    .room-details h3 {
        font-size: 2.2em !important;
    }
    
    .room-details p {
        font-size: 1.1em !important;
    }
    
    .room-number {
        font-size: 2.5em !important;
    }
    
    .amenities {
        gap: 1em !important;
    }
    
    /* Habitaciones dobles en móviles - 2 columnas */
    .room-slide[data-room="double"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6em !important;
    }
    
    .amenity {
        padding: 0.5em !important;
        gap: 0.5em !important;
        min-width: 100px !important; /* Ancho mínimo en móviles */
        min-height: 35px !important; /* Altura mínima en móviles */
    }
    
    .amenity i {
        font-size: 1em !important;
        width: 16px !important;
    }
    
    .amenity span {
        font-size: 0.75em !important;
    }
    
    /* Texto aún más compacto para amenidades largas en móviles */
    .amenity span[data-translate*="view"] {
        font-size: 0.65em !important;
    }
    
    .section-divider {
        height: 60px !important;
        gap: 0.6em !important;
    }
    
    .divider-line-simple {
        width: 80% !important;
    }
    
    .divider-label {
        font-size: 0.8em !important;
        padding: 0.2em 1em !important;
    }
}

@media screen and (max-width: 480px) {
    .video-hero {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .cinematic-rooms {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
    }
    
    .video-content {
        padding: 1.5em !important;
    }
    
    .video-content h2 {
        font-size: 2em !important;
    }
    
    .video-content p {
        font-size: 1em !important;
    }
    
    .room-slide {
        width: 100% !important;
    }
    
    .room-image {
        width: 100% !important;
    }
    
    .room-details {
        padding: 1.5em !important;
        width: 100% !important;
    }
    
    .room-details h3 {
        font-size: 1.8em !important;
    }
    
    .section-divider {
        height: 50px !important;
        gap: 0.5em !important;
    }
    
    .divider-line-simple {
        width: 90% !important;
    }
    
    .divider-label {
        font-size: 0.75em !important;
        padding: 0.2em 0.8em !important;
    }
}

/* ========================================
   HABITACIÓN CLÍNICA - ESTILOS ESPECÍFICOS
   ======================================== */

/* Habitación clínica - 4 amenities en 2 columnas x 2 filas */
.room-slide[data-room="clinical"] .amenities {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1em !important;
}

/* Áreas comunes - 6 amenities en 3 columnas x 2 filas */
.room-slide[data-room="common"] .amenities {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.8em !important;
}

/* Responsive para habitación clínica */
@media screen and (max-width: 980px) {
    .room-slide[data-room="clinical"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Áreas comunes en tablets - 2 columnas */
    .room-slide[data-room="common"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 736px) {
    .room-slide[data-room="clinical"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6em !important;
    }
    
    /* Áreas comunes en móviles - 2 columnas */
    .room-slide[data-room="common"] .amenities {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.6em !important;
    }
}

/* ========================================
   OPTIMIZACIÓN DE IMÁGENES DE HABITACIONES
   ======================================== */

/* Estilo cinematográfico con imágenes horizontales estandarizadas */
.room-image {
    background: rgba(0, 0, 0, 0.2) !important; /* Fondo sutil para marcos uniformes */
}

.room-image img {
    object-fit: cover !important; /* Mantener cover para el diseño cinematográfico */
    object-position: center center !important; /* Centrar horizontalmente */
    width: 100% !important; /* Ancho completo del contenedor */
    height: 70% !important; /* Altura reducida para aspecto más horizontal */
    margin-top: 15% !important; /* Centrar verticalmente */
    filter: brightness(0.8) contrast(1.1) !important; /* Mantener contraste cinematográfico */
    border-radius: 8px !important; /* Bordes sutiles para definir la imagen */
}

/* Efecto hover cinematográfico */
.room-slide:hover .room-image img {
    transform: scale(1.05) !important; /* Zoom sutil en hover */
    filter: brightness(0.9) contrast(1.2) !important;
    height: 75% !important; /* Ligera expansión en hover */
    margin-top: 12.5% !important; /* Recentrar al expandir */
}

/* ========================================
   EXPANSIÓN A PANTALLA COMPLETA
   ======================================== */

/* Hacer que las imágenes usen toda la pantalla como el video */
.room-image {
    width: 100vw !important; /* Ancho completo de la pantalla */
    margin-left: calc(-50vw + 50%) !important; /* Técnica para expandir a pantalla completa */
    position: relative !important;
}

/* Ajustar las imágenes para pantalla completa */
.room-image img {
    width: 100% !important; /* Llenar todo el ancho expandido */
    height: 100% !important; /* Altura completa del contenedor */
    object-fit: cover !important; /* Mantener cobertura completa */
    object-position: center center !important; /* Centrar la imagen */
    margin-top: 0 !important; /* Resetear márgenes para pantalla completa */
    filter: brightness(0.8) contrast(1.1) !important;
}

/* Hover para pantalla completa */
.room-slide:hover .room-image img {
    transform: scale(1.03) !important; /* Zoom muy sutil en pantalla completa */
    filter: brightness(0.9) contrast(1.2) !important;
    height: 100% !important; /* Mantener altura completa en hover */
    margin-top: 0 !important; /* Sin márgenes en pantalla completa */
}

/* Responsive para pantalla completa */
@media screen and (max-width: 736px) {
    .room-image {
        width: 100% !important; /* Restaurar ancho normal en móviles */
        margin-left: 0 !important; /* Sin expansión individual en móviles */
    }
    
    .room-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        margin-top: 0 !important;
    }
}

/* ========================================
   EXPANSIÓN DE TODA LA SECCIÓN DE HABITACIONES
   ======================================== */

/* Hacer que toda la sección de habitaciones use ancho completo como el video */
.rooms-showcase {
    width: 100vw !important; /* Ancho completo de la pantalla */
    margin-left: calc(-50vw + 50%) !important; /* Técnica de expansión completa */
    position: relative !important;
}

/* Restaurar comportamiento normal de imágenes individuales */
.room-image {
    width: auto !important; /* Ancho automático dentro de la sección expandida */
    margin-left: 0 !important; /* Sin expansión individual */
}

.room-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    margin-top: 0 !important;
    filter: brightness(0.8) contrast(1.1) !important;
}

/* Hover normal */
.room-slide:hover .room-image img {
    transform: scale(1.05) !important;
    filter: brightness(0.9) contrast(1.2) !important;
}

/* ========================================
   OCULTAR VIDEO HERO TEMPORALMENTE
   ======================================== */

/* Ocultar video hero hasta tener el video listo */
.video-hero {
    display: none !important; /* TEMPORAL - cambiar a 'flex' cuando tengas el video */
}

/* Comentario para reactivar cuando tengas el video:
   Cambiar 'display: none' por 'display: flex' en la regla de arriba */