/* =====================================================================
   NO COMANDO DA DIREÇÃO — Página de Vendas
   Folha de estilos
   ===================================================================== */

/* ---------- Variáveis de cor ---------- */
:root {
  --bg:        #0b0b0d;
  --card:      #141417;
  --card-2:    #101013;
  --orange:    #FF8A00;
  --orange-lt: #FFB347;
  --yellow-1:  #FFC400;
  --yellow-2:  #FF7A00;
  --ink:       #1a1206;
  --white:     #ffffff;
  --green:     #5fd07a;
  --red:       #FF3B30;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- Container raiz ---------- */
.page {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% -10%, #19140a 0%, #0b0b0d 46%);
}

/* ---------- Seções ---------- */
.section { max-width: 980px; margin: 0 auto; padding: 64px 20px 20px; }
.section--hero  { max-width: 760px; padding: 26px 20px 48px; text-align: center; }
.section--cta   { max-width: 680px; padding: 8px 20px 4px;  text-align: center; }
.section--price { max-width: 620px; }
.section--guar  { max-width: 760px; padding: 50px 20px 20px; }
.section--faq   { max-width: 760px; padding: 60px 20px 20px; }
.section--final { max-width: 720px; padding: 64px 20px 80px; text-align: center; }
.section--bonus { padding: 50px 20px 20px; }

/* ---------- Tipografia ---------- */
.eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.display {
  font-family: 'Anton', sans-serif; font-weight: 400;
  text-transform: uppercase; line-height: 1.05;
}
.lead { color: rgba(255,255,255,.65); font-size: 16px; text-wrap: pretty; }

/* ---------- HERO ---------- */
.hero__logo {
  width: 230px; max-width: 64%; height: auto; margin: 6px auto 26px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.6));
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border: 1px solid rgba(255,138,0,.4); border-radius: 100px;
  background: rgba(255,138,0,.08);
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange-lt); margin-bottom: 22px;
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: ncdBlink 1.1s infinite;
}
.hero__title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(30px, 7.4vw, 52px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: -.01em;
}
.hero__title .accent { color: var(--orange); }
.hero__sub {
  max-width: 560px; margin: 18px auto 26px;
  font-size: clamp(15px, 4vw, 18px); line-height: 1.55;
  color: rgba(255,255,255,.72); text-wrap: pretty;
}
.hero__sub strong { color: var(--white); }

/* ---------- Player de vídeo ---------- */
.video {
  position: relative; width: 100%; border-radius: 16px; overflow: hidden;
  background: #000; aspect-ratio: 16/9;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.07);
}
.video__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video__frame {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.video__el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.video__overlay {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer;
  background: rgba(0,0,0,.42);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.play {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2));
  display: flex; align-items: center; justify-content: center;
  animation: ncdPulse 1.9s infinite, ncdScale 1.9s ease-in-out infinite;
}
.play__tri {
  width: 0; height: 0; border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 7px;
}
.video__label {
  font-weight: 800; font-size: 15px; letter-spacing: .04em;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

/* Faixa de status abaixo do vídeo */
.status {
  margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 20px; border-radius: 12px;
  background: var(--card); border: 1px solid rgba(255,138,0,.25);
}
.status__spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,138,0,.3); border-top-color: var(--orange);
  animation: ncdSpin .9s linear infinite;
}
.status__text { font-size: 14px; color: rgba(255,255,255,.78); text-align: left; }
.status__text strong { color: var(--orange); font-variant-numeric: tabular-nums; }
.hero__hint {
  margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.45); letter-spacing: .02em;
}

/* ---------- Conteúdo bloqueado ---------- */
.locked { display: none; }
.locked.is-unlocked { display: block; animation: ncdUp .7s ease-out both; }

/* ---------- Botões / CTA ---------- */
.btn {
  display: block; width: 100%; text-align: center;
  padding: 20px 24px; border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2));
  color: var(--ink); font-weight: 800; text-transform: uppercase;
  letter-spacing: .01em;
  box-shadow: 0 16px 36px -10px rgba(255,138,0,.6);
  animation: ncdScale 2.4s ease-in-out infinite;
}
.btn--lg { font-size: clamp(16px, 4.4vw, 20px); }
.btn--md { font-size: clamp(15px, 4.2vw, 18px); max-width: 440px; margin: 30px auto 0; padding: 20px; }
.btn--final { font-size: clamp(16px, 4.6vw, 20px); max-width: 480px; margin: 0 auto; padding: 22px; }

