/* ============== Bolão da Ótima — identidade BANDEIRÃO ============== */
:root {
  --green: #009639;
  --green-dk: #00712a;
  --yellow: #FFDF00;
  --yellow-soft: #FFE94D;
  --cream: #FFFAE0;
  --blue: #002776;
  --blue-dk: #001a52;
  --ink: #14110a;
  --rule: rgba(0,39,118,0.12);
  --gold: #D4AF37;
  --red: #E63946;
  --mute: #7a8294;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ============== Faixa bandeirinhas no topo ============== */
.bandeira-faixa {
  height: 14px;
  background: linear-gradient(90deg,
    var(--green) 0 25%,
    var(--yellow) 25% 50%,
    var(--blue) 50% 75%,
    var(--green) 75% 100%);
  background-size: 80px 100%;
  background-repeat: repeat-x;
}

/* ============== Topbar ============== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 0 var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  border: 2px solid var(--yellow);
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Archivo Black', sans-serif;
  color: var(--blue);
  font-size: 14px;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-top: 3px;
}

/* ============== Nav ============== */
.nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 11px;
  border-radius: 99px;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.nav a:hover, .nav a.ativo {
  background: #fff;
  border-color: var(--rule);
}
.nav a.ativo {
  color: var(--blue);
  background: var(--yellow);
  border-color: var(--blue);
}

/* ============== Container ============== */
.container {
  max-width: 460px;
  margin: 0 auto;
  padding: 4px 14px 80px;
}

/* ============== Etapa 1 confirmada (banner) ============== */
.etapa1-confirmada {
  background: var(--yellow);
  border: 2px solid var(--blue);
  margin-top: 14px;
}
.etapa1-confirmada .ec-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.etapa1-confirmada .ec-flag {
  width: 52px; height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  border: 1.5px solid var(--blue);
  flex-shrink: 0;
}
.etapa1-confirmada .btn {
  flex-shrink: 0;
}

/* ============== Top seleções mais apostadas ============== */
.top-apostas {
  margin-top: 14px;
}
.top-apostas h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ta-row {
  display: grid;
  grid-template-columns: 28px 36px 1fr 80px 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.ta-row:last-child { border-bottom: 0; }
.ta-pos {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--blue);
  text-align: center;
}
.ta-flag {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.ta-flag img { width: 100%; height: 100%; object-fit: contain; }
.ta-nm {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.ta-bar {
  height: 10px;
  background: var(--rule);
  border-radius: 99px;
  overflow: hidden;
}
.ta-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--yellow));
}
.ta-pct {
  font-family: 'Archivo Black', sans-serif;
  font-size: 13px;
  color: var(--green-dk);
  text-align: right;
}

/* ============== Separador Etapa 2 ============== */
.etapa2-sep {
  position: relative;
  text-align: center;
  margin: 28px 0 0;
  padding-top: 14px;
  border-top: 3px dashed rgba(0,39,118,0.25);
}
.etapa2-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 99px;
  border: 2px solid var(--yellow);
}

/* ============== Bolão Simples card (home) ============== */
.bolao-simples-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 0;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #0a3a8e 100%);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 0 var(--blue-dk);
  position: relative;
  overflow: hidden;
}
.bolao-simples-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,223,0,0.35), transparent 60%);
}
.bolao-simples-card .bs-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 26px;
  flex-shrink: 0;
  position: relative;
}
.bolao-simples-card .bs-tx { flex: 1; color: #fff; position: relative; }
.bolao-simples-card .bs-lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.bolao-simples-card .bs-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 2px;
  line-height: 1.05;
}
.bolao-simples-card .bs-title strong { color: var(--yellow); }
.bolao-simples-card .bs-arrow {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--blue);
  font-weight: 900;
  font-size: 16px;
  position: relative;
  flex-shrink: 0;
}

