/**
 * BS HERO V38 — Pro Cyan Edition
 * =====================================================================
 * Layout split (1.15fr / 1fr): Pitch à esquerda + Live Hub à direita.
 *
 * Princípios:
 *  - Tipografia "arco-íris cyan" com shimmer animado nas keywords
 *  - Live Hub funcional (top jogos baixados HOJE + counter online)
 *  - Searchbar real no hero que busca direto no catálogo
 *  - BG matching com #050a14 do site + bottom fade soft
 *  - Zero JS, sem 3D perspective, sem orbs gigantes pesados
 *  - Mobile-first responsive
 */

.bs-v38-hero {
    --c-cyan:        #00c3e2;
    --c-cyan-soft:   #5ed3ec;
    --c-cyan-deep:   #0891b2;
    --c-cyan-bright: #00d4ff;
    --c-bg:          #050a14;
    --c-elev:        rgba(255, 255, 255, 0.04);
    --c-elev-2:      rgba(255, 255, 255, 0.06);
    --c-line:        rgba(255, 255, 255, 0.08);
    --c-line-cyan:   rgba(0, 195, 226, 0.22);
    --c-text:        #e2e8f0;
    --c-text-soft:   #cbd5e1;
    --c-muted:       #8895a8;

    position: relative;
    padding: 48px 0 0;
    isolation: isolate;
}

/* BG agora vem do body (global-bg-v38.css) — atmosfera unificada em todo o site */

/* ============================================================
   GRID — 1.15fr (pitch) / 1fr (live hub)
   ============================================================ */
.bs-v38-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

/* ============================================================
   LEFT — Pitch
   ============================================================ */
.bs-v38-pitch { min-width: 0; }

.bs-v38-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background: rgba(0, 195, 226, 0.08);
    border: 1px solid var(--c-line-cyan);
    border-radius: 99px;
    font: 700 11px/1 'Inter', system-ui, sans-serif;
    letter-spacing: 1.4px;
    color: var(--c-cyan-soft);
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.bs-v38-eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--c-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--c-cyan);
    animation: bs-v38-pulse 1.8s ease-out infinite;
    flex-shrink: 0;
}
@keyframes bs-v38-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 195, 226, 0.55); }
    50%      { box-shadow: 0 0 0 9px rgba(0, 195, 226, 0); }
}

/* TÍTULO — "Desbloqueie a maior coleção de ROMs em segundos" com shimmer rainbow cyan na key */
.bs-v38-title {
    font: 900 clamp(36px, 5vw, 64px)/1.08 'Inter', system-ui, sans-serif;
    color: #fff;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
}
.bs-v38-title .hl {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-image: linear-gradient(110deg,
        var(--c-cyan)        0%,
        var(--c-cyan-soft)  18%,
        var(--c-cyan-bright) 35%,
        #ffffff             50%,
        var(--c-cyan-bright) 65%,
        var(--c-cyan-soft)  82%,
        var(--c-cyan)       100%);
    background-size: 220% 100%;
    background-position: 0% 50%;
    animation: bs-v38-shimmer 5s linear infinite;
    will-change: background-position;
    font-weight: 900;
    filter: drop-shadow(0 0 18px rgba(0, 195, 226, 0.32));
}
@keyframes bs-v38-shimmer {
    0%   { background-position:   0% 50%; }
    100% { background-position: 220% 50%; }
}

/* Subtitle */
.bs-v38-sub {
    max-width: 580px;
    font: 400 16.5px/1.55 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
    margin: 0 0 22px;
}
.bs-v38-sub strong {
    color: var(--c-text-soft);
    font-weight: 700;
}

