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

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --surface: #16161e;
  --border: #2a2a3a;
  --text: #e8e8f0;
  --muted: #888899;
  --accent: #7c3aed;
  --accent2: #a855f7;
  --accent-glow: rgba(124,58,237,0.35);
  --green: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1100px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; border-radius: 50%; }

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

/* ===========================
   GRADIENT TEXT
=========================== */
.gradient-text {
  background: linear-gradient(135deg, var(--accent2) 0%, #c084fc 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }

.btn-lg { font-size: 17px; padding: 16px 32px; }
.btn-full { width: 100%; justify-content: center; font-size: 15px; padding: 15px 24px; border-radius: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 50px;
  transition: color var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--text); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--accent2); color: var(--accent2); }
.btn-full.btn-outline { border-radius: 12px; font-size: 14px; padding: 15px 24px; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 16px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text); }
.btn-primary-mobile {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff !important;
  font-weight: 700;
  border-radius: 10px;
  border-bottom: none !important;
}
.btn-ghost-mobile { color: var(--text) !important; border-bottom: 1px solid var(--border) !important; }

/* ===========================
   HERO
=========================== */
.hero {
  padding: 80px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent2);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: 12px; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ===========================
   TICKER BAND
=========================== */
.ticker-wrapper {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 16px;
  animation: ticker-scroll 20s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  white-space: nowrap;
  padding: 6px 16px;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-badge { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.kiwify { color: #f59e0b; border-color: rgba(245,158,11,0.2); background: rgba(245,158,11,0.08); }
.hotmart { color: #ef4444; border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.08); }
.cakto { color: #3b82f6; border-color: rgba(59,130,246,0.2); background: rgba(59,130,246,0.08); }
.whatsapp { color: #22c55e; border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.08); }
.facebook { color: #4f87f0; border-color: rgba(79,135,240,0.2); background: rgba(79,135,240,0.08); }
.gamma { color: var(--accent2); border-color: rgba(168,85,247,0.2); background: rgba(168,85,247,0.08); }
.landing { color: var(--text); }
.copyia { color: var(--accent2); border-color: rgba(168,85,247,0.2); background: rgba(168,85,247,0.08); }

/* ===========================
   SECTION LABELS
=========================== */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 56px;
}

/* ===========================
   COMO FUNCIONA
=========================== */
.section-how {
  padding: 100px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 24px;
  align-items: start;
  text-align: left;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  border-color: rgba(168,85,247,0.4);
  box-shadow: 0 0 24px rgba(124,58,237,0.1);
}

.step-number {
  font-size: 64px;
  font-weight: 900;
  color: rgba(168,85,247,0.12);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.step-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.step-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.step-connector {
  font-size: 28px;
  color: var(--accent2);
  align-self: center;
  opacity: 0.5;
  padding-top: 60px;
}

/* ===========================
   FEATURES TICKER
=========================== */
.section-features {
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.features-ticker-wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.features-track {
  display: flex;
  gap: 20px;
  padding: 8px 24px;
  animation: features-scroll 22s linear infinite;
  width: max-content;
}

@keyframes features-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.features-track:hover { animation-play-state: paused; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 240px;
  max-width: 260px;
  flex-shrink: 0;
  transition: border-color var(--transition);
  text-align: left;
}
.feature-card:hover { border-color: rgba(168,85,247,0.4); }

.feature-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent2);
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.feature-badge.pix {
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
}

.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.feature-card p { font-size: 13px; color: var(--muted); }

.feature-cta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-align: center;
  transition: opacity var(--transition);
}
.feature-cta:hover { opacity: 0.85; }
.feature-price { font-size: 18px; font-weight: 800; }

/* ===========================
   TESTIMONIALS
=========================== */
.section-testimonials {
  padding: 80px 0;
  text-align: center;
  background: var(--bg2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(168,85,247,0.35); }

.stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }

.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.6; flex: 1; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-author img { width: 48px; height: 48px; object-fit: cover; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* ===========================
   PRICING
=========================== */
.section-pricing {
  padding: 100px 0;
  text-align: center;
}

.pricing-eyebrow {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: left;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-highlight {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 40px rgba(124,58,237,0.15);
  background: linear-gradient(180deg, rgba(124,58,237,0.06) 0%, var(--surface) 100%);
}

.badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.pricing-desc { font-size: 14px; color: var(--muted); }

.pricing-from {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-price .currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
}
.pricing-price .amount {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.pricing-price .period { font-size: 16px; color: var(--muted); }

.pricing-pix { font-size: 13px; color: var(--muted); margin-top: -8px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li.bonus {
  color: var(--accent2);
  font-weight: 600;
}

.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.vagas-bar { margin-top: 4px; }
.vagas-text {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  text-align: center;
}
.vagas-progress {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  overflow: hidden;
}
.vagas-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 50px;
}

/* Guarantee */
.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
}

.guarantee-icon { font-size: 40px; flex-shrink: 0; }
.guarantee-box h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.guarantee-box p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.guarantee-link { color: var(--accent2); font-weight: 600; font-size: 14px; }
.guarantee-link:hover { opacity: 0.8; }

/* ===========================
   FAQ
=========================== */
.section-faq {
  padding: 80px 0 100px;
  background: var(--bg2);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(168,85,247,0.06); }

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent2);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p { font-size: 13px; color: var(--muted); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 0 0; }
  .hero-title { letter-spacing: -1px; }
  .section-title { letter-spacing: -0.5px; }
  .stat { padding: 0 16px; }
  .stat strong { font-size: 20px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
  .guarantee-box { flex-direction: column; gap: 12px; padding: 24px; }
  .footer-inner { justify-content: center; text-align: center; }
  .pricing-card { padding: 28px 22px; }
}
