/* =================================================================
   ATDS · wpp — aquecimento & BMs WhatsApp API
   Terminal-noir + acento térmico. Sem dependências.
   ================================================================= */

:root {
  --bg:        #070707;
  --bg-2:      #0b0d0c;
  --bg-card:   rgba(18, 22, 20, 0.62);
  --green:     #6BE688;
  --green-hi:  #9CFFB4;
  --green-dim: rgba(107, 230, 136, 0.55);
  --green-04:  rgba(107, 230, 136, 0.04);
  --green-10:  rgba(107, 230, 136, 0.10);
  --green-18:  rgba(107, 230, 136, 0.18);
  --heat:      #FFA94D;
  --heat-hi:   #FFC078;
  --heat-dim:  rgba(255, 169, 77, 0.5);
  --heat-10:   rgba(255, 169, 77, 0.10);
  --heat-18:   rgba(255, 169, 77, 0.18);
  --hot:       #FF6B4A;
  --cream:     #F3EDD8;
  --ink:       #E7ECE7;
  --muted:     rgba(231, 236, 231, 0.56);
  --faint:     rgba(231, 236, 231, 0.30);
  --line:      rgba(107, 230, 136, 0.14);
  --line-heat: rgba(255, 169, 77, 0.18);
  --line-soft: rgba(255, 255, 255, 0.07);

  --font-display: "Chakra Petch", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-body: "Sora", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); line-height: 1.6; font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: var(--heat); color: #1a0d04; }
a { color: inherit; text-decoration: none; }
img, canvas { display: block; max-width: 100%; }

