/* ============================================================
   BPC / LOAS — Landing Page  •  Dr. Agapito Sátiro
   Sistema visual: Autoridade jurídica + urgência  •  Dourado / Branco
   ============================================================ */

:root {
  /* Papel e tinta (brancos quentes, pretos quentes) */
  --paper:      oklch(0.993 0.004 85);
  --cream:      oklch(0.974 0.012 84);
  --cream-2:    oklch(0.957 0.016 82);
  --ink:        oklch(0.245 0.012 62);
  --ink-soft:   oklch(0.435 0.013 64);
  --ink-faint:  oklch(0.60 0.012 66);

  /* Dourado (marca) */
  --gold:       oklch(0.715 0.105 78);
  --gold-deep:  oklch(0.565 0.088 68);
  --gold-bright:oklch(0.815 0.11 84);
  --gold-tint:  oklch(0.965 0.028 86);
  --gold-tint2: oklch(0.935 0.045 86);

  /* Seções escuras (espresso quente) */
  --espresso:   oklch(0.255 0.022 58);
  --espresso-2: oklch(0.205 0.020 56);
  --on-dark:    oklch(0.965 0.010 84);
  --on-dark-soft: oklch(0.78 0.014 78);

  --line:       oklch(0.885 0.013 82);
  --line-soft:  oklch(0.925 0.010 84);

  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 56px);

  --serif: "Spectral", "Source Serif 4", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px oklch(0.4 0.02 70 / 0.06), 0 4px 14px oklch(0.4 0.02 70 / 0.07);
  --shadow-md: 0 6px 22px oklch(0.4 0.03 70 / 0.10), 0 24px 48px oklch(0.4 0.03 70 / 0.09);
  --shadow-gold: 0 8px 26px oklch(0.62 0.10 72 / 0.32);
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: -0.003em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08;
  letter-spacing: -0.018em; text-wrap: balance; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 26px; height: 1.5px; background: var(--gold);
  display: inline-block;
}

p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-soft); line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 800px; }

section { position: relative; }
.section-pad { padding-block: clamp(64px, 8vw, 128px); }
.section-pad-sm { padding-block: clamp(48px, 6vw, 88px); }

.bg-cream { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-dark { background:
  radial-gradient(120% 90% at 85% -10%, oklch(0.32 0.03 60) 0%, transparent 55%),
  var(--espresso); color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--on-dark); }

/* divisores dourados finos */
.hr-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); border: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  letter-spacing: -0.01em;
  padding: 1.05em 1.7em; border-radius: 999px;
  cursor: pointer; border: 0;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  min-height: 56px; text-align: center;
}
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn-wa {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: oklch(0.28 0.04 64);
  box-shadow: var(--shadow-gold);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 34px oklch(0.62 0.10 72 / 0.42); }
.btn-wa:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-dark-ghost { background: transparent; color: var(--on-dark); border: 1.5px solid oklch(0.5 0.02 70 / 0.5); }
.btn-dark-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-block { width: 100%; }

.cta-micro {
  font-size: 0.84rem; color: var(--ink-faint); margin-top: 0.85rem;
  display: flex; flex-wrap: wrap; gap: 0.35em 0.9em; align-items: center;
}
.cta-micro .dot { color: var(--gold); }
.bg-dark .cta-micro { color: var(--on-dark-soft); }

/* ---------- Badge / pílulas ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 0.5em 0.95em; border-radius: 999px;
  background: var(--gold-tint); color: var(--gold-deep);
  border: 1px solid var(--gold-tint2);
}
.badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 oklch(0.715 0.105 78 / 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.715 0.105 78 / 0.55); }
  70% { box-shadow: 0 0 0 9px oklch(0.715 0.105 78 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.715 0.105 78 / 0); }
}

/* ---------- Topbar ---------- */
.topbar {
  position: relative; z-index: 30;
  background: var(--espresso-2); color: var(--on-dark);
  font-size: 0.82rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 0.7rem; }
.topbar .brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; }
.topbar .logo-slot { width: 34px; height: 34px; flex: none; }
.topbar .meta { color: var(--on-dark-soft); display: flex; align-items: center; gap: 0.5em; }
.topbar .meta svg { width: 1em; height: 1em; color: var(--gold-bright); }

