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

:root {
  /* Backgrounds */
  --bg:       #07070f;
  --bg2:      #0c0c18;
  --bg3:      #111122;
  --bg4:      #181830;

  /* Gold */
  --gold:     #f0b429;
  --gold2:    #c8861a;
  --gold3:    #ffd97d;
  --gold-dim: rgba(240,180,41,0.09);
  --gold-glow:rgba(240,180,41,0.22);

  /* Text */
  --white:    #eeeef5;
  --muted:    #6b6b8a;
  --muted2:   #9898b8;

  /* Accents */
  --purple:   rgba(120,80,220,0.18);
  --border:   rgba(240,180,41,0.16);
  --border2:  rgba(255,255,255,0.07);
  --glass:    rgba(255,255,255,0.03);

  /* Sizing */
  --radius:   14px;
  --radius-lg:22px;

  /* Shadows */
  --glow:     0 0 40px rgba(240,180,41,0.18);
  --shadow:   0 8px 32px rgba(0,0,0,0.5);

  /* Fonts */
  --font:     'Poppins', sans-serif;
  --head:     'Montserrat', sans-serif;
  --ease:     0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold2); border-radius: 2px; }

/* ── Helpers ──────────────────────────────────────────────────────────────── */
.gold { color: var(--gold); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--head); font-weight: 800; letter-spacing:.01em; line-height:1.15; }

/* Gradient text for headings */
.section-header h2 {
  background: linear-gradient(135deg, var(--white) 40%, var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.9rem,5vw,2.8rem);
  margin-bottom: 10px;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section { padding: 96px 20px; }
.section-dark { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 48px; }

.section-tag {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header p { font-size: .95rem; color: var(--muted2); max-width: 520px; margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2));
  background-size: 200% 200%;
  color: #07070f;
  box-shadow: 0 4px 20px rgba(240,180,41,0.25);
}
.btn-primary:active { transform: scale(.97); }
@media (hover:hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(240,180,41,0.40);
    background-position: right center;
  }
}

@keyframes btn-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(240,180,41,.25); }
  50%      { box-shadow: 0 4px 32px rgba(240,180,41,.55), 0 0 0 6px rgba(240,180,41,.08); }
}
.btn-pulse { animation: btn-pulse 2.8s ease-in-out infinite; }

.btn-ghost {
  background: var(--glass);
  color: var(--white);
  border: 1px solid var(--border2);
  backdrop-filter: blur(8px);
}
.btn-ghost:active { transform: scale(.97); }
@media (hover:hover) {
  .btn-ghost:hover { border-color: var(--border); color: var(--gold); background: var(--gold-dim); }
}

.btn-nav  { font-size: .82rem !important; padding: 9px 18px !important; }
.btn-large { padding: 17px 36px; font-size: 1rem; border-radius: 12px; }

/* ── Reveal ───────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 20px;
  transition: padding var(--ease), background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(7,7,15,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  padding: 12px 20px;
  box-shadow: 0 1px 30px rgba(0,0,0,.6);
}
.navbar.menu-open {
  background: #07070f;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  font-size: 1.5rem;
  letter-spacing: .06em;
  position: relative;
  z-index: 1002;
}
.logo-icon { font-size: 1.2rem; }
.logo-text .gold {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links li a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted2);
  transition: color var(--ease);
}
.nav-links li a:hover { color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--border2);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--ease), border-color var(--ease);
}
.nav-toggle:active,
.nav-toggle.open { background: var(--gold-dim); border-color: var(--border); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, width .3s ease;
  transform-origin: center;
  pointer-events: none;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ════════════════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 110px 20px 90px;
  text-align: center;
  background-image: url('../fundo.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,7,15,.55) 0%,
    rgba(7,7,15,.35) 40%,
    rgba(7,7,15,.7) 100%
  );
  z-index: 0;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 700px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(240,180,41,.09) 0%, rgba(120,60,200,.05) 50%, transparent 75%);
  filter: blur(60px);
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(100,60,220,.10) 0%, transparent 70%);
  filter: blur(50px);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,180,41,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,41,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 0%, transparent 80%);
}

.hero-content { position: relative; z-index: 1; max-width: 800px; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 8px var(--gold); }
  50% { opacity:.5; transform:scale(.7); box-shadow: none; }
}

.hero-title {
  font-size: clamp(4rem, 14vw, 7.5rem);
  line-height: .88;
  margin-bottom: 22px;
  background: linear-gradient(160deg, #fff 30%, var(--gold3) 70%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(240,180,41,.15));
}

.hero-sub {
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  color: var(--muted2);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

/* Stats bar */
.hero-stats {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(17,17,34,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05);
}