.scan-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--green), var(--heat), var(--hot)); box-shadow: 0 0 12px var(--heat); z-index: 200; transition: width 0.1s linear; }
.fx-grain { position: fixed; inset: 0; z-index: 190; pointer-events: none; opacity: 0.045; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 150; display: flex; align-items: center; gap: 24px; padding: 16px clamp(18px, 4vw, 44px); transition: background 0.4s var(--ease), border-color 0.4s, padding 0.4s var(--ease); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,7,7,0.78); backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); padding-top: 11px; padding-bottom: 11px; }
.brand { display: inline-flex; align-items: baseline; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.12em; font-size: 1.2rem; }
.brand-mark { color: var(--cream); }
.brand-tag { color: var(--green); font-family: var(--font-mono); font-weight: 500; font-size: 0.82em; }
.brand-sub { color: var(--heat); font-family: var(--font-mono); font-size: 0.72em; margin-left: 8px; padding: 2px 8px; border: 1px solid var(--line-heat); border-radius: 6px; letter-spacing: 0.14em; }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-family: var(--font-mono); font-size: 0.8rem; }
.nav-links a { color: var(--muted); position: relative; padding: 4px 0; transition: color 0.25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--heat); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; justify-content: center; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em; padding: 12px 22px; border-radius: 9px; cursor: pointer; border: 1px solid transparent; transition: transform 0.2s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(120deg, var(--green), #8CE9A0); color: #04130a; font-weight: 600; }
.btn-primary:hover { box-shadow: 0 10px 34px -10px var(--green); transform: translateY(-2px); }
.btn-line { border-color: var(--heat-dim); color: var(--heat); background: transparent; }
.btn-line:hover { background: var(--heat-10); border-color: var(--heat); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 0.92rem; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.hero-veil { position: absolute; inset: 0; z-index: 2; background: radial-gradient(120% 95% at 75% 12%, transparent 0%, rgba(7,7,7,0.5) 58%, var(--bg) 100%), linear-gradient(180deg, rgba(7,7,7,0.3) 0%, transparent 40%, var(--bg) 100%); }
.hero-inner { position: relative; z-index: 5; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 130px clamp(18px, 4vw, 44px) 90px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; color: var(--heat); border: 1px solid var(--line-heat); border-radius: 100px; padding: 7px 16px; margin-bottom: 28px; background: rgba(255,169,77,0.05); opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--heat); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--heat-dim); } 70% { box-shadow: 0 0 0 9px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.hero-headline { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 5.6vw, 4.4rem); line-height: 1.06; letter-spacing: -0.01em; color: var(--cream); max-width: 20ch; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.3s forwards; }
.hero-headline .h-cold { color: var(--faint); font-weight: 700; }
.hero-headline .h-hot { color: var(--heat); text-shadow: 0 0 34px var(--heat-dim); }
.hero-headline .h-sub { font-size: 0.52em; color: var(--green); font-weight: 600; letter-spacing: 0.01em; }
.hero-lead { max-width: 600px; font-size: clamp(1rem, 2vw, 1.22rem); color: var(--ink); margin-top: 22px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.5s forwards; }
.hero-lead strong { color: var(--heat-hi); font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.66s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* termômetro de tiers no hero */
.tier-meter { max-width: 620px; margin-top: 54px; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.85s forwards; }
.tm-track { height: 10px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-soft); overflow: hidden; }
.tm-fill { height: 100%; width: 0%; border-radius: 6px; background: linear-gradient(90deg, #3d5c46, var(--green) 30%, var(--heat) 68%, var(--hot)); box-shadow: 0 0 18px var(--heat-dim); transition: width 1.2s var(--ease); }
.tm-labels { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--faint); }
.tm-labels span { transition: color 0.4s; }
.tm-labels span.lit { color: var(--heat-hi); }

/* ---------- sections shared ---------- */
.section { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(64px, 10vw, 130px) clamp(18px, 4vw, 44px); }
.section-head { max-width: 780px; margin-bottom: 48px; }
.kicker { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.16em; color: var(--heat); text-transform: uppercase; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4.6vw, 3rem); line-height: 1.08; color: var(--cream); margin: 14px 0 16px; }
.section-sub { color: var(--muted); font-size: clamp(0.98rem, 2vw, 1.1rem); max-width: 680px; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.callout { border: 1px solid var(--line-heat); border-left: 3px solid var(--heat); background: rgba(255,169,77,0.05); border-radius: 12px; padding: 20px 24px; margin-top: 28px; color: var(--muted); }
.callout strong { color: var(--heat-hi); font-weight: 600; }

/* ---------- wizard ---------- */
.wizard-sec { padding-top: clamp(50px, 7vw, 90px); }
.wizard { position: relative; border: 1px solid var(--line); border-radius: 18px; background: rgba(10, 13, 11, 0.8); backdrop-filter: blur(8px); padding: clamp(26px, 5vw, 54px); min-height: 380px; overflow: hidden; box-shadow: 0 40px 90px -50px rgba(0,0,0,0.9); }
.wz-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.05); }
.wz-bar { height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), var(--heat)); transition: width 0.5s var(--ease); }
.wz-step { display: none; }
.wz-step.is-on { display: block; animation: wzIn 0.45s var(--ease); }
@keyframes wzIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.wz-q { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 3vw, 1.7rem); color: var(--cream); margin-bottom: 26px; }
.wz-n { font-family: var(--font-mono); color: var(--heat); font-size: 0.8em; margin-right: 10px; }
.wz-opts { display: grid; gap: 12px; max-width: 640px; }
.wz-opt { text-align: left; font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: rgba(255,255,255,0.02); border: 1px solid var(--line-soft); border-radius: 12px; padding: 17px 20px; cursor: pointer; transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease); }
.wz-opt:hover { border-color: var(--heat-dim); background: var(--heat-10); transform: translateX(6px); }
.wz-form { display: grid; gap: 14px; max-width: 460px; }
.wz-form input { font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); border-radius: 10px; padding: 15px 18px; outline: none; transition: border-color 0.25s; }
.wz-form input:focus { border-color: var(--heat-dim); }
.wz-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.wz-back { position: absolute; bottom: 18px; left: 24px; background: none; border: 0; color: var(--faint); font-family: var(--font-mono); font-size: 0.78rem; cursor: pointer; display: none; transition: color 0.25s; }
.wz-back:hover { color: var(--heat); }
.wz-back.show { display: block; }

