/* ============================================================
   ESCOLA DE CURA & LIBERTAÇÃO — 2ª TURMA
   Sales page styles · Bispa Regina · Plenitude palette
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory-200);
  color: var(--ink-900);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---- Gold intensity tweak knobs (overridden by [data-gold]) ---- */
:root {
  /* Swap the quirky Montserrat Alternates for clean geometric Montserrat
     across every eyebrow / button / label / ribbon (all use --font-display-alt). */
  --font-display-alt: 'Montserrat', sans-serif;

  --kw-from: var(--gold-400);
  --kw-to:   var(--gold-700);
  --gold-line: var(--gold-600);
  --glow: 0 0 30px rgba(201,162,75,0.32);
  --glow-strong: 0 0 44px rgba(201,162,75,0.42);
}
[data-gold="soft"] {
  --kw-from: var(--gold-300);
  --kw-to:   var(--gold-700);
  --gold-line: var(--gold-700);
  --glow: 0 0 20px rgba(201,162,75,0.18);
  --glow-strong: 0 0 30px rgba(201,162,75,0.26);
}
[data-gold="strong"] {
  --kw-from: #F7E6AC;
  --kw-to:   var(--gold-600);
  --gold-line: var(--gold-500);
  --glow: 0 0 40px rgba(214,176,98,0.5);
  --glow-strong: 0 0 60px rgba(214,176,98,0.6);
}

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 760px; }
.wrap--mid { max-width: 920px; }

section { position: relative; }

/* ----- surfaces ----- */
.s-green {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,162,75,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--plenitude-green-900) 0%, var(--plenitude-green-800) 50%, var(--plenitude-green-900) 100%);
  color: var(--ivory-100);
}
.s-green-flat { background: var(--plenitude-green-800); color: var(--ivory-100); }
.s-ivory { background: var(--ivory-200); color: var(--ink-900); }
.s-ivory-deep { background: var(--ivory-300); color: var(--ink-900); }

.pad { padding: clamp(72px, 11vw, 128px) 0; }
.pad-sm { padding: clamp(48px, 7vw, 80px) 0; }

/* ----- eyebrow ----- */
.eyebrow {
  font-family: var(--font-display-alt);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0;
}
.s-green .eyebrow, .s-green-flat .eyebrow { color: var(--gold-400); }

/* ----- diamond rule ----- */
.rule {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold-line); width: 100%; max-width: 320px;
}
.rule::before, .rule::after {
  content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.55;
}
.rule::before { background: linear-gradient(90deg, transparent, currentColor); }
.rule::after  { background: linear-gradient(90deg, currentColor, transparent); }
.rule i { width: 6px; height: 6px; background: currentColor; transform: rotate(45deg); flex: none; }
.rule--center { margin: 0 auto; }

/* ----- display headings ----- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.04;
  text-wrap: balance;
  margin: 0;
}
.display--xl { font-size: clamp(44px, 6.6vw, 84px); }
.display--lg { font-size: clamp(38px, 5vw, 64px); }
.display--md { font-size: clamp(30px, 3.8vw, 46px); }
.s-ivory .display, .s-ivory-deep .display { color: var(--plenitude-green-900); }
.s-green .display, .s-green-flat .display { color: var(--ivory-100); }

/* keyword — gold italic with hand-drawn underline */
.kw {
  position: relative;
  font-style: italic;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--kw-from) 0%, var(--kw-to) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kw::after {
  content: '';
  position: absolute; left: -1%; right: -1%; bottom: -0.16em; height: 0.34em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9 C 60 3 100 3 130 6 C 165 9 205 8 236 4' fill='none' stroke='%23C9A24B' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 100%;
  pointer-events: none;
}
.kw--green {
  background: linear-gradient(180deg, var(--plenitude-green-600), var(--plenitude-green-800));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic;
}
.kw--green::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9 C 60 3 100 3 130 6 C 165 9 205 8 236 4' fill='none' stroke='%231F8A5B' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 100%;
}

/* gold inline (no underline) */
.gold {
  background: linear-gradient(180deg, var(--kw-from), var(--kw-to));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ----- body copy ----- */
.lead {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.55;
  font-style: italic;
  text-wrap: pretty;
}
.s-green .lead, .s-green-flat .lead { color: var(--gold-300); }
.s-ivory .lead, .s-ivory-deep .lead { color: var(--ink-700); }

.body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}
.s-green .body, .s-green-flat .body { color: rgba(245,239,227,0.82); }
.s-ivory .body, .s-ivory-deep .body { color: var(--ink-700); }
.body--lg { font-size: 20px; }

