/* ═══════════════════════════════════════════════════════════
   10XPRO — Landing Page
   Identidade: preto de estúdio + laranja #FF6600 + Montserrat
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --ink:        #0B0B0B;
  --ink-2:      #101010;
  --panel:      #151515;
  --panel-2:    #1C1C1C;
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.16);

  --txt:        #EDEDED;
  --txt-2:      #B4B4B4;
  --muted:      #8A8A8A;

  --orange:     #FF6600;
  --orange-lt:  #FF8C41;
  --orange-dk:  #E25400;
  --red:        #F32A2A;
  --green:      #3DC97E;

  --glow:       0 0 60px -12px rgba(255,102,0,.55);
  --shadow:     0 24px 60px -24px rgba(0,0,0,.9);

  --wrap:       1180px;
  --wrap-narrow: 860px;
  --r:          16px;
  --r-lg:       24px;

  --ease:       cubic-bezier(.2,.7,.25,1);
  --sec-pad:    clamp(72px, 10vw, 140px);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  background: var(--ink);
  color: var(--txt);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: clamp(15px, .45vw + 14px, 17px);
  line-height: 1.65;
  letter-spacing: -.01em;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
s { text-decoration-thickness: 2px; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--orange); color: #fff; }

:focus-visible {
  outline: 2px solid var(--orange-lt);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: fixed; top: 8px; left: 8px; z-index: 999;
  padding: 10px 18px; background: var(--orange); color: #fff;
  font-weight: 700; border-radius: 8px;
  transform: translateY(-200%);
}
.skip:focus { transform: none; }

/* ── GRÃO / TEXTURA ───────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%;
  z-index: 1; pointer-events: none;
  opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.wrap.narrow { max-width: var(--wrap-narrow); }
@media (max-width: 560px) { .wrap { width: min(100% - 32px, var(--wrap)); } }

.sec {
  position: relative;
  padding-block: var(--sec-pad);
  isolation: isolate;
}
.sec__bg { position: absolute; inset: 0; z-index: 0; }
.sec__bg img { width: 100%; height: 100%; object-fit: cover; }
.sec__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent, rgba(11,11,11,.75) 75%),
    linear-gradient(180deg, var(--ink) 0%, transparent 22%, transparent 78%, var(--ink) 100%);
}

.center { text-align: center; }

/* ── TIPOGRAFIA ───────────────────────────────────────────── */
.h2, .h3, .hero__h1, .pillar__t, .mentor__n, .dcard__t, .guarantee__t {
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero__h1 {
  font-size: clamp(2.15rem, 6.2vw, 4.55rem);
  font-weight: 900;
  text-transform: uppercase;
}
.h2 {
  font-size: clamp(1.75rem, 4.2vw, 3.15rem);
  text-transform: uppercase;
}
.h3 {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-transform: uppercase;
}

.hl {
  color: var(--orange);
  text-shadow: 0 0 34px rgba(255,102,0,.35);
}
.hl-red { color: var(--red); }
.hl__slash { font-size: .62em; letter-spacing: -.02em; }
.quote-mark { color: var(--txt-2); }
.dim { color: var(--muted); font-weight: 600; }

.kicker {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.kicker.center { text-align: center; }

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  color: var(--txt-2);
  font-weight: 500;
  text-wrap: pretty;
}
.disclaimer {
  margin-top: 32px;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}
.fine { color: var(--muted); font-weight: 500; }

/* ── BOTÕES ───────────────────────────────────────────────── */
.btn {
  --bg1: var(--orange);
  --bg2: var(--orange-dk);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 34px;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  color: #fff;
  font-weight: 800;
  font-size: clamp(.9rem, 1.1vw, 1rem);
  letter-spacing: .01em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 14px 34px -14px rgba(255,102,0,.85), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .3s;
  text-wrap: balance;
}
.btn::after {                      /* varredura de brilho */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.42) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(255,102,0,1), inset 0 1px 0 rgba(255,255,255,.3); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn__arw { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s var(--ease); }
.btn:hover .btn__arw { transform: translateX(5px); }

.btn--lg { padding: 21px 44px; font-size: clamp(.95rem, 1.3vw, 1.12rem); }
.btn--sm { padding: 12px 22px; font-size: .78rem; }
.btn--full { width: 100%; }
.btn--ghost {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-2);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); box-shadow: none; }
.wa { width: 20px; height: 20px; fill: var(--green); flex: none; }

