/* ============================================================
   Código Comportamental das Vendas — Stylesheet
   Paleta Dark Mode SaaS + Laranja Âmbar
   ============================================================ */

:root {
  /* Cores */
  --bg-primary:   #18181B;
  --bg-secondary: #27272A;
  --bg-tertiary:  #1F1F23;
  --border:       #3F3F46;
  --border-soft:  #2A2A2E;

  --text-primary:   #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted:     #71717A;

  --accent:        #F97316;
  --accent-hover:  #EA580C;
  --accent-soft:   rgba(249, 115, 22, 0.12);
  --accent-glow:   rgba(249, 115, 22, 0.3);

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transições */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* Quando dentro de iframe (simulador /admin), esconde scrollbar — celular
   real não exibe barra desktop. Scroll continua funcional via touch/wheel. */
.is-in-iframe,
.is-in-iframe body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.is-in-iframe::-webkit-scrollbar,
.is-in-iframe body::-webkit-scrollbar,
.is-in-iframe *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* ---------- LAYOUT BASE ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* ---------- TIPOGRAFIA UTILITÁRIA ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }

.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section__title.center { text-align: center; }

.section__lead {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 32px;
}
.section__lead.center { text-align: center; margin-left: auto; margin-right: auto; }

.text-accent { color: var(--accent); }

em { font-style: normal; color: var(--text-primary); font-weight: 500; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(24, 24, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.nav__brand-text {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.nav__brand-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.6);
}

/* Hamburger menu — direita */
.nav__menu {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--t-fast);
}
.nav__menu:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav__menu[aria-expanded="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Painel dropdown do menu */
.nav__menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 8px;
  z-index: 40;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.2s var(--ease-premium), transform 0.2s var(--ease-premium), visibility 0s linear 0.2s;
}
.nav__menu-panel:not([hidden]) {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity 0.2s var(--ease-premium), transform 0.2s var(--ease-premium), visibility 0s linear 0s;
}
.nav__menu-panel a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.nav__menu-panel a:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.nav__menu-cta {
  margin-top: 6px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}
.nav__menu-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 16px 28px;
  font-size: 14px;
  box-shadow: 0 4px 14px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 18px;
  font-size: 13px;
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--sm { padding: 8px 16px; font-size: 12px; }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--xl {
  padding: 22px 40px;
  font-size: 16px;
  width: 100%;
}

.btn__price {
  background: rgba(0,0,0,0.25);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  letter-spacing: 0.5px;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 14px var(--accent-glow); }
  50%      { box-shadow: 0 4px 28px rgba(249, 115, 22, 0.6); }
}
.btn--pulse { animation: pulseGlow 2.4s ease-in-out infinite; }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(249, 115, 22, 0.10), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(249, 115, 22, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.hero__subtitle,
.hero__promise {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 40px;
}
.hero__promise em {
  color: var(--text-primary);
  font-weight: 500;
  background: linear-gradient(180deg, transparent 70%, rgba(249, 115, 22, 0.18) 70%);
  padding: 0 3px;
  font-style: normal;
}

.hero__cta { margin-bottom: 72px; }

.hero__trust {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero__trust svg {
  color: var(--accent);
  flex-shrink: 0;
}
.sep { opacity: 0.4; }

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 10px;
}
.stat__sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ============================================================
   2. PROBLEMA
   ============================================================ */
.section--problem .section__title { max-width: 800px; }

.pain-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 48px;
}
.pain-item {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-base);
}
.pain-item:hover { border-color: var(--border); }

.pain-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-sm);
}

.pain-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}
.pain-item p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ============================================================
   3. SOLUÇÃO
   ============================================================ */
.section--solution { background: var(--bg-tertiary); }

.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .solution__grid { grid-template-columns: 1fr; gap: 48px; }
}

.bullet-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.bullet-list svg { color: var(--accent); flex-shrink: 0; }

/* Mockup */
.mockup {
  background: #0F0F12;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-soft);
}
.mockup__dot {
  width: 10px;
  height: 10px;
  background: var(--border);
  border-radius: 50%;
}
.mockup__title {
  margin-left: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}

.mockup__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-node {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  justify-content: center;
}
.flow-node--root {
  background: var(--bg-primary);
  border-color: var(--text-muted);
}
.flow-node--accent {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.flow-node--blur {
  filter: blur(4px);
  opacity: 0.5;
}
.flow-node__tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--border);
  color: var(--text-muted);
}
.flow-node--accent .flow-node__tag {
  background: var(--accent);
  color: #fff;
}
.flow-node__label {
  font-size: 13px;
  font-weight: 500;
}