/* ----- verse ----- */
.verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.45;
  text-wrap: pretty;
}
.verse__ref {
  display: block; margin-top: 14px;
  font-family: var(--font-display-alt);
  font-style: normal; font-weight: 500;
  font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-line);
}
.s-green .verse { color: var(--ivory-100); }
.s-ivory .verse { color: var(--plenitude-green-800); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 38px; border-radius: var(--radius-pill);
  font-family: var(--font-display-alt); font-weight: 600;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 220ms ease, filter 180ms ease, background 180ms ease;
}
.btn svg { width: 16px; height: 16px; }
.btn--gold {
  background: linear-gradient(168deg, var(--gold-400) 0%, var(--gold-600) 48%, var(--gold-800) 100%);
  color: var(--plenitude-green-900);
  border-color: var(--gold-800);
  box-shadow: var(--glow);
}
.btn--gold:hover { filter: brightness(1.06); box-shadow: var(--glow-strong); transform: translateY(-2px); }
.btn--gold:active { transform: scale(0.985); filter: brightness(0.95); }
.btn--ghost {
  background: transparent; color: var(--ivory-100); border-color: rgba(201,162,75,0.55);
}
.btn--ghost:hover { background: rgba(201,162,75,0.12); border-color: var(--gold-500); }
.s-ivory .btn--ghost, .s-ivory-deep .btn--ghost { color: var(--plenitude-green-800); border-color: var(--border-strong); }
.s-ivory .btn--ghost:hover { background: rgba(168,132,64,0.10); }
.btn--lg { padding: 20px 46px; font-size: 13px; }
.btn--block { width: 100%; }

.cta-meta {
  margin-top: 18px;
  font-family: var(--font-display-alt);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-line);
}
.s-ivory .cta-meta { color: var(--accent-deep); }

/* ============================================================
   TOP HEADER
   ============================================================ */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
}
.topbar__brand { display: flex; align-items: center; gap: 12px; }
.topbar__brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(var(--glow)); }
.topbar__brand span {
  font-family: var(--font-display-alt); font-weight: 500;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-300);
  line-height: 1.4;
}
.topbar__brand b { display: block; color: var(--ivory-100); font-weight: 600; }
.topbar .btn { padding: 13px 26px; font-size: 11px; }
@media (max-width: 720px) { .topbar .btn { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  background:
    radial-gradient(ellipse 60% 55% at 50% 32%, rgba(201,162,75,0.16) 0%, transparent 62%),
    radial-gradient(ellipse 120% 60% at 50% 110%, #18372a 0%, var(--plenitude-green-900) 55%),
    linear-gradient(180deg, #0a1810 0%, var(--plenitude-green-800) 55%, #0a1810 100%);
  color: var(--ivory-100);
}
.hero::before {
  content: ''; position: absolute; inset: 18px;
  border: 1px solid rgba(201,162,75,0.42); pointer-events: none; z-index: 1;
}
/* animated mesh-gradient + golden beams backdrops */
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; pointer-events: none; border: 0; }
#heroShader { opacity: 0; animation: bgIn 900ms ease forwards; }
#heroBeams  { opacity: 0; animation: bgIn 1500ms ease 250ms forwards; }
@keyframes bgIn { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  #heroShader, #heroBeams { animation: none; opacity: 1; }
}
.hero__inner { position: relative; z-index: 3; max-width: 940px; }

.hero__seal { margin: 0 auto 26px; width: 116px; height: 116px; }
.hero__seal img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(var(--glow-strong)); }

.hero__eyebrow { margin-bottom: 26px; }

.hero__display { margin: 0; }
.hero__h {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6.4vw, 82px); line-height: 1.03;
  letter-spacing: 0.004em; color: var(--ivory-100);
  text-wrap: balance; margin: 0;
}
.hero__variant { display: none; }
[data-hero="a"] .hero__variant--a,
[data-hero="b"] .hero__variant--b,
[data-hero="c"] .hero__variant--c { display: block; }

