@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-VF.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0B0B0C;
  --bg-2: #121214;
  --card: #17171A;
  --line: #26262B;
  --gold: #C9A24B;
  --gold-soft: #E6C878;
  --ink: #F4F2ED;
  --ink-dim: #B7B4AC;
  --ink-faint: #86837C;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 960px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: none; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 6vw, 40px); margin-bottom: 22px; }
h3 { font-size: 21px; }

p { color: var(--ink-dim); }
p + p { margin-top: 14px; }
strong { color: var(--ink); font-weight: 600; }
.gold { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 96px 0 72px;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,162,75,0.14), transparent 60%),
    radial-gradient(90% 60% at 50% 120%, rgba(201,162,75,0.06), transparent 60%),
    var(--bg);
}
.hero .wrap { display: flex; flex-direction: column; align-items: center; }
.hero__logo { width: 168px; max-width: 55%; height: auto; margin-bottom: 34px; filter: drop-shadow(0 10px 40px rgba(0,0,0,0.6)); }
.hero h1 { font-size: clamp(34px, 9vw, 62px); margin-bottom: 22px; }
.hero__lead {
  font-size: clamp(18px, 4.5vw, 24px);
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto 8px;
  font-weight: 500;
}
.hero__lead .gold { font-family: var(--serif); font-style: italic; }
.hero__sub { color: var(--ink-faint); max-width: 540px; margin: 16px auto 38px; font-size: 16px; }

/* Botão WhatsApp */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1A1405;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 17px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(201,162,75,0.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(201,162,75,0.4); filter: brightness(1.05); }
.btn svg { width: 20px; height: 20px; fill: #1A1405; }
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.btn--ghost svg { fill: var(--gold); }

/* Blocos genéricos */
.lede { font-size: clamp(18px, 3.6vw, 21px); color: var(--ink); max-width: 680px; }
.muted { color: var(--ink-dim); max-width: 680px; }

/* Método pills */
.method { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.method span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg-2);
}
.method span b { color: var(--gold); font-weight: 700; }

.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
.pillars div {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 20px;
}
.pillars h3 { font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.pillars p { font-size: 15px; }

/* Papel do parceiro */
.steps { margin-top: 26px; display: grid; gap: 16px; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 22px;
}
.step__n {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(201,162,75,0.08);
}
.step p { margin: 0; font-size: 15.5px; }
.step p strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 16px; }

/* Comissão cards */
.comm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.comm__card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(201,162,75,0.07), transparent 45%),
    var(--card);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.comm__card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.comm__tag { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.comm__pct { font-family: var(--serif); font-size: 48px; font-weight: 800; color: var(--ink); margin: 10px 0 4px; line-height: 1; }
.comm__pct small { font-size: 20px; color: var(--gold); font-weight: 700; }
.comm__desc { font-size: 15px; color: var(--ink-dim); margin-top: 10px; }
.comm__desc b { color: var(--ink); }

/* Exemplo */
.example {
  border: 1px dashed var(--gold);
  background: linear-gradient(180deg, rgba(201,162,75,0.05), transparent);
  border-radius: 16px;
  padding: 28px 26px;
  margin-top: 26px;
}
.example__badge {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1A1405;
  background: var(--gold);
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.example p { color: var(--ink); font-size: 16.5px; }
.example .num { color: var(--gold); font-weight: 700; font-family: var(--serif); }
.example__note { font-size: 13px !important; color: var(--ink-faint) !important; margin-top: 14px !important; }

/* Como funciona */
.rules { margin-top: 26px; display: grid; gap: 14px; }
.rule {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}
.rule__ic { color: var(--gold); font-size: 18px; line-height: 1.5; flex: 0 0 auto; }
.rule p { margin: 0; font-size: 15.5px; }
.rule p strong { color: var(--ink); }

/* CTA final */
.cta {
  text-align: center;
  background:
    radial-gradient(100% 70% at 50% 0%, rgba(201,162,75,0.14), transparent 60%),
    var(--bg);
}
.cta h2 { font-size: clamp(30px, 8vw, 52px); margin-bottom: 18px; }
.cta p { max-width: 520px; margin: 0 auto 34px; color: var(--ink-dim); }

/* Rodapé */
footer { border-top: 1px solid var(--line); padding: 40px 0 56px; text-align: center; }
footer .foot-logo { font-family: var(--serif); color: var(--gold); font-size: 18px; font-weight: 700; letter-spacing: 0.02em; }
footer p { color: var(--ink-faint); font-size: 14px; margin-top: 12px; }
footer a { color: var(--ink-dim); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* Animação suave de entrada */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* Mobile */
@media (max-width: 680px) {
  section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .comm, .pillars { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0 64px; }
  .comm__pct { font-size: 42px; }
}
