/* ============================================================
   VARIÁVEIS E RESET
   ============================================================ */
:root {
    --bg-primary:   #0b1120;
    --bg-secondary: #111827;
    --bg-card:      #1a2235;
    --bg-card-hover:#1e2a40;
    --accent:       #00c853;
    --accent-dark:  #009624;
    --gold:         #ffd700;
    --gold-dark:    #b8960c;
    --border:       rgba(255,255,255,0.07);
    --text:         #e2e8f0;
    --text-muted:   #8892a4;
    --radius:       14px;
    --shadow:       0 4px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg-primary);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #4ade80; }
code { color: var(--accent); background: rgba(0,200,83,.12); padding: 2px 6px; border-radius: 4px; }

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.text-accent      { color: var(--accent) !important; }
.text-muted-light { color: var(--text-muted); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(11,17,32,.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: .75rem 0;
}
.navbar-brand { font-size: 1.2rem; letter-spacing: -.3px; }
.nav-link {
    color: var(--text-muted) !important;
    font-size: .9rem;
    font-weight: 500;
    padding: .4rem .75rem !important;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.nav-link:hover { color: var(--text) !important; background: rgba(255,255,255,.06); }

.badge-gemas {
    background: rgba(0,200,83,.15);
    color: var(--accent);
    border: 1px solid rgba(0,200,83,.3);
    padding: .4rem .75rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
}
.nav-user {
    color: var(--text-muted);
    font-size: .88rem;
    font-weight: 500;
}

/* ============================================================
   BOTÕES GLOBAIS
   ============================================================ */
.btn-accent {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: .55rem 1.25rem;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: 0 0 20px rgba(0,200,83,.25);
}
.btn-accent:hover {
    background: #00e665;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(0,200,83,.45);
}
.btn-buy {
    font-weight: 700;
    border-radius: 10px;
    color: #fff;
    padding: .55rem 1rem;
    transition: filter .2s, transform .1s;
}
.btn-buy:hover { filter: brightness(1.15); transform: translateY(-1px); color: #fff; }
.btn-buy-sm {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    font-size: .85rem;
    padding: .4rem .8rem;
    transition: background .2s;
}
.btn-buy-sm:hover { background: #00e665; color: #000; }
.btn-vip-disabled {
    background: rgba(255,255,255,.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    cursor: not-allowed;
}
.btn-filter {
    background: rgba(255,255,255,.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: .85rem;
    padding: .35rem .9rem;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-filter:hover, .btn-filter.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    background:
        radial-gradient(ellipse at 60% 0%, rgba(0,200,83,.12) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(0,100,255,.08) 0%, transparent 50%),
        var(--bg-secondary);
    padding: 100px 0 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0,200,83,.1);
    border: 1px solid rgba(0,200,83,.3);
    color: var(--accent);
    padding: .35rem .9rem;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .5px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: .75rem 0;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2rem;
}
.hero-section-sm {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.page-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section-dark { background: var(--bg-secondary); }

.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.5px;
}
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 8px;
}
.section-title.text-center::after { margin: 8px auto 0; }

.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: .45rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border: none; }

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}
.info-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0,200,83,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: var(--accent);
}

/* ============================================================
   STEPS (Como funciona)
   ============================================================ */
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: border-color .2s, transform .2s;
}
.step-card:hover { border-color: rgba(0,200,83,.3); transform: translateY(-3px); }
.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}
.step-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin: 1rem 0 .75rem;
}

/* ============================================================
   METAS
   ============================================================ */
.meta-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,200,83,.2);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 0 40px rgba(0,200,83,.06);
}
.meta-percentage {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}
.progress-bar-wrapper {
    background: rgba(255,255,255,.07);
    border-radius: 999px;
    height: 28px;
    overflow: hidden;
    position: relative;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c853, #69f0ae);
    border-radius: 999px;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    min-width: 40px;
}
.progress-label { font-size: .78rem; font-weight: 700; color: #000; }

/* ─── Top Doador Card ─── */
.top-doador-card {
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 0 40px rgba(255,215,0,.15), var(--shadow);
}
.top-doador-crown {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold);
    filter: drop-shadow(0 0 8px rgba(255,215,0,.6));
}
.top-doador-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin: 1rem auto .75rem;
}
.top-doador-nick {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}
.top-doador-valor {
    color: var(--text-muted);
    font-size: 1rem;
    margin: .5rem 0 1rem;
}
.top-doador-badge {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-weight: 700;
    font-size: .85rem;
    padding: .4rem 1rem;
    border-radius: 20px;
}

