/* GiroBet lobby prototype — original CSS, not copied from product */
:root {
  --bg: #0d0d0f;
  --bg-2: #121316;
  --surface: #151618;
  --surface-2: #1b1c1f;
  --elev: #252629;
  --gold: #ffc600;
  --gold-2: #ffde42;
  --gold-dim: #b8860b;
  --pix: #11c98b;
  --indigo: #2e42a5;
  --indigo-2: #545be9;
  --muted: #a9aab1;
  --muted-2: #d3d4d8;
  --text: #ffffff;
  --danger: #e24b4b;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 198, 0, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 58px;
  --max: 1280px;
  --font: "Montserrat", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 500px at 12% -10%, rgba(46, 66, 165, 0.18), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(255, 198, 0, 0.07), transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 999;
}
.skip:focus { left: 8px; top: 8px; }

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}
.wrap-wide {
  width: min(100% - 24px, var(--max));
  margin-inline: auto;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  background: rgba(13, 13, 15, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,198,0,0.35), transparent);
  pointer-events: none;
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-mark {
  width: 22px;
  height: 22px;
  position: relative;
  display: grid;
  place-items: center;
}
.logo-mark span {
  width: 18px;
  height: 18px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  transform: rotate(12deg);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 222, 66, 0.25), 0 6px 14px rgba(255, 198, 0, 0.25);
}
.logo-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #0d0d0f;
  transform: rotate(45deg);
  border-radius: 1px;
}
.logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: #fff;
}
.logo-text i {
  font-style: normal;
  color: var(--gold);
}
.age-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid rgba(255, 198, 0, 0.4);
  border-radius: 999px;
  padding: 2px 6px;
  flex-shrink: 0;
}
@media (min-width: 720px) {
  .age-pill { font-size: 10px; padding: 3px 7px; }
}

.nav-main {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.nav-main a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
  padding: 8px 11px;
  border-radius: 8px;
  letter-spacing: -0.01em;
}
.nav-main a:hover,
.nav-main a.is-active { color: #fff; background: rgba(255,255,255,0.04); }
@media (min-width: 920px) { .nav-main { display: flex; } }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 9px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 100%);
  color: #161408;
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 8px 18px rgba(255, 198, 0, 0.18);
}
.btn-gold:hover { filter: brightness(1.05); box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 22px rgba(255, 198, 0, 0.28); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--elev);
}
.btn-ghost:hover { border-color: rgba(255,198,0,0.45); color: var(--gold-2); }
.btn-line {
  background: var(--surface);
  color: #fff;
  border: 1px solid var(--elev);
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-md { height: 44px; padding: 0 18px; font-size: 14px; }
.btn-block { width: 100%; }

.burger {
  width: 40px;
  height: 40px;
  border: 1px solid var(--elev);
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.burger i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
}
@media (min-width: 920px) { .burger { display: none; } }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open { pointer-events: auto; visibility: visible; }
.drawer-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.drawer.is-open .drawer-bg { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: #111214;
  border-left: 1px solid var(--elev);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  padding: 18px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.drawer.is-open .drawer-panel { transform: none; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.drawer a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--muted-2);
}
.drawer a:hover { background: var(--surface); color: #fff; }
.drawer-ctas { margin-top: auto; display: grid; gap: 8px; }
.icon-x {
  width: 40px; height: 40px;
  border: 1px solid var(--elev);
  background: var(--surface);
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 28px 0 10px;
}
@media (min-width: 900px) {
  .hero { padding: 36px 0 18px; }
}
.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; }
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.kicker::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,198,0,0.15);
}
.hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 16em;
}
.hero-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 46ch;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--elev);
  color: var(--muted-2);
  font-size: 11.5px;
  font-weight: 600;
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.chip.pix .dot { background: var(--pix); box-shadow: 0 0 8px var(--pix); }
.chip.ok .dot { background: var(--indigo-2); }

