/* ============================================================
   OPTOCREATIVE — ARQUITETO DE IA
   Landing Page Stylesheet — Tema Preto / Laranja
   ============================================================ */

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

:root {
  /* Cores principais */
  --bg:            #080808;
  --bg2:           #0c0c0c;
  --bg3:           #111111;
  --bg-card:       #141414;
  --bg-card2:      #1a1a1a;

  --orange:        #ff6a00;
  --orange-light:  #ff8c38;
  --orange-dim:    #c45200;
  --orange-glow:   rgba(255,106,0,.40);
  --orange-glow2:  rgba(255,106,0,.15);

  --white:         #ffffff;
  --text:          #e8e8e8;
  --text-muted:    #888888;
  --text-dim:      #555555;

  --border:        rgba(255,106,0,.12);
  --border-bright: rgba(255,106,0,.35);
  --border-subtle: rgba(255,255,255,.07);

  --green:         #22c55e;
  --red:           #ff3b3b;

  --font-body: 'Inter', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;

  --radius-sm:  6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TYPOGRAPHY HELPERS ── */
.text-orange   { color: var(--orange); }
.text-orange-l { color: var(--orange-light); }
.text-red      { color: var(--red); }
.text-green    { color: var(--green); }
.text-muted    { color: var(--text-muted); }
.text-strike   { text-decoration: line-through; opacity: .55; }
.text-big      { font-size: 1.35em; }

/* accent agora é laranja */
.text-accent   { color: var(--orange-light); }
.text-highlight {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold     { color: var(--orange-light); }

/* ── BADGES ── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-red    { background: rgba(255,59,59,.12); color: #ff6060; border: 1px solid rgba(255,59,59,.3); }
.badge-blue   { background: rgba(255,106,0,.10); color: var(--orange-light); border: 1px solid var(--border-bright); }
.badge-gold   { background: rgba(255,106,0,.10); color: var(--orange); border: 1px solid var(--border-bright); }
.badge-orange { background: rgba(255,106,0,.10); color: var(--orange); border: 1px solid var(--border-bright); }

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header-center { text-align: center; margin-bottom: 60px; }
.section-label {
  font-size: .78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-hero {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9020 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 20px 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px var(--orange-glow);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-hero:hover { box-shadow: 0 12px 60px rgba(255,106,0,.6); }

.btn-cta {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 22px 40px;
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.btn-cta-main {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9020 100%);
  color: #fff;
  box-shadow: 0 8px 40px var(--orange-glow);
}
.btn-cta-main:hover { box-shadow: 0 12px 60px rgba(255,106,0,.6); }

.btn-cta-closing {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9020 100%);
  color: #fff;
  box-shadow: 0 8px 40px var(--orange-glow);
  max-width: 640px;
  margin: 0 auto;
}
.btn-cta-closing:hover { box-shadow: 0 12px 60px rgba(255,106,0,.6); }

.btn-sticky {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9020 100%);
  color: #fff;
  padding: 12px 26px;
  font-size: .88rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Pulse animation — laranja */
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 8px 40px var(--orange-glow); }
  50%       { box-shadow: 0 8px 70px rgba(255,106,0,.65), 0 0 0 10px rgba(255,106,0,.07); }
}
.btn-pulse { animation: pulse-orange 2.6s ease-in-out infinite; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #130800, #0e0700, #130800);
  border-bottom: 1px solid rgba(255,106,0,.2);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .84rem;
  text-align: center;
  position: relative;
}
.announcement-bar strong { color: var(--orange-light); }
.announcement-icon { color: var(--orange); font-size: 1rem; }
.announcement-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.announcement-close:hover { color: var(--orange); }

/* ============================================================
   COUNTDOWN STRIP
   ============================================================ */