/* logo placeholder */
.logo-slot {
  border-radius: 7px;
  background:
    repeating-linear-gradient(45deg, oklch(0.5 0.04 75 / 0.25) 0 5px, transparent 5px 10px),
    oklch(0.4 0.03 70 / 0.4);
  border: 1px dashed oklch(0.7 0.06 78 / 0.55);
  display: grid; place-items: center;
  font-family: ui-monospace, monospace; font-size: 7px; color: var(--gold-bright);
  text-align: center; line-height: 1.1; overflow: hidden;
}

/* ---------- Hero ---------- */
.hero { background:
  radial-gradient(120% 80% at 100% 0%, var(--gold-tint) 0%, transparent 50%),
  radial-gradient(90% 60% at 0% 100%, var(--cream) 0%, transparent 60%),
  var(--paper);
  overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(40px, 6vw, 88px); }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(2.5rem, 1.6rem + 4vw, 4.4rem); margin-top: 1.1rem; }
.hero h1 .big { display: block; color: var(--gold-deep); font-size: 1.18em; line-height: 0.98; }
.hero h1 .lt { font-weight: 500; }
.hero .lead { margin-top: 1.4rem; max-width: 32ch; }
.hero-cta { margin-top: 2rem; }
.hero-trust { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.86rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 0.05em; font-size: 0.95rem; }

/* foto do advogado */
.hero-photo { position: relative; }
.photo-slot {
  position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, oklch(0.9 0.02 80) 0 12px, oklch(0.93 0.015 82) 12px 24px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
}
.photo-slot .ph-label {
  font-family: ui-monospace, monospace; font-size: 0.72rem; color: var(--ink-faint);
  background: var(--paper); padding: 0.5em 0.9em; border-radius: 999px; border: 1px solid var(--line);
}
.photo-nameplate {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  background: oklch(0.22 0.02 60 / 0.86); color: var(--on-dark);
  backdrop-filter: blur(8px);
  border-radius: 12px; padding: 0.85rem 1.05rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.photo-nameplate .seal { width: 38px; height: 38px; flex: none; border-radius: 50%;
  border: 1.5px solid var(--gold-bright); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: var(--gold-bright); font-size: 0.95rem; }
.photo-nameplate .nm { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; line-height: 1.1; }
.photo-nameplate .oab { font-size: 0.76rem; color: var(--on-dark-soft); letter-spacing: 0.02em; }
.hero-badge-float {
  position: absolute; top: 16px; right: -10px; z-index: 2;
  background: var(--paper); box-shadow: var(--shadow-md);
  border-radius: 14px; padding: 0.75rem 1rem; border: 1px solid var(--gold-tint2);
  text-align: center;
}
.hero-badge-float .n { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-deep); line-height: 1; }
.hero-badge-float .l { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-top: 2px; }

/* ---------- Stats band ---------- */
.stats {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(22px, 3vw, 36px) 1rem; text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--serif); font-weight: 700; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.7rem);
  color: var(--gold-deep); line-height: 1; }
.stat .l { font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.5rem; line-height: 1.3; }

/* ---------- Headings de seção ---------- */
.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; }

/* ---------- Micro-narrativa ---------- */
.micro { background: var(--cream); }
.micro .wrap { max-width: 880px; text-align: center; }
.micro blockquote {
  font-family: var(--serif); font-size: clamp(1.4rem, 1rem + 1.8vw, 2.15rem);
  line-height: 1.32; color: var(--ink); font-weight: 500; letter-spacing: -0.015em;
}
.micro .mark { color: var(--gold-deep); }
.micro .after { margin-top: 1.4rem; font-family: var(--serif); font-style: italic;
  font-size: 1.25rem; color: var(--gold-deep); }
.quote-deco { font-family: var(--serif); font-size: 4rem; color: var(--gold);
  line-height: 0.5; height: 0.5em; display: block; margin-bottom: 0.6rem; }

/* ---------- BPC explainer ---------- */
.bpc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.bpc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-sm);
}
.bpc-card .tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); }
.bpc-card h3 { font-size: 1.5rem; margin: 0.5rem 0 0.9rem; }
.bpc-figure { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 1.3rem;
  padding-top: 1.3rem; border-top: 1px solid var(--line-soft); }