.cta__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 14px;
}
.cta__tag .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: ncdBlink 1.3s infinite;
}
.cta__note { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 14px; }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr)); }
.grid--260 { grid-template-columns: repeat(auto-fit, minmax(min(260px,100%), 1fr)); gap: 16px; }
.grid--290 { grid-template-columns: repeat(auto-fit, minmax(min(290px,100%), 1fr)); }
.grid--250 { grid-template-columns: repeat(auto-fit, minmax(min(250px,100%), 1fr)); }
.grid--cmp { grid-template-columns: repeat(auto-fit, minmax(min(290px,100%), 1fr)); gap: 18px; }

.center { text-align: center; }
.mb-head { margin-bottom: 38px; }

/* ---------- DORES ---------- */
.pain {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px;
  border-radius: 14px; background: var(--card); border: 1px solid rgba(255,255,255,.07);
}
.pain__mark {
  flex: 0 0 auto; font-family: 'Anton', sans-serif; color: var(--orange);
  font-size: 20px; letter-spacing: -2px; margin-top: 1px;
}
.pain__text { font-size: 15.5px; line-height: 1.5; color: rgba(255,255,255,.88); }
.dores__title { text-align: center; font-size: clamp(26px,5.6vw,42px); margin-bottom: 8px; }
.dores__intro { text-align: center; max-width: 560px; margin: 0 auto 38px; }
.dores__close {
  text-align: center; max-width: 600px; margin: 34px auto 0;
  font-size: clamp(17px,4.4vw,21px); line-height: 1.45; font-weight: 700;
}
.dores__close .accent { color: var(--orange); }

/* ---------- MÉTODO ---------- */
.phase {
  padding: 28px 24px; border-radius: 16px;
  background: linear-gradient(180deg, #17130c, var(--card));
  border: 1px solid rgba(255,138,0,.18);
}
.phase__num { font-family: 'Anton', sans-serif; font-size: 46px; color: rgba(255,138,0,.85); line-height: 1; }
.phase__title { font-size: 19px; font-weight: 800; margin: 8px 0; }
.phase__text { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.68); }
.method__head { text-align: center; margin-bottom: 40px; }
.method__head .lead { max-width: 600px; margin: 14px auto 0; }

/* ---------- COMPARAÇÃO ---------- */
.cmp__title { font-size: clamp(24px,5.4vw,40px); }
.cmp__title .muted { color: rgba(255,255,255,.5); }
.cmp__title .accent { color: var(--orange); }
.cmp-card { border-radius: 18px; overflow: hidden; }
.cmp-card--bad  { background: var(--card-2); border: 1px solid rgba(255,255,255,.08); }
.cmp-card--good {
  background: linear-gradient(180deg, #17130c, var(--card-2));
  border: 1px solid rgba(255,138,0,.35);
  box-shadow: 0 24px 50px -28px rgba(255,138,0,.45);
}
.cmp-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cmp-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cmp-card__media img.desat { filter: saturate(.85); }
.cmp-card__shade { position: absolute; inset: 0; }
.cmp-card__shade--bad  { background: linear-gradient(180deg, rgba(0,0,0,.1) 40%, rgba(16,16,19,.95)); }
.cmp-card__shade--good { background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(16,16,19,.95)); }
.cmp-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 100px;
}
.cmp-tag--bad  { background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.cmp-tag--good { background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2)); color: var(--ink); }
.cmp-card__body { padding: 22px 24px 26px; }
.cmp-card__head { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.cmp-card__head.muted { color: rgba(255,255,255,.85); }
.cmp-list { display: flex; flex-direction: column; gap: 12px; }
.cmp-item { display: flex; gap: 11px; align-items: flex-start; }
.cmp-item__icon {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin-top: 1px;
}
.cmp-item__icon--x { background: rgba(255,59,48,.14);  color: #FF6258;     font-size: 13px; }
.cmp-item__icon--v { background: rgba(95,208,122,.16); color: var(--green); font-size: 12px; }
.cmp-item__text { font-size: 14.5px; line-height: 1.45; }
.cmp-item__text.dim    { color: rgba(255,255,255,.6); }
.cmp-item__text.bright { color: rgba(255,255,255,.9); }

/* ---------- JOHNNY ---------- */
.johnny {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr));
  gap: 30px; align-items: center;
  background: var(--card-2); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: clamp(20px, 4vw, 38px);
}
.johnny__media { position: relative; }
.johnny__media img { width: 100%; border-radius: 14px; }
.johnny__chip {
  position: absolute; bottom: -10px; left: -6px;
  background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2));
  color: var(--ink); font-weight: 800; font-size: 13px;
  padding: 9px 16px; border-radius: 10px;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.6);
}
.johnny__title { font-size: clamp(26px,5.4vw,40px); margin-bottom: 16px; }
.johnny p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.74); text-wrap: pretty; }
.johnny p + p { margin-top: 14px; }
.johnny p strong { color: var(--white); }
.johnny p strong.accent { color: var(--orange); }

