/* ═══════════════════════════════════════════════════════════════════════════
   PROPOSTA MIA HUB · GISLAYNE BATISTA · BLUMENAU-SC
   DNA: Master Magalhães · Calibre Awwwards SOTY
   Stack: HTML estático · CSS custom · GSAP + Lenis
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ─── BACKGROUNDS ─── */
  --bg-void:        #050507;
  --bg-deep:        #0A0A0F;
  --bg-card:        #111118;
  --bg-card-hover:  #18181F;
  --bg-surface:     #1C1C26;
  --bg-light:       #F5F0E8;

  /* ─── TEXTO ─── */
  --text-primary:   #F2EDE4;
  --text-secondary: #A89F92;
  --text-muted:     #5C5650;
  --text-inverse:   #050507;

  /* ─── DOURADO (Master Magalhães) ─── */
  --gold-primary:   #C9A84C;
  --gold-light:     #E8C96B;
  --gold-muted:     #7A6430;
  --gold-glow:      rgba(201,168,76,0.15);
  --gold-glow-lg:   rgba(201,168,76,0.08);

  /* ─── VERMELHO PERIGO (ATO 2 — DOR) ─── */
  --danger-primary: #E53E3E;
  --danger-dark:    #C53030;
  --danger-glow:    rgba(229,62,62,0.12);

  /* ─── VERDE SUCESSO (ATO 5 — DEPOIS) ─── */
  --success-primary: #38A169;
  --success-light:   #48BB78;
  --success-glow:    rgba(56,161,105,0.12);

  /* ─── SISTEMA ─── */
  --border-default: rgba(242,237,228,0.06);
  --border-gold:    rgba(201,168,76,0.20);
  --border-gold-hover: rgba(201,168,76,0.50);

  /* ─── GRADIENTES ─── */
  --gradient-hero: linear-gradient(to bottom, transparent 0%, rgba(5,5,7,0.4) 60%, #050507 100%);
  --gradient-card: linear-gradient(145deg, #111118 0%, #0D0D13 100%);
  --gradient-cta:  linear-gradient(135deg, #C9A84C 0%, #E8C96B 50%, #C9A84C 100%);

  /* ─── SHADOWS ─── */
  --shadow-card:        0 4px 24px rgba(0,0,0,0.6), 0 0 0 1px var(--border-default);
  --shadow-card-hover:  0 8px 40px rgba(0,0,0,0.8), 0 0 0 1px var(--border-gold), 0 0 32px var(--gold-glow);
  --shadow-cta:         0 4px 20px rgba(201,168,76,0.4), 0 2px 8px rgba(201,168,76,0.2);
  --shadow-cta-hover:   0 8px 40px rgba(201,168,76,0.6), 0 4px 16px rgba(201,168,76,0.3);

  /* ─── TIPOGRAFIA — SIZES ─── */
  --type-display-xl:  clamp(5rem, 15vw, 14rem);
  --type-display-lg:  clamp(3.5rem, 10vw, 8rem);
  --type-display-md:  clamp(2.5rem, 6vw, 5rem);
  --type-h1:          clamp(2rem, 5vw, 3.5rem);
  --type-h2:          clamp(1.75rem, 4vw, 2.75rem);
  --type-h3:          clamp(1.25rem, 2.5vw, 1.75rem);
  --type-body-lg:     clamp(1.0625rem, 1.5vw, 1.1875rem);
  --type-body:        clamp(0.9375rem, 1.2vw, 1.0625rem);
  --type-small:       0.875rem;
  --type-caption:     0.75rem;

  /* ─── LETTER SPACING ─── */
  --tracking-display: -0.02em;
  --tracking-headline: -0.01em;
  --tracking-caps:    0.12em;
  --tracking-body:    0;

  /* ─── LINE HEIGHT ─── */
  --leading-display:  0.9;
  --leading-headline: 1.15;
  --leading-body:     1.65;
  --leading-tight:    1.25;

  /* ─── ESPAÇAMENTO ─── */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --section-padding-y: clamp(var(--space-8), 10vw, var(--space-16));
  --section-padding-x: clamp(var(--space-3), 5vw, var(--space-8));
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--type-body-lg);
  line-height: var(--leading-body);
  color: var(--text-primary);
  background: var(--bg-void);
  overflow-x: hidden;
  position: relative;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

::selection {
  background: var(--gold-primary);
  color: var(--bg-void);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILS
   ═══════════════════════════════════════════════════════════════════════════ */

.container-editorial {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  position: relative;
  z-index: 1;
}

.center-text { text-align: center; }

.text-gold        { color: var(--gold-primary); }
.text-gold-strong { color: var(--gold-light); font-weight: 700; }

/* Eyebrow padrão (label de seção) */
.section-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-3);
}

.eyebrow-danger { color: var(--danger-primary); }

/* Headlines de seção (DM Serif Display) */
.section-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--type-h1);
  letter-spacing: var(--tracking-headline);
  line-height: var(--leading-headline);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-weight: 400;
}

