/* ============================================
   BOLÃO DO NENEU — Design System
   Tradição premium + energia moderna
   ============================================ */

:root {
  /* — Verde elétrico moderno — */
  --green-950: #001a0f;
  --green-900: #00321d;
  --green-800: #00502f;
  --green-700: #007a44;
  --green-600: #00a85c;
  --green-500: #00d97a;
  --green-400: #00ff88;
  --green-300: #5dffae;
  --green-100: #c4ffdc;
  --green-50:  #e8fff0;

  /* — Limão / acento — */
  --gold-700: #8a6712;
  --gold-600: #c5a300;
  --gold-500: #e8c400;
  --gold-400: #ffd60a;
  --gold-300: #ffe24d;
  --gold-200: #fff09e;
  --gold-100: #fff8d6;

  /* — Neutros quentes — */
  --ink-950: #08110d;
  --ink-900: #0c1a14;
  --ink-800: #14241c;
  --ink-700: #1f3329;
  --ink-600: #3d5448;
  --ink-500: #5e7367;
  --ink-400: #889b91;
  --ink-300: #b3c1b9;
  --ink-200: #d6dfd9;
  --ink-100: #ecf1ee;
  --ink-50:  #f6f9f7;
  --bone:    #f4f3ee;
  --paper:   #ffffff;
  --cream:   #f9f7ee;

  /* — Semantic — */
  --danger: #d8443c;
  --info:   #2a6fd8;

  /* — Type — */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-sans: "Geist", system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  /* — Radii — */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-2xl: 40px;

  /* — Shadows — */
  --shadow-sm: 0 1px 2px rgba(8,17,13,0.06), 0 1px 3px rgba(8,17,13,0.04);
  --shadow-md: 0 4px 12px rgba(8,17,13,0.08), 0 2px 4px rgba(8,17,13,0.04);
  --shadow-lg: 0 18px 40px -12px rgba(8,17,13,0.18), 0 8px 16px -8px rgba(8,17,13,0.08);
  --shadow-xl: 0 32px 64px -16px rgba(8,17,13,0.25);
  --shadow-gold: 0 12px 32px -8px rgba(245,197,24,0.45);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html, body { overflow-x: clip; max-width: 100%; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }
#root { overflow-x: clip; max-width: 100%; }
* { min-width: 0; }
img, svg, video { max-width: 100%; }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

/* — Typography utility — */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-variation-settings: "opsz" 96, "wdth" 100;
}
.h-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
}

/* ============================================
   TOP NAV
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid rgba(8,17,13,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.nav-logo {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: rotate(-4deg);
  transition: transform 0.2s ease;
  padding: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-brand:hover .nav-logo { transform: rotate(4deg); }
.nav-logo::after { display: none; }
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.nav-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-700);
  margin-top: 4px;
}

.nav-links {
  display: flex; gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-link:hover { color: var(--green-900); background: rgba(10,61,46,0.06); }
.nav-link.active { color: var(--green-900); }

.nav-cta {
  display: flex; gap: 8px; align-items: center;
}

/* — burger button — */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: var(--ink-900);
  border: 2px solid var(--ink-900);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  transition: transform 0.18s ease, background 0.18s ease;
}
.nav-burger:hover { transform: translateY(-1px); }
.nav-burger:active { transform: translateY(1px); }
.nav-burger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--gold-300);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.nav-burger.is-open { background: var(--gold-300); border-color: var(--ink-900); }
.nav-burger.is-open span { background: var(--ink-950); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* — mobile panel — */
.nav-mobile-panel {
  position: fixed;
  inset: 72px 0 0;
  background: rgba(8,17,13,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.nav-mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-inner {
  background: var(--bone);
  padding: 24px 20px 40px;
  max-width: 100%;
  border-bottom: 4px solid var(--ink-900);
  transform: translateY(-12px);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav-mobile-panel.is-open .nav-mobile-inner { transform: translateY(0); }

.nav-mobile-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  margin-bottom: 12px;
  padding-left: 4px;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  background: var(--paper);
  border: 2px solid var(--ink-900);
  border-radius: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 4px 4px 0 0 var(--ink-900);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.nav-mobile-link:hover { background: var(--gold-100); }
.nav-mobile-link:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--ink-900); }
.nav-mobile-link.active {
  background: var(--gold-300);
  border-color: var(--ink-950);
}
.nav-mobile-arrow {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-700);
}
.nav-mobile-link.active .nav-mobile-arrow { color: var(--ink-950); }

.nav-mobile-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(8,17,13,0.15);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 640px) {
  .nav-cta { display: none; }
  .nav-mobile-panel { inset-block-start: 64px; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-400);
  color: var(--ink-950);
  box-shadow: 0 6px 0 0 var(--ink-950), 0 6px 16px -4px rgba(0,0,0,0.2);
  font-weight: 700;
}
.btn-primary:hover { background: var(--gold-300); transform: translateY(-2px); box-shadow: 0 8px 0 0 var(--ink-950), 0 12px 24px -4px rgba(0,0,0,0.25); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--ink-950); }