/* resultado */
.wr-head { margin-bottom: 26px; }
.wr-head h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--cream); margin-top: 10px; }
.wr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 14px; }
.wr-card { border: 1px solid var(--line-soft); border-radius: 12px; padding: 20px; background: rgba(255,255,255,0.02); }
.wr-card h5 { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--heat); margin-bottom: 10px; }
.wr-card p { color: var(--muted); font-size: 0.9rem; }
.wr-main { border-color: var(--line-heat); background: linear-gradient(160deg, rgba(255,169,77,0.08), rgba(255,255,255,0.01)); }
.wr-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--heat); }
.wr-main h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--cream); margin: 8px 0 8px; }
.wr-main p { color: var(--muted); font-size: 0.9rem; }
.wr-price { margin-top: 16px; }
.wr-price span { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--heat-hi); }
.wr-price em { display: block; font-style: normal; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint); margin-top: 2px; }
.wr-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.wr-note { font-family: var(--font-mono); font-size: 0.76rem; color: var(--faint); margin-top: 16px; }
.btn-ghost-2 { border-color: var(--line-soft); color: var(--muted); background: transparent; }
.btn-ghost-2:hover { border-color: var(--line-heat); color: var(--heat); }
.wr-linkout { display: block; width: 100%; max-width: 640px; margin-top: 14px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--heat-hi); background: rgba(255,255,255,0.03); border: 1px dashed var(--line-heat); border-radius: 8px; padding: 11px 14px; outline: none; }
@media (max-width: 900px) { .wr-grid { grid-template-columns: 1fr 1fr; } .wr-main { grid-column: span 2; } }
@media (max-width: 560px) { .wr-grid { grid-template-columns: 1fr; } .wr-main { grid-column: span 1; } }

/* ---------- método ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 28px 24px; transition: transform 0.4s var(--ease), border-color 0.4s; overflow: hidden; }
.step-card::before { content: attr(data-n); position: absolute; top: 14px; right: 18px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint); }
.step-card::after { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--green), var(--heat)); transition: width 0.5s var(--ease); }
.step-card:hover { transform: translateY(-6px); border-color: var(--line-heat); }
.step-card:hover::after { width: 100%; }
.step-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--cream); margin-bottom: 12px; }
.step-card p { color: var(--muted); font-size: 0.9rem; }
.step-card strong { color: var(--heat-hi); font-weight: 500; }
@media (max-width: 980px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- escada de tiers ---------- */
.tier-ladder { display: grid; gap: 10px; }
.tl-row { display: flex; align-items: baseline; gap: 22px; border: 1px solid var(--line-soft); border-radius: 12px; padding: 18px 22px; background: var(--bg-card); position: relative; overflow: hidden; transition: transform 0.3s var(--ease), border-color 0.3s; }
.tl-row::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--tc, var(--green)); opacity: 0.85; }
.tl-row[data-heat="0"] { --tc: #55655b; }
.tl-row[data-heat="1"] { --tc: var(--green); }
.tl-row[data-heat="2"] { --tc: #cfd867; }
.tl-row[data-heat="3"] { --tc: var(--heat); }
.tl-row[data-heat="4"] { --tc: var(--hot); }
.tl-row:hover { transform: translateX(8px); border-color: var(--tc); }
.tl-row b { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.6vw, 1.5rem); color: var(--tc, var(--cream)); min-width: 172px; }
.tl-row span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 640px) { .tl-row { flex-direction: column; gap: 6px; } .tl-row b { min-width: 0; } }