.bpc-figure .v { font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: var(--gold-deep); }
.bpc-figure .vl { font-size: 0.9rem; color: var(--ink-soft); }
.bpc-points { display: grid; gap: 1.1rem; }
.bpc-point { display: flex; gap: 0.9rem; }
.bpc-point .ic { flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-tint); color: var(--gold-deep); display: grid; place-items: center;
  border: 1px solid var(--gold-tint2); }
.bpc-point .ic svg { width: 16px; height: 16px; }
.bpc-point strong { font-weight: 700; }
.bpc-point p { font-size: 0.96rem; color: var(--ink-soft); margin-top: 0.15rem; }

/* ---------- Dor ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 2.6rem; }
.pain-card {
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
}
.pain-card p { color: var(--ink-soft); font-size: 0.98rem; }
.pain-card strong { color: var(--ink); font-weight: 700; display: block; margin-bottom: 0.25rem;
  font-family: var(--serif); font-size: 1.05rem; }
.pain-lead { font-family: var(--serif); font-size: clamp(1.4rem,1.1rem+1.4vw,2rem); color: var(--ink);
  font-weight: 500; }

/* ---------- Solução / passos ---------- */
.steps { display: grid; gap: 1.4rem; margin-top: 2.8rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-items: start;
  padding: 1.6rem 0; border-bottom: 1px solid oklch(0.5 0.02 70 / 0.18); }
.step:last-child { border-bottom: 0; }
.step .num { counter-increment: step; font-family: var(--serif); font-weight: 700;
  font-size: 1.4rem; color: var(--gold-bright); width: 56px; height: 56px; flex: none;
  border: 1.5px solid oklch(0.55 0.05 75 / 0.45); border-radius: 50%; display: grid; place-items: center; }
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.35rem; }
.step p { color: var(--on-dark-soft); margin-top: 0.45rem; max-width: 56ch; }
.solucao-kicker { font-family: var(--serif); font-style: italic; color: var(--gold-bright);
  font-size: clamp(1.3rem,1rem+1.4vw,1.9rem); margin-top: 1.4rem; }

/* ---------- Benefícios ---------- */
.ben-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 2.8rem; }
.ben-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ben-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-tint2); }
.ben-card .ck { width: 34px; height: 34px; border-radius: 9px; background: var(--gold-tint);
  border: 1px solid var(--gold-tint2); display: grid; place-items: center; margin-bottom: 1rem; }
.ben-card .ck svg { width: 18px; height: 18px; color: var(--gold-deep); }
.ben-card h3 { font-size: 1.18rem; }
.ben-card p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.45rem; }

/* ---------- Prova social ---------- */
.tband { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 3rem; }
.tband .t { text-align: center; padding: 1.4rem 0.6rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px; }
.tband .t .n { font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem,1.2rem+1.4vw,2.3rem);
  color: var(--gold-deep); line-height: 1; }
.tband .t .l { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.45rem; line-height: 1.3; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.testi.feature { grid-column: span 2; background: var(--espresso); color: var(--on-dark); border: 0; }
.testi .stars { margin-bottom: 0.9rem; }
.testi blockquote { font-family: var(--serif); font-size: 1.1rem; line-height: 1.45; color: var(--ink); flex: 1; }
.testi.feature blockquote { color: var(--on-dark); font-size: 1.3rem; }
.testi .who { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.3rem;
  padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.testi.feature .who { border-top-color: oklch(0.5 0.02 70 / 0.3); }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: repeating-linear-gradient(135deg, oklch(0.88 0.02 80) 0 6px, oklch(0.92 0.015 82) 6px 12px);
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: ui-monospace, monospace; font-size: 6px; color: var(--ink-faint); text-align: center; }
.testi.feature .avatar { border-color: oklch(0.5 0.04 75 / 0.5); }
.testi .who .nm { font-weight: 700; font-size: 0.96rem; }
.testi .who .ro { font-size: 0.82rem; color: var(--ink-faint); }
.testi.feature .who .ro { color: var(--on-dark-soft); }

/* ---------- Oferta ---------- */
.offer-grid { display: grid; grid-template-columns: 1.25fr 0.95fr; gap: clamp(24px,3vw,44px); align-items: start; }
.offer-stack { display: grid; gap: 0.9rem; }
.offer-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem 1.4rem;
}
.offer-item .ck { width: 30px; height: 30px; border-radius: 50%; background: var(--gold-tint);
  border: 1px solid var(--gold-tint2); display: grid; place-items: center; flex: none; }
