/* Breeze · Encontro 28/09
   Tokens espelhados de breezedm.app (monocromático, Space Grotesk + JetBrains Mono) */

:root {
  --bg: #f5f6f8;
  --bg-2: #eef0f3;
  --paper: #ffffff;
  --surface: linear-gradient(162deg, #fcfcfd 0%, #eef0f3 100%);
  --ink: #0a0a0a;
  --ink-2: #1b1b1d;
  --muted: #5f5f67;
  --muted-2: #85858d;
  --line: #e6e7eb;
  --line-2: #eef0f3;
  --live: #1f8a5b;
  --whatsapp: #1fae54;
  --whatsapp-hover: #1a9a4a;
  --danger: #b42318;

  --dark-bg: radial-gradient(120% 120% at 18% 0%, #1d1d22, #0a0a0b 52%);
  --dark-ink: #f4f4f6;
  --dark-muted: #a3a3ae;
  --dark-line: #2c2c32;

  --font: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --r-btn: 10px;
  --r-card: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --sh-xs: 0 1px 2px rgba(17, 18, 22, .05);
  --sh-sm: 0 1px 2px rgba(17, 18, 22, .06), 0 2px 6px rgba(17, 18, 22, .04);
  --sh-md: 0 1px 2px rgba(17, 18, 22, .06), 0 2px 6px rgba(17, 18, 22, .04), 0 14px 30px -12px rgba(17, 18, 22, .16);
  --sh-lg: 0 2px 4px rgba(17, 18, 22, .06), 0 40px 80px -28px rgba(17, 18, 22, .28);

  --section-pad: 116px;
  --gutter: 32px;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; font-weight: 600; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-btn);
  text-decoration: none; font-weight: 500;
}
.skip-link:focus { top: 12px; }

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

/* ---------- Tipografia ---------- */

.display {
  font-size: clamp(38px, 5.1vw, 66px);
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(118deg, #0a0a0a 45%, #6f727d 135%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.04; letter-spacing: -.035em; }
.h3 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.15; letter-spacing: -.02em; }

.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6; color: var(--muted); max-width: 58ch; }
.lead + .lead { margin-top: 14px; }
.lead strong { color: var(--ink); font-weight: 500; }

.kicker {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .06em; color: var(--muted);
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 22px;
  font: 500 15.5px/1.2 var(--font); letter-spacing: -.01em;
  border-radius: var(--r-btn); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background-color .18s ease;
  touch-action: manipulation;
}
.btn-lg { min-height: 56px; padding: 16px 26px; font-size: 16.5px; }
.btn svg { flex: none; width: 18px; height: 18px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--sh-sm); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--sh-md); filter: brightness(1.12); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: var(--paper); color: var(--ink); border-color: var(--line); box-shadow: var(--sh-xs); }
.btn-ghost:hover { background: #fbfbfc; border-color: #d8d9de; }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0, 0, 0, .3); }

.btn[disabled] { opacity: .5; cursor: progress; transform: none; }

/* ---------- Chip ---------- */

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px 7px 11px;
  font: 500 12px/1.2 var(--mono); letter-spacing: .04em;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  box-shadow: var(--sh-xs); color: var(--ink-2);
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 3px rgba(31, 138, 91, .15); }