/* ---------- FAST vs SEGURO ---------- */
.ramp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ramp-card { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 32px 28px; transition: transform 0.4s var(--ease), border-color 0.4s; }
.ramp-card:hover { transform: translateY(-6px); }
.ramp-card.is-featured { border-color: var(--line-heat); background: linear-gradient(170deg, rgba(255,169,77,0.07), var(--bg-card)); }
.ramp-tag { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; padding: 5px 12px; border-radius: 100px; }
.ramp-fast { color: var(--hot); border: 1px solid rgba(255,107,74,0.4); }
.ramp-seguro { color: var(--green); border: 1px solid var(--line); }
.ramp-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--cream); margin: 16px 0 10px; }
.ramp-card p { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; }
.ramp-card ul { list-style: none; display: grid; gap: 8px; }
.ramp-card li { font-family: var(--font-mono); font-size: 0.8rem; color: var(--ink); padding-left: 18px; position: relative; }
.ramp-card li::before { content: "▸"; position: absolute; left: 0; color: var(--heat); }
@media (max-width: 820px) { .ramp-grid { grid-template-columns: 1fr; } }

/* ---------- investimento ---------- */
.invest-meta { margin-bottom: 40px; }
.invest-meta h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--cream); margin-bottom: 16px; }
.invest-meta h3 em { font-style: normal; font-family: var(--font-mono); font-size: 0.72rem; color: var(--faint); font-weight: 400; }
.tbl { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.tbl th, .tbl td { border: 1px solid var(--line-soft); padding: 12px 14px; text-align: left; }
.tbl th { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--heat); background: rgba(255,169,77,0.05); }
.tbl td { color: var(--muted); }
.tbl td b { color: var(--cream); }
.tbl-note { font-size: 0.84rem; color: var(--faint); margin-top: 12px; max-width: 720px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--bg-card); padding: 32px 26px; transition: transform 0.4s var(--ease), border-color 0.4s; }
.plan-card:hover { transform: translateY(-6px); border-color: var(--line-heat); }
.plan-card.is-featured { border-color: var(--heat-dim); background: linear-gradient(170deg, rgba(255,169,77,0.09), var(--bg-card)); box-shadow: 0 30px 70px -45px var(--heat); }
.plan-tag { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.24em; color: var(--heat); }
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 2.3rem; color: var(--cream); margin: 12px 0 4px; }
.plan-what { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; min-height: 44px; }
.plan-what b { color: var(--heat-hi); }
.plan-card ul { list-style: none; display: grid; gap: 9px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
.plan-card li { font-size: 0.86rem; color: var(--muted); padding-left: 20px; position: relative; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-family: var(--font-mono); }
.plan-card li strong { color: var(--ink); }
.plans-foot { margin-top: 24px; font-size: 0.88rem; color: var(--faint); }
.plans-foot b { color: var(--heat-hi); }
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } .plan-what { min-height: 0; } }

/* ---------- compliance ---------- */
.never-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.never { border: 1px solid var(--line-soft); border-radius: 12px; padding: 22px; background: var(--bg-card); display: flex; flex-direction: column; gap: 8px; transition: border-color 0.3s, transform 0.3s var(--ease); }
.never:hover { border-color: rgba(255,107,74,0.4); transform: translateY(-4px); }
.never b { font-family: var(--font-display); font-weight: 600; color: var(--cream); font-size: 0.98rem; }
.never span { color: var(--muted); font-size: 0.86rem; }
@media (max-width: 900px) { .never-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .never-grid { grid-template-columns: 1fr; } }
.kpi-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; border-top: 1px solid var(--line-soft); padding-top: 30px; }
.kpi-strip div { display: flex; flex-direction: column; gap: 4px; }
.kpi-strip b { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--heat-hi); }
.kpi-strip span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }
@media (max-width: 640px) { .kpi-strip { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } }

/* ---------- gate: wizard-first ---------- */
.gated #metodo, .gated #tiers, .gated #planos, .gated #investimento,
.gated #compliance, .gated .final-cta { display: none; }
.gated .nav-links { display: none; }
.gated .wr-unlocked { display: none; }
.gate-hint { font-family: var(--font-mono); font-size: 0.74rem; color: var(--faint); align-self: center; max-width: 260px; line-height: 1.6; }
.wr-unlocked { margin-top: 20px; font-family: var(--font-mono); font-size: 0.82rem; color: var(--green); border-top: 1px solid var(--line-soft); padding-top: 18px; }
.wr-fast { margin-top: 14px; font-size: 0.86rem; color: var(--muted); border: 1px dashed rgba(255,107,74,0.4); border-radius: 10px; padding: 12px 14px; }
.wr-fast b { color: var(--hot); font-weight: 600; }
@keyframes gateIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
body:not(.gated) .gate-open { animation: gateIn 0.7s var(--ease); }

/* ---------- planos 2 colunas + linhas de preço ---------- */
.plans-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .plans-2 { grid-template-columns: 1fr; } }
.plan-tag-fast { color: var(--hot); }
.price-rows { display: grid; gap: 8px; margin: 16px 0 20px; }
.price-rows div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px 16px; background: rgba(255,255,255,0.02); }
.price-rows span { color: var(--muted); font-size: 0.88rem; }
.price-rows i { font-style: normal; color: var(--heat-hi); }
.price-rows b { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--cream); white-space: nowrap; }

/* ---------- turnkey (passo 5) ---------- */
.wz-hint { color: var(--muted); font-size: 0.92rem; margin: -14px 0 22px; max-width: 620px; }
.wz-badge { font-family: var(--font-mono); font-size: 0.72rem; color: var(--heat); border: 1px solid var(--line-heat); border-radius: 100px; padding: 2px 9px; margin-left: 8px; }

/* ---------- seta bounce no resultado ---------- */
.wr-scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 28px; cursor: pointer; color: var(--heat); font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.03em; }
.wr-scroll:hover { color: var(--heat-hi); }
.wr-arrow { font-size: 1.7rem; line-height: 1; animation: bounceDown 1.4s var(--ease) infinite; }
@keyframes bounceDown { 0%, 100% { transform: translateY(0); opacity: 0.55; } 50% { transform: translateY(12px); opacity: 1; } }

/* ---------- bloco de proposta (em #investimento) ---------- */
.proposta { border: 1px solid var(--line-heat); border-radius: 16px; background: linear-gradient(170deg, rgba(255,169,77,0.08), var(--bg-card)); padding: clamp(24px, 4vw, 40px); margin-bottom: 36px; box-shadow: 0 30px 70px -50px var(--heat); }
.proposta h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3.6vw, 2.1rem); color: var(--cream); margin: 8px 0 22px; }
.prop-rows { display: grid; gap: 10px; }
.prop-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 1px dashed var(--line-soft); padding-bottom: 12px; }
.prop-row span { color: var(--muted); font-size: 0.96rem; }
.prop-row span em { font-style: normal; color: var(--faint); font-size: 0.82rem; }
.prop-row b { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--cream); white-space: nowrap; }
.prop-row b s { color: var(--faint); font-size: 0.7em; font-weight: 400; margin-right: 6px; }
.prop-meta b { color: var(--heat-hi); }
.prop-op b { color: var(--heat); font-size: 1.2rem; }
.prop-disc { border: 0; padding-bottom: 4px; }
.prop-disc span { color: var(--green); } .prop-disc b { font-size: 1rem; color: var(--green); }
.prop-total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-top: 8px; padding-top: 14px; }
.prop-total span { color: var(--ink); font-weight: 500; } .prop-total span em { font-style: normal; color: var(--faint); font-size: 0.82rem; font-weight: 300; }
.prop-total b { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--heat); white-space: nowrap; }
.prop-fast { margin-top: 16px; font-size: 0.9rem; color: var(--muted); border: 1px dashed rgba(255,107,74,0.4); border-radius: 10px; padding: 11px 14px; }
.prop-fast b { color: var(--hot); }
.prop-note { margin-top: 16px; font-size: 0.86rem; color: var(--faint); line-height: 1.7; }
.prop-note strong { color: var(--muted); }
.prop-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.prop-cta-note { margin-top: 11px; font-size: 0.82rem; color: var(--faint); line-height: 1.55; }
.prop-cta-note strong { color: var(--green); }
.prop-links { margin-top: 14px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.prop-links-sep { color: var(--line); }
.linklike { background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-heat); transition: color 0.2s; }
.linklike:hover { color: var(--heat); }

