/* ============================================================
   T4 MENTORIA — design system (dark + champagne gold)
   Sora (display) + Inter (texto). Toques de Instagram em detalhes.
   ============================================================ */

:root {
  /* base */
  --bg: #0A0A0C;
  --bg-soft: #0e0d11;
  --surface: #131218;
  --surface-2: #18161f;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.15);

  --ink: #F5F2EA;
  --ink-dim: rgba(245, 242, 234, 0.64);
  --ink-mute: rgba(245, 242, 234, 0.40);
  --ink-faint: rgba(245, 242, 234, 0.20);

  /* champagne gold (do logo MT4) */
  --gold-1: #EAD9A6;
  --gold-2: #C9A862;
  --gold-3: #9A763A;
  --gold-grad: linear-gradient(135deg, #B0894A 0%, #EAD9A6 44%, #C9A862 68%, #9A763A 100%);
  --gold-soft: rgba(201, 168, 98, 0.12);
  --gold-line: rgba(201, 168, 98, 0.38);
  --gold-glow: rgba(201, 168, 98, 0.30);

  --ig: linear-gradient(45deg, #F58529, #DD2A7B 45%, #8134AF 75%, #515BD4);
  --green: #34d399;

  --display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1140px;
  --gut: 24px;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: rgba(201, 168, 98, 0.28); color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ---------- utilities ---------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-1);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}
.section__head--center .eyebrow::before { display: none; }

.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--soft::before, .section--soft::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.section--soft::before { top: 0; }
.section--soft::after { bottom: 0; }

.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.03em;
  margin-top: 16px; text-wrap: balance;
}
.section__sub { color: var(--ink-dim); font-size: 17px; line-height: 1.6; margin-top: 14px; max-width: 60ch; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 24px; border-radius: 12px; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--sm { padding: 10px 16px; font-size: 13px; border-radius: 10px; }
.btn--lg { padding: 17px 30px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn-primary, .btn-gold {
  position: relative; color: #1a1206; overflow: hidden;
  background: var(--gold-grad);
  box-shadow: 0 10px 30px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover, .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-primary::after, .btn-gold::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); animation: sheen 5s infinite;
}
@keyframes sheen { 0% { left: -130%; } 24%, 100% { left: 230%; } }

.btn-secondary {
  color: var(--ink); background: rgba(255,255,255,.03);
  border: 1px solid var(--line-2);
}
.btn-secondary:hover { border-color: var(--gold-line); background: rgba(201,168,98,.06); transform: translateY(-2px); }

/* ============================================================
   HEADER + PILL NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.site-header__inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 10px; object-fit: cover;
  border: 1px solid var(--gold-line); box-shadow: 0 4px 14px -6px var(--gold-glow);
}
.brand__name { font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }

.pillnav {
  position: relative; display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px;
}
.pillnav__tab {
  position: relative; z-index: 1;
  font-family: var(--display); font-weight: 500; font-size: 14px;
  color: var(--ink-dim); padding: 9px 17px; border-radius: 999px; cursor: pointer;
  transition: color .25s; white-space: nowrap;
}
.pillnav__tab:hover { color: var(--ink); }
.pillnav__tab.active { color: var(--gold-1); }
.pillnav__cursor {
  position: absolute; z-index: 0; top: 5px; left: 0; height: calc(100% - 10px); width: 0;
  background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: 999px;
  opacity: 0; transition: transform .35s cubic-bezier(.2,.8,.2,1), width .35s cubic-bezier(.2,.8,.2,1), opacity .3s;
  pointer-events: none;
}

.nav-cta { flex-shrink: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line-2); align-items: center; justify-content: center; }
.menu-toggle svg { width: 22px; height: 22px; }

.mobile-drawer {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--surface); border-left: 1px solid var(--line);
  z-index: 99; padding: 90px 26px 30px;
  flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { font-family: var(--display); font-weight: 600; font-size: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-dim); transition: color .2s; }
.mobile-drawer a:hover { color: var(--gold-1); }
.mobile-drawer__cta { margin-top: 22px; }
.mobile-drawer__cta a { border: none; }

.drawer-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 98;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(2px);
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 150px 0 90px; }
.hero__gradbg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 78% 18%, rgba(201,168,98,.18), transparent 62%),
    radial-gradient(ellipse 55% 45% at 12% 90%, rgba(154,118,58,.10), transparent 60%);
}
.hero__top, .hero__bottom { position: absolute; left: 0; right: 0; height: 120px; z-index: 1; pointer-events: none; }
.hero__top { top: 0; background: linear-gradient(180deg, var(--bg), transparent); }
.hero__bottom { bottom: 0; background: linear-gradient(0deg, var(--bg), transparent); }

/* shapes / cápsulas elegantes flutuando.
   Entrada + float são dirigidos por JS (requestAnimationFrame) em assets/js/main.js,
   numa ÚNICA camada estável por cápsula (transform/opacity só) = suave em qualquer GPU,
   sem layer-thrashing. Sem JS, ficam invisíveis (são decorativas). */
.hero__shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; opacity: 0; border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.16), transparent 70%),
    linear-gradient(to right, var(--tint, rgba(201,168,98,.15)), transparent);
  border: 2px solid rgba(255,255,255,.14);
  will-change: transform, opacity;
}
.shape--1 { width: clamp(300px, 38vw, 560px); height: 130px; top: 16%; left: -8%; --rot: 12deg; --tint: rgba(201,168,98,.16); --delay: .3s; }
.shape--2 { width: clamp(260px, 32vw, 480px); height: 116px; top: 70%; right: -6%; --rot: -15deg; --tint: rgba(214,150,110,.12); --delay: .5s; }
.shape--3 { width: clamp(200px, 24vw, 300px); height: 82px; bottom: 6%; left: 5%; --rot: -8deg; --tint: rgba(180,150,210,.10); --delay: .4s; }
.shape--4 { width: 200px; height: 60px; top: 10%; right: 16%; --rot: 20deg; --tint: rgba(229,191,110,.16); --delay: .6s; }
.shape--5 { width: 150px; height: 44px; top: 5%; left: 20%; --rot: -25deg; --tint: rgba(150,200,210,.10); --delay: .7s; }

