#section-themost-visited {
    background-color: var(--bkyuls-primary) !important;
    position: relative;
}

.container-themost-visited {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
}

.main-title-themost {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--black) !important;
    margin-bottom: 40px;
}

.card-destino {
    position: relative;
    width: 310px;
    height: 450px;
    margin: 0 auto;
    border-radius:var(--border-pt);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.card-destino img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-destino:hover img {
    transform: scale(1.1);
}

.item.offset-down {
    margin-top: 50px;
}

.data-destino {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent);
    color: white;
}

.data-destino h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--alabaster-grey);
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.promo-badge .day {
    display: block;
    background: var(--berry-crush-light);
    color: white;
    font-weight: 800;
    font-size: 13px;
    padding: 2px 0;
}

.promo-badge .month {
    display: block;
    color: #333;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 0;
}

.box-icons-mini {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.active-icon {
    color: var(--berry-crush-light);
}

.disabled-icon {
    color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-promo {
    background: #25d36500;
    border: 2px solid #25d366;
    color: #25d365 !important;
    padding: 6px 12px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none !important;
    display: inline-block;
    position: absolute;
    top: 30px;
    right: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp-promo:hover {
    background: #25d365;
    color: white !important;
}

.themost-visited-carousel .item {
    transition: all 0.5s ease;
    padding-top: 50px;
    padding-bottom: 50px;
}


.themost-visited-carousel .owl-item.center .item {
    transform: translateY(-45px);
}

.themost-visited-carousel .owl-item.center .card-destino {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1280px) {
    .container-themost-visited {
        max-width: 700px;
    }
}

@media (max-width: 1024px) {
    .main-title-themost {

        font-size: 2rem;

    }
}

@media (max-width: 768px) {
    .item.offset-down {
        margin-top: 0;
    }

    .card-destino {
        width: 100%;
        max-width: 300px;
    }

    .container-themost-visited {
        padding: 60px 10px;
    }
}