.section-headline em {
  font-style: italic;
  color: var(--gold-primary);
}

.section-headline-large {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: var(--tracking-headline);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  font-weight: 400;
}

.section-headline-large em {
  font-style: italic;
  color: var(--gold-primary);
}

/* Grain texture overlay */
[data-grain]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Light leaks decorativos */
.light-leak {
  position: absolute;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-primary), var(--gold-light));
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px var(--gold-glow), 0 0 2px var(--gold-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATOS GERAL
   ═══════════════════════════════════════════════════════════════════════════ */

.ato {
  position: relative;
  padding: var(--section-padding-y) 0;
  overflow: hidden;
  isolation: isolate;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 1 — HERO
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg-void);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--section-padding-x);
  position: relative;
  overflow: hidden;
}

.hero-topbar {
  position: absolute;
  top: var(--space-4);
  left: var(--section-padding-x);
  right: var(--section-padding-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-secondary);
  z-index: 2;
}

.brand-mark {
  color: var(--gold-primary);
  letter-spacing: 0.2em;
}

.hero-line-deco {
  position: absolute;
  top: 20%;
  left: var(--section-padding-x);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-primary) 50%, transparent 100%);
  transform-origin: top center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.hero-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: var(--type-display-xl);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--gold-primary);
  margin: var(--space-3) 0 var(--space-4);
  text-shadow: 0 0 80px rgba(201,168,76,0.3);
  font-weight: 400;
}

.hero-name-line {
  display: inline-block;
}

.hero-sub {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: var(--space-4);
  font-weight: 400;
}

.hero-sub em {
  color: var(--gold-light);
}

.hero-body {
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  max-width: 640px;
  margin-bottom: var(--space-6);
}

.hero-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

/* ─── CTA Primário Hero ─── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.875rem 2rem;
  background: var(--gradient-cta);
  color: var(--bg-void);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: -0.005em;
  border-radius: 4px;
  box-shadow: var(--shadow-cta);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.cta-primary:hover {
  box-shadow: var(--shadow-cta-hover);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}

.cta-primary:hover::before {
  left: 140%;
}

/* CTA fantasma */
.cta-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-default);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.cta-ghost:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.5); opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 2 — A DOR (fundo claro · pattern interrupt editorial)
   ═══════════════════════════════════════════════════════════════════════════ */

.ato2 {
  background: var(--bg-light);
  color: var(--text-inverse);
  padding: var(--section-padding-y) 0;
}

.ato2 .section-eyebrow {
  color: var(--danger-primary);
}

.ato2 .section-headline {
  color: var(--text-inverse);
}

.ato2 .section-headline em {
  color: var(--danger-primary);
}

.ato2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (min-width: 900px) {
  .ato2-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.ato2-text p {
  margin-bottom: var(--space-3);
  color: var(--text-inverse);
}

.ato2-text .lead-pesado {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--danger-primary);
  margin-bottom: var(--space-4);
}

.ato2-text .silencio {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-inverse);
  margin: var(--space-3) 0;
}

.ato2-text .italico-suave em {
  color: #4A4640;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
}

.lista-dor {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.lista-dor li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(229,62,62,0.04);
  border-left: 2px solid var(--danger-primary);
  border-radius: 2px;
  color: var(--text-inverse);
  line-height: 1.5;
}

