/* ============================================
   PROMO SLIDER BAR
   Fixed banner row between navbar and hero
   ============================================ */

.hm-promo-slider {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hm-promo-slider-track {
    display: flex;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hm-promo-slide {
    flex: 1 1 0;
    min-width: 0;
}

.hm-promo-slide a {
    display: block;
    width: 100%;
    position: relative;
    /* Cero fondos, bordes o sombras. Dejamos que el PNG/WEBP transparente sea el protagonista. */
}

.hm-promo-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform var(--transition-normal), opacity var(--transition-fast);
}

.hm-promo-slide a:hover img {
    opacity: 0.95;
    transform: scale(1.03); /* Un zoom ligero y elegante a la píldora flotante */
}



/* Responsive */
@media (max-width: 768px) {
    .hm-promo-slider {
        padding: 12px 0;
    }

    .hm-promo-slider-track {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 16px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .hm-promo-slider-track::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    
    .hm-promo-slide {
        flex: 0 0 82%; /* Allow next slide to peek */
        scroll-snap-align: center;
        min-width: 250px;
    }
    
    .hm-promo-slide img {
        aspect-ratio: auto;
        max-height: none;
        width: 100%;
        display: block;
        border-radius: 12px;
    }
}