/* objetivo: de onde parte → até a meta */
.prop-goal { border: 1px solid var(--line); border-radius: 13px; background: rgba(107,230,136,0.04); padding: 16px 18px; margin-bottom: 20px; }
.pg-kick { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); }
.pg-flow { display: flex; align-items: stretch; gap: 12px; margin-top: 12px; }
.pg-node { flex: 1; border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px 14px; background: rgba(255,255,255,0.02); display: flex; flex-direction: column; gap: 5px; }
.pg-node-to { border-color: var(--line-heat); background: linear-gradient(160deg, rgba(255,169,77,0.08), rgba(255,255,255,0.01)); }
.pg-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; color: var(--faint); }
.pg-node-to .pg-tag { color: var(--heat); }
.pg-node b { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--cream); line-height: 1.3; }
.pg-arrow { align-self: center; color: var(--heat); font-family: var(--font-mono); font-size: 1.4rem; }
.pg-path { margin-top: 12px; font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 560px) { .pg-flow { flex-direction: column; } .pg-arrow { transform: rotate(90deg); } }

/* seletor de ritmo SEGURO / FAST */
.prop-choose { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.prop-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.prop-mode { position: relative; display: flex; flex-direction: column; gap: 7px; text-align: left; cursor: pointer; border: 1px solid var(--line-soft); border-radius: 13px; background: rgba(6,8,7,0.55); padding: 15px 17px; transition: border-color 0.25s, background 0.25s, transform 0.2s var(--ease); }
.prop-mode:hover { transform: translateY(-2px); border-color: rgba(107,230,136,0.4); }
.prop-mode.is-on { border-color: rgba(107,230,136,0.55); background: rgba(107,230,136,0.07); }
.prop-mode.is-on::after { content: "✓ selecionado"; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; color: var(--green); }
.prop-mode.is-off { opacity: 0.4; cursor: not-allowed; }
.prop-mode.is-off:hover { transform: none; border-color: var(--line-soft); }
.pm-top { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.pm-top b { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--cream); letter-spacing: 0.02em; }
.pm-badge { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); border: 1px solid var(--line); border-radius: 100px; padding: 2px 8px; }
.pm-badge-fast { color: var(--hot); border-color: rgba(255,107,74,0.4); }
.pm-sub { color: var(--muted); font-size: 0.81rem; line-height: 1.45; }
.prop-fastnote { font-size: 0.83rem; color: var(--muted); border: 1px dashed rgba(255,107,74,0.4); border-radius: 10px; padding: 11px 14px; margin: 12px 0 2px; line-height: 1.55; }
.prop-fastnote b { color: var(--hot); }

/* cenários de custo Meta, dentro do box da proposta (menos ênfase) */
.prop-scenarios { margin-top: 22px; border-top: 1px solid var(--line-soft); padding-top: 20px; }
.ps-head { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--cream); margin-bottom: 8px; }
.ps-head em { font-style: normal; font-family: var(--font-mono); font-size: 0.72rem; color: var(--heat); font-weight: 400; letter-spacing: 0.02em; }
.ps-sub { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 13px; }
.ps-sub b { color: var(--cream); }
.tbl-sm { font-size: 0.84rem; }
.tbl-sm th, .tbl-sm td { padding: 9px 12px; }
.tbl-sm .ps-you td { background: rgba(255,169,77,0.06); }
.tbl-sm .ps-you td b { color: var(--heat-hi); }
.ps-note { font-size: 0.8rem; color: var(--faint); margin-top: 11px; line-height: 1.65; }
.ps-note b { color: var(--muted); }