.lista-dor strong {
  color: var(--danger-dark);
  font-weight: 700;
}

.dor-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--danger-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.ato2-bridge {
  border-top: 1px solid rgba(5,5,7,0.1);
  padding-top: var(--space-6);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ato2-bridge p {
  margin-bottom: var(--space-3);
  font-size: var(--type-body-lg);
  color: var(--text-inverse);
}

.ato2-bridge .ponte-forte {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--gold-muted);
  margin: var(--space-4) 0;
}

.ato2-bridge .afirmacao-final {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--text-inverse);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 3 — QUEM SOU EU
   ═══════════════════════════════════════════════════════════════════════════ */

.ato3 {
  background: var(--bg-void);
}

/* ─── Split foto + texto ─── */
.ato3-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

@media (min-width: 900px) {
  .ato3-split {
    grid-template-columns: 360px 1fr;
    gap: var(--space-8);
    align-items: start;
  }
}

.ato3-foto-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 40px var(--gold-glow-lg);
  background: var(--bg-card);
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

.ato3-foto {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.ato3-foto-legend {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-3);
  background: linear-gradient(to bottom, rgba(5,5,7,0.7) 0%, rgba(5,5,7,0.95) 100%);
  border-top: 1px solid var(--border-gold);
}

.ato3-foto-nome {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  color: var(--gold-primary);
  font-style: italic;
}

.ato3-foto-cargo {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  color: var(--text-secondary);
  font-weight: 500;
}

.ato3-foto-social {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  margin-top: 4px;
}

.ato3-body {
  max-width: 720px;
  margin-bottom: 0;
}

.ato3-body p {
  font-size: var(--type-body-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: var(--leading-body);
}

.ato3-body p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.ato3-body .frase-marcante {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold-primary);
  margin-top: var(--space-4);
  text-align: center;
}

.provas-wrap {
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  position: relative;
}

.provas-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.provas-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.provas-lista li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  color: var(--text-primary);
  font-size: var(--type-body);
  line-height: 1.55;
}

.provas-lista strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.prova-bullet {
  flex-shrink: 0;
  color: var(--gold-primary);
  font-size: 0.875rem;
  margin-top: 6px;
}

.fechamento-ato3 {
  max-width: 720px;
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  text-align: center;
  line-height: var(--leading-body);
}

.fechamento-ato3 strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 4 — MÓDULOS
   ═══════════════════════════════════════════════════════════════════════════ */

.ato4 {
  background: var(--bg-deep);
}

.ato4-intro {
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto var(--space-8);
  text-align: center;
  line-height: var(--leading-body);
}

.ato4-intro strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.grupo-modulos {
  margin-bottom: var(--space-8);
}

.grupo-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-4);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 700px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── CARD MÓDULO ─── */
.card-modulo {
  position: relative;
  padding: var(--space-4);
  background: var(--gradient-card);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.card-modulo:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card-hover);
}

.card-modulo::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 80px;
  background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-modulo:hover::before {
  opacity: 1;
}

/* Cards PAGOS — borda dourada */
.card-pago {
  border-color: var(--border-gold);
}

/* Cards INCLUSOS — visual secundário */
.card-incluso {
  background: rgba(10,10,15,0.85);
  border-color: rgba(56,161,105,0.15);
}

.card-incluso:hover {
  border-color: rgba(56,161,105,0.4);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.8),
    0 0 0 1px rgba(56,161,105,0.4),
    0 0 32px var(--success-glow);
}

.card-incluso::before {
  background: radial-gradient(ellipse, var(--success-glow) 0%, transparent 70%);
}

.card-badge {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  padding: 4px 10px;
  background: var(--success-primary);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 8px;
  margin-bottom: var(--space-1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-incluso .card-icon-wrap {
  background: rgba(56,161,105,0.08);
}

.card-modulo:hover .card-icon-wrap {
  transform: translateY(-3px);
}

.card-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
}

.card-incluso .card-icon {
  color: var(--success-light);
}

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.card-pitch {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  color: var(--gold-primary);
  line-height: 1.35;
}

.card-incluso .card-pitch {
  color: var(--success-light);
}

.card-desc {
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: var(--leading-body);
}

.card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-1);
  padding-top: var(--space-2);
  border-top: 1px solid var(--border-default);
}