.stat { padding: 18px 30px; position: relative; }
.stat + .stat { border-left: 1px solid var(--border2); }

.stat-num {
  display: block;
  font-family: var(--head);
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  animation: hint-bounce 2.5s infinite;
}
.scroll-hint span {
  display: block;
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(240,180,41,.5), transparent);
  margin: 0 auto;
}
@keyframes hint-bounce {
  0%,100% { transform:translateX(-50%) translateY(0); opacity:.4; }
  50%      { transform:translateX(-50%) translateY(8px); opacity:1; }
}

/* ════════════════════════════════════════════════════════════════════════════
   COMO PARTICIPAR — Steps
════════════════════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 33px;
  left: calc(16.66% + 8px);
  right: calc(16.66% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold-glow), var(--border));
  pointer-events: none;
}

.step { text-align: center; padding: 0 8px; }

.step-num {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg2);
  transition: border-color var(--ease), box-shadow var(--ease);
}
@media (hover:hover) {
  .step:hover .step-num {
    border-color: var(--gold);
    box-shadow: 0 0 0 8px var(--bg2), var(--glow);
  }
}

.step h3 { font-size: 1rem; margin-bottom: 8px; color: var(--white); }
.step p  { font-size: .84rem; color: var(--muted2); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════════════════
   SOBRE — Cards
════════════════════════════════════════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}
@media (hover:hover) {
  .card:hover {
    transform: translateY(-5px);
    border-color: var(--border);
    box-shadow: var(--glow), var(--shadow);
  }
  .card:hover::before { opacity: 1; }
}
.card-icon { margin-bottom: 16px; color: var(--gold); }
.card-icon svg { width: 2rem; height: 2rem; display: block; }
.card h3 { font-size: 1.1rem; margin-bottom: 9px; color: var(--white); }
.card p { font-size: .85rem; color: var(--muted2); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════════════════
   TIMES
════════════════════════════════════════════════════════════════════════════ */
/* Potes */
.pots-draw {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.pot-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border2);
  background: var(--bg3);
}
.pot-card-header {
  padding: 12px 14px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border2);
}
.pot-card-num {
  display: block;
  font-family: var(--head);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.pot-card-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  margin-top: 2px;
  opacity: .7;
}
.pot-card--1 .pot-card-header { background: rgba(59,130,246,.12);  color: #93c5fd; border-bottom-color: rgba(59,130,246,.2); }
.pot-card--2 .pot-card-header { background: rgba(139,92,246,.12);  color: #c4b5fd; border-bottom-color: rgba(139,92,246,.2); }
.pot-card--3 .pot-card-header { background: rgba(16,185,129,.12);  color: #6ee7b7; border-bottom-color: rgba(16,185,129,.2); }
.pot-card--4 .pot-card-header { background: rgba(245,158,11,.12);  color: #fcd34d; border-bottom-color: rgba(245,158,11,.2); }
.pot-card-teams {
  list-style: none;
  padding: 6px 0;
}
.pot-card-teams li {
  font-size: .78rem;
  font-weight: 500;
  color: var(--white);
  padding: 6px 14px;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.pot-card-teams li:last-child { border-bottom: none; }
.pot-card-teams li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pot-card--1 .pot-card-teams li::before { background: #93c5fd; }
.pot-card--2 .pot-card-teams li::before { background: #c4b5fd; }
.pot-card--3 .pot-card-teams li::before { background: #6ee7b7; }
.pot-card--4 .pot-card-teams li::before { background: #fcd34d; }
@media (max-width: 900px) {
  .pots-draw { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pots-draw { grid-template-columns: 1fr; gap: 8px; }
}

.teams-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .84rem;
  color: var(--muted2);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}
.teams-note span { font-size: 1.3rem; flex-shrink: 0; }
.teams-note svg { flex-shrink: 0; }
.teams-note p { margin: 0; }
.teams-note strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════════════════════
   FORMATO
════════════════════════════════════════════════════════════════════════════ */
.phases { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.phase {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: border-color var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.phase::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}
@media (hover:hover) {
  .phase:hover { border-color: var(--border); box-shadow: var(--shadow); }
  .phase:hover::after { opacity: 1; }
}

.phase-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.phase-icon { display: flex; align-items: center; color: var(--gold); }
.phase-icon svg { width: 1.6rem; height: 1.6rem; display: block; }
.phase-label {
  font-size: .64rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2px;
}
.phase-info h3 { font-size: 1.05rem; color: var(--white); }

.phase-desc { font-size: .85rem; color: var(--muted2); margin-bottom: 12px; line-height: 1.55; }
.phase-desc strong { color: var(--white); }

.tag-repescagem {
  font-family: var(--font);
  font-size: .6rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 50px;
  vertical-align: middle; margin-left: 6px;
}

.playoff-pairings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 16px;
  margin: 10px 0 14px;
}
.pairing {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600;
}
.p-seed   { color: var(--gold3); }
.p-vs     { color: var(--muted); font-weight: 400; }
.p-unseed { color: #f59e0b; }

.phase-rules {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.phase-rules li {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--muted2);
  background: var(--bg2); border: 1px solid var(--border2);
  padding: 4px 12px; border-radius: 50px;
}

/* Rule indicators (W/D/L/H/P badges) */
.rule-indicator {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 4px;
  font-size: .6rem; font-weight: 800;
  flex-shrink: 0;
}
.rule-indicator.win     { background: rgba(46,160,67,.2);   color: #4ade80; }
.rule-indicator.draw    { background: var(--gold-dim);       color: var(--gold); }
.rule-indicator.loss    { background: rgba(220,38,38,.15);   color: #f87171; }
.rule-indicator.home    { background: rgba(59,130,246,.15);  color: #60a5fa; }
.rule-indicator.neutral { background: rgba(168,85,247,.15);  color: #c084fc; }

.phase-result { display: flex; flex-direction: column; gap: 6px; }
.result-box {
  font-size: .78rem; font-weight: 700;
  padding: 7px 14px; border-radius: 8px; text-align: center;
}
.result-box.green  { background: rgba(46,160,67,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.18); }
.result-box.yellow { background: var(--gold-dim);     color: var(--gold);  border: 1px solid var(--border); }
.result-box.red    { background: rgba(220,38,38,.10); color: #f87171;  border: 1px solid rgba(248,113,113,.18); }

.phase-arrow { text-align: center; font-size: 1.2rem; color: var(--gold); opacity: .35; padding: 2px 0; }

.phases-swipe-hint {
  display: none;
  text-align: center;
  font-size: .74rem;
  color: var(--muted);
  margin: 8px 0 16px;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

/* Knockout */
.phases-knockout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
}
.knockout-card {
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border2);
  background: var(--bg2);
  min-width: 86px;
  transition: all var(--ease);
}
@media (hover:hover) {
  .knockout-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--glow); }
}
.knockout-card.gold-card {
  background: linear-gradient(160deg, rgba(240,180,41,.14), var(--bg3));
  border-color: var(--border);
  box-shadow: var(--glow);
}
.ko-icon { font-size: 1.5rem; margin-bottom: 4px; }
.ko-num {
  font-family: var(--head);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.ko-trophy {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  color: var(--gold);
}
.ko-trophy svg { filter: drop-shadow(0 0 6px rgba(240,180,41,.4)); }
.ko-name { font-family: var(--head); font-size: .95rem; color: var(--white); }
.ko-teams { font-size: .7rem; color: var(--muted); margin-top: 2px; }
.gold-card .ko-name { color: var(--gold); }
.gold-card .ko-num  { color: var(--gold); }
.ko-arrow { color: var(--muted); display: flex; align-items: center; }

/* ── Mobile bracket (chave eliminatória) ─────────────────────────────────── */
.mobile-bracket {
  display: none;
  margin-top: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-bracket::-webkit-scrollbar { display: none; }
.mb-title {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.mb-inner {
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-width: 320px;
}
.mb-round {
  display: flex;
  flex-direction: column;
  width: 52px;
}
.mb-label {
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 7px;
  text-align: center;
  font-size: .54rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted2);
}
.mb-label em {
  font-style: normal;
  color: var(--gold);
  font-size: .5rem;
  display: block;
}
.mb-label-gold { color: var(--gold); }
.mb-label-rep  { color: #f59e0b; }
.mb-col {
  height: 480px;
  display: flex;
  flex-direction: column;
}
.mb-game {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mb-round-final .mb-col {
  justify-content: center;
}
.mb-round-final .mb-game {
  flex: none;
  height: 120px;
}
.mb-slot {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1px 0;
}
.mb-match {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: 3px 4px;
  font-size: .55rem;
  font-weight: 600;
  color: var(--muted2);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mb-match.mb-rep {
  background: rgba(245,158,11,.07);
  border-color: rgba(245,158,11,.22);
  color: #f59e0b;
}
.mb-match.mb-seed {
  background: rgba(240,180,41,.1);
  border-color: rgba(240,180,41,.35);
  color: var(--gold3);
  font-weight: 700;
}
.mb-match.mb-tbd {
  background: transparent;
  border-color: rgba(255,255,255,.06);
  border-style: dashed;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .05em;
}
.mb-match.mb-incoming {
  background: transparent;
  border: 1px dashed rgba(245,158,11,.25);
  color: rgba(245,158,11,.55);
  font-size: .55rem;
  letter-spacing: .04em;
}
.mb-match.mb-final-slot {
  background: rgba(240,180,41,.08);
  border: 1px solid rgba(240,180,41,.35);
  color: var(--gold3);
  font-weight: 700;
  font-size: .65rem;
  box-shadow: 0 0 8px rgba(240,180,41,.12);
}
.mb-match.mb-final {
  background: linear-gradient(160deg, var(--gold2), var(--gold));
  border-color: var(--gold3);
  color: var(--bg);
  font-weight: 800;
  font-size: .6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 4px;
  box-shadow: 0 0 18px rgba(240,180,41,.3);
}
.mb-final svg { filter: drop-shadow(0 0 4px rgba(7,7,15,.5)); }
.mb-svg {
  flex-shrink: 0;
  width: 20px;
  height: 480px;
  stroke: rgba(240,180,41,0.38);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
}
.mb-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .62rem;
  color: var(--muted);
}

/* Highlight box */
.highlight-box {
  display: flex; gap: 14px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(240,180,41,.08), rgba(120,80,220,.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 16px;
}
.highlight-icon { flex-shrink: 0; color: var(--gold); display: flex; align-items: flex-start; }
.highlight-content h4 { font-size: .95rem; margin-bottom: 5px; color: var(--white); }
.highlight-content p  { font-size: .82rem; color: var(--muted2); line-height: 1.6; }
.highlight-content p strong { color: var(--white); }

/* ── Cronograma ─────────────────────────────────────────────────────────── */
.schedule {
  margin-top: 28px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.schedule-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border2);
  background: var(--bg2);
}
.schedule-header svg { color: var(--gold); flex-shrink: 0; }
.schedule-header span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.schedule-header em {
  margin-left: auto;
  font-style: normal;
  font-size: .72rem;
  color: var(--muted);
}
.schedule-group-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 18px 5px;
  border-bottom: 1px solid var(--border2);
}
.schedule-group-label.lbl-league  { color: #60a5fa; background: rgba(59,130,246,.06); }
.schedule-group-label.lbl-playoff { color: #fbbf24; background: rgba(245,158,11,.05); }
.schedule-group-label.lbl-final   { color: var(--gold); background: rgba(240,180,41,.05); }
.sch-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 0;
  padding-right: 16px;
  border-bottom: 1px solid var(--border2);
  min-height: 42px;
}
.sch-row:last-child { border-bottom: none; }
.sch-row.sch-final  { background: rgba(240,180,41,.04); }
.sch-day {
  font-size: .73rem;
  font-weight: 700;
  color: var(--muted2);
  padding: 10px 10px;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid var(--border2);
}
.sch-row.sch-league  .sch-day { color: #60a5fa; }
.sch-row.sch-playoff .sch-day { color: #fbbf24; }
.sch-row.sch-final   .sch-day { color: var(--gold3); }
.sch-desc {
  font-size: .82rem;
  color: var(--white);
  font-weight: 500;
  padding: 10px 12px;
}
.sch-badge {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sch-league  .sch-badge { background: rgba(59,130,246,.15);  color: #93c5fd; }
.sch-playoff .sch-badge { background: rgba(245,158,11,.12);  color: #fcd34d; }
.sch-final   .sch-badge { background: rgba(240,180,41,.15);  color: var(--gold3); }
@media (max-width: 480px) {
  .sch-badge { display: none; }
  .sch-row   { grid-template-columns: 76px 1fr; padding-right: 12px; }
  .sch-day   { padding: 10px 6px 10px 4px; }
}
.sch-total {
  padding: 12px 18px;
  text-align: center;
  font-size: .78rem;
  color: var(--muted2);
  border-top: 1px solid var(--border2);
  background: var(--bg2);
}
.sch-total strong { color: var(--gold3); }

/* Download PDF banner */
.rules-download {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 24px;
}
.rules-download-icon {
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
}
.rules-download-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rules-download-text strong { font-size: .92rem; color: var(--white); }
.rules-download-text span   { font-size: .78rem; color: var(--muted2); }

/* ════════════════════════════════════════════════════════════════════════════
   PREMIAÇÃO
════════════════════════════════════════════════════════════════════════════ */
.prizes {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.prize {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  min-width: 165px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
@media (hover:hover) { .prize:hover { transform: translateY(-5px); } }

.prize-silver {
  background: linear-gradient(160deg, rgba(192,192,192,.08), var(--bg3));
  border: 1px solid rgba(192,192,192,.2);
}
.prize-gold {
  background: linear-gradient(160deg, rgba(240,180,41,.16), rgba(200,134,26,.08), var(--bg3));
  border: 1px solid var(--border);
  box-shadow: var(--glow), var(--shadow);
  padding: 36px 28px;
}
.prize-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold3), var(--gold), transparent);
}
.prize-bronze {
  background: linear-gradient(160deg, rgba(205,127,50,.08), var(--bg3));
  border: 1px solid rgba(205,127,50,.2);
}

.prize-crown { font-size: 1.6rem; margin-bottom: 4px; animation: crown-float 3s ease-in-out infinite; }

.prize-crown-icon {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  color: var(--gold);
  animation: crown-float 3s ease-in-out infinite;
}
.prize-crown-icon svg { filter: drop-shadow(0 0 8px rgba(240,180,41,.35)); }

@keyframes crown-float {
  0%,100% { transform:translateY(0); filter: drop-shadow(0 0 0 transparent); }
  50%      { transform:translateY(-5px); filter: drop-shadow(0 4px 8px rgba(240,180,41,.4)); }
}

/* Prize medals (Roman numerals) */
.prize-medal {
  font-family: var(--head);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.prize-medal.gold   { color: var(--gold3); filter: drop-shadow(0 0 8px rgba(240,180,41,.4)); }
.prize-medal.silver { color: #c0c0c0; }
.prize-medal.bronze { color: #cd7f32; }

.prize-pos   { font-size: 1.9rem; margin-bottom: 6px; }
.prize-place {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}

.prize-value { font-family: var(--head); font-size: 2rem; line-height: 1; }
.prize-gold   .prize-value {
  font-size: 2.7rem;
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prize-silver .prize-value { color: #c0c0c0; }
.prize-bronze .prize-value { color: #cd7f32; }

.prize-highlight {
  font-family: var(--head);
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .03em;
}

.prize-note {
  max-width: 620px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: .83rem; color: var(--muted2);
  line-height: 1.55;
}
.prize-note svg { flex-shrink: 0; }
.prize-note p { margin: 0; }
.prize-note strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════════════════════
   REGRAS
════════════════════════════════════════════════════════════════════════════ */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rule-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color var(--ease), transform var(--ease);
}
@media (hover:hover) {
  .rule-item:hover { border-color: var(--border); transform: translateX(4px); }
}
.rule-num {
  font-family: var(--head);
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--gold3), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .7;
  line-height: 1;
  min-width: 32px;
}
.rule-item h4 { font-size: .92rem; margin-bottom: 5px; color: var(--white); }
.rule-item p  { font-size: .81rem; color: var(--muted2); line-height: 1.55; }
.rule-item p strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════════════════════
   CRIADOR
════════════════════════════════════════════════════════════════════════════ */
.creator-card {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 580px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--ease), box-shadow var(--ease);
}
@media (hover:hover) {
  .creator-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
}

.creator-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head);
  font-size: 1.7rem;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(240,180,41,.3);
  letter-spacing: .02em;
}

.creator-info h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.creator-discord {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: #5865f2;
  background: rgba(88,101,242,.1);
  border: 1px solid rgba(88,101,242,.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.creator-info > p {
  font-size: .83rem;
  color: var(--muted2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--ease), color var(--ease);
}
@media (hover:hover) {
  .creator-link:hover { gap: 10px; color: var(--gold3); }
}

/* ════════════════════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item.open { border-color: var(--border); box-shadow: 0 4px 20px rgba(0,0,0,.3); }

.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  width: 100%; padding: 18px 20px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: .88rem; font-weight: 600;
  color: var(--white); text-align: left;
  transition: color var(--ease);
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  width: 26px; height: 26px; min-width: 26px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: 50%;
  transition: transform .3s ease, background var(--ease), color var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--bg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-answer.open { max-height: 320px; }
.faq-answer p { padding: 0 20px 18px; font-size: .85rem; color: var(--muted2); line-height: 1.65; }
.faq-answer p strong { color: var(--white); }
.faq-answer p code {
  background: var(--bg2); border: 1px solid var(--border2);
  padding: 1px 6px; border-radius: 4px;
  font-size: .82em; color: var(--gold);
}

/* ════════════════════════════════════════════════════════════════════════════
   CTA
════════════════════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  text-align: center;
  padding-top: 108px; padding-bottom: 108px;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.cta-bg .orb-1 {
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(240,180,41,.08) 0%, rgba(120,60,200,.05) 50%, transparent 70%);
  filter: blur(40px);
}

.cta-content { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(2.3rem,7vw,4rem);
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content > p { font-size: .95rem; color: var(--muted2); margin-bottom: 32px; }

.cta-info {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(17,17,34,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.05);
}
.cta-item { padding: 16px 26px; }
.cta-label {
  display: block; font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.cta-value { display: block; font-family: var(--head); font-size: 1.35rem; color: var(--white); line-height: 1; }
.cta-value.gold {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-divider { width: 1px; background: var(--border2); align-self: stretch; }
.cta-note { display: block; margin-top: 16px; font-size: .78rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 40px 20px 52px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--head); font-size: 1.5rem;
}
.footer-logo .logo-text .gold {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text { font-size: .78rem; color: var(--muted); }

.footer-instagram {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .88rem; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d 50%, #fcb045);
  padding: 9px 20px; border-radius: 50px;
  transition: opacity var(--ease), transform var(--ease);
  box-shadow: 0 4px 16px rgba(253,29,29,.25);
}
@media (hover:hover) {
  .footer-instagram:hover { opacity: .88; transform: translateY(-2px); }
}

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .78rem; color: var(--muted); transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: .7rem;
  color: var(--muted);
  opacity: .6;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE CTA FLOAT
════════════════════════════════════════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(7,7,15,1) 60%, rgba(7,7,15,0));
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.mobile-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤ 900px
════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid  { grid-template-columns: repeat(2, 1fr); }
  .prizes { align-items: stretch; }
  .prize { flex: 1; min-width: 145px; }
  .prize-gold { flex: 1.15; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤ 640px
════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {

  .navbar { padding: 14px 16px; }
  .navbar.scrolled { padding: 10px 16px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #07070f;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility 0s linear .28s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .28s ease, visibility 0s linear 0s;
  }
  .nav-links li { width: 100%; max-width: 260px; text-align: center; }
  .nav-links li a {
    display: block; font-size: 1.15rem; padding: 14px 20px;
    border-radius: 10px; color: var(--muted2);
    transition: background var(--ease), color var(--ease);
  }
  .nav-links li a:hover { background: var(--glass); color: var(--white); }
  .nav-links li:last-child { margin-top: 12px; }
  .nav-links li:last-child .btn-nav {
    display: block; width: 100%;
    padding: 16px 32px !important; font-size: 1rem !important;
    text-align: center; border-radius: 12px !important;
  }

  /* Steps — vertical no mobile */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 340px;
  }
  .steps-grid::before { display: none; }
  .step {
    display: grid;
    grid-template-columns: 66px 1fr;
    grid-template-rows: auto auto;
    text-align: left;
    column-gap: 16px;
    padding-bottom: 28px;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 66px;
    bottom: 0;
    width: 2px;
    background: var(--border);
  }
  .step-num { grid-row: 1 / 3; margin: 0; box-shadow: 0 0 0 6px var(--bg2); }
  .step h3  { align-self: end; padding-top: 10px; margin-bottom: 6px; }
  .step p   { font-size: .8rem; }

  /* Formato — swipe horizontal */
  .phases {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
  }
  .phases::-webkit-scrollbar { display: none; }
  .phase { flex: 0 0 82vw; scroll-snap-align: start; }
  .phase-arrow { display: none; }
  .phases-knockout { display: none; }
  .phases-swipe-hint { display: flex; }
  .mobile-bracket { display: block; }

  /* Criador */
  .creator-card { flex-direction: column; text-align: center; padding: 24px 20px; gap: 18px; }
  .creator-discord { margin: 0 auto 12px; }
  .creator-link { justify-content: center; }

  /* Regras download */
  .rules-download { flex-wrap: wrap; gap: 12px; }
  .rules-download .btn { width: 100%; justify-content: center; }

  .section { padding: 64px 16px 72px; }

  .hero { padding: 100px 16px 100px; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero-sub { font-size: .88rem; }

  .hero-stats { width: 100%; max-width: 340px; border-radius: 12px; }
  .stat { flex: 1; padding: 14px 10px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: .58rem; }

  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn { width: 100%; }

  .pot-card-teams li { font-size: .73rem; padding: 5px 12px; }

  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 22px 18px; }

  .phase { padding: 18px 16px; }
  .phase-rules { flex-direction: column; gap: 5px; }

  .phases-knockout {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 18px 16px;
    scroll-snap-type: x mandatory;
  }
  .phases-knockout::-webkit-scrollbar { display: none; }
  .knockout-card { flex-shrink: 0; scroll-snap-align: center; min-width: 86px; }

  .prizes { flex-direction: column; align-items: center; gap: 10px; }
  .prize { width: 100%; max-width: 300px; }
  .prize-gold { order: -1; }
  .prize-value { font-size: 1.8rem; }
  .prize-gold .prize-value { font-size: 2.3rem; }

  .rules-grid { grid-template-columns: 1fr; gap: 10px; }
  .rule-item  { padding: 16px 14px; }

  .faq-question { font-size: .85rem; padding: 16px; }
  .faq-answer p { padding: 0 16px 16px; }

  .cta-section { padding: 72px 16px 80px; }
  .cta-info { flex-direction: column; width: 100%; max-width: 300px; }
  .cta-divider { height: 1px; width: auto; }
  .cta-item { padding: 12px 20px; }
  .btn-large { width: 100%; max-width: 340px; }

  .mobile-cta { display: block; } /* visibilidade controlada via .visible em JS */
  .footer { padding-bottom: 88px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 3.2rem; }
  .stat-num { font-size: 1.3rem; }
}