/* ---------- O QUE RECEBE ---------- */
.module {
  display: flex; gap: 14px; padding: 20px; border-radius: 14px;
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
}
.module__num {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,138,0,.14); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
.module__title { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.module__text { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.62); }

/* ---------- BÔNUS ---------- */
.bonus {
  position: relative; padding: 22px; border-radius: 14px;
  background: linear-gradient(180deg, #17130c, #121214);
  border: 1px dashed rgba(255,138,0,.35);
}
.bonus__flag {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  color: var(--ink); background: var(--orange);
  padding: 3px 9px; border-radius: 6px;
}
.bonus__tag { font-family: 'Anton', sans-serif; color: rgba(255,138,0,.85); font-size: 15px; letter-spacing: .05em; margin-bottom: 6px; }
.bonus__title { font-size: 17px; font-weight: 800; margin-bottom: 6px; max-width: 88%; }
.bonus__text { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.62); }

/* ---------- PREÇO ---------- */
.price {
  border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, #1b160d, var(--card-2));
  border: 1px solid rgba(255,138,0,.3);
  box-shadow: 0 30px 70px -30px rgba(255,138,0,.4);
}
.price__ribbon {
  background: linear-gradient(135deg, var(--yellow-1), var(--yellow-2));
  color: var(--ink); text-align: center; padding: 13px;
  font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
}
.price__body { padding: 34px 28px; text-align: center; }
.price__name { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(22px,5vw,32px); margin-bottom: 6px; }
.price__desc { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 22px; }
.price__old  { color: rgba(255,255,255,.5); font-size: 16px; text-decoration: line-through; }
.price__installments { margin: 6px 0 4px; font-size: 15px; color: rgba(255,255,255,.7); }
.price__value { font-family: 'Anton', sans-serif; color: var(--orange); font-size: clamp(52px,15vw,76px); line-height: .95; }
.price__value sup { font-size: .5em; vertical-align: super; }
.price__cash { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 26px; }
.price__cash strong { color: var(--white); }
.price__badges {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,.55);
}
.price__fine { margin-top: 14px; font-size: 11.5px; color: rgba(255,255,255,.4); line-height: 1.4; }

/* ---------- GARANTIA ---------- */
.guarantee {
  display: grid; grid-template-columns: auto minmax(0,1fr); gap: 20px; align-items: center;
  background: var(--card-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: clamp(20px, 4vw, 34px);
}
.guarantee__seal {
  width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, var(--yellow-1), var(--yellow-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--ink); flex: 0 0 auto;
}
.guarantee__seal b { font-family: 'Anton', sans-serif; font-size: 30px; line-height: 1; }
.guarantee__seal small { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.guarantee__title { font-size: clamp(20px,4.6vw,26px); font-weight: 800; margin-bottom: 8px; }
.guarantee p { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.72); text-wrap: pretty; }

/* ---------- FAQ ---------- */
.faq__title { text-align: center; font-size: clamp(24px,5.4vw,38px); margin-bottom: 30px; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: 12px; background: var(--card); border: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  text-align: left; padding: 18px 20px; background: transparent; border: 0; cursor: pointer;
  color: #fff; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700;
}
.faq-item__sign {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,138,0,.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800;
}
.faq-item__a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.66);
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.is-open .faq-item__a { padding: 0 20px 20px; max-height: 320px; }

/* ---------- CTA FINAL ---------- */
.final__logo { width: 180px; max-width: 55%; height: auto; margin: 0 auto 24px; opacity: .9; }
.final__title { font-size: clamp(26px,6vw,44px); line-height: 1.04; margin-bottom: 16px; }
.final__sub { max-width: 520px; margin: 0 auto 30px; font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.7); text-wrap: pretty; }
.final__chev { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 18px; color: rgba(255,138,0,.8); }
.final__chev span { font-family: 'Anton', sans-serif; animation: ncdChev 1.4s infinite; }
.final__chev span:nth-child(2) { animation-delay: .12s; }
.final__chev span:nth-child(3) { animation-delay: .24s; }
.final__legal { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.4); }

/* ---------- Animações ---------- */
@keyframes ncdPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,138,0,.55), 0 0 0 0 rgba(255,138,0,.35); }
  70%  { box-shadow: 0 0 0 26px rgba(255,138,0,0), 0 0 0 52px rgba(255,138,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,0,0),  0 0 0 0 rgba(255,138,0,0); }
}
@keyframes ncdScale { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes ncdUp    { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ncdBlink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes ncdChev  { 0%,100% { opacity: .35; transform: translateX(0); } 50% { opacity: 1; transform: translateX(5px); } }
@keyframes ncdSpin  { to { transform: rotate(360deg); } }

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}
