/* =====================================================
   SOLDADOR DO ZERO — Landing page (mobile-first)
   ===================================================== */

:root {
  /* Paleta */
  --bg:        #07101C;
  --bg-2:      #0D1826;
  --card:      #111E2E;
  --orange:    #FF8A00;
  --orange-2:  #FFAA32;
  --white:     #F7F9FC;
  --gray:      #AAB4C0;
  --green:     #27C978;
  --red:       #E5556B;

  --border:    rgba(255,255,255,.08);
  --border-orange: rgba(255,138,0,.45);
  --glow:      0 0 24px rgba(255,138,0,.28);

  --font-title: "Anton", "Oswald", system-ui, sans-serif;
  --font-body:  "Inter", system-ui, -apple-system, sans-serif;

  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 720px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ---------- Barra de escassez (topo) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #ff3d1f, var(--orange), var(--orange-2));
  color: #1a0e00;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .3px;
  padding: 9px 14px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(255,61,31,.22);
}
.topbar .ico { flex: none; }
.topbar__text {
  text-transform: uppercase;
  letter-spacing: .7px;
}
.topbar__timer {
  font-family: var(--font-title);
  font-size: 1.08rem;
  letter-spacing: 1px;
  background: rgba(0,0,0,.28);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.topbar.is-ending .topbar__timer { animation: urgentPulse 1s ease-in-out infinite; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

s { color: var(--gray); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 600px; }

.section { padding-block: 56px; border-top: 1px solid var(--border); }
.section--alt { background: var(--bg-2); }

.center { text-align: center; }

/* ---------- Tipografia ---------- */
.h2 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(1.6rem, 7vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 12px 0 8px;
  letter-spacing: .2px;
}

p { margin: 0 0 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: clamp(.62rem, 2.7vw, .74rem);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--orange-2);
  background: linear-gradient(180deg, rgba(255,138,0,.14), rgba(255,138,0,.06));
  border: 1px solid var(--border-orange);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 18px;
  box-shadow: 0 0 18px rgba(255,138,0,.12), inset 0 1px 0 rgba(255,255,255,.06);
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,138,0,.55);
  animation: dotPulse 2s ease-out infinite;
  flex: none;
}
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,138,0,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(255,138,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,0,0); }
}

/* ---------- Ícones ---------- */
.ico {
  width: 24px; height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.ico--sm { width: 18px; height: 18px; }
.ico--lg { width: 34px; height: 34px; }
.ico--xl { width: 56px; height: 56px; }
.accent { color: var(--orange); }
.good   { color: var(--green); }
.bad    { color: var(--red); }
.star   { color: var(--orange-2); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 18px 22px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  line-height: 1.2;
}
.btn--cta {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #1a0e00;
  box-shadow: var(--glow);
  transition: transform .15s ease, box-shadow .2s ease;
  animation: pulse 2.6s ease-in-out infinite;
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255,138,0,.5); }
.btn--cta:active { transform: translateY(0); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255,138,0,.25); }
  50%      { box-shadow: 0 0 30px rgba(255,138,0,.5); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  background:
    linear-gradient(180deg, rgba(7,16,28,.72) 0%, rgba(7,16,28,.92) 70%, var(--bg) 100%),
    url("assets/hero-bg.webp") center/cover no-repeat;
  padding-block: 14px 32px;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,138,0,.16), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
  padding: 9px 20px;
  border: 1px solid var(--border-orange);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,138,0,.14), rgba(255,138,0,.06));
  box-shadow: 0 0 18px rgba(255,138,0,.12), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero__logo .ico { color: var(--orange); }
.hero__logo strong { color: var(--orange-2); font-weight: 400; }

.hero__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(1.7rem, 8vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin: 4px 0 16px;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  text-wrap: balance;
}
.hero__title .hl {
  color: var(--orange-2);
  text-shadow: 0 0 22px rgba(255,138,0,.45);
}
.hero__subtitle { font-size: 1rem; color: var(--gray); margin: 0 auto 18px; max-width: 440px; }

.hero__micro {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 440px;
  margin: 12px auto 0;
  color: var(--green);
  font-weight: 600;
  font-size: clamp(.68rem, 3vw, .82rem);
  white-space: nowrap;
}
.hero__micro .ico { flex: none; width: 15px; height: 15px; }

