.header-destinations-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container-hotels {
   max-width: 1152px;
}

.destinations-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #1e3a34;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.destinations-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #c49a6c;
}

.destinations-subtitle {
    color: #8a8a8a;
    font-size: 0.95rem;
    margin-top: 10px;
    font-weight: 300;
}

.hoteles-slider.owl-carousel .owl-stage {
    display: flex;
}

.hoteles-slider.owl-carousel .owl-item {
    flex: 0 0 auto;
}

.destination-card-wrapper {
    width: 260px;
    padding: 10px;
    margin-right: 40px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.destination-card {
    position: relative;
    display: block;
    width: 100%;  
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.destination-card:hover {
    transform: translateY(-5px);
}

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

.destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 40%, var(--tr-primary) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    z-index: 1;
}

.destination-card-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 20%, var(--tr-primary) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.destination-card:hover .destination-card-overlay::before {
    opacity: 1;
}

.destination-card-info {
    width: 100%;
    text-align: left;
}

.destination-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Playfair Display', Georgia, serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-price {
    color: var(--tr-text-muted);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.destination-price span {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 1280px){
 .container-hotels {
    max-width: 855px;
 }
}

@media (max-width: 900px){
 .container-hotels {
    max-width: 558px;
 }
}

@media (max-width: 668px){
 .container-hotels {
    max-width: 260px;
 }
}