.hero__inner { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center; }

.hero__pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink); background: rgba(255,255,255,.03);
  border: 1px solid var(--gold-line); border-radius: 999px; padding: 8px 15px;
  margin-bottom: 26px;
}
.hero__pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(.8);} }

.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 6.4vw, 74px); line-height: 0.98; letter-spacing: -0.045em;
}
.hero h1 .line { display: block; }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-dim); line-height: 1.55; margin-top: 24px; max-width: 30ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__micro { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.hero__micro span { position: relative; font-size: 12.5px; font-weight: 500; color: var(--ink-mute); letter-spacing: 0.02em; padding-left: 18px; }
.hero__micro span::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--gold-2); }

/* hero photo */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; aspect-ratio: 4/5; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), 0 0 0 6px rgba(201,168,98,.05);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,8,10,.82)); }
.hero__photo-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); padding: 7px 11px; border-radius: 999px;
}
.hero__photo-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.hero__photo-overlay { position: absolute; left: 20px; bottom: 18px; z-index: 3; display: flex; flex-direction: column; gap: 3px; }
.hero__photo-name { font-family: var(--display); font-weight: 700; font-size: 19px; color: #fff; }
.hero__photo-role { font-size: 12px; font-weight: 500; color: var(--gold-1); letter-spacing: 0.04em; }

.hero__stat {
  position: absolute; right: -18px; bottom: 92px; z-index: 4;
  display: flex; gap: 4px; max-width: 210px;
  background: rgba(19,18,24,.86); backdrop-filter: blur(14px);
  border: 1px solid var(--gold-line); border-radius: 16px; padding: 15px 18px;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
}
.hero__stat-num { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -0.02em; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero__stat-lbl { font-size: 11px; color: var(--ink-dim); line-height: 1.35; margin-top: 6px; }

/* ============================================================
   PROOF
   ============================================================ */
.proof { padding: 90px 0; position: relative; }
.proof__head { max-width: 680px; margin: 0 auto; text-align: center; }
.proof__big {
  display: flex; align-items: center; justify-content: center; gap: clamp(24px, 6vw, 80px);
  margin: 60px 0 36px;
}
.proof__num { text-align: center; }
.proof__num-val { font-family: var(--display); font-weight: 700; font-size: clamp(46px, 9vw, 96px); line-height: 1; letter-spacing: -0.04em; color: var(--ink-mute); }
.proof__num--target .proof__num-val { color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.proof__num-lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 14px; }
.proof__num--target .proof__num-lbl { color: var(--gold-1); }
.proof__arrow { width: clamp(50px, 12vw, 130px); height: 2px; background: linear-gradient(90deg, var(--ink-faint), var(--gold-2)); position: relative; flex-shrink: 0; }
.proof__arrow::after { content: ""; position: absolute; right: -2px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 11px; height: 11px; border-top: 2px solid var(--gold-2); border-right: 2px solid var(--gold-2); }
.proof__caption { text-align: center; font-family: var(--display); font-weight: 600; font-size: clamp(20px, 3vw, 28px); letter-spacing: -0.02em; line-height: 1.3; }
.proof__caption .accent { color: var(--gold-1); }
.proof__caption .small { display: block; font-family: var(--body); font-weight: 400; font-size: 15px; color: var(--ink-mute); letter-spacing: 0; margin-top: 12px; }

/* selo de credibilidade (era a seção Mentor) */
.cred { display: inline-flex; align-items: center; gap: 13px; margin: 26px auto 0; padding: 9px 18px 9px 9px; background: var(--surface); border: 1px solid var(--gold-line); border-radius: 999px; }
.cred img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: center 26%; border: 1px solid var(--gold-line); }
.cred__tx { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.cred__name { font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.cred__h { font-size: 12px; color: var(--gold-1); font-weight: 500; }

/* tira de 3 passos (era a seção Método) */
.miniflow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 14px; margin-top: 40px; }
.miniflow__step { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 500; font-size: 14.5px; color: var(--ink-dim); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; }
.miniflow__step b { font-weight: 700; color: transparent; -webkit-text-stroke: 1px var(--gold-2); font-size: 13px; }
.miniflow__arr { color: var(--gold-2); font-size: 18px; }

/* ============================================================
   PAIN
   ============================================================ */
.pain { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pain__item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: border-color .3s, transform .3s, background .3s;
}
.pain__item:hover { border-color: var(--gold-line); transform: translateY(-3px); background: var(--surface-2); }
.pain__num { font-family: var(--display); font-weight: 700; font-size: 15px; color: transparent; -webkit-text-stroke: 1px var(--gold-line); flex-shrink: 0; padding-top: 2px; }
.pain__text { font-size: 15.5px; color: var(--ink-dim); line-height: 1.5; }
.pain__closer { text-align: center; font-family: var(--display); font-weight: 600; font-size: clamp(19px, 2.6vw, 26px); line-height: 1.4; margin-top: 44px; }

/* ============================================================
   ANTES / DEPOIS
   ============================================================ */
.ad-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ad-col { border-radius: var(--radius); padding: 30px 28px; border: 1px solid var(--line); }
.ad-col--antes { background: var(--surface); }
.ad-col--depois { background: linear-gradient(165deg, rgba(201,168,98,.10), var(--surface) 60%); border-color: var(--gold-line); }
.ad-col__lbl { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px; }
.ad-col--depois .ad-col__lbl { color: var(--gold-1); }
.ad-col ul { display: flex; flex-direction: column; gap: 16px; }
.ad-col li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; color: var(--ink-dim); line-height: 1.4; }
.ad-col--depois li { color: var(--ink); }
.ad-col li svg { width: 20px; height: 20px; flex-shrink: 0; }
.ad-col--antes li svg { color: #c2554e; }
.ad-col--depois li svg { stroke: #1a1206; background: var(--gold-grad); border-radius: 50%; padding: 3px; }

/* ============================================================
   STEPS
   ============================================================ */
.solucao-lead { color: var(--ink-dim); font-size: 17px; line-height: 1.6; margin-top: 16px; max-width: 64ch; }
.solucao-lead strong { color: var(--ink); font-weight: 600; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px 24px; transition: border-color .3s, transform .3s;
}
.step:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px; margin-bottom: 18px;
  font-family: var(--display); font-weight: 700; font-size: 16px; color: #1a1206;
  background: var(--gold-grad); box-shadow: 0 6px 16px -6px var(--gold-glow);
}
.step h3 { font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--ink-dim); line-height: 1.5; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   CARDS (entregas — vibe feed)
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, var(--gold-soft), transparent 60%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.card:hover { border-color: var(--gold-line); transform: translateY(-4px); box-shadow: 0 24px 44px -24px rgba(0,0,0,.7); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 20px;
  display: grid; place-items: center; color: var(--gold-1);
  background: var(--gold-soft); border: 1px solid var(--gold-line);
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { font-family: var(--display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 10px; position: relative; }
.card p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.55; position: relative; }

/* ============================================================
   MENTOR (about)
   ============================================================ */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.about__photo { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; border: 1px solid var(--line-2); box-shadow: 0 40px 80px -34px rgba(0,0,0,.8); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; }
.about__photo .badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-family: var(--display); font-weight: 600; font-size: 12px; color: #fff;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); padding: 8px 13px; border-radius: 999px;
}
.about__inner h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.6vw, 38px); line-height: 1.12; letter-spacing: -0.03em; margin: 14px 0 18px; }
.about__lead { font-size: 18px; color: var(--ink); line-height: 1.55; margin-bottom: 16px; }
.about__lead strong { color: var(--gold-1); font-weight: 600; }
.about__text { font-size: 15.5px; color: var(--ink-dim); line-height: 1.7; }