.hero__benefits {
  list-style: none;
  margin: 16px 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 440px;
}
.hero__benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  font-weight: 600;
  font-size: .76rem;
  line-height: 1.2;
  text-align: center;
}
.hero__benefits .ico { color: var(--orange); }
.hero__benefits--four { grid-template-columns: repeat(2, 1fr); }

.hero .btn--cta { width: 100%; max-width: 440px; }

/* Mini VSL no hero: player completo visível */
.hero .vsl {
  margin-top: 28px;
  margin-bottom: 8px;
}

/* ---------- Mini VSL ---------- */
.vsl { 
  margin: 0 auto; 
  width: 100%; 
  max-width: 290px; 
}
.vsl__wrapper { 
  position: relative; 
}
.vsl__guard {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
}

/* Wistia player styling */
.vsl wistia-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow: var(--glow);
  background: #000;
}

.vsl__frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0;
  border: 2px solid var(--orange);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: var(--glow);
}
.vsl__thumb { width: 100%; height: 100%; object-fit: cover; }
.vsl__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}
.vsl__tag {
  position: absolute; top: 14px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.vsl__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  display: grid; place-items: center;
  background: rgba(255,138,0,.92);
  border-radius: 50%;
  color: #1a0e00;
  box-shadow: 0 0 0 8px rgba(255,138,0,.25), var(--glow);
}
.vsl__play .ico { width: 30px; height: 30px; }
.vsl__time {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.7);
  color: var(--white);
  font-size: .8rem; font-weight: 600;
  padding: 4px 9px; border-radius: 8px;
}
.vsl__unmute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #1a0e00;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: .9rem;
  letter-spacing: .6px;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(255,138,0,.5), 0 4px 12px rgba(0,0,0,.4);
  transition: all .2s ease;
  animation: unmuteBouncePulse 2s ease-in-out infinite;
  white-space: nowrap;
}
.vsl__unmute:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 32px rgba(255,138,0,.7), 0 6px 16px rgba(0,0,0,.5);
}
.vsl__unmute:active { transform: translate(-50%, -50%) scale(.98); }
.vsl__unmute .ico { width: 20px; height: 20px; }
.vsl__unmute.is-hidden { opacity: 0; pointer-events: none; }
@keyframes unmuteBouncePulse {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); box-shadow: 0 0 20px rgba(255,138,0,.4), 0 4px 12px rgba(0,0,0,.4); }
  50% { transform: translate(-50%, -50%) translateY(-4px); box-shadow: 0 0 28px rgba(255,138,0,.6), 0 6px 14px rgba(0,0,0,.5); }
}

/* ---------- Oferta ---------- */
.card--offer { text-align: center; border-color: var(--border-orange); box-shadow: var(--glow); }
.price-old { color: var(--gray); margin: 0 0 4px; }
.price-now { font-size: 1.25rem; margin: 0 0 6px; }
.price-now strong {
  font-family: var(--font-title);
  font-size: 2.6rem;
  color: var(--orange-2);
  letter-spacing: 1px;
}
.price-now--big strong { font-size: 3rem; display: inline-block; }
.price-note { color: var(--gray); font-size: .95rem; }
.btn-assurance {
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
  color: var(--green);
  font-weight: 600; font-size: .9rem;
  margin: 14px 0 6px;
}
.microcopy { color: var(--gray); font-size: .85rem; margin: 4px 0 0; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 12px; }
.grid--2 { grid-template-columns: 1fr; }
.grid .card { padding: 16px; }
.grid .card .ico--lg { width: 26px; height: 26px; }
.grid .card .h3 { margin: 8px 0 4px; font-size: 1rem; }
.grid .card p { font-size: .88rem; margin: 0; color: var(--gray); }

.pull-quote {
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 4.4vw, 1.28rem);
  font-weight: 800;
  line-height: 1.34;
  color: var(--orange-2);
  margin: 28px auto 0;
  max-width: 600px;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-lead {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: -8px auto 28px;
  font-size: 1rem;
}