/* ─── Doadores grid ─── */
.doador-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    transition: border-color .2s;
}
.doador-card:hover { border-color: rgba(0,200,83,.3); }
.doador-card.doador-top { border-color: rgba(255,215,0,.4); box-shadow: 0 0 20px rgba(255,215,0,.08); }
.doador-rank { font-size: .8rem; color: var(--text-muted); font-weight: 700; min-width: 24px; }
.doador-icon { color: #5865f2; font-size: 1rem; }
.doador-nick { flex: 1; font-size: .9rem; font-weight: 600; }
.doador-valor { font-size: .82rem; color: var(--accent); font-weight: 600; }

/* ============================================================
   LOJA VIP
   ============================================================ */
.vip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, transform .2s, box-shadow .25s;
    height: 100%;
}
.vip-card:hover {
    border-color: var(--vip-color, var(--accent));
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.vip-header {
    background: linear-gradient(160deg, rgba(255,255,255,.04), transparent);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.vip-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.vip-name { font-size: 1.4rem; font-weight: 800; letter-spacing: -.3px; }
.vip-desc { color: var(--text-muted); font-size: .88rem; margin: .4rem 0 0; }
.vip-price {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}
.vip-features {
    list-style: none;
    padding: 1.25rem 1.5rem;
    flex: 1;
}
.vip-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .4rem 0;
    font-size: .9rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.vip-features li:last-child { border: none; }
.vip-features i { flex-shrink: 0; margin-top: 3px; font-size: .8rem; }
.vip-footer { padding: 1rem 1.5rem 1.5rem; }

/* ============================================================
   LOJA DE ITENS
   ============================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.item-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color .2s, transform .2s;
}
.item-card:hover { border-color: rgba(0,200,83,.3); transform: translateY(-2px); }
.item-img {
    height: 120px;
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-body { padding: .9rem 1rem; flex: 1; }
.item-categoria {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(0,200,83,.1);
    padding: 2px 8px;
    border-radius: 6px;
}
.item-nome { font-size: .95rem; font-weight: 700; margin: .4rem 0 .3rem; }
.item-desc { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.item-price { font-size: .9rem; font-weight: 700; color: var(--text); }
.item-footer { padding: 0 1rem .9rem; }

/* ─── Blur / Locked State ─── */
.blurred-content {
    filter: blur(10px);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    opacity: .35;
}
.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}
.locked-box {
    background: rgba(17,24,39,.9);
    border: 1px solid rgba(0,200,83,.25);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.locked-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 12px rgba(0,200,83,.4));
}
.locked-steps code { font-size: .85rem; }

/* Placeholders para o blur de fundo */
.item-card-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    height: 220px;
}
.placeholder-img { background: rgba(255,255,255,.05); height: 100px; border-radius: 8px; margin-bottom: .8rem; }
.placeholder-line { background: rgba(255,255,255,.08); height: 12px; border-radius: 4px; margin-bottom: .5rem; }
.placeholder-line.wide { width: 80%; }
.placeholder-line.narrow { width: 50%; }
.placeholder-btn { background: rgba(255,255,255,.05); height: 32px; border-radius: 8px; margin-top: .8rem; }

/* ============================================================
   PAINEL DO JOGADOR (navbar logado)
   ============================================================ */
.player-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .4rem .75rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: background .2s, border-color .2s;
    color: var(--text);
}
.player-panel:hover, .player-panel.show {
    background: rgba(255,255,255,.1);
    border-color: rgba(0,200,83,.3);
    color: var(--text);
}
.player-panel::after { margin-left: .4rem; }

.player-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.player-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}
.player-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.player-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--text);
}
.player-gems {
    font-size: .75rem;
    color: var(--accent);
    font-weight: 600;
}

.player-dropdown {
    background: #111827;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    min-width: 240px;
    padding: .5rem;
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.player-dropdown-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .75rem;
    color: var(--text);
}
.player-dropdown-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem .75rem;
    font-size: .88rem;
    color: var(--text-muted);
}
.player-dropdown-item {
    border-radius: 8px;
    padding: .45rem .75rem !important;
    font-size: .88rem;
    color: var(--text-muted) !important;
    transition: background .15s, color .15s;
}
.player-dropdown-item:hover {
    background: rgba(255,255,255,.07) !important;
    color: var(--text) !important;
}
.player-dropdown-item.text-danger:hover {
    background: rgba(239,68,68,.1) !important;
    color: #fca5a5 !important;
}

/* ============================================================
   BOTÃO DISCORD
   ============================================================ */