.offer-item .ck svg { width: 15px; height: 15px; color: var(--gold-deep); }
.offer-item h3 { font-size: 1.1rem; }
.offer-item p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.25rem; }
.offer-item .val { font-family: var(--serif); font-weight: 700; color: var(--ink-faint); white-space: nowrap;
  font-size: 0.98rem; }
.offer-item.bonus { border-color: var(--gold); border-style: dashed; background: var(--gold-tint); }
.offer-item.bonus .val { color: var(--gold-deep); }

.price-card {
  position: sticky; top: 20px;
  background: var(--espresso); color: var(--on-dark); border-radius: 20px;
  padding: clamp(24px,3vw,34px); box-shadow: var(--shadow-md);
}
.price-card .anchor { font-size: 0.92rem; color: var(--on-dark-soft); }
.price-card .anchor s { color: var(--on-dark-soft); }
.price-card .total-line { display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.7rem 0; border-bottom: 1px solid oklch(0.5 0.02 70 / 0.25); }
.price-card .total-line .v { font-family: var(--serif); }
.price-card .pay-now { margin-top: 1.4rem; }
.price-card .pay-now .big { font-family: var(--serif); font-weight: 700; font-size: 2.6rem; color: var(--gold-bright); line-height: 1; }
.price-card .pay-now .lbl { font-size: 0.9rem; color: var(--on-dark-soft); }
.price-card .pay-rest { margin-top: 1rem; font-size: 0.95rem; color: var(--on-dark); display: flex; gap: 0.6rem; align-items: baseline; }
.price-card .pay-rest .hl { color: var(--gold-bright); font-weight: 700; font-family: var(--serif); }
.price-card .save { margin-top: 1.4rem; background: oklch(0.45 0.08 70 / 0.25); border: 1px solid oklch(0.6 0.08 75 / 0.4);
  border-radius: 12px; padding: 0.9rem 1.1rem; font-size: 0.95rem; }
.price-card .save b { color: var(--gold-bright); font-family: var(--serif); }
.price-card .btn { margin-top: 1.5rem; }

/* ---------- Acordeão (objeções + FAQ) ---------- */
.acc { display: grid; gap: 0.7rem; margin-top: 2.4rem; }
.acc-item { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.acc-q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold);
  position: relative; transition: transform .3s ease; color: var(--gold-deep); }
.acc-q .ico::before, .acc-q .ico::after { content: ""; position: absolute; background: currentColor;
  top: 50%; left: 50%; transform: translate(-50%,-50%); }
.acc-q .ico::before { width: 11px; height: 1.6px; }
.acc-q .ico::after { width: 1.6px; height: 11px; transition: transform .3s ease; }
.acc-item.open .acc-q .ico::after { transform: translate(-50%,-50%) scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-a .inner { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: 0.98rem; }
.acc-a .inner strong { color: var(--ink); }

/* ---------- Garantia ---------- */
.guarantee .wrap { max-width: 860px; text-align: center; }
.guarantee .seal-lg {
  width: 110px; height: 110px; margin: 0 auto 1.6rem; border-radius: 50%;
  border: 2px solid var(--gold); display: grid; place-items: center; position: relative;
  background: var(--gold-tint);
}
.guarantee .seal-lg::before { content: ""; position: absolute; inset: 8px; border-radius: 50%;
  border: 1px solid var(--gold); }
.guarantee .seal-lg svg { width: 48px; height: 48px; color: var(--gold-deep); }
.guarantee h2 { font-size: clamp(1.8rem,1.3rem+2vw,2.8rem); }
.guarantee p { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.08rem; }
.guarantee .sign { margin-top: 1.8rem; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold-deep); }

/* ---------- Urgência ---------- */
.urgency .wrap { max-width: 820px; text-align: center; }
.urgency h2 { color: var(--on-dark); }
.vagas { margin: 2rem auto; max-width: 460px; background: oklch(0.3 0.02 60 / 0.5);
  border: 1px solid oklch(0.5 0.03 70 / 0.4); border-radius: 16px; padding: 1.5rem; }
