:root {
  --void: #0A0A0A;
  --surface: #111111;
  --surface2: #181818;
  --surface3: #1E1E1E;
  --ignite: #FF4D2E;
  --ignite-dim: rgba(255,77,46,0.1);
  --ignite-border: rgba(255,77,46,0.3);
  --white: #FFFFFF;
  --w80: rgba(255,255,255,0.80);
  --w60: rgba(255,255,255,0.60);
  --w30: rgba(255,255,255,0.30);
  --w12: rgba(255,255,255,0.12);
  --w06: rgba(255,255,255,0.06);
  --w03: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CURSOR ─────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--ignite);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,77,46,0.35);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.1s ease;
}

/* ─── GRAIN OVERLAY ──────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 900;
  opacity: 0.7;
}

/* ─── NAV ────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.logo em { color: var(--ignite); font-style: normal; }
.nav-right { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--w60); text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }
.nav-btn {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--ignite);
  padding: 9px 20px; border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
  border: none; cursor: none;
}
.nav-btn:hover { opacity: 0.85; }

/* ─── HERO ───────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 48px 88px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 35%, rgba(255,77,46,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(255,77,46,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4; pointer-events: none;
}
.hero-grid::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, var(--void) 100%);
}
.hero-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ignite); margin-bottom: 18px;
  opacity: 0; transform: translateY(16px);
  animation: up 0.7s ease forwards 0.4s;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 11.5vw, 152px);
  line-height: 0.88; letter-spacing: 0.01em;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(40px);
  animation: up 1s cubic-bezier(0.16,1,0.3,1) forwards 0.6s;
}
.hero-h1 em { color: var(--ignite); font-style: normal; }
.hero-h1 .dim { color: var(--w30); }
.hero-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px;
  opacity: 0; animation: up 0.7s ease forwards 1s;
}
.hero-desc { font-size: 15px; line-height: 1.75; color: var(--w60); max-width: 400px; }
.hero-desc strong { color: var(--white); font-weight: 400; }
.hero-btns { display: flex; gap: 12px; flex-shrink: 0; }

.btn-fire {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ignite); color: var(--white);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 2px;
  text-decoration: none; border: none; cursor: none;
  transition: opacity 0.2s;
}
.btn-fire:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--w60);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 2px;
  border: 1px solid var(--w30);
  text-decoration: none; cursor: none;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--w60); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: up 0.6s ease forwards 1.3s;
}
.scroll-hint span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--w30); }
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--w30), transparent);
  animation: pulse 2s ease infinite;
}

/* ─── MARQUEE ────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface2);
}
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--w30); padding: 0 36px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 36px;
}
.marquee-item::after { content: '◆'; color: var(--ignite); font-size: 6px; }

/* ─── STATS ──────────────────────────────── */
#stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.stat { padding: 48px 40px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 72px); line-height: 1; color: var(--white); }
.stat-n em { color: var(--ignite); font-style: normal; }
.stat-l { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w30); margin-top: 10px; line-height: 1.5; }

/* ─── SECTION COMMONS ────────────────────── */
.sec-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ignite); margin-bottom: 20px; }
.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5.5vw, 72px); line-height: 1.0; letter-spacing: 0.02em; }
.sec-title em { color: var(--ignite); font-style: normal; }

/* ─── ENTREGÁVEIS ────────────────────────── */
#entregaveis { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.entregaveis-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.entregaveis-desc { font-size: 14px; line-height: 1.8; color: var(--w60); padding-bottom: 4px; }

.entregaveis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.entregavel-card {
  background: var(--surface); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: background 0.3s; cursor: none;
}
.entregavel-card:hover { background: var(--surface3); }
.entregavel-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 2px; height: 0;
  background: var(--ignite); transition: height 0.4s ease;
}
.entregavel-card:hover::before { height: 100%; }

