/* ============================================================
   LP Template Funnelscore · Reset + Base
   Substitua tokens (cores, tipografia) conforme Brandbook da LP.
   ============================================================ */

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

:root {
  /* Tokens — sobrescrever por LP */
  --color-bg: #0a0a0a;
  --color-fg: #f5f5f5;
  --color-accent: #00d97e;
  --color-muted: #888;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --max-width: 1120px;
  --radius: 8px;
}

html { scroll-behavior: smooth; }

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

main { max-width: var(--max-width); margin: 0 auto; padding: 4rem 1.5rem; }

h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 1rem; }
.sub { font-size: 1.25rem; color: var(--color-muted); margin-bottom: 2rem; max-width: 60ch; }

.cta {
  display: inline-block;
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}
.cta:hover { transform: translateY(-2px); opacity: .9; }

section { margin: 4rem 0; }

footer { margin-top: 6rem; padding-top: 2rem; border-top: 1px solid #222; color: var(--color-muted); font-size: .875rem; text-align: center; }

@media (max-width: 640px) {
  main { padding: 2rem 1rem; }
  .sub { font-size: 1.1rem; }
}