.btn-dark {
  background: var(--green-900);
  color: var(--bone);
}
.btn-dark:hover { background: var(--green-800); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-800);
  border: 1px solid rgba(8,17,13,0.12);
}
.btn-ghost:hover { background: rgba(8,17,13,0.04); }

.btn-outline-light {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); }

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-block { width: 100%; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  background: var(--green-950);
  color: var(--bone);
  overflow: hidden;
  padding: 0px 0 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(255,214,10,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(0,255,136,0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(0,168,92,0.15), transparent 70%),
    linear-gradient(160deg, #001a0f 0%, #00321d 60%, #00502f 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 40%, transparent 90%);
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* — floating lottery balls — */
.float-balls {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.fb {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  border: 3px solid var(--ink-950);
  animation: floatBall 6s ease-in-out infinite;
}
.fb-1 { top: 12%; right: 8%; background: var(--gold-400); color: var(--ink-950); animation-delay: 0s; }
.fb-2 { top: 65%; right: 38%; background: var(--green-400); color: var(--ink-950); width: 48px; height: 48px; font-size: 16px; animation-delay: -2s; }
.fb-3 { top: 30%; right: 48%; background: var(--paper); color: var(--ink-900); width: 40px; height: 40px; font-size: 14px; animation-delay: -4s; }
.fb-4 { bottom: 8%; right: 4%; background: var(--green-400); color: var(--ink-950); width: 56px; height: 56px; font-size: 19px; animation-delay: -1.5s; }
@keyframes floatBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@media (max-width: 1000px) { .float-balls { display: none; } }
.hero-inner {
  position: relative;
  display: grid !important;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr !important; gap: 56px; }
  .hero-inner > * { grid-column: 1 !important; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: var(--gold-400);
  color: var(--ink-950);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  box-shadow: 0 4px 0 0 rgba(0,0,0,0.2);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: #03c938;
  box-shadow: 0 0 0 4px rgba(88, 223, 26, 0.25);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 7.4vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 24px 0 20px;
  font-variation-settings: "opsz" 96, "wdth" 100;
}
.hero h1 em {
  font-style: normal;
  display: inline-block;
  position: relative;
  color: var(--ink-950);
  background: var(--gold-400);
  padding: 0 12px;
  border-radius: 12px;
  transform: rotate(-2deg);
  font-weight: 700;
  box-shadow: 0 8px 24px -4px rgba(255,214,10,0.4);
}
.hero p.lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--gold-300);
  letter-spacing: -0.035em;
  line-height: 1;
}
.hero-trust-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* — Hero ticket card — */
.hero-ticket {
  position: relative;
}
.ticket {
  position: relative;
  background: var(--bone);
  color: var(--ink-900);
  border-radius: 28px;
  padding: 28px;
  border: 3px solid var(--ink-900);
  box-shadow: 12px 12px 0 0 var(--gold-400), 12px 12px 0 3px var(--ink-900);
  transform: rotate(-2.5deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ticket:hover { transform: rotate(0deg) scale(1.02); }
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  background: var(--green-950);
  border-radius: 999px;
  top: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -12px; }
.ticket::after { right: -12px; }

.ticket-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.ticket-brand-mini {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.ticket-brand-mini-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-top: 2px;
}
.ticket-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
}

.ticket-divider {
  border-top: 2px dashed var(--ink-200);
  margin: 20px 0;
}

.ticket-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.ticket-subtitle {
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 18px;
}

.ticket-numbers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.tn {
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink-100);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-700);
  position: relative;
  border: 2px solid var(--ink-900);
}
.tn.picked {
  background: var(--green-700);
  color: var(--gold-300);
  box-shadow: 0 4px 0 0 var(--ink-900);
  transform: translateY(-2px);
}
.tn.hot {
  background: var(--gold-400);
  color: var(--ink-950);
  animation: wiggle 2.5s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.ticket-prize-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px;
  margin: 16px -8px 0;
  background: linear-gradient(135deg, var(--green-50), var(--gold-100));
  border-radius: 12px;
}
.ticket-prize-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-600);
}
.ticket-prize-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

/* ============================================
   MARQUEE
   ============================================ */

.marquee {
  background: var(--gold-400);
  color: var(--ink-950);
  padding: 16px 0;
  border-top: 3px solid var(--ink-950);
  border-bottom: 3px solid var(--ink-950);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.marquee-item-dot {
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--ink-950);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 760px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--green-700);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink-900);
  margin: 0;
}
.section-title em {
  font-style: normal;
  color: var(--green-700);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-title em::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 8px;
  background: var(--gold-400);
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1deg);
}
.section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-600);
  margin-top: 8px;
  max-width: 620px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head-row .section-head { margin-bottom: 0; }

/* ============================================
   BOLÕES (cards)
   ============================================ */

.bolao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .bolao-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bolao-grid { grid-template-columns: 1fr; } }