.hero__sub {
  margin: 30px auto 0; max-width: 660px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(17px, 1.9vw, 20px); line-height: 1.6;
  color: rgba(245,239,227,0.82);
}
.hero__sub b { color: var(--gold-300); font-weight: 500; }

.hero__ribbon {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 30px auto 0; padding: 12px 30px;
  background: var(--plenitude-green-900);
  border-top: 1px solid var(--gold-600); border-bottom: 1px solid var(--gold-600);
  font-family: var(--font-display-alt); font-weight: 500;
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-300);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%, 14px 50%);
}

.hero__cta { margin-top: 38px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-display-alt); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-400); opacity: 0.8;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll i { width: 1px; height: 34px; background: linear-gradient(var(--gold-500), transparent); animation: scrolldrop 2s ease-in-out infinite; }
@keyframes scrolldrop { 0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }

/* hero corner branches */
.hero__leaf { position: absolute; width: 230px; opacity: 0.5; z-index: 2; pointer-events: none; }
.hero__leaf--tl { top: -10px; left: -20px; transform: rotate(200deg); }
.hero__leaf--br { bottom: -10px; right: -20px; transform: rotate(20deg); }
@media (max-width: 720px) { .hero__leaf { width: 140px; opacity: 0.35; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--ivory-100);
  border-top: 1px solid var(--gold-700); border-bottom: 1px solid var(--gold-700);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__v {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4vw, 50px); line-height: 1; color: var(--plenitude-green-700);
}
.stat__v .gold { font-size: 1em; }
.stat__l {
  margin-top: 12px;
  font-family: var(--font-display-alt); font-weight: 500;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-deep);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.head { text-align: center; max-width: 760px; margin: 0 auto; }
.head .eyebrow { margin-bottom: 18px; }
.head .rule { margin: 0 auto 22px; }
.head .display { margin-bottom: 18px; }
.head .lead { margin: 0 auto; }

/* ============================================================
   ABERTURA (proposta de valor)
   ============================================================ */
