/* ============ TOKENS ============ */
:root{
  --bg: #0B0B0C;
  --bg-alt: #131315;
  --card: #17171A;
  --border: #2A2A2E;
  --text: #F5F5F5;
  --muted: #9A9AA2;
  --purple-1: #B98BFF;
  --purple-2: #6D28D9;
  --grad: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 14px;
  --wrap: 1120px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-display); font-weight:700; line-height:1.15; margin:0; }

.wrap{ width:100%; max-width: var(--wrap); margin:0 auto; padding: 0 24px; }

.eyebrow{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-1);
  font-weight: 700;
  margin: 0 0 12px 0;
}

.grad-text{
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  white-space: nowrap;
}
.btn:focus-visible{ outline: 2px solid var(--purple-1); outline-offset: 3px; }
.btn-primary{
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(109,40,217,0.6);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(109,40,217,0.75); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover{ border-color: var(--purple-1); color: var(--purple-1); }
.btn-lg{ padding: 15px 30px; font-size: 16px; }

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(11,11,12,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand{ display:flex; align-items:center; margin-right:auto; }
.brand-mark{ height: 46px; width: auto; border-radius: 8px; }
.footer-logo{ height: 54px; width: auto; border-radius: 8px; margin-bottom: 10px; }

.main-nav{ display:flex; gap: 28px; }
.main-nav a{
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s ease;
}
.main-nav a:hover{ color: var(--text); }

.header-cta{ padding: 10px 20px; font-size: 14px; }

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero{ padding: 90px 0 70px; overflow:hidden; }
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 48px;
}
.hero-copy{ max-width: 720px; }
.hero-sub{ margin-left:auto; margin-right:auto; }
.hero-actions{ justify-content:center; }
.hero-tags{ justify-content:center; }
.hero-copy h1{
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 22px;
}
.hero-sub{
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 28px; }
.hero-tags{ display:flex; gap:10px; flex-wrap:wrap; }
.tag{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--purple-1);
  border: 1px solid rgba(185,139,255,0.35);
  background: rgba(185,139,255,0.08);
  padding: 6px 14px;
  border-radius: 999px;
}


/* ============ FUNDO: LOGO WATERMARK + ESTRELAS ============ */
.bg-logo{
  position: fixed;
  inset: 0;
  z-index: -2;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  pointer-events:none;
  background: var(--bg);
}
.bg-logo img{
  width: min(65vw, 640px);
  opacity: 0.05;
  filter: grayscale(0.4);
  will-change: transform;
}
.stars-canvas{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ============ SECTIONS ============ */
.section{ padding: 90px 0; position: relative; }
.section-alt{ background: rgba(19,19,21,0.55); }
.section h2{ font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.section-sub{
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 44px;
  font-size: 16px;
}
.fine-print{ color: var(--muted); font-size: 13px; margin-top: 22px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.card h3{ font-size: 20px; margin-bottom: 10px; }
.card p{ color: var(--muted); font-size: 15px; margin: 0; }
.card-price{ margin-top: 20px; font-size: 15px; }
.card-price strong{ font-family: var(--font-display); font-size: 22px; display:block; margin-bottom:2px; }
.card-price span{ color: var(--muted); font-size: 13px; }

.card-featured{ border-color: var(--purple-1); box-shadow: 0 0 0 1px rgba(185,139,255,0.25), 0 20px 40px -20px rgba(109,40,217,0.5); }
.badge{
  position: absolute;
  top: -13px; left: 24px;
  background: var(--grad);
  color:#fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.price{ margin: 14px 0 20px; }
.price strong{ font-family: var(--font-display); font-size: 32px; }
.price span{ color: var(--muted); font-size: 14px; margin-left: 4px; }
.checklist li{
  font-size: 14px;
  color: #D6D6D9;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.checklist li::before{
  content: "";
  position:absolute;
  left:0; top:6px;
  width:9px; height:9px;
  border-radius: 50%;
  background: var(--grad);
}

.callout{
  margin-top: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple-1);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.callout p{ margin:0; color: #D6D6D9; font-size: 15px; }

/* ============ TABLE ============ */
.table-wrap{ overflow-x:auto; }
.combo-table{ width:100%; border-collapse: collapse; min-width: 640px; }
.combo-table th{
  text-align:left;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--purple-1);
  padding: 14px 16px;
  border-bottom: 2px solid var(--border);
}
.combo-table td{
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #D6D6D9;
  vertical-align: top;
}
.discount-pill{
  display:inline-block;
  background: var(--grad);
  color:#fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============ PROCESSO ============ */
.steps{ margin-top: 10px; }
.step-num{
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: #322244;
  display:block;
  margin-bottom: 6px;
}
.step h3{ font-size: 19px; margin-bottom: 8px; }
.step p{ color: var(--muted); font-size: 15px; margin:0; }

/* ============ CTA FINAL ============ */
.cta-final{
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.18), transparent 65%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-final-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; gap: 18px; }
.cta-final h2{ font-size: clamp(26px, 3.4vw, 38px); }
.cta-final p{ color: var(--muted); font-size: 16px; max-width: 460px; }

/* ============ FOOTER ============ */
.site-footer{ padding: 46px 0 100px; }
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.muted{ color: var(--muted); font-size: 14px; margin:0; }
.footer-contact{ display:flex; gap:24px; flex-wrap:wrap; }
.footer-contact a{ font-size: 14px; color: var(--text); }
.footer-contact a:hover{ color: var(--purple-1); }

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab{
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #0B0B0C;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5);
  transition: transform .15s ease, box-shadow .15s ease;
  animation: fab-pulse 2.6s ease-in-out infinite;
}
.whatsapp-fab svg{ width: 30px; height: 30px; }
.whatsapp-fab:hover{ transform: translateY(-3px) scale(1.04); }
.whatsapp-fab:focus-visible{ outline: 2px solid #fff; outline-offset: 3px; }

@keyframes fab-pulse{
  0%, 100% { box-shadow: 0 10px 26px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 26px -6px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-fab{ animation: none; }
}
@media (max-width: 720px){
  .whatsapp-fab{ width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg{ width: 26px; height: 26px; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .btn-primary:hover{ transform:none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .main-nav{
    position:absolute;
    top: 100%;
    left:0; right:0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 18px 24px 24px;
    gap: 16px;
    display:none;
  }
  .main-nav.open{ display:flex; }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }
  .site-footer{ padding-bottom: 90px; }
  .grid-3{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; align-items:flex-start; }
}