/* ---------- Topo ---------- */

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 246, 248, .72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.topbar.scrolled { border-bottom-color: var(--line); }
.topbar-inner { height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo svg { width: 26px; height: 26px; }
.logo span { font-size: 21px; font-weight: 500; letter-spacing: -.025em; }

.topbar-meta { font: 500 12.5px/1 var(--mono); letter-spacing: .04em; color: var(--muted); }
.topbar .btn { min-height: 40px; padding: 9px 16px; font-size: 14.5px; }

/* ---------- Dobra 1 · Hero ---------- */

.hero {
  position: relative;
  padding: 64px 0 0;
  background:
    radial-gradient(60% 70% at 78% 8%, rgba(120, 140, 190, .12), transparent 60%),
    radial-gradient(50% 60% at 8% 18%, rgba(150, 160, 190, .1), transparent 55%),
    linear-gradient(180deg, #f7f8fa, var(--bg) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 56px;
  align-items: start;
}

.hero-copy { padding-top: 8px; }
.hero-copy .display { margin-top: 22px; }
.hero-copy .lead:first-of-type { margin-top: 24px; }

/* Faixa de informações do evento */
.specs {
  margin-top: 34px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: rgba(255, 255, 255, .6);
  overflow: hidden;
}
.spec { padding: 14px 18px; border-left: 1px solid var(--line); min-width: 0; }
.spec:nth-child(odd) { border-left: 0; }
.spec:nth-child(n+3) { border-top: 1px solid var(--line); }
.spec dt { font: 500 11.5px/1.2 var(--mono); letter-spacing: .06em; color: var(--muted-2); }
.spec dd { margin: 6px 0 0; font-size: 15.5px; font-weight: 500; line-height: 1.25; letter-spacing: -.015em; }
.spec-alert dd { color: var(--danger); }

/* Card do formulário (moldura dupla, como o card de plano do Breeze) */
.form-frame {
  position: relative;
  padding: 6px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  scroll-margin-top: 90px;
}
.form-card { background: var(--paper); border-radius: calc(var(--r-lg) - 5px); padding: 26px 26px 22px; }

.countdown {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; margin-bottom: 22px;
  background: var(--ink); color: #fff; border-radius: 12px;
}
.countdown-label { font: 500 11.5px/1.25 var(--mono); letter-spacing: .06em; color: #b9b9c2; }
.countdown-time { display: flex; gap: 10px; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 30px; }
.countdown-unit b { font-size: 21px; font-weight: 500; line-height: 1; letter-spacing: -.02em; }
.countdown-unit small { font-size: 10px; letter-spacing: .08em; color: #9a9aa6; margin-top: 4px; }

.form-title { font-size: 21px; line-height: 1.2; letter-spacing: -.025em; }
.form-sub { margin-top: 6px; font-size: 14.5px; color: var(--muted); line-height: 1.45; }

.fields { margin-top: 20px; display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label, .field legend { font-size: 14px; font-weight: 500; letter-spacing: -.01em; color: var(--ink-2); padding: 0; }
.field input, .field select {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font: 400 16px/1.2 var(--font); color: var(--ink); letter-spacing: -.01em;
  background: #fbfbfc; border: 1px solid var(--line); border-radius: var(--r-btn);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%235f5f67' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field input::placeholder { color: #a6a6ad; }
.field input:hover, .field select:hover { border-color: #d8d9de; }
.field input:focus, .field select:focus {
  outline: none; background-color: #fff; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10, 10, 10, .08);
}
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { font-size: 13px; color: var(--danger); line-height: 1.3; }
.field-error:empty { display: none; }

fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
.options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 2px; }
.option { position: relative; }
.option input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; min-height: 0; }
.option span {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 48px; padding: 8px 8px;
  font-size: 13.5px; font-weight: 500; line-height: 1.2; letter-spacing: -.01em;
  background: #fbfbfc; border: 1px solid var(--line); border-radius: var(--r-btn);
  cursor: pointer; transition: all .15s ease;
}
.option input:hover + span { border-color: #d8d9de; }
.option input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.option input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }

.form-card .btn { margin-top: 20px; }
.form-card .btn[hidden] { display: none; }

/* Etapa 2 do formulário: abre depois de nome, e-mail e WhatsApp */
.step2 {
  display: grid; grid-template-rows: 0fr;
  opacity: 0; visibility: hidden;
  transition: grid-template-rows .45s cubic-bezier(.2, .8, .2, 1), opacity .3s ease .08s, visibility 0s linear .45s;
}
.step2.open { grid-template-rows: 1fr; opacity: 1; visibility: visible; transition-delay: 0s, .08s, 0s; }
.step2-inner { min-height: 0; overflow: hidden; }
.step2-head { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.step2-title { font-size: 16px; font-weight: 600; letter-spacing: -.015em; }
.step2-sub { margin-top: 2px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.step2 .fields { margin-top: 16px; }
.form-error { display: block; margin-top: 10px; text-align: center; }
.form-foot { margin-top: 12px; text-align: center; font-size: 12.5px; color: var(--muted-2); line-height: 1.45; }

.bonus {
  margin-top: 16px; padding: 12px 14px;
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg); border: 1px dashed #d4d5da; border-radius: 12px;
  font-size: 14px; line-height: 1.45; color: var(--ink-2);
}
.bonus svg { flex: none; width: 20px; height: 20px; margin-top: 1px; }
.bonus strong { font-weight: 600; }

/* Faixa de prova (cases) */
.proof {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-item { padding: 34px 32px 44px; border-left: 1px solid var(--line); }
.proof-item:first-child { border-left: 0; padding-left: 0; }
.proof-figure {
  font-size: clamp(34px, 3.6vw, 46px); font-weight: 600; line-height: 1;
  letter-spacing: -.045em; font-variant-numeric: tabular-nums;
}
.proof-text { margin-top: 12px; font-size: 15.5px; line-height: 1.5; color: var(--muted); max-width: 30ch; }

/* ---------- Dobra 2 · Conteúdo ---------- */

.learn {
  padding: var(--section-pad) 0;
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  border-top: 1px solid var(--line);
}

.section-head { max-width: 780px; }
.section-head .h2 { margin-top: 16px; }
.section-head .lead { margin-top: 20px; }

.steps, .proof { list-style: none; margin-left: 0; margin-right: 0; margin-bottom: 0; padding: 0; }

.steps {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); overflow: hidden;
}
.step { position: relative; padding: 30px 30px 32px; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-num { font: 500 13px/1 var(--mono); letter-spacing: .04em; color: var(--muted-2); }
.step-icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 11px; background: var(--surface); border: 1px solid var(--line);
}
.step-icon svg { width: 20px; height: 20px; }
.step .h3 { margin-top: 26px; }
.step p { margin-top: 10px; font-size: 16px; line-height: 1.55; color: var(--muted); }
.step-arrow {
  position: absolute; top: 50%; right: -14px; z-index: 2; transform: translateY(-50%);
  width: 28px; height: 28px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 50%;
}
.step-arrow svg { width: 12px; height: 12px; }
.step-last { background: var(--ink); color: #fff; }
.step-last p { color: #b9b9c2; }
.step-last .step-num { color: #8a8a96; }
.step-last .step-icon { background: #1b1b1d; border-color: #2c2c32; }

.bullets-wrap { margin-top: 72px; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px; }
.bullets-intro { align-self: start; position: sticky; top: 96px; }
.bullets-intro .h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.12; letter-spacing: -.025em; }
.bullets-intro p { margin-top: 14px; color: var(--muted); font-size: 16px; }
.bullets-intro .btn { margin-top: 28px; }

.bullets { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.bullets li {
  display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 14px;
  padding: 17px 0; border-bottom: 1px solid var(--line);
  font-size: 16.5px; line-height: 1.5; letter-spacing: -.012em; color: var(--ink-2);
  background: rgba(255, 255, 255, .85);
}
.bullets li svg { width: 20px; height: 20px; margin-top: 2px; }
.bullets li.bullet-key { font-weight: 500; color: var(--ink); }

/* ---------- Dobra 3 · Apresentadores ---------- */

.hosts {
  position: relative; overflow: hidden;
  padding: var(--section-pad) 0 96px;
  background: var(--dark-bg); color: var(--dark-ink);
}
.hosts::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 85% 0%, rgba(120, 140, 200, .16), transparent 60%);
}
.hosts .wrap { position: relative; }
.hosts .kicker { color: #8a8a96; }
.hosts .h2 {
  background: linear-gradient(118deg, #fff 35%, #8d8f9a 125%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hosts .lead { color: var(--dark-muted); }

.host-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.host {
  display: grid; grid-template-columns: 1fr; gap: 22px; align-content: start;
  padding: 26px; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .035); border: 1px solid var(--dark-line);
}
.host-id { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--dark-line); }
.host-avatar {
  width: 72px; height: 72px; flex: none; border-radius: 50%; object-fit: cover;
  background: #2a2a30; box-shadow: 0 0 0 1px var(--dark-line), 0 0 0 4px rgba(255, 255, 255, .04);
}
.host-handle { display: inline-block; margin-top: 2px; font: 400 13px/1.4 var(--mono); color: #a3a3ae; text-decoration: none; }
.host-handle:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.host-stat { font-size: clamp(30px, 3vw, 38px); font-weight: 600; line-height: 1; letter-spacing: -.045em; color: #fff; }
.host-stat-label { margin-top: 6px; font-size: 14px; line-height: 1.4; color: var(--dark-muted); }
.host-name { font-size: 20px; line-height: 1.2; letter-spacing: -.02em; }
.host-role { margin-top: 18px; font: 400 12.5px/1.4 var(--mono); letter-spacing: .02em; color: #8a8a96; }
.host ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.host li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.5; color: #d4d4da; }
.host li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 1px; background: #6c6c76; }

.final-cta {
  margin-top: 72px; padding: 40px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center;
  border: 1px solid var(--dark-line); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .03);
}
.final-cta .h3 { font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.03em; color: #fff; }
.final-cta p { margin-top: 10px; color: var(--dark-muted); max-width: 60ch; }
.final-cta-side { display: grid; justify-items: center; gap: 10px; }
.final-cta-side small { font: 400 12px/1.3 var(--mono); letter-spacing: .03em; color: #8a8a96; }

/* ---------- Rodapé ---------- */

.footer { padding: 28px 0 36px; background: #0a0a0b; color: #8a8a96; border-top: 1px solid #1d1d22; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer .logo { color: #f4f4f6; }
.footer .logo svg { width: 22px; height: 22px; }
.footer .logo span { font-size: 18px; }
.footer a { color: #b9b9c2; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 18px; }

/* ---------- Página de obrigado ---------- */

.ty {
  min-height: calc(100dvh - 66px);
  padding: 56px 0 96px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(120, 140, 190, .14), transparent 60%),
    linear-gradient(180deg, #f7f8fa, var(--bg) 60%);
}
.ty-inner { max-width: 680px; margin: 0 auto; }

.progress { display: grid; gap: 10px; }
.progress-row { display: flex; justify-content: space-between; font: 500 12.5px/1 var(--mono); letter-spacing: .04em; color: var(--muted); }
.progress-row b { color: var(--ink); font-weight: 500; }
.progress-track { height: 8px; background: var(--line); border-radius: var(--r-pill); overflow: hidden; }
.progress-fill { height: 100%; width: 90%; background: var(--ink); border-radius: inherit; transform-origin: left; animation: fill 1.1s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes fill { from { transform: scaleX(.35); } to { transform: scaleX(1); } }

.ty-head { margin-top: 44px; text-align: center; }
.ty-head .display { font-size: clamp(34px, 5.4vw, 58px); }
.ty-head .lead { margin: 20px auto 0; }

.ty-card { margin-top: 36px; }
.ty-card .form-card { padding: 30px; }
.step-label { display: flex; align-items: center; gap: 10px; font: 500 12.5px/1 var(--mono); letter-spacing: .04em; color: var(--muted); }
.step-label i {
  font-style: normal; width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 50%; background: var(--ink); color: #fff; font-size: 12px;
}
.ty-card .h3 { margin-top: 16px; }
.ty-desc { margin-top: 8px; color: var(--muted); font-size: 16px; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 1px 2px rgba(17, 18, 22, .08), 0 14px 30px -12px rgba(31, 174, 84, .55); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); transform: translateY(-1px); }
.btn-whatsapp svg { width: 22px; height: 22px; }
.ty-card .btn-whatsapp { margin-top: 22px; min-height: 64px; font-size: 18px; }

.ty-warning {
  margin-top: 16px; display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.45; color: var(--ink-2);
}
.ty-warning svg { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--danger); }

.ty-step2 {
  margin-top: 18px; padding: 26px 30px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.ty-step2 .step-label i { background: var(--bg-2); color: var(--ink); border: 1px solid var(--line); }
.ty-step2 .h3 { margin-top: 14px; font-size: 20px; }
.ty-step2 .ty-desc { font-size: 15.5px; }
.cal-buttons { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.cal-buttons svg { width: 18px; height: 18px; }

.ty-sign { margin-top: 40px; text-align: center; color: var(--muted); font-size: 15.5px; }
.ty-sign .signature {
  display: table; margin: 12px auto 0;
  font-family: "Ms Madi", "Snell Roundhand", cursive;
  font-size: clamp(38px, 4.6vw, 46px); font-weight: 400; line-height: 1.25; letter-spacing: 0;
  color: var(--ink);
  transform: rotate(-2deg);
}

/* ---------- Responsivo ---------- */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 420px); gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 76px; --gutter: 22px; }
  .topbar-meta { display: none; }
  .hero { padding-top: 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof { grid-template-columns: 1fr; margin-top: 56px; }
  .proof-item, .proof-item:first-child { padding: 26px 0; border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:first-child { border-top: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
  .step-arrow { top: auto; bottom: -14px; right: 30px; transform: rotate(90deg); }
  .bullets-wrap { grid-template-columns: 1fr; gap: 28px; margin-top: 56px; }
  .bullets-intro { position: static; }
  .host-grid { grid-template-columns: 1fr; }
  .host { padding: 22px; }
  .final-cta { grid-template-columns: 1fr; padding: 28px 24px; }
  .final-cta-side { justify-items: stretch; }
  .final-cta-side small { text-align: center; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .topbar .btn { min-height: 38px; padding: 8px 12px; font-size: 13.5px; }
  .form-card { padding: 20px 18px 18px; }
  .countdown { flex-direction: column; align-items: flex-start; }
  .countdown-time { width: 100%; justify-content: space-between; }
  .options { grid-template-columns: 1fr; }
  .ty-card .form-card, .ty-step2 { padding: 22px 20px; }
  .cal-buttons { grid-template-columns: 1fr; }
  .ty-card .btn-whatsapp { font-size: 16.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Página do afiliado (gerador de link) ---------- */

.af-title { font-size: clamp(32px, 4.6vw, 50px); }

.help { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.help strong { color: var(--ink-2); font-weight: 500; }

.af-out { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line-2); }
.af-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.af-label { font: 500 11.5px/1.2 var(--mono); letter-spacing: .06em; color: var(--muted-2); }

.af-link {
  display: block; margin-top: 10px; padding: 14px 16px;
  font: 400 13.5px/1.55 var(--mono); color: var(--ink); word-break: break-all;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-btn);
}
.af-out .btn { margin-top: 12px; }

.af-msgs { margin-top: 28px; display: grid; gap: 22px; }
.af-text {
  margin-top: 10px; padding: 14px 16px;
  font-size: 15px; line-height: 1.55; color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-btn);
  word-break: break-word;
}

.af-rules { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.af-rules li { position: relative; padding-left: 18px; font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.af-rules li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--muted-2); }