.card-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: var(--type-small);
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--gold-primary);
}

.card-incluso .card-bullets li::before {
  background: var(--success-primary);
}

.card-disclaimer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px dashed rgba(242,237,228,0.06);
  font-style: italic;
}

/* ─── DIVISOR ENTRE GRUPOS ─── */
.divisor-modulos {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-8) 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.divisor-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.divisor-texto {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-primary);
  white-space: nowrap;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 5 — ANTES VS DEPOIS
   ═══════════════════════════════════════════════════════════════════════════ */

.ato5 {
  background: var(--bg-void);
}

.ato5-intro {
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.comparativo-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .comparativo-wrap {
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-3);
    align-items: stretch;
  }
}

.comp-col {
  padding: var(--space-4);
  border-radius: 6px;
  border: 1px solid var(--border-default);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.comp-antes {
  background: rgba(229,62,62,0.04);
  border-color: rgba(229,62,62,0.15);
}

.comp-depois {
  background: rgba(56,161,105,0.04);
  border-color: rgba(56,161,105,0.20);
}

.comp-label {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border-default);
}

.comp-label-danger { color: var(--danger-primary); }
.comp-label-success { color: var(--success-light); }

.comp-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.comp-lista li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--type-body);
  line-height: 1.5;
  color: var(--text-primary);
}

.comp-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 2px;
}

.comp-icon-danger {
  background: var(--danger-primary);
  color: #fff;
}

.comp-icon-success {
  background: var(--success-primary);
  color: #fff;
}

/* Diamond Divider */
.diamond-divider {
  width: 56px;
  height: 56px;
  background: var(--bg-void);
  border: 1px solid var(--gold-primary);
  align-self: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  position: relative;
  box-shadow: 0 0 32px var(--gold-glow);
}

.diamond-divider span {
  transform: rotate(-45deg);
  color: var(--gold-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

@media (max-width: 899px) {
  .diamond-divider {
    margin: var(--space-2) auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 6 — INVESTIMENTO
   ═══════════════════════════════════════════════════════════════════════════ */

.ato6 {
  background: var(--bg-deep);
}

.preco-block {
  margin: var(--space-8) auto var(--space-4);
  text-align: center;
}

.preco-wrap {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  color: var(--gold-primary);
}

.preco-prefix {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-top: 0.5rem;
}

.preco-numero {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: var(--type-display-lg);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  text-shadow: 0 0 80px rgba(201,168,76,0.45);
}

.preco-suffix {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: var(--space-3);
}

.preco-suffix-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-secondary);
}

.preco-suffix-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Ancoragem R$ 10,96 / dia */
.preco-ancoragem {
  margin: var(--space-6) auto;
  display: flex;
  justify-content: center;
}

.ancora-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-3) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
}

.ancora-label {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}

.ancora-valor {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-primary);
}

.ancora-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  color: var(--text-secondary);
}

/* Comparação Mercado */
.comparacao-mercado {
  max-width: 720px;
  margin: var(--space-8) auto;
  padding: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  text-align: left;
}

.comp-mercado-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
  text-align: center;
}

.comp-mercado-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comp-mercado-lista li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(242,237,228,0.05);
  gap: var(--space-2);
  flex-wrap: wrap;
}

.comp-mercado-lista li span {
  color: var(--text-secondary);
  font-size: var(--type-small);
}

.comp-mercado-lista li strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--type-small);
  white-space: nowrap;
}

.comp-mercado-total {
  border-top: 1px solid var(--gold-primary) !important;
  border-bottom: none !important;
  padding-top: var(--space-2) !important;
  margin-top: var(--space-1);
}

.comp-mercado-total span,
.comp-mercado-total strong {
  font-size: var(--type-body) !important;
  color: var(--gold-primary) !important;
  font-weight: 700 !important;
}