.flow-connector {
  width: 1px;
  height: 24px;
  background: var(--border);
}

.flow-branch {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 480px) {
  .flow-branch { flex-direction: column; align-items: center; }
}

/* ============================================================
   4. DELIVERABLES (Cofre)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-md);
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  line-height: 1.25;
}
.card__sub {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.card__text {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   BÔNUS — layout com header (título + icon direita)
   ============================================================ */
.bonus {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.02));
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  position: relative;
}
.bonus__tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}
.bonus__icon {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.15);
  color: var(--accent);
  border-radius: var(--radius-md);
}
.bonus__icon svg { width: 20px; height: 20px; }
.bonus__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 6px 52px 12px 0;
}
.bonus__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.bonus__value {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding-top: 12px;
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bonus__value strong {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.bonus__value strong s {
  opacity: 0.85;
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1.5px;
}
.bonus__value-free {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 3px;
}

/* Sinal de + entre os bônus */
.bonus-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin: 12px 0 -8px;
  color: var(--accent);
}
.bonus-plus svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

/* ============================================================
   SAVINGS BLOCK — ancoragem de preço
   ============================================================ */
.savings {
  margin-top: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: center;
}
@media (max-width: 700px) {
  .savings { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
}

.savings__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.savings__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-soft);
}
.savings__row:last-child { border-bottom: none; padding-bottom: 0; }
.savings__row--total {
  font-weight: 600;
  color: var(--text-primary);
  padding-top: 6px;
}
.savings__price {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.savings__row--total .savings__price s { opacity: 0.6; }

.savings__highlight {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0.05));
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
}
.savings__label {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
  margin-bottom: 6px;
}
.savings__amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.savings__sub {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.savings__sub strong { color: var(--text-primary); }

/* ============================================================
   5. OFERTA
   ============================================================ */
.section--offer { background: var(--bg-tertiary); }

.offer__inner {
  max-width: 720px;
  margin: 0 auto;
}

.offer-card {
  margin-top: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
@media (max-width: 600px) { .offer-card { padding: 40px 24px; } }

.offer-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.offer-card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.offer-card__includes {
  list-style: none;
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 36px;
}
.offer-card__includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
}
.offer-card__includes svg { color: var(--accent); flex-shrink: 0; }

/* Glassmorphism — bloco de preço destacado */
.offer-card__price {
  position: relative;
  padding: 28px 24px;
  margin: 28px -8px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.offer-card__price::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

.price__from {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: center;
}
.price__from s { opacity: 0.6; }

.price__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0;
}
.price__installments {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}
.price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.price__currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
}
.price__value {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.price__cents {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 12px;
}
.price__split {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
}

.offer-card__foot {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.offer__micro {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   6. GARANTIA & FAQ
   ============================================================ */
.guarantee {
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 80px;
}
@media (max-width: 700px) {
  .guarantee { padding: 28px 24px; }
}


.guarantee__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.guarantee__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }

.faq .section__title { margin-bottom: 40px; }

.faq__item {
  border-bottom: 1px solid var(--border-soft);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent); }

.faq__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform var(--t-base) var(--ease-premium), color var(--t-fast);
}
.faq__item:hover .faq__chevron { color: var(--accent); }
.faq__item[open] .faq__chevron {
  transform: rotate(-180deg);
  color: var(--accent);
}

.faq__body {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
}

.final-cta {
  margin-top: 64px;
  text-align: center;
}

/* ============================================================
   AUTOR
   ============================================================ */
.section--author { background: var(--bg-tertiary); padding: 64px 0; }

.author {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .author { flex-direction: column; text-align: center; }
}