.ent-icon { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ignite); margin-bottom: 20px; }
.ent-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 12px; line-height: 1.1; }
.ent-desc { font-size: 12px; line-height: 1.75; color: var(--w60); }
.ent-check { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.ent-check span { font-size: 11px; color: var(--w60); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.ent-check span::before { content: '→'; color: var(--ignite); font-size: 10px; margin-top: 2px; flex-shrink: 0; }

/* ─── PACOTES ────────────────────────────── */
#pacotes { padding: 100px 48px; border-bottom: 1px solid var(--border); background: var(--surface); }
.pacotes-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.pacotes-note { font-size: 12px; color: var(--w30); max-width: 260px; text-align: right; line-height: 1.6; }

.pacotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pacote-card {
  background: var(--void); border: 1px solid var(--border);
  border-radius: 4px; padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color 0.3s; cursor: none;
}
.pacote-card:hover { border-color: var(--w30); }
.pacote-card.featured { border-color: var(--ignite); background: var(--surface3); }
.pacote-card.featured::before {
  content: 'Mais escolhido';
  position: absolute; top: 16px; right: 16px;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ignite); color: var(--white);
  padding: 4px 10px; border-radius: 2px;
}
.pkg-num { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; color: var(--w30); margin-bottom: 16px; }
.pkg-name { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 6px; line-height: 1; }
.pkg-price { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 0.02em; color: var(--white); line-height: 1; margin-bottom: 4px; }
.pkg-price em { color: var(--ignite); font-style: normal; }
.pkg-period { font-size: 11px; color: var(--w30); letter-spacing: 0.08em; margin-bottom: 28px; }
.pkg-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pkg-items { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pkg-item { font-size: 12px; color: var(--w60); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ignite); margin-top: 6px; flex-shrink: 0; }
.pkg-item.disabled { color: var(--w30); }
.pkg-item.disabled .dot { background: var(--w12); }
.pkg-cta { margin-top: 28px; display: block; text-align: center; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px; border-radius: 2px; text-decoration: none; transition: all 0.2s; }
.pkg-cta-fire { background: var(--ignite); color: var(--white); }
.pkg-cta-fire:hover { opacity: 0.85; }
.pkg-cta-outline { border: 1px solid var(--w30); color: var(--w60); }
.pkg-cta-outline:hover { border-color: var(--w60); color: var(--white); }
.pkg-setup { font-size: 10px; color: var(--w30); text-align: center; margin-top: 10px; letter-spacing: 0.06em; }

/* ─── PROCESSO ───────────────────────────── */
#processo { padding: 100px 48px; border-bottom: 1px solid var(--border); }
.processo-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.processo-left { position: sticky; top: 120px; }
.processo-p { font-size: 13px; line-height: 1.8; color: var(--w60); margin-top: 20px; max-width: 320px; }
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.step:last-child { border-bottom: none; }
.step-n { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--ignite); line-height: 1; opacity: 0.4; padding-top: 4px; }
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.04em; margin-bottom: 8px; color: var(--white); }
.step-desc { font-size: 12px; color: var(--w60); line-height: 1.75; }

/* ─── DIFERENCIAIS ───────────────────────── */
#diferenciais { padding: 100px 48px; background: var(--surface); border-bottom: 1px solid var(--border); }
.dif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); margin-top: 56px; border: 1px solid var(--border); }
.dif-item { padding: 40px 36px; background: var(--surface); display: flex; gap: 24px; align-items: flex-start; }
.dif-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--ignite); line-height: 1; opacity: 0.2; flex-shrink: 0; }
.dif-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; margin-bottom: 10px; }
.dif-text { font-size: 12px; color: var(--w60); line-height: 1.75; }

/* ─── CTA ────────────────────────────────── */
#cta { padding: 160px 48px; text-align: center; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,77,46,0.06) 0%, transparent 70%); pointer-events: none; }
.cta-hl { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 9vw, 120px); line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 36px; }
.cta-hl em { color: var(--ignite); font-style: normal; display: block; }
.cta-sub { font-size: 15px; color: var(--w60); max-width: 420px; margin: 0 auto 48px; line-height: 1.75; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────── */
footer { padding: 40px 48px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-logo em { color: var(--ignite); font-style: normal; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w30); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--w60); }
.footer-copy { font-size: 11px; color: var(--w30); }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes up { to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-right { gap: 16px; }
  .nav-link:not(.nav-btn) { display: none; }
  #hero { padding: 0 24px 72px; }
  .hero-row { flex-direction: column; align-items: flex-start; }
  #stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  #entregaveis { padding: 72px 24px; }
  .entregaveis-header { grid-template-columns: 1fr; gap: 20px; }
  .entregaveis-grid { grid-template-columns: 1fr; }
  #pacotes { padding: 72px 24px; }
  .pacotes-header { flex-direction: column; align-items: flex-start; }
  .pacotes-note { text-align: left; }
  .pacotes-grid { grid-template-columns: 1fr; }
  #processo { padding: 72px 24px; }
  .processo-inner { grid-template-columns: 1fr; gap: 40px; }
  .processo-left { position: static; }
  #diferenciais { padding: 72px 24px; }
  .dif-grid { grid-template-columns: 1fr; }
  #cta { padding: 100px 24px; }
  footer { padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; }
}