.carousel-container-wrapper {
    width: 100%;
    position: relative;
}

.container-hotel {
    width: 1200px;
}

.title-destination {
    color: var(--Negro);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: var(--AzulOscuro);
}

.section-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--NegroSoft);
}
.hotel-carousel .item {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hotel-card {
    position: relative;
    width: 270px;
    height: 330px !important;
    max-height: 330px !important;
    margin: 0 auto;
    border-radius: var(--borderWidth, 8px);
    overflow: hidden;
    background-color: #ffffff;
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 30%;
    background-color: var(--AzulClaro);
    color: #ffffff;
    padding: 8px 12px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 2;
    transition: all 0.2s ease-in;
    border-top-left-radius: var(--borderWidth);
    border-bottom-right-radius: var(--borderWidth);
}
.card-overlay-badge:hover {
    background: var(--Blanco);
    color: var(--AzulOscuro);
    border: 2px solid var(--AzulOscuro);
}

.destination-name {
    font-size: 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btn-ver-mas {
    font-size: 0.75rem;
    opacity: 0.85;
}


.hotel-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 10;
}

.hotel-carousel .owl-nav button.owl-next {
    background: #ffffff !important;
    color: #333333 !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-size: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1280px) {
    .container-hotel {
    width: 980px;
}
    .destinos-section .row.align-items-center {
        flex-direction: column !important;
    }

    .destinos-section .row.align-items-center > .col-lg-3,
    .destinos-section .row.align-items-center > .col-lg-9 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        justify-items: center;
    }

    .destinos-section .col-lg-3 {
        margin-bottom: 2rem !important;
        padding-right: 0 !important;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .container-hotel {
    width: 680px;
}
    .hotel-carousel .owl-nav {
        right: 0px;
    }
    
    .card-overlay-badge {
        left: 0; 
    }
    .destination-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container-hotel {
    width: 300px;
}

}

@media (max-width: 576px) {
    .hotel-card {
        width: 300px;
    }
}




