/* ==========================================================================
   Eleva - Site de vendas (SaaS de Landing Pages Imobiliárias)
   Tema escuro, elegante, minimalista, mobile-first
   ========================================================================== */

:root {
  --bg: #0a0c10;
  --bg-2: #0d1016;
  --surface: #13161e;
  --surface-2: #1a1e29;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);

  --ink: #f4f6fa;
  --ink-2: #c7cdd8;
  --muted: #8a93a3;

  --gold: #d8b765;
  --gold-2: #c79a45;
  --gold-soft: rgba(216, 183, 101, 0.12);
  --green: #34d399;
  --green-soft: rgba(52, 211, 153, 0.14);
  --danger: #f87171;

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --glow: 0 0 0 1px rgba(216, 183, 101, 0.18), 0 18px 50px rgba(216, 183, 101, 0.12);

  --r-sm: 12px;
  --r: 16px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-pill: 999px;

  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1120px;
  --pad: 20px;
}

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

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

/* Barra de rolagem fininha (perfect scrolling) */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}
*::-webkit-scrollbar { width: 5px; height: 5px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.16); border-radius: 999px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.3); }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Brilho sutil de fundo */
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(216, 183, 101, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(80, 110, 200, 0.06), transparent 55%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

[data-lucide] { stroke-width: 1.7; width: 22px; height: 22px; }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section { padding-block: 64px; }
.section--tight { padding-block: 44px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow [data-lucide] { width: 15px; height: 15px; }

.h-title {
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 12px;
}

.h-sub {
  color: var(--ink-2);
  margin-top: 14px;
  font-size: 1.02rem;
  max-width: 640px;
}

.center { text-align: center; }
.center .h-sub { margin-inline: auto; }

.gold { color: var(--gold); }
.grad-text {
  background: linear-gradient(120deg, #f0d99a, var(--gold) 55%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--gold {
  background: linear-gradient(135deg, #f0d99a, var(--gold) 60%, var(--gold-2));
  color: #1a1306;
  box-shadow: 0 12px 30px rgba(216, 183, 101, 0.25);
}

.btn--gold:hover { box-shadow: 0 16px 40px rgba(216, 183, 101, 0.38); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  border: 1px solid var(--line-2);
}

.btn--ghost:hover { border-color: var(--gold); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 28px; font-size: 1.05rem; }
.btn [data-lucide] { width: 19px; height: 19px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo [data-lucide] { color: var(--gold); width: 22px; height: 22px; }

.nav__links {
  display: none;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
}

.nav__links a:hover { color: var(--ink); }

.nav__cta { display: none; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 110px;
  padding-bottom: 40px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 24px; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--gold-soft);
  border: 1px solid rgba(216, 183, 101, 0.25);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pill [data-lucide] { width: 15px; height: 15px; }

.hero__title {
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-top: 18px;
}

.hero__sub {
  color: var(--ink-2);
  font-size: 1.08rem;
  margin-top: 18px;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.avatars { display: flex; }
.avatars img {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--bg); object-fit: cover; margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars [data-lucide] { width: 16px; height: 16px; fill: currentColor; }

.hero__trust-text { font-size: 0.82rem; color: var(--muted); }
.hero__trust-text b { color: var(--ink); }

/* ---------- Phone mockup ---------- */
.phone-stage {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 183, 101, 0.18), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 82vw;
  aspect-ratio: 300 / 620;
  background: #05070b;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone__screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f9fafb;
  position: relative;
}

.phone__screen iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

.phone__screen--static {
  pointer-events: none;
}

/* ---------- Logos / faixa de confiança ---------- */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 22px;
  margin-top: 24px;
}

.marquee__row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  justify-content: center;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.7;
}

.marquee__row span { display: inline-flex; align-items: center; gap: 8px; }
.marquee__row [data-lucide] { width: 18px; height: 18px; }

/* ---------- Cards genéricos ---------- */
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
}

/* ---------- Vilão (problema vs solução) ---------- */
.compare {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

@media (min-width: 820px) {
  .compare { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.compare__col {
  border-radius: var(--r-xl);
  padding: 26px;
  border: 1px solid var(--line);
}

.compare__col--bad {
  background: rgba(248, 113, 113, 0.05);
  border-color: rgba(248, 113, 113, 0.18);
}

.compare__col--good {
  background: linear-gradient(180deg, rgba(216, 183, 101, 0.08), var(--bg-2));
  border-color: rgba(216, 183, 101, 0.28);
}

.compare__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare__col--bad .compare__tag { color: var(--danger); }
.compare__col--good .compare__tag { color: var(--gold); }

.compare__list { margin-top: 18px; display: grid; gap: 12px; }

.compare__item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-2);
}

.compare__item [data-lucide] { width: 19px; height: 19px; flex: 0 0 19px; margin-top: 2px; }
.compare__col--bad [data-lucide] { color: var(--danger); }
.compare__col--good [data-lucide] { color: var(--green); }

/* ---------- Passos ---------- */
.steps {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
  position: relative;
}

.step__num {
  width: 42px; height: 42px;
  border-radius: var(--r);
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.step h3 { margin-top: 16px; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; }
.step p { color: var(--muted); margin-top: 8px; font-size: 0.94rem; }

/* ---------- Features ---------- */
.features {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

@media (min-width: 640px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover { transform: translateY(-3px); border-color: var(--line-2); }

.feature__ic {
  width: 46px; height: 46px;
  border-radius: var(--r);
  background: var(--gold-soft);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.feature h3 { margin-top: 16px; font-size: 1.08rem; font-weight: 700; }
.feature p { color: var(--muted); margin-top: 7px; font-size: 0.9rem; }

/* ---------- Demo ---------- */
.demo__phones {
  display: grid;
  gap: 30px;
  margin-top: 36px;
  justify-items: center;
}

@media (min-width: 760px) { .demo__phones { grid-template-columns: 1fr 1fr; } }

.demo__item { text-align: center; }
.demo__label { margin-top: 16px; font-weight: 700; }
.demo__label span { display: block; color: var(--muted); font-weight: 500; font-size: 0.85rem; margin-top: 2px; }
.demo__open { margin-top: 14px; }

/* ---------- Depoimentos ---------- */
.testimonials {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

@media (min-width: 760px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.testi .stars { margin-bottom: 14px; }
.testi p { color: var(--ink-2); font-size: 0.96rem; flex: 1; }

.testi__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi__who b { display: block; font-size: 0.95rem; }
.testi__who span { color: var(--muted); font-size: 0.8rem; }

/* ---------- Vídeos ---------- */
.videos {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

@media (min-width: 760px) { .videos { grid-template-columns: repeat(3, 1fr); } }

.video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  cursor: pointer;
}

.video img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.25s ease, transform 0.4s ease; }
.video:hover img { opacity: 0.9; transform: scale(1.04); }

.video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.video__play i {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(216, 183, 101, 0.95);
  color: #1a1306;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video__play [data-lucide] { width: 26px; height: 26px; fill: currentColor; }

.video__cap {
  position: absolute;
  left: 14px; bottom: 12px; right: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ---------- Pricing ---------- */
.billing-wrap {
  margin-top: 28px;
  margin-bottom: 8px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
}

.co-billing {
  display: flex;
  width: 100%;
}

.billing-toggle__opt {
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.22s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.billing-toggle__opt.active {
  background: linear-gradient(135deg, #f0d99a, var(--gold-2));
  color: #1a1306;
  box-shadow: 0 6px 18px rgba(216, 183, 101, 0.25);
}

.billing-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--green-soft);
  color: var(--green);
}

.billing-toggle__opt.active .billing-badge {
  background: rgba(26, 19, 6, 0.15);
  color: #1a1306;
}

.billing-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.pricing {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.plan--featured {
  background: linear-gradient(180deg, rgba(216, 183, 101, 0.1), var(--surface) 40%);
  border-color: rgba(216, 183, 101, 0.4);
  box-shadow: var(--glow);
}

@media (min-width: 900px) {
  .plan--featured { transform: scale(1.04); z-index: 1; }
}

.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f0d99a, var(--gold-2));
  color: #1a1306;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.plan__name { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
.plan__desc { color: var(--muted); font-size: 0.88rem; margin-top: 4px; min-height: 38px; }

.plan__price { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; }
.plan__price b { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; }
.plan__price span { color: var(--muted); font-weight: 600; }

.plan__price-old {
  width: 100%;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}

.plan__billed {
  min-height: 0;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.plan__billed:empty { display: none; }

.plan__setup {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ink-2);
}
.plan__setup b { color: var(--gold); }

.plan__anchor {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.plan__anchor s { color: var(--muted); }

.plan__list { margin-top: 22px; display: grid; gap: 12px; flex: 1; }

.plan__feat {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.plan__feat [data-lucide] { width: 18px; height: 18px; color: var(--gold); flex: 0 0 18px; margin-top: 2px; }

.plan .btn { margin-top: 24px; }

/* ---------- Garantia ---------- */
.guarantee {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.guarantee__seal {
  flex: 0 0 70px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(216, 183, 101, 0.3);
  color: var(--gold);
  display: grid;
  place-items: center;
}

.guarantee__seal [data-lucide] { width: 32px; height: 32px; }
.guarantee b { font-size: 1.05rem; }
.guarantee p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 28px; display: grid; gap: 12px; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1rem;
}

.faq__q [data-lucide] { width: 20px; height: 20px; color: var(--gold); transition: transform 0.3s ease; flex: 0 0 20px; }
.faq__item.open .faq__q [data-lucide] { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq__item.open .faq__a { max-height: 320px; }
.faq__a-inner { padding: 0 22px 20px; }

/* ---------- CTA final ---------- */
.final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(216, 183, 101, 0.1), var(--surface));
  border: 1px solid rgba(216, 183, 101, 0.28);
  border-radius: var(--r-xl);
  padding: 52px 28px;
  margin-block: 20px;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .h-title {
  max-width: 520px;
  margin-inline: auto;
}

.final-cta .h-sub {
  max-width: 460px;
  margin-inline: auto;
  text-align: center;
  line-height: 1.65;
}

.final-cta__action {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 36px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 700px) {
  .footer__grid { flex-direction: row; justify-content: space-between; align-items: center; }
}

.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a:hover { color: var(--ink); }

/* ==========================================================================
   Checkout / Criar conta (modo foco)
   ========================================================================== */
.co-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 7, 11, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.co-backdrop.show { opacity: 1; visibility: visible; }

.co {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: 95;
  width: calc(100% - 28px);
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.co.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

body.co-open { overflow: hidden; }

.co__close {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  right: 16px;
  z-index: 96;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}
.co__close.show { opacity: 1; visibility: visible; }

.co__progress { height: 5px; background: var(--surface-2); border-radius: var(--r-pill); overflow: hidden; }
.co__progress i {
  display: block; height: 100%; width: 33%;
  background: linear-gradient(90deg, #f0d99a, var(--gold-2));
  border-radius: var(--r-pill);
  transition: width 0.4s ease;
}
.co__count { font-size: 0.76rem; font-weight: 700; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }

.co__step { display: none; animation: coIn 0.35s ease; margin-top: 16px; }
.co__step.active { display: block; }

@keyframes coIn {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

.co__title { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.co__hint { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

/* Resumo do plano */
.co-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold-soft);
  border: 1px solid rgba(216, 183, 101, 0.25);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-top: 16px;
}

.co-summary b { font-size: 1.05rem; }
.co-summary span { color: var(--muted); font-size: 0.8rem; display: block; }
.co-summary .co-summary__price { text-align: right; color: var(--gold); font-weight: 800; }

/* Campos */
.field { margin-top: 14px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 14px 15px;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}
.field input::placeholder { color: #5e6776; }
.field input:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.05); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Métodos de pagamento */
.pay-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

.pay-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 2px solid transparent;
  font-weight: 700;
  color: var(--ink-2);
  transition: all 0.18s ease;
}

.pay-tab [data-lucide] { width: 19px; height: 19px; }
.pay-tab.active { border-color: var(--gold); background: var(--gold-soft); color: var(--gold); }

.pay-panel { display: none; margin-top: 16px; }
.pay-panel.active { display: block; animation: coIn 0.3s ease; }

/* Pix */
.pix-box { text-align: center; }
.pix-qr {
  width: 180px; height: 180px;
  margin: 6px auto 14px;
  border-radius: var(--r);
  background: #fff;
  padding: 12px;
}
.pix-qr img { width: 100%; height: 100%; }
.pix-code {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  margin-top: 6px;
}
.pix-code code {
  flex: 1;
  font-size: 0.78rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, monospace;
}
.pix-code button { color: var(--gold); font-weight: 700; font-size: 0.82rem; display: inline-flex; gap: 5px; align-items: center; }
.pix-code [data-lucide] { width: 16px; height: 16px; }

.pay-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}
.pay-secure [data-lucide] { width: 15px; height: 15px; color: var(--green); }

/* Sucesso */
.co__done { display: none; text-align: center; padding: 10px 0; }
.co__done.active { display: block; animation: coIn 0.4s ease; }
.co__done .check {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.co__done .check [data-lucide] { width: 36px; height: 36px; stroke-width: 2.25; }

/* ---------- Toast ---------- */
.toast-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: calc(14px + env(safe-area-inset-top)) 16px 0;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: var(--r);
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  transform: translateY(-130%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.toast.show { transform: translateY(0); opacity: 1; }

.toast__ic { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.toast__ic [data-lucide] { width: 19px; height: 19px; stroke-width: 2.25; }
.toast--error .toast__ic { background: rgba(248, 113, 113, 0.16); color: var(--danger); }
.toast--success .toast__ic { background: var(--green-soft); color: var(--green); }
.toast--info .toast__ic { background: var(--gold-soft); color: var(--gold); }
.toast__body b { display: block; font-size: 0.92rem; }
.toast__body span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
