/* ═══════════════════════════════════════════════════════════
   Momentos Populares — Carrossel UI
   v3/organisms/momentos-populares/momentos-populares.css
   ═══════════════════════════════════════════════════════════ */

.hb-momentos-populares {
    margin: 1.5rem 0;
    overflow: hidden;
}

.hb-mp-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.hb-mp-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.5rem 0.5rem;
    scrollbar-width: none;
}

.hb-mp-track::-webkit-scrollbar {
    display: none;
}

.hb-mp-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    text-align: left;
    outline: none;
    font-family: inherit;
}

.hb-mp-card:hover {
    transform: scale(1.05);
    border-color: #e50914;
}

.hb-mp-card:focus {
    border-color: #e50914;
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.4);
}

.hb-mp-card img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    display: block;
}

.hb-mp-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    color: #ccc;
}

.hb-mp-time {
    font-weight: 600;
    color: #fff;
}

.hb-mp-count {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ── Versao CTA (publica) — blur + overlay ── */
.hb-momentos-populares--cta .hb-mp-card {
    cursor: default;
    pointer-events: none;
}

.hb-momentos-populares--cta .hb-mp-card img {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.hb-momentos-populares--cta .hb-mp-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.hb-mp-cta-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: auto;
}

.hb-mp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #e50914;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.hb-mp-cta-btn:hover {
    background: #b0060f;
    transform: scale(1.03);
    color: #fff;
    text-decoration: none;
}

/* ── Responsivo ── */
@media (max-width: 768px) {
    .hb-mp-card {
        width: 160px;
    }
    .hb-mp-card img {
        height: 90px;
    }
    .hb-mp-title {
        font-size: 1rem;
    }
}