.bolao-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 2px solid var(--ink-900);
  box-shadow: 6px 6px 0 0 var(--ink-900);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.bolao-card:hover,
.bolao-card:focus { text-decoration: none; transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 var(--ink-900); }
.bolao-card:nth-child(2) { transform: rotate(-0.5deg); }
.bolao-card:nth-child(2):hover { transform: translate(-3px, -3px) rotate(0deg); }

.bolao-card.featured {
  background: linear-gradient(160deg, #00321d, #007a44);
  color: var(--bone);
  border-color: var(--gold-400);
  box-shadow: 6px 6px 0 0 var(--gold-400);
}
.bolao-card.featured:hover {
  box-shadow: 9px 9px 0 0 var(--gold-400);
}
.bolao-card.featured::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 70%);
  pointer-events: none;
}

.bolao-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.bolao-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold-400);
  color: var(--ink-950);
  font-weight: 700;
  border: 1.5px solid var(--ink-900);
}
.bolao-card.featured .bolao-tag {
  background: var(--gold-400);
  color: var(--ink-950);
  border-color: var(--ink-950);
}
.bolao-tag-dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--green-600);
}
.bolao-card.featured .bolao-tag-dot {
  background: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.2);
}

.bolao-deadline {
  text-align: right;
}
.bolao-deadline-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.bolao-card.featured .bolao-deadline-label { color: rgba(255,255,255,0.5); }
.bolao-deadline-time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-800);
  margin-top: 2px;
  font-weight: 600;
}
.bolao-card.featured .bolao-deadline-time { color: var(--gold-300); }

.bolao-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.0;
}

.bolao-prize-block {
  padding: 16px 0;
  border-top: 1px dashed rgba(8,17,13,0.1);
  border-bottom: 1px dashed rgba(8,17,13,0.1);
}
.bolao-card.featured .bolao-prize-block {
  border-color: rgba(255,255,255,0.12);
}
.bolao-prize-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.bolao-card.featured .bolao-prize-label { color: rgba(255,255,255,0.55); }
.bolao-prize-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--green-700);
  line-height: 1;
}
.bolao-card.featured .bolao-prize-value { color: var(--gold-400); }

.bolao-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.bolao-meta-item-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.bolao-card.featured .bolao-meta-item-label { color: rgba(255,255,255,0.5); }
.bolao-meta-item-val {
  font-weight: 600;
  color: var(--ink-800);
  margin-top: 2px;
}
.bolao-card.featured .bolao-meta-item-val { color: var(--bone); }

.bolao-progress {
  height: 6px;
  background: var(--ink-100);
  border-radius: 999px;
  overflow: hidden;
}
.bolao-card.featured .bolao-progress { background: rgba(255,255,255,0.1); }
.bolao-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
  border-radius: 999px;
}
.bolao-card.featured .bolao-progress-bar {
  background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
}

/* ============================================
   COMO FUNCIONA
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 28px 24px;
  background: var(--paper);
  border-radius: 20px;
  border: 2px solid var(--ink-900);
  box-shadow: 4px 4px 0 0 var(--ink-900);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.step:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink-900); }
.step:nth-child(2) { background: var(--gold-100); }
.step:nth-child(3) { background: var(--green-50); }
.step:nth-child(4) { background: var(--ink-900); color: var(--bone); box-shadow: 4px 4px 0 0 var(--gold-400); }
.step:nth-child(4):hover { box-shadow: 6px 6px 0 0 var(--gold-400); }
.step:nth-child(4) .step-title { color: var(--bone); }
.step:nth-child(4) .step-body { color: rgba(255,255,255,0.7); }
.step:nth-child(4) .step-num { color: var(--gold-400); -webkit-text-stroke: 1px var(--gold-400); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.05em;
  -webkit-text-stroke: 1.5px var(--ink-900);
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.step-body {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-600);
}

/* ============================================
   RANKING / Live
   ============================================ */

.live-section {
  background: var(--ink-950);
  color: var(--bone);
  border-radius: 32px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.live-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(34,168,104,0.18), transparent 60%);
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  position: relative;
}
@media (max-width: 1000px) { .live-grid { grid-template-columns: 1fr; gap: 32px; } }

.live-section .section-eyebrow { color: var(--gold-300); }
.live-section .section-eyebrow::before { background: var(--gold-300); }
.live-section .section-title { color: var(--bone); }
.live-section .section-sub { color: rgba(255,255,255,0.7); }