.author__avatar {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.author__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.author__role {
  font-size: 14px;
  color: var(--accent);
  margin: 4px 0 12px;
  font-weight: 500;
}
.author__text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 48px 0;
}
.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer__brand {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.footer__legal {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer__links {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer__links a:hover { color: var(--accent); }

/* ============================================================
   ANIMAÇÕES DE ENTRADA (sutis)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .hero__title,
  .hero__subtitle,
  .hero__cta,
  .hero__stats {
    animation: fadeUp 0.7s ease both;
  }
  .hero__subtitle { animation-delay: 0.1s; }
  .hero__cta     { animation-delay: 0.2s; }
  .hero__stats   { animation-delay: 0.3s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ============================================================
   OTIMIZAÇÃO MOBILE — auditoria do time de design
   Breakpoints: ≤768 (tablet/mobile L) · ≤480 (mobile M) · ≤360 (mobile S)
   ============================================================ */

/* ---------- TABLET / MOBILE LARGE (≤768px) ---------- */
@media (max-width: 768px) {

  /* Container — respira mais nas laterais */
  .container { padding: 0 18px; }

  /* Nav — esconde CTA secundário (redundante com CTA do hero logo abaixo) */
  .nav__inner { height: 56px; }
  .nav__brand { font-size: 14px; gap: 8px; }
  .nav__mark  { width: 28px; height: 28px; }
  .nav__inner > .btn { display: none; }

  /* Hero — typography com respiração */
  .hero { padding: 88px 0 80px; }
  .hero__title {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.18;
    margin-bottom: 40px;
  }
  .hero__subtitle { font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
  .hero__cta { margin-bottom: 56px; }

  /* Hero CTA — empilha texto e badge de preço (resolve o corte) */
  .btn--lg {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    width: 100%;
    max-width: 380px;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
  }
  .btn__price {
    background: rgba(0, 0, 0, 0.28);
    padding: 4px 12px;
    font-size: 12px;
  }

  /* Hero trust — wrap respirado */
  .hero__trust { font-size: 12px; gap: 14px 18px; margin-top: 24px; line-height: 1.6; }

  /* Stats em grid 2×2 — resolve wrap quebrado com 4 items */
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    margin-top: 28px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat__num   { font-size: 28px; }
  .stat__label { font-size: 11px; margin-top: 8px; letter-spacing: 1.4px; }
  .stat__sep   { display: none; }

  /* Seção problema */
  .pain-item { padding: 20px; gap: 14px; }
  .pain-item h3 { font-size: 15px; }
  .pain-item p  { font-size: 14px; }

  /* Solução — mockup escala dentro do container */
  .mockup__body { padding: 24px 16px; }
  .flow-node    { min-width: 0; width: 100%; padding: 10px 14px; }
  .flow-node__label { font-size: 12px; }

  /* Cards do cofre */
  .card { padding: 28px 24px; }
  .card__title { font-size: 18px; }
  .card__text  { font-size: 14px; }

  /* Bônus — tag não flutua sobre conteúdo */
  .bonus { padding: 36px 24px 28px; }
  .bonus__tag { position: static; display: inline-block; margin-bottom: 14px; }
  .bonus__title { font-size: 18px; }

  /* Oferta — card mais enxuto */
  .offer-card { padding: 36px 22px; }
  .offer-card__title { font-size: 22px; margin-bottom: 24px; }
  .offer-card__price { padding: 22px 16px; margin: 24px 0 28px; }
  .price__value { font-size: 72px; }
  .price__currency { font-size: 20px; }
  .price__cents { font-size: 20px; margin-top: 10px; }
  .price__installments { font-size: 12px; letter-spacing: 1.5px; }
  .price__split { font-size: 13px; }
  .btn--xl { padding: 18px 24px; font-size: 14px; }

  /* Garantia */
  .guarantee { padding: 28px 20px; }
  .guarantee__title { font-size: 20px; }
  .guarantee__text  { font-size: 14px; }

  /* FAQ — chevron vai pra direita real, texto respira */
  .faq__item summary {
    font-size: 15px;
    padding: 18px 0;
    gap: 12px;
    line-height: 1.35;
  }
  .faq__body { font-size: 14px; }

  /* CTA final */
  .final-cta .btn--lg { padding: 18px 24px; }

  /* Autor */
  .section--author { padding: 48px 0; }
  .author__avatar { width: 80px; height: 80px; font-size: 26px; }
  .author__text   { font-size: 14px; }

  /* Footer */
  .footer { padding: 36px 0; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

/* ---------- MOBILE MEDIUM (≤480px) ---------- */
@media (max-width: 480px) {

  .container { padding: 0 16px; }

  .nav__brand { font-size: 13px; }
  .nav__name  { display: none; } /* só o mark — economia de espaço */

  .hero { padding: 56px 0 48px; }
  .hero__title { font-size: clamp(28px, 9vw, 38px); }
  .hero__subtitle { font-size: 15px; }

  .eyebrow { font-size: 11px; letter-spacing: 1.5px; }
  .section__title { font-size: clamp(24px, 6vw, 32px); }
  .section__lead  { font-size: 15px; }

  /* CTA: full width sempre */
  .btn--lg, .btn--xl { width: 100%; max-width: 100%; }
  .btn--primary { padding: 16px 20px; }

  /* Oferta */
  .offer-card { padding: 32px 18px; }
  .offer-card__title { font-size: 20px; }
  .offer-card__includes { padding-left: 0; }
  .price__value { font-size: 60px; }
  .price__installments { font-size: 11px; }

  /* Cards */
  .card { padding: 24px 20px; }
  .card__icon { width: 44px; height: 44px; margin-bottom: 18px; }

  /* Bônus */
  .bonus__icon { width: 48px; height: 48px; }

  /* Garantia */
  .guarantee__seal { width: 80px; height: 80px; }
  .guarantee__days { font-size: 16px; bottom: 16px; }
  .guarantee__title { font-size: 18px; }

  /* Mockup do fluxograma — quebra branch */
  .flow-branch { flex-direction: column; gap: 10px; }
}

/* ---------- MOBILE SMALL (≤360px — iPhone SE / Galaxy compactos) ---------- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: 26px; }
  .price__value { font-size: 46px; }
  .offer-card__title { font-size: 18px; }
  .btn { letter-spacing: 0.5px; }
}

/* ---------- TOUCH AFFORDANCE — alvos mínimos 44x44 ---------- */
@media (hover: none) and (pointer: coarse) {
  .btn, .faq__item summary, .nav__brand, .footer__links a {
    min-height: 44px;
  }
  .btn--primary:hover { transform: none; }
  .card:hover { transform: none; }
}

/* ============================================================
   COMO FUNCIONA — 3 passos do mecanismo
   ============================================================ */
.section--how { background: var(--bg-tertiary); }

.how-steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: how;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: 1fr; gap: 16px; } }

.how-step {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}
@media (hover: hover) and (pointer: fine) {
  .how-step:hover { border-color: var(--border); transform: translateY(-3px); }
}
.how-step__num {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent), rgba(249, 115, 22, 0.25));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.how-step__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent);
  border-radius: var(--radius-md);
}
.how-step__body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.how-step__body p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.how-step__body em {
  color: var(--text-primary);
  font-weight: 500;
  font-style: normal;
}

/* ============================================================
   FILTRO — Pra quem é × Pra quem NÃO é
   ============================================================ */
.filter-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .filter-grid { grid-template-columns: 1fr; gap: 16px; } }