/* ── HEADER ───────────────────────────────────────────────── */
.hdr {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(9,9,9,.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.hdr__in {
  display: flex; align-items: center; gap: 28px;
  height: 74px;
}
.hdr__logo img { width: clamp(96px, 12vw, 124px); }
.hdr__nav {
  display: flex; gap: 30px;
  margin-left: auto;
  font-size: .82rem; font-weight: 600; color: var(--txt-2);
}
.hdr__nav a { position: relative; padding-block: 6px; transition: color .25s; }
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.hdr__nav a:hover { color: #fff; }
.hdr__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.hdr__cta { margin-left: 4px; }

.hdr__progress {
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left;
}
@media (max-width: 900px) { .hdr__nav { display: none; } .hdr__cta { margin-left: auto; } }
@media (max-width: 430px) { .hdr__cta { padding: 11px 16px; font-size: .7rem; } }
@media (max-width: 330px) { .hdr__cta { display: none; } }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(660px, 100svh, 1000px);
  display: grid; align-items: center;
  padding-block: 140px 90px;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 60% at 18% 12%, rgba(255,102,0,.16), transparent 62%),
    radial-gradient(60% 55% at 88% 78%, rgba(255,102,0,.11), transparent 60%),
    linear-gradient(180deg, rgba(11,11,11,.72) 0%, rgba(11,11,11,.55) 40%, var(--ink) 100%);
}
.hero__in { max-width: 960px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(255,102,0,.35);
  background: rgba(255,102,0,.09);
  border-radius: 999px;
  font-size: clamp(.66rem, 1.5vw, .76rem);
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #FFD3B4;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex: none;
  box-shadow: 0 0 0 0 rgba(255,102,0,.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 11px rgba(255,102,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,102,0,0); }
}

.hero__sub {
  margin-top: 16px;
  font-size: clamp(.95rem, 2vw, 1.28rem);
  font-weight: 700; color: var(--orange-lt);
  letter-spacing: -.02em;
}
.hero__lede {
  margin-top: 20px;
  max-width: 640px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--txt-2);
  text-wrap: pretty;
}
.hero__lede strong { color: #fff; font-weight: 700; }

.hero__cta {
  margin-top: 38px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px;
}
.hero__note { font-size: .8rem; color: var(--muted); font-weight: 600; }

.stats {
  margin-top: clamp(48px, 7vw, 76px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid; gap: 26px 32px;
  grid-template-columns: repeat(4, 1fr);
}
.stats__i b {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 900; letter-spacing: -.045em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.stats__i span {
  display: block; margin-top: 6px;
  font-size: .78rem; line-height: 1.45;
  color: var(--muted); font-weight: 600;
}
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px;
  translate: -50% 0;
  width: 24px; height: 38px;
  border: 2px solid var(--line-2); border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 7px;
  translate: -50% 0;
  width: 3px; height: 7px; border-radius: 2px;
  background: var(--orange);
  animation: scrolly 1.9s var(--ease) infinite;
}
@keyframes scrolly {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}
@media (max-height: 720px) { .hero__scroll { display: none; } }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--orange);
  border-block: 1px solid rgba(0,0,0,.25);
  padding-block: 15px;
  position: relative; z-index: 3;
}
.marquee__track {
  display: flex; align-items: center; gap: 26px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee span {
  font-size: clamp(.85rem, 1.8vw, 1.15rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; color: #0B0B0B;
  white-space: nowrap;
}
.marquee i { color: rgba(0,0,0,.42); font-style: normal; font-size: .8rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── DOR ──────────────────────────────────────────────────── */
.sec--pain { background: var(--ink); }
.pain__grid {
  display: grid; gap: clamp(36px, 5vw, 64px);
  grid-template-columns: 1fr 1.05fr;
  align-items: start;
}
@media (max-width: 900px) { .pain__grid { grid-template-columns: 1fr; } }

.pain__head .lead { margin-top: 18px; font-weight: 600; color: #fff; }
.pain__img {
  margin-top: 34px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.pain__img img { width: 100%; filter: grayscale(.35) contrast(1.05); }
.pain__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,11,.85));
}
@media (max-width: 900px) { .pain__img { display: none; } }

.pain__list { display: grid; gap: 12px; }
.pain__i {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 22px;
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600; color: var(--txt-2);
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s;
}
.pain__i:hover { border-color: rgba(243,42,42,.45); transform: translateX(6px); background: linear-gradient(180deg, #1A1414, var(--ink-2)); }
.pain__i em { color: #fff; font-style: normal; font-weight: 700; }
.x {
  flex: none;
  width: 26px; height: 26px; margin-top: 1px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(243,42,42,.14);
  color: var(--red);
  font-size: .72rem; font-weight: 900;
}

.verdict {
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,102,0,.3);
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(255,102,0,.14), transparent 65%),
    var(--panel);
  text-align: center;
  display: grid; justify-items: center; gap: 28px;
}
.verdict__t {
  font-size: clamp(1.25rem, 3.2vw, 2.25rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -.035em;
  text-transform: uppercase; text-wrap: balance;
}

/* ── VERDADE ──────────────────────────────────────────────── */
.truth__in { max-width: 800px; }
.truth__p {
  margin-top: 22px;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  color: var(--txt-2); font-weight: 500; text-wrap: pretty;
}
.truth__p b { color: #fff; font-weight: 800; }
.truth__p--big {
  font-size: clamp(1.15rem, 2.6vw, 1.85rem);
  color: #fff; font-weight: 700; line-height: 1.28; letter-spacing: -.03em;
}
.truth__p--big u { text-decoration-color: var(--orange); text-underline-offset: 6px; text-decoration-thickness: 3px; }

.pull {
  margin-top: 40px;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 44px);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  background: linear-gradient(90deg, rgba(255,102,0,.1), rgba(21,21,21,.75));
  backdrop-filter: blur(10px);
  position: relative;
}
.pull::before {
  content: '“';
  position: absolute; top: -14px; right: 24px;
  font-size: 7rem; line-height: 1; color: rgba(255,102,0,.18);
  font-weight: 900; pointer-events: none;
}
.pull p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600; font-style: italic;
  line-height: 1.45; letter-spacing: -.02em;
  text-wrap: pretty;
}

/* ── SISTEMA / PILARES ────────────────────────────────────── */
.sec--system { background: linear-gradient(180deg, var(--ink), #0E0E0E); }
.sysintro {
  max-width: 780px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.sysintro .lead { margin-top: 20px; }
.sysintro .lead b { color: var(--orange); font-weight: 800; }
.sysintro__by {
  margin-top: 18px;
  font-size: .95rem; color: var(--muted); font-weight: 500;
  padding-left: 18px; border-left: 2px solid var(--line-2);
}
.sysintro__by b { color: var(--txt); font-weight: 700; }
.sysintro .btn { margin-top: 34px; }

.h3.center { margin-bottom: 40px; }

.pillars {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: p;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding: clamp(28px, 3.4vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--panel-2), var(--ink-2) 70%);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.pillar::before {                     /* halo laranja no hover */
  content: ''; position: absolute; inset: -1px;
  border-radius: inherit;
  background: radial-gradient(70% 60% at 50% 0%, rgba(255,102,0,.22), transparent 70%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.pillar > * { position: relative; }
.pillar:hover { transform: translateY(-8px); border-color: rgba(255,102,0,.4); box-shadow: var(--shadow); }
.pillar:hover::before { opacity: 1; }

.pillar__n {
  display: block;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,102,0,.55);
  margin-bottom: 20px;
  transition: color .45s var(--ease);
}
.pillar:hover .pillar__n { color: rgba(255,102,0,.14); }
.pillar__t { font-size: clamp(1.15rem, 2vw, 1.45rem); text-transform: uppercase; }
.pillar__d { margin-top: 14px; color: var(--txt-2); font-size: .95rem; font-weight: 500; }
.pillar__d b { color: #fff; font-weight: 800; }
.tag {
  display: inline-block; margin-top: 22px;
  padding: 7px 14px;
  border: 1px dashed rgba(255,102,0,.45);
  border-radius: 999px;
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--orange-lt);
}

/* ── MENTORES ─────────────────────────────────────────────── */
.sec--mentors { background: #0E0E0E; }
.mentors {
  margin-top: 52px;
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .mentors { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

.mentor {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.mentor:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.mentor__ph { position: relative; aspect-ratio: 4 / 4.4; overflow: hidden; background: #000; }
.mentor__ph img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  filter: grayscale(1) contrast(1.08) brightness(.9);
  transition: filter .6s var(--ease), transform .8s var(--ease);
}
.mentor:hover .mentor__ph img { filter: grayscale(0) contrast(1.02) brightness(1); transform: scale(1.045); }
.mentor__ph::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(21,21,21,.95));
}
.mentor__body { padding: 26px clamp(22px, 2.6vw, 30px) 30px; margin-top: -46px; position: relative; }
.mentor__n { font-size: clamp(1.15rem, 2vw, 1.4rem); text-transform: uppercase; }
.mentor__s {
  margin-top: 8px;
  display: inline-block;
  font-size: .78rem; font-weight: 800;
  color: var(--orange); letter-spacing: -.01em;
}
.mentor__d { margin-top: 14px; font-size: .9rem; color: var(--txt-2); font-weight: 500; }
.mentor__d b { color: #fff; font-weight: 800; }

/* ── DEPOIMENTOS ──────────────────────────────────────────── */
.sec--proof { background: linear-gradient(180deg, #0E0E0E, var(--ink)); }
.cases {
  margin-top: 52px;
  display: grid; gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 820px) { .cases { grid-template-columns: 1fr; } }

.case {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease);
}
.case:hover { border-color: rgba(255,102,0,.35); transform: translateY(-4px); }
@media (max-width: 560px) {
  .case { grid-template-columns: 1fr; }
  /* thumb vertical do Shorts: recorta numa faixa, mantendo o rosto no enquadramento */
  .case .ytf { aspect-ratio: 4 / 3; min-height: 0; }
  .case .ytf img { object-position: 50% 22%; }
}

.ytf {
  position: relative; display: block; width: 100%; height: 100%;
  min-height: 210px; background: #000; overflow: hidden;
}
.ytf img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), opacity .4s; }
.ytf:hover img { transform: scale(1.06); opacity: .8; }
.ytf__play {
  position: absolute; inset: 0; margin: auto;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 10px 30px -8px rgba(255,102,0,.9);
  transition: transform .4s var(--ease);
}
.ytf__play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.ytf:hover .ytf__play { transform: scale(1.12); }
.ytf iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.case__body { padding: clamp(22px, 2.6vw, 30px); align-self: center; }
.case__h {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800; letter-spacing: -.03em; text-transform: uppercase;
  line-height: 1.15;
}
.case__body blockquote { margin-top: 14px; }
.case__body blockquote p {
  font-size: .92rem; color: var(--txt-2); font-style: italic; font-weight: 500;
  text-wrap: pretty;
}
.case__body cite {
  display: block; margin-top: 16px;
  font-size: .8rem; font-weight: 800; font-style: normal;
  color: var(--orange); text-transform: uppercase; letter-spacing: .06em;
}

/* ── ENTREGÁVEIS ──────────────────────────────────────────── */
.sec--deliver { background: var(--ink); }
.deliver {
  margin-top: 52px;
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) { .deliver { grid-template-columns: 1fr; } }

.dcard {
  padding: clamp(28px, 3.4vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--panel-2), var(--ink-2) 75%);
  transition: transform .45s var(--ease), border-color .45s;
}
.dcard:hover { transform: translateY(-6px); border-color: rgba(255,102,0,.35); }
.dcard__ico {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,102,0,.12);
  border: 1px solid rgba(255,102,0,.3);
  margin-bottom: 22px;
}
.dcard__ico svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--orange); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.dcard__t { font-size: clamp(1.05rem, 1.8vw, 1.3rem); text-transform: uppercase; }

.checks { margin-top: 20px; display: grid; gap: 12px; }
.checks li {
  position: relative;
  padding-left: 30px;
  font-size: .9rem; font-weight: 500; color: var(--txt-2);
}
.checks li::before {
  content: ''; position: absolute; left: 0; top: .38em;
  width: 16px; height: 9px;
  border-left: 2.4px solid var(--orange);
  border-bottom: 2.4px solid var(--orange);
  rotate: -45deg;
  border-radius: 1px;
}

/* ── POR DENTRO ───────────────────────────────────────────── */
.sec--inside { background: linear-gradient(180deg, var(--ink), #0E0E0E); }
.video { margin-top: 44px; }
.ytf--wide {
  aspect-ratio: 16 / 9; min-height: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.ytf--wide .ytf__play { width: 78px; height: 78px; }
.ytf--wide .ytf__play svg { width: 34px; height: 34px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.sec--faq { background: #0E0E0E; }
.faq { margin-top: 44px; display: grid; gap: 12px; }
.faq__i {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--panel);
  overflow: hidden;
  transition: border-color .35s, background .35s;
}
.faq__i[open] { border-color: rgba(255,102,0,.4); background: linear-gradient(180deg, #1A1512, var(--panel)); }
.faq__i summary {
  display: flex; align-items: center; gap: 18px;
  padding: 22px clamp(20px, 2.6vw, 28px);
  cursor: pointer; list-style: none;
  font-size: clamp(.95rem, 1.6vw, 1.12rem);
  font-weight: 800; letter-spacing: -.025em;
  text-wrap: balance;
}
.faq__i summary::-webkit-details-marker { display: none; }
.faq__i summary span { flex: 1; }
.faq__i summary i {
  flex: none; position: relative;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-2);
  transition: background .35s, border-color .35s, rotate .35s var(--ease);
}
.faq__i summary i::before,
.faq__i summary i::after {
  content: ''; position: absolute; inset: 0; margin: auto;
  background: var(--orange); border-radius: 2px;
}
.faq__i summary i::before { width: 12px; height: 2px; }
.faq__i summary i::after  { width: 2px; height: 12px; transition: opacity .3s; }
.faq__i[open] summary i { rotate: 180deg; background: rgba(255,102,0,.15); border-color: rgba(255,102,0,.5); }
.faq__i[open] summary i::after { opacity: 0; }
.faq__a {
  padding: 0 clamp(20px, 2.6vw, 28px) 26px;
  color: var(--txt-2); font-size: .95rem; font-weight: 500;
  text-wrap: pretty;
}
.faq__a b { color: #fff; font-weight: 800; }
@supports (interpolate-size: allow-keywords) {
  .faq__i::details-content {
    block-size: 0; opacity: 0; overflow: hidden;
    transition: block-size .45s var(--ease), opacity .35s, content-visibility .45s allow-discrete;
  }
  .faq__i[open]::details-content { block-size: auto; opacity: 1; }
}

/* ── OFERTA ───────────────────────────────────────────────── */
.offer__in { max-width: 720px; margin-inline: auto; text-align: center; }

.alert {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(243,42,42,.12);
  border: 1px solid rgba(243,42,42,.45);
  color: #FF9C9C;
  font-size: clamp(.7rem, 1.5vw, .8rem);
  font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
}
.alert__pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none;
  animation: blink 1.4s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: .25; } }

.offer__why {
  margin-top: 20px;
  color: var(--txt-2); font-size: .95rem; font-weight: 500;
  text-wrap: pretty;
}

.card--price {
  margin-top: 40px;
  padding: clamp(32px, 5vw, 54px) clamp(24px, 4vw, 48px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,102,0,.35);
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(255,102,0,.16), transparent 62%),
    rgba(18,18,18,.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow), var(--glow);
  position: relative; overflow: hidden;
}
.card--price::before {
  content: ''; position: absolute; top: 0; left: 50%; translate: -50% 0;
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.card__eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
}
.price__old { margin-top: 20px; color: var(--muted); font-weight: 600; font-size: .95rem; }
.price__old s { color: var(--red); }
.price__now {
  display: flex; align-items: flex-start; justify-content: center; gap: 4px;
  margin-top: 4px;
  font-size: clamp(3.6rem, 12vw, 6.2rem);
  font-weight: 900; line-height: .95; letter-spacing: -.06em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.price__cur { font-size: .32em; font-weight: 800; margin-top: .55em; letter-spacing: -.02em; }
.price__cents { font-size: .38em; font-weight: 800; margin-top: .28em; }
.price__inst { margin-top: 10px; color: var(--txt-2); font-weight: 600; font-size: .95rem; }
.price__inst b { color: #fff; font-weight: 800; }
.card--price .btn { margin-top: 32px; }

.paylist { margin-top: 26px; display: grid; gap: 10px; text-align: left; }
.paylist li {
  position: relative; padding-left: 26px;
  font-size: .8rem; color: var(--muted); font-weight: 500; line-height: 1.5;
}
.paylist li::before {
  content: ''; position: absolute; left: 0; top: .3em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green);
  rotate: -45deg;
}
.paylist b { color: var(--txt-2); font-weight: 800; }
.offer__deadline {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--red);
}

/* GARANTIA */
.guarantee {
  margin-top: 34px;
  display: flex; align-items: center; gap: clamp(20px, 3vw, 34px);
  text-align: left;
  padding: clamp(26px, 3.6vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(61,201,126,.32);
  background: rgba(12,20,16,.86);
  backdrop-filter: blur(12px);
}
@media (max-width: 620px) { .guarantee { flex-direction: column; text-align: center; } }

.seal {
  flex: none;
  width: 104px; height: 104px;
  display: grid; place-content: center; text-align: center;
  border-radius: 50%;
  border: 2px dashed rgba(61,201,126,.5);
  background: radial-gradient(circle, rgba(61,201,126,.16), transparent 70%);
  color: var(--green);
  animation: spin-slow 26s linear infinite;
}
.seal__n { font-size: 2.3rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.seal__d { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
@keyframes spin-slow { to { rotate: 360deg; } }

.guarantee__t { font-size: clamp(1.1rem, 2vw, 1.45rem); text-transform: uppercase; color: var(--green); }
.guarantee__body p { margin-top: 10px; font-size: .92rem; color: var(--txt-2); font-weight: 500; text-wrap: pretty; }
.guarantee__body p b { color: #fff; font-weight: 800; }
.guarantee__kick { font-style: italic; color: var(--muted) !important; font-size: .85rem !important; }

/* ── ESCOLHA ──────────────────────────────────────────────── */
.sec--choice .h2 { max-width: 900px; margin-inline: auto; }
.choice__q {
  margin-top: 22px; text-align: center;
  font-size: 1rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
}
.choice {
  margin-top: 40px;
  display: grid; gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
@media (max-width: 820px) {
  .choice { grid-template-columns: 1fr; }
  /* empilhado: vira uma pastilha compacta em vez de um círculo gigante */
  .choice__vs { aspect-ratio: auto; width: 52px; height: 52px; padding: 0; justify-self: center; }
}

.choice__vs {
  font-size: .78rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .18em; color: var(--muted);
  padding: 12px; border: 1px solid var(--line); border-radius: 50%;
  aspect-ratio: 1; display: grid; place-items: center;
  background: var(--ink);
}
.choice__c {
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(18,18,18,.88);
  backdrop-filter: blur(10px);
  transition: transform .45s var(--ease), border-color .45s;
}
.choice__c h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: -.03em;
}
.choice__c ul { margin-top: 20px; display: grid; gap: 12px; }
.choice__c li {
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem; font-weight: 600;
}
.choice__c li span {
  flex: none; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%;
  font-size: .68rem; font-weight: 900;
}
.choice__c--bad { color: var(--muted); }
.choice__c--bad h3 { color: var(--txt-2); }
.choice__c--bad li span { background: rgba(243,42,42,.14); color: var(--red); }
.choice__c--good {
  border-color: rgba(255,102,0,.45);
  background:
    radial-gradient(90% 100% at 50% 0%, rgba(255,102,0,.16), transparent 68%),
    rgba(20,16,13,.92);
  box-shadow: var(--glow);
}
.choice__c--good li span { background: rgba(255,102,0,.18); color: var(--orange); }
.choice__c--good:hover { transform: translateY(-5px); }

.choice__cta {
  margin-top: clamp(40px, 5vw, 56px);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}

/* ── ASSINATURA ───────────────────────────────────────────── */
.sec--sign {
  background: var(--ink);
  padding-block: clamp(56px, 8vw, 100px);
}
.sign { text-align: center; }
.sign p {
  font-size: clamp(1.1rem, 2.8vw, 1.85rem);
  font-weight: 700; font-style: italic;
  line-height: 1.32; letter-spacing: -.03em;
  text-wrap: balance;
}
.sign footer { margin-top: 26px; display: grid; gap: 3px; }
.sign footer b { font-size: .92rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; }
.sign footer span { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ── FOOTER ───────────────────────────────────────────────── */
.ftr {
  background: #070707;
  border-top: 1px solid var(--line);
  padding-block: 56px calc(56px + env(safe-area-inset-bottom));
}
.ftr__in { display: grid; justify-items: center; text-align: center; gap: 26px; }
.ftr__logo { width: 118px; opacity: .9; }
.ftr__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; font-size: .82rem; font-weight: 600; color: var(--txt-2); }
.ftr__nav a:hover { color: var(--orange); }
.ftr__legal { font-size: .82rem; color: var(--muted); font-weight: 500; line-height: 1.8; }
.ftr__legal b { color: var(--txt-2); font-weight: 800; }
.ftr__fine { max-width: 620px; font-size: .7rem; color: #5C5C5C; font-weight: 500; line-height: 1.7; }

/* ── DOCK (CTA fixo) ──────────────────────────────────────── */
.dock {
  position: fixed; inset: auto 0 0; z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(9,9,9,.9);
  backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
}
.dock.is-on { transform: none; }
.dock__in {
  width: min(100% , var(--wrap));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.dock__txt { display: grid; line-height: 1.25; }
.dock__txt b { font-size: 1.15rem; font-weight: 900; letter-spacing: -.04em; }
.dock__txt span { font-size: .72rem; color: var(--muted); font-weight: 600; }
@media (min-width: 901px) { .dock { display: none; } }

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.wafab {
  position: fixed; right: 18px; z-index: 91;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 30px -8px rgba(61,201,126,.8);
  transition: transform .4s var(--ease), bottom .5s var(--ease);
}
.wafab svg { width: 30px; height: 30px; fill: #062B18; }
.wafab:hover { transform: scale(1.09); }
body:has(.dock.is-on) .wafab { bottom: calc(92px + env(safe-area-inset-bottom)); }

/* ── REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { --d: 1; }
.reveal[data-d="2"] { --d: 2; }
.reveal[data-d="3"] { --d: 3; }
.reveal[data-d="4"] { --d: 4; }
.reveal[data-d="5"] { --d: 5; }
.pain__i:nth-child(1) { --d: 0; } .pain__i:nth-child(2) { --d: 1; }
.pain__i:nth-child(3) { --d: 2; } .pain__i:nth-child(4) { --d: 3; }
.pain__i:nth-child(5) { --d: 4; } .pain__i:nth-child(6) { --d: 5; }
.faq__i:nth-child(2) { --d: 1; } .faq__i:nth-child(3) { --d: 2; } .faq__i:nth-child(4) { --d: 3; }

/* ── ACESSIBILIDADE / MOVIMENTO ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media print {
  .hdr, .dock, .wafab, .grain, .hero__scroll, .marquee { display: none !important; }
  body { background: #fff; color: #000; }
}