.ranking {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.ranking-head {
  display: grid;
  grid-template-columns: 50px 1fr 90px 90px;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.ranking-row {
  display: grid;
  grid-template-columns: 50px 1fr 90px 90px;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  transition: background 0.15s ease;
}
.ranking-row:hover { background: rgba(255,255,255,0.03); }
.ranking-pos {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}
.ranking-row.top1 .ranking-pos { color: var(--gold-300); }
.ranking-row.top2 .ranking-pos { color: #d8d8d8; }
.ranking-row.top3 .ranking-pos { color: #c79068; }

.ranking-name {
  display: flex; align-items: center; gap: 10px;
}
.ranking-avatar {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--bone);
}
.ranking-hits {
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: right;
}
.ranking-prize {
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: right;
  color: var(--gold-300);
}

/* ============================================
   PRÊMIOS PAGOS / wall
   ============================================ */

.payments-wall {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .payments-wall { grid-template-columns: 1fr; } }

.payments-feature {
  padding: 36px 32px;
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--bone);
  border-radius: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.payments-feature::before {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 70%);
}
.payments-total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 92px);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--gold-300);
  position: relative;
}
.payments-total-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.payments-feature-foot {
  position: relative;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.payments-list {
  background: var(--paper);
  border-radius: 24px;
  padding: 8px;
  border: 1px solid rgba(8,17,13,0.06);
  display: flex; flex-direction: column;
}
.payment-row {
  display: grid;
  grid-template-columns: 60px 1fr auto 110px;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 14px;
  transition: background 0.15s ease;
}
.payment-row + .payment-row { border-top: 1px solid var(--ink-100); }
.payment-row:hover { background: var(--ink-50); }
.payment-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.payment-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
}
.payment-bolao {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}
.payment-city {
  font-size: 12px;
  color: var(--ink-600);
}
.payment-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--green-800);
  text-align: right;
  letter-spacing: -0.01em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  padding: 28px;
  background: var(--paper);
  border-radius: 22px;
  border: 2px solid var(--ink-900);
  box-shadow: 5px 5px 0 0 var(--ink-900);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 0 var(--ink-900); }
.testimonial:nth-child(1) { transform: rotate(-1deg); background: var(--cream); }
.testimonial:nth-child(1):hover { transform: translate(-2px, -2px) rotate(0deg); }
.testimonial:nth-child(3) { transform: rotate(1deg); background: var(--green-50); }
.testimonial:nth-child(3):hover { transform: translate(-2px, -2px) rotate(0deg); }
.testimonial::before {
  content: "“";
  font-family: var(--font-display);
  position: absolute;
  top: -8px; left: 18px;
  font-size: 80px;
  color: var(--gold-400);
  line-height: 1;
  font-weight: 700;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  font-weight: 600;
  margin-top: 16px;
}
.testimonial-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: grid; place-items: center;
  color: var(--bone);
  font-weight: 600;
  font-size: 13px;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}

/* ============================================
   FAQ
   ============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-item {
  border-top: 1px solid var(--ink-200);
  padding: 24px 0;
  cursor: pointer;
  transition: padding 0.2s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--ink-200); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--ink-300);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-700);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green-900);
  color: var(--gold-300);
  border-color: var(--green-900);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-600);
}
.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 14px;
}

/* ============================================
   HISTORY / Quem somos
   ============================================ */

.history {
  background: var(--paper);
  border-radius: 32px;
  padding: 64px 48px;
  border: 1px solid rgba(8,17,13,0.06);
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .history-grid { grid-template-columns: 1fr; gap: 32px; } }

.history-image {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background:
    repeating-linear-gradient(135deg, rgba(10,61,46,0.04) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--green-50), var(--gold-100));
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10,61,46,0.08);
}
.history-image-stamp {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
}
.history-image-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 160px;
  letter-spacing: -0.05em;
  color: var(--green-700);
  opacity: 0.9;
}
.history-image-caption {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--paper);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}

.history-text-block { display: flex; flex-direction: column; gap: 18px; }
.history-text-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}
.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.history-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--green-700);
  line-height: 1;
}
.history-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-top: 6px;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--green-700);
  border-radius: 36px;
  padding: 80px 64px;
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border: 3px solid var(--ink-950);
  box-shadow: 12px 12px 0 0 var(--gold-400), 12px 12px 0 3px var(--ink-950);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(245,197,24,0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(34,168,104,0.15), transparent 60%);
}
.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .cta-banner-inner { grid-template-columns: 1fr; } .cta-banner { padding: 56px 32px; } }

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.cta-banner h2 em {
  font-style: normal;
  display: inline-block;
  background: var(--gold-400);
  color: var(--ink-950);
  padding: 0 12px;
  border-radius: 10px;
  transform: rotate(-2deg);
  font-weight: 800;
}
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 28px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--ink-950);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-block { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--bone);
  letter-spacing: -0.015em;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-300);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
}
.footer-link:hover { color: var(--gold-300); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */

.fab-whatsapp {
  position: fixed;
  bottom: 72px; right: 24px;
  z-index: 100;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55);
  transition: transform 0.2s ease;
  cursor: pointer;
}
.fab-whatsapp:hover { transform: scale(1.05); }
.fab-whatsapp::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 999px;
  background: rgba(37,211,102,0.3);
  z-index: -1;
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   AUTH SCREENS
   ============================================ */

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .auth-page { grid-template-columns: 1fr; } }

.auth-side {
  background: var(--green-950);
  color: var(--bone);
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(245,197,24,0.15), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(34,168,104,0.18), transparent 60%);
}
.auth-side-content { position: relative; }
@media (max-width: 900px) { .auth-side { display: none; } }

