/* ===== Joao Havelange — Tema Escuro Mobile-first ===== */
:root {
  --bg: #0a0e0f; --surface: #14191c; --surface2: #1a2024; --surface3: #21282d;
  --primary: #00d084; --primary-glow: rgba(0,208,132,0.15); --primary-dark: #00a868;
  --text: #e8ecef; --text-secondary: #8899a6; --text-muted: #5c6e7a;
  --border: #293138; --border-light: #333d45;
  --live: #ff4444; --danger: #ef5350; --danger-bg: rgba(239,83,80,0.08);
  --warning: #ffa726; --gold: #ffc107; --silver: #a0a8b0; --bronze: #c97e48;
  --radius: 14px; --radius-sm: 8px; --radius-xs: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
body { display: flex; flex-direction: column; overflow-x: hidden; }
.hidden { display: none !important; }
::selection { background: var(--primary); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ===== LOGIN ===== */
#tela-login { min-height: 100dvh; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #0f1a14 0%, #0a0e0f 55%, #050808 100%); padding: 20px; }
.card-login { width: 100%; max-width: 400px; background: var(--surface); border-radius: var(--radius); padding: 32px 28px 28px; border: 1px solid var(--border); box-shadow: 0 24px 60px rgba(0,0,0,.50); }
.logo-login { width: 80px; height: 80px; border-radius: 12px; margin: 0 auto 12px; display: block; object-fit: cover; background: var(--surface3); }
.app-titulo { text-align: center; font-size: 1.3em; font-weight: 900; color: var(--text); letter-spacing: -0.5px; }
.app-subtitulo { text-align: center; font-size: 0.75em; color: var(--text-muted); font-weight: 500; margin: 4px 0 20px; }

.auth-tabs { display: flex; gap: 4px; background: var(--bg); border-radius: var(--radius-xs); padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 10px; border: none; background: transparent; color: var(--text-muted); cursor: pointer; font-weight: 600; font-size: 0.88em; border-radius: 4px; font-family: inherit; }
.auth-tab.ativo { background: var(--surface2); color: var(--text); }
.auth-form { display: none; }
.auth-form.ativo { display: block; }

.form-grupo { margin-bottom: 12px; }
.form-grupo input { width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xs); color: var(--text); font-size: 0.94em; font-family: inherit; outline: none; }
.form-grupo input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,208,132,0.08); }
.input-icon { position: relative; }
.input-icon .icon-left { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.input-icon input { padding-left: 42px !important; }
.feedback { min-height: 18px; font-size: 0.78em; color: var(--danger); text-align: center; margin-bottom: 4px; font-weight: 600; }

.btn { height: 44px; border: none; border-radius: var(--radius-xs); font-size: 0.94em; font-weight: 700; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; }
.btn:active { transform: scale(0.98); }
.btn-primario { background: var(--primary); color: #000; }
.btn-primario:hover { background: var(--primary-dark); }
.btn-perigo { background: var(--danger); color: #fff; }
.btn-outline { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--surface2); color: var(--text); }
.btn-icon { background: transparent; border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; padding: 5px 8px; border-radius: 4px; font-size: 0.75em; font-family: inherit; }
.btn-icon:hover { background: var(--surface3); color: var(--text); }

/* ===== TOPBAR ===== */
#app-tela { min-height: 100dvh; display: flex; flex-direction: column; }
#topbar { background: var(--surface); height: 56px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; position: sticky; top: 0; z-index: 60; }
.topbar-titulo { font-weight: 900; font-size: 1em; letter-spacing: -0.3px; }
.topbar-edicao { font-weight: 400; font-size: 0.62em; color: var(--text-muted); display: block; line-height: 1; }
.topbar-user { display: flex; align-items: center; gap: 12px; }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--surface3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.7em; color: var(--primary); border: 2px solid var(--border); flex-shrink: 0; }
.user-nome { font-weight: 600; font-size: 0.82em; color: var(--text-secondary); }
.btn-logout { background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 1em; padding: 8px; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
.btn-logout:hover { color: var(--danger); background: var(--danger-bg); }
.btn-entrar-top { background: var(--primary); color: #000; border: none; padding: 8px 16px; border-radius: 20px; font-weight: 700; cursor: pointer; font-size: 0.8em; font-family: inherit; display: flex; align-items: center; gap: 6px; }
.btn-entrar-top:hover { background: var(--primary-dark); }
.btn-admin-top { background: var(--surface3); color: var(--warning); border: 1px solid rgba(255,167,38,0.2); padding: 6px 12px; border-radius: 20px; font-weight: 600; cursor: pointer; font-size: 0.75em; font-family: inherit; display: flex; align-items: center; gap: 6px; }
.btn-admin-top:hover { background: rgba(255,167,38,0.1); }

/* ===== TABS ===== */
.tabs-nav { display: flex; gap: 4px; background: var(--surface2); margin: 12px 16px; border-radius: var(--radius-xs); padding: 4px; overflow-x: auto; scrollbar-width: none; flex-shrink: 0; }
.tabs-nav::-webkit-scrollbar { display: none; }
.tab { flex: 1 0 auto; padding: 10px 14px; background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.82em; font-weight: 600; border-radius: 4px; font-family: inherit; white-space: nowrap; display: flex; align-items: center; justify-content: center; gap: 6px; }
.tab:hover { color: var(--text-secondary); }
.tab.ativo { background: var(--surface3); color: var(--text); }
.tab-badge { font-size: 0.78em; background: var(--border); color: var(--text-muted); padding: 2px 7px; border-radius: 10px; }
.tab.ativo .tab-badge { background: var(--primary); color: #000; }

/* ===== CONTEUDO ===== */
#conteudo { flex: 1; padding: 0 16px 32px; overflow-y: auto; max-width: 900px; margin: 0 auto; width: 100%; }
.tab-content { display: none; }
.tab-content.ativo { display: block; }

/* ===== GAME CARDS ===== */
.game-card { background: var(--surface); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 14px; border: 1px solid var(--border); }
.game-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.8em; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.game-status-live { color: var(--live); font-weight: 700; display: flex; align-items: center; gap: 8px; background: rgba(255,68,68,0.08); padding: 4px 12px; border-radius: 20px; }
.game-status-live i { font-size: 0.5em; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
.game-status-finished { color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.game-status-upcoming { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.game-teams { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; margin-bottom: 18px; }
.team-block { text-align: center; }
.team-block.home { text-align: right; }
.team-block.away { text-align: left; }
.team-name { font-weight: 700; font-size: 1em; margin-bottom: 4px; }
.team-score { font-size: 2em; font-weight: 900; color: var(--primary); letter-spacing: -1px; }
.team-score.empty { color: var(--text-muted); font-size: 1.3em; }
.vs-divider { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.vs-badge { background: var(--surface3); color: var(--text-muted); font-weight: 700; font-size: 0.7em; padding: 5px 10px; border-radius: 20px; }
.vs-score { font-size: 1.2em; font-weight: 900; color: var(--text-secondary); letter-spacing: 2px; }

.prediction-box { background: var(--surface2); border-radius: var(--radius-sm); padding: 12px 16px; }
.prediction-row { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: 0.8em; align-items: center; line-height: 1.7; }
.pred-tag { display: inline-flex; align-items: center; gap: 4px; background: var(--surface3); padding: 3px 9px; border-radius: 4px; font-weight: 600; white-space: nowrap; }
.pred-tag.correct { background: rgba(0,208,132,0.12); color: var(--primary); }
.pred-tag.wrong { background: rgba(239,83,80,0.1); color: var(--danger); }
.pred-points { margin-left: auto; font-weight: 800; font-size: 1.05em; color: var(--primary); white-space: nowrap; }
.pred-empty { color: var(--text-muted); font-size: 0.82em; text-align: center; padding: 10px 0; }

.btn-predict { display: block; width: 100%; background: var(--primary); color: #000; border: none; padding: 12px; border-radius: var(--radius-xs); font-weight: 700; cursor: pointer; font-size: 0.88em; font-family: inherit; }
.btn-predict:hover { background: var(--primary-dark); }
.btn-edit-pred { display: block; width: 100%; background: transparent; color: var(--primary); border: 1px solid rgba(0,208,132,0.3); padding: 10px; border-radius: var(--radius-xs); font-weight: 600; cursor: pointer; font-size: 0.85em; font-family: inherit; margin-top: 8px; }
.btn-edit-pred:hover { background: var(--primary-glow); }
.phase-badge { font-weight: 700; font-size: 0.68em; padding: 2px 8px; border-radius: 10px; margin-left: 8px; white-space: nowrap; }
.phase-badge.semi { background: rgba(255,167,38,0.15); color: var(--warning); }
.phase-badge.final { background: rgba(255,193,7,0.15); color: var(--gold); }

/* ===== RANKING ===== */
.ranking-header { text-align: center; margin-bottom: 20px; }
.ranking-header h2 { font-size: 1.2em; font-weight: 800; color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 8px; }
.ranking-card { display: flex; align-items: center; background: var(--surface); border-radius: var(--radius-sm); padding: 0; margin-bottom: 8px; border: 1px solid var(--border); }
.ranking-card.me { border-color: var(--primary); background: var(--surface2); }
.rank-pos { width: 48px; text-align: center; font-size: 1.2em; font-weight: 900; padding: 14px 0; flex-shrink: 0; }
.rank-pos.gold { background: linear-gradient(135deg,#b8860b,#ffc107); color: #000; }
.rank-pos.silver { background: linear-gradient(135deg,#6e767c,#b0b8c0); color: #000; }
.rank-pos.bronze { background: linear-gradient(135deg,#8b4513,#c97e48); color: #000; }
.rank-body { flex: 1; padding: 10px 16px; min-width: 0; }
.rank-name { font-weight: 700; font-size: 0.9em; display: flex; align-items: center; gap: 8px; }
.rank-tag-me { font-size: 0.65em; color: var(--primary); font-weight: 600; background: var(--primary-glow); padding: 2px 8px; border-radius: 4px; }
.rank-stats { font-size: 0.7em; color: var(--text-muted); margin-top: 2px; }
.rank-pts { font-weight: 900; font-size: 1.1em; color: var(--primary); padding: 0 16px; text-align: right; flex-shrink: 0; }

/* ===== STANDINGS ===== */
.standings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 8px; }
.standings-header h2 { font-size: 1.1em; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.standings-table { width: 100%; border-collapse: collapse; font-size: 0.85em; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.standings-table th { text-align: left; padding: 9px 6px; color: var(--text-muted); font-weight: 700; font-size: 0.7em; text-transform: uppercase; background: var(--surface2); border-bottom: 1px solid var(--border); white-space: nowrap; }
.standings-table th:first-child { padding-left: 14px; }
.standings-table td { padding: 9px 6px; border-bottom: 1px solid rgba(255,255,255,0.03); white-space: nowrap; }
.standings-table td:first-child { padding-left: 14px; }
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr:hover td { background: rgba(255,255,255,0.02); }
.standings-table .center { text-align: center; }
.standings-table .team-col { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.standings-table .pts-col { font-weight: 900; color: var(--primary); text-align: center; }

/* ===== BRACKET ===== */
.bracket { margin-top: 28px; overflow-x: auto; }
.bracket-title { font-size: 1em; font-weight: 800; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--gold); }
.bracket-tree { display: flex; align-items: center; justify-content: center; min-width: 560px; gap: 0; padding: 10px 0; }
.bracket-col.semi { width: 150px; }
.bracket-col.conn { width: 40px; align-items: center; justify-content: center; }
.bracket-col.conn svg { width: 100%; height: 160px; }
.bracket-col.final-center { width: 180px; display: flex; flex-direction: column; gap: 0; }
.bracket-final-box { display: flex; align-items: center; gap: 6px; }
.bracket-final-team { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 6px; text-align: center; }
.bracket-final-team .bracket-team-name { font-weight: 700; font-size: 0.75em; }
.bracket-final-team .bracket-team-score { font-weight: 900; font-size: 1.1em; color: var(--primary); margin-top: 3px; }
.bracket-final-vs { font-size: 0.6em; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; white-space: nowrap; }
.bracket-match { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.bracket-team { display: flex; align-items: center; justify-content: space-between; padding: 6px 9px; font-weight: 600; font-size: 0.75em; border-bottom: 1px solid var(--border); }
.bracket-team:last-child { border-bottom: none; }
.bracket-team.winner { background: rgba(0,208,132,0.08); color: var(--primary); }
.bracket-team.loser { color: var(--text-muted); }
.bracket-team-score { font-weight: 900; font-size: 0.95em; color: var(--primary); }
.bracket-team.loser .bracket-team-score { color: var(--text-muted); }
.bracket-date { text-align: center; font-size: 0.65em; color: var(--text-muted); padding: 3px 0; }

/* ===== TEAMS ===== */
.team-card { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 12px; overflow: hidden; }
.team-card-header { display: flex; align-items: center; gap: 10px; padding: 14px 18px; cursor: pointer; }
.team-card-header:hover { background: var(--surface2); }
.team-flag { font-size: 1.6em; width: 42px; text-align: center; flex-shrink: 0; }
.team-name-title { font-weight: 800; font-size: 1em; flex: 1; }
.team-count { font-size: 0.78em; color: var(--text-muted); }
.team-chevron { color: var(--text-muted); transition: transform 0.2s; }
.team-card.open .team-chevron { transform: rotate(180deg); }
.team-card.open .team-roster { display: block; }
.team-roster { display: none; padding: 0 16px 14px; border-top: 1px solid var(--border); }
.roster-section { margin-top: 12px; }
.roster-title { font-size: 0.7em; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.player-list { display: flex; flex-direction: column; gap: 1px; }
.player-row { display: flex; align-items: center; gap: 10px; padding: 5px 10px; border-radius: 6px; cursor: pointer; }
.player-row:hover { background: var(--surface3); }
.player-row-avatar { width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0; background: var(--surface3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.72em; color: var(--primary); overflow: hidden; border: 2px solid var(--border); }
.player-row-avatar img { width: 100%; height: 100%; object-fit: cover; }
.player-row-name { font-weight: 600; font-size: 0.82em; }
.player-row-badges { display: flex; gap: 3px; flex-shrink: 0; margin-left: auto; flex-wrap: wrap; }
.player-badge { font-size: 0.65em; font-weight: 700; padding: 2px 6px; border-radius: 10px; white-space: nowrap; }
.player-badge.cap { background: rgba(255,193,7,0.15); color: var(--gold); }
.player-badge.gol { background: rgba(0,208,132,0.12); color: var(--primary); }
.player-badge.am { background: rgba(255,167,38,0.12); color: var(--warning); }
.player-badge.verm { background: rgba(239,83,80,0.12); color: var(--danger); }
.player-badge.mvp { background: rgba(0,208,132,0.2); color: var(--primary); }
.player-badge.les { background: rgba(239,83,80,0.15); color: var(--danger); }
.player-badge.sus { background: rgba(158,158,158,0.15); color: var(--text-muted); }

/* ===== MODAIS ===== */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 100; align-items: center; justify-content: center; }
.modal-overlay.show { display: flex; }
.modal { background: var(--surface); border-radius: var(--radius); padding: 24px; width: 480px; max-width: 95vw; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.5); max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1em; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.modal-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.2em; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: var(--surface3); color: var(--text); }
.modal-jogador { width: 340px; text-align: center; }
.modal-jogador .modal-close { position: absolute; top: 12px; right: 16px; }

/* Pick buttons no modal de palpite */
.pick-group-label { font-size: 0.78em; color: var(--text-secondary); font-weight: 600; margin-bottom: 8px; }
.pick-group { display: flex; gap: 6px; margin-bottom: 16px; }
.pick-btn { flex: 1; padding: 12px 8px; border: 2px solid var(--border); background: var(--bg); color: var(--text-secondary); border-radius: var(--radius-xs); cursor: pointer; text-align: center; font-weight: 700; font-size: 0.85em; font-family: inherit; }
.pick-btn:hover { border-color: var(--border-light); color: var(--text); }
.pick-btn.selected { background: var(--primary); color: #000; border-color: var(--primary); }
.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; justify-content: center; }
.score-input { width: 64px; padding: 10px; text-align: center; font-size: 1.2em; font-weight: 800; background: var(--bg); border: 2px solid var(--border); color: var(--text); border-radius: var(--radius-xs); outline: none; font-family: 'Inter', monospace; }
.score-input:focus { border-color: var(--primary); }
.score-vs { font-weight: 700; color: var(--text-muted); font-size: 1em; }
.scoring-info { background: var(--bg); border-radius: var(--radius-xs); padding: 10px 14px; font-size: 0.72em; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.scoring-info strong { color: var(--primary); }
.admin-game-list { max-height: 180px; overflow-y: auto; margin-top: 8px; }
.admin-game-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.8em; }

.empty-state { text-align: center; padding: 48px 16px; color: var(--text-muted); }
.empty-state i { font-size: 2.8em; opacity: 0.12; display: block; margin-bottom: 12px; }
.empty-state p { font-size: 0.88em; }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column-reverse; gap: 10px; pointer-events: none; }
.toast { background: var(--surface2); border: 1px solid var(--border); padding: 12px 18px; border-radius: var(--radius-sm); color: var(--text); font-weight: 600; font-size: 0.84em; pointer-events: all; display: flex; align-items: center; gap: 10px; min-width: 280px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); animation: toastIn 0.35s ease; }
.toast.success { border-left: 3px solid var(--primary); }
.toast.error { border-left: 3px solid var(--danger); }
.toast.warning { border-left: 3px solid var(--warning); }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .tabs-nav { margin: 8px 8px; padding: 3px; }
  .tab { font-size: 0.72em; padding: 8px 10px; }
  #conteudo { padding: 0 8px 24px; }
  .game-card { padding: 12px; }
  .team-name { font-size: 0.85em; }
  .team-score { font-size: 1.5em; }
  .team-score.empty { font-size: 1.1em; }
  .btn-predict { padding: 14px; font-size: 0.92em; }
  .prediction-row { font-size: 0.72em; gap: 4px 8px; }
  .bracket-tree { min-width: 440px; }
  .bracket-col.semi { width: 120px; }
  .bracket-col.conn { width: 30px; }
  .bracket-col.final-center { width: 140px; }
  .standings-table { font-size: 0.72em; min-width: 520px; }
  #tab-standing { overflow-x: auto; }
  .rank-pos { width: 40px; font-size: 1em; padding: 11px 0; }
  .rank-body { padding: 8px 10px; }
  .rank-name { font-size: 0.8em; }
  .rank-stats { font-size: 0.65em; }
  .rank-pts { font-size: 0.95em; padding: 0 10px; }
  .team-card-header { padding: 12px 14px; }
  .team-flag { font-size: 1.3em; width: 36px; }
  .team-name-title { font-size: 0.9em; }
  .player-row { padding: 7px 7px; gap: 8px; }
  .player-row-avatar { width: 34px; height: 34px; }
  .player-row-name { font-size: 0.85em; }
  .modal { width: 100%; max-width: 100%; border-radius: 16px 16px 0 0; margin-top: auto; max-height: 85vh; padding: 20px; }
  .modal-overlay { align-items: flex-end; }
  .modal-jogador { width: 300px; max-width: 92vw; margin: auto; border-radius: var(--radius); }
  #modal-jogador.modal-overlay { align-items: center; }
  .toast-container { bottom: 10px; right: 10px; left: 10px; }
  .toast { min-width: auto; font-size: 0.8em; }
  .pick-btn { padding: 12px 6px; font-size: 0.78em; }
  .pick-group { gap: 4px; }
  .score-input { width: 52px; font-size: 1em; padding: 8px; }
}

@media (max-width: 380px) {
  .game-teams { grid-template-columns: 1fr; gap: 4px; }
  .game-teams .team-block { text-align: center !important; }
  .pick-btn { font-size: 0.7em; padding: 10px 4px; }
  .score-input { width: 44px; font-size: 0.9em; }
  .tab { font-size: 0.65em; padding: 6px 7px; }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
  #conteudo { max-width: 1000px; padding-bottom: 48px; }
  .tabs-nav { margin: 16px 0; }
  .game-card { padding: 20px 28px; }
  .game-card:hover { border-color: var(--border-light); }
}
