@font-face {
  font-family: Sansation;
  src: url("assets/sansation-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Sansation;
  src: url("assets/sansation-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #061616;
  --surface: #0c1a1c;
  --line: #1f2d2d;
  --text: #f7fafc;
  --muted: #a8b5ba;
  --azure: #4d8dff;
  --on-azure: #061616;
  --lime: #b6ff3c;
  --paper: #f5f7fa;
  --ink: #0b111e;
  --ink-muted: #4c576b;
  --action: #2f5fc1;
  --card: #ffffff;
  --border: #cbd3df;
  --warn: #ffc24d;
  --max: 1120px;
  --serif: "Iowan Old Style", Palatino, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Sansation, Poppins, "SF Pro Display", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.02em;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 16px;
}
h1, h2, h3 { font-weight: 700; letter-spacing: -0.03em; margin: 0; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.96; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.02; }
h3 { font-size: 22px; line-height: 1.15; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
p { line-height: 1.5; }
.muted { color: var(--muted); }

header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(6, 22, 22, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
header img { height: 28px; width: auto; }
nav { display: flex; gap: 18px; align-items: center; font-size: 14px; }
nav a { text-decoration: none; color: var(--muted); }
nav a.btn { color: var(--on-azure); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--azure);
  color: var(--on-azure);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 22px;
  border: 0;
  font-family: inherit;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero { padding: 72px 0 36px; }
.hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 460px; }
.fine { color: var(--muted); font-size: 14px; margin-top: 18px; }
.hero-photo {
  border-radius: 20px;
  min-height: 420px;
  background: #d7e2ea center 20%/cover no-repeat;
  border: 1px solid var(--line);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
  font-size: 14px;
}
.marquee-track { display: flex; gap: 28px; width: max-content; animation: slide 28s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }

.video {
  padding: 88px 0;
  text-align: center;
}
.video h2 { margin-bottom: 12px; }
.frame {
  margin: 32px auto 0;
  max-width: 860px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05070d center/cover no-repeat;
  display: grid;
  place-items: center;
  position: relative;
}
.frame span {
  background: var(--azure);
  color: var(--on-azure);
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
}

.split { padding: 28px 0 80px; }
.split .grid, .who .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.photo {
  border-radius: 20px;
  min-height: 460px;
  background: #d7e2ea center 22%/cover no-repeat;
  border: 1px solid var(--line);
}
.split p, .who p { color: var(--muted); font-size: 17px; }

.paper {
  background: var(--paper);
  color: var(--ink);
  padding: 88px 0;
}
.paper .kicker { color: var(--action); }
.paper p, .paper .sub { color: var(--ink-muted); }
.steps, .cards {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.steps { grid-template-columns: repeat(3, 1fr); }
.cards { grid-template-columns: repeat(3, 1fr); }
.step, .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.num { color: var(--action); font-size: 13px; letter-spacing: 0.12em; margin-bottom: 18px; }
.step p, .card p { margin: 10px 0 0; font-size: 15px; }

.ladder { padding: 88px 0; }
.levels { margin-top: 28px; display: grid; gap: 10px; }
.compare-wrap { overflow-x: auto; margin-top: 28px; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--card);
  color: var(--ink);
  border-radius: 16px;
  overflow: hidden;
}
table.compare th, table.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  font-size: 15px;
}
table.compare th { background: #e7eef8; }
table.compare td:first-child { color: var(--ink-muted); width: 22%; }
.level {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--surface);
}
.level strong { color: var(--lime); font-size: 22px; white-space: nowrap; }
.level p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

.why { padding: 20px 0 80px; }
.why .three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.why article {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
}

.final {
  margin: 10px auto 48px;
  width: min(var(--max), calc(100% - 40px));
  background: #102326;
  border-radius: 28px;
  padding: 64px 36px;
  text-align: center;
}
.final p { color: var(--muted); max-width: 520px; margin: 14px auto 0; }

footer {
  padding: 28px 22px 40px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .hero .grid, .split .grid, .who .grid, .steps, .cards, .why .three { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
  .hero-photo, .photo { min-height: 280px; }
  header nav .quiet { display: none; }
  .final { padding: 42px 20px; }
  footer { flex-direction: column; }
}

.form { max-width: 760px; margin: 32px auto 0; text-align: left; }
.form .campos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.form input, .form select {
  font: inherit;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  width: 100%;
}
.form input, .form select { scroll-margin-top: 96px; }
.form input::placeholder { color: #6f7f85; }
.form input:focus, .form select:focus { outline: 2px solid var(--azure); outline-offset: 1px; border-color: var(--azure); }
.form.tentou :invalid { border-color: var(--warn); }
.form .aceite { display: flex; gap: 12px; align-items: flex-start; margin: 22px 0; line-height: 1.45; }
.form .aceite input { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--azure); }
.form .btn { width: 100%; font-size: 16px; cursor: pointer; }
.form .btn:disabled { opacity: 0.6; cursor: wait; }
.form .status { min-height: 1.5em; text-align: center; margin: 14px 0 0; }
.form .status a { color: var(--azure); }
.form .ok { text-align: center; color: var(--text); font-size: 18px; }
.armadilha { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 860px) {
  .form .campos { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}