.countdown-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: .8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown-label i { color: var(--orange); }
.countdown-timer { display: flex; align-items: center; gap: 4px; }
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
  background: rgba(255,106,0,.08);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 5px 8px;
}
.countdown-unit span {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.countdown-unit small { font-size: .6rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; }
.countdown-sep { font-size: 1.3rem; font-weight: 800; color: var(--orange); opacity: .5; }
.countdown-seats { font-size: .8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.countdown-seats i { color: var(--orange); }
.countdown-seats strong { color: var(--orange); }

/* ============================================================
   HERO — BACKGROUND PHOTO + COPY OVERLAY
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #080808;
}

/* ── IMAGEM DE FUNDO ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.02);
}

/* ── OVERLAYS para legibilidade do texto ── */
/* Gradiente central horizontal: zona escura no centro para o texto */
.hero-overlay-center {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,.85) 0%,
    rgba(8,8,8,.7) 15%,
    rgba(8,8,8,.92) 35%,
    rgba(8,8,8,.92) 65%,
    rgba(8,8,8,.7) 85%,
    rgba(8,8,8,.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Vinheta geral — escurece bordas */
.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 120% at 50% 50%, transparent 55%, rgba(8,8,8,.55) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Partículas via JS */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: particle-float var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes particle-float {
  0%   { opacity: 0;   transform: translateY(0) scale(1); }
  20%  { opacity: .6; }
  80%  { opacity: .25; }
  100% { opacity: 0;   transform: translateY(-100px) scale(.4); }
}

/* ── CONTEÚDO PRINCIPAL ── */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 100px 40px 80px;
  text-align: center;
}

/* Zona superior: pré-título + headline */
.hero-top-zone {
  width: 100%;
  max-width: 920px;
  margin-bottom: auto;
}

/* Zona inferior: sub + seals + CTA + tagline */
.hero-bottom-zone {
  width: 100%;
  max-width: 920px;
  margin-top: auto;
}

/* Pré-título */
.hero-pre-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.5;
}
.hero-pre-strike {
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255,106,0,.4);
}

/* Headline */
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 22px;
}
/* Hierarquia tipográfica:
   SANGRANDO DINHEIRO  → MAIOR (destaque máximo)
   AS EMPRESAS ESTÃO   → médio-grande (branco)
   ARQUITETOS DE IA.   → médio + borda laranja
   IMPLORANDO POR      → menor (introdução)
*/
.hero-line-white {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: .02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.hero-line-white.hero-line-sm {
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 700;
  opacity: .85;
}
.hero-line-orange {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
  text-shadow:
    0 0 40px rgba(255,106,0,.7),
    0 0 80px rgba(255,106,0,.3),
    0 2px 20px rgba(0,0,0,.6);
}
.hero-line-orange.hero-line-architeto {
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
  letter-spacing: .02em;
}
.hero-line-border {
  display: inline-block;
  border: 2px solid var(--orange);
  padding: 5px 20px 5px 10px;
  margin-top: 6px;
  box-shadow: 0 0 20px rgba(255,106,0,.3), inset 0 0 20px rgba(255,106,0,.04);
  background: rgba(255,106,0,.04);
}

/* Sub-headline */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,.7);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub u {
  color: var(--orange-light);
  text-decoration-color: var(--orange);
}
.hero-sub strong { color: rgba(255,255,255,.9); }
.hero-sub-orange { color: var(--orange); font-weight: 700; }