.filter-col {
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.filter-col--yes { border-top: 2px solid var(--accent); }
.filter-col--no  { border-top: 2px solid var(--border-strong, #3F3F46); opacity: 0.92; }

.filter-col__head { margin-bottom: 20px; }
.filter-col__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 5px 11px;
  border-radius: 4px;
}
.filter-col__badge--yes {
  background: rgba(249, 115, 22, 0.18);
  color: var(--accent);
}
.filter-col__badge--no {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.filter-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.filter-list li > span { flex: 1; min-width: 0; }
.filter-list--no li svg { color: var(--text-dim, var(--text-muted)); }
.filter-list li strong { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   FUTURE PACING — bloco emocional pré-oferta
   ============================================================ */
.section--future {
  background: var(--bg-tertiary);
  padding-top: 64px;
  padding-bottom: 64px;
}

.future-pace {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.future-pace__title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 28px;
}
.future-pace__copy {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.future-pace__copy em {
  color: var(--text-primary);
  font-style: italic;
  font-weight: 500;
}
.future-pace__copy strong {
  color: var(--text-primary);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 70%, rgba(249, 115, 22, 0.2) 70%);
  padding: 0 3px;
}
.future-pace__close {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .future-pace__copy { font-size: 15.5px; line-height: 1.7; }
  .future-pace__close { font-size: 14px; }
}

/* ============================================================
   MORPH CARD — Sem × Com o método (auto-rotating)
   ============================================================ */
.section--compare { background: var(--bg-primary); }

.morph-card {
  margin: 48px auto 0;
  max-width: 680px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  position: relative;
  overflow: hidden;
}
.morph-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}

.morph-card__slides {
  position: relative;
  min-height: 260px;
}

.morph-card__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s var(--ease-premium),
    transform 0.55s var(--ease-premium);
  pointer-events: none;
}
.morph-card__slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.morph-card__before,
.morph-card__after {
  padding: 20px 22px 18px;
  border-radius: var(--radius-md);
  position: relative;
}
.morph-card__before {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--border-soft);
}
.morph-card__after {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.03));
  border: 1px solid var(--accent);
}