/* ---------- Provas sociais e objeções ---------- */
.proofs {
  display: grid;
  gap: 12px;
}
.proof {
  padding: 16px;
}
.proof .stars {
  margin-bottom: 10px;
}
.proof p {
  margin: 0 0 12px;
  color: var(--white);
  font-size: .94rem;
  line-height: 1.45;
}
.proof__meta {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
}
.objections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.objection {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px 12px;
  background: linear-gradient(160deg, var(--card), #0c1622);
}
.objection .ico {
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
}
.objection .h3 {
  margin: 0 0 5px;
  font-size: .98rem;
  line-height: 1.15;
}
.objection p {
  margin: 0;
  color: var(--gray);
  font-size: .8rem;
  line-height: 1.35;
}
.swipe-cue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin: -12px auto 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255,138,0,.28);
  border-radius: 999px;
  background: rgba(255,138,0,.08);
  color: var(--orange-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.swipe-cue i {
  position: relative;
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,170,50,.35);
  overflow: hidden;
}
.swipe-cue i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 13px;
  border-radius: inherit;
  background: var(--orange-2);
  animation: swipeCue 1.6s ease-in-out infinite;
}
@keyframes swipeCue {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(21px); }
}

/* ---------- App funcionando: stories deslizáveis ---------- */
.appcar {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}
.appcar::before,
.appcar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 12px;
  z-index: 2;
  width: 26px;
  pointer-events: none;
}
.appcar::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.appcar::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.appcar__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  -webkit-overflow-scrolling: touch;
  padding: 0 max(28px, calc((100vw - var(--maxw)) / 2 + 28px)) 12px;
  scrollbar-width: none;
}
.appcar__track.is-nudging { scroll-snap-type: none; }
.appcar__track::-webkit-scrollbar { display: none; }
.appcar__slide {
  position: relative;
  flex: 0 0 min(78vw, 255px);
  min-height: 318px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    var(--card);
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
}
.appcar__slide::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(255,170,50,.25), transparent);
}
.appstory__top,
.appstory__foot {
  position: relative;
  z-index: 1;
}
.appstory__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.appstory__tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255,138,0,.12);
  border: 1px solid var(--border-orange);
  color: var(--orange-2);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .8px;
}
.appstory__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.appstory__label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.appstory__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(7,16,28,.74);
  border: 1px solid rgba(255,255,255,.07);
  font-size: .78rem;
  color: var(--gray);
}
.appstory__row b { color: var(--white); }
.demo-money {
  display: inline-block;
  min-width: 48px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.appstory__price {
  display: grid;
  gap: 1px;
  margin-top: 2px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,138,0,.2), rgba(255,138,0,.08));
  border: 1px solid var(--border-orange);
}
.appstory__price small {
  color: var(--gray);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.appstory__price strong {
  color: var(--orange-2);
  font-family: var(--font-title);
  font-size: 2.05rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: .5px;
  font-variant-numeric: tabular-nums;
}
.appstory--calc.is-counting .appstory__row {
  animation: calcRowPulse .9s ease both;
}
.appstory--calc.is-counting .appstory__row:nth-of-type(3) { animation-delay: .12s; }
.appstory--calc.is-counting .appstory__row:nth-of-type(4) { animation-delay: .24s; }
.appstory--calc.is-counting .appstory__price {
  animation: calcPriceGlow 1.5s ease-in-out both;
}
@keyframes calcRowPulse {
  0% { border-color: rgba(255,255,255,.07); transform: translateX(0); }
  35% { border-color: var(--border-orange); transform: translateX(2px); }
  100% { border-color: rgba(255,255,255,.07); transform: translateX(0); }
}
@keyframes calcPriceGlow {
  0% { box-shadow: none; transform: scale(1); }
  55% { box-shadow: 0 0 24px rgba(255,138,0,.34); transform: scale(1.018); }
  100% { box-shadow: none; transform: scale(1); }
}
.appstory__bubble {
  padding: 10px;
  border-radius: 8px 8px 8px 2px;
  background: rgba(39,201,120,.12);
  border: 1px solid rgba(39,201,120,.24);
  color: var(--white);
  font-size: .8rem;
  line-height: 1.35;
}
.appstory__bubble--soft {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.08);
  color: var(--gray);
}
.appstory__action {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 7px;
  background: var(--green);
  color: #06130c;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.appstory__paper {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: #f7f9fc;
  color: #17202d;
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}
.appstory__paper-head {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(23,32,45,.14);
  color: #17202d;
  font-size: .75rem;
  font-weight: 900;
}
.appstory__paper span {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: rgba(23,32,45,.16);
}
.appstory__paper .w90 { width: 90%; }
.appstory__paper .w55 { width: 55%; }
.appstory__paper-total {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid rgba(23,32,45,.14);
  font-size: .78rem;
  font-weight: 800;
}
.appstory__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.appstory__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
}
.appstory__check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  font-size: .78rem;
  line-height: 1.2;
}
.appstory__check .ico { width: 15px; height: 15px; }
.appstory__foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.appcar__title {
  margin: 0 0 5px;
  color: var(--white);
  font-size: .98rem;
  line-height: 1.18;
  letter-spacing: 0;
}
.appstory__foot p {
  margin: 0;
  color: var(--gray);
  font-size: .78rem;
  line-height: 1.32;
}
.appstory--calc { background: linear-gradient(180deg, rgba(255,138,0,.12), rgba(17,30,46,.98)); }
.appstory--wa,
.appstory--script { background: linear-gradient(180deg, rgba(39,201,120,.1), rgba(17,30,46,.98)); }
.appstory--pdf { background: linear-gradient(180deg, rgba(247,249,252,.09), rgba(17,30,46,.98)); }
.appstory--models { background: linear-gradient(180deg, rgba(255,170,50,.1), rgba(17,30,46,.98)); }
.appstory--check { background: linear-gradient(180deg, rgba(39,201,120,.08), rgba(17,30,46,.98)); }