.btn-discord {
    background: #5865f2;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: .55rem 1.25rem;
    transition: background .2s, transform .1s, box-shadow .2s;
    box-shadow: 0 0 20px rgba(88,101,242,.3);
}
.btn-discord:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(88,101,242,.5);
}

/* ============================================================
   PERFIL
   ============================================================ */
.perfil-header {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(88,101,242,.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0,200,83,.08) 0%, transparent 50%),
        var(--bg-secondary);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.perfil-hero {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.perfil-avatar-wrap { position: relative; flex-shrink: 0; }
.perfil-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    object-fit: cover;
    box-shadow: 0 0 24px rgba(0,200,83,.3);
}
.perfil-status-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: #23a55a;
    border: 3px solid var(--bg-secondary);
    border-radius: 50%;
}
.perfil-nome {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.5px;
    margin: 0;
}
.perfil-personagem {
    color: var(--text-muted);
    margin: .25rem 0 0;
    font-size: .95rem;
}
.perfil-badge {
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 20px;
    padding: .25rem .75rem;
    font-size: .78rem;
    font-weight: 600;
}
.perfil-badge-green { background: rgba(0,200,83,.1); border-color: rgba(0,200,83,.3); color: var(--accent); }
.perfil-badge-gold  { background: rgba(255,215,0,.1); border-color: rgba(255,215,0,.3); color: #ffd700; }

/* Stats */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: border-color .2s, transform .2s;
}
.stat-card:hover { border-color: rgba(0,200,83,.25); transform: translateY(-2px); }
.stat-icon { font-size: 1.6rem; margin-bottom: .4rem; }
.stat-valor { font-size: 1.4rem; font-weight: 800; letter-spacing: -.3px; }
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }

/* VIP cards no perfil */
.perfil-vip-card {
    background: var(--bg-card);
    border: 1px solid var(--vip-color, var(--border));
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 0 20px color-mix(in srgb, var(--vip-color, transparent) 15%, transparent);
}
.perfil-vip-icon {
    font-size: 1.6rem;
    color: var(--vip-color);
    flex-shrink: 0;
}
.perfil-vip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: .82rem;
    color: var(--text-muted);
}
.perfil-vip-list li {
    display: flex;
    gap: .4rem;
    padding: .15rem 0;
}
.perfil-vip-list i { font-size: .7rem; margin-top: 4px; flex-shrink: 0; }