.morph-card__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 6px;
}
.morph-card__before .morph-card__label { color: var(--text-muted); opacity: 0.75; }
.morph-card__after  .morph-card__label { color: var(--accent); }

.morph-card__text {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.morph-card__before .morph-card__text {
  color: var(--text-muted);
}
.morph-card__before .morph-card__text strong {
  color: var(--text-secondary);
  font-weight: 600;
}
.morph-card__after .morph-card__text {
  color: var(--text-primary);
}
.morph-card__after .morph-card__text strong {
  color: var(--accent);
  font-weight: 700;
}

/* Círculo âmbar com seta — flutuando entre ANTES e DEPOIS */
.morph-card__arrow {
  position: absolute;
  left: 50%;
  top: calc(50% + 0px);
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.5);
}
.morph-card__arrow svg { display: block; }

/* Barra de progresso âmbar */
.morph-card__progress {
  height: 2px;
  background: var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
  margin: 24px 0 18px;
}
.morph-card__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  border-radius: 2px;
  transform-origin: left center;
}
.morph-card.is-animating .morph-card__progress-bar {
  animation: morphProgress 3s linear forwards;
}
.morph-card.is-paused .morph-card__progress-bar {
  animation-play-state: paused;
}
@keyframes morphProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* Dots — barrinha que expande no ativo */
.morph-card__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.morph-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s var(--ease-premium),
    width 0.3s var(--ease-premium),
    border-radius 0.3s var(--ease-premium);
}
.morph-card__dot:hover { background: var(--text-muted); }
.morph-card__dot.is-active {
  background: var(--accent);
  width: 26px;
  border-radius: 4px;
}

/* Mobile */
@media (max-width: 600px) {
  .morph-card { padding: 24px 18px 18px; }
  .morph-card__slides { min-height: 280px; }
  .morph-card__before,
  .morph-card__after { padding: 18px 18px 16px; }
  .morph-card__after { margin-top: 26px; }
  .morph-card__text { font-size: 15px; line-height: 1.5; }
  .morph-card__arrow { width: 32px; height: 32px; border-width: 3px; }
}

/* Reduced motion: para o auto-rotate, mostra estático */
@media (prefers-reduced-motion: reduce) {
  .morph-card__progress { display: none; }
  .morph-card__slide { transition: none; }
}

/* ============================================================
   PREVIEW — sneak peek de um mapa de decisão real
   ============================================================ */
.section--preview { background: var(--bg-tertiary); }

.preview-wrap {
  max-width: 720px;
  margin: 56px auto 0;
}

.preview-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  overflow: hidden;
}
.preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}

.preview-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.preview-card__tag {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 4px 10px;
  border-radius: 4px;
}
.preview-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.preview-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.preview-node {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-node--root {
  background: var(--bg-primary);
  border-color: var(--border-strong, var(--border));
}
.preview-node--question { border-color: rgba(249, 115, 22, 0.3); }
.preview-node--answer {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.03));
  border-color: var(--accent);
}
.preview-node__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.preview-node--question .preview-node__tag,
.preview-node--answer .preview-node__tag { color: var(--accent); }
.preview-node--root .preview-node__tag { color: var(--text-dim, var(--text-muted)); }
.preview-node__label {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
}
.preview-node--answer .preview-node__label { font-weight: 600; }
.preview-node__hint {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
}
.preview-node__hint em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.preview-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(180deg, var(--border), var(--accent));
  margin: 0;
}

/* Locked content - blurred + lock overlay */
.preview-locked {
  position: relative;
  width: 100%;
  margin-top: 16px;
  padding: 18px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  user-select: none;
}
.preview-locked__row { display: flex; gap: 10px; }
.preview-locked__bar {
  height: 10px;
  flex: 1;
  background: linear-gradient(90deg, var(--border-soft), rgba(249, 115, 22, 0.2));
  border-radius: 3px;
  filter: blur(2.5px);
}
.preview-locked__bar--short { flex: 0 0 40%; }
.preview-locked__bar--medium { flex: 0 0 60%; }
.preview-locked__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 15, 18, 0.92) 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 18px 16px;
  gap: 8px;
  color: var(--text-muted);
  text-align: center;
}
.preview-locked__overlay svg { color: var(--accent); }
.preview-locked__overlay span {
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.preview-card__foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: center;
}
.preview-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
  transition: all var(--t-fast);
}
.preview-card__cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .preview-card { padding: 24px 18px 20px; }
  .preview-node { padding: 14px 16px; }
  .preview-node__label { font-size: 13.5px; }
  .preview-node__hint { font-size: 12px; }
  .preview-card__cta { font-size: 12px; padding: 9px 14px; }
}

