/* ============================================================================
   Gênio do Celular Essencial — Landing
   Design system + componentes. Mobile-first.

   🎨 QUER MUDAR CORES/FONTES? Mexa só nos TOKENS abaixo (:root).
   ============================================================================ */

:root {
  /* —— Cores (identidade) —— */
  --bg:            #F7F6F3;   /* base clara off-white */
  --bg-2:          #FFFFFF;   /* cards / superfícies */
  --bg-dark:       #0E0E10;   /* seções "cinema" */
  --bg-dark-2:     #17171B;   /* cards em seções escuras */
  --text:          #1A1A1A;   /* texto principal */
  --muted:         #6B6B6B;   /* texto secundário */
  --text-on-dark:  #F4F3F0;   /* texto sobre escuro */
  --muted-on-dark: #A6A6AD;   /* secundário sobre escuro */
  --line:          #E7E4DD;   /* bordas/divisórias claro */
  --line-dark:     #2A2A30;   /* bordas em escuro */
  --accent:        #FF5A36;   /* CTA / destaque (coral-laranja) */
  --accent-600:    #E8431F;   /* hover */
  --accent-soft:   #FFE9E2;   /* fundo suave do accent */
  --gold:          #E8B04B;   /* selos/estrelas */

  /* —— Tipografia —— */
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* —— Forma & profundidade —— */
  --radius:    16px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(20,18,15,.06);
  --shadow:    0 12px 30px rgba(20,18,15,.10);
  --shadow-lg: 0 24px 60px rgba(20,18,15,.16);
  --shadow-cta:0 10px 24px rgba(255,90,54,.34);

  /* —— Layout —— */
  --container: 1140px;
  --gutter: 20px;
  --section-y: clamp(56px, 11vw, 104px);
}

/* slider antes/depois: var animável (entrada suave).
   inherits:true é essencial — o JS muda --pos no .ba-slider e os filhos
   (.ba-before/.ba-handle/.ba-knob) precisam herdar o valor pra arrastar funcionar. */
@property --pos { syntax: '<length-percentage>'; inherits: true; initial-value: 55%; }

/* ============================================================================
   Reset / base
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (max-width: 1023px) { body { padding-bottom: 74px; } } /* espaço p/ sticky bar */

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============================================================================
   Layout helpers
   ============================================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--tight { padding-block: clamp(40px, 8vw, 72px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

/* ============================================================================
   Tipografia
   ============================================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  letter-spacing: .02em; color: var(--muted);
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 7px 12px 7px 7px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.section--dark .eyebrow { background: var(--bg-dark-2); border-color: var(--line-dark); color: var(--muted-on-dark); }
.eyebrow img { width: 26px; height: 26px; border-radius: 50%; }
.eyebrow b { color: var(--text); font-weight: 700; }
.section--dark .eyebrow b { color: var(--text-on-dark); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.h1 { font-size: clamp(31px, 8.4vw, 60px); }
.h2 { font-size: clamp(26px, 6.6vw, 44px); line-height: 1.1; }
.h3 { font-size: clamp(19px, 4.6vw, 24px); }
.accent { color: var(--accent); }
.lead { font-size: clamp(16.5px, 4.3vw, 20px); color: var(--muted); }
.section--dark .lead { color: var(--muted-on-dark); }
.section-head { max-width: 720px; margin-inline: auto; }
.section-head .h2 { margin-bottom: 14px; }
.kicker { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }

/* ============================================================================
   Botão CTA
   ============================================================================ */
.btn-cta {
  --b: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.1;
  color: #fff; background: var(--b);
  padding: 17px 26px; min-height: 56px; border-radius: 14px;
  box-shadow: var(--shadow-cta);
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-cta:hover { background: var(--accent-600); }
.btn-cta:active { transform: translateY(2px); box-shadow: 0 5px 14px rgba(255,90,54,.32); }
.btn-cta .arrow { transition: transform .2s ease; }
.btn-cta:hover .arrow { transform: translateX(4px); }
.btn-cta--block { display: flex; width: 100%; }
.btn-cta--lg { font-size: 19px; padding: 20px 30px; min-height: 62px; }
.btn-note { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.section--dark .btn-note { color: var(--muted-on-dark); }

/* ============================================================================
   Trust line (estrelas + garantia + preço)
   ============================================================================ */
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: 14px; color: var(--muted); }
.trust .stars { color: var(--gold); letter-spacing: 1px; }
.trust .dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .4; }
.trust s { color: inherit; opacity: .65; }
.trust b { color: var(--text); }

/* ============================================================================
   HERO
   ============================================================================ */
.hero { padding-top: clamp(28px, 7vw, 56px); padding-bottom: var(--section-y); }
.hero__grid { display: grid; gap: 18px; }
.hero__eyebrow { justify-self: start; }   /* pílula encaixa no conteúdo, não estica */
.hero__title { margin: 0; }
.hero .lead { margin: 0; }
.hero .hero__cta { margin-top: 22px; }
.hero .trust { margin-top: 16px; }
/* Ordem mobile (fluxo natural): eyebrow → headline → slider → sub/CTA/confiança */
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    grid-template-areas: "eyebrow media" "title media" "rest media";
    column-gap: 44px; row-gap: 16px; align-items: center;
  }
  .hero__eyebrow { grid-area: eyebrow; align-self: end; }
  .hero__title   { grid-area: title; }
  .hero__rest    { grid-area: rest; align-self: start; }
  .hero__media   { grid-area: media; }
}

