/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --white:  #FFFFFF;
  --bg:     #F8F6F3;
  --bg2:    #EFECE7;
  --dark:   #111110;
  --ink:    #3D3B38;
  --sub:    #6B6864;
  --muted:  #9C9894;
  --line:   #E4E0DA;
  --line2:  #D6D1C9;
  --accent: #66122A;
  --acd:    #4A0D1E;
  --r:      50px;
  --font:   'Instrument Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--bg); color: var(--dark); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
.w { max-width: 1240px; margin: 0 auto; padding: 0 56px; }

/* TICKER */
.ticker { background: var(--accent); overflow: hidden; white-space: nowrap; padding: 9px 0; }
.ttrack { display: inline-flex; animation: tick 30s linear infinite; }
.ttrack:hover { animation-play-state: paused; }
.titem { display: inline-flex; align-items: center; gap: 10px; padding: 0 36px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.88); }
.tdot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.4); }
@keyframes tick { to { transform: translateX(-50%); } }

/* NAV */
header { position: sticky; top: 0; z-index: 200; background: rgba(248,246,243,.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 15px; font-weight: 600; letter-spacing: .06em; color: var(--dark); }
.logo-sup { color: var(--accent); font-size: 10px; vertical-align: super; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--sub); transition: color .15s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: inline-flex; align-items: center; gap: 7px; background: var(--accent); color: #fff; font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 0 22px; height: 38px; border-radius: var(--r); border: none; cursor: pointer; transition: background .15s; }
.nav-cta:hover { background: var(--acd); }

/* HERO */
.hero { background: var(--white); border-bottom: 1px solid var(--line); }
.hero-inner { display: grid; grid-template-columns: 1fr 460px; min-height: 90vh; }
.hero-left { padding: 80px 64px 80px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(102,18,42,.08); color: var(--accent); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r); margin-bottom: 24px; width: fit-content; }
.hero-quote { font-size: 17px; font-style: italic; color: var(--sub); border-left: 2px solid var(--accent); padding-left: 18px; line-height: 1.68; margin-bottom: 32px; max-width: 500px; }
.hero-h1 { font-size: clamp(34px, 3.8vw, 56px); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; color: var(--dark); margin-bottom: 12px; }
.hero-h1 em { font-style: italic; font-weight: 400; }
.hero-desc { font-size: 15px; color: var(--sub); line-height: 1.72; max-width: 480px; margin-bottom: 32px; }
.hero-desc strong { color: var(--dark); font-weight: 600; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin-bottom: 36px; }
.hs { background: var(--white); padding: 18px 16px; text-align: center; }
.hs-n { display: block; font-size: 20px; font-weight: 600; color: var(--dark); letter-spacing: -.02em; margin-bottom: 3px; }
.hs-n.acc { color: var(--accent); }
.hs-l { font-size: 11px; color: var(--muted); }
.hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; font-family: var(--font); font-size: 13.5px; font-weight: 600; letter-spacing: .05em; padding: 0 36px; height: 52px; border-radius: var(--r); border: none; cursor: pointer; transition: background .15s, transform .12s; white-space: nowrap; }
.btn-primary:hover { background: var(--acd); transform: translateY(-1px); }
.btn-ghost { font-size: 13px; font-weight: 500; color: var(--sub); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; transition: color .15s; }
.btn-ghost:hover { color: var(--accent); }
.hero-right { display: flex; flex-direction: column; background: var(--bg); }
.hero-img { flex: 1; background: linear-gradient(155deg, #EDE3DC 0%, #DCCFC5 50%, #CAB8AC 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; min-height: 360px; }
.hero-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 45% at 35% 40%, rgba(255,255,255,.2) 0%, transparent 65%); }
.hero-img-badge { position: absolute; top: 18px; left: 18px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r); }
.prod-name { font-size: 52px; font-weight: 600; letter-spacing: -.03em; color: var(--dark); position: relative; z-index: 1; line-height: 1; }
.prod-name sup { font-size: 24px; vertical-align: super; color: var(--accent); }
.prod-sub { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--sub); margin-top: 8px; position: relative; z-index: 1; }
.hero-buy { padding: 26px 28px; border-top: 1px solid var(--line); background: var(--white); }
.hb-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.hb-sub { font-size: 12px; color: var(--sub); margin-bottom: 14px; }
.hb-stars { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; }
.hb-si { color: var(--accent); font-size: 12px; }
.hb-sv { font-size: 12.5px; font-weight: 600; color: var(--accent); }
.hb-sc { font-size: 12px; color: var(--muted); }
.btn-buy { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--accent); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; height: 50px; border-radius: var(--r); border: none; cursor: pointer; transition: background .15s; margin-bottom: 10px; }
.btn-buy:hover { background: var(--acd); }
.hb-safe { font-size: 11.5px; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }
.hb-safe svg { color: var(--accent); }