/* ============================================================
   EXIT INTENT MODAL
   ============================================================ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-premium), visibility 0s linear 0.3s;
}
.exit-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease-premium), visibility 0s linear 0s;
}

.exit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.exit-modal__card {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(249, 115, 22, 0.15);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s var(--ease-premium);
}
.exit-modal.is-open .exit-modal__card { transform: none; }

.exit-modal__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.exit-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
}
.exit-modal__close:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.exit-modal__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--accent);
  margin-bottom: 14px;
}
.exit-modal__title {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.exit-modal__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.exit-modal__copy em {
  color: var(--text-primary);
  font-style: italic;
  font-weight: 500;
}
.exit-modal__copy strong {
  color: var(--accent);
  font-weight: 700;
}

.exit-modal__bullets {
  list-style: none;
  padding: 16px 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exit-modal__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.exit-modal__bullets svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.exit-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exit-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 15px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
  transition: all var(--t-fast);
}
.exit-modal__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}
.exit-modal__dismiss {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12.5px;
  padding: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(161, 161, 170, 0.3);
  transition: color var(--t-fast);
}
.exit-modal__dismiss:hover { color: var(--text-primary); }

@media (max-width: 600px) {
  .exit-modal__card { padding: 32px 22px 24px; }
}

/* ============================================================
   URGENCY BANNER — ancoragem de preço com pulso visual
   ============================================================ */
.urgency-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(249, 115, 22, 0.04));
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.urgency-banner__pulse {
  flex-shrink: 0;
  position: relative;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}
.urgency-banner__pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}
.urgency-banner__copy {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 600px) {
  .urgency-banner__copy { flex-direction: row; gap: 6px; align-items: baseline; }
}
.urgency-banner__copy strong { color: var(--text-primary); font-weight: 700; }
.urgency-banner__copy s { color: var(--text-muted); opacity: 0.75; }
.urgency-banner__price { color: var(--accent) !important; font-size: 15px; }

/* ============================================================
   PROVA SOCIAL
   ============================================================ */
.section--social {
  background: var(--bg-tertiary);
  position: relative;
}

/* Slider horizontal — scroll-snap nativo, sem libs */
.social-slider {
  margin-top: 48px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  margin-left: -4px;
  margin-right: -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.social-slider::-webkit-scrollbar { display: none; }

/* Mobile: padding lateral igual nos 2 lados → centra o card */
@media (max-width: 640px) {
  .social-slider {
    padding-left: 6%;
    padding-right: 6%;
    margin-left: 0;
    margin-right: 0;
  }
}

.social-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
}
.social-nav {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
}
.social-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}
.social-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.social-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.social-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--t-base);
}
.social-dot.is-active {
  background: var(--accent);
  width: 22px;
  border-radius: 3px;
}

.social-card {
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: center;
  background:
    radial-gradient(ellipse 600px 200px at top right, rgba(249, 115, 22, 0.04), transparent 60%),
    linear-gradient(180deg, var(--bg-secondary), #1f1f23);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
@media (max-width: 960px) { .social-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 640px) {
  .social-card { flex: 0 0 88%; padding: 28px 22px 22px; gap: 18px; }
}

/* Linha decorativa âmbar no topo */
.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: 0.6;
}

/* Quote SVG decorativo — substitui o " serif que ficava torto */
.social-card__quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 28px;
  color: var(--accent);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .social-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(249, 115, 22, 0.1);
  }
}

/* Linha do topo: estrelas + badge de resultado */
.social-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.social-card__rating {
  display: flex;
  gap: 4px;
  color: var(--accent);
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.4));
}
.social-card__result {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.12);
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
}

.social-card__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}
.social-card__quote strong {
  color: var(--text-primary);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 70%, rgba(249, 115, 22, 0.15) 70%);
  padding: 0 2px;
}

.social-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.social-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow:
    0 0 0 2px var(--bg-secondary),
    0 0 0 3px rgba(249, 115, 22, 0.3),
    0 4px 12px rgba(249, 115, 22, 0.2);
}
.social-card__author-info {
  flex: 1;
  min-width: 0;
}
.social-card__author-info strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.social-card__verified {
  color: var(--accent);
  flex-shrink: 0;
}
.social-card__author-info span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim, var(--text-muted));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0.7;
}
.social-foot svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   STICKY CTA MOBILE — sempre visível após scroll
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(15, 15, 18, 0.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
  pointer-events: none;
  display: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.sticky-cta__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  flex-shrink: 0;
}
.sticky-cta__installments {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
}
.sticky-cta__price strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  min-width: 0;
  white-space: nowrap;
}
.sticky-cta__btn:active { transform: scale(0.97); background: var(--accent-hover); }

