.mobile-hero {
    display: none;
    width: 100%;
    padding: 12px 0 8px;
}

.mobile-hero-scroller {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 0 11vw;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-hero-scroller::-webkit-scrollbar {
    display: none;
}

.mobile-hero-card {
    flex: 0 0 85vw;
    scroll-snap-align: center;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
    aspect-ratio: 2 / 3;
    opacity: 0.45;
    transform: scale(0.94);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-hero-card.is-active {
    opacity: 1;
    transform: scale(1);
}

.mobile-hero-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

.mobile-hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 14px 0 4px;
}

.mobile-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s ease;
}

.mobile-hero-dot.is-active {
    width: 28px;
    background: #ffffff;
}

@media (max-width: 767px) {
    .mobile-hero {
        display: block;
    }
    #carousel-container-recomendaciones .main-slider,
    #carousel-container-recomendaciones .sliderHome,
    #carousel-container-especial .main-slider,
    #carousel-container-especial .sliderHome,
    #carousel-container-especial .mainLive {
        display: none !important;
    }
}
