.contenedor-motor
{
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}

#search-button-container-selector p {
    color: white !important;
}

@media (max-width:1024px) {
    .contenedor-motor #app-container{
        display: none !important;
    }
}

@media(max-width:767px){
    .btn-booking-mobile{
        padding: 16px;
        z-index: 499;
        position: fixed!important;
        width: 80%;
        left: 10%;
        bottom: 20px;
        display: block;
        text-align: center;
    }
}

.s-header {
    position: fixed;
    z-index: 499;
}
/* Carousel personalizado para habitaciones */
.room-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.room-carousel .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.room-carousel .slide.is-active {
    opacity: 1;
}

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

/* Flechas de navegación */
.room-carousel .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    color: #333;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.room-carousel .arrow:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: translateY(-50%) scale(1.1);
}

.room-carousel .arrow.prev {
    left: 15px;
}

.room-carousel .arrow.next {
    right: 15px;
}

/* Puntos de navegación */
.room-carousel .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.room-carousel .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-carousel .carousel-dots .dot.active,
.room-carousel .carousel-dots .dot:hover {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .room-carousel {
        height: 300px;
    }
    
    .room-carousel .arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .room-carousel .arrow.prev {
        left: 10px;
    }
    
    .room-carousel .arrow.next {
        right: 10px;
    }
}