.auth-form-wrap {
  padding: 48px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bone);
}
.auth-form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-form h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 12px;
}
.auth-form p.lede {
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 18px;
}
.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-700);
  font-weight: 500;
}
.field-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--ink-200);
  background: var(--paper);
  font-size: 15px;
  color: var(--ink-900);
  transition: border 0.15s ease, box-shadow 0.15s ease;
}
.field-input:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(15,82,57,0.1);
}

.auth-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--ink-200);
}

.auth-foot {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-600);
}
.auth-foot a {
  color: var(--green-800);
  font-weight: 600;
  cursor: pointer;
}
.auth-foot a:hover { text-decoration: underline; }

/* ============================================
   DASHBOARD
   ============================================ */

.dashboard { background: var(--ink-50); min-height: calc(100vh - 72px); }

.dashboard-hero {
  background: linear-gradient(160deg, var(--green-950), var(--green-800));
  color: var(--bone);
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.dashboard-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 90% 0%, rgba(245,197,24,0.15), transparent 60%);
}
.dashboard-hero-inner {
  position: relative;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
}
.dashboard-greet h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  margin: 8px 0 0;
}
.dashboard-greet h1 em {
  font-style: normal;
  display: inline-block;
  background: var(--gold-400);
  color: var(--ink-950);
  padding: 0 10px;
  border-radius: 10px;
  transform: rotate(-2deg);
  font-weight: 800;
}
.dashboard-greet-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) { .dashboard-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(8,17,13,0.05);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 8px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--ink-900);
  letter-spacing: -0.035em;
  line-height: 1;
}
.stat-val.green { color: var(--green-700); }
.stat-val.gold { color: var(--gold-600); }
.stat-trend {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-700);
  letter-spacing: 0.04em;
}

.dashboard-section {
  padding: 48px 0;
}
.dashboard-section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
}
.dashboard-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.my-bolao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .my-bolao-grid { grid-template-columns: 1fr; } }
.my-bolao {
  padding: 24px;
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(8,17,13,0.06);
  display: flex; flex-direction: column; gap: 16px;
}
.my-bolao-top { display: flex; justify-content: space-between; align-items: flex-start; }
.my-bolao-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
}
.my-bolao-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.my-bolao-status.pending { background: var(--gold-100); color: var(--gold-700); }
.my-bolao-status.live { background: var(--green-100); color: var(--green-900); }
.my-bolao-status.win { background: linear-gradient(135deg, var(--gold-300), var(--gold-400)); color: var(--ink-950); }

.my-bolao-numbers {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tn-mini {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--ink-100);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-700);
}
.tn-mini.hit { background: var(--green-700); color: var(--gold-300); }

.my-bolao-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  font-size: 13px;
  color: var(--ink-600);
}

/* ============================================
   BET FLOW
   ============================================ */

.bet-page { background: var(--ink-50); min-height: 100vh; padding: 56px 0; }

.bet-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .bet-grid { grid-template-columns: 1fr; } }

.bet-card {
  background: var(--paper);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(8,17,13,0.06);
  box-shadow: var(--shadow-sm);
}

.bet-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-600);
  margin-bottom: 24px;
  cursor: pointer;
}
.bet-back:hover { color: var(--green-800); }

.bet-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.bet-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink-200);
}
.bet-meta-item-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
}
.bet-meta-item-val {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-900);
  margin-top: 2px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 600px) { .numbers-grid { grid-template-columns: repeat(8, 1fr); } }

.num-cell {
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-700);
  cursor: pointer;
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.12s ease, color 0.12s ease;
  user-select: none;
}
.num-cell:hover { background: var(--gold-100); transform: scale(1.1) rotate(-3deg); }
.num-cell.picked {
  background: var(--green-700);
  color: var(--gold-300);
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 4px 0 0 var(--ink-900);
}

.bet-instructions {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.bet-instructions-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-700);
}
.bet-counter {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--green-800);
}

.bet-summary {
  background: var(--paper);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(8,17,13,0.06);
  position: sticky;
  top: 96px;
  display: flex; flex-direction: column; gap: 18px;
}
.bet-summary-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
}
.bet-summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px;
}
.bet-summary-row span:first-child { color: var(--ink-600); }
.bet-summary-row span:last-child { font-weight: 600; }
.bet-summary-divider { border-top: 1px dashed var(--ink-200); }
.bet-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display);
}
.bet-summary-total-label { font-size: 14px; color: var(--ink-700); }
.bet-summary-total-val {
  font-weight: 800;
  font-size: 36px;
  color: var(--green-700);
  letter-spacing: -0.035em;
}
.bet-summary-payment {
  display: flex; gap: 8px;
  padding: 10px;
  background: var(--ink-50);
  border-radius: 12px;
}
.payment-method {
  flex: 1;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}
.payment-method.active {
  border-color: var(--green-700);
  background: var(--green-50);
  color: var(--green-900);
}