.opening__lines { text-align: center; max-width: 760px; margin: 0 auto; }
.opening__statement {
  font-family: var(--font-display); font-weight: 400; font-style: normal;
  font-size: clamp(27px, 3.7vw, 44px); line-height: 1.4;
  color: var(--plenitude-green-900); margin: 0; text-wrap: balance;
}
.opening__beat {
  font-style: italic;
  background: linear-gradient(180deg, var(--kw-from) 0%, var(--kw-to) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.opening__verse {
  margin: 44px auto; padding: 30px 36px; max-width: 680px;
  border-left: 2px solid var(--gold-600);
  background: var(--ivory-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.prose { max-width: 680px; margin: 0 auto; }
.prose p { margin: 0 0 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose .emph { font-family: var(--font-serif); font-style: italic; font-size: 21px; color: var(--plenitude-green-800); }

/* ============================================================
   DOR (pain identification)
   ============================================================ */
.pain__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  margin: 0 auto; max-width: 940px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
@media (max-width: 720px) { .pain__grid { grid-template-columns: 1fr; } }
.pain__item {
  background: var(--ivory-100);
  padding: 28px 28px; display: flex; gap: 16px; align-items: flex-start;
  transition: background 180ms ease;
}
.pain__item:hover { background: var(--ivory-300); }
.pain__mark {
  flex: none; width: 30px; height: 30px; margin-top: 2px;
  display: grid; place-items: center;
  color: var(--gold-700);
}
.pain__mark svg { width: 26px; height: 26px; }
.pain__item p { margin: 0; font-family: var(--font-sans); font-size: 16.5px; line-height: 1.55; color: var(--ink-700); }
.pain__verdict { text-align: center; margin-top: 52px; }
.pain__verdict p {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.15; color: var(--ivory-100); margin: 0;
}

/* ============================================================
   SOLUÇÃO (journey steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 56px auto 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: linear-gradient(180deg, var(--plenitude-green-700), var(--plenitude-green-800));
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: var(--radius-lg);
  padding: 38px 34px 34px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.step:hover { transform: translateY(-4px); border-color: rgba(201,162,75,0.6); box-shadow: 0 18px 40px rgba(8,20,14,0.5); }
.step__mark { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.18em; color: var(--gold-400); text-transform: uppercase; }
.step__title {
  margin: 14px 0 12px;
  font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.6vw, 31px);
  line-height: 1.12; color: var(--ivory-100);
}
.step__title .gold { font-style: italic; }
.step__body { margin: 0; font-family: var(--font-sans); font-size: 16px; line-height: 1.62; color: rgba(245,239,227,0.78); }
.step__num {
  position: absolute; top: 18px; right: 26px;
  font-family: var(--font-display); font-size: 78px; line-height: 1;
  color: rgba(201,162,75,0.12);
}
.soln__verse { margin-top: 50px; text-align: center; }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benes { max-width: 880px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 2px; }
.bene {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px 8px; border-bottom: 1px solid var(--border);
}
.bene:first-child { border-top: 1px solid var(--border); }
.bene__icon { flex: none; width: 34px; height: 34px; color: var(--gold-700); }
.bene__icon svg { width: 34px; height: 34px; }
.bene__t { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.2; color: var(--plenitude-green-900); margin: 2px 0 6px; }
.bene__d { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--ink-700); margin: 0; }

/* ============================================================
   ABOUT (Bispa Regina + photo)
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; text-align: center; } }
.about__photo { position: relative; }
.about__photo img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid rgba(201,162,75,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: block;
}
.about__photo .hero__leaf { width: 180px; opacity: 0.55; }
.about__sig { font-family: var(--font-script); font-size: 46px; color: var(--gold-400); line-height: 1; margin: 18px 0 0; }
.about__role { font-family: var(--font-display-alt); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-300); margin: 6px 0 0; }
[data-photos="off"] .about { grid-template-columns: 1fr; text-align: center; max-width: 760px; }
[data-photos="off"] .about__photo { display: none; }

/* badges row */
.badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
@media (max-width: 860px) { .badges { justify-content: center; } }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 18px; border: 1px solid rgba(201,162,75,0.4); border-radius: var(--radius-pill);
  font-family: var(--font-display-alt); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300);
}
.badge svg { width: 15px; height: 15px; color: var(--gold-400); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 52px auto 0; }
@media (max-width: 760px) { .tst-grid { grid-template-columns: 1fr; } }
.tst {
  background: var(--ivory-100); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.tst__mark { font-family: var(--font-display); font-size: 56px; line-height: 0.5; color: var(--gold-500); height: 26px; }
.tst__quote { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink-700); margin: 0; }
.tst__quote b { color: var(--plenitude-green-800); font-weight: 600; font-style: normal; }
.tst__who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst__av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--plenitude-green-600), var(--plenitude-green-800)); display: grid; place-items: center; color: var(--gold-400); font-family: var(--font-display); font-size: 18px; flex: none; }
.tst__name { font-family: var(--font-display-alt); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; color: var(--plenitude-green-900); }
.tst__city { font-family: var(--font-sans); font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.tst__editnote { text-align: center; max-width: 600px; margin: 26px auto 0; font-family: var(--font-sans); font-size: 13px; color: var(--ink-500); font-style: italic; }

/* ============================================================
   OFERTA
   ============================================================ */
.offer { max-width: 760px; margin: 0 auto; }
.offer__card {
  background: var(--ivory-100);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.offer__head { background: linear-gradient(180deg, var(--plenitude-green-700), var(--plenitude-green-800)); padding: 36px 40px; text-align: center; }
.offer__head .eyebrow { color: var(--gold-400); }
.offer__head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 36px); color: var(--ivory-100); margin: 12px 0 0; }
.offer__list { padding: 34px 40px 8px; }
@media (max-width: 600px) { .offer__list, .offer__head, .offer__foot { padding-left: 26px; padding-right: 26px; } }
.offer__row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.offer__row:last-child { border-bottom: none; }
.offer__check { flex: none; width: 24px; height: 24px; color: var(--gold-700); margin-top: 1px; }
.offer__row b { font-family: var(--font-sans); font-weight: 600; font-size: 17px; color: var(--ink-900); display: block; }
.offer__row span { font-family: var(--font-sans); font-size: 14.5px; color: var(--ink-500); }
.offer__foot { padding: 28px 40px 38px; text-align: center; border-top: 1px solid var(--border); }
.offer__price-l { font-family: var(--font-display-alt); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-500); }
.offer__price { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 64px); line-height: 1; color: var(--plenitude-green-800); margin: 8px 0 4px; }
.offer__price .gold { font-style: italic; }
.offer__note { font-family: var(--font-sans); font-size: 13px; color: var(--ink-500); margin-bottom: 26px; }
.offer__tagline { text-align: center; margin-top: 40px; }
.offer__tagline p { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--ink-700); margin: 4px 0; }
.offer__tagline .big { font-family: var(--font-display); font-style: normal; font-size: clamp(26px, 3.4vw, 38px); color: var(--plenitude-green-900); }