/* ---------- Cards de dor (2x2, design destacado) ---------- */
.pains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pain {
  position: relative;
  background: linear-gradient(160deg, var(--card), #0c1622);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 14px 16px;
  overflow: hidden;
}
.pain::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.pain__badge {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--orange-2);
  background: radial-gradient(circle at 50% 40%, rgba(255,138,0,.22), rgba(255,138,0,.06));
  border: 1px solid var(--border-orange);
  box-shadow: 0 0 16px rgba(255,138,0,.18);
}
.pain__badge .ico { width: 22px; height: 22px; }
.pain__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  margin: 0 0 6px;
  line-height: 1.2;
}
.pain p { margin: 0; font-size: .82rem; color: var(--gray); line-height: 1.35; }
.offer-hook {
  color: var(--gray);
  font-size: 1rem;
  margin: 0 0 16px;
}

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; gap: 16px; }
.testimonial__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-orange); }
.testimonial__name { font-weight: 700; margin: 0; }
.testimonial__uf { color: var(--gray); font-weight: 500; font-size: .85rem; margin-left: 4px; }
.stars { display: flex; gap: 2px; margin-top: 2px; }
.testimonial__text { color: var(--white); font-size: .98rem; margin-bottom: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600;
  padding: 5px 10px; border-radius: 999px;
}
.badge--verified { background: rgba(39,201,120,.12); color: var(--green); border: 1px solid rgba(39,201,120,.3); }

.disclaimer-mini { color: var(--gray); font-size: .8rem; text-align: center; margin-top: 18px; font-style: italic; }

/* ---------- Bônus ---------- */
.bonus-list { display: grid; gap: 14px; }
.bonus { display: flex; align-items: flex-start; gap: 14px; }
.bonus__body { flex: 1; }
.bonus__body .h3 { margin-top: 0; }
.bonus__body p { margin: 0; color: var(--gray); font-size: .92rem; }
.bonus__value {
  flex: none;
  font-weight: 800;
  color: var(--orange-2);
  background: rgba(255,138,0,.1);
  border: 1px solid var(--border-orange);
  padding: 4px 10px; border-radius: 8px;
  font-size: .9rem;
}
.seal {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 22px auto 0;
  width: fit-content;
  color: var(--green);
  font-weight: 800; letter-spacing: 1px;
  background: rgba(39,201,120,.1);
  border: 1px solid rgba(39,201,120,.3);
  padding: 10px 18px; border-radius: 999px;
}