/* ============================================
   SUCCESS / CONFIRMATION
   ============================================ */

.success-page {
  min-height: 100vh;
  background: var(--green-950);
  color: var(--bone);
  display: grid; place-items: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.success-page::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(245,197,24,0.18), transparent 70%);
}
.success-card {
  position: relative;
  max-width: 540px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.success-check {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: var(--gold-400);
  display: grid; place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 24px 48px -12px rgba(245,197,24,0.5);
}
.success-card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
.success-card h1 em {
  font-style: normal;
  display: inline-block;
  background: var(--gold-400);
  color: var(--ink-950);
  padding: 0 14px;
  border-radius: 14px;
  transform: rotate(-2deg);
  font-weight: 800;
}
.success-card p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  margin: 0;
}
.success-protocol {
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.success-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }

/* utilities */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================
   COUNTDOWN — HH:MM:SS ticando
   ============================================ */

.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cd-num {
  background: var(--ink-950);
  color: var(--gold-300);
  border: 2px solid var(--gold-400);
  border-radius: 12px;
  padding: 12px 14px;
  font-variant-numeric: tabular-nums;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 6px 0 0 var(--gold-400);
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.cd-sep {
  color: var(--gold-300);
  align-self: center;
  margin-top: 2px;
  font-weight: 800;
  animation: cdBlink 1s infinite;
}
@keyframes cdBlink { 0%, 60% { opacity: 1; } 80%, 100% { opacity: 0.25; } }

.cd-num-pulse { animation: cdPulse 1s infinite; }
@keyframes cdPulse {
  0% { transform: scale(1); }
  10% { transform: scale(1.06); }
  20% { transform: scale(1); }
}

/* large variant — used in CTA banner */
.countdown-lg .cd-num { font-size: clamp(40px, 8vw, 64px); padding: clamp(12px, 2.5vw, 20px) clamp(12px, 2.5vw, 22px); min-width: clamp(64px, 12vw, 110px); border-width: 3px; }
.countdown-lg .cd-sep { font-size: clamp(36px, 7vw, 56px); }

/* small variant — used inside bolao card */
.countdown-sm .cd-num {
  font-size: 22px;
  padding: 8px 10px;
  min-width: 44px;
  border-width: 1.5px;
  background: rgba(0,0,0,0.45);
  box-shadow: 0 3px 0 0 var(--gold-400);
}
.countdown-sm .cd-label { font-size: 9px; letter-spacing: 0.12em; }
.countdown-sm .cd-sep { font-size: 22px; }

/* card-specific countdown placement */
.bolao-card-countdown {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.bolao-card:not(.featured) .bolao-card-countdown {
  border-top-color: rgba(8,17,13,0.1);
}
.bolao-card:not(.featured) .countdown-sm .cd-num {
  background: var(--ink-950);
  color: var(--gold-300);
  border-color: var(--ink-950);
  box-shadow: 0 3px 0 0 var(--ink-950);
}
.bolao-card:not(.featured) .countdown-sm .cd-label {
  color: var(--ink-500);
}
.bolao-card:not(.featured) .countdown-sm .cd-sep {
  color: var(--ink-700);
}

/* ============================================
   BRUTALIST PRIZE — ocupa metade do card
   ============================================ */

.bolao-prize-brutal {
  position: relative;
  padding: 24px 0 8px;
  margin: 4px -4px 0;
  text-align: left;
}
.bolao-prize-value-brutal {
  font-size: clamp(26px, 3.2vw, 40px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ============================================
   TRUST STRIP — Pix / SSL / KYC / +18
   ============================================ */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s ease, background 0.18s ease, border 0.18s ease;
}
.trust-item:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,214,10,0.4);
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.trust-text { display: flex; flex-direction: column; line-height: 1; }
.trust-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.trust-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ============================================
   WINNERS STRIP — tira de ganhadores animada
   ============================================ */

.winners-strip-section {
  padding: 56px 0 48px;
  background: var(--ink-50);
  border-top: 1px solid rgba(8,17,13,0.05);
  border-bottom: 1px solid rgba(8,17,13,0.05);
  overflow: hidden;
}
.winners-strip-head {
  margin-bottom: 28px;
}
.winners-strip-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 12px 0 0;
  color: var(--ink-900);
}
.winners-strip-head h3 em {
  font-style: normal;
  display: inline-block;
  background: var(--gold-400);
  color: var(--ink-950);
  padding: 0 10px;
  border-radius: 8px;
  transform: rotate(-1.5deg);
}

.winners-strip {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.winners-track {
  display: flex;
  gap: 16px;
  animation: winnersScroll 50s linear infinite;
  width: max-content;
}
.winners-strip:hover .winners-track { animation-play-state: paused; }
@keyframes winnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.winner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--paper);
  border: 2px solid var(--ink-900);
  border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--ink-900);
  min-width: 320px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.winner-card:hover { transform: translate(-2px, -2px); }
