/* Varzeiro — landing. Tema único: noite de jogo, verde de campo.
   Fonte display: Cabinet Grotesk (Fontshare). Acento único: verde. */

:root {
  --bg: #0b1210;
  --bg-raise: #101b16;
  --bg-card: #12201a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef4ef;
  --text-dim: #9db3a6;
  --green: #34c171;
  --green-deep: #1b7a43;
  --green-ink: #0a2617;
  --radius: 16px;
  --font-display: "Cabinet Grotesk", "Avenir Next", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

a { color: inherit; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 68px;
  display: flex; align-items: center;
  background: rgba(11, 18, 16, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 32px; width: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text-dim); font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green); color: var(--green-ink);
  font-weight: 700; font-size: 0.95rem;
  padding: 10px 20px; border-radius: 999px; text-decoration: none;
  transition: transform 0.15s;
}
.nav-cta:active { transform: scale(0.98); }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav .wrap { justify-content: space-between; gap: 12px; }
  .nav-cta { padding: 8px 16px; font-size: 0.88rem; white-space: nowrap; }
  .brand { font-size: 1.1rem; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 78% 8%, rgba(52, 193, 113, 0.16), transparent 62%),
    radial-gradient(700px 420px at 12% 92%, rgba(27, 122, 67, 0.22), transparent 60%),
    var(--bg);
}
/* linhas de gramado cortado */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(105deg, transparent 0 140px, rgba(255,255,255,0.016) 140px 280px);
}
.hero .wrap {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px;
  align-items: center; width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.9rem);
  line-height: 1.06; font-weight: 800;
}
@media (max-width: 560px) { .hero h1 br { display: none; } }
.hero h1 em { font-style: italic; color: var(--green); line-height: 1.1; }
.hero p.sub {
  margin: 20px 0 32px; color: var(--text-dim);
  font-size: 1.15rem; max-width: 34ch;
}
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-raise);
  padding: 12px 22px; text-decoration: none;
  transition: transform 0.15s, border-color 0.2s;
}
.store-btn:hover { border-color: rgba(52, 193, 113, 0.5); }
.store-btn:active { transform: translateY(1px); }
.store-btn i { font-size: 1.7rem; color: var(--text); }
.store-btn small { display: block; font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.store-btn strong { font-size: 1.02rem; font-family: var(--font-display); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .ball {
  width: min(360px, 70vw);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
/* bolinhas de score orbitando: linguagem visual real do app */
.score-ball {
  position: absolute; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-family: var(--font-display); font-weight: 800;
  color: #fff; border: 2.5px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.sb-1 { width: 64px; height: 64px; background: radial-gradient(circle at 30% 30%, #6fdca0, #2ba05f); top: 4%; right: 8%; font-size: 1.15rem; }
.sb-2 { width: 52px; height: 52px; background: radial-gradient(circle at 30% 30%, #ffe17a, #e0b400); bottom: 16%; left: 2%; color: #3d3000; font-size: 0.95rem; }
.sb-3 { width: 44px; height: 44px; background: radial-gradient(circle at 30% 30%, #ffab66, #e46a00); top: 38%; left: -6%; font-size: 0.85rem; }
@media (prefers-reduced-motion: reduce) {
  .hero-visual .ball { animation: none; }
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 24px; padding-top: 32px; }
  .hero-visual { order: -1; padding: 12px 0; }
  .hero-visual .ball { width: min(220px, 52vw); }
  .sb-1 { width: 48px; height: 48px; font-size: 0.9rem; top: 0; right: 14%; }
  .sb-2 { width: 42px; height: 42px; font-size: 0.8rem; bottom: 6%; left: 12%; }
  .sb-3 { width: 36px; height: 36px; font-size: 0.75rem; top: 30%; left: 8%; }
}

/* ---------- Seções ---------- */
section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; line-height: 1.1; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 1.08rem; }

/* Bento de funcionalidades */
.bento {
  display: grid; gap: 16px;
  grid-template-columns: repeat(6, 1fr);
}
.cell {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s;
}
.cell:hover { transform: translateY(-3px); border-color: rgba(52, 193, 113, 0.35); }
.cell i { font-size: 1.9rem; color: var(--green); }
.cell h3 { font-size: 1.25rem; font-weight: 700; }
.cell p { color: var(--text-dim); font-size: 0.98rem; }
.cell-lg { grid-column: span 3; }
.cell-md { grid-column: span 2; }
.cell-tint {
  background: linear-gradient(145deg, rgba(52, 193, 113, 0.14), var(--bg-card) 65%);
}
.cell-dark {
  background:
    radial-gradient(340px 200px at 85% 0%, rgba(52, 193, 113, 0.2), transparent 70%),
    var(--bg-raise);
}
@media (max-width: 900px) {
  .cell-lg, .cell-md { grid-column: span 6; }
}

/* Termômetro de score */
.score-section { background: var(--bg-raise); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.thermo {
  height: 14px; border-radius: 999px; margin: 44px 0 8px;
  background: linear-gradient(90deg, #e53935, #fb8c00, #fdd835, #43a047);
}
.thermo-labels { display: flex; justify-content: space-between; color: var(--text-dim); font-size: 0.85rem; }
.score-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 44px; }
.score-chip {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-card); padding: 8px 20px 8px 8px;
}
.score-chip .dot {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  border: 2px solid rgba(0, 0, 0, 0.3); color: #fff;
}
.score-chip span { font-size: 0.95rem; color: var(--text-dim); }

/* Passos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
.step h3 { font-size: 1.35rem; margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.step h3 i { color: var(--green); font-size: 1.5rem; }
.step p { color: var(--text-dim); font-size: 1rem; }
.step { border-top: 2px solid var(--green-deep); padding-top: 22px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 28px; } }

/* Destaque split (eventos) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.12; }
.split p { color: var(--text-dim); margin-top: 16px; }
.vaquinha-demo {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card); padding: 28px;
}
.vaquinha-demo h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 16px; }
.bar { height: 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.bar > div { height: 100%; width: 62%; border-radius: 999px; background: linear-gradient(90deg, var(--green-deep), var(--green)); }
.vaquinha-demo .meta { display: flex; justify-content: space-between; color: var(--text-dim); font-size: 0.9rem; margin-top: 10px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* CTA final */
.cta-band {
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% 120%, rgba(52, 193, 113, 0.22), transparent 70%),
    var(--bg);
}
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; }
.cta-band p { color: var(--text-dim); margin: 16px auto 36px; max-width: 46ch; }
.cta-band .stores { justify-content: center; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 44px 0; }
footer .wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
footer .brand { font-size: 1.05rem; }
footer .brand img { width: 26px; height: 26px; }
footer nav { margin-left: auto; display: flex; gap: 24px; }
footer a { color: var(--text-dim); text-decoration: none; font-size: 0.92rem; }
footer a:hover { color: var(--text); }
footer .copy { width: 100%; color: var(--text-dim); font-size: 0.85rem; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Página de texto (privacidade) ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 140px 24px 80px; }
.doc h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 8px; }
.doc .updated { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 40px; }
.doc h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.doc p, .doc li { color: var(--text-dim); }
.doc ul { padding-left: 22px; margin: 12px 0; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--text); }