/* Label muda com crossfade quando a sessão muda */
.sticky-cta__btn-label {
  display: inline-block;
  transition: opacity 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
}
.sticky-cta__btn.is-morphing .sticky-cta__btn-label {
  opacity: 0;
  transform: translateY(-4px);
}

/* Ícone também faz fade junto */
.sticky-cta__btn-arrow {
  transition: transform 0.25s var(--ease-premium);
}
.sticky-cta__btn.is-morphing .sticky-cta__btn-arrow {
  transform: translateX(-6px);
  opacity: 0;
}

/* Mobile only — esconde no desktop, exibe em < 768px */
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  /* Body ganha padding bottom pra footer não ser coberto pelo sticky CTA */
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* ============================================================
   MOTION SYSTEM — toque premium minimalista
   ============================================================
   Princípios:
   - Só transform + opacity (GPU, 60fps garantido)
   - Easing: cubic-bezier(0.22, 1, 0.36, 1) — curva Apple-like
   - prefers-reduced-motion desativa tudo
   - .js-ready gateia tudo (sem JS = aparece estático)
   ============================================================ */

:root {
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --reveal-duration: 0.85s;
}

/* ---------- Scroll progress bar (topo da página) ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    #fbbf24 50%,
    var(--accent) 100%
  );
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ---------- Nav: densifica ao rolar ---------- */
.nav {
  transition:
    background var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base);
}
.nav.is-scrolled {
  background: rgba(15, 15, 18, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   REVEAL ON SCROLL — fade-up com stagger
   ============================================================
   Cada elemento observado por JS recebe `.is-visible` ao entrar
   no viewport. O estado inicial é só aplicado quando `.js-ready`
   existe (sem JS = aparece estático, sem flicker). */

.js-ready .pain-item,
.js-ready .card,
.js-ready .bonus,
.js-ready .offer-card,
.js-ready .guarantee,
.js-ready .faq__item,
.js-ready .author,
.js-ready .social-card,
.js-ready .how-step,
.js-ready .filter-col,
.js-ready .future-pace,
.js-ready .morph-card,
.js-ready .preview-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--reveal-duration) var(--ease-premium),
    transform var(--reveal-duration) var(--ease-premium),
    border-color var(--t-base),
    background var(--t-base),
    box-shadow var(--t-base);
}

.js-ready .pain-item.is-visible,
.js-ready .card.is-visible,
.js-ready .bonus.is-visible,
.js-ready .offer-card.is-visible,
.js-ready .guarantee.is-visible,
.js-ready .faq__item.is-visible,
.js-ready .author.is-visible,
.js-ready .social-card.is-visible,
.js-ready .how-step.is-visible,
.js-ready .filter-col.is-visible,
.js-ready .future-pace.is-visible,
.js-ready .morph-card.is-visible,
.js-ready .preview-card.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger nos 3 passos do "Como funciona" */
.js-ready .how-step:nth-child(2) { transition-delay: 0.10s, 0.10s, 0s, 0s, 0s; }
.js-ready .how-step:nth-child(3) { transition-delay: 0.20s, 0.20s, 0s, 0s, 0s; }

/* Stagger no filtro yes/no */
.js-ready .filter-col--no { transition-delay: 0.12s, 0.12s, 0s, 0s, 0s; }

/* Stagger — só atrasa o reveal in, não atrapalha hover */
.js-ready .pain-item:nth-child(2) { transition-delay: 0.08s, 0.08s, 0s, 0s, 0s; }
.js-ready .pain-item:nth-child(3) { transition-delay: 0.16s, 0.16s, 0s, 0s, 0s; }

.js-ready .cards .card:nth-child(2) { transition-delay: 0.10s, 0.10s, 0s, 0s, 0s; }
.js-ready .cards .card:nth-child(3) { transition-delay: 0.20s, 0.20s, 0s, 0s, 0s; }

.js-ready .social-slider .social-card:nth-child(2) { transition-delay: 0.10s, 0.10s, 0s, 0s, 0s; }
.js-ready .social-slider .social-card:nth-child(3) { transition-delay: 0.20s, 0.20s, 0s, 0s, 0s; }