/* ============================================================
   OFFER + UPSELL
   ============================================================ */
.offer-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; align-items: start; }
.offer-solo { max-width: 720px; margin: 0 auto; }
.offer-stack {
  background: linear-gradient(165deg, rgba(201,168,98,.10), var(--surface) 55%);
  border: 1px solid var(--gold-line); border-radius: 22px; padding: 34px 32px;
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.7);
}
.offer-stack__head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.offer-stack__title { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; }
.offer-stack__tag, .upsell__tag { font-family: var(--display); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-1); background: var(--gold-soft); border: 1px solid var(--gold-line); padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.offer-stack ul { display: flex; flex-direction: column; gap: 15px; }
.offer-stack li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; color: var(--ink); line-height: 1.45; }
.check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad); color: #1a1206; margin-top: 1px; }
.check svg { width: 14px; height: 14px; }
.offer-close { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-mute); }

.upsell { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 30px 26px; }
.upsell__head { margin-bottom: 22px; }
.upsell__title { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.upsell__tag { display: inline-block; margin-top: 12px; color: var(--ink-mute); background: rgba(255,255,255,.03); border-color: var(--line); }
.upsell__list { display: flex; flex-direction: column; gap: 12px; }
.upsell__item { display: flex; align-items: center; gap: 14px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 13px; padding: 14px 16px; }
.upsell__item-icon { font-family: var(--display); font-weight: 700; font-size: 13px; color: transparent; -webkit-text-stroke: 1px var(--gold-2); flex-shrink: 0; }
.upsell__item-text { font-size: 14.5px; color: var(--ink-dim); line-height: 1.4; }
.upsell__item-text strong { color: var(--ink); font-weight: 600; }
.upsell__foot { margin-top: 18px; font-size: 12.5px; color: var(--ink-mute); text-align: center; }

/* GUARANTEE */
.guarantee {
  max-width: 720px; margin: 56px auto 0; text-align: center;
  background: radial-gradient(ellipse 80% 90% at 50% 0%, rgba(201,168,98,.12), transparent 70%), var(--surface);
  border: 1px solid var(--gold-line); border-radius: 24px; padding: 44px 34px;
}
.guarantee__badge { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 18px; display: grid; place-items: center; color: var(--gold-1); background: var(--gold-soft); border: 1px solid var(--gold-line); }
.guarantee__badge svg { width: 32px; height: 32px; }
.guarantee h2 { font-family: var(--display); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -0.03em; line-height: 1.15; }
.guarantee h2 strong { color: var(--gold-1); }
.guarantee > p { color: var(--ink-dim); font-size: 16.5px; line-height: 1.6; max-width: 56ch; margin: 16px auto 0; }
.guarantee > p strong { color: var(--ink); font-weight: 600; }
.guarantee__small { font-size: 13px; color: var(--ink-mute); margin-top: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .3s; }
.faq-item[aria-expanded="true"] { border-color: var(--gold-line); }
.faq-item__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--display); font-weight: 600; font-size: 16.5px; color: var(--ink);
  padding: 20px 22px; transition: color .2s;
}
.faq-item__q:hover { color: var(--gold-1); }
.faq-item__icon { width: 22px; height: 22px; color: var(--gold-1); flex-shrink: 0; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.faq-item[aria-expanded="true"] .faq-item__icon { transform: rotate(135deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s ease; }
.faq-item[aria-expanded="true"] .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; }
.faq-item__a p { padding: 0 22px 22px; color: var(--ink-dim); font-size: 15.5px; line-height: 1.6; }

/* ============================================================
   CTA FINAL + PS
   ============================================================ */
.cta-final { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(201,168,98,.14), transparent 65%); pointer-events: none; }
.cta-final h2 { position: relative; font-family: var(--display); font-weight: 700; font-size: clamp(30px, 5vw, 56px); line-height: 1.04; letter-spacing: -0.04em; margin: 16px auto 0; max-width: 16ch; text-wrap: balance; }
.cta-final__body { position: relative; color: var(--ink-dim); font-size: 17px; line-height: 1.6; max-width: 58ch; margin: 22px auto 36px; }
.cta-final__body strong { color: var(--ink); font-weight: 600; }
.cta-final__micro { position: relative; font-size: 13px; color: var(--ink-mute); margin-top: 18px; letter-spacing: 0.04em; }