/* SOCIAL PROOF LINE (substitui a search bar) */
.bs-v38-proof {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    margin: 0 0 22px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.08), rgba(0, 195, 226, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 99px;
    font: 600 12.5px/1 'Inter', system-ui, sans-serif;
    color: var(--c-text-soft);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-wrap: wrap;
}
.bs-v38-proof-pulse {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
    animation: bs-v38-pulse-green 1.6s ease-out infinite;
    flex-shrink: 0;
}
.bs-v38-proof-line {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}
.bs-v38-proof-line strong {
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-cyan-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bs-v38-proof-line span {
    color: var(--c-muted);
}
.bs-v38-proof-sep {
    width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

/* CTAs */
.bs-v38-ctas {
    display: flex;
    gap: 10px;
    margin: 0 0 22px;
    flex-wrap: wrap;
}
.bs-v38-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: 14px;
    font: 700 14px/1 'Inter', system-ui, sans-serif;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
    overflow: hidden;
    isolation: isolate;
}
.bs-v38-btn.primary {
    background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-deep) 100%);
    color: #00141a;
    box-shadow:
        0 14px 30px -10px rgba(0, 195, 226, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.bs-v38-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 40px -10px rgba(0, 195, 226, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.bs-v38-btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    transform: translateX(-110%);
    transition: transform .6s ease;
    z-index: 1;
    pointer-events: none;
}
.bs-v38-btn.primary:hover .bs-v38-btn-shine { transform: translateX(110%); }
.bs-v38-btn-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    line-height: 1;
    z-index: 2;
}
.bs-v38-btn-text strong { font-weight: 800; font-size: 14px; }
.bs-v38-btn-text small  { font-size: 11px; font-weight: 500; opacity: 0.8; letter-spacing: 0.1px; }
.bs-v38-btn-arrow {
    font-size: 18px; font-weight: 700; margin-left: 4px;
    transition: transform .25s ease;
    z-index: 2;
}
.bs-v38-btn.primary:hover .bs-v38-btn-arrow { transform: translateX(4px); }

.bs-v38-btn.ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--c-text-soft);
}
.bs-v38-btn.ghost:hover {
    background: rgba(0, 195, 226, 0.10);
    border-color: rgba(0, 195, 226, 0.4);
    color: var(--c-cyan);
    transform: translateY(-1px);
}
.bs-v38-btn i { font-size: 14px; z-index: 2; }

/* Trust micro-row */
.bs-v38-trust {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    border-top: 1px solid var(--c-line);
}
.bs-v38-trust li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font: 600 12px/1 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
}
.bs-v38-trust i {
    color: var(--c-cyan);
    font-size: 11px;
}

/* ============================================================
   RIGHT — Live Hub
   ============================================================ */
.bs-v38-hub {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--c-line);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 24px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(0, 195, 226, 0.06) inset;
    overflow: hidden;
}
.bs-v38-hub::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-cyan), transparent);
    opacity: 0.6;
}

.bs-v38-hub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 14px;
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 12px;
}
.bs-v38-hub-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font: 800 11px/1 'Inter', system-ui, sans-serif;
    letter-spacing: 1.4px;
    color: var(--c-cyan-soft);
}
.bs-v38-hub-pulse {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: bs-v38-pulse-green 1.6s ease-out infinite;
}
@keyframes bs-v38-pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.bs-v38-hub-count {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font: 600 12px/1 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
}
.bs-v38-hub-count strong {
    color: #fff;
    font: 800 16px/1 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-cyan-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bs-v38-hub-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font: 700 10.5px/1 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 4px 8px;
}
.bs-v38-hub-section-label i {
    color: var(--c-cyan);
    font-size: 11px;
}