.js-ready .faq__item:nth-of-type(2) { transition-delay: 0.06s, 0.06s, 0s, 0s, 0s; }
.js-ready .faq__item:nth-of-type(3) { transition-delay: 0.12s, 0.12s, 0s, 0s, 0s; }
.js-ready .faq__item:nth-of-type(4) { transition-delay: 0.18s, 0.18s, 0s, 0s, 0s; }
.js-ready .faq__item:nth-of-type(5) { transition-delay: 0.24s, 0.24s, 0s, 0s, 0s; }

/* ============================================================
   HOVER REFINADO — lift + glow âmbar minimalista
   ============================================================ */

.card {
  transition:
    border-color var(--t-base),
    transform var(--t-base),
    box-shadow var(--t-base);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.25),
      0 0 0 1px rgba(249, 115, 22, 0.18),
      0 0 32px rgba(249, 115, 22, 0.08);
  }
  .card:hover::before { opacity: 1; }
}

.pain-item {
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}
@media (hover: hover) and (pointer: fine) {
  .pain-item:hover {
    border-color: var(--border);
    background: linear-gradient(135deg, var(--bg-secondary), #2d2d31);
    transform: translateX(4px);
  }
}

.faq__item summary {
  transition: color var(--t-fast), padding-left var(--t-base);
}
@media (hover: hover) and (pointer: fine) {
  .faq__item summary:hover { padding-left: 6px; }
}

/* ============================================================
   GRADIENT SHEEN no CTA principal — pulso elegante
   ============================================================ */
.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-110%);
  pointer-events: none;
  z-index: -1;
}
@media (prefers-reduced-motion: no-preference) {
  .btn--primary::after {
    animation: sheen 3.6s var(--ease-premium) infinite;
    animation-delay: 1.4s;
  }
}
@keyframes sheen {
  0%, 70%   { transform: translateX(-110%); }
  100%      { transform: translateX(110%); }
}

/* ============================================================
   HERO — orb gradient animado (parallax estático elegante)
   ============================================================ */
.hero__bg {
  animation: heroBgPulse 14s ease-in-out infinite;
}
@keyframes heroBgPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.72; }
}

/* ============================================================
   STATS — contador acompanhado de glow ao concluir
   ============================================================ */
.stat__num {
  transition: color 0.4s var(--ease-premium), text-shadow 0.6s var(--ease-premium);
  display: inline-block;
  min-width: 60px;
  font-variant-numeric: tabular-nums;
}
.is-visible .stat__num {
  text-shadow: 0 0 24px rgba(249, 115, 22, 0.3);
}


/* ============================================================
   OFFER CARD — glow ambiente sutil quando visível
   ============================================================ */
.offer-card {
  position: relative;
  isolation: isolate;
  transition: transform var(--t-base), box-shadow 0.5s var(--ease-premium);
}
/* Glow ambiente sutil — substitui o efeito anterior que ficou pesado */
.offer-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(249, 115, 22, 0.4),
    transparent 50%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s var(--ease-premium);
  pointer-events: none;
}
.offer-card.is-visible::before { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .offer-card:hover {
    box-shadow:
      0 32px 100px rgba(0, 0, 0, 0.55),
      0 0 60px rgba(249, 115, 22, 0.12);
  }
}

/* Preço com glow no número principal */
.price__value {
  background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ============================================================
   FAQ — animação de abertura mais elegante (já é nativa, refinamento)
   ============================================================ */
.faq__item[open] .faq__body {
  animation: faqExpand 0.35s var(--ease-premium);
}
@keyframes faqExpand {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LINKS DO FOOTER — underline reveal
   ============================================================ */
.footer__links a {
  position: relative;
  transition: color var(--t-fast);
}
.footer__links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base) var(--ease-premium);
}
.footer__links a:hover::after { transform: scaleX(1); }

/* ============================================================
   FOCUS STATES PREMIUM — outline customizado
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   REDUCED MOTION — kill switch global
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js-ready .pain-item,
  .js-ready .card,
  .js-ready .bonus,
  .js-ready .offer-card,
  .js-ready .guarantee,
  .js-ready .faq__item,
  .js-ready .author,
  .js-ready .solution__copy > *,
  .js-ready .solution__mockup,
  .js-ready .section--problem .section__title,
  .js-ready .section--problem .section__lead {
    opacity: 1;
    transform: none;
  }
}