.ps { position: relative; max-width: 680px; margin: 56px auto 0; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 32px 30px; }
.ps p { color: var(--ink-dim); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.ps p strong { color: var(--ink); font-weight: 600; }
.ps p strong.gold-text, .ps .gold-text { color: var(--gold-1); }
.ps__cta { margin-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg-soft); }
.footer__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__brand img { width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--gold-line); }
.footer__brand span { font-family: var(--display); font-weight: 700; font-size: 16px; }
.footer p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; max-width: 42ch; margin-bottom: 18px; }
.footer__links { display: flex; gap: 20px; }
.footer__links a { font-size: 13px; font-weight: 500; color: var(--ink-mute); transition: color .2s; }
.footer__links a:hover { color: var(--gold-1); }
.footer__meta { font-size: 13px; color: var(--ink-mute); line-height: 2; text-align: right; }
.footer__meta a { transition: color .2s; }
.footer__meta a:hover { color: var(--gold-1); }

/* ============================================================
   WHATSAPP FAB + STICKY CTA
   ============================================================ */
.wpp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: #25D366;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.5);
  transition: transform .25s;
}
.wpp-fab:hover { transform: scale(1.08); }
.wpp-fab svg { width: 30px; height: 30px; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10,10,12,.92); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  display: none;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ============================================================
   REVEAL
   ============================================================ */
