:root {
  --bg: #090707;
  --surface: #110d0d;
  --surface-2: #181111;
  --gold: #d9a742;
  --gold-light: #f0d78d;
  --gold-soft: rgba(217, 167, 66, 0.18);
  --line: rgba(240, 215, 141, 0.16);
  --text: #f6ecd0;
  --muted: #d5c59d;
  --danger: #b34028;
  --shadow: 0 20px 50px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, rgba(91, 35, 7, 0.45), transparent 30%), linear-gradient(180deg, #0b0808 0%, #090707 100%);
  color: var(--text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 100% 3px, 3px 100%;
  opacity: .2;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: radial-gradient(#fff 0.5px, transparent 0.6px);
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  background: rgba(9, 7, 7, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 92px; height: auto; }
.nav { display: flex; gap: 10px; flex-wrap: wrap; }
.nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.95rem;
  letter-spacing: .03em;
  transition: .25s ease;
}
.nav a:hover { background: rgba(217, 167, 66, 0.12); border-color: rgba(240, 215, 141, .35); }
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg {
  background-image: url('assets/hero-topo-campeonato.png');
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.26) 55%, rgba(0,0,0,0.66));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}
.hero-only-button {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 82px;
}
.hero-cta {
  font-size: 1.08rem;
  padding: 18px 34px;
  border-radius: 18px;
}
.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 215, 141, 0.26);
  background: rgba(0,0,0,.35);
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .18em;
}
.section-title h2, .card h3, .big-cta h3, .download-card h3 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: .02em;
}
.hero-actions, .document-actions, .center-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 215, 141, 0.25);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 24px 54px rgba(0,0,0,.5); }
.btn.primary { color: #1b1206; background: linear-gradient(180deg, #f0d78d 0%, #d9a742 100%); }
.btn.secondary { color: var(--gold-light); background: rgba(0,0,0,.45); }
.btn.large { width: 100%; }
.card, .big-cta, .download-card {
  background: linear-gradient(180deg, rgba(24,17,17,.96), rgba(14,10,10,.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2 {
  margin: 14px 0 12px;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--gold-light);
}
.section-title p:not(.eyebrow) { margin: 0 auto; max-width: 820px; color: var(--muted); line-height: 1.7; }
.intro-grid, .inscription-grid { display: grid; gap: 22px; }
.intro-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.inscription-grid { grid-template-columns: 1.1fr .9fr; }
.card, .big-cta, .download-card, .inscription-panel { padding: 26px; }
.card h3, .big-cta h3, .download-card h3 { margin: 0 0 12px; text-transform: uppercase; font-size: 1.55rem; color: var(--gold-light); }
.card p, .big-cta p, .download-card p, li, .form-note { color: var(--muted); line-height: 1.7; }
.inscription-panel {
  background: linear-gradient(180deg, rgba(18,13,13,.95), rgba(10,8,8,.95));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.field-list, .accept-list { padding-left: 18px; margin: 16px 0 0; }
.field-list li, .accept-list li { margin-bottom: 8px; }
.poster-link img { width: 100%; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.center-actions { margin-top: 22px; }
.site-footer { padding: 42px 20px 54px; text-align: center; border-top: 1px solid var(--line); background: rgba(0,0,0,.35); }
.site-footer img { width: 120px; margin: 0 auto 14px; }
.site-footer p { margin: 6px 0; color: var(--muted); }
.site-footer .small { font-size: .92rem; }
@media (max-width: 980px) {
  .intro-grid, .inscription-grid { grid-template-columns: 1fr 1fr; }
  .inscription-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .site-header { position: static; flex-direction: column; }
  .nav { justify-content: center; }
  .brand img { width: 78px; }
  .hero, .hero-only-button { min-height: 76vh; }
  .hero-only-button { padding-bottom: 54px; }
  .intro-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .card, .big-cta, .download-card, .inscription-panel { padding: 20px; }
}