.winner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink-950);
  border: 2px solid var(--ink-900);
  flex-shrink: 0;
  overflow: hidden;
}
.winner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.winner-info {
  flex: 1;
  min-width: 0;
}
.winner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.winner-city {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-top: 3px;
}
.winner-prize { text-align: right; }
.winner-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--green-700);
  letter-spacing: -0.025em;
  line-height: 1;
}
.winner-bolao {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-top: 4px;
}

/* ============================================
   MOBILE CLEANUP — overflow fixes
   ============================================ */

@media (max-width: 640px) {
  .container { padding: 0 16px; max-width: 100vw; }

  /* nav — encolher tudo */
  .nav-inner { height: 64px; gap: 8px; }
  .nav-brand-tag { display: none; }
  .nav-brand-name { font-size: 15px; }
  .nav-logo { width: 40px !important; height: 40px !important; }
  .nav-cta .btn { padding: 8px 12px; font-size: 12px; }
  .nav-cta .btn:first-child { display: none; } /* esconde "Entrar" — usuário usa o CTA principal */

  /* hero — números menores e em 2 colunas */
  .hero h1 { font-size: clamp(40px, 11vw, 56px); }
  .hero-trust { gap: 18px; }
  .hero-trust-num { font-size: clamp(20px, 5.5vw, 26px); }
  .hero-trust-label { font-size: 10px; }

  /* trust strip — wrap em 2 colunas */
  .trust-strip { gap: 8px; }
  .trust-item { flex: 1 1 calc(50% - 4px); padding: 8px 10px; min-width: 0; }
  .trust-label { font-size: 12px; }
  .trust-sub { font-size: 9px; letter-spacing: 0.1em; }

  /* CTA banner countdown */
  .cta-banner { padding: 40px 20px !important; }
  .cta-banner-inner > * { min-width: 0; max-width: 100%; }
  .cta-banner h2 { font-size: clamp(28px, 8vw, 40px); word-break: break-word; }
  .cta-banner .btn { width: 100%; }
  .countdown { gap: 4px; flex-wrap: nowrap; }
  .countdown-lg .cd-num { padding: 12px 8px; min-width: 56px; }

  /* winner cards menores */
  .winner-card { min-width: 280px; padding: 12px 14px; gap: 10px; }
  .winner-avatar { width: 40px; height: 40px; font-size: 13px; }
  .winner-name { font-size: 13px; }
  .winner-amount { font-size: 16px; }

  /* prêmio brutalista — nunca quebra layout */
  .bolao-prize-value-brutal { font-size: clamp(22px, 7vw, 34px) !important; }

  /* marquee gap menor */
  .marquee-track { gap: 28px; }
  .marquee-item { font-size: 13px; }

  /* section heads */
  .section-head h2 { font-size: clamp(32px, 8vw, 44px); }
  .section-head { max-width: 100%; }

  /* dashboard / bet — evita números enormes */
  .stat-card { padding: 16px; }
  .num-cell { font-size: 14px; }

  /* footer */
  .footer { padding: 56px 0 32px; }
  .footer-bottom { font-size: 10px; gap: 8px; }
  .footer-bottom > * { flex: 1 1 100%; }

  /* qualquer img dentro de section */
  section img, section svg { max-width: 100%; height: auto; }
}

/* extra-narrow phones (<400px) */
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(36px, 11vw, 44px); }
  .countdown-lg .cd-num { padding: 10px 6px; min-width: 48px; font-size: 32px; }
  .countdown-lg .cd-sep { font-size: 28px; }
  .winner-card { min-width: 260px; }
  .trust-item { flex: 1 1 100%; }
  .nav-brand-name { font-size: 14px; }
  .nav-logo { width: 36px !important; height: 36px !important; }
}

/* ============================================
   EXTRA — Estilos para páginas PHP internas
   ============================================ */

/* Wrap do main content (evita colapso de margem) */
.main { min-height: 60vh; }

/* Hero de páginas internas */
.page-hero {
  background: var(--green-950);
  color: var(--bone);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(255,214,10,0.15), transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 100%, rgba(0,255,136,0.12), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0;
  line-height: 1.5;
}

/* Content wrapper for inner pages */
.content-wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 32px;
}
.content-wrap h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 48px 0 12px;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 16px;
}
.content-wrap a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .content-wrap { padding: 48px 20px; }
}

/* FAQ com <details>/<summary> */
.faq-details {
  max-width: 760px;
  margin: 0 auto;
}
.faq-details details {
  border-top: 1px solid var(--ink-200);
  padding: 4px 0;
}
.faq-details details:last-child { border-bottom: 1px solid var(--ink-200); }
.faq-details summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary::after {
  content: "+";
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid var(--ink-300);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-700);
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-details details[open] summary::after {
  transform: rotate(45deg);
  background: var(--green-900);
  color: var(--gold-300);
  border-color: var(--green-900);
}
.faq-details .faq-answer {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-600);
  padding: 0 0 24px;
}
.faq-details .faq-answer a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  padding: 36px 28px;
  background: var(--paper);
  border-radius: 20px;
  border: 2px solid var(--ink-900);
  box-shadow: 5px 5px 0 0 var(--ink-900);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 0 var(--ink-900); }