.vagas .track { height: 12px; border-radius: 999px; background: oklch(0.2 0.02 60); overflow: hidden; margin-bottom: 0.9rem; }
.vagas .fill { height: 100%; width: 60%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); }
.vagas .lbl { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--on-dark-soft); }
.vagas .lbl b { color: var(--gold-bright); font-family: var(--serif); font-size: 1.05rem; }
.urgency .money { font-size: 1.05rem; color: var(--on-dark); margin-top: 1.4rem; }
.urgency .money b { color: var(--gold-bright); }

/* ---------- CTA final ---------- */
.final-cta .wrap { max-width: 820px; text-align: center; }
.final-cta h2 { font-size: clamp(2rem,1.4rem+2.6vw,3.4rem); }
.final-cta .lead { color: var(--on-dark-soft); margin: 1.4rem auto 0; max-width: 56ch; }
.final-cta .kick { font-family: var(--serif); font-style: italic; color: var(--gold-bright);
  font-size: clamp(1.3rem,1rem+1.5vw,1.9rem); margin-top: 1.6rem; }
.final-cta .btn { margin-top: 2rem; font-size: 1.15rem; padding: 1.2em 2.2em; }

/* ---------- PS ---------- */
.ps-block { display: grid; gap: 1.3rem; }
.ps {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); position: relative;
}
.ps .tag { font-family: var(--serif); font-weight: 700; color: var(--gold-deep); font-size: 1.1rem; }
.ps p { color: var(--ink-soft); margin-top: 0.5rem; }
.ps a.inline { color: var(--gold-deep); font-weight: 700; border-bottom: 1.5px solid var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--espresso-2); color: var(--on-dark-soft); font-size: 0.88rem; }
.footer .wrap { padding-block: clamp(40px,5vw,64px); }
.footer .top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start;
  padding-bottom: 1.8rem; border-bottom: 1px solid oklch(0.4 0.02 60 / 0.4); }
.footer .brand { display: flex; align-items: center; gap: 0.8rem; }
.footer .brand .logo-slot { width: 42px; height: 42px; }
.footer .brand .nm { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--on-dark); }
.footer .brand .oab { font-size: 0.82rem; }
.footer .lgpd { background: oklch(0.3 0.02 60 / 0.4); border: 1px solid oklch(0.45 0.02 60 / 0.4);
  border-radius: 12px; padding: 1rem 1.2rem; line-height: 1.5; }
.footer .lgpd a { color: var(--gold-bright); border-bottom: 1px solid var(--gold-deep); }
.footer .legal { margin-top: 1.6rem; font-size: 0.78rem; line-height: 1.6; color: oklch(0.62 0.012 66); }
.footer .legal a { color: var(--on-dark-soft); text-decoration: underline; }

/* ---------- Barra fixa WhatsApp (mobile-first urgência) ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: oklch(0.22 0.02 60 / 0.96); backdrop-filter: blur(10px);
  border-top: 1px solid oklch(0.5 0.05 75 / 0.3);
  padding: 0.7rem var(--gutter); padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(120%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar .info { color: var(--on-dark); min-width: 0; }
.sticky-bar .info .t { font-family: var(--serif); font-weight: 600; font-size: 0.98rem; line-height: 1.1; }
.sticky-bar .info .s { font-size: 0.78rem; color: var(--on-dark-soft); }
.sticky-bar .btn { padding: 0.85em 1.4em; min-height: 48px; flex: none; }
.sticky-bar .btn .full { display: inline; }
.sticky-bar .btn .short { display: none; }

/* ---------- Reveal animação ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; align-items: start; }
  .hero-photo { width: 100%; max-width: 380px; margin-inline: auto; order: -1; }
  .hero-badge-float { right: 6px; }
  .bpc-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi.feature { grid-column: span 2; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar .meta { display: none; }
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .pain-grid { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: 1fr; }
  .tband { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi.feature { grid-column: span 1; }
  .testi.feature blockquote { font-size: 1.15rem; }
  .step { grid-template-columns: 1fr; gap: 0.8rem; }
  .step .num { width: 48px; height: 48px; font-size: 1.2rem; }
  .offer-item { grid-template-columns: auto 1fr; }
  .offer-item .val { grid-column: 2; text-align: left; }
  .sticky-bar .info { display: none; }
  .sticky-bar { justify-content: center; }
  .sticky-bar .btn { width: 100%; }
  .hero h1 { font-size: clamp(2.2rem, 1.4rem + 6vw, 3rem); }
  body { padding-bottom: 0; }
}