/* ============================================================
   OBJEÇÕES
   ============================================================ */
.obj-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 980px; margin: 52px auto 0; }
@media (max-width: 760px) { .obj-grid { grid-template-columns: 1fr; } }
.obj {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,162,75,0.28); border-radius: var(--radius-lg);
  padding: 30px 30px;
}
.obj__q { font-family: var(--font-serif); font-style: italic; font-size: 20px; line-height: 1.35; color: var(--gold-300); margin: 0 0 14px; }
.obj__a { font-family: var(--font-sans); font-size: 15.5px; line-height: 1.62; color: rgba(245,239,227,0.78); margin: 0; }

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee { max-width: 720px; margin: 0 auto; text-align: center; }
.guarantee__seal { width: 92px; height: 92px; margin: 0 auto 26px; }
.guarantee__seal img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(var(--glow)); }

/* ============================================================
   URGÊNCIA
   ============================================================ */
.urgency { text-align: center; max-width: 720px; margin: 0 auto; }
.urgency__flag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 9px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--wine-500); background: rgba(142,56,69,0.14);
  font-family: var(--font-display-alt); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #E5A9AE;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 52px auto 0; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 6px;
  font-family: var(--font-display); font-weight: 400; font-size: clamp(19px, 2.2vw, 23px);
  color: var(--plenitude-green-900);
}
.faq__q:hover { color: var(--accent-deep); }
.faq__ico { flex: none; width: 26px; height: 26px; position: relative; color: var(--gold-700); transition: transform 300ms ease; }
.faq__ico::before, .faq__ico::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.faq__ico::before { top: 12px; left: 3px; right: 3px; height: 2px; }
.faq__ico::after { left: 12px; top: 3px; bottom: 3px; width: 2px; transition: transform 300ms ease; }
.faq__item[open] .faq__ico::after { transform: scaleY(0); }
.faq__item[open] .faq__ico { transform: rotate(180deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 360ms ease; }
.faq__a-inner { padding: 0 6px 28px; font-family: var(--font-sans); font-size: 16.5px; line-height: 1.7; color: var(--ink-700); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final { text-align: center; }
.final__prose { max-width: 680px; margin: 0 auto 40px; }
.final__prose p { font-family: var(--font-sans); font-size: 18px; line-height: 1.7; color: rgba(245,239,227,0.82); margin: 0 0 18px; }
.final__decl {
  font-family: var(--font-display) !important; font-style: italic;
  font-size: clamp(26px, 4vw, 44px) !important; line-height: 1.18 !important;
  color: var(--ivory-100) !important; margin: 36px auto !important; max-width: 760px;
}
.final__form {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 8px;
}
.final__link { font-family: var(--font-sans); font-size: 14px; color: var(--gold-400); letter-spacing: 0.04em; }

/* ============================================================
   PS + FOOTER
   ============================================================ */
.ps { max-width: 680px; margin: 0 auto; }
.ps__label { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--gold-600); }
.ps p { font-family: var(--font-sans); font-size: 17px; line-height: 1.7; color: var(--ink-700); margin: 0 0 18px; }
.ps .closing { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); color: var(--plenitude-green-900); font-style: italic; text-align: center; margin: 34px 0; line-height: 1.25; }