/* ---------- Comparativo ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: start; }
.compare__col { padding: 14px 12px; overflow: hidden; }
.compare__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.compare__col li { display: flex; align-items: flex-start; gap: 7px; font-size: .78rem; line-height: 1.3; }
.compare__col li .ico { margin-top: 1px; width: 14px; height: 14px; flex: none; }
.compare__col--bad { border-color: rgba(229,85,107,.3); }
.compare__col--good { border-color: rgba(39,201,120,.35); }
.compare__col .h3 {
  display: flex; align-items: center; gap: 8px;
  margin: -14px -12px 12px;
  padding: 11px 12px;
  font-size: .95rem;
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--border);
}
.compare__col--bad .h3 { background: rgba(229,85,107,.12); color: #f3889a; }
.compare__col--good .h3 { background: rgba(39,201,120,.12); color: var(--green); }
.compare__col .h3 .ico { width: 16px; height: 16px; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; position: relative; }
.timeline__item { position: relative; padding-left: 56px; }
.timeline__item::before {
  content: "";
  position: absolute; left: 19px; top: 40px; bottom: -22px;
  width: 2px; background: linear-gradient(180deg, var(--orange), transparent);
}
.timeline__item:last-child::before { display: none; }
.timeline__num {
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #1a0e00;
  font-family: var(--font-title); font-size: 1.3rem;
  border-radius: 50%;
  box-shadow: var(--glow);
}
.timeline__media { width: 100%; border-radius: var(--radius-sm); margin-bottom: 12px; object-fit: cover; aspect-ratio: 16/9; }
.timeline__card .h3 { margin-top: 0; }
.timeline__card p { margin: 0; color: var(--gray); }
.section .timeline + .btn--cta { margin-top: 30px; }

.step-separator {
  position: relative;
  margin: 4px 0 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border-orange);
  text-align: center;
}
.step-separator span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,138,0,.12);
  border: 1px solid var(--border-orange);
  color: var(--orange-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.step-separator p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: .9rem;
}

/* ---------- Passos ---------- */
.steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.step {
  position: relative;
  min-height: 132px;
  padding: 28px 12px 12px;
  border-radius: 8px;
}
.step__num {
  position: absolute;
  top: -10px; left: 12px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #1a0e00;
  font-family: var(--font-title); font-size: .95rem;
  border-radius: 50%;
  box-shadow: var(--glow);
}
.step .ico--lg { width: 21px; height: 21px; margin-bottom: 8px; }
.step .h3 { margin: 0 0 5px; font-size: .9rem; line-height: 1.12; }
.step p { margin: 0; font-size: .72rem; color: var(--gray); line-height: 1.28; }
.section .steps + .btn--cta { margin-top: 8px; }

/* ---------- Empilhamento / ancoragem ---------- */
.card--stack { border-color: var(--border-orange); box-shadow: var(--glow); }
.card--stack .h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); margin-bottom: 14px; }
.stack-list { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 0; }
.stack-list li {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .82rem;
  line-height: 1.2;
}
.stack-list .ico { width: 15px; height: 15px; }
.stack-val { margin-left: auto; color: var(--orange-2); font-weight: 700; white-space: nowrap; font-size: .82rem; }
.stack-group-title {
  display: flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .72rem;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--orange-2);
  margin: 12px 0 2px;
}
.stack-bonus .stack-val { color: var(--green); }
.total-ref { text-align: center; color: var(--gray); margin: 14px 0 4px; }
.scarcity {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  text-align: left;
  background: rgba(255,138,0,.1);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 4px 0 18px;
  font-size: .85rem;
  color: var(--orange-2);
}
.scarcity .ico { flex: none; }
.scarcity strong { color: var(--orange-2); }
.scarcity__timer { font-family: var(--font-title); letter-spacing: 1px; }