/* Selos */
.hero-seals {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid rgba(255,106,0,.22);
  border-radius: var(--radius-md);
  background: rgba(8,8,8,.72);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-seal {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-right: 1px solid rgba(255,106,0,.15);
}
.hero-seal:last-child { border-right: none; }
.hero-seal-icon { font-size: 1.2rem; color: var(--orange); flex-shrink: 0; }
.hero-seal-text { display: flex; flex-direction: column; gap: 2px; }
.hero-seal-text strong {
  font-size: .68rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.2;
}
.hero-seal-text span {
  font-size: .6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
}

/* CTA block dentro do hero */
.hero-cta-block {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-micro {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.hero-micro strong { color: rgba(255,255,255,.65); }

/* Tagline */
.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 18px;
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  padding-top: 16px;
  border-top: 1px solid rgba(255,106,0,.18);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-tagline-orange { color: var(--orange); }

/* ── CARDS DE MÉTRICAS (escondidos no layout centralizado) ── */
.hero-metrics-overlay {
  display: none;
}

.hero-metric {
  background: rgba(8,8,8,.85);
  border: 1px solid rgba(255,106,0,.35);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.5), 0 0 0 1px rgba(255,106,0,.06);
  min-width: 150px;
  animation: metric-float 4s ease-in-out infinite;
}
.hero-metric:nth-child(1) { animation-delay: 0s; }
.hero-metric:nth-child(2) { animation-delay: 1.2s; }
.hero-metric:nth-child(3) { animation-delay: 2.1s; }

@keyframes metric-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.hero-metric-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.hero-metric-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2px;
  text-shadow: 0 0 16px rgba(255,106,0,.55);
}
.hero-metric-value--neg { color: var(--orange-light); }
.hero-metric-desc {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.hero-metric-chart { height: 32px; width: 100%; }
.hero-metric-chart svg { width: 100%; height: 100%; }
.hero-metric-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-top: 4px;
}
.hero-metric-bars span {
  flex: 1;
  background: linear-gradient(to top, var(--orange), var(--orange-light));
  border-radius: 2px 2px 0 0;
  opacity: .85;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-body { max-width: 860px; margin: 0 auto; }

.lead-text {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 40px;
}
.lead-text-secondary {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.emphasis-line {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--orange-light) !important;
  margin-top: 24px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  font-size: .93rem;
  color: var(--text-muted);
  transition: border-color .3s;
}
.problem-card:hover { border-color: var(--border-bright); }
.problem-card-center {
  background: rgba(255,106,0,.05);
  border-color: rgba(255,106,0,.2);
}
.problem-card-center strong { color: var(--orange); }
.problem-card-icon { font-size: 1.6rem; margin-bottom: 12px; color: var(--orange); }
.problem-card-icon--red { color: var(--red); }

.problem-conclusion {
  text-align: center;
  padding: 40px 32px;
  background: rgba(255,106,0,.04);
  border: 1px solid rgba(255,106,0,.18);
  border-radius: var(--radius-lg);
}
.problem-conclusion p { margin-bottom: 16px; }
.problem-conclusion p:last-child { margin-bottom: 0; }

/* ============================================================
   DIFFERENTIALS
   ============================================================ */
.differentials-section {
  padding: 100px 0;
  background: var(--bg);
}
.diff-header { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity .3s;
}
.pillar-card:hover { transform: translateY(-5px); border-color: var(--border-bright); box-shadow: 0 8px 40px rgba(255,106,0,.1); }
.pillar-card:hover::before { opacity: 1; }

.pillar-card--featured {
  background: linear-gradient(145deg, #130b00, #1a1000);
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 4px 40px rgba(255,106,0,.12);
}
.pillar-card--featured::before { opacity: 1; }
.pillar-card--featured:hover { box-shadow: 0 8px 60px rgba(255,106,0,.25); }

.pillar-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .06em;
}
.pillar-icon { font-size: 2.2rem; margin-bottom: 18px; }
.pillar-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.pillar-card h3 small { display: block; font-size: .8rem; color: var(--text-muted); font-weight: 400; margin-top: 3px; }
.pillar-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.pillar-tag {
  display: inline-block;
  background: rgba(255,106,0,.1);
  border: 1px solid rgba(255,106,0,.25);
  color: var(--orange-light);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.weeks-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.weeks-timeline::before {
  content: '';
  position: absolute;
  left: 62px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  opacity: .3;
}
.week-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.week-card:last-child { border-bottom: none; }
.week-card::before {
  content: '';
  position: absolute;
  left: 55px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg2);
  box-shadow: 0 0 0 3px rgba(255,106,0,.25);
  z-index: 1;
}
.week-card--gold::before { box-shadow: 0 0 0 3px rgba(255,106,0,.4), 0 0 12px rgba(255,106,0,.4); }

.week-number { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 4px; }
.week-number span { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); }
.week-number strong { font-family: var(--font-head); font-size: 3rem; font-weight: 900; color: rgba(255,106,0,.2); line-height: 1; }
.week-number--gold strong { color: rgba(255,106,0,.35); }

.week-content h3 { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.week-content p { font-size: .93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.week-content p strong { color: var(--text); }

.week-skills { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.week-skills li {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,106,0,.06);
  border: 1px solid rgba(255,106,0,.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .77rem;
  color: var(--text-muted);
}
.week-skills li i { color: var(--orange); font-size: .7rem; }

/* ============================================================
   CERTIFICATION
   ============================================================ */
.certification-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}
.cert-text .section-title { margin-bottom: 20px; }
.cert-text .lead-text { margin-bottom: 20px; }
.cert-text p { font-size: .93rem; color: var(--text-muted); margin-bottom: 20px; }

.cert-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cert-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--text-muted); }
.cert-list li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.cert-card { perspective: 1000px; }
.cert-card-inner {
  background: linear-gradient(145deg, #150a00, #0f0700);
  border: 1px solid rgba(255,106,0,.4);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: 0 8px 60px rgba(255,106,0,.15), inset 0 1px 0 rgba(255,255,255,.04);
  transform: rotateY(-5deg) rotateX(3deg);
  transition: transform .4s;
}
.cert-card:hover .cert-card-inner { transform: rotateY(0) rotateX(0); }

.cert-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.cert-logo { font-family: var(--font-head); font-weight: 900; font-size: 1rem; letter-spacing: .15em; color: var(--orange); }
.cert-seal { font-size: 2rem; color: var(--orange); }

.cert-card-body { margin-bottom: 28px; }
.cert-card-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: 8px; }
.cert-card-name { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: var(--white); }
.cert-card-sub { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }
.cert-card-footer { display: flex; gap: 6px; color: var(--orange); font-size: 1rem; }

.talent-portal {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,106,0,.05);
  border: 1px solid rgba(255,106,0,.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.talent-portal-icon { font-size: 2.8rem; color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.talent-portal-text h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.talent-portal-text p { font-size: .93rem; color: var(--text-muted); line-height: 1.75; }
.talent-portal-text strong { color: var(--text); }

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  opacity: 0;
  transition: opacity .3s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: var(--border-bright); box-shadow: 0 8px 32px rgba(255,106,0,.1); }
.bonus-card:hover::before { opacity: 1; }

.bonus-card--special {
  background: linear-gradient(145deg, #150a00, #1a0d00);
  border-color: rgba(255,106,0,.3);
}
.bonus-card--special::before { opacity: 1; }
.bonus-card--special:hover { box-shadow: 0 8px 40px rgba(255,106,0,.18); }

.bonus-tag { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 12px; }
.bonus-tag--special { color: var(--orange); }
.bonus-icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-card h4 { font-family: var(--font-head); font-size: .97rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.bonus-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.math-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 840px;
  margin: 0 auto 56px;
}
.math-card { border-radius: var(--radius-lg); padding: 36px 28px; border: 1px solid var(--border-subtle); }
.math-card--bad { background: rgba(255,255,255,.02); opacity: .75; }
.math-card--good {
  background: linear-gradient(145deg, #130800, #0f0600);
  border-color: rgba(255,106,0,.35);
  box-shadow: 0 4px 48px rgba(255,106,0,.1);
}

.math-card-header { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: 20px; }
.math-card-header i { font-size: 1.2rem; }
.math-card--bad .math-card-header i  { color: var(--red); }
.math-card--good .math-card-header i { color: var(--orange); }

.math-crossed { margin-bottom: 8px; display: flex; flex-direction: column; gap: 4px; }
.math-original { font-size: .78rem; color: var(--text-dim); text-decoration: line-through; }
.math-badge-off { display: inline-block; background: rgba(255,106,0,.12); color: var(--orange); border-radius: 100px; padding: 2px 10px; font-size: .7rem; font-weight: 700; }

.math-price { font-family: var(--font-head); font-weight: 900; line-height: 1; margin-bottom: 4px; }
.math-price--bad  { font-size: 2rem; color: var(--red); margin-bottom: 20px; }
.math-price--good { font-size: 2.2rem; color: var(--orange); margin-bottom: 4px; }
.math-price-sub { font-size: .8rem; color: var(--text-dim); margin-bottom: 20px; }

.math-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.math-list li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-muted); }
.math-card--bad  .math-list li i { color: var(--red); }
.math-card--good .math-list li i { color: var(--orange); }

.math-vs { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: var(--text-dim); text-align: center; }

/* CTA BOX */
.cta-box {
  background: linear-gradient(145deg, #120800, #0c0500);
  border: 1px solid rgba(255,106,0,.35);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 8px 64px rgba(255,106,0,.1);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255,106,0,.08), transparent 70%);
  pointer-events: none;
}
.cta-box-top { margin-bottom: 16px; }
.cta-seats-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,106,0,.1);
  border: 1px solid rgba(255,106,0,.3);
  color: var(--orange);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 700;
}
.cta-box-title { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 28px; color: var(--white); }