/* TRUST */
.trust { background: var(--dark); }
.trow { display: flex; align-items: stretch; }
.ti { flex: 1; display: flex; align-items: center; gap: 13px; padding: 18px 28px; border-right: 1px solid rgba(255,255,255,.07); }
.ti:last-child { border-right: none; }
.ti-ico { color: var(--accent); flex-shrink: 0; }
.ti-t { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.4; }
.ti-t b { color: #fff; font-weight: 600; display: block; }

/* SECTIONS */
.sec { padding: 100px 0; }
.sec-white { background: var(--white); border-bottom: 1px solid var(--line); }
.sec-bg { background: var(--bg); border-bottom: 1px solid var(--line); }
.sec-bg2 { background: var(--bg2); border-bottom: 1px solid var(--line); }
.sec-dark { background: var(--dark); }
.stag { display: inline-flex; align-items: center; gap: 8px; background: rgba(102,18,42,.08); color: var(--accent); font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r); margin-bottom: 16px; }
.stag-light { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
h2 { font-size: clamp(26px, 3vw, 44px); font-weight: 600; line-height: 1.1; letter-spacing: -.022em; color: var(--dark); margin-bottom: 14px; }
h2 em { font-style: italic; font-weight: 400; }
h2.light { color: #fff; }
.lead { font-size: 15px; color: var(--sub); line-height: 1.75; max-width: 540px; }
.lead b { color: var(--ink); font-weight: 600; }
.lead-light { color: rgba(255,255,255,.5); max-width: 560px; }
.lead-light b { color: rgba(255,255,255,.85); }

/* REVIEWS */
.rev3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rc { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; transition: border-color .15s, box-shadow .15s; }
.rc:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(102,18,42,.07); }
.rc-stars { color: var(--accent); font-size: 12px; margin-bottom: 12px; }
.rc-text { font-size: 14px; color: var(--sub); line-height: 1.76; font-style: italic; margin-bottom: 16px; }
.rc-auth { font-size: 12.5px; font-weight: 600; color: var(--dark); }
.rc-verified { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }

/* PROBLEMA */
.prob-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.prob-body { font-size: 15px; color: var(--sub); line-height: 1.85; }
.prob-body p { margin-bottom: 18px; }
.prob-body p:last-child { margin-bottom: 0; }
.prob-body strong { color: var(--ink); font-weight: 600; }
.prob-cards { display: flex; flex-direction: column; gap: 10px; }
.pc { display: flex; gap: 18px; padding: 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: border-color .15s, box-shadow .15s; }
.pc:hover { border-color: var(--accent); box-shadow: 0 3px 14px rgba(102,18,42,.07); }
.pc-num { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: .1em; min-width: 24px; padding-top: 2px; flex-shrink: 0; }
.pc-t { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.pc-d { font-size: 13px; color: var(--sub); line-height: 1.62; }

/* SOLUÇÃO */
.solution-box { background: var(--dark); border-radius: 20px; padding: 56px 60px; display: grid; grid-template-columns: 1fr 180px; gap: 48px; align-items: center; }
.solution-box h2 { color: #fff; margin-bottom: 14px; }
.sol-stat { text-align: center; border-left: 1px solid rgba(255,255,255,.1); padding-left: 48px; flex-shrink: 0; }
.sol-n { font-size: 58px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.04em; }
.sol-n span { color: var(--accent); font-size: 34px; }
.sol-l { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; margin-top: 8px; line-height: 1.6; }

/* FÓRMULA */
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-lead { font-size: 15px; color: var(--sub); line-height: 1.8; margin-bottom: 28px; }
.form-lead b { color: var(--ink); font-weight: 600; }
.bens { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.ben { display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; border-bottom: 1px solid var(--line); background: var(--white); transition: background .15s; }
.ben:last-child { border-bottom: none; }
.ben:hover { background: var(--bg); }
.ben-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ben-t { font-size: 13.5px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.ben-d { font-size: 12.5px; color: var(--sub); line-height: 1.62; }
.ing-panel { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.ing-head { background: var(--dark); padding: 24px 26px; }
.ing-htag { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 6px; }
.ing-htitle { font-size: 17px; font-weight: 600; color: #fff; }
.ing-hsub { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 3px; }
.ing-body { display: grid; grid-template-columns: 1fr 1fr; background: var(--line); gap: 1px; border-top: 1px solid rgba(255,255,255,.08); }
.ic { background: var(--white); padding: 13px 18px; display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--dark); font-weight: 500; transition: background .15s; }
.ic:hover { background: var(--bg); }
.idot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.ing-foot { padding: 14px 22px; background: var(--bg); border-top: 1px solid var(--line); font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.ing-foot svg { color: var(--accent); flex-shrink: 0; }

/* ANTES/DEPOIS */
.ba-section { text-align: center; }
.ba-section h2 { max-width: 600px; margin: 0 auto 14px; }
.ba-section .lead { margin: 0 auto 52px; text-align: center; }
.ba-wrap { display: grid; grid-template-columns: 1fr 56px 1fr; align-items: stretch; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; max-width: 860px; margin: 0 auto 48px; }
.ba-col { background: var(--white); }
.ba-head { padding: 16px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 9px; }
.ba-dot { width: 8px; height: 8px; border-radius: 50%; }
.ba-dot.bad { background: var(--line2); }
.ba-dot.good { background: var(--accent); }
.ba-lbl { font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ba-lbl.bad { color: var(--sub); }
.ba-lbl.good { color: var(--accent); }
.ba-item { display: flex; align-items: center; gap: 13px; padding: 14px 24px; border-bottom: 1px solid var(--line); font-size: 13.5px; color: var(--sub); transition: background .15s; }
.ba-item:last-child { border-bottom: none; }
.ba-item:hover { background: var(--bg); }
.xi { color: var(--line2); font-size: 15px; }
.oi { color: var(--accent); font-size: 15px; }
.ba-mid { background: var(--bg2); display: flex; align-items: center; justify-content: center; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.ba-arr { width: 36px; height: 36px; background: var(--accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* CTA MID */
.cta-mid { text-align: center; padding: 80px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.cta-mid .prod-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 8px 20px; font-size: 12.5px; color: var(--sub); margin-bottom: 20px; }
.cta-mid .prod-pill b { color: var(--accent); }
.cta-mid h2 { max-width: 620px; margin: 0 auto 14px; }
.cta-mid .lead { text-align: center; margin: 0 auto 36px; }
.cta-mid .btn-center { display: flex; justify-content: center; }

/* GARANTIAS */
.guar-hero { text-align: center; margin-bottom: 52px; }
.guar-hero h2 { max-width: 600px; margin: 0 auto 12px; }
.guar-hero .lead { text-align: center; margin: 0 auto; }
.guar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.gc { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; transition: border-color .15s, box-shadow .15s; }
.gc:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(102,18,42,.07); }
.gc-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(102,18,42,.08); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.gc-t { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.gc-d { font-size: 13.5px; color: var(--sub); line-height: 1.72; }

/* DEPOIMENTOS GRID */
.testi-head { text-align: center; margin-bottom: 52px; }
.testi-head h2 { max-width: 560px; margin: 0 auto 12px; }
.testi-grid { columns: 4; gap: 16px; }
.tc { break-inside: avoid; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px; background: var(--white); transition: border-color .15s; }
.tc:hover { border-color: var(--accent); }
.tc-stars { color: var(--accent); font-size: 11px; margin-bottom: 9px; }
.tc-text { font-size: 13px; color: var(--sub); line-height: 1.78; font-style: italic; margin-bottom: 12px; }
.tc-auth { font-size: 12px; font-weight: 600; color: var(--dark); }
.tc-ver { font-size: 10px; color: var(--accent); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }

/* FINAL CTA */
.final-cta { background: var(--dark); padding: 100px 0; }
.final-inner { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.final-cta-title { font-size: clamp(30px, 3.2vw, 48px); font-weight: 600; line-height: 1.1; letter-spacing: -.022em; color: #fff; margin-bottom: 16px; }
.final-cta-title em { font-style: italic; font-weight: 400; }
.final-cta-desc { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.final-trust { display: flex; flex-wrap: wrap; gap: 14px; }
.ft-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.4); }
.ft-item svg { color: var(--accent); }
.final-card { background: var(--white); border-radius: 20px; overflow: hidden; }
.final-card-img { aspect-ratio: 4/3; background: linear-gradient(145deg, #EDE3DC 0%, #D9CABD 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.final-card-badge { position: absolute; top: 16px; left: 16px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r); }
.final-card-pname { font-size: 48px; font-weight: 600; letter-spacing: -.03em; color: var(--dark); line-height: 1; }
.final-card-pname sup { font-size: 22px; vertical-align: super; color: var(--accent); }
.final-card-body { padding: 24px 26px; }
.final-card-name { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.final-card-sub { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.final-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.fsi { color: var(--accent); font-size: 12px; }
.fsv { font-size: 12px; font-weight: 600; color: var(--accent); }
.fsc { font-size: 11.5px; color: var(--muted); }
.btn-final { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--accent); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; height: 52px; border-radius: var(--r); border: none; cursor: pointer; transition: background .15s; margin-bottom: 10px; }
.btn-final:hover { background: var(--acd); }
.final-safe { font-size: 11.5px; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }
.final-safe svg { color: var(--accent); }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 36px 0; }
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-logo { font-size: 14px; font-weight: 600; letter-spacing: .07em; color: rgba(255,255,255,.4); }
.foot-logo span { color: var(--accent); }
.foot-copy { font-size: 11.5px; color: rgba(255,255,255,.22); }
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-size: 11.5px; color: rgba(255,255,255,.3); transition: color .15s; }
.foot-links a:hover { color: var(--accent); }

/* STICKY */
.sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: var(--white); border-top: 1px solid var(--line); transform: translateY(100%); transition: transform .25s ease; box-shadow: 0 -6px 28px rgba(0,0,0,.09); }
.sticky.on { transform: translateY(0); }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 56px; max-width: 1240px; margin: 0 auto; gap: 24px; }
.sticky-lbl { font-size: 14px; color: var(--dark); font-weight: 500; }
.sticky-lbl strong { font-weight: 700; }
.sticky-trust { display: flex; gap: 20px; flex: 1; justify-content: center; }
.stt { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.stt svg { color: var(--accent); }

/* REVEAL */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.rv.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .w { padding: 0 28px; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px 0; border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .prob-layout, .form-layout, .final-inner { grid-template-columns: 1fr; gap: 48px; }
  .solution-box { grid-template-columns: 1fr; padding: 40px 32px; }
  .sol-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-top: 28px; }
  .ba-wrap { grid-template-columns: 1fr; max-width: 100%; }
  .ba-mid { height: 48px; border: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .ba-arr { transform: rotate(90deg); }
  .guar-grid { grid-template-columns: 1fr; }
  .testi-grid { columns: 2; }
  .trow { flex-wrap: wrap; }
  .ti { min-width: 50%; }
  .sticky-trust { display: none; }
  .nav-links { display: none; }
  .rev3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .w { padding: 0 20px; }
  .testi-grid { columns: 1; }
  .sec { padding: 64px 0; }
  .hero-h1 { font-size: 30px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .solution-box { padding: 28px 22px; }
}