/* ---------- Contador na oferta ---------- */
.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 10px auto 18px;
  padding: 13px 12px;
  border: 1px solid rgba(255,61,31,.45);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,61,31,.22), transparent 62%),
    rgba(255,138,0,.08);
  box-shadow: 0 0 28px rgba(255,61,31,.18);
}
.countdown__label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 900;
  color: #ffb45f;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.countdown__time {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-title);
}
.countdown__time i { color: #ff6b37; font-style: normal; font-size: 1.9rem; }
.countdown__box {
  display: grid;
  gap: 3px;
  justify-items: center;
}
.countdown__val {
  min-width: 62px;
  text-align: center;
  font-size: 2.35rem;
  color: var(--white);
  background: linear-gradient(180deg, #2b1110, var(--bg-2));
  border: 1px solid rgba(255,61,31,.65);
  border-radius: 10px;
  padding: 7px 4px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(255,61,31,.18);
  font-variant-numeric: tabular-nums;
}
.countdown__box small {
  color: var(--gray);
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.countdown.is-ending .countdown__val { animation: urgentPulse 1s ease-in-out infinite; }
@keyframes urgentPulse {
  0%, 100% { transform: scale(1); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 16px rgba(255,61,31,.2); }
  50% { transform: scale(1.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 28px rgba(255,61,31,.46); }
}
.assurance-row {
  list-style: none; margin: 18px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: center;
}
.assurance-row li { display: flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--gray); }
.assurance-row--mini { justify-content: center; margin-top: 14px; gap: 6px 12px; }
.assurance-row--mini li { font-size: .72rem; color: var(--gray); gap: 5px; }
.assurance-row--mini .ico { width: 13px; height: 13px; color: var(--gray); }
.assurance-inline {
  text-align: center;
  color: var(--gray);
  font-size: clamp(.62rem, 2.7vw, .74rem);
  letter-spacing: .2px;
  margin: 14px 0 0;
  white-space: nowrap;
}

/* ---------- Card de bônus separado ---------- */
.card--bonus {
  padding: 0;
  overflow: hidden;
  border-color: var(--border-orange);
}
.bonus-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  padding: 14px 18px;
}
.bonus-card__title {
  display: flex; align-items: center; gap: 8px;
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: .5px;
  color: #1a0e00;
  text-transform: uppercase;
}
.bonus-card__tag {
  font-weight: 800; font-size: .66rem; letter-spacing: 1px;
  color: #1a0e00;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.2);
  padding: 5px 10px; border-radius: 999px;
  white-space: nowrap;
}
.bonus-card__list { list-style: none; margin: 0; padding: 6px 18px; display: grid; gap: 0; }
.bonus-card__list li {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
  font-size: .85rem;
}
.bonus-card__list li:last-child { border-bottom: none; }
.bonus-card__name { flex: 1; font-weight: 600; }
.bonus-card__old { color: var(--gray); font-size: .8rem; }
.bonus-card__free {
  font-weight: 800; font-size: .72rem; letter-spacing: .5px;
  color: var(--green);
  background: rgba(39,201,120,.12);
  border: 1px solid rgba(39,201,120,.35);
  padding: 4px 9px; border-radius: 6px;
  white-space: nowrap;
}
.bonus-card__footer {
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 18px;
}
.bonus-card__total-label {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 0 0 4px;
  font-weight: 800; font-size: .74rem; letter-spacing: 1px;
  color: var(--orange-2); text-transform: uppercase;
}
.bonus-card__total { margin: 0; }
.bonus-card__total s { color: var(--gray); font-size: 1.6rem; font-family: var(--font-title); text-decoration-color: var(--orange); }
.bonus-card__free-big {
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--orange-2);
  margin: 2px 0 4px;
  text-shadow: 0 0 22px rgba(255,138,0,.4);
}
.bonus-card__note { margin: 0; color: var(--gray); font-size: .82rem; }

/* ---------- Garantia ---------- */
.card--guarantee {
  text-align: center;
  border: 2px solid var(--orange);
  background: radial-gradient(circle at 50% 0%, rgba(255,138,0,.12), var(--card) 60%);
  box-shadow: var(--glow);
}
.card--guarantee .h2 {
  font-family: var(--font-body);
  font-size: clamp(1.22rem, 5vw, 1.7rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
  text-transform: none;
}
.guarantee__seal { color: var(--orange-2); display: inline-block; margin-bottom: 8px; }
.card--guarantee p { color: var(--gray); max-width: 480px; margin-inline: auto; }
.guarantee__zero { color: var(--green) !important; font-weight: 800; font-size: 1.2rem; margin-top: 12px; }

/* ---------- Histórias / reforço ---------- */
.stories { display: grid; gap: 16px; margin-bottom: 24px; }
.story p { color: var(--gray); margin: 0; }
.story .h3 { margin-top: 8px; }

/* ---------- Galeria ---------- */
.gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery__item {
  flex: none;
  width: 220px; height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  scroll-snap-align: start;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { transition: transform .25s ease; color: var(--orange); }
.faq__item[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 18px 16px; color: var(--gray); }
.faq__a p { margin: 0; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  background:
    linear-gradient(180deg, rgba(7,16,28,.85), rgba(7,16,28,.95)),
    url("assets/cta-bg.webp") center/cover no-repeat;
}
.cta-final__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,138,0,.18), transparent 60%);
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final p { color: var(--white); }

/* ---------- Rodapé ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: 36px 110px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 20px; justify-content: center; margin-bottom: 26px; }
.footer__nav a { color: var(--gray); font-size: .9rem; }
.footer__nav a:hover { color: var(--orange-2); }
.footer__notice { margin-bottom: 18px; }
.footer__title { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: var(--white); margin: 0 0 6px; }
.footer__notice p { color: var(--gray); font-size: .82rem; margin: 0; }
.footer__copy { text-align: center; color: var(--gray); font-size: .8rem; margin: 20px 0 0; }

/* ---------- Barra fixa de CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(13,24,38,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border-orange);
  transform: translateY(120%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__price { font-size: .95rem; white-space: nowrap; }
.sticky-cta__price strong { color: var(--orange-2); font-size: 1.25rem; font-family: var(--font-title); }
.btn--sticky { width: auto; flex: 1; padding: 14px 16px; font-size: .95rem; animation: none; }

/* ---------- Modal VSL ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.85); backdrop-filter: blur(4px); }
.modal__box { position: relative; width: 100%; max-width: 340px; }
.modal__video {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--orange);
}
.modal__video iframe, .modal__video video { width: 100%; height: 100%; border: 0; }
.modal__close {
  position: absolute; top: -14px; right: -14px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--orange);
  color: #1a0e00;
  border: none; border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

/* ---------- Exit Popup (oferta de saída) ---------- */
.exitpop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}
.exitpop[hidden] { display: none; }
.exitpop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 15, .88);
  backdrop-filter: blur(5px);
  animation: exitFade .25s ease both;
}
.exitpop__box {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,138,0,.18), transparent 60%),
    linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  padding: 30px 22px 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 40px rgba(255,138,0,.22);
  animation: exitPop .32s cubic-bezier(.2,.9,.3,1.2) both;
}
.exitpop__close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: var(--gray);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all .2s ease;
}
.exitpop__close:hover { background: rgba(255,255,255,.16); color: var(--white); }
.exitpop__close .ico { width: 18px; height: 18px; }
.exitpop__flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3d1f, var(--orange));
  color: #fff;
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(255,61,31,.35);
}
.exitpop__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(1.5rem, 7vw, 2rem);
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.exitpop__title .hl { color: var(--orange-2); text-shadow: 0 0 20px rgba(255,138,0,.45); }
.exitpop__lead {
  color: var(--gray);
  font-size: .92rem;
  margin: 0 auto 18px;
  max-width: 320px;
}
.exitpop__price {
  background: rgba(255,138,0,.08);
  border: 1px solid var(--border-orange);
  border-radius: 14px;
  padding: 16px 14px;
  margin-bottom: 16px;
}
.exitpop__from { color: var(--gray); font-size: .9rem; margin: 0 0 2px; }
.exitpop__now { margin: 0 0 6px; }
.exitpop__now strong {
  font-family: var(--font-title);
  font-size: 3rem;
  color: var(--orange-2);
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,138,0,.4);
}
.exitpop__note { color: var(--gray); font-size: .82rem; margin: 0; line-height: 1.4; }
.exitpop__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.exitpop__timer-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffb45f;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .4px;
}
.exitpop__timer-time {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--white);
  background: linear-gradient(180deg, #2b1110, var(--bg-2));
  border: 1px solid rgba(255,61,31,.6);
  border-radius: 8px;
  padding: 4px 10px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}