/* orçamento final (abaixo da tabela de cenários) */
.prop-orcamento { margin-top: 22px; border: 1px solid var(--line-heat); border-radius: 12px; background: rgba(255,169,77,0.05); padding: 16px 18px; }
.prop-orcamento .prop-total { margin-top: 0; padding-top: 0; }
.orc-note { font-size: 0.8rem; color: var(--faint); line-height: 1.6; margin-top: 9px; }
.orc-note b { color: var(--muted); }
@media (max-width: 560px) { .prop-modes { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .prop-row, .prop-total { flex-direction: column; gap: 4px; } .prop-row b, .prop-total b { align-self: flex-start; } }

/* ---------- página de contratação ---------- */
.ob { max-width: 880px; margin: 0 auto; padding: 120px clamp(16px, 4vw, 44px) 80px; }
.ob-head { margin-bottom: 30px; }
.ob-head h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 5vw, 3rem); color: var(--cream); line-height: 1.06; margin: 12px 0 14px; }
.ob-sub { color: var(--muted); max-width: 660px; }
.ob-summary { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ob-chip { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); border: 1px solid var(--line-soft); border-radius: 100px; padding: 6px 13px; }
.ob-chip-hot { color: var(--heat); border-color: var(--line-heat); }
.ob-form { display: grid; gap: 18px; }
.ob-sec { border: 1px solid var(--line-soft); border-radius: 14px; background: var(--bg-card); padding: 22px 22px 24px; }
.ob-sec legend { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--heat); padding: 0 8px; }
.ob-hint { color: var(--faint); font-size: 0.84rem; margin: 4px 0 16px; }
.ob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ob-f { display: flex; flex-direction: column; gap: 6px; }
.ob-f.ob-2 { grid-column: span 2; }
.ob-f.ob-uf { max-width: 90px; } .ob-f.ob-cep { max-width: 170px; }
.ob-f span { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }
.ob-f span i { color: var(--heat); font-style: normal; }
.ob-f input, .ob-f textarea { font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); background: rgba(255,255,255,0.03); border: 1px solid var(--line-soft); border-radius: 9px; padding: 12px 14px; outline: none; transition: border-color 0.25s; }
.ob-f input:focus, .ob-f textarea:focus { border-color: var(--heat-dim); }
.ob-radios { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 6px; }
.ob-radios label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--ink); cursor: pointer; }
.ob-accept { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.ob-accept input { margin-top: 3px; }
.ob-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ob-err { color: #ff6b6b; font-family: var(--font-mono); font-size: 0.82rem; }
.ob-done { text-align: center; max-width: 560px; margin: 8vh auto; }
.ob-check { width: 70px; height: 70px; border-radius: 50%; background: var(--green-10); border: 1px solid var(--green-dim); color: var(--green); font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.ob-done h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--cream); margin-bottom: 12px; }
.ob-done p { color: var(--muted); margin-bottom: 24px; }
.ob-done .btn { margin: 0 6px 10px; }
@media (max-width: 560px) { .ob-grid { grid-template-columns: 1fr; } .ob-f.ob-2 { grid-column: span 1; } }

/* ---------- final + footer ---------- */
.final-cta { border-top: 1px solid var(--line-soft); }
.footer { border-top: 1px solid var(--line); max-width: var(--maxw); margin: 0 auto; padding: 36px clamp(18px, 4vw, 44px) 42px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.74rem; color: var(--faint); }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--heat); }
.footer-legal { margin-top: 18px; font-size: 0.72rem; color: var(--faint); max-width: 860px; line-height: 1.7; }