/* ============================================================================
   Slider Antes/Depois  (.ba-slider) — herói da prova
   ============================================================================ */
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #ddd;
  touch-action: pan-y;                 /* scroll vertical OK, arrasta horizontal */
  --pos: 55%;
  user-select: none; -webkit-user-select: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after  { position: absolute; inset: 0; }   /* DEPOIS (base) */
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); transition: --pos .9s cubic-bezier(.22,1,.36,1); } /* ANTES (recorte esquerdo) */
.ba-slider.dragging .ba-before { transition: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; transform: translateX(-1.5px); box-shadow: 0 0 0 1px rgba(0,0,0,.06); transition: left .9s cubic-bezier(.22,1,.36,1); }
.ba-slider.dragging .ba-handle { transition: none; }
.ba-knob {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: #1a1a1a;
  display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: left .9s cubic-bezier(.22,1,.36,1); touch-action: none;
}
.ba-slider.dragging .ba-knob { transition: none; }
.ba-knob::before { content: '‹ ›'; font-size: 16px; font-weight: 700; letter-spacing: -1px; }
.ba-tag {
  position: absolute; bottom: 12px; left: 12px; z-index: 3;
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px; color: #fff;
  background: rgba(14,14,16,.62); backdrop-filter: blur(4px);
  padding: 6px 11px; border-radius: 999px; pointer-events: none;
}
.ba-pill {
  position: absolute; top: 12px; z-index: 3; font-family: var(--font-body);
  font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(14,14,16,.55); padding: 5px 10px; border-radius: 999px; pointer-events: none;
}
.ba-pill--antes  { left: 12px; }
.ba-pill--depois { right: 12px; background: rgba(255,90,54,.9); }
.ba-caption { margin-top: 12px; font-size: 13.5px; line-height: 1.5; color: var(--muted); text-align: center; }
.ba-caption b { color: var(--text); font-weight: 600; }

/* ============================================================================
   Carrossel genérico (galeria, depoimentos)
   ============================================================================ */
.rail-wrap { position: relative; }
.rail {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding: 4px 2px 14px; margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter); scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; flex: 0 0 76%; }
@media (min-width: 700px)  { .rail > * { flex-basis: 42%; } }
@media (min-width: 1024px) { .rail > * { flex-basis: 23%; } .rail { margin-inline: 0; padding-inline: 2px; } }
.rail-nav { display: none; }
@media (min-width: 1024px) {
  .rail-nav { display: flex; gap: 8px; }
  .rail-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center; box-shadow: var(--shadow-sm); font-size: 18px; transition: background .2s; }
  .rail-btn:hover { background: var(--bg); }
  .section--dark .rail-btn { background: var(--bg-dark-2); border-color: var(--line-dark); color: var(--text-on-dark); }
}
.rail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }

/* Card de prova (galeria) */
.proof-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); background: #ddd; }
.proof-card img { width: 100%; height: 100%; object-fit: cover; }
.proof-card .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 12px 11px; display: flex; align-items: center; justify-content: space-between; gap: 8px; background: linear-gradient(to top, rgba(10,10,12,.82), transparent); }
.proof-card .cap b { font-family: var(--font-body); font-weight: 700; font-size: 13.5px; color: #fff; }
.proof-card .cap span { font-size: 12px; color: rgba(255,255,255,.82); }

/* ============================================================================
   IDENTIFICAÇÃO — balões de Direct
   ============================================================================ */
.bubbles { display: grid; gap: 14px; max-width: 640px; margin-inline: auto; }
.bubble {
  position: relative; display: flex; gap: 12px; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 16px 18px; box-shadow: var(--shadow-sm); font-size: 16px;
}
.bubble .av { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#cdd3da,#aeb6c0); }
.bubble--right { flex-direction: row-reverse; text-align: right; margin-left: auto; background: var(--accent-soft); border-color: #ffd9cd; max-width: 92%; }
.bubble--right .av { background: linear-gradient(135deg,#ffb59f,#ff8c6e); }
.bubble--left { max-width: 92%; }
.identi-close { margin-top: 34px; }
.identi-close .h2 { line-height: 1.12; }

/* ============================================================================
   A VIRADA + COMO FUNCIONA
   ============================================================================ */
.turn { max-width: 760px; margin-inline: auto; }
.turn .lead { margin-top: 16px; }
.turn strong { color: var(--text); font-weight: 700; }
.steps { display: grid; gap: 14px; margin-top: 36px; }
@media (min-width: 700px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.step-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm); height: 100%; }
.step-card .num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 16px; margin-bottom: 14px; }
.step-card .ic { font-size: 22px; margin-bottom: 8px; }
.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 15px; color: var(--muted); }
.turn-cta { margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; }

/* ============================================================================
   OFERTA — o que você recebe
   ============================================================================ */
.offer-grid { display: grid; gap: 12px; max-width: 720px; margin-inline: auto; }
.module-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 15px 18px; box-shadow: var(--shadow-sm);
}
.module-item .ic { font-size: 22px; flex: 0 0 auto; }
.module-item .txt { flex: 1; min-width: 0; }
.module-item .txt b { display: block; font-weight: 700; font-size: 16px; }
.module-item .txt small { color: var(--muted); font-size: 13.5px; }
.module-item .price { font-family: var(--font-display); font-weight: 700; color: var(--muted); white-space: nowrap; }
.module-item .price s { opacity: .8; }
.module-item--bonus { background: linear-gradient(180deg, #fff, var(--accent-soft)); border-color: #ffd9cd; }
.module-item--bonus .badge { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }

/* ============================================================================
   PREÇO & CTA
   ============================================================================ */
.price-wrap { display: grid; gap: 22px; max-width: 560px; margin-inline: auto; }
.price-lead { text-align: center; }
.price-lead strong { color: var(--text); }
.price-card {
  position: relative; background: var(--bg-2); border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg); padding: 30px 24px 28px; box-shadow: var(--shadow-lg); text-align: center;
}
.price-card .anchor { display: flex; align-items: baseline; justify-content: center; gap: 12px; color: var(--muted); font-family: var(--font-display); font-weight: 700; }
.price-card .anchor s { font-size: 18px; }
.price-now { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: .95; font-size: clamp(58px, 17vw, 92px); margin: 6px 0 2px; }
.price-now small { font-size: .42em; vertical-align: super; font-weight: 700; }
.price-card .install { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.price-card .micro { font-size: 13.5px; color: var(--muted); margin-top: 14px; font-style: italic; }
.price-card .flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }

/* Selo de garantia (circular) */
.seal {
  flex: 0 0 auto; width: 108px; height: 108px; border-radius: 50%; margin-inline: auto;
  background: radial-gradient(circle at 50% 35%, #ff7a5c, var(--accent));
  color: #fff; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow), inset 0 0 0 4px rgba(255,255,255,.25); padding: 8px;
}
.seal .big { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1; }
.seal .sm { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 3px; }
.price-seal-row { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* ============================================================================
   AUTORIDADE (dark)
   ============================================================================ */
.authority__grid { display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) { .authority__grid { grid-template-columns: 0.85fr 1.15fr; gap: 40px; } }
.authority__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.authority__media img { width: 100%; height: 100%; object-fit: cover; }
.authority p { color: var(--muted-on-dark); margin-top: 16px; font-size: 17px; }
.authority p strong { color: var(--text-on-dark); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.stat { background: var(--bg-dark-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 18px 12px; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 6vw, 30px); color: var(--accent); }
.stat span { font-size: 12.5px; color: var(--muted-on-dark); }

/* ============================================================================
   VITRINE DE RESULTADOS (foto única + modelo + mini headline)
   ============================================================================ */
.result-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); background: #ddd; }
.result-card img { width: 100%; height: 100%; object-fit: cover; }
.result-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 16px 16px; background: linear-gradient(to top, rgba(10,10,12,.92), rgba(10,10,12,.4) 55%, transparent); }
.result-model { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 12px; color: #fff; background: rgba(255,90,54,.92); padding: 4px 11px; border-radius: 999px; margin-bottom: 9px; }
.result-mini { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; line-height: 1.25; color: #fff; }
.placeholder-banner { max-width: 720px; margin: 0 auto 24px; text-align: center; font-size: 13.5px; color: var(--muted); background: var(--accent-soft); border: 1px dashed #ffb59f; border-radius: 12px; padding: 10px 14px; }

/* ============================================================================
   GARANTIA
   ============================================================================ */
.guarantee__grid { display: grid; gap: 22px; align-items: center; max-width: 820px; margin-inline: auto; }
@media (min-width: 760px) { .guarantee__grid { grid-template-columns: auto 1fr; gap: 32px; } }
.guarantee .seal { width: 132px; height: 132px; margin-inline: auto; }
.guarantee .seal .big { font-size: 32px; }
.guarantee p { color: var(--muted); margin-top: 12px; }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq { max-width: 740px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; position: relative; font-family: var(--font-display); font-weight: 700; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--accent); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 20px 18px; color: var(--muted); font-size: 15.5px; }

/* ============================================================================
   CTA FINAL (dark)
   ============================================================================ */
.final__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .final__grid { grid-template-columns: 1.1fr 1fr; gap: 44px; } }
.final h2 { margin-bottom: 16px; }
.final p { color: var(--muted-on-dark); margin-bottom: 24px; }
.final p strong { color: var(--text-on-dark); }
.final .urgency { font-size: 13.5px; color: var(--muted-on-dark); margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; }
.final .urgency::before { content: '⏳'; }

/* ============================================================================
   RODAPÉ
   ============================================================================ */
.footer { background: var(--bg-dark); color: var(--muted-on-dark); padding: 40px 0 56px; font-size: 13px; }
.footer__grid { display: grid; gap: 18px; }
.footer .brand { font-family: var(--font-display); font-weight: 800; color: var(--text-on-dark); font-size: 18px; }
.footer a { color: var(--muted-on-dark); text-decoration: underline; text-underline-offset: 2px; }
.footer a:hover { color: var(--text-on-dark); }
.footer .links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer .disclaimer { opacity: .8; line-height: 1.6; }

/* ============================================================================
   STICKY CTA BAR (mobile)
   ============================================================================ */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-2); border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(0,0,0,.14);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(130%); transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.sticky-bar.show { transform: none; }
.sticky-bar .pr { line-height: 1.1; }
.sticky-bar .pr s { color: var(--muted); font-size: 13px; }
.sticky-bar .pr b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.sticky-bar .btn-cta { padding: 13px 20px; min-height: 50px; flex: 0 0 auto; }
@media (min-width: 1024px) { .sticky-bar { display: none; } }

/* ============================================================================
   Animação de entrada (reveal)
   ============================================================================ */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(18px); }   /* só esconde se houver JS */
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .ba-before, .ba-handle, .ba-knob { transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════════════════
   POLISH v3 — refino profissional (atmosfera · contraste AA · microinterações)
   ════════════════════════════════════════════════════════════════════════════ */

/* — Tokens ajustados — */
:root {
  --muted: #595959;                 /* contraste AA mais seguro sobre o claro */
  --line:  #E5E1D8;
  --maxread: 62ch;                  /* medida de leitura confortável */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* — Atmosfera: base clara com leve calor no topo — */
body {
  background:
    radial-gradient(125% 70% at 50% -8%, #FFFDF7 0%, rgba(255,253,247,0) 52%),
    var(--bg);
  background-attachment: fixed;
  font-feature-settings: "kern", "liga", "calt";
}

/* — Seções dark: profundidade de cinema + grão sutil + topo iluminado — */
.section--dark { position: relative; background: radial-gradient(125% 95% at 50% 0%, #191920 0%, var(--bg-dark) 70%); box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.section--dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .06;
  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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section--dark > .container { position: relative; z-index: 1; }

/* — Tipografia mais editorial — */
h1, h2, h3 { text-wrap: balance; }
.h1 { letter-spacing: -.03em; line-height: 1.02; }
.lead { text-wrap: pretty; }
.turn .lead, .price-lead, .authority p, .final p, .guarantee p { max-width: var(--maxread); margin-inline: auto; }
/* marca-texto editorial para frases-chave (combina com "edição de foto") */
.hl { background: linear-gradient(transparent 62%, rgba(255,90,54,.26) 0); padding: 0 .05em; }

/* — Botão CTA: gradiente + sombra em camadas + press mais tátil — */
.btn-cta { background: linear-gradient(180deg, #FF6A48, var(--accent)); letter-spacing: .005em; box-shadow: 0 10px 22px rgba(255,90,54,.30), 0 2px 6px rgba(255,90,54,.22); }
.btn-cta:hover { background: linear-gradient(180deg, #FF5A36, var(--accent-600)); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(255,90,54,.38), 0 3px 8px rgba(255,90,54,.26); }
.btn-cta:active { transform: translateY(1px); box-shadow: 0 5px 14px rgba(255,90,54,.30); }

/* — Eyebrow um pouco mais premium — */
.eyebrow { background: rgba(255,255,255,.72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* — Labels sobre foto: legibilidade (AA) — */
.ba-pill, .ba-tag, .result-model, .proof-card .cap b, .proof-card .cap span { text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.ba-pill { background: rgba(10,10,12,.66); }
.ba-pill--depois { background: rgba(255,90,54,.96); }
.ba-tag { background: rgba(10,10,12,.7); }
.result-model { background: rgba(10,10,12,.74); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.proof-card .cap span { color: rgba(255,255,255,.92); }

/* — Cards: lift + zoom sutil no hover (só desktop com mouse) — */
.proof-card img, .result-card img, .authority__media img { transition: transform .55s var(--ease); }
@media (hover: hover) and (min-width: 1024px) {
  .proof-card, .result-card { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
  .proof-card:hover, .result-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
  .proof-card:hover img, .result-card:hover img, .authority__media:hover img { transform: scale(1.05); }
  .step-card, .module-item, .stat, .faq details { transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
  .step-card:hover, .module-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #D8D2C7; }
  .stat:hover { border-color: var(--accent); transform: translateY(-2px); }
  .rail-btn { transition: background .2s, transform .2s; }
  .rail-btn:hover { transform: scale(1.06); }
}

/* — Card de preço: mais premium — */
.price-card { background: linear-gradient(180deg, #fff, #FFF8F5); box-shadow: 0 30px 70px rgba(255,90,54,.15), var(--shadow-lg); }
.price-card .flag { box-shadow: var(--shadow-cta); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .price-now { background: linear-gradient(180deg, #1A1A1A, #45413B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  .price-now small { -webkit-text-fill-color: var(--accent); }
}

/* — Selo de garantia: anel sutil — */
.seal { box-shadow: var(--shadow), inset 0 0 0 4px rgba(255,255,255,.28), 0 0 0 6px rgba(255,90,54,.12); }

/* — Indicador de scroll (substitui o CTA do hero) — */
.scroll-cue { display: inline-flex; align-items: center; gap: 13px; margin-top: 26px; color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: 14px; }
.scroll-cue__dot { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); display: grid; place-items: center; transition: background .25s var(--ease), color .25s, transform .25s; }
.scroll-cue__dot svg { width: 18px; height: 18px; animation: cueBounce 1.7s ease-in-out infinite; }
.scroll-cue:hover { color: var(--text); }
.scroll-cue:hover .scroll-cue__dot { background: var(--accent); color: #fff; transform: translateY(3px); }
@keyframes cueBounce { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }

/* — Hero: revelação em cascata — */
.hero__eyebrow.reveal { transition-delay: .03s; }
.hero__title.reveal   { transition-delay: .11s; }
.hero__media.reveal   { transition-delay: .19s; }
.hero__rest.reveal    { transition-delay: .27s; }

/* — FAQ: estado aberto/hover — */
.faq details[open] { border-color: #D8D2C7; box-shadow: var(--shadow); }
.faq summary:hover { color: var(--accent); }

/* — Rodapé: contraste de leitura — */
.footer .disclaimer { opacity: .9; }

/* — Reduced motion — */
@media (prefers-reduced-motion: reduce) {
  .scroll-cue__dot svg { animation: none; }
  body, .section--dark { background-attachment: scroll; }
  .btn-cta, .proof-card, .result-card, .proof-card img, .result-card img,
  .step-card, .module-item, .stat, .authority__media img, .scroll-cue__dot { transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════════════════
   CLONE v1 — alinhamento com a referência (estrutura/layout)
   Mobile-first. Mantém a identidade Gênio do Celular.
   ════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────── HERO: badge, bullets, prova social ─────────────── */
.hero__badge {
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin: 0;
}
/* Hero grid: insere a faixa do badge entre eyebrow e título (desktop) */
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-areas: "eyebrow media" "badge media" "title media" "rest media";
    row-gap: 12px; align-items: center;
  }
  .hero__badge { grid-area: badge; align-self: start; }
  .hero__media { align-self: center; }
}

.hero-bullets { display: flex; flex-direction: column; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
@media (min-width: 560px) { .hero-bullets { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; } }
.hero-bullet { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--muted); }
.hero-bullet__icon { color: var(--accent); font-size: 14px; font-weight: 700; flex-shrink: 0; }

.hero__cta { margin-top: 22px; }

/* Cluster de avatares genéricos (gradientes) — usado na prova social */
.social-proof { display: flex; align-items: center; gap: 11px; margin-top: 18px; flex-wrap: wrap; }
.social-proof__avatars { display: inline-flex; }
.social-proof__avatars .av {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -9px; flex-shrink: 0;
}
.social-proof__avatars .av:first-child { margin-left: 0; }
.av--1 { background: linear-gradient(135deg,#f5a28a,#e8665c); }
.av--2 { background: linear-gradient(135deg,#8ab8f5,#5c8ae8); }
.av--3 { background: linear-gradient(135deg,#a8e8a8,#5cad5c); }
.av--4 { background: linear-gradient(135deg,#e8d08a,#c4a040); }
.social-proof__text { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.social-proof__stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; line-height: 1; }
.social-proof__text > span:last-child { font-size: 13px; font-weight: 600; color: var(--muted); }

/* ─────────────────────────── CARROSSEL: setas laterais + dots ───────────────── */
.rail-arrow { display: none; }
@media (min-width: 1024px) {
  .rail-arrow {
    display: grid; place-items: center; position: absolute; top: 50%; z-index: 5;
    width: 46px; height: 46px; border-radius: 50%; transform: translateY(-50%);
    background: var(--bg-2); border: 1px solid var(--line); color: var(--text);
    box-shadow: var(--shadow); font-size: 20px; line-height: 1;
    transition: background .2s, transform .2s;
  }
  .rail-arrow:hover { transform: translateY(-50%) scale(1.06); }
  .rail-arrow--prev { left: -20px; }
  .rail-arrow--next { right: -20px; }
  .section--dark .rail-arrow { background: var(--bg-dark-2); border-color: var(--line-dark); color: var(--text-on-dark); }
}
.rail-dots { display: flex; justify-content: center; gap: 7px; margin-top: 16px; }
.rail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); border: 0; padding: 0; cursor: pointer; transition: background .25s, transform .25s; }
.rail-dot.active { background: var(--accent); transform: scale(1.4); }
.section--dark .rail-dot { background: var(--line-dark); }
.section--dark .rail-dot.active { background: var(--accent); }

/* Pill "Resultado" (variante da ba-pill--depois, sozinha no card) */
.ba-pill--resultado {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: rgba(255,90,54,.96); padding: 5px 10px; border-radius: 999px;
  pointer-events: none; text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

/* ─────────────────────────── IDENTIFICAÇÃO: 3 colunas ──────────────────────── */
.identi-cols { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .identi-cols { grid-template-columns: 1fr 1.6fr 1fr; gap: 40px; } }
.identi-side-title { line-height: 1.12; }
.identi-bubbles { max-width: none; margin-inline: 0; }
@media (max-width: 899px) {
  .identi-left, .identi-right { text-align: center; }
  .identi-side-title { font-size: clamp(22px, 5.6vw, 30px); }
}
@media (min-width: 900px) {
  .identi-left  .identi-side-title { text-align: right; }
  .identi-right .identi-side-title { text-align: left; }
}
.bubble { align-items: flex-start; }
.bubble-body { flex: 1; min-width: 0; }
.bubble-body p { margin: 0; }
.bubble-time { display: block; font-size: 11px; color: var(--muted); margin-top: 6px; text-align: right; }
.bubble--left .bubble-time { text-align: left; }

/* ─────────────────────────── MÉTODO: 4 cards + aside ───────────────────────── */
.method-head { max-width: 760px; margin-inline: auto; }
.method-sub { margin-top: 14px; }
.method-grid { display: grid; gap: 24px; margin-top: 36px; }
@media (min-width: 1024px) { .method-grid { grid-template-columns: 3fr 2fr; gap: 36px; align-items: start; } }

.steps--method { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: 0; }
@media (min-width: 600px) { .steps--method { grid-template-columns: repeat(2, 1fr); } }

.step-thumb { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin-top: 14px; border-radius: 10px; overflow: hidden; height: clamp(116px, 26vw, 150px); }
.step-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
@media (hover: hover) and (min-width: 1024px) { .step-card--rich:hover .step-thumb img { transform: scale(1.04); } }

.method-aside { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.method-aside__media { aspect-ratio: 4 / 3; overflow: hidden; }
@media (min-width: 1024px) { .method-aside__media { aspect-ratio: 3 / 4; } }
.method-aside__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .55s var(--ease); }
@media (hover: hover) and (min-width: 1024px) { .method-aside:hover .method-aside__media img { transform: scale(1.04); } }
.method-aside__copy { padding: 22px 24px 28px; }
.method-aside__title { line-height: 1.2; margin-bottom: 18px; }
.method-checklist { list-style: none; padding: 0; display: grid; gap: 11px; }
.method-checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; line-height: 1.4; color: var(--text); }
.method-checklist li::before {
  content: ''; flex: 0 0 20px; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%23fff' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─────────────────────────── OFERTA: 2 colunas ─────────────────────────────── */
.offer-layout { display: grid; gap: 28px; margin-top: 36px; align-items: start; }
@media (min-width: 960px) { .offer-layout { grid-template-columns: 1.1fr 0.9fr; gap: 44px; } }

.module-list { display: grid; gap: 10px; list-style: none; padding: 0; }
.module-list__item { display: flex; align-items: center; gap: 12px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow-sm); }
.check { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: inline-grid; place-items: center; }
.check::after { content: ''; display: block; width: 11px; height: 6px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg) translate(1px,-1px); }
.module-list__txt { flex: 1; min-width: 0; }
.module-list__txt b { display: block; font-weight: 700; font-size: 15px; line-height: 1.25; }
.module-list__txt small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.module-list__txt .badge { display: block; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 2px; }
.module-list__price { flex: 0 0 auto; font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 14px; white-space: nowrap; }
.module-list__price s { opacity: .75; }
.module-list__item--bonus { background: linear-gradient(180deg, #fff, var(--accent-soft)); border-color: #ffd9cd; }

.offer-visual { margin-top: 18px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.offer-visual img { width: 100%; height: 200px; object-fit: cover; object-position: center; display: block; }
.offer-visual__caption { font-size: 12.5px; color: var(--muted); text-align: center; padding: 9px 12px; background: var(--bg-2); border-top: 1px solid var(--line); }

.offer-right { display: grid; gap: 0; }
.price-de, .price-por { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 16px; margin-bottom: 2px; }
.price-de s, .price-por s { opacity: .8; }
.price-label { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--muted); margin: 6px 0 2px; text-transform: uppercase; letter-spacing: .06em; }
.price-safe { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.seal-text { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; line-height: 1.5; }

/* Selo dourado (variante do .seal) */
.seal--gold { background: radial-gradient(circle at 50% 35%, #F5C96A, var(--gold)); box-shadow: var(--shadow), inset 0 0 0 4px rgba(255,255,255,.30), 0 0 0 6px rgba(232,176,75,.18); }
.seal--gold .big, .seal--gold .sm { -webkit-text-fill-color: #fff; color: #fff; }

/* ─────────────────────────── AUTORIDADE: 4 stats ───────────────────────────── */
.stats--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .stats--4 { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.stats--4 .stat span { font-size: 11.5px; line-height: 1.3; }
@media (max-width: 599px) { .stats--4 .stat b { font-size: clamp(18px, 5.5vw, 26px); } }

/* ─────────────────────────── DEPOIMENTOS (claro) ───────────────────────────── */
.depo__placeholder { display: none; }
.depo .rail { align-items: flex-start; }
.depo .rail > * { flex: 0 0 80%; }
@media (min-width: 700px)  { .depo .rail > * { flex-basis: 46%; } }
@media (min-width: 1024px) { .depo .rail > * { flex-basis: 30%; } }
.depo-card { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
/* prints de proporções variadas: mostrar INTEIROS (altura natural), nunca cortar o texto */
.depo-card__img-wrap { position: relative; width: 100%; overflow: hidden; background: #0b141a; }
.depo-card__img-wrap img { width: 100%; height: auto; display: block; transition: transform .55s var(--ease); }
@media (hover: hover) and (min-width: 1024px) { .depo-card:hover .depo-card__img-wrap img { transform: scale(1.04); } }
.depo-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--line); }
.depo-card__name { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--text); }
.depo-card__tag { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; }

/* ─────────────────────────── FAQ + GARANTIA (lado a lado) ──────────────────── */
.faq-garantia__grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 860px) { .faq-garantia__grid { grid-template-columns: 320px 1fr; gap: 56px; } }
.faq-garantia__guarantee { text-align: center; }
.faq-garantia__guarantee .seal { margin-inline: auto; }
.guarantee-title { margin-top: 24px; }
.faq-garantia__guarantee .lead { margin-top: 16px; color: var(--muted); }
.faq-garantia__guarantee .lead strong { color: var(--text); font-weight: 700; }
.faq-title { margin-bottom: 24px; }
.faq-garantia__faq .faq { max-width: none; margin-inline: 0; }
@media (min-width: 860px) {
  .faq-garantia__guarantee { position: sticky; top: 32px; text-align: left; }
  .faq-garantia__guarantee .seal { margin-inline: 0; }
}

/* ─────────────────────────── CTA FINAL: banner panorâmico ──────────────────── */
.final-banner { padding-block: 0; overflow: hidden; }
.final-banner__layout { display: grid; grid-template-columns: 1fr; grid-template-areas: "center"; min-height: 380px; }
@media (min-width: 900px) {
  .final-banner__layout { grid-template-columns: 1fr 1.7fr 1fr; grid-template-areas: "left center right"; min-height: 540px; align-items: stretch; }
}
.final-banner__center { grid-area: center; display: flex; align-items: center; justify-content: center; padding: clamp(48px, 9vw, 88px) clamp(20px, 4vw, 52px); text-align: center; }
.final-banner__copy { max-width: 560px; width: 100%; }
.final-banner__title { color: var(--text-on-dark); margin-bottom: 22px; font-size: clamp(24px, 5.5vw, 40px); line-height: 1.1; }
.final-banner__bullets { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 16px; margin: 0 0 26px; padding: 0; list-style: none; }
.final-banner__bullets li { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--muted-on-dark); }
.final-banner__bullets li::before { content: '✓'; color: var(--gold); font-weight: 800; }
.final-banner__trust { margin-top: 14px; font-size: 13px; color: var(--muted-on-dark); }
.final-banner__side { display: none; overflow: hidden; position: relative; }
@media (min-width: 900px) {
  .final-banner__side { display: block; }
  .final-banner__side--left  { grid-area: left; }
  .final-banner__side--right { grid-area: right; }
  .final-banner__side img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .final-banner__side--left img  { -webkit-mask-image: linear-gradient(to right, #000 35%, transparent 100%); mask-image: linear-gradient(to right, #000 35%, transparent 100%); }
  .final-banner__side--right img { -webkit-mask-image: linear-gradient(to left, #000 35%, transparent 100%);  mask-image: linear-gradient(to left, #000 35%, transparent 100%); }
}
@media (min-width: 700px) and (max-width: 899px) {
  .final-banner__layout { grid-template-columns: 1fr; grid-template-areas: "right" "center"; min-height: auto; }
  .final-banner__side--right { display: block; height: 240px; }
  .final-banner__side--right img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%); mask-image: linear-gradient(to bottom, #000 60%, transparent 100%); }
  .final-banner__side--left { display: none; }
}

/* — Reduced motion: novos elementos — */
@media (prefers-reduced-motion: reduce) {
  .step-thumb img, .method-aside__media img, .depo-card__img-wrap img, .rail-arrow { transition: none !important; }
}
