/* GIGA+ Design System v2 — corrigido e melhorado */
:root {
  --blue: #0062ff;
  --blue-dark: #003d99;
  --blue-mid: #0050cc;
  --green: #7ed957;
  --green-dark: #56b830;
  --green-light: #e8fbe0;
  --gold: #00a6e8;
  --text: #101010;
  --muted: #6c727f;
  --line: #e3e7f7;
  --bg: #f4f6ff;
  --white: #fff;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 16px 40px rgba(0,61,153,.10);
  --shadow-sm: 0 4px 16px rgba(0,61,153,.07);
  --max: 1140px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
img, video { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none }
button, input, select, textarea { font: inherit }
button { cursor: pointer; border: none; background: none }
ul { margin: 0; padding: 0; list-style: none }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0 }

/* ── Icons ── */
.icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: inherit;
}
.icon svg { width: 100%; height: 100%; display: block }
.icon-lg { width: 28px; height: 28px }
.icon-box {
  width: 48px; height: 48px; border-radius: 16px;
  background: rgba(0,98,255,.09); color: var(--blue-dark);
  display: grid; place-items: center; margin-bottom: 14px;
}
.icon-box .icon { width: 24px; height: 24px }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 18px;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center;
}
.benefit-icon .icon { width: 28px; height: 28px }

/* Card utilitário (identidade) */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* ── Topbar ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  padding: 9px 14px;
  letter-spacing: .01em;
}
.topbar a { color: var(--gold); font-weight: 800; text-decoration: underline; text-underline-offset: 2px }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand img,
.footer-brand img { height: 38px; width: auto; display: block }
.footer-brand img { height: 32px }
.nav { display: flex; gap: 24px; font-weight: 700; font-size: .9rem; color: var(--blue-dark) }
.nav a { transition: color .15s }
.nav a:hover { color: var(--green) }
.header-actions { display: flex; gap: 8px; align-items: center }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(.97) }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(126,217,87,.3) }
.btn-green:hover { background: var(--green-dark); box-shadow: 0 6px 18px rgba(126,217,87,.4) }
.btn-outline { background: transparent; color: var(--blue-dark); border-color: rgba(0,98,255,.25) }
.btn-outline:hover { background: rgba(0,98,255,.05) }
.btn-ghost { background: rgba(0,98,255,.06); color: var(--blue-dark) }
.btn-white { background: #fff; color: var(--blue-dark); font-weight: 800 }
.btn-white:hover { background: #f0f2ff }
.btn-block { width: 100% }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none }
.btn-ico { width: 18px; height: 18px; flex-shrink: 0 }
.btn-wa {
  background: #128c7e; color: #fff;
  box-shadow: 0 4px 14px rgba(18,140,126,.28);
}
.btn-wa:hover { background: #0d7368; box-shadow: 0 6px 18px rgba(18,140,126,.35) }

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0,98,255,.09);
  color: var(--blue-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--blue-dark);
}
.section-lead { margin: 0; color: var(--muted); font-size: 1rem; max-width: 58ch; line-height: 1.7 }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px }
.section { padding: 64px 0 }
.section > .container > .section-head + * { margin-top: 0 }
.section-alt { background: var(--bg) }

/* ── Hero ── */
.hero {
  padding: 28px 0 32px;
  background: linear-gradient(180deg, #eaedff 0%, #fff 70%);
}
.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-banner-main {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(248,195,44,.18);
  border: 1px solid rgba(248,195,44,.45);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-banner h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  max-width: 14ch;
}
.hero-banner h1 em { font-style: normal; color: var(--gold) }
.hero-lead {
  margin: 0 0 24px;
  max-width: 40ch;
  color: rgba(255,255,255,.85);
  font-size: 1.02rem;
  line-height: 1.6;
}
.hero-price-box {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  max-width: 340px;
}
.hero-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.hero-price-val {
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--gold);
  line-height: 1;
}
.hero-price-period {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.hero-price-note {
  margin: 0;
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.45;
}
.hero-price-note strong { color: #fff; font-weight: 700 }
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px }
.hero-plans {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 32px 28px;
  background: rgba(0,0,0,.14);
  border-left: 1px solid rgba(255,255,255,.1);
}
.hero-plans-title {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-plan {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: opacity .15s;
}
.hero-plan:last-child { border-bottom: 0; padding-bottom: 0 }
.hero-plan:first-of-type { padding-top: 0 }
.hero-plan:hover { opacity: .92 }
.hero-plan.hot .hero-plan-name { color: var(--gold) }
.hero-plan-name {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}
.hero-plan-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.35;
}
.hero-plan-price {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--gold);
  white-space: nowrap;
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--blue-dark);
  padding: 20px 0;
  margin-top: 0;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-size: .84rem;
  font-weight: 700;
}