/* Lista top downloads */
.bs-v38-hub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bs-v38-hub-item {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}
.bs-v38-hub-item:hover {
    background: rgba(0, 195, 226, 0.08);
    transform: translateX(2px);
}
.bs-v38-hub-rank {
    font: 800 12px/1 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
    letter-spacing: 0.5px;
    width: 22px;
    flex-shrink: 0;
}
.bs-v38-hub-list li:nth-child(1) .bs-v38-hub-rank {
    color: var(--c-cyan);
    font-weight: 900;
}
.bs-v38-hub-cover {
    display: block;
    width: 36px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
    border: 1px solid var(--c-line);
}
.bs-v38-hub-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bs-v38-hub-name {
    font: 600 13px/1.3 'Inter', system-ui, sans-serif;
    color: var(--c-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.bs-v38-hub-item:hover .bs-v38-hub-name { color: #fff; }
.bs-v38-hub-count-num {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font: 700 12px/1 'Inter', system-ui, sans-serif;
    color: var(--c-cyan-soft);
    flex-shrink: 0;
}
.bs-v38-hub-count-num i { font-size: 9px; opacity: 0.8; }

/* Feed compacto (downloads recentes / sorteados telegram) */
.bs-v38-hub-feed {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bs-v38-hub-feed + .bs-v38-hub-section-label {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
}
.bs-v38-hub-feed-item { list-style: none; }
.bs-v38-hub-feed-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border-radius: 9px;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
    color: inherit;
}
a.bs-v38-hub-feed-link:hover {
    background: rgba(0, 195, 226, 0.08);
    transform: translateX(2px);
}
.bs-v38-hub-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--c-line);
    flex-shrink: 0;
}
.bs-v38-hub-avatar.tg {
    border-color: rgba(0, 136, 204, 0.45);
    box-shadow: 0 0 0 1px rgba(0, 136, 204, 0.15);
}
.bs-v38-hub-avatar.tg.fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0088cc, #00c3e2);
    border: 0;
    color: #fff;
    font-size: 12px;
}
.bs-v38-hub-feed-text {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    min-width: 0;
    font: 500 12.5px/1.3 'Inter', system-ui, sans-serif;
    color: var(--c-text-soft);
    overflow: hidden;
}
.bs-v38-hub-feed-text strong {
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}
.bs-v38-hub-feed-action {
    color: var(--c-muted);
    font-weight: 400;
    flex-shrink: 0;
}
.bs-v38-hub-feed-target {
    color: var(--c-cyan-soft);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.bs-v38-hub-feed-target.tg-tag {
    color: #5eb8ec;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
}
.bs-v38-hub-feed-target.tg-tag i { font-size: 11px; }
.bs-v38-hub-feed-time {
    font: 600 10.5px/1 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
    flex-shrink: 0;
    opacity: 0.8;
}

/* ============================================================
   HUB TABS — controle de visibilidade vem do JS inline + style
   inline em index.php (à prova de cache LSCache). Aqui só estilos
   básicos dos dots e labels.
   ============================================================ */
.bs-v38-hub-tabs {
    position: relative;
    margin-top: 14px;
}

.bs-v38-hub-pane .bs-v38-hub-section-label {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

/* Dots indicadores — agora botões clicáveis (.is-active controlado pelo JS) */
.bs-v38-hub-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
    position: relative;
    z-index: 3;
}
.bs-v38-hub-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
    -webkit-appearance: none;
    appearance: none;
}
.bs-v38-hub-dot:hover {
    background: rgba(0, 195, 226, 0.5);
    transform: scale(1.15);
}
.bs-v38-hub-dot.is-active {
    background: var(--c-cyan);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(0, 195, 226, 0.7);
}
.bs-v38-hub-dot:focus-visible {
    outline: 2px solid var(--c-cyan);
    outline-offset: 3px;
}