.obs-animate { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.obs-animate.in { opacity: 1; transform: none; }
.pain .obs-animate:nth-child(2) { transition-delay: .08s; }
.pain .obs-animate:nth-child(3) { transition-delay: .16s; }
.pain .obs-animate:nth-child(4) { transition-delay: .24s; }
.steps .obs-animate:nth-child(2) { transition-delay: .08s; }
.steps .obs-animate:nth-child(3) { transition-delay: .16s; }
.steps .obs-animate:nth-child(4) { transition-delay: .24s; }
.cards-grid .obs-animate:nth-child(2), .cards-grid .obs-animate:nth-child(5) { transition-delay: .08s; }
.cards-grid .obs-animate:nth-child(3), .cards-grid .obs-animate:nth-child(6) { transition-delay: .16s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__visual { max-width: 420px; }
  .hero { padding-top: 130px; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { max-width: 380px; }
  .offer-wrap { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .pillnav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-drawer { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 600px) {
  :root { --gut: 18px; }
  .section { padding: 70px 0; }
  .pain { grid-template-columns: 1fr; }
  .ad-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; } /* Entregas em bloco 2x3 no celular */
  .proof__big { gap: 18px; }
  /* card +10.000 vira bloco abaixo da foto no celular (sem sobrepor o nome) */
  .hero__stat { position: static; right: auto; bottom: auto; max-width: none; margin-top: 14px; padding: 14px 16px; }
  .hero__stat-num { font-size: 22px; }
  .footer__inner { flex-direction: column; gap: 28px; }
  .footer__meta { text-align: left; }
  .sticky-cta { display: block; }
  .wpp-fab { bottom: 78px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .obs-animate { opacity: 1; transform: none; }
}