/* ============== Seleções grid (/campeao) ============== */
.selecoes-grid {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.selecao-card {
  background: #fff;
  border: 2px solid var(--rule);
  border-radius: 12px;
  padding: 10px 6px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: transform 0.04s;
}
.selecao-card:active { transform: scale(0.97); }
.selecao-card .flag {
  width: 42px; height: 42px;
  object-fit: contain;
  background: #fff;
}
.selecao-card .flag-emoji { font-size: 32px; line-height: 1; }
.selecao-card .sel-nm {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.selecao-card.on {
  background: var(--yellow);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,39,118,0.15);
}
.selecao-card:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 380px) {
  .selecoes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============== Hero (Home) ============== */
.hero {
  margin: 10px 0 0;
  background: var(--yellow);
  border-radius: 22px;
  padding: 22px 20px 130px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 0 var(--blue);
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: repeating-linear-gradient(90deg, var(--green) 0 14px, var(--green-dk) 14px 28px);
  border-radius: 0 0 22px 22px;
}
.hero::after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: 14px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #f4f4f4 40%, #d8d8d8 70%, #aaa 100%);
  box-shadow: inset 0 -16px 24px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.25);
}
.hero .kicker {
  display: inline-block;
  background: var(--blue);
  color: var(--yellow);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 48px;
  line-height: 0.9;
  margin: 12px 0 8px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--blue);
  font-weight: 600;
  max-width: 240px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

/* ============== Contagem regressiva ============== */
.countdown {
  margin: -110px 0 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.countdown .cell {
  background: #fff;
  border-radius: 14px;
  padding: 12px 0 10px;
  text-align: center;
  border: 1.5px solid var(--rule);
  box-shadow: 0 3px 0 rgba(0,39,118,0.15);
}
.countdown .n {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown .l {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
  margin-top: 5px;
}
.countdown-cap {
  text-align: center;
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 10px 0 0;
}

/* ============== CTAs / Botões ============== */
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  text-align: center;
  border: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 16px;
  border-radius: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 3px 0 var(--green-dk);
  transition: transform 0.04s ease;
}
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 var(--green-dk); }
.btn-primary { background: var(--green); box-shadow: 0 3px 0 var(--green-dk); }
.btn-block { display: block; width: 100%; }
.btn-secondary {
  background: #fff;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: 0 3px 0 var(--blue);
}
.btn-sm { padding: 7px 12px; font-size: 12px; border-radius: 99px; }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 3px 0 var(--blue-dk); }

.cta-hero {
  display: block;
  margin: 14px 0 0;
  background: var(--green);
  color: #fff;
  border: 0;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 5px 0 var(--green-dk);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.cta-hero small {
  display: block;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.cta-secundario {
  display: block;
  text-align: center;
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

/* ============== Social proof ============== */
.social-proof {
  margin: 18px 0 0;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--rule);
}
.social-proof .av-group { display: flex; }
.social-proof .av-group span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 0 0 1px var(--rule);
}
.social-proof .av-group span:first-child { margin-left: 0; }
.social-proof .tx { font-size: 12px; }
.social-proof .tx b {
  font-family: 'Archivo Black';
  color: var(--blue);
  font-size: 20px;
  display: block;
  line-height: 1;
}
.social-proof .tx small { color: #555; }

/* ============== Como joga ============== */
.como-joga { margin: 26px 0 0; }
.como-joga h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
}
.como-joga-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.como-joga .card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1.5px solid var(--rule);
}
.como-joga .card .ico {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid; place-items: center;
  font-family: 'Archivo Black';
  font-size: 18px;
  color: var(--blue);
  margin-bottom: 8px;
}
.como-joga .card h4 {
  margin: 0 0 4px;
  font-size: 13px;
  font-family: 'Inter';
  font-weight: 800;
  color: var(--ink);
}
.como-joga .card p {
  margin: 0;
  font-size: 11.5px;
  color: #555;
  line-height: 1.4;
}
.como-joga .card.wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.como-joga .card.wide .ico { margin-bottom: 0; flex-shrink: 0; }

/* ============== Prêmio destaque ============== */
.premio-card {
  margin: 22px 0 0;
  background: var(--blue);
  color: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 0 rgba(0,0,0,0.18);
}
.premio-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(212,175,55,0.45), transparent 60%);
}
.premio-card .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 800;
}
.premio-card h3 {
  font-family: 'Archivo Black';
  font-size: 32px;
  margin: 4px 0 6px;
  line-height: 0.95;
  text-transform: uppercase;
}
.premio-card h3 b { color: var(--yellow); font-weight: 400; }
.premio-card p {
  font-size: 12.5px;
  margin: 0;
  color: rgba(255,255,255,0.85);
  max-width: 240px;
}

/* ============== Cards genéricos ============== */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin: 14px 0 0;
  border: 1.5px solid var(--rule);
  box-shadow: 0 3px 0 rgba(0,39,118,0.06);
}
.card h2 {
  margin: 0 0 8px;
  font-family: 'Archivo Black';
  font-size: 22px;
  color: var(--blue);
  text-transform: uppercase;
}
.card h3 {
  font-family: 'Archivo Black';
  font-size: 16px;
  color: var(--blue);
  margin: 0 0 4px;
  text-transform: uppercase;
}