.footer { background: var(--plenitude-green-900); color: var(--gold-300); padding: 64px 0 40px; border-top: 1px solid var(--gold-800); }
.footer__top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
.footer__brand { max-width: 320px; }
.footer__brand img { height: 54px; object-fit: contain; margin-bottom: 18px; }
.footer__brand p { font-family: var(--font-sans); font-size: 14px; line-height: 1.6; color: rgba(236,218,168,0.6); }
.footer__brand .sig { font-family: var(--font-serif); font-style: italic; color: var(--gold-400); font-size: 16px; margin-bottom: 10px; }
.footer__col h4 { font-family: var(--font-display); font-weight: 400; font-size: 18px; color: var(--ivory-100); margin: 0 0 18px; }
.footer__col a { display: block; font-family: var(--font-sans); font-size: 14px; color: rgba(236,218,168,0.7); text-decoration: none; margin-bottom: 12px; transition: color 160ms ease; }
.footer__col a:hover { color: var(--gold-400); }
.footer__bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(201,162,75,0.2); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer__bottom span { font-family: var(--font-sans); font-size: 12.5px; color: rgba(236,218,168,0.5); }
.footer__bottom em { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--gold-300); }

/* ============================================================
   STICKY CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(15,36,25,0.92);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-700);
  transform: translateY(110%); transition: transform 380ms cubic-bezier(.4,.8,.3,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__in { max-width: 1120px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-cta__txt { display: flex; flex-direction: column; }
.sticky-cta__t { font-family: var(--font-display); font-size: 19px; color: var(--ivory-100); line-height: 1.1; }
.sticky-cta__s { font-family: var(--font-display-alt); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); margin-top: 4px; }
.sticky-cta .btn { padding: 14px 30px; font-size: 11px; flex: none; }
@media (max-width: 600px) {
  .sticky-cta__s { display: none; }
  .sticky-cta__t { font-size: 15px; }
  .sticky-cta__in { padding: 12px 16px; }
  .sticky-cta .btn { padding: 13px 20px; }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   MOTION  — restrained, brand-aligned (no bounce / parallax)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* ---- hero entrance (runs on load; hero is above the fold) ---- */
  .hero__seal,
  .hero__eyebrow,
  .hero__display,
  .hero__sub,
  .hero__ribbon,
  .hero__cta {
    opacity: 0;
    animation: heroRise 820ms cubic-bezier(.2,.7,.3,1) forwards;
  }
  .hero__seal    { animation: sealIn 900ms cubic-bezier(.2,.7,.3,1) 60ms forwards; }
  .hero__eyebrow { animation-delay: 260ms; }
  .hero__display { animation-delay: 380ms; }
  .hero__sub     { animation-delay: 540ms; }
  .hero__ribbon  { animation-delay: 660ms; }
  .hero__cta     { animation-delay: 780ms; }
  .hero__scroll  { opacity: 0; animation: fadeIn 700ms ease 1100ms forwards; }

  @keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  @keyframes sealIn   { from { opacity: 0; transform: translateY(10px) scale(.86); } to { opacity: 1; transform: none; } }
  @keyframes fadeIn   { to { opacity: .8; } }

  /* hero keyword underline draws in after the headline lands */
  .hero__h .kw::after {
    transform: scaleX(0); transform-origin: left;
    animation: drawLine 680ms cubic-bezier(.4,.8,.3,1) 980ms forwards;
  }
  @keyframes drawLine { to { transform: scaleX(1); } }

  /* ---- diamond rules expand from the centre on reveal ---- */
  .reveal .rule::before { transform: scaleX(0); transform-origin: right; }
  .reveal .rule::after  { transform: scaleX(0); transform-origin: left; }
  .reveal.in .rule::before,
  .reveal.in .rule::after { transform: scaleX(1); transition: transform 720ms cubic-bezier(.4,.8,.3,1) 160ms; }
  .reveal .rule i { transform: scale(0) rotate(45deg); }
  .reveal.in .rule i { transform: scale(1) rotate(45deg); transition: transform 420ms cubic-bezier(.3,1.2,.5,1) 120ms; }

  /* ---- keyword underline draws in within revealed blocks ---- */
  .reveal .kw::after { transform: scaleX(0); transform-origin: left; }
  .reveal.in .kw::after { transform: scaleX(1); transition: transform 640ms cubic-bezier(.4,.8,.3,1) 380ms; }
}

/* ---- card micro-interactions ---- */
.tst, .obj { transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.tst:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.obj:hover { transform: translateY(-3px); border-color: rgba(201,162,75,0.55); }
.bene { transition: padding-left 240ms ease; }
.bene:hover { padding-left: 16px; }
.bene__icon { transition: transform 300ms cubic-bezier(.3,1.1,.5,1); }
.bene:hover .bene__icon { transform: scale(1.12); }