.cta-price-block { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.cta-price-main { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; color: var(--orange); line-height: 1; text-shadow: 0 0 30px rgba(255,106,0,.4); }
.cta-price-main strong { font-size: 3.2rem; }
.cta-divider { font-size: .9rem; color: var(--text-dim); font-weight: 600; }
.cta-cash { font-family: var(--font-head); font-size: 1.4rem; color: var(--text-muted); }
.cta-cash strong { color: var(--text); }

.cta-includes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-bottom: 32px; text-align: left; }
.cta-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-muted); }
.cta-item i { color: var(--orange); flex-shrink: 0; }

.cta-security-row { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; font-size: .78rem; color: var(--text-dim); }
.cta-security-row i { margin-right: 4px; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.guarantees-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }

.guarantee-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; }
.guarantee-card--featured {
  background: linear-gradient(145deg, #150a00, #120800);
  border-color: rgba(255,106,0,.3);
  box-shadow: 0 4px 48px rgba(255,106,0,.1);
}
.guarantee-badge {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  width: 80px; height: 80px;
  background: rgba(255,106,0,.1);
  border: 2px solid rgba(255,106,0,.3);
  border-radius: 50%;
  margin: 0 auto 24px;
  justify-content: center;
  color: var(--orange);
}
.guarantee-badge i { font-size: 1.4rem; }
.guarantee-badge span { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.guarantee-badge--gold { background: rgba(255,106,0,.12); border-color: rgba(255,106,0,.4); }

.guarantee-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.guarantee-card p { font-size: .91rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.guarantee-highlight { font-size: 1.04rem !important; color: var(--orange) !important; }
.guarantee-note { font-size: .78rem !important; color: var(--text-dim) !important; font-style: italic; }

/* ============================================================
   CLOSING
   ============================================================ */
.closing-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255,106,0,.1), transparent 70%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.closing-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 20px; color: var(--white); }
.closing-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.75; }
.closing-text strong { color: var(--text); }
.closing-question { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 40px; }
.closing-micro { margin-top: 20px; font-size: .8rem; color: var(--text-dim); }
.closing-micro strong { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner { text-align: center; }
.footer-brand { font-weight: 600; margin-bottom: 12px; color: var(--text-muted); font-size: .88rem; }
.footer-brand strong { color: var(--orange); }
.footer-disclaimer { font-size: .73rem; color: var(--text-dim); max-width: 680px; margin: 0 auto 20px; line-height: 1.65; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; color: var(--text-dim); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,106,0,.2);
  padding: 14px 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sticky-cta-text { display: flex; flex-direction: column; gap: 2px; }
.sticky-cta-text strong { font-size: .95rem; color: var(--white); }
.sticky-cta-text span { font-size: .76rem; color: var(--text-muted); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   READING PROGRESS BAR (injetado via JS)
   ============================================================ */
#reading-progress { background: linear-gradient(90deg, var(--orange), var(--orange-light)) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ── TABLET ── */
@media (max-width: 1024px) {
  .hero-content { padding: 80px 0 20px 36px; max-width: 540px; }
  .hero-cta-block { padding-left: 36px; }
  .hero-metrics-overlay { right: 20px; bottom: 40px; }
  .hero-overlay-left {
    background: linear-gradient(
      100deg,
      rgba(8,8,8,.97) 0%,
      rgba(8,8,8,.94) 35%,
      rgba(8,8,8,.78) 55%,
      rgba(8,8,8,.25) 70%,
      transparent 82%
    );
  }
  .pillars-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-card-inner { transform: none; }
}

/* ── MOBILE GRANDE ── */
@media (max-width: 900px) {
  .hero-content { padding: 70px 24px 16px 24px; max-width: 100%; }
  .hero-cta-block { padding-left: 24px; align-items: center; }
  .hero-seals { max-width: 100%; }
  .hero-metrics-overlay { display: none; } /* esconde em mobile para não sobrepor */
  .hero-overlay-left {
    background: linear-gradient(
      180deg,
      rgba(8,8,8,.55) 0%,
      rgba(8,8,8,.82) 40%,
      rgba(8,8,8,.97) 70%,
      rgba(8,8,8,.99) 100%
    );
  }
  .hero-overlay-bottom { height: 60%; }
  .hero-bg-img { background-position: top center; }
  .hero-headline { align-items: center; text-align: center; }
  .hero-line-border { text-align: center; }
  .hero-sub { text-align: center; }
  .hero-tagline { justify-content: center; }
  .hero-pre-title { text-align: center; }
  .problem-cards { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .math-comparison { grid-template-columns: 1fr; }
  .math-vs { display: none; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .talent-portal { flex-direction: column; }
}

/* ── MOBILE PEQUENO ── */
@media (max-width: 700px) {
  .hero-seals { flex-direction: column; }
  .hero-seal { border-right: none; border-bottom: 1px solid rgba(255,106,0,.15); }
  .hero-seal:last-child { border-bottom: none; }
  .hero-tagline { gap: 8px 14px; }
  .hero-line-white { font-size: 1.5rem; }
  .hero-line-orange { font-size: 1.85rem; }
  .week-card { grid-template-columns: 60px 1fr; gap: 16px; }
  .weeks-timeline::before { left: 22px; }
  .week-card::before { left: 15px; }
  .week-number strong { font-size: 2rem; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 20px; }
  .cta-price-main { font-size: 2rem; }
  .cta-price-main strong { font-size: 2.4rem; }
  .cta-includes { grid-template-columns: 1fr; }
  .sticky-cta-inner { justify-content: center; }
  .sticky-cta-text { text-align: center; }
  .announcement-close { display: none; }
}

/* ============================================================
   LEAD MODAL — FORMULÁRIO PRÉ-PAGAMENTO
   ============================================================ */
.lead-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal-overlay.open {
  display: flex;
  animation: modal-fade-in .25s ease forwards;
}
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lead-modal {
  background: linear-gradient(145deg, #120800, #0d0500);
  border: 1px solid rgba(255,106,0,.4);
  border-radius: var(--radius-xl);
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,106,0,.1);
  animation: modal-slide-up .3s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes modal-slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.lead-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.lead-modal-close:hover { color: var(--orange); }

.lead-modal-header {
  text-align: center;
  margin-bottom: 32px;
}
.lead-modal-icon {
  width: 56px; height: 56px;
  background: rgba(255,106,0,.12);
  border: 2px solid rgba(255,106,0,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 auto 16px;
}
.lead-modal-header h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.lead-modal-header p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Campos do formulário */
.lead-form { display: flex; flex-direction: column; gap: 16px; }

.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lead-field label i { color: var(--orange); font-size: .85rem; }
.lead-field input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,106,0,.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--white);
  font-size: .97rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.lead-field input::placeholder { color: var(--text-dim); }
.lead-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.12);
}

/* Linha de telefone com seletor de país */
.lead-phone-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.lead-country-select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,106,0,.2);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  color: var(--white);
  font-size: .9rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 140px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ff6a00' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}
.lead-country-select option {
  background: #1a0d00;
  color: var(--white);
}
.lead-country-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.12);
}
.lead-phone-row input {
  flex: 1;
}

.lead-submit { margin-top: 8px; font-size: 1rem; padding: 18px 32px; }

.lead-privacy {
  text-align: center;
  font-size: .76rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.lead-privacy i { color: var(--orange); }

/* ── MOBILE MUITO PEQUENO ── */
@media (max-width: 480px) {
  .btn-hero { font-size: .92rem; padding: 16px 22px; }
  .cta-price-block { flex-direction: column; gap: 8px; }
  .cta-security-row { gap: 12px; }
  .hero-content { padding-top: 60px; }
  .lead-modal { padding: 36px 24px 28px; }
  .lead-modal-header h2 { font-size: 1.25rem; }
}