.contact-card.is-whatsapp { border-color: #25d366; box-shadow: 5px 5px 0 0 #25d366; }
.contact-card.is-whatsapp:hover { box-shadow: 8px 8px 0 0 #25d366; }
.contact-card.is-telegram { border-color: #2AABEE; box-shadow: 5px 5px 0 0 #2AABEE; }
.contact-card.is-telegram:hover { box-shadow: 8px 8px 0 0 #2AABEE; }
.contact-icon {
  font-size: 32px;
  color: var(--green-700);
}
.contact-card.is-whatsapp .contact-icon { color: #25d366; }
.contact-card.is-telegram .contact-icon { color: #2AABEE; }
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
}
.contact-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-600);
  margin: 0;
}
.contact-card a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: underline;
}

/* Results rows (últimos concursos) */
.results-list {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: 20px;
  border: 1px solid rgba(8,17,13,0.06);
  overflow: hidden;
}
.results-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid var(--ink-100);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.results-row:first-child { border-top: none; }
.results-row:hover { background: var(--ink-50); }
.results-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--green-700);
  letter-spacing: -0.03em;
}
.results-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-900);
}
.results-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.results-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.results-status .dot { width: 5px; height: 5px; border-radius: 999px; }
.results-status.is-open { background: var(--green-100); color: var(--green-900); }
.results-status.is-open .dot { background: var(--green-600); }
.results-status.is-closed { background: var(--ink-100); color: var(--ink-600); }
.results-status.is-closed .dot { background: var(--ink-400); }
.results-row-arrow {
  color: var(--ink-400);
  transition: color 0.15s ease, transform 0.15s ease;
}
.results-row:hover .results-row-arrow { color: var(--green-700); transform: translateX(3px); }
@media (max-width: 640px) {
  .results-row { grid-template-columns: 48px 1fr auto; }
  .results-row-arrow { display: none; }
}

/* Stats section */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 48px 0;
}
@media (max-width: 700px) { .stats-bar { grid-template-columns: 1fr; gap: 16px; } }
.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: var(--paper);
  border-radius: 20px;
  border: 2px solid var(--ink-900);
  box-shadow: 4px 4px 0 0 var(--ink-900);
}
.stats-bar-icon {
  font-size: 28px;
  color: var(--green-700);
  flex-shrink: 0;
}
.stats-bar-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--green-700);
  line-height: 1;
}
.stats-bar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  margin-top: 6px;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  padding: 28px 24px;
  background: var(--paper);
  border-radius: 18px;
  border: 2px solid var(--ink-900);
  box-shadow: 4px 4px 0 0 var(--ink-900);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trust-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink-900); }
.trust-card-icon {
  font-size: 26px;
  color: var(--green-700);
}
.trust-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
}
.trust-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
}

/* Prêmios grid */
.premios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .premios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .premios-grid { grid-template-columns: 1fr; } }
.premio-card {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--ink-900);
  box-shadow: 4px 4px 0 0 var(--ink-900);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  background: var(--paper);
}
.premio-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--ink-900); }
.premio-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Featured concursos section (bolões abertos) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-card {
  display: flex; flex-direction: column; gap: 18px;
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: var(--bone);
  border: 2px solid var(--gold-400);
  box-shadow: 5px 5px 0 0 var(--gold-400);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(245,197,24,0.15), transparent 70%);
  pointer-events: none;
}
.feat-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 0 var(--gold-400); }

.feat-row { display: flex; justify-content: space-between; align-items: center; }
.feat-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.feat-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,255,136,0.12);
  border: 1px solid rgba(0,255,136,0.25);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-400);
}
.feat-status .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--green-400); animation: pulse 1.5s infinite; }
.feat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: var(--gold-300);
  line-height: 1.1;
}
.feat-meta {
  display: flex; gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.feat-meta b { display: block; font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.feat-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--gold-400);
  color: var(--ink-950);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  align-self: flex-start;
  transition: background 0.15s ease, transform 0.15s ease;
}
.feat-card:hover .feat-cta { background: var(--gold-300); transform: translateX(3px); }

/* Concurso wrapper */
.concursos-wrap {
  padding: 40px 0 80px;
}

/* Bottom nav (mobile) */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--paper);
  border-top: 1px solid var(--ink-200);
  box-shadow: 0 -4px 20px rgba(8,17,13,0.08);
}
@media (max-width: 980px) { .bottom-nav { display: block; } }
.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}
.bottom-nav-inner a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  padding: 4px 12px;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}
.bottom-nav-inner a.active, .bottom-nav-inner a:hover { color: var(--green-700); background: var(--green-50); }
.bottom-nav-inner a i { font-size: 20px; }

/* Push content above bottom nav on mobile */
@media (max-width: 980px) { body { padding-bottom: 72px; } }