/* ============== Page header (palpites/ranking) ============== */
.page-head {
  margin: 12px 0 0;
  background: var(--blue);
  color: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.page-head .bg-ball {
  position: absolute;
  right: -30px; top: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #ddd 70%);
  opacity: 0.12;
}
.page-head .crumb {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
  position: relative;
}
.page-head h1 {
  font-family: 'Archivo Black';
  font-size: 22px;
  margin: 4px 0 0;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 380px) {
  .page-head h1 { font-size: 19px; }
}
@media (max-width: 340px) {
  .page-head h1 { font-size: 17px; }
}
.page-head .meta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 12px;
  flex-wrap: wrap;
  position: relative;
}
.page-head .meta b { color: var(--yellow); font-family: 'Archivo Black'; font-size: 14px; }

/* ============== Lista de bolões ============== */
.comp-card {
  margin: 12px 0 0;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1.5px solid var(--rule);
  box-shadow: 0 3px 0 rgba(0,39,118,0.06);
  cursor: pointer;
  position: relative;
}
.comp-card .comp-faixa {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  border-radius: 16px 0 0 16px;
}
.comp-card h3 {
  font-family: 'Archivo Black';
  font-size: 18px;
  color: var(--blue);
  margin: 0 0 4px;
  text-transform: uppercase;
  padding-left: 14px;
}
.comp-card p {
  margin: 0;
  padding-left: 14px;
  font-size: 12.5px;
  color: #555;
}
.comp-card .comp-stats {
  margin-top: 10px;
  padding-left: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
}
.comp-card .comp-cta {
  padding-left: 14px;
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ============== Pills (rodadas/filtros) ============== */
.pills {
  display: flex;
  gap: 6px;
  padding: 14px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pills::-webkit-scrollbar { display: none; }
.pills button, .pills a {
  background: #fff;
  border: 1.5px solid var(--rule);
  padding: 8px 14px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 12px;
  color: var(--blue);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.pills button.on, .pills a.on {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ============== Rodada title ============== */
.rodada-titulo {
  margin: 14px 0 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.rodada-titulo h3 {
  font-family: 'Archivo Black';
  font-size: 18px;
  margin: 0;
  color: var(--blue);
  text-transform: uppercase;
}
.rodada-titulo small {
  font-size: 11px;
  color: #555;
}

/* ============== Match card ============== */
.match {
  margin: 10px 0 0;
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  border: 1.5px solid var(--rule);
  box-shadow: 0 3px 0 rgba(0,39,118,0.06);
}
.match .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}
.match .top > span:first-child {
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
.match .top .tag {
  background: var(--green);
  color: #fff;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.match.done .top .tag { background: #888; }
.match.live .top .tag { background: var(--red); animation: pulse 1.4s ease-in-out infinite; }
.match.fechado .top .tag { background: var(--blue); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.match .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}
.match .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.match .team .flag {
  width: 44px; height: 44px;
  object-fit: contain;
  background: #fff;
}
.match .team .flag-emoji { font-size: 30px; line-height: 1; }
.match .team .nm {
  font-family: 'Archivo Black';
  font-size: 13px;
  color: var(--blue);
  text-align: center;
  line-height: 1.1;
}
.match .vs { display: flex; align-items: center; gap: 6px; }
.match .vs input {
  width: 44px; height: 50px;
  border: 2px solid var(--blue);
  border-radius: 10px;
  text-align: center;
  font-family: 'Archivo Black';
  font-size: 24px;
  color: var(--blue);
  background: var(--cream);
  -moz-appearance: textfield;
  appearance: textfield;
}
.match .vs input::-webkit-outer-spin-button,
.match .vs input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.match .vs input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.match .vs input:disabled {
  border-color: var(--rule);
  background: #f4f4ef;
  color: #888;
}
.match .vs .x {
  font-family: 'Archivo Black';
  font-size: 18px;
  color: var(--blue);
  opacity: 0.5;
}

.match .placar-final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.match .placar-final .nums {
  font-family: 'Archivo Black';
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
}
.match .placar-final .lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #888;
  text-transform: uppercase;
}

.match .real {
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.match .real .seu-palpite {
  font-family: 'Archivo Black';
  color: var(--blue);
}
.match .real .seu-palpite small {
  display: block;
  font-family: 'Inter';
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
}
.match .real .pts {
  background: var(--green);
  color: #fff;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter';
}
.match.errou .real .pts { background: #aaa; }

/* ============== Ranking ============== */
.r-me {
  margin: 12px 0 0;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB800 100%);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 0 rgba(0,39,118,0.18);
  border: 2px solid var(--blue);
}
.r-me .pos {
  font-family: 'Archivo Black';
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
  min-width: 44px;
  text-align: center;
}
.r-me .info { flex: 1; }
.r-me .info .l {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
}
.r-me .info .n {
  font-family: 'Inter';
  font-weight: 800;
  font-size: 14px;
  color: var(--blue);
}
.r-me .pts {
  font-family: 'Archivo Black';
  font-size: 22px;
  color: var(--blue);
  text-align: right;
}
.r-me .pts span {
  font-size: 9px;
  font-family: 'Inter';
  font-weight: 800;
  letter-spacing: 0.12em;
  display: block;
  color: var(--blue);
}

.r-podium {
  margin: 14px 0 0;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border-radius: 18px;
  padding: 18px 12px 14px;
  border: 1.5px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 6px;
  align-items: end;
  box-shadow: 0 3px 0 rgba(0,39,118,0.06);
}
.r-podium .p {
  text-align: center;
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 12px 4px 10px;
}
.r-podium .p .crown {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
}
.r-podium .p .av {
  width: 46px; height: 46px;
  border-radius: 50%;
  margin: 0 auto 6px;
  display: grid; place-items: center;
  font-family: 'Archivo Black';
  font-size: 16px;
  color: var(--blue);
  background: #fff;
}
.r-podium .p .nm {
  font-family: 'Archivo Black';
  font-size: 12px;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.1;
}
.r-podium .p .pt {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  margin-top: 2px;
}
.r-podium .p1 {
  background: linear-gradient(180deg, #FFE082 0%, var(--gold) 100%);
  padding: 16px 4px 12px;
  position: relative;
  z-index: 1;
}
.r-podium .p1 .av { background: #fff; }
.r-podium .p2 { background: linear-gradient(180deg, #ECECEC 0%, #B0B0B0 100%); }
.r-podium .p2 .av { background: #fff; }
.r-podium .p3 { background: linear-gradient(180deg, #E0A878 0%, #A85D2E 100%); }
.r-podium .p3 .nm, .r-podium .p3 .pt { color: #fff; }
.r-podium .p3 .av { background: #fff; }

.r-list { margin: 14px 0 0; }
.r-list .r-item {
  display: grid;
  grid-template-columns: 30px 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 6px;
  border-bottom: 1px solid var(--rule);
}
.r-list .r-item:last-child { border-bottom: 0; }
.r-list .r-item .pos {
  font-family: 'Archivo Black';
  font-size: 14px;
  color: var(--blue);
  text-align: center;
}
.r-list .r-item .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Archivo Black';
  font-size: 13px;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--rule);
}
.r-list .r-item .nm {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.r-list .r-item .nm small {
  color: #888;
  font-weight: 500;
  font-size: 10.5px;
  display: block;
  margin-top: 1px;
}
.r-list .r-item .pt {
  font-family: 'Archivo Black';
  font-size: 16px;
  color: var(--green);
}
.r-list .r-item.minha {
  background: var(--yellow);
  border-radius: 12px;
  border-bottom-color: transparent;
}

/* ============== Forms ============== */
.label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Inputs com identidade Copa — borda verde forte, foca em amarelo */
.input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 2.5px solid var(--green);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:hover { border-color: var(--green-dk); }
.input:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 223, 0, 0.35);
}
.input::placeholder { color: #95a3b3; }
/* Selects também herdam o estilo */
select.input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
/* Card do formulário: borda Copa (verde + faixa amarela no topo) */
.form-card {
  position: relative;
  border: 2px solid var(--green);
  box-shadow: 0 4px 0 rgba(0,150,57,0.18);
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green) 0 33%, var(--yellow) 33% 66%, var(--blue) 66% 100%);
  border-radius: 14px 14px 0 0;
}
.form-card > * { position: relative; }
.form-fechar {
  position: absolute;
  top: 12px; right: 12px;
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
  color: var(--blue);
  width: 32px; height: 32px;
}

/* ============== Alerts ============== */
.alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-top: 12px;
}
.alert-info { background: rgba(255,223,0,0.25); color: var(--blue); border: 1.5px solid var(--yellow); }
.alert-ok { background: rgba(0,150,57,0.12); color: var(--green-dk); border: 1.5px solid var(--green); }
.alert-erro { background: rgba(230,57,70,0.1); color: var(--red); border: 1.5px solid var(--red); }

/* ============== Skeleton ============== */
.skel {
  height: 80px;
  margin: 14px 0;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(0,39,118,0.04), rgba(0,39,118,0.10), rgba(0,39,118,0.04));
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============== Toast ============== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.ok { background: var(--green); }
.toast.erro { background: var(--red); }

/* ============== Banner patrocinador (topbar) ============== */
.patroc-banner-global {
  display: none;
  background: #000;
  border-bottom: 2px solid var(--yellow);
  text-align: center;
  line-height: 0;
}
.patroc-banner-global.show { display: block; }
.patroc-banner-global a, .patroc-banner-global > div {
  display: block;
  width: 100%;
  max-width: 770px;  /* casado com .app-wide do layout 2 colunas */
  margin: 0 auto;
}
.patroc-banner-global .banner-wrap { line-height: 0; }
.patroc-banner-global .banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
  /* sem max-height: banner mostra completo (proporcao natural ~5.5:1) */
}

/* ============== Rodapé ============== */
.rodape {
  background: #fff;
  border-top: 1.5px solid var(--rule);
  padding: 20px 14px 28px;
  margin-top: 36px;
}
.rodape-info {
  text-align: center;
  font-size: 11.5px;
  color: #888;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.rodape-info a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* ============== Regulamento (denso) ============== */
.card.regulamento {
  font-size: 13.5px;
  line-height: 1.55;
  color: #222;
}
/* .card.regulamento h3 unificado com .regulamento h3 abaixo (mesma fonte/tamanho) */
.card.regulamento p { margin: 0 0 8px; }
.card.regulamento ol, .card.regulamento ul { margin: 6px 0 6px 0; }
.card.regulamento li { margin-bottom: 4px; }

/* ============== Bônus / Resultados collapse ============== */
.bonus-help {
  background: var(--cream);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 14px;
  border-left: 4px solid var(--yellow);
}
.bonus-pts {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 12px;
}

details.resultados-collapse {
  margin: 14px 0 0;
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
details.resultados-collapse > summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  list-style: none;
}
details.resultados-collapse > summary::-webkit-details-marker { display: none; }
details.resultados-collapse .seta { transition: transform 0.2s; }
details.resultados-collapse[open] .seta { transform: rotate(90deg); }
details.resultados-collapse .resultados-conteudo { padding: 0 14px 14px; }

/* ============== Misc ============== */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  border-radius: 99px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 3px 0 #128c3a;
}

@media (max-width: 380px) {
  .hero h1 { font-size: 40px; }
  .countdown .n { font-size: 24px; }
  .premio-card h3 { font-size: 26px; }
}

/* ============== Ranking · Coluna Geral (Copa 2026 — pedido Juliane) ============== */
/* Quando estiver no modo "Por fase" da Copa, mostra a pontuação Geral ao lado do score da fase. */
.rk-row.tem-geral .pt-geral {
  font-family: 'Archivo Black';
  font-size: 14px;
  color: #b07d00;
  background: linear-gradient(135deg, #fff8d6 0%, #ffe89a 100%);
  border: 1.5px solid #fcd116;
  border-radius: 10px;
  padding: 4px 9px;
  white-space: nowrap;
  margin-left: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.rk-row.tem-geral .pt-geral span {
  font-size: 9px;
  font-family: 'Inter';
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #b07d00;
  text-transform: uppercase;
  margin-left: 3px;
}
/* Mobile: o Geral cai pra baixo do score da fase em vez de espremer */
@media (max-width: 480px) {
  .rk-row.tem-geral { flex-wrap: wrap; }
  .rk-row.tem-geral .pt-geral {
    flex-basis: 100%;
    justify-content: flex-end;
    margin-left: 0;
    margin-top: 4px;
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 11px;
  }
}
/* Geral no pódio (top 3): pílula pequena abaixo do score da fase */
.rk-podium .rk-geral {
  font-family: 'Inter';
  font-size: 10px;
  font-weight: 800;
  color: #b07d00;
  background: #fff8d6;
  border: 1px solid #fcd116;
  border-radius: 8px;
  padding: 2px 6px;
  margin-top: 4px;
  white-space: nowrap;
}
/* Geral no card "Sua posição" */
.r-me.r-me--geral { flex-wrap: wrap; }
.r-me .r-me-geral {
  flex-basis: 100%;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1.5px dashed rgba(0,39,118,0.25);
  font-family: 'Archivo Black';
  font-size: 16px;
  color: var(--blue);
  text-align: right;
}
.r-me .r-me-geral span {
  font-family: 'Inter';
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.7;
}
/* No widget compacto da landing, esconde o Geral (pouco espaço) */
.rkw-list .rk-row.tem-geral .pt-geral { display: none; }

/* ============== Landing do visitante (deslogado) ============== */
/* Hero compacto + CTA grande de cadastro, mostrado quando o usuário ainda não cadastrou. */
.hero-landing {
  background: linear-gradient(135deg, var(--blue) 0%, #1a4d8a 100%);
  color: #fff;
  padding: 28px 22px 30px;
  border-radius: 18px;
  text-align: center;
  margin: 0 0 16px;
  box-shadow: 0 6px 0 rgba(0, 39, 118, 0.18);
  position: relative;
  overflow: hidden;
}
.hero-landing::before {
  content: '⚽';
  position: absolute;
  font-size: 180px;
  opacity: 0.05;
  right: -30px;
  bottom: -60px;
  transform: rotate(-15deg);
}
.hero-landing-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  font-weight: 800;
  margin-bottom: 8px;
}
.hero-landing-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1;
}
.hero-landing-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
  line-height: 1.45;
}
.cta-hero-landing {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFB800 100%);
  color: var(--blue);
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.15s, box-shadow 0.15s;
  animation: ctapulse-landing 2.5s ease-in-out infinite;
}
.cta-hero-landing:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  text-decoration: none;
}
@keyframes ctapulse-landing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
/* Container dos 2 CTAs (Cadastrar + Entrar) */
.hero-landing-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
/* Botão secundário "Já tem conta? Entrar" — ghost com borda, MAIS visível que link */
.cta-hero-login {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.15s;
  font-weight: 600;
}
.cta-hero-login strong {
  color: var(--yellow);
  font-weight: 900;
  font-size: 16px;
  margin-left: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-hero-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  text-decoration: none;
}
/* Indicador de praça + link pra trocar (sou de outra cidade) */
.hero-praca-indicador {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.hp-label { font-size: 12px; opacity: 0.8; }
.hp-nome {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px;
  color: var(--yellow);
  letter-spacing: 0.02em;
}
.hp-trocar {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.85;
}
.hp-trocar:hover { opacity: 1; text-decoration: underline; }
@media (max-width: 480px) {
  .hero-landing-titulo { font-size: 28px; }
  .hero-landing-sub { font-size: 13px; }
  .cta-hero-landing { font-size: 14px; padding: 14px 22px; }
  .cta-hero-login { font-size: 14px; padding: 11px 18px; }
  .cta-hero-login strong { font-size: 15px; }
  .hp-nome { font-size: 16px; }
}

/* ============== Banner do prêmio (landing visitante + cadastro) ============== */
/* Banner com foto real da TV AOC à esquerda + info à direita */
.premio-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #fff8d6 0%, var(--yellow) 50%, #FFB800 100%);
  color: var(--blue);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 14px 0 16px;
  box-shadow: 0 5px 0 rgba(0, 39, 118, 0.22);
  border: 2px solid var(--blue);
  position: relative;
  overflow: hidden;
  min-height: 140px;
}
.premio-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.35) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(0,39,118,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.pb-tv {
  width: 150px;
  height: auto;
  flex: 0 0 150px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  position: relative;
  z-index: 1;
}
.pb-texto { flex: 1; min-width: 0; position: relative; z-index: 1; }
.pb-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--yellow);
  font-family: 'Archivo Black', sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.pb-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 23px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--blue);
  margin-bottom: 6px;
}
.pb-marca {
  font-size: inherit;
  color: var(--blue);
}
/* Slogan oficial da AOC — em itálico destacado */
.pb-slogan {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: #fff;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  margin: 6px 0 5px;
  font-style: italic;
  border: 1.5px solid var(--blue);
}
.pb-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--blue);
  opacity: 0.9;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .premio-banner { gap: 10px; padding: 12px 14px; min-height: 110px; }
  .pb-tv { width: 100px; flex-basis: 100px; }
  .pb-titulo { font-size: 18px; }
  .pb-tag { font-size: 8px; padding: 3px 7px; }
  .pb-slogan { font-size: 10px; padding: 2px 6px; }
  .pb-sub { font-size: 10.5px; }
}

/* ============== Card da senha da rádio no cadastro ============== */
/* Destaque pro campo "Senha da Ótima" — fica em cima do form, pra ouvinte saber que é essencial */
.senha-radio-card {
  background: linear-gradient(135deg, var(--blue) 0%, #1a4d8a 100%);
  color: #fff;
  border: 2px solid var(--yellow);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 0 rgba(0,39,118,0.18);
}
.senha-radio-card::before {
  content: '📻';
  position: absolute;
  font-size: 80px;
  opacity: 0.05;
  right: -10px;
  bottom: -20px;
}
.srl-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  position: relative;
}
.srl-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  position: relative;
}
.senha-radio-input {
  background: #fff !important;
  border: 2px solid var(--yellow) !important;
  text-align: center;
  font-family: 'Archivo Black', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 0.15em !important;
  color: var(--blue) !important;
  text-transform: uppercase;
  position: relative;
}
.senha-radio-input::placeholder {
  color: #b0b8c5;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* ============== Senha da rádio NA LANDING (acima dos CTAs) ============== */
.hero-senha-radio {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid var(--yellow);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 0 14px;
  text-align: center;
}
.hsr-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.hsr-input {
  background: #fff !important;
  border: 2px solid var(--yellow) !important;
  text-align: center;
  font-family: 'Archivo Black', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 0.15em !important;
  color: var(--blue) !important;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.hsr-input::placeholder {
  color: #b0b8c5;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
}
.hsr-hint {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
@media (max-width: 480px) {
  .hsr-input { font-size: 18px !important; }
  .hsr-titulo { font-size: 13px; }
}

/* Aviso inline no hero (substitui o toast flutuante pra senha) */
.hero-aviso {
  background: #ffe3e3;
  color: #c0392b;
  border: 2px solid #E63946;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 13.5px;
  text-align: center;
  animation: hero-aviso-shake 0.4s;
}
@keyframes hero-aviso-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ============== Hero Campeão (compacto + bonito) ============== */
.hero-campeao-card {
  position: relative;
  margin: 14px 0 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  border-radius: 18px;
  border: 2px solid var(--yellow);
  box-shadow: 0 6px 0 rgba(0,150,57,0.35), 0 0 0 1px rgba(255,223,0,0.4) inset;
  overflow: hidden;
}
.hcc-decor {
  position: absolute;
  top: -40px; right: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,223,0,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.hcc-decor::after {
  content: '🏆';
  position: absolute;
  top: 28%; right: 22%;
  font-size: 110px;
  opacity: 0.08;
  transform: rotate(-15deg);
}
.hcc-row {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.hcc-flag-wrap {
  width: 81px;
  height: 81px;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  border: 2px solid var(--yellow);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
}
.hcc-flag-wrap img { width: 100%; height: 100%; object-fit: contain; }
.hcc-info { flex: 1; min-width: 0; }
.hcc-tag {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--green-dk);
  background: var(--yellow);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.hcc-nome {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  color: #fff;
  line-height: 0.95;
  text-shadow: 0 2px 0 rgba(0,0,0,0.28);
  letter-spacing: 0.01em;
}
.hcc-meta {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  align-items: center;
}
.hcc-pct {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 4px 11px;
  border-radius: 99px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
}
.hcc-pct b { color: var(--yellow); font-weight: 900; }
.hcc-bonus {
  background: var(--yellow);
  color: var(--blue);
  padding: 4px 11px;
  border-radius: 99px;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.04em;
  font-size: 11px;
}
.hcc-trocar {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
}
.hcc-trocar:hover { background: rgba(255,255,255,0.25); border-color: #fff; }
@media (max-width: 480px) {
  .hero-campeao-card { padding: 14px 16px; }
  .hcc-row { gap: 14px; }
  .hcc-flag-wrap { width: 70px; height: 70px; padding: 6px; }
  .hcc-nome { font-size: 24px; }
  .hcc-tag { font-size: 9px; }
  .hcc-meta { font-size: 11px; }
}
.hcc-trofeu {
  font-size: 114px;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
  animation: trofeu-balanca 2.5s ease-in-out infinite;
  line-height: 1;
}
@keyframes trofeu-balanca {
  0%, 100% { transform: rotate(-6deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.06); }
}
@media (max-width: 480px) {
  .hcc-trofeu { font-size: 80px; }
}

/* ============== Top Campeões — pódio visual ============== */
.top-campeoes-block {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  border: 1.5px solid var(--blue);
  border-radius: 12px;
  padding: 8px 10px 10px;
  margin: 10px 0 12px;
  box-shadow: 0 3px 0 rgba(0,39,118,0.15);
}
.tcamp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(0,39,118,0.15);
}
.tcamp-titulo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--blue);
}
.tcamp-total {
  background: var(--blue);
  color: var(--yellow);
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 99px;
}
.tcamp-podio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.tcamp-card {
  background: #fff;
  border: 1.5px solid rgba(0,39,118,0.12);
  border-radius: 10px;
  padding: 6px 4px 7px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tcamp-card.tcamp-0 { background: linear-gradient(135deg, #fff8d6 0%, #fff 70%); border-color: #f6cf3e; }
.tcamp-card.tcamp-1 { background: linear-gradient(135deg, #eef1f4 0%, #fff 70%); border-color: #c3ccd6; }
.tcamp-card.tcamp-2 { background: linear-gradient(135deg, #fce8d8 0%, #fff 70%); border-color: #d59a6a; }
.tcamp-medal { font-size: 18px; line-height: 1; flex-shrink: 0; }
.tcamp-flag {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid rgba(0,39,118,0.15);
  border-radius: 5px;
  padding: 2px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tcamp-flag img { width: 100%; height: 100%; object-fit: contain; }
.tcamp-info {
  flex: 1;
  min-width: 0;
  text-align: left;
  line-height: 1.1;
}
.tcamp-nome {
  font-family: 'Archivo Black', sans-serif;
  font-size: 10px;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tcamp-pct {
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  color: var(--green-dk);
  line-height: 1;
}
.tcamp-pct span {
  font-size: 9px;
  color: var(--green);
  margin-left: 1px;
}
@media (max-width: 480px) {
  .tcamp-titulo { font-size: 10.5px; letter-spacing: 0.05em; }
  .tcamp-total { font-size: 10px; padding: 2px 7px; }
  .tcamp-pct { font-size: 19px; }
  .tcamp-flag { width: 34px; height: 34px; }
  .tcamp-nome { font-size: 10px; }
}

/* ============== Regulamento (texto oficial) ============== */
/* Regulamento — documento legal: TUDO mesmo tamanho/fonte, sem hierarquia visual */
.regulamento h3 {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  background: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0;
  margin: 16px 0 6px;
}
.regulamento h4 {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  margin: 12px 0 4px;
}
/* (.regulamento h4 unificado acima — bloco antigo removido) */
.regulamento p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #2a3344;
  margin: 0 0 10px;
}
.reg-tabela {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 16px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 8px;
  overflow: hidden;
  font-size: 12.5px;
}
.reg-tabela th {
  background: var(--blue);
  color: #fff;
  text-align: left;
  padding: 8px 10px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.reg-tabela td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.reg-tabela tr:last-child td { border-bottom: 0; }
.reg-tabela tr:nth-child(even) td { background: #fafbfc; }
@media (max-width: 480px) {
  .reg-tabela { font-size: 11px; }
  .reg-tabela th, .reg-tabela td { padding: 6px 8px; }
  .regulamento h3 { font-size: 14px; }
}

/* Botão Compartilhar WhatsApp no card "Seu Campeão" */
.hcc-share-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 18px;
  border-radius: 12px;
  margin-top: 14px;
  box-shadow: 0 3px 0 #128c40;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
  z-index: 1;
}
.hcc-share-wa:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(2px);
  box-shadow: 0 1px 0 #128c40;
}
.hcc-share-ic { font-size: 18px; }
@media (max-width: 480px) {
  .hcc-share-wa { font-size: 12.5px; padding: 10px 14px; }
  .hcc-share-ic { font-size: 16px; }
}

/* Botão compartilhar ranking no WhatsApp */
.rk-share-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 20px;
  border-radius: 12px;
  margin: 16px 0 10px;
  box-shadow: 0 3px 0 #128c40;
  transition: transform 0.15s, box-shadow 0.15s;
}
.rk-share-wa:hover {
  text-decoration: none;
  color: #fff;
  transform: translateY(2px);
  box-shadow: 0 1px 0 #128c40;
}
@media (max-width: 480px) {
  .rk-share-wa { font-size: 12.5px; padding: 12px 16px; }
}