/* Histórico */
.historico-list { display: flex; flex-direction: column; gap: .5rem; }
.historico-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color .2s;
}
.historico-item:hover { border-color: rgba(255,255,255,.12); }
.historico-icone {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.historico-icone-vip  { background: rgba(255,215,0,.12); color: #ffd700; }
.historico-icone-item { background: rgba(0,200,83,.12);  color: var(--accent); }
.historico-info { flex: 1; min-width: 0; }
.historico-nome { display: block; font-weight: 600; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.historico-data { font-size: .78rem; color: var(--text-muted); }
.historico-preco { font-size: .9rem; font-weight: 700; white-space: nowrap; color: var(--text); }
.historico-status {
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .7rem;
    border-radius: 20px;
    white-space: nowrap;
}
.status-entregue { background: rgba(0,200,83,.12);  color: #4ade80; }
.status-pendente  { background: rgba(234,179,8,.12); color: #facc15; }
.status-erro      { background: rgba(239,68,68,.12); color: #fca5a5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

/* ============================================================
   ALERTAS
   ============================================================ */
.alert-info {
    background: rgba(99,102,241,.1);
    border-color: rgba(99,102,241,.3);
    color: #a5b4fc;
}
.alert-success {
    background: rgba(0,200,83,.1);
    border-color: rgba(0,200,83,.3);
    color: #4ade80;
}
.alert-danger {
    background: rgba(239,68,68,.1);
    border-color: rgba(239,68,68,.3);
    color: #fca5a5;
}
.btn-close-white { filter: invert(1) brightness(2); }

/* ============================================================
   PACOTES DE GEMAS
   ============================================================ */
.pacote-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.pacote-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,200,83,.35);
    box-shadow: 0 12px 36px rgba(0,0,0,.3);
}
.pacote-destaque {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 1px var(--accent), 0 16px 40px rgba(0,200,83,.15);
}
.pacote-badge-destaque {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .8rem;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .04em;
}
.pacote-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: .5rem;
}
.pacote-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: .5rem;
}
.pacote-gemas {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}
.pacote-gemas-unit {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: .3rem;
}
.pacote-bonus {
    margin-top: .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
}
.pacote-preco {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-top: .8rem;
}
.pacote-metodos {
    font-size: .72rem;
    color: var(--text-muted);
    opacity: .7;
}

/* ============================================================
   CARRINHO
   ============================================================ */
.carrinho-footer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}
.carrinho-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    margin-bottom: .6rem;
    transition: border-color .2s;
}
.carrinho-item:hover { border-color: rgba(0,200,83,.25); }
.carrinho-item-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255,255,255,.04);
    border-radius: 8px;
    padding: 4px;
}
.carrinho-vip-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    background: rgba(255,255,255,.07);
}
.carrinho-item-info {
    flex: 1;
    min-width: 0;
}
.carrinho-item-nome {
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.carrinho-item-preco {
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* ============================================================
   INVENTÁRIO vRP (Perfil)
   ============================================================ */
.inv-slot {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .6rem;
    text-align: center;
    transition: border-color .2s;
    position: relative;
}
.inv-slot:hover { border-color: rgba(0,200,83,.3); }
.inv-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto .3rem;
}
.inv-nome {
    display: block;
    font-size: .68rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inv-qtd {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: .7rem;
    font-weight: 700;
    color: var(--accent);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #4a5568; }

/* ============================================================
   LOJA — PREÇOS EM R$ E NOVOS ELEMENTOS
   ============================================================ */
.badge-info-pill {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: .35rem .9rem;
    font-size: .82rem;
    color: var(--text-muted);
}

.vip-price-brl {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.5px;
}

.vip-payment-methods {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .4rem;
    opacity: .75;
}

.item-price-brl {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
}

/* ── Barra de busca + filtros ─────────────────────────────── */
.loja-toolbar {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.loja-search-wrap {
    position: relative;
    max-width: 380px;
}

.loja-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: .85rem;
    pointer-events: none;
}

.loja-search-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    padding: .55rem .9rem .55rem 2.4rem;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
}

.loja-search-input:focus {
    border-color: rgba(0,200,83,.4);
}

.loja-search-input::placeholder {
    color: var(--text-muted);
}

/* ── Item card — preço em R$ ──────────────────────────────── */
.item-price {
    margin-top: auto;
    padding-top: .5rem;
}

/* ── VIP card — duração ───────────────────────────────────── */
.vip-duracao {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: .2rem .7rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: .5rem;
}

/* ============================================================
   ITEM CARD COMPACTO
   ============================================================ */
.item-card-compact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color .2s, transform .15s;
    height: 100%;
}
.item-card-compact:hover {
    border-color: rgba(0,200,83,.3);
    transform: translateY(-2px);
}
.icc-img-wrap {
    background: rgba(255,255,255,.03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .6rem;
    height: 80px;
}
.icc-img-wrap img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}
.icc-body {
    padding: .4rem .6rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.icc-cat {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    background: rgba(255,255,255,.05);
    padding: .1rem .4rem;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: .3rem;
}
.icc-nome {
    font-size: .8rem;
    font-weight: 600;
    margin: 0 0 .25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.icc-price {
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    margin-top: auto;
    padding-bottom: .3rem;
}
.icc-footer {
    padding: .4rem .6rem .6rem;
}
.icc-footer .btn {
    font-size: .78rem;
    padding: .3rem .5rem;
}

/* ── Placeholder compacto ─────────────────────────────────── */
.placeholder-card { opacity: .35; pointer-events: none; }

/* ── Saldo pill ───────────────────────────────────────────── */
.saldo-pill {
    background: rgba(0,200,83,.08);
    border: 1px solid rgba(0,200,83,.2);
    border-radius: 20px;
    padding: .3rem .9rem;
    font-size: .85rem;
    white-space: nowrap;
}

/* ── Filtro pequeno ───────────────────────────────────────── */
.btn-filter-sm {
    font-size: .78rem;
    padding: .25rem .65rem;
}

/* ── VIP bônus de gemas ───────────────────────────────────── */
.vip-gemas-bonus {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(0,200,83,.1);
    border: 1px solid rgba(0,200,83,.25);
    border-radius: 20px;
    padding: .2rem .8rem;
    font-size: .8rem;
    color: var(--accent);
    margin-top: .5rem;
}

/* ── VIP: label contribuição ──────────────────────────────── */
.vip-price-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-bottom: .15rem;
}

/* ── Gemas: label contribuição ────────────────────────────── */
.pacote-preco-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-muted);
    margin-top: .75rem;
    margin-bottom: .1rem;
}