.hero-stage {
  position: relative;
  height: 280px;
  display: none;
}
@media (min-width: 960px) {
  .hero-stage { display: block; height: 340px; }
}
.hero-card {
  position: absolute;
  width: 168px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-card .game-art { border-radius: 0; }
.hero-card:nth-child(1) { left: 18%; top: 18px; transform: rotate(-8deg); z-index: 1; }
.hero-card:nth-child(2) { left: 42%; top: 0; transform: rotate(4deg); z-index: 3; width: 184px; }
.hero-card:nth-child(3) { left: 58%; top: 78px; transform: rotate(11deg); z-index: 2; }
.hero-glow {
  position: absolute;
  inset: 20% 10% 10% 20%;
  background: radial-gradient(circle, rgba(255,198,0,0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ===== Ticker ===== */
.ticker {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  background: linear-gradient(180deg, #141517, #101114);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 44px;
}
.ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 12px;
  border-right: 1px solid var(--elev);
  z-index: 2;
  background: linear-gradient(90deg, #101114 70%, transparent);
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pix);
  box-shadow: 0 0 0 0 rgba(17, 201, 139, 0.6);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(17, 201, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 201, 139, 0); }
}
.ticker-mask { overflow: hidden; flex: 1; min-width: 0; }
.ticker-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.win {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 10px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted-2);
  white-space: nowrap;
}
.win b { color: #fff; font-weight: 700; }
.win .amt { color: var(--pix); font-weight: 700; }

/* ===== Sections / rails ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 26px 0 4px;
}
.section-lg { padding: 36px 0 8px; }
.rail-head, .sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sec-head h2, .rail-head h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.sec-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.link-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.link-all:hover { color: var(--gold-2); }
.rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--elev) transparent;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--elev); border-radius: 99px; }

.game-card {
  flex: 0 0 148px;
  text-decoration: none;
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
}
@media (min-width: 720px) { .game-card { flex-basis: 160px; } }
.game-art {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  isolation: isolate;
}
.game-card:hover .game-art,
.game-card:focus-visible .game-art {
  border-color: rgba(255, 198, 0, 0.7);
  box-shadow: 0 0 0 1px rgba(255,198,0,0.35), 0 14px 28px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}
.game-art { transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease; }
.game-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
 .game-badge {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(0,0,0,0.55);
  color: var(--gold-2);
  border: 1px solid rgba(255,198,0,0.3);
}
.game-badge.live {
  color: #fff;
  background: var(--indigo);
  border-color: transparent;
}

.game-art img.game-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.game-art:has(img.game-thumb) .art { display: none; }

.game-meta { padding: 8px 2px 0; }
.game-name {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-provider {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}

/* Geometric arts */
.art {
  position: absolute;
  inset: 0;
}
.art i, .art b, .art em, .art s {
  position: absolute;
  font-style: normal;
  text-decoration: none;
  display: block;
}

.art-tiger { background: radial-gradient(120% 80% at 30% 20%, #ffb14a, #c2410c 42%, #1a0c06 100%); }
.art-tiger i { inset: 12% -20%; background: repeating-linear-gradient(115deg, transparent 0 14px, rgba(0,0,0,0.38) 14px 20px); }
.art-tiger b { width: 64px; height: 64px; left: 50%; top: 38%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffe08a, #ffc600 40%, #a16207); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.art-tiger em { width: 22px; height: 22px; left: 50%; top: 38%; transform: translate(-50%, -50%) rotate(12deg); background: #1a0c06; border-radius: 4px; }

.art-ox { background: linear-gradient(160deg, #7f1d1d, #450a0a 55%, #1c0808); }
.art-ox i, .art-ox s { width: 70px; height: 70px; top: 18%; border: 8px solid #ffc600; border-radius: 50% 50% 0 0; background: transparent; }
.art-ox i { left: 8%; transform: rotate(-28deg); border-bottom: 0; }
.art-ox s { right: 8%; left: auto; transform: rotate(28deg); border-bottom: 0; }
.art-ox b { width: 72px; height: 72px; left: 50%; top: 48%; transform: translate(-50%, -50%); background: radial-gradient(circle at 40% 35%, #fde68a, #ca8a04); border-radius: 40% 40% 46% 46%; }

.art-rabbit { background: radial-gradient(80% 70% at 50% 30%, #fb7185, #9d174d 60%, #1f0a14); }
.art-rabbit i, .art-rabbit s { width: 28px; height: 78px; top: 8%; background: linear-gradient(#fda4af, #e11d48); border-radius: 20px; }
.art-rabbit i { left: 32%; transform: rotate(-12deg); }
.art-rabbit s { right: 32%; transform: rotate(12deg); }
.art-rabbit b { width: 86px; height: 86px; left: 50%; top: 52%; transform: translate(-50%, -50%); background: radial-gradient(circle at 40% 35%, #fecdd3, #fb7185); border-radius: 50%; }

.art-mouse { background: linear-gradient(165deg, #134e4a, #042f2e 50%, #022c22); }
.art-mouse i { width: 90px; height: 90px; left: 50%; top: 42%; transform: translate(-50%, -50%); background: radial-gradient(circle at 35% 30%, #99f6e4, #0f766e); border-radius: 50%; }
.art-mouse b, .art-mouse s { width: 28px; height: 28px; top: 28%; background: #5eead4; border-radius: 50%; opacity: 0.85; }
.art-mouse b { left: 18%; }
.art-mouse s { right: 18%; }
.art-mouse em { width: 36px; height: 10px; left: 50%; top: 58%; transform: translateX(-50%); background: #042f2e; border-radius: 8px; }

.art-bonanza { background: radial-gradient(90% 80% at 50% 20%, #f0abfc, #a21caf 45%, #3b0764 100%); }
.art-bonanza i, .art-bonanza b, .art-bonanza s, .art-bonanza em {
  border-radius: 50%;
}
.art-bonanza i { width: 54px; height: 54px; left: 14%; top: 22%; background: #fb7185; }
.art-bonanza b { width: 40px; height: 40px; right: 16%; top: 18%; background: #facc15; }
.art-bonanza s { width: 70px; height: 70px; left: 28%; top: 48%; background: #c084fc; }
.art-bonanza em { width: 32px; height: 32px; right: 22%; top: 58%; background: #34d399; }

.art-olympus { background: linear-gradient(180deg, #1e1b4b, #312e81 40%, #0f172a); }
.art-olympus i { inset: 18% 22% 28%; background: repeating-linear-gradient(90deg, #fde68a 0 10px, transparent 10px 22px); opacity: 0.9; clip-path: polygon(0 100%, 0 28%, 8% 18%, 16% 28%, 16% 100%, 28% 100%, 28% 22%, 38% 8%, 48% 22%, 48% 100%, 60% 100%, 60% 28%, 68% 18%, 76% 28%, 76% 100%, 88% 100%, 88% 30%, 100% 18%, 100% 100%); }
.art-olympus b { left: 50%; top: 22%; width: 4px; height: 46%; background: linear-gradient(#fff, #facc15); transform: translateX(-50%) rotate(18deg); box-shadow: 8px 10px 0 #fde68a, -10px 16px 0 #facc15; }

.art-aviator { background: linear-gradient(180deg, #0ea5e9 0%, #1d4ed8 38%, #0b1220 100%); }
.art-aviator i { width: 90px; height: 90px; right: -10px; top: -10px; background: radial-gradient(circle, #fb7185, #be123c 70%, transparent 71%); }
.art-aviator b { width: 0; height: 0; left: 22%; top: 42%; border-left: 92px solid #f8fafc; border-top: 18px solid transparent; border-bottom: 18px solid transparent; filter: drop-shadow(0 10px 12px rgba(0,0,0,0.35)); }
.art-aviator s { left: 18%; top: 58%; width: 70%; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.8) 0 10px, transparent 10px 18px); transform: rotate(-12deg); }

.art-jetx { background: linear-gradient(135deg, #020617, #0e7490 55%, #022c22); }
.art-jetx i { inset: 20% 8%; background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(34,211,238,0.35) 8px 10px); transform: skewX(-18deg); }
.art-jetx b { width: 80px; height: 22px; left: 22%; top: 44%; background: #22d3ee; clip-path: polygon(0 50%, 18% 0, 100% 40%, 100% 60%, 18% 100%); box-shadow: 0 0 24px #22d3ee; }

.art-duel { background: linear-gradient(90deg, #7f1d1d 0 50%, #1e3a8a 50% 100%); }
.art-duel i { left: 18%; top: 30%; width: 36px; height: 90px; background: #fecaca; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.art-duel b { right: 18%; top: 30%; width: 36px; height: 90px; background: #bfdbfe; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.art-duel s { left: 50%; top: 0; bottom: 0; width: 3px; background: #ffc600; transform: translateX(-50%); }

.art-roleta { background: radial-gradient(circle at 50% 46%, #14532d, #052e16 62%, #022c22); }
.art-roleta i { width: 112px; height: 112px; left: 50%; top: 46%; transform: translate(-50%, -50%); border-radius: 50%; background: conic-gradient(#b91c1c 0 30deg, #111 30deg 60deg, #b91c1c 60deg 90deg, #111 90deg 120deg, #b91c1c 120deg 150deg, #111 150deg 180deg, #b91c1c 180deg 210deg, #111 210deg 240deg, #b91c1c 240deg 270deg, #111 270deg 300deg, #b91c1c 300deg 330deg, #111 330deg 360deg); box-shadow: 0 0 0 8px #14532d, 0 0 0 10px #fbbf24; }
.art-roleta b { width: 28px; height: 28px; left: 50%; top: 46%; transform: translate(-50%, -50%); background: #fde68a; border-radius: 50%; }

.art-bj { background: linear-gradient(180deg, #064e3b, #022c22); }
.art-bj i, .art-bj b {
  width: 64px; height: 88px; border-radius: 8px; top: 28%;
  background: #f8fafc; box-shadow: 0 12px 20px rgba(0,0,0,0.35);
}
.art-bj i { left: 18%; transform: rotate(-12deg); }
.art-bj b { right: 18%; transform: rotate(10deg); }
.art-bj i::after, .art-bj b::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  left: 8px; top: 8px;
  background: #dc2626;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.art-bac { background: radial-gradient(80% 70% at 50% 30%, #7f1d1d, #1c0b0b); }
.art-bac i { width: 90px; height: 90px; left: 50%; top: 42%; transform: translate(-50%, -50%) rotate(45deg); background: linear-gradient(135deg, #fde68a, #ca8a04); border-radius: 8px; }
.art-bac b { width: 46px; height: 46px; left: 50%; top: 42%; transform: translate(-50%, -50%) rotate(45deg); background: #450a0a; }

.art-space { background: linear-gradient(180deg, #0f172a, #020617); }
.art-space i { width: 70px; height: 90px; left: 50%; top: 38%; transform: translate(-50%, -50%); background: linear-gradient(#e2e8f0, #64748b); clip-path: polygon(50% 0, 82% 28%, 78% 100%, 22% 100%, 18% 28%); }
.art-space b { width: 14px; height: 14px; left: 22%; top: 18%; background: #fde68a; border-radius: 50%; box-shadow: 40px 30px 0 2px #fff, 80px 12px 0 -2px #93c5fd, 10px 70px 0 #fff; }

.art-mines { background: #111827; }
.art-mines i { inset: 16%; display: grid !important; grid-template-columns: 1fr 1fr 1fr; gap: 8px; position: absolute; }
.art-mines i::before { content: ""; }
.art-mines b, .art-mines s, .art-mines em {
  width: 28%; height: 22%; border-radius: 6px; background: #1f2937; border: 1px solid #374151;
}
.art-mines b { left: 16%; top: 18%; background: #fbbf24; }
.art-mines s { left: 50%; top: 42%; background: #ef4444; }
.art-mines em { left: 22%; top: 64%; }

.art-plinko { background: linear-gradient(#1e1b4b, #0f172a); }
.art-plinko i { inset: 14%; background-image: radial-gradient(#c4b5fd 1.6px, transparent 1.7px); background-size: 18px 18px; }
.art-plinko b { width: 18px; height: 18px; left: 46%; top: 22%; background: #facc15; border-radius: 50%; box-shadow: 0 80px 0 4px #22c55e; }

.art-crazy { background: conic-gradient(from 200deg, #7c3aed, #db2777, #f59e0b, #7c3aed); }
.art-crazy i { inset: 18%; background: #0d0d0f; border-radius: 50%; }
.art-crazy b { left: 50%; top: 50%; width: 54px; height: 54px; transform: translate(-50%, -50%); border-radius: 50%; background: linear-gradient(#fde68a, #f59e0b); }

/* Providers */
.providers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) { .providers { grid-template-columns: repeat(5, 1fr); } }
.prov {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 12px;
  padding: 14px;
  min-height: 92px;
}
.prov:hover { border-color: rgba(255,198,0,0.4); }
.mono {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.04em;
}
.mono-pg { background: linear-gradient(145deg, #7f1d1d, #b45309); color: #fff; }
.mono-pp { background: #0b0b0c; color: var(--gold); border: 1px solid var(--elev); }
.mono-sp { background: linear-gradient(145deg, #1d4ed8, #0ea5e9); color: #fff; }
.mono-ev { background: linear-gradient(145deg, #111, #3f3f46); color: var(--gold-2); }
.mono-mg { background: linear-gradient(145deg, #2e42a5, #545be9); color: #fff; }
.prov strong { font-size: 12.5px; font-weight: 700; letter-spacing: -0.02em; }
.prov span { font-size: 11px; color: var(--muted); }

/* Why */
.why {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .why { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .why { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 20px;
  min-height: 168px;
}
.why-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
}
.why-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.why-card p { color: var(--muted-2); font-size: 13px; font-weight: 500; line-height: 1.5; }
.ico-pix { color: var(--pix); }
.ico-prize { color: var(--gold); }
.ico-vip { color: var(--indigo-2); }
.ico-cash { color: var(--muted-2); }

/* Promos */
.promos {
  display: grid;
  gap: 12px;
}
@media (min-width: 800px) { .promos { grid-template-columns: 1.3fr 1fr; } }
.promo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 22px 20px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--elev);
}
.promo h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; margin: 8px 0; }
.promo p { color: var(--muted-2); font-size: 13.5px; max-width: 36ch; margin-bottom: 16px; }
.promo .btn { margin-top: auto; }
.promo-a {
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255,198,0,0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
.promo-b {
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(84,91,233,0.22), transparent 50%),
    linear-gradient(180deg, #121428, #151618);
}
.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* App teaser */
.app-box {
  display: grid;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 22px 20px;
  align-items: center;
}
@media (min-width: 860px) {
  .app-box { grid-template-columns: 1.2fr 0.8fr; padding: 28px; }
}
.app-box h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.03em; margin: 6px 0 8px; }
.app-box p { color: var(--muted-2); max-width: 48ch; }
.soon {
  display: inline-flex;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px dashed var(--elev);
  padding: 6px 10px;
  border-radius: 999px;
}
.phone {
  width: 180px;
  height: 220px;
  margin: 0 auto;
  border-radius: 28px;
  border: 8px solid #1c1d21;
  background: #0d0d0f;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.phone::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 6px;
  background: #252629;
  border-radius: 8px;
}
.phone-grid {
  position: absolute;
  inset: 24px 10px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.phone-grid span {
  border-radius: 6px;
  background: linear-gradient(160deg, #252629, #151618);
}

/* FAQ */
.faq {
  display: grid;
  gap: 8px;
  max-width: 860px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 8px; height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item p {
  padding: 0 18px 16px;
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  background: #0b0b0d;
  border-top: 1px solid var(--line);
  padding: 36px 0 22px;
}
.foot-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 800px) {
  .foot-grid { grid-template-columns: 1.3fr repeat(4, 1fr); gap: 18px; }
}
.foot-brand p {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 10px;
  max-width: 32ch;
}
.site-footer h3 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.site-footer a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-2);
  padding: 4px 0;
}
.site-footer a:hover { color: var(--gold); }
.foot-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  font-size: 10px;
  border-radius: 50%;
}
.mail { color: var(--gold) !important; font-weight: 600; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.modal.is-open { display: block; }
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 400px);
  background: #16171a;
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 24px 22px 20px;
  box-shadow: var(--shadow);
}
.modal-card h2 { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.modal-card p { color: var(--muted-2); margin: 10px 0 18px; }

/* Stub pages */
.page-main { position: relative; z-index: 1; padding: 40px 0 64px; min-height: 52vh; }
.page-main h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.page-main p { color: var(--muted-2); max-width: 58ch; font-size: 15px; margin-bottom: 22px; }

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .pulse, * { animation: none !important; transition: none !important; }
}

.game-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.16) 48%, transparent 62%);
  transform: translateX(-140%);
  transition: transform 0.45s ease;
}
.game-card:hover .game-art::before { transform: translateX(140%); }
.rail { touch-action: pan-x; }
@media (max-width: 420px) {
  .header-inner { gap: 10px; }
  .header-actions { gap: 6px; }
  .btn-sm { height: 34px; padding: 0 11px; font-size: 12.5px; }
}


/* ===== Pagamentos (PIX) page ===== */
.drawer nav a[aria-current="page"] {
  color: #fff;
  background: var(--surface);
  box-shadow: inset 3px 0 0 var(--gold);
}

.page-pay {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.pay-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.pay-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pay-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.pay-crumb a { color: var(--muted-2); }
.pay-crumb a:hover { color: var(--gold); }
.pay-crumb [aria-current="page"] { color: #fff; }

.pay-hero { padding: 18px 0 8px; }
.pay-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .pay-hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
}
.pay-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 15em;
}
.pay-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

.pay-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 280px);
  display: grid;
  justify-items: center;
  gap: 12px;
}
@media (max-width: 899px) {
  .pay-visual { width: 196px; margin-inline: auto; }
}
.pay-visual-glow {
  position: absolute;
  inset: 8% 4% 18%;
  background: radial-gradient(circle, rgba(17, 201, 139, 0.22), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.pay-qr {
  width: 236px;
  height: 236px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(17, 201, 139, 0.16), transparent 52%),
    linear-gradient(180deg, #17191d, #101214);
  border: 1px solid rgba(17, 201, 139, 0.34);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 198, 0, 0.06);
}
@media (max-width: 899px) {
  .pay-qr { width: 196px; height: 196px; border-radius: 18px; }
}
.pay-qr-board {
  position: absolute;
  inset: 22px;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 3px;
}
@media (max-width: 899px) {
  .pay-qr-board { inset: 18px; gap: 2.5px; }
}
.pay-qr-board i {
  display: block;
  border-radius: 1.5px;
  background: transparent;
}
.pay-qr-board i.on {
  background: #11c98b;
  box-shadow: 0 0 6px rgba(17, 201, 139, 0.28);
}
.pay-qr-find {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 6px solid #11c98b;
  border-radius: 7px;
  z-index: 2;
  box-shadow: inset 0 0 0 7px #101214;
  background: #11c98b;
}
@media (max-width: 899px) {
  .pay-qr-find { width: 38px; height: 38px; border-width: 5px; box-shadow: inset 0 0 0 6px #101214; }
}
.pay-qr-tl { top: 18px; left: 18px; }
.pay-qr-tr { top: 18px; right: 18px; }
.pay-qr-bl { bottom: 18px; left: 18px; }
@media (max-width: 899px) {
  .pay-qr-tl { top: 14px; left: 14px; }
  .pay-qr-tr { top: 14px; right: 14px; }
  .pay-qr-bl { bottom: 14px; left: 14px; }
}
.pay-qr-badge {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #06281c;
  background: #11c98b;
  padding: 6px 10px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(17, 201, 139, 0.28);
}
.pay-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.pay-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.pay-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pix);
  box-shadow: 0 0 0 0 rgba(17, 201, 139, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.pay-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.page-pay a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-pay a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-pay .pay-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-pay .pay-crumb a:hover { color: var(--gold); }

.pay-flow {
  display: grid;
  gap: 12px;
}
@media (min-width: 860px) {
  .pay-flow { grid-template-columns: 1fr 1fr; }
}
.pay-flow-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  min-height: 100%;
}
.pay-flow-in { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.pay-flow-out { border-top: 2px solid rgba(255, 198, 0, 0.7); }
.pay-flow-head { margin-bottom: 6px; }
.pay-flow-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pay-flow-in .pay-flow-tag { color: var(--pix); }
.pay-flow-head h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.pay-flow-head p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.pay-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.pay-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}
.pay-step-n {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.pay-flow-in .pay-step-n {
  color: var(--pix);
  border-color: rgba(17, 201, 139, 0.32);
}
.pay-steps h4 {
  margin: 2px 0 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pay-steps p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.pay-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--elev);
  border-radius: 14px;
  background: var(--surface);
}
.pay-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13.5px;
}
.pay-table th,
.pay-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-weight: 500;
  color: var(--muted-2);
}
.pay-table thead th {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #131417;
}
.pay-table tbody th {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.pay-table tbody tr:last-child th,
.pay-table tbody tr:last-child td { border-bottom: 0; }
.pay-pix-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.pay-pix-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pix);
  box-shadow: 0 0 8px var(--pix);
}

.pay-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #141518;
  border: 1px dashed var(--elev);
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  max-width: none;
}

.pay-specs {
  display: grid;
  gap: 10px;
}
@media (min-width: 560px) {
  .pay-specs { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .pay-specs { grid-template-columns: repeat(4, 1fr); }
}
.pay-spec {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 16px 14px 15px;
  min-height: 108px;
}
.pay-spec h3 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pay-spec-val {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1.35;
}

.pay-delay {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .pay-delay { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pay-delay { grid-template-columns: repeat(4, 1fr); } }
.pay-delay-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 20px;
  min-height: 188px;
}
.pay-delay-card:hover { border-color: rgba(255, 198, 0, 0.35); }
.pay-delay-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.pay-delay-card:nth-child(1) .pay-delay-ico { color: var(--gold); }
.pay-delay-card:nth-child(2) .pay-delay-ico { color: var(--danger); }
.pay-delay-card:nth-child(3) .pay-delay-ico { color: var(--indigo-2); }
.pay-delay-card:nth-child(4) .pay-delay-ico { color: var(--pix); }
.pay-delay-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.pay-delay-card p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.pay-secure {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .pay-secure { grid-template-columns: repeat(3, 1fr); } }
.pay-secure-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 20px;
}
.pay-secure-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.pay-secure-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.page-pay .faq { max-width: 860px; }

.pay-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.pay-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .pay-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.pay-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.pay-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.pay-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 420px) {
  .pay-hero { padding-top: 12px; }
  .pay-flow-card,
  .pay-delay-card,
  .pay-secure-card { padding: 16px 14px 16px; }
  .pay-cta-inner { padding: 18px 16px; }
  .pay-cta-actions { width: 100%; }
  .pay-cta-actions .btn { flex: 1 1 100%; }
  .pay-table th,
  .pay-table td { padding: 12px 12px; }
}


/* ===== Promoções hub ===== */
.page-promo {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-promo a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-promo a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-promo .promo-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-promo .promo-crumb a:hover { color: var(--gold); }

.promo-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.promo-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.promo-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.promo-crumb a { color: var(--muted-2); }
.promo-crumb a:hover { color: var(--gold); }
.promo-crumb [aria-current="page"] { color: #fff; }

.promo-hero { padding: 18px 0 8px; }
.promo-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 900px) {
  .promo-hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
}
.promo-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 12em;
}
.promo-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

.promo-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
}
@media (max-width: 899px) {
  .promo-visual { width: 148px; margin-inline: auto; gap: 8px; }
}
.promo-visual-glow {
  position: absolute;
  inset: 6% 2% 22%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.28), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.promo-gem {
  width: 236px;
  height: 236px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(255, 198, 0, 0.18), transparent 52%),
    linear-gradient(180deg, #1a170c, #101214);
  border: 1px solid rgba(255, 198, 0, 0.38);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 198, 0, 0.08);
}
@media (max-width: 899px) {
  .promo-gem { width: 148px; height: 148px; border-radius: 16px; }
}
.promo-gem-ring,
.promo-gem-ring-2,
.promo-gem-core,
.promo-gem-ray {
  position: absolute;
  pointer-events: none;
}
.promo-gem-ring {
  inset: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 198, 0, 0.28);
  box-shadow: inset 0 0 0 14px rgba(255, 198, 0, 0.04);
}
.promo-gem-ring-2 {
  inset: 48px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 222, 66, 0.35);
}
@media (max-width: 899px) {
  .promo-gem-ring { inset: 16px; box-shadow: inset 0 0 0 8px rgba(255, 198, 0, 0.04); }
  .promo-gem-ring-2 { inset: 30px; }
}
.promo-gem-core {
  width: 72px;
  height: 72px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  box-shadow:
    0 0 0 1px rgba(255, 222, 66, 0.3),
    0 12px 28px rgba(255, 198, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.promo-gem-core::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #0d0d0f;
  border-radius: 3px;
}
@media (max-width: 899px) {
  .promo-gem-core { width: 46px; height: 46px; border-radius: 10px; }
  .promo-gem-core::after { width: 14px; height: 14px; }
}
.promo-gem-ray {
  background: linear-gradient(90deg, transparent, rgba(255, 198, 0, 0.55), transparent);
  height: 1px;
  width: 42%;
  top: 50%;
  left: 50%;
}
.promo-gem-ray-1 { transform: translate(-50%, -50%) rotate(18deg); }
.promo-gem-ray-2 { transform: translate(-50%, -50%) rotate(72deg); }
.promo-gem-ray-3 { transform: translate(-50%, -50%) rotate(126deg); }
.promo-gem-chip {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #161408;
  background: var(--gold);
  padding: 4px 7px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(255, 198, 0, 0.25);
}
.promo-gem-chip-l { left: 14px; top: 18px; }
.promo-gem-chip-r { right: 14px; bottom: 18px; background: #11c98b; color: #06281c; }
@media (max-width: 899px) {
  .promo-gem-chip { font-size: 8px; padding: 3px 5px; }
  .promo-gem-chip-l { left: 8px; top: 10px; }
  .promo-gem-chip-r { right: 8px; bottom: 10px; }
}
.promo-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.promo-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.promo-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.promo-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.promo-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 860px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  overflow: hidden;
}
.promo-card:hover { border-color: rgba(255, 198, 0, 0.38); }
.promo-card-cadastro { border-top: 2px solid rgba(255, 198, 0, 0.75); }
.promo-card-daily { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.promo-card-vip { border-top: 2px solid rgba(84, 91, 233, 0.7); }
.promo-card-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.promo-card-daily .promo-card-ico { color: var(--pix); }
.promo-card-vip .promo-card-ico { color: var(--indigo-2); }
.promo-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.promo-card-daily .promo-eyebrow { color: var(--pix); }
.promo-card-vip .promo-eyebrow { color: var(--indigo-2); }
.promo-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.promo-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}
.promo-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #141518;
  border: 1px dashed var(--elev);
  width: 100%;
}
.promo-card .btn { margin-top: auto; }

.promo-band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.18), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .promo-band {
    grid-template-columns: 1.35fr auto;
    padding: 28px;
    gap: 28px;
  }
}
.promo-band h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
  max-width: 16em;
}
.promo-band p {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 16px;
}
.promo-band-mark {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  box-shadow: 0 12px 28px rgba(255, 198, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.4);
  transform: rotate(12deg);
  flex-shrink: 0;
}
.promo-band-mark span {
  width: 28px;
  height: 28px;
  background: #0d0d0f;
  transform: rotate(45deg);
  border-radius: 4px;
}
@media (max-width: 799px) {
  .promo-band-mark { display: none; }
}

.promo-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .promo-steps { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
.promo-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 18px 16px 18px;
}
.promo-step-n {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.promo-step h3 {
  margin: 2px 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.promo-step p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.promo-rules {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) {
  .promo-rules { grid-template-columns: 1fr 1fr; }
}
.promo-rule {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 16px 16px 16px 18px;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: start;
}
.promo-rule::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 198, 0, 0.14);
}
.promo-rule p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}
.promo-rule strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.page-promo .faq { max-width: 860px; }

.promo-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.promo-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .promo-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.promo-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.promo-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.promo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 420px) {
  .promo-hero { padding: 10px 0 4px; }
  .promo-hero-grid { gap: 14px; }
  .promo-visual { width: 132px; }
  .promo-gem { width: 132px; height: 132px; }
  .promo-card,
  .promo-step,
  .promo-rule { padding: 16px 14px; }
  .promo-band { padding: 18px 16px; }
  .promo-cta-inner { padding: 18px 16px; }
  .promo-cta-actions { width: 100%; }
  .promo-cta-actions .btn { flex: 1 1 100%; }
  .promo-hero .hero-ctas .btn { flex: 1 1 auto; }
}


/* ===== Clube VIP ===== */
.page-vip {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-vip a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-vip a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-vip .vip-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-vip .vip-crumb a:hover { color: var(--gold); }

.vip-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.vip-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vip-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vip-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.vip-crumb a { color: var(--muted-2); }
.vip-crumb a:hover { color: var(--gold); }
.vip-crumb [aria-current="page"] { color: #fff; }

.vip-hero { padding: 18px 0 8px; }
.vip-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 900px) {
  .vip-hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
}
.vip-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 12em;
}
.vip-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

.vip-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
}
@media (max-width: 899px) {
  .vip-visual { width: 148px; margin-inline: auto; gap: 8px; }
}
.vip-visual-glow {
  position: absolute;
  inset: 6% 2% 22%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.32), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.vip-crest {
  width: 236px;
  height: 236px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(255, 198, 0, 0.22), transparent 52%),
    radial-gradient(70% 70% at 12% 100%, rgba(84, 91, 233, 0.14), transparent 50%),
    linear-gradient(180deg, #1a170c, #101214);
  border: 1px solid rgba(255, 198, 0, 0.42);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 198, 0, 0.1);
}
@media (max-width: 899px) {
  .vip-crest { width: 148px; height: 148px; border-radius: 16px; }
}
.vip-crest-ring,
.vip-crest-diamond,
.vip-crest-core,
.vip-crest-tick {
  position: absolute;
  pointer-events: none;
}
.vip-crest-ring {
  inset: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 198, 0, 0.3);
  box-shadow: inset 0 0 0 14px rgba(255, 198, 0, 0.04);
}
.vip-crest-diamond {
  inset: 48px;
  transform: rotate(45deg);
  border-radius: 6px;
  border: 1px solid rgba(255, 222, 66, 0.4);
  background: linear-gradient(135deg, rgba(255, 198, 0, 0.08), transparent 60%);
}
@media (max-width: 899px) {
  .vip-crest-ring { inset: 16px; box-shadow: inset 0 0 0 8px rgba(255, 198, 0, 0.04); }
  .vip-crest-diamond { inset: 30px; border-radius: 4px; }
}
.vip-crest-tick {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(255, 198, 0, 0.45);
}
.vip-crest-tick-n { top: 18px; left: 50%; margin-left: -4px; }
.vip-crest-tick-e { right: 18px; top: 50%; margin-top: -4px; }
.vip-crest-tick-s { bottom: 18px; left: 50%; margin-left: -4px; }
.vip-crest-tick-w { left: 18px; top: 50%; margin-top: -4px; }
@media (max-width: 899px) {
  .vip-crest-tick { width: 6px; height: 6px; }
  .vip-crest-tick-n { top: 10px; margin-left: -3px; }
  .vip-crest-tick-e { right: 10px; margin-top: -3px; }
  .vip-crest-tick-s { bottom: 10px; margin-left: -3px; }
  .vip-crest-tick-w { left: 10px; margin-top: -3px; }
}
.vip-crest-core {
  width: 68px;
  height: 68px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  box-shadow:
    0 0 0 1px rgba(255, 222, 66, 0.3),
    0 12px 28px rgba(255, 198, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.vip-crest-core::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #0d0d0f;
  border-radius: 3px;
}
@media (max-width: 899px) {
  .vip-crest-core { width: 44px; height: 44px; border-radius: 10px; }
  .vip-crest-core::after { width: 13px; height: 13px; }
}
.vip-crest-chip {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #161408;
  background: var(--gold);
  padding: 4px 7px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(255, 198, 0, 0.25);
  z-index: 2;
}
.vip-crest-chip-l { left: 14px; top: 18px; }
.vip-crest-chip-r { right: 14px; bottom: 18px; background: #11c98b; color: #06281c; }
@media (max-width: 899px) {
  .vip-crest-chip { font-size: 8px; padding: 3px 5px; }
  .vip-crest-chip-l { left: 8px; top: 10px; }
  .vip-crest-chip-r { right: 8px; bottom: 10px; }
}
.vip-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.vip-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.vip-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.vip-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.vip-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) { .vip-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .vip-grid { grid-template-columns: repeat(4, 1fr); } }
.vip-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  overflow: hidden;
}
.vip-card:hover { border-color: rgba(255, 198, 0, 0.38); }
.vip-card-saque { border-top: 2px solid rgba(255, 198, 0, 0.75); }
.vip-card-suporte { border-top: 2px solid rgba(84, 91, 233, 0.7); }
.vip-card-limite { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.vip-card-cash { border-top: 2px solid rgba(255, 198, 0, 0.55); }
.vip-card-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.vip-card-suporte .vip-card-ico { color: var(--indigo-2); }
.vip-card-limite .vip-card-ico { color: var(--pix); }
.vip-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vip-card-suporte .vip-eyebrow { color: var(--indigo-2); }
.vip-card-limite .vip-eyebrow { color: var(--pix); }
.vip-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.vip-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.vip-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #141518;
  border: 1px dashed var(--elev);
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.vip-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .vip-steps { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
.vip-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 18px 16px 18px;
}
.vip-step-n {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.vip-step h3 {
  margin: 2px 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.vip-step p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.vip-band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.18), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .vip-band {
    grid-template-columns: 1.35fr auto;
    padding: 28px;
    gap: 28px;
  }
}
.vip-band h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
  max-width: 18em;
}
.vip-band p {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}
.vip-band-mark {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  box-shadow: 0 12px 28px rgba(255, 198, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.4);
  transform: rotate(12deg);
  flex-shrink: 0;
}
.vip-band-mark span {
  width: 28px;
  height: 28px;
  background: #0d0d0f;
  transform: rotate(45deg);
  border-radius: 4px;
}
@media (max-width: 799px) {
  .vip-band-mark { display: none; }
}

.vip-rel {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .vip-rel { grid-template-columns: repeat(3, 1fr); }
}
.vip-rel-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 16px 16px 16px 18px;
}
.vip-rel-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.vip-rel-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.page-vip .faq { max-width: 860px; }

.vip-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.vip-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .vip-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.vip-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.vip-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.vip-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 420px) {
  .vip-hero { padding: 10px 0 4px; }
  .vip-hero-grid { gap: 14px; }
  .vip-visual { width: 132px; }
  .vip-crest { width: 132px; height: 132px; }
  .vip-card,
  .vip-step,
  .vip-rel-card { padding: 16px 14px; }
  .vip-band { padding: 18px 16px; }
  .vip-cta-inner { padding: 18px 16px; }
  .vip-cta-actions { width: 100%; }
  .vip-cta-actions .btn { flex: 1 1 100%; }
  .vip-hero .hero-ctas .btn { flex: 1 1 auto; }
}

/* ===== App page ===== */
.page-app {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-app a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-app a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-app .app-page-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-app .app-page-crumb a:hover { color: var(--gold); }

.app-page-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.app-page-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.app-page-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-page-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.app-page-crumb a { color: var(--muted-2); }
.app-page-crumb a:hover { color: var(--gold); }
.app-page-crumb [aria-current="page"] { color: #fff; }

.app-page-hero { padding: 18px 0 8px; }
.app-page-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 900px) {
  .app-page-hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; }
}
.app-page-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 12em;
}
.app-page-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}
.app-page-honest {
  display: inline-flex;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px dashed var(--elev);
  padding: 6px 10px;
  border-radius: 999px;
  max-width: 100%;
}

.app-page-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 220px);
  display: grid;
  justify-items: center;
  gap: 10px;
}
@media (max-width: 899px) {
  .app-page-visual { width: 148px; margin-inline: auto; gap: 8px; }
}
.app-page-visual-glow {
  position: absolute;
  inset: 4% 0 18%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.28), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.app-page-phone {
  width: 200px;
  height: 392px;
  border-radius: 34px;
  border: 9px solid #1a1b1f;
  background: #0a0a0c;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 198, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
@media (max-width: 899px) {
  .app-page-phone {
    width: 148px;
    height: 292px;
    border-width: 7px;
    border-radius: 26px;
  }
}
.app-page-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 7px;
  background: #1c1d21;
  border-radius: 8px;
  z-index: 3;
}
@media (max-width: 899px) {
  .app-page-phone-notch { width: 52px; height: 5px; top: 6px; }
}
.app-page-phone-screen {
  position: absolute;
  inset: 22px 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
@media (max-width: 899px) {
  .app-page-phone-screen { inset: 16px 6px 14px; gap: 4px; }
}
.app-page-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 22px;
  flex-shrink: 0;
}
.app-page-phone-logo {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
.app-page-phone-logo i { font-style: normal; color: var(--gold); }
.app-page-phone-pix {
  font-size: 7px;
  font-weight: 800;
  color: #06281c;
  background: var(--pix);
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.app-page-phone-banner {
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(255, 198, 0, 0.38), transparent 52%),
    linear-gradient(180deg, #1a1608, #121316);
  border: 1px solid rgba(255, 198, 0, 0.28);
  position: relative;
  overflow: hidden;
}
.app-page-phone-banner::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  transform: rotate(12deg);
  box-shadow: 0 4px 10px rgba(255, 198, 0, 0.28);
}
@media (max-width: 899px) {
  .app-page-phone-banner { height: 38px; }
  .app-page-phone-banner::after { width: 20px; height: 20px; margin-top: -10px; left: 8px; }
}
.app-page-phone-label {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.app-page-phone-rails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.app-page-phone-tile {
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(160deg, #252629, #151618);
}
.app-page-phone-tile-a { background: linear-gradient(160deg, #c2410c, #1a0c06); }
.app-page-phone-tile-b { background: linear-gradient(160deg, #1d4ed8, #0b1220); }
.app-page-phone-tile-c { background: linear-gradient(160deg, #a21caf, #3b0764); }
.app-page-phone-tile-d { background: linear-gradient(160deg, #14532d, #052e16); }
@media (max-width: 899px) {
  .app-page-phone-tile { height: 32px; border-radius: 5px; }
}
.app-page-phone-crash {
  height: 38px;
  border-radius: 6px;
  background: linear-gradient(90deg, #3a1408, #1a0c06 42%, #2a1a08);
  border: 1px solid rgba(255, 198, 0, 0.22);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.app-page-phone-crash::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 28%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}
.app-page-phone-crash::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 198, 0, 0.55);
}
@media (max-width: 899px) {
  .app-page-phone-crash { height: 28px; }
}
.app-page-phone-dock {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}
.app-page-phone-dock i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a2b30;
}
.app-page-phone-dock i:first-child { background: var(--gold); }
.app-page-phone-home {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  background: #3a3b40;
  border-radius: 4px;
}
@media (max-width: 899px) {
  .app-page-phone-home { width: 54px; height: 3px; bottom: 5px; }
}

.app-page-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.app-page-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.app-page-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.app-page-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.app-page-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) { .app-page-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .app-page-grid { grid-template-columns: repeat(4, 1fr); } }
.app-page-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  overflow: hidden;
}
.app-page-card:hover { border-color: rgba(255, 198, 0, 0.38); }
.app-page-card-lobby { border-top: 2px solid rgba(255, 198, 0, 0.75); }
.app-page-card-pix { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.app-page-card-crash { border-top: 2px solid rgba(194, 65, 12, 0.75); }
.app-page-card-live { border-top: 2px solid rgba(84, 91, 233, 0.7); }
.app-page-card-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.app-page-card-pix .app-page-card-ico { color: var(--pix); }
.app-page-card-crash .app-page-card-ico { color: #f97316; }
.app-page-card-live .app-page-card-ico { color: var(--indigo-2); }
.app-page-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.app-page-card-pix .app-page-eyebrow { color: var(--pix); }
.app-page-card-crash .app-page-eyebrow { color: #f97316; }
.app-page-card-live .app-page-eyebrow { color: var(--indigo-2); }
.app-page-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.app-page-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.app-page-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #141518;
  border: 1px dashed var(--elev);
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.app-page-install {
  display: grid;
  gap: 12px;
}
@media (min-width: 860px) {
  .app-page-install { grid-template-columns: 1fr 1fr; gap: 12px; }
}
.app-page-os {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.app-page-os-android { border-top: 2px solid rgba(255, 198, 0, 0.7); }
.app-page-os-ios { border-top: 2px solid rgba(84, 91, 233, 0.7); }
.app-page-os-head { margin-bottom: 14px; }
.app-page-os-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.app-page-os-ios .app-page-os-tag { color: var(--indigo-2); }
.app-page-os-head h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.app-page-os-head p {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
}
.app-page-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.app-page-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  background: #141518;
  border: 1px solid var(--elev);
  border-radius: 12px;
  padding: 12px 12px 12px 12px;
}
.app-page-step-n {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.app-page-os-ios .app-page-step-n { color: var(--indigo-2); }
.app-page-step h4 {
  margin: 2px 0 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.app-page-step p {
  color: var(--muted-2);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
}

.app-page-perms {
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .app-page-perms { grid-template-columns: repeat(3, 1fr); }
}
.app-page-perm {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 16px 16px 16px 18px;
}
.app-page-perm h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.app-page-perm p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.app-page-issues {
  display: grid;
  gap: 10px;
}
.app-page-issue {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 16px 16px 16px 18px;
  border-left-width: 2px;
}
.app-page-issue-crash { border-left-color: var(--gold); }
.app-page-issue-saldo { border-left-color: var(--pix); }
.app-page-issue-aviator { border-left-color: var(--indigo-2); }
.app-page-issue h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.app-page-issue p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
}

.app-page-band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.18), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .app-page-band {
    grid-template-columns: 1.35fr auto;
    padding: 28px;
    gap: 28px;
  }
}
.app-page-band h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
  max-width: 18em;
}
.app-page-band p {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 16px;
}
.app-page-band-mark {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  box-shadow: 0 12px 28px rgba(255, 198, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.4);
  transform: rotate(12deg);
  flex-shrink: 0;
}
.app-page-band-mark span {
  width: 28px;
  height: 28px;
  background: #0d0d0f;
  transform: rotate(45deg);
  border-radius: 4px;
}
@media (max-width: 799px) {
  .app-page-band-mark { display: none; }
}

.page-app .faq { max-width: 860px; }

.app-page-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.app-page-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .app-page-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.app-page-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.app-page-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.app-page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 420px) {
  .app-page-hero { padding: 10px 0 4px; }
  .app-page-hero-grid { gap: 14px; }
  .app-page-visual { width: 132px; }
  .app-page-phone { width: 132px; height: 260px; border-radius: 24px; border-width: 6px; }
  .app-page-phone-screen { inset: 14px 5px 12px; }
  .app-page-phone-banner { height: 32px; }
  .app-page-phone-tile { height: 28px; }
  .app-page-phone-crash { height: 24px; }
  .app-page-card,
  .app-page-os,
  .app-page-perm,
  .app-page-issue { padding: 16px 14px; }
  .app-page-band { padding: 18px 16px; }
  .app-page-cta-inner { padding: 18px 16px; }
  .app-page-cta-actions { width: 100%; }
  .app-page-cta-actions .btn { flex: 1 1 100%; }
  .app-page-hero .hero-ctas .btn { flex: 1 1 auto; }
  .app-page-honest { font-size: 10.5px; padding: 5px 9px; }
}
.page-app section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.page-app h4 { margin: 0; }


/* ===== Central de suporte ===== */
.page-sup {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-sup a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-sup a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-sup .sup-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-sup .sup-crumb a:hover { color: var(--gold); }

.sup-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.sup-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sup-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sup-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.sup-crumb a { color: var(--muted-2); }
.sup-crumb a:hover { color: var(--gold); }
.sup-crumb [aria-current="page"] { color: #fff; }

.sup-hero { padding: 18px 0 8px; }
.sup-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 900px) {
  .sup-hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
}
.sup-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 14em;
}
.sup-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

.sup-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
}
@media (max-width: 899px) {
  .sup-visual { width: 148px; margin-inline: auto; gap: 8px; }
}
.sup-visual-glow {
  position: absolute;
  inset: 6% 2% 22%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.32), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.sup-ticket {
  width: 236px;
  height: 236px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(255, 198, 0, 0.22), transparent 52%),
    radial-gradient(70% 70% at 12% 100%, rgba(84, 91, 233, 0.14), transparent 50%),
    linear-gradient(180deg, #1a170c, #101214);
  border: 1px solid rgba(255, 198, 0, 0.42);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 198, 0, 0.1);
}
@media (max-width: 899px) {
  .sup-ticket { width: 148px; height: 148px; border-radius: 18px; }
}
.sup-ticket-flap {
  position: absolute;
  top: 18px;
  left: 22px;
  right: 22px;
  height: 64px;
  background:
    linear-gradient(180deg, rgba(255, 198, 0, 0.18), transparent 70%),
    linear-gradient(135deg, transparent 49.5%, #1c1810 50%, #1c1810 100%),
    linear-gradient(225deg, transparent 49.5%, #16140e 50%, #16140e 100%);
  background-size: 100% 100%, 50% 100%, 50% 100%;
  background-position: 0 0, 0 0, 100% 0;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 198, 0, 0.28);
  border-radius: 10px 10px 4px 4px;
  box-shadow: inset 0 1px 0 rgba(255, 222, 66, 0.18);
}
@media (max-width: 899px) {
  .sup-ticket-flap { top: 12px; left: 14px; right: 14px; height: 40px; }
}
.sup-ticket-seal {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #161408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  padding: 7px 11px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(255, 198, 0, 0.28);
}
@media (max-width: 899px) {
  .sup-ticket-seal { font-size: 9px; padding: 5px 8px; }
}
.sup-ticket-line {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}
.sup-ticket-line { right: auto; }
.sup-ticket-line-a { bottom: 62px; width: 42%; }
.sup-ticket-line-b { bottom: 50px; width: 58%; }
.sup-ticket-line-c { bottom: 38px; width: 34%; }
@media (max-width: 899px) {
  .sup-ticket-line { left: 16px; height: 2px; }
  .sup-ticket-line-a { bottom: 40px; }
  .sup-ticket-line-b { bottom: 32px; }
  .sup-ticket-line-c { bottom: 24px; }
}
.sup-ticket-stamp {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 198, 0, 0.55);
}
@media (max-width: 899px) {
  .sup-ticket-stamp { right: 12px; bottom: 10px; font-size: 8px; }
}
.sup-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.sup-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.sup-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.sup-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.sup-channels {
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .sup-channels { grid-template-columns: 1.2fr 0.9fr 0.9fr; }
}
.sup-channel {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  min-height: 100%;
}
.sup-channel-mail {
  border-top: 2px solid rgba(255, 198, 0, 0.7);
}
.sup-channel:nth-child(2) { border-top: 2px solid rgba(226, 75, 75, 0.55); }
.sup-channel:nth-child(3) { border-top: 2px solid rgba(84, 91, 233, 0.55); }
.sup-channel-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sup-channel:nth-child(2) .sup-channel-tag { color: var(--danger); }
.sup-channel:nth-child(3) .sup-channel-tag { color: var(--indigo-2); }
.sup-channel h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sup-channel p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}
.sup-channel-note {
  margin-top: 12px;
  font-size: 12.5px !important;
  color: var(--muted) !important;
}
.sup-mail {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #101214;
  border: 1px solid var(--elev);
}
.sup-mail-addr {
  display: block;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 10px;
  word-break: break-all;
  user-select: all;
}
.sup-mail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sup-ra {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 72ch;
}

.sup-check {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 720px) { .sup-check { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .sup-check { grid-template-columns: repeat(4, 1fr); } }
.sup-check-item {
  display: flex;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 20px;
  min-height: 168px;
}
.sup-check-item:hover { border-color: rgba(255, 198, 0, 0.35); }
.sup-check-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #161408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}
.sup-check-item h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sup-check-item p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.sup-jump-wrap { padding: 8px 0 0; }
.sup-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.sup-jump a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--elev);
  color: var(--muted-2) !important;
  font-size: 12px;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}
.sup-jump a:hover {
  border-color: rgba(255, 198, 0, 0.45);
  color: var(--gold) !important;
}

.sup-saque {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
@media (min-width: 720px) { .sup-saque { grid-template-columns: repeat(3, 1fr); } }
.sup-saque-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 20px;
}
.sup-saque-card:first-child { border-top: 2px solid rgba(255, 198, 0, 0.7); }
.sup-saque-card:nth-child(2) { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.sup-saque-card:nth-child(3) { border-top: 2px solid rgba(84, 91, 233, 0.55); }
.sup-saque-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sup-saque-card p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.page-sup .faq { max-width: 860px; }

.sup-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.sup-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .sup-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.sup-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sup-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.sup-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-sup section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

@media (max-width: 420px) {
  .sup-hero { padding: 10px 0 4px; }
  .sup-hero-grid { gap: 14px; }
  .sup-visual { width: 132px; }
  .sup-ticket { width: 132px; height: 132px; }
  .sup-channel,
  .sup-check-item,
  .sup-saque-card { padding: 16px 14px; }
  .sup-check-item { min-height: 0; }
  .sup-cta-inner { padding: 18px 16px; }
  .sup-cta-actions { width: 100%; }
  .sup-cta-actions .btn { flex: 1 1 100%; }
  .sup-hero .hero-ctas .btn { flex: 1 1 auto; }
  .sup-mail-actions { width: 100%; }
  .sup-mail-actions .btn { flex: 1 1 auto; }
  .sup-jump a { height: 30px; padding: 0 10px; font-size: 11.5px; }
}


/* ===== Bônus de cadastro ===== */
.page-bonus {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-bonus a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-bonus a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-bonus .bon-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-bonus .bon-crumb a:hover { color: var(--gold); }

.bon-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.bon-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bon-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bon-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.bon-crumb a { color: var(--muted-2); }
.bon-crumb a:hover { color: var(--gold); }
.bon-crumb [aria-current="page"] { color: #fff; }

.bon-hero { padding: 18px 0 8px; }
.bon-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 900px) {
  .bon-hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
}
.bon-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 12em;
}
.bon-offer {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 198, 0, 0.42);
  background: rgba(255, 198, 0, 0.07);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 46ch;
  line-height: 1.4;
}
.bon-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

.bon-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
}
@media (max-width: 899px) {
  .bon-visual { width: 148px; margin-inline: auto; gap: 8px; }
}
.bon-visual-glow {
  position: absolute;
  inset: 6% 2% 22%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.3), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.bon-token {
  width: 236px;
  height: 236px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(255, 198, 0, 0.2), transparent 52%),
    radial-gradient(70% 70% at 8% 100%, rgba(17, 201, 139, 0.12), transparent 50%),
    linear-gradient(180deg, #1a170c, #101214);
  border: 1px solid rgba(255, 198, 0, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 198, 0, 0.08);
}
@media (max-width: 899px) {
  .bon-token { width: 148px; height: 148px; border-radius: 16px; }
}
.bon-token-ring,
.bon-token-hex,
.bon-token-facet,
.bon-token-core {
  position: absolute;
  pointer-events: none;
}
.bon-token-ring {
  inset: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 198, 0, 0.28);
  box-shadow: inset 0 0 0 14px rgba(255, 198, 0, 0.04);
}
.bon-token-hex {
  inset: 46px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background: linear-gradient(160deg, rgba(255, 222, 66, 0.22), rgba(255, 198, 0, 0.05) 55%, transparent);
  box-shadow: inset 0 0 0 1px rgba(255, 198, 0, 0.22);
}
@media (max-width: 899px) {
  .bon-token-ring { inset: 16px; box-shadow: inset 0 0 0 8px rgba(255, 198, 0, 0.04); }
  .bon-token-hex { inset: 28px; }
}
.bon-token-facet {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 222, 66, 0.35);
  background: linear-gradient(135deg, rgba(255, 198, 0, 0.16), transparent 65%);
}
.bon-token-facet-a { top: 28px; right: 36px; }
.bon-token-facet-b { bottom: 32px; left: 34px; opacity: 0.7; }
@media (max-width: 899px) {
  .bon-token-facet { width: 26px; height: 26px; border-radius: 5px; }
  .bon-token-facet-a { top: 16px; right: 20px; }
  .bon-token-facet-b { bottom: 18px; left: 18px; }
}
.bon-token-core {
  width: 64px;
  height: 64px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(12deg);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  box-shadow:
    0 0 0 1px rgba(255, 222, 66, 0.3),
    0 12px 28px rgba(255, 198, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.bon-token-core::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #0d0d0f;
  border-radius: 3px;
}
@media (max-width: 899px) {
  .bon-token-core { width: 42px; height: 42px; border-radius: 10px; }
  .bon-token-core::after { width: 12px; height: 12px; }
}
.bon-token-chip {
  position: absolute;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #161408;
  background: var(--gold);
  padding: 4px 7px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(255, 198, 0, 0.25);
  z-index: 2;
}
.bon-token-chip-l { left: 14px; top: 18px; }
.bon-token-chip-r { right: 14px; bottom: 18px; background: #11c98b; color: #06281c; }
@media (max-width: 899px) {
  .bon-token-chip { font-size: 8px; padding: 3px 5px; }
  .bon-token-chip-l { left: 8px; top: 10px; }
  .bon-token-chip-r { right: 8px; bottom: 10px; }
}
.bon-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.bon-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.bon-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.bon-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.bon-vale {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 860px) {
  .bon-vale { grid-template-columns: repeat(3, 1fr); }
}
.bon-vale-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}
.bon-vale-card:hover { border-color: rgba(255, 198, 0, 0.38); }
.bon-vale-pix { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.bon-vale-lobby { border-top: 2px solid rgba(255, 198, 0, 0.75); }
.bon-vale-vip { border-top: 2px solid rgba(84, 91, 233, 0.7); }
.bon-vale-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.bon-vale-pix .bon-vale-ico { color: var(--pix); }
.bon-vale-vip .bon-vale-ico { color: var(--indigo-2); }
.bon-vale-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.bon-vale-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.bon-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) {
  .bon-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (min-width: 1100px) {
  .bon-steps { grid-template-columns: repeat(4, 1fr); }
}
.bon-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 18px 16px 18px;
  min-height: 100%;
}
.bon-step-n {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.bon-step h3 {
  margin: 2px 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.bon-step p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.bon-reqs {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) { .bon-reqs { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .bon-reqs { grid-template-columns: repeat(4, 1fr); } }
.bon-req {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 18px 16px 18px;
  min-height: 100%;
}
.bon-req:nth-child(1) { border-top: 2px solid rgba(255, 198, 0, 0.75); }
.bon-req:nth-child(2) { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.bon-req:nth-child(3) { border-top: 2px solid rgba(84, 91, 233, 0.7); }
.bon-req:nth-child(4) { border-top: 2px solid rgba(226, 75, 75, 0.45); }
.bon-req h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.bon-req-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #141518;
  border: 1px dashed var(--elev);
}
.bon-req p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.bon-formula {
  display: grid;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 14px;
}
@media (min-width: 800px) {
  .bon-formula {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 12px;
  }
}
.bon-formula-cell {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}
.bon-formula-out {
  border-color: rgba(255, 198, 0, 0.35);
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(255, 198, 0, 0.12), transparent 60%),
    var(--surface);
}
.bon-formula-k {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.bon-formula-cell strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.bon-formula-out strong { color: var(--gold-2); }
.bon-formula-op {
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
@media (max-width: 799px) {
  .bon-formula-op { padding: 2px 0; }
}

.bon-example {
  margin: 0 0 16px;
  padding: 16px 16px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 198, 0, 0.4);
  background: #141518;
}
.bon-example-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.bon-example p:last-child {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 62ch;
}

.bon-games {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .bon-games { grid-template-columns: 1fr 1fr; } }
.bon-game {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 18px;
}
.bon-game-slots { border-top: 2px solid rgba(255, 198, 0, 0.75); }
.bon-game-crash { border-top: 2px solid rgba(194, 65, 12, 0.7); }
.bon-game h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.bon-game p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.bon-care {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .bon-care { grid-template-columns: 1fr 1fr; } }
.bon-care-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 18px;
}
.bon-care-card:first-child { border-top: 2px solid rgba(226, 75, 75, 0.55); }
.bon-care-card:last-child { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.bon-care-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.bon-care-card p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.bon-terms {
  position: relative;
  overflow: hidden;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.12), transparent 50%),
    linear-gradient(180deg, #17181b, #151618);
}
.bon-terms h2 {
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
}
.bon-terms p:last-child {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 68ch;
  line-height: 1.55;
}

.page-bonus .faq { max-width: 860px; }

.bon-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.bon-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .bon-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.bon-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.bon-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.bon-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 420px) {
  .bon-hero { padding: 10px 0 4px; }
  .bon-hero-grid { gap: 14px; }
  .bon-visual { width: 132px; }
  .bon-token { width: 132px; height: 132px; }
  .bon-offer { font-size: 13px; padding: 10px 12px; }
  .bon-vale-card,
  .bon-step,
  .bon-req,
  .bon-game,
  .bon-care-card { padding: 16px 14px; }
  .bon-terms { padding: 18px 16px; }
  .bon-cta-inner { padding: 18px 16px; }
  .bon-cta-actions { width: 100%; }
  .bon-cta-actions .btn { flex: 1 1 100%; }
  .bon-hero .hero-ctas .btn { flex: 1 1 auto; }
  .bon-formula-cell { padding: 12px 12px; }
}


/* ===== Sobre a GiroBet ===== */
.page-sobre {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.page-sobre a:not(.btn):not(.logo) {
  color: var(--gold);
  font-weight: 700;
}
.page-sobre a:not(.btn):not(.logo):hover { color: var(--gold-2); }
.page-sobre .sob-crumb a {
  color: var(--muted-2);
  font-weight: 600;
}
.page-sobre .sob-crumb a:hover { color: var(--gold); }
.page-sobre .sob-offer,
.page-sobre .sob-prov {
  color: inherit;
  font-weight: inherit;
}
.page-sobre .sob-offer:hover,
.page-sobre .sob-prov:hover { color: inherit; }

.sob-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.sob-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sob-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sob-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.sob-crumb a { color: var(--muted-2); }
.sob-crumb a:hover { color: var(--gold); }
.sob-crumb [aria-current="page"] { color: #fff; }

.sob-hero { padding: 18px 0 8px; }
.sob-hero-grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 900px) {
  .sob-hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
}
.sob-hero h1 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 12em;
}
.sob-lead {
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 500;
  max-width: 52ch;
  line-height: 1.55;
}

.sob-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 260px);
  display: grid;
  justify-items: center;
  gap: 10px;
}
@media (max-width: 899px) {
  .sob-visual { width: 148px; margin-inline: auto; gap: 8px; }
}
.sob-visual-glow {
  position: absolute;
  inset: 6% 2% 22%;
  background: radial-gradient(circle, rgba(255, 198, 0, 0.32), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}
.sob-seal {
  width: 236px;
  height: 236px;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 88% 0%, rgba(255, 198, 0, 0.22), transparent 52%),
    radial-gradient(70% 70% at 12% 100%, rgba(17, 201, 139, 0.12), transparent 50%),
    linear-gradient(180deg, #1a170c, #101214);
  border: 1px solid rgba(255, 198, 0, 0.42);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 198, 0, 0.1);
}
@media (max-width: 899px) {
  .sob-seal { width: 148px; height: 148px; border-radius: 16px; }
}
.sob-seal-ring,
.sob-seal-mark,
.sob-seal-word,
.sob-seal-chip {
  position: absolute;
  pointer-events: none;
}
.sob-seal-ring {
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 198, 0, 0.35);
  box-shadow: inset 0 0 0 10px rgba(255, 198, 0, 0.04);
}
@media (max-width: 899px) {
  .sob-seal-ring { inset: 14px; box-shadow: inset 0 0 0 7px rgba(255, 198, 0, 0.04); }
}
.sob-seal-mark {
  width: 44px;
  height: 44px;
  left: 50%;
  top: 58px;
  margin-left: -22px;
  display: grid;
  place-items: center;
}
.sob-seal-mark span {
  width: 32px;
  height: 32px;
  background: linear-gradient(145deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  transform: rotate(12deg);
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 222, 66, 0.25), 0 8px 16px rgba(255, 198, 0, 0.28);
}
.sob-seal-mark::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #0d0d0f;
  transform: rotate(45deg);
  border-radius: 1px;
}
@media (max-width: 899px) {
  .sob-seal-mark { width: 30px; height: 30px; top: 34px; margin-left: -15px; }
  .sob-seal-mark span { width: 22px; height: 22px; border-radius: 4px; }
  .sob-seal-mark::after { width: 8px; height: 8px; }
}
.sob-seal-word {
  left: 0;
  right: 0;
  top: 118px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
@media (max-width: 899px) {
  .sob-seal-word { top: 72px; font-size: 13px; }
}
.sob-seal-chip {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 7px;
  border-radius: 6px;
  color: #161408;
  background: var(--gold);
}
.sob-seal-chip-l { left: 18px; bottom: 22px; }
.sob-seal-chip-r {
  right: 18px;
  bottom: 22px;
  background: var(--pix);
  color: #06281c;
}
@media (max-width: 899px) {
  .sob-seal-chip { font-size: 8px; padding: 3px 5px; }
  .sob-seal-chip-l { left: 10px; bottom: 12px; }
  .sob-seal-chip-r { right: 10px; bottom: 12px; }
}
.sob-visual-meta {
  display: grid;
  gap: 2px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.sob-visual-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}
.sob-visual-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.55);
  animation: pulse 1.6s ease-out infinite;
}

.sob-intro {
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 500;
  max-width: 62ch;
  margin: -4px 0 16px;
  line-height: 1.55;
}

.sob-offers {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .sob-offers { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .sob-offers { grid-template-columns: repeat(3, 1fr); } }
.sob-offer {
  display: block;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  padding: 18px 16px 18px;
  min-height: 100%;
  transition: border-color 0.15s ease;
}
.sob-offer:hover { border-color: rgba(255, 198, 0, 0.4); }
.sob-offer-slots { border-top: 2px solid rgba(255, 198, 0, 0.7); }
.sob-offer-live { border-top: 2px solid rgba(84, 91, 233, 0.55); }
.sob-offer-crash { border-top: 2px solid rgba(194, 65, 12, 0.7); }
.sob-offer-pay { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.sob-offer-vip { border-top: 2px solid rgba(255, 198, 0, 0.45); }
.sob-offer-promo { border-top: 2px solid rgba(84, 91, 233, 0.4); }
.sob-offer-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: #1a1b1e;
  border: 1px solid var(--elev);
  color: var(--gold);
}
.sob-offer-live .sob-offer-ico { color: var(--indigo-2); }
.sob-offer-crash .sob-offer-ico { color: #e07a3a; }
.sob-offer-pay .sob-offer-ico { color: var(--pix); }
.sob-offer-vip .sob-offer-ico { color: var(--gold-2); }
.sob-offer-promo .sob-offer-ico { color: var(--indigo-2); }
.sob-offer-k {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sob-offer-live .sob-offer-k { color: var(--indigo-2); }
.sob-offer-crash .sob-offer-k { color: #e07a3a; }
.sob-offer-pay .sob-offer-k { color: var(--pix); }
.page-sobre .sob-offer h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  color: #fff;
}
.page-sobre .sob-offer p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.sob-provs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px) { .sob-provs { grid-template-columns: repeat(5, 1fr); } }
.sob-prov {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 12px;
  padding: 14px;
  min-height: 92px;
  transition: border-color 0.15s ease;
}
.sob-prov:hover { border-color: rgba(255, 198, 0, 0.4); }
.page-sobre .sob-prov strong {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.page-sobre .sob-prov span:not(.mono) {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.sob-commit {
  display: grid;
  gap: 10px;
}
@media (min-width: 720px) { .sob-commit { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .sob-commit { grid-template-columns: repeat(4, 1fr); } }
.sob-commit-card {
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 14px;
  padding: 18px 16px 20px;
  min-height: 168px;
}
.sob-commit-age { border-top: 2px solid rgba(255, 198, 0, 0.7); }
.sob-commit-jr { border-top: 2px solid rgba(226, 75, 75, 0.55); }
.sob-commit-kyc { border-top: 2px solid rgba(84, 91, 233, 0.55); }
.sob-commit-lgpd { border-top: 2px solid rgba(17, 201, 139, 0.7); }
.sob-commit-k {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sob-commit-jr .sob-commit-k { color: var(--danger); }
.sob-commit-kyc .sob-commit-k { color: var(--indigo-2); }
.sob-commit-lgpd .sob-commit-k { color: var(--pix); }
.sob-commit-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sob-commit-card p {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.sob-legal-wrap {
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-radius: 16px;
  overflow: hidden;
}
.sob-legal {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.sob-legal caption {
  caption-side: bottom;
  text-align: left;
  padding: 12px 18px 14px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  border-top: 1px dashed var(--elev);
  background: #121316;
}
.sob-legal th,
.sob-legal td {
  padding: 14px 18px;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}
.sob-legal tr:last-child th,
.sob-legal tr:last-child td { border-bottom: 0; }
.sob-legal th {
  width: 38%;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #141518;
}
.sob-legal td {
  color: var(--muted-2);
  font-weight: 500;
  background: var(--surface);
}
.sob-legal-slot {
  display: block;
  height: 11px;
  max-width: 220px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.sob-contact {
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--elev);
  border-top: 2px solid rgba(255, 198, 0, 0.7);
  border-radius: 16px;
  padding: 20px 18px 18px;
}
.sob-contact-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sob-contact h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sob-contact p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}
.sob-mail {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: #101214;
  border: 1px solid var(--elev);
}
.sob-mail-addr {
  display: block;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 10px;
  word-break: break-all;
  user-select: all;
}
.sob-mail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sob-cta {
  margin-top: 28px;
  padding: 8px 0 8px;
}
.sob-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .sob-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.sob-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sob-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.sob-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 420px) {
  .sob-hero { padding: 10px 0 4px; }
  .sob-hero-grid { gap: 14px; }
  .sob-visual { width: 132px; }
  .sob-seal { width: 132px; height: 132px; }
  .sob-offer,
  .sob-commit-card,
  .sob-contact { padding: 16px 14px; }
  .sob-commit-card { min-height: 0; }
  .sob-legal th,
  .sob-legal td { padding: 12px 14px; }
  .sob-cta-inner { padding: 18px 16px; }
  .sob-cta-actions { width: 100%; }
  .sob-cta-actions .btn { flex: 1 1 100%; }
  .sob-hero .hero-ctas .btn { flex: 1 1 auto; }
  .sob-mail-actions { width: 100%; }
  .sob-mail-actions .btn { flex: 1 1 auto; }
  .sob-provs { gap: 8px; }
  .sob-prov { padding: 12px; min-height: 84px; }
}


/* ===== Interior pages (slots, live, crash, providers, affiliates, legal, blog) ===== */
.page-int {
  position: relative;
  z-index: 1;
  padding-bottom: 8px;
}
.page-int a:not(.btn):not(.logo):not(.prov):not(.link-all) {
  color: var(--gold);
  text-underline-offset: 3px;
}
.page-int a:not(.btn):not(.logo):not(.prov):not(.link-all):hover { color: var(--gold-2); }
.page-int a.prov { color: inherit; text-decoration: none; }
.page-int .why-card a { color: var(--gold); }

.int-crumb {
  padding: 18px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.int-crumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.int-crumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.int-crumb li:not(:last-child)::after {
  content: "/";
  color: #3a3b40;
  font-weight: 700;
}
.page-int .int-crumb a { color: var(--muted-2); text-decoration: none; }
.page-int .int-crumb a:hover { color: var(--gold); }
.int-crumb [aria-current="page"] { color: #fff; }

.int-hero { padding: 18px 0 10px; }
.int-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
}
.int-lead {
  color: var(--muted-2);
  max-width: 62ch;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 18px;
  line-height: 1.55;
}
.int-hero .hero-ctas { margin-bottom: 8px; }

.int-cta { margin: 28px 0 8px; }
.int-cta-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--elev);
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(255, 198, 0, 0.16), transparent 50%),
    linear-gradient(180deg, #1a1608, #151618);
}
@media (min-width: 800px) {
  .int-cta-inner {
    grid-template-columns: 1.4fr auto;
    padding: 26px 28px;
  }
}
.int-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.int-cta p {
  color: var(--muted-2);
  font-size: 13.5px;
  font-weight: 500;
  max-width: 48ch;
}
.int-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note-box {
  margin: 18px 0 8px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 198, 0, 0.28);
  background: rgba(255, 198, 0, 0.05);
  max-width: 72ch;
}
.note-k {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.note-box p { color: var(--muted-2); font-size: 13.5px; font-weight: 500; margin: 0; }

.prov-grid { margin-top: 8px; }
@media (min-width: 640px) {
  .page-int .providers.prov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .page-int .providers.prov-grid { grid-template-columns: repeat(3, 1fr); }
}
.page-int .prov { min-height: 118px; }
.page-int .prov span { max-width: 36ch; }

.legal-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px;
}
.legal-switch a {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2) !important;
  text-decoration: none !important;
  border: 1px solid var(--elev);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 12px;
}
.legal-switch a:hover { color: var(--gold) !important; border-color: rgba(255,198,0,0.4); }
.legal-switch a[aria-current="page"] {
  color: #161408 !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

.legal-article { max-width: 72ch; padding-bottom: 8px; }
.legal-article h2 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 28px 0 8px;
}
.legal-article h2:first-child { margin-top: 0; }
.legal-article p {
  color: var(--muted-2);
  font-size: 14.5px;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.6;
}
.legal-disclaimer {
  margin-top: 28px !important;
  padding: 14px 16px;
  border: 1px dashed rgba(255,198,0,0.4);
  border-radius: 12px;
  background: rgba(255,198,0,0.04);
  font-size: 13px !important;
  color: var(--muted) !important;
}

.page-blog .blog-empty {
  min-height: 52vh;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 48px 0 64px;
  max-width: 54ch;
}
.page-blog h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
}
.visually-quiet {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 420px) {
  .int-cta-actions { width: 100%; }
  .int-cta-actions .btn { flex: 1 1 100%; }
}


.prose-int {
  max-width: 720px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.65;
}
.prose-int h2 { color: #fff; font-size: 1.35rem; margin: 0 0 12px; }
.prose-int p { margin: 0 0 14px; }
.prose-int a { color: var(--gold); }