/* ── Value cards ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px }
.value-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow) }
.value-card::before {
  content: "";
  display: block;
  width: 36px; height: 4px;
  border-radius: 999px;
  background: var(--green);
  margin-bottom: 16px;
}
.value-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--blue-dark); font-weight: 800 }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65 }

/* ── Plans ── */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 20px;
}
.plan {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow) }
.plan.hot {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffdf2, #fff 60%);
  box-shadow: 0 12px 40px rgba(248,195,44,.18);
}
.plan.hot:hover { transform: translateY(-4px) }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px;
  background: linear-gradient(90deg, #ff7a18, #e72028);
  color: #fff; font-size: .68rem; font-weight: 900;
  letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(231,32,40,.35);
}
.plan-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px }
.plan-head img { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0 }
.plan-head h3 { margin: 0; font-size: 1.55rem; letter-spacing: -.03em; color: var(--blue-dark); font-weight: 900 }
.plan-head small { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; font-weight: 600 }
.plan-price { margin: 0 0 8px; display: flex; align-items: baseline; gap: 4px }
.plan-price strong { font-size: 2.3rem; letter-spacing: -.06em; color: var(--blue-dark); font-weight: 900 }
.plan-price span { color: var(--muted); font-weight: 700; font-size: .88rem }
.plan-promo {
  padding: 10px 14px; border-radius: 14px; margin-bottom: 16px;
  background: var(--green-light); border: 1px solid rgba(126,217,87,.2);
  color: #3d7a22; font-size: .84rem; font-weight: 700; line-height: 1.5;
}
.plan-feats { flex: 1; margin-bottom: 20px }
.plan-feats li {
  display: flex; gap: 9px; padding: 8px 0;
  border-bottom: 1px dashed var(--line); font-size: .9rem; color: #3b435f;
  align-items: center;
}
.plan-feats li:last-child { border: 0 }
.plan-feats li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231db24e' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── Benefits row ── */
.benefit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.benefit-box {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--blue-dark); color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.benefit-box:hover { transform: translateY(-4px) }
.benefit-box .top {
  min-height: 130px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  padding: 24px;
}
.benefit-box .top img { max-height: 68px; width: auto }
.benefit-box .body { padding: 20px 22px 24px }
.benefit-box h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 800 }
.benefit-box p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.65 }

/* ── Depoimentos ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.rating-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #fff8e6;
  border: 1px solid #fde68a;
  color: #b45309;
  font-size: .78rem;
  font-weight: 800;
}
.testimonial-card p {
  margin: 0 0 16px;
  color: #3b435f;
  font-size: .91rem;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 10px }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 800; letter-spacing: .02em;
  flex-shrink: 0;
}
.t-name { font-weight: 800; font-size: .88rem; color: var(--blue-dark) }
.t-label { font-size: .78rem; color: var(--muted) }

/* ── Split ── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center }
.split-2 .split-lead { margin-bottom: 28px }
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}
.split-img {
  width: 100%;
  height: auto;
  display: block;
}
.split-media-brand {
  background: linear-gradient(140deg, #003d99 0%, #0062ff 55%, #00a6e8 100%);
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 32px;
}
.brand-panel {
  text-align: center;
  color: #fff;
  max-width: 34ch;
}
.brand-panel-kicker {
  margin: 0 0 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.brand-panel h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.brand-panel p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  font-size: .95rem;
}

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px }
.faq details {
  border: 1.5px solid var(--line); border-radius: 16px;
  background: #fff; overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: rgba(0,98,255,.3) }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-weight: 800; color: var(--blue-dark); font-size: .97rem;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none }
.faq .ans { padding: 0 22px 20px; color: var(--muted); font-size: .94rem; line-height: 1.75 }
.faq .ans a { color: var(--blue-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px }
.faq-chevron {
  width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--blue-dark);
  border-bottom: 2px solid var(--blue-dark);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform .2s, border-color .2s;
}
.faq details[open] .faq-chevron { transform: rotate(-135deg); margin-top: 2px; border-color: var(--green) }

/* ── CTA band ── */
.cta {
  border-radius: var(--radius-lg); padding: 52px 36px; text-align: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-dark) 100%);
  color: #fff; box-shadow: var(--shadow);
}
.cta h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -.04em }
.cta p { margin: 0 auto 28px; max-width: 50ch; color: rgba(255,255,255,.82); font-size: 1.02rem }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px }