.comp-mercado-conclusao {
  margin-top: var(--space-3);
  text-align: center;
  font-size: var(--type-body);
  color: var(--text-primary);
}

.comp-mercado-conclusao strong {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Garantias */
.garantias-wrap {
  max-width: 880px;
  margin: var(--space-8) auto 0;
}

.garantias-titulo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: var(--type-h3);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: center;
  font-weight: 400;
  font-style: italic;
}

.garantia-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  margin-bottom: var(--space-2);
  transition: border-color 0.3s ease;
}

.garantia-card:hover {
  border-color: var(--border-gold);
}

.garantia-num {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--gold-primary);
  letter-spacing: var(--tracking-display);
}

.garantia-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-h3);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.garantia-body p {
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: var(--leading-body);
}

.garantia-fineprint {
  font-size: var(--type-caption) !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(242,237,228,0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ATO 7 — CTA FINAL
   ═══════════════════════════════════════════════════════════════════════════ */

.ato7 {
  background: var(--bg-void);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.ato7-corpo {
  max-width: 680px;
  margin: 0 auto var(--space-3);
  font-size: var(--type-body-lg);
  color: var(--text-secondary);
  line-height: var(--leading-body);
}

.ato7-corpo strong { color: var(--text-primary); font-weight: 600; }
.ato7-corpo em { color: var(--gold-primary); font-style: italic; }

.cta-final-wrap {
  margin: var(--space-8) auto;
  display: flex;
  justify-content: center;
}

/* ─── CTA Final WhatsApp ─── */
.cta-final {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--gradient-cta);
  color: var(--bg-void);
  border-radius: 6px;
  box-shadow: var(--shadow-cta);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  min-height: 64px;
  will-change: transform;
  text-align: left;
}

.cta-final:hover {
  box-shadow: var(--shadow-cta-hover);
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.cta-final:hover::before {
  left: 140%;
}

.cta-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  fill: var(--bg-void);
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-line-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cta-line-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}

.ato7-disclaimer {
  max-width: 640px;
  margin: var(--space-6) auto 0;
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: var(--leading-body);
}

.ato7-disclaimer strong {
  color: var(--text-primary);
}

/* Contatos alternativos */
.contatos-alt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-default);
}

.contato-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.contato-link:hover {
  color: var(--gold-primary);
}

.contato-icon {
  color: var(--gold-primary);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER ASSINATURA
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-assinatura {
  background: var(--bg-deep);
  padding: var(--section-padding-y) 0 var(--space-6);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-default);
}

.footer-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.footer-frase-1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.footer-frase-1 em {
  font-style: italic;
  color: var(--gold-primary);
}

.footer-corpo {
  font-size: var(--type-body);
  color: var(--text-secondary);
  line-height: var(--leading-body);
  margin-bottom: var(--space-2);
}

.footer-frase-final {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--gold-primary);
  margin: var(--space-4) 0;
}

.assinatura-bloco {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-gold);
}

.assinatura-nome {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--gold-primary);
}

.assinatura-cargo {
  font-size: var(--type-small);
  color: var(--text-secondary);
}

.assinatura-social {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-small);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  color: var(--gold-primary);
  margin-top: var(--space-2);
}

.footer-disclaimer {
  margin-top: var(--space-8);
  padding: var(--space-3) var(--space-4);
  background: rgba(5,5,7,0.5);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer p {
  font-size: var(--type-caption);
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
  text-align: justify;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
  font-style: normal;
}

.footer-meta {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-default);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--type-caption);
  color: var(--text-muted);
  text-align: center;
}

.footer-meta strong {
  color: var(--text-secondary);
}

.brand-mark-footer {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--type-caption);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
}

@media (min-width: 700px) {
  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACESSIBILIDADE — REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */

@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;
  }

  [data-reveal],
  [data-hero-fade],
  [data-stagger-item] {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-line {
    animation: none !important;
  }

  .light-leak {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATES JS (antes da animação carregar)
   ═══════════════════════════════════════════════════════════════════════════ */

.js-ready [data-reveal],
.js-ready [data-hero-fade],
.js-ready [data-stagger-item] {
  opacity: 0;
}