.exitpop__timer-time i { color: #ff6b37; font-style: normal; }
.exitpop .btn--cta { width: 100%; }
.exitpop__decline {
  display: block;
  width: 100%;
  margin: 12px 0 0;
  padding: 8px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: .82rem;
  text-decoration: underline;
  cursor: pointer;
}
.exitpop__decline:hover { color: var(--white); }
.exitpop__assurance {
  color: var(--gray);
  font-size: .74rem;
  margin: 14px 0 0;
}
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes exitPop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .exitpop__box, .exitpop__backdrop { animation: none; }
}

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--cta { animation: none; }
  .eyebrow__dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================
   BREAKPOINTS — tablet / desktop
   ===================================================== */
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr 1fr; align-items: start; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .stories { grid-template-columns: repeat(3, 1fr); }
  .appcar__slide { flex-basis: 220px; min-height: 306px; }
  .btn--cta { width: auto; min-width: 320px; margin-inline: auto; display: flex; }
  .card--offer .btn--cta, .card--stack .btn--cta { width: 100%; }
  .section { padding-block: 72px; }
  .sticky-cta { max-width: 720px; left: 50%; transform: translate(-50%, 120%); border-radius: 14px 14px 0 0; border: 1px solid var(--border-orange); border-bottom: none; }
  .sticky-cta.is-visible { transform: translate(-50%, 0); }
}

@media (min-width: 980px) {
  .hero { padding-block: 64px 72px; }
  .hero__benefits { grid-template-columns: repeat(3, 1fr); max-width: 640px; margin-inline: auto; }
}