/* Promo card — sem cadeado, design moderno e direto */
.bs-v38-hub-promo {
    margin-top: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(0, 195, 226, 0.16) 0%, rgba(0, 195, 226, 0.04) 100%);
    border: 1px solid var(--c-line-cyan);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.bs-v38-hub-promo::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--c-cyan), var(--c-cyan-deep));
    box-shadow: 0 0 12px var(--c-cyan);
}
.bs-v38-hub-promo::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(110deg, transparent 30%, rgba(0, 195, 226, 0.18) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: bs-v38-promo-shine 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes bs-v38-promo-shine {
    0%, 60% { transform: translateX(-100%); }
    100%    { transform: translateX(100%); }
}
.bs-v38-hub-promo-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bs-v38-hub-promo-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bs-v38-hub-promo-text strong {
    font: 700 13.5px/1.2 'Inter', system-ui, sans-serif;
    color: #fff;
}
.bs-v38-hub-promo-text small {
    font: 500 11.5px/1.3 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
}
.bs-v38-hub-promo-text small em {
    font-style: normal;
    color: var(--c-cyan);
    font-weight: 800;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-cyan-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bs-v38-hub-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: linear-gradient(135deg, var(--c-cyan) 0%, var(--c-cyan-deep) 100%);
    border: 0;
    border-radius: 10px;
    color: #00141a;
    text-decoration: none;
    font: 800 12px/1 'Inter', system-ui, sans-serif;
    transition: transform .2s ease, box-shadow .2s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(0, 195, 226, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}
.bs-v38-hub-promo-btn i {
    font-size: 11px;
    transition: transform .2s ease;
}
.bs-v38-hub-promo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -4px rgba(0, 195, 226, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #00141a;
}
.bs-v38-hub-promo-btn:hover i {
    transform: translateX(3px);
}

/* ============================================================
   BOTTOM STATS STRIP
   ============================================================ */
.bs-v38-stats-strip {
    position: relative;
    z-index: 1;
    margin-top: 36px;
    padding: 22px 0;
    border-top: 1px solid var(--c-line);
}
.bs-v38-stats-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.bs-v38-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.bs-v38-stat-num {
    font: 900 30px/1 'Inter', system-ui, sans-serif;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, var(--c-cyan-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bs-v38-stat-num small {
    font-size: 0.55em;
    font-weight: 700;
    margin-left: 1px;
}
.bs-v38-stat-lbl {
    font: 600 11.5px/1 'Inter', system-ui, sans-serif;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.bs-v38-stat-sep {
    width: 1px;
    height: 32px;
    background: var(--c-line);
    flex-shrink: 0;
}

/* ============================================================
   TABLET (1024-1280)
   ============================================================ */
@media (max-width: 1180px) {
    .bs-v38-inner { gap: 32px; padding: 0 24px; }
    .bs-v38-stats-inner { padding: 0 24px; }
}

@media (max-width: 1024px) {
    .bs-v38-hero { padding: 36px 0 0; }
    .bs-v38-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .bs-v38-pitch { max-width: 720px; }
    .bs-v38-hub  { max-width: 720px; }
    .bs-v38-stats-strip { margin-top: 28px; }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 720px) {
    .bs-v38-hero { padding: 28px 0 0; }
    .bs-v38-inner { padding: 0 16px; gap: 22px; }

    .bs-v38-eyebrow {
        font-size: 10px;
        letter-spacing: 1.1px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    .bs-v38-title { letter-spacing: -0.015em; margin-bottom: 14px; }
    .bs-v38-sub { font-size: 14.5px; line-height: 1.5; margin-bottom: 16px; }

    .bs-v38-proof {
        font-size: 11.5px;
        gap: 10px;
        padding: 9px 14px;
        margin-bottom: 18px;
    }
    .bs-v38-proof-line strong { font-size: 13px; }

    .bs-v38-ctas { flex-direction: column; gap: 10px; }
    .bs-v38-btn { width: 100%; justify-content: center; padding: 14px 18px; }

    .bs-v38-trust { gap: 8px 14px; padding-top: 12px; }
    .bs-v38-trust li { font-size: 11.5px; }

    .bs-v38-hub { padding: 12px; border-radius: 16px; }
    .bs-v38-hub-head { padding: 2px 2px 12px; margin-bottom: 10px; }
    .bs-v38-hub-name { font-size: 12.5px; }
    .bs-v38-hub-count-num { font-size: 11.5px; }
    .bs-v38-hub-cover { width: 32px; height: 44px; }
    .bs-v38-hub-promo { padding: 12px 14px; }
    .bs-v38-hub-promo-text strong { font-size: 12.5px; }
    .bs-v38-hub-promo-text small { font-size: 11px; }
    .bs-v38-hub-promo-btn { padding: 8px 12px; font-size: 11.5px; }

    /* Feed mobile: compacta avatares e fontes */
    .bs-v38-hub-feed-link { padding: 6px 6px; gap: 8px; }
    .bs-v38-hub-avatar { width: 24px; height: 24px; }
    .bs-v38-hub-feed-text { font-size: 11.5px; gap: 4px; }
    .bs-v38-hub-feed-time { font-size: 10px; }

    .bs-v38-stats-strip { margin-top: 22px; padding: 16px 0; }
    .bs-v38-stats-inner {
        padding: 0 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 18px 22px;
    }
    .bs-v38-stat { flex: 0 0 calc(50% - 11px); }
    .bs-v38-stat-num { font-size: 24px; }
    .bs-v38-stat-lbl { font-size: 10.5px; }
    .bs-v38-stat-sep { display: none; }
}

@media (max-width: 480px) {
    .bs-v38-trust li:nth-child(n+4) { display: none; }
    .bs-v38-stat { flex: 0 0 calc(50% - 11px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bs-v38-eyebrow-dot,
    .bs-v38-hub-pulse,
    .bs-v38-proof-pulse,
    .bs-v38-title .hl,
    .bs-v38-hub-promo::after { animation: none !important; }
    /* Esconde os dots quando reduced-motion (JS inline já pausa o rotate via paused flag se desejar; aqui só ocultamos os dots) */
    .bs-v38-hub-dots { display: none; }
}