/* ── Footer ── */
.site-footer {
  padding: 40px 0 28px;
  background: var(--blue-dark);
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 12px }
.footer-brand p { margin: 0; max-width: 32ch; line-height: 1.6 }
.footer-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: flex-end }
.footer-links a { color: rgba(255,255,255,.7); font-weight: 700; transition: color .15s }
.footer-links a:hover { color: var(--gold) }
.footer-copy { grid-column: 1 / -1; color: rgba(255,255,255,.4); font-size: .8rem }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  height: 52px; padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #128c7e; color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(18,140,126,.35);
  border: 2px solid #fff;
  font-size: .86rem; font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0 }
.wa-float:hover { transform: translateY(-2px); background: #0d7368; box-shadow: 0 12px 32px rgba(18,140,126,.45) }
.benefit-label {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -.04em;
  color: rgba(255,255,255,.95);
}

/* ── Wizard/Form ── */
.container-narrow { max-width: 560px }
.page-assine main { padding-bottom: 24px }
.app-shell {
  margin: 16px auto 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.progress { height: 4px; background: #e8edff }
.progress > div { height: 100%; background: var(--green); transition: width .25s ease }
.app-body { padding: 20px 18px 72px }
.step-label { font-size: .72rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px }
.page-assine .form-title { margin: 0 0 4px; font-size: clamp(1.25rem, 3.5vw, 1.55rem); letter-spacing: -.03em; color: var(--blue-dark) }
.form-title { margin: 0 0 8px; font-size: clamp(1.5rem, 4vw, 2rem); letter-spacing: -.03em; color: var(--blue-dark) }
.form-sub { margin: 0 0 16px; color: var(--muted); font-size: .88rem; line-height: 1.5 }
.step-panel { display: none }
.step-panel.on { display: block }
.field { margin-bottom: 12px; width: 100%; min-width: 0 }
.field label { display: block; font-size: .76rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 4px }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}
.form-row .field { margin-bottom: 12px }
.form-row-uf { grid-template-columns: minmax(0, 1fr) 88px }
.input {
  width: 100%; height: 50px; padding: 0 14px;
  border-radius: 14px; border: 1.5px solid var(--line);
  background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
  font-size: .96rem;
}
.input-sm { height: 44px; border-radius: 12px; font-size: .9rem; padding: 0 12px }
.input:focus { border-color: rgba(0,98,255,.4); box-shadow: 0 0 0 3px rgba(0,98,255,.09) }
.input:disabled { background: #f4f6ff; color: #8a96ab }
.hint { margin-top: 4px; font-size: .78rem; color: var(--muted); min-height: 1.1em }
.hint.ok { color: var(--green) }
.hint.err { color: #d93025 }
.submit-progress {
  margin-top: 14px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(0,98,255,.04);
  border: 1px solid rgba(0,98,255,.1);
}
.submit-progress-track {
  height: 6px;
  border-radius: 999px;
  background: #e8edff;
  overflow: hidden;
}
.submit-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-dark), var(--green));
  transition: width .55s ease;
}
.submit-progress-lbl {
  margin: 10px 0 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.4;
  min-height: 1.2em;
}
.sticky-foot {
  position: sticky; bottom: 0; z-index: 10;
  margin: 16px -18px -72px; padding: 12px 18px 14px;
  background: linear-gradient(0deg, #fff 75%, rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.page-assine .btn { padding: 10px 18px; font-size: .86rem }

.plan-pick { display: grid; gap: 10px; margin-top: 4px }
.plan-pick .pick {
  padding: 16px 18px; border-radius: 16px;
  border: 2px solid var(--line); cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px 14px;
  align-items: start;
}
.plan-pick .pick.sel {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(126,217,87,.08);
  background: #f8fffb;
}
.plan-pick .pick.hot-card { background: linear-gradient(90deg, #fffdf4, #fff) }
.pick-img { grid-row: 1 / 4; width: 52px; height: 52px; object-fit: contain }
.pick-head { display: contents }
.pick-name { font-size: 1rem; font-weight: 900; color: var(--blue-dark); align-self: end }
.pick-upload { font-size: .78rem; font-weight: 600; color: var(--muted) }
.pick-feats { grid-column: 2 / 4; font-size: .76rem; color: #4a5568; line-height: 1.45; margin-top: 2px }
.pick-feats span { display: inline }
.pick-feats span + span::before { content: " · "; color: var(--muted) }
.pick-price { grid-column: 3; grid-row: 1 / 3; text-align: right; align-self: center }
.pick-price strong { display: block; font-size: 1.2rem; font-weight: 900; color: var(--blue-dark); letter-spacing: -.04em; line-height: 1 }
.pick-price small { font-size: .7rem; color: var(--muted); font-weight: 700 }
.pick-promo {
  grid-column: 2 / 4;
  margin-top: 4px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--green-light);
  border: 1px solid rgba(126,217,87,.2);
  color: #3d7a22;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.4;
}
.pick-badge {
  grid-column: 2;
  font-size: .68rem;
  font-weight: 800;
  color: #c45a00;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 2px;
}
.order-summary {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--green-light);
  border: 1px solid rgba(126,217,87,.2);
  color: #3d7a22;
  font-size: .82rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.order-summary strong { color: #2d5a18 }

.success-view { display: none; text-align: center; padding: 32px 16px 40px }
.success-view.on { display: block }
.page-assine .success-view .form-title { font-size: 1.4rem }
.wizard-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  margin-bottom: 18px;
}
.wizard-steps.cols-3 { grid-template-columns: repeat(3, 1fr) }
.page-assine .doc-pills {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-bottom: 14px;
}
.page-assine .doc-pill {
  text-align: center; padding: 7px 4px; border-radius: 10px;
  font-size: .68rem; font-weight: 800; color: var(--muted);
  background: rgba(0,98,255,.05); border: 1px solid var(--line);
}
.page-assine .doc-pill.on { background: rgba(0,98,255,.08); color: var(--blue-dark); border-color: rgba(0,98,255,.2) }
.page-assine .doc-pill.ok { background: var(--green-light); color: #3d7a22; border-color: rgba(126,217,87,.25) }
.page-assine .step-docs .form-title { font-size: clamp(1.15rem, 3.2vw, 1.4rem) }
.page-assine .step-docs .capture { border-radius: 16px }
.page-assine .step-docs .capture-actions .btn { padding: 12px 10px; font-size: .84rem }
.page-assine.step-docs-active .sticky-foot { display: none }
.page-assine.step-docs-active .app-body { padding-bottom: 24px }
.page-assine .doc-panel { display: none }
.page-assine .doc-panel.on { display: block }
.wizard-step {
  text-align: center; padding: 8px 6px; border-radius: 12px;
  font-size: .7rem; font-weight: 800; color: var(--muted);
  background: var(--bg); border: 1px solid var(--line);
  transition: background .15s, color .15s, border-color .15s;
}
.wizard-step.on { background: rgba(0,98,255,.08); color: var(--blue-dark); border-color: rgba(0,98,255,.2) }
.wizard-step.done { background: var(--green-light); color: #3d7a22; border-color: rgba(126,217,87,.25) }
.success-ico {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231db24e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px;
}

.defer-section { content-visibility: auto; contain-intrinsic-size: auto 500px }

@media (max-width: 960px) {
  .nav { display: none }
  .hero-banner { grid-template-columns: 1fr }
  .hero-banner-main { padding: 32px 24px 24px }
  .hero-banner h1 { max-width: none }
  .hero-plans {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 20px;
  }
  .hero-plan { grid-template-columns: 96px 1fr auto }
  .grid-3,
  .plans-row,
  .benefit-row,
  .testimonials { grid-template-columns: 1fr }
  .split-2 { grid-template-columns: 1fr; gap: 32px }
  .split-2 .split-media { order: -1 }
  .footer-inner { grid-template-columns: 1fr }
  .footer-links { justify-content: flex-start }
  .plan-pick { grid-template-columns: 1fr }
}
@media (max-width: 480px) {
  .wizard-step { font-size: .62rem; padding: 7px 3px }
  .page-assine .doc-pill { font-size: .62rem }
}
@media (max-width: 700px) {
  .hero { padding: 16px 0 24px }
  .hero-banner-main { padding: 24px 18px 18px }
  .hero-price-box { max-width: none }
  .form-row,
  .form-row-uf { grid-template-columns: 1fr }
  .wa-float span { display: none }
  .wa-float { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50% }
  .hero-plan { grid-template-columns: 1fr auto; gap: 8px }
  .hero-plan-meta { grid-column: 1 / -1 }
  .plan-pick .pick { grid-template-columns: 44px 1fr; }
  .pick-img { width: 44px; height: 44px }
  .pick-price { grid-column: 2; grid-row: auto; text-align: left; margin-top: 4px }
  .pick-feats, .pick-promo { grid-column: 1 / -1 }
  .section { padding: 48px 0 }
  .section-head { margin-bottom: 32px }
  .sticky-foot { grid-template-columns: 1fr }
  .header-actions .btn-outline { display: none }
  .trust-strip .container { gap: 16px }
  .cta { padding: 36px 20px }
  .plans-row { padding-top: 8px }
}
