/* ======= CSS VARIÁVEIS / BASE ======= */
:root {
  --bg-main: #040608;
  --bg-card: rgba(35, 40, 65, 0.5);
  --border-glass: rgba(255, 255, 255, 0.12);
  
  --primary: #c026d3;
  --secondary: #2dd4bf;
  --accent: #ffff00;
  --highlight: #ffee00;
  
  --text-main: #ffffff;
  --text-muted: #e2e8f0;
  
  --font-family: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
}

/* Background Grids & Ambient Lights */
.grid-bg {
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.ambient-light {
  position: fixed;
  top: -20vh;
  left: -20vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(192, 38, 211, 0.3) 0%, rgba(0, 0, 0, 0) 75%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}
.ambient-light.light-2 {
  top: 40vh;
  left: auto;
  right: -20vw;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.25) 0%, rgba(0, 0, 0, 0) 75%);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-spacing {
  padding: 100px 0;
}
.mt-spacing { margin-top: 60px; }
.mt-regular { margin-top: 30px; }
.mt-small { margin-top: 15px; }

/* Text & Gradients */
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.text-gradient {
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-fire {
  background: linear-gradient(90deg, #ffff00, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.4));
}
.text-gradient-purple {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-red {
  background: linear-gradient(90deg, var(--accent), #ff5e00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neon-cyan { color: var(--secondary); text-shadow: 0 0 10px rgba(0, 210, 255, 0.5); }
.neon-pink { color: var(--accent); text-shadow: 0 0 10px rgba(255, 0, 122, 0.5); }
.text-highlight { color: var(--highlight); text-shadow: 0 0 10px rgba(255, 204, 0, 0.3); }

/* Buttons & CTA */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #7c3aed, #2563eb);
  color: #fff;
  padding: 16px 36px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.5);
}

/* Efeitos Espetaculares de Texto */
.text-shine {
  background: linear-gradient(120deg, rgba(255,255,255,0) 25%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 75%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 2s infinite linear;
}

.text-gradient-gold {
  background: linear-gradient(90deg, #ffff00, #ffea00, #ffd500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.5));
}

.income-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid #22c55e;
  color: #4ade80;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes shine {
  0% { background-position: 100%; }
  100% { background-position: -100%; }
}

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

.float-anim { animation: float 6s ease-in-out infinite; }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.7);
}
.btn-ghost {
  display: inline-block;
  padding: 16px 30px;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-large {
  font-size: 1.15rem;
  padding: 20px 45px;
  border-radius: 50px;
  width: 100%;
  max-width: 400px;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  background: rgba(40, 40, 60, 0.6);
  border-color: rgba(157, 0, 255, 0.4);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  z-index: 1000;
  transition: ease 0.4s;
}
.nav-logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--secondary);
  letter-spacing: 2px;
}
.live-counter { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #ccc; }
.live-pulse {
  width: 10px; height: 10px; background: #00ff66; border-radius: 50%;
  box-shadow: 0 0 10px #00ff66;
  animation: pulse 1.5s infinite alternate;
}
.nav-cta {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}
.nav-cta:hover { transform: scale(1.05); }

/* Hero */
.hero { padding-top: 100px; min-height: auto; padding-bottom: 60px; display: flex; align-items: center; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(157, 0, 255, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; }
.hero-proof-row { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.proof-item { font-size: 0.9rem; font-weight: 600; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; }
.hero-ctas { display: flex; gap: 20px; align-items: center; margin-bottom: 20px; }
.hero-guarantee { font-size: 0.85rem; color: #888; }
.hero-visual .offer-tag { color: var(--secondary); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 10px; }
.offer-list { list-style: none; margin: 20px 0; }
.offer-list li { margin-bottom: 12px; color: #ddd; display: flex; gap: 10px; align-items: center; }
.offer-check { color: #00ff66; font-weight: bold; }
.btn-full { display: block; text-align: center; background: rgba(255,255,255,0.05); color: #fff; padding: 15px; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; border: 1px solid var(--border-glass); transition: 0.3s; }
.btn-full:hover { background: var(--primary); border-color: var(--primary); }

/* VSL / YOUTUBE SECTION */
.vsl-label {
  display: inline-block; padding: 5px 15px; border-radius: 30px; background: rgba(0, 210, 255, 0.1);
  color: var(--secondary); font-size: 0.85rem; font-weight: 700; margin-bottom: 20px;
}
.video-container {
  position: relative; max-width: 900px; margin: 30px auto; border-radius: var(--radius-md);
  box-shadow: 0 0 50px rgba(0,0,0,0.5); overflow: visible;
}
.video-border-glow {
  position: absolute; top: -6px; left: -6px; right: -6px; bottom: -6px;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
  z-index: -1; filter: blur(18px); opacity: 0.75; border-radius: inherit;
  animation: animateGlow 5s linear infinite;
}
.video-wrapper {
  position: relative; padding-bottom: 56.25%; /* 16:9 */ height: 0;
  border-radius: var(--radius-md); overflow: hidden; background: #000; border: 1px solid var(--border-glass);
  z-index: 2;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* Ticker */
.ticker-wrap { position: relative; width: 100%; padding: 20px 0; overflow: hidden; border-radius: 0; border-left: none; border-right: none; }
.ticker { display: flex; white-space: nowrap; animation: tickerAnim 30s linear infinite; }
.ticker-item { font-size: 1rem; font-weight: 800; margin-right: 50px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 15px; }
.ticker-item span { color: var(--primary); }

/* Grids */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.problem-icon { font-size: 2.5rem; margin-bottom: 15px; }

.inside-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.check-item { display: flex; gap: 15px; margin-bottom: 20px; font-size: 1.1rem; line-height: 1.5; color: #ddd; }
.check-icon { background: var(--primary); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: bold; flex-shrink: 0; }
.for-card { padding: 20px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); margin-bottom: 15px; border-left: 4px solid var(--secondary); }
.for-card h4 { margin-bottom: 5px; color: #fff; }

.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.module-card { cursor: pointer; text-align: left; }
.mod-badge { color: var(--secondary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
.mod-desc { color: var(--text-muted); font-size: 0.95rem; margin-top: 10px; line-height: 1.5; }

.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.bonus-card { padding: 30px 20px; background: #0a0a0f; border: 1px solid var(--border-glass); border-radius: var(--radius-md); border-top: 3px solid var(--accent); }
.b-icon { font-size: 3rem; margin-bottom: 15px; }

/* Pricing */
.pricing-box { max-width: 600px; margin: 0 auto; text-align: center; position: relative; }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #ff5e00; color: #fff; padding: 5px 20px; border-radius: 20px; font-weight: 800; font-size: 0.9rem; box-shadow: 0 0 20px rgba(255, 94, 0, 0.5); }
.pricing-value-group s { color: #888; font-size: 1.2rem; }
.pricing-main { font-size: clamp(2.5rem, 10vw, 4rem); font-weight: 900; margin: 10px 0; }
.timer-flex { display: flex; justify-content: center; gap: 15px; align-items: center; margin-top: 15px; font-size: 1.5rem; font-weight: 800; }
.t-box { background: rgba(0,0,0,0.5); padding: 10px 15px; border-radius: 8px; border: 1px solid var(--border-glass); display: flex; flex-direction: column; align-items: center; }
.t-box span { font-size: 0.7rem; font-weight: 400; color: #aaa; text-transform: uppercase; margin-top: 5px; }
.safe-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 15px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; cursor: pointer; transition: 0.3s; }
.faq-q { font-size: 1.1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-a { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s ease; color: #ccc; }
.faq-item.active .faq-a { max-height: 300px; opacity: 1; margin-top: 15px; }
.faq-item.active .faq-q { color: var(--secondary); }

/* GUARANTEE BANNER */
.guarantee-banner {
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}
.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px;
  background: rgba(15, 15, 25, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.guarantee-shield {
  font-size: 5rem;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
  flex-shrink: 0;
}
.guarantee-content h3 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 15px;
  color: #fff;
}
.guarantee-content h3 span {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 234, 0, 0.3);
}
.guarantee-content p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.05rem;
}
.guarantee-content strong {
  color: #fff;
}

@media (max-width: 768px) {
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
    margin: 0 15px;
  }
  .guarantee-shield {
    font-size: 4rem;
  }
  .guarantee-content h3 {
    font-size: 1.6rem;
  }
}

/* Footer */
.final-cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}
.final-cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

footer { padding: 40px 0; border-top: 1px solid var(--border-glass); margin-top: 50px; background: rgba(0,0,0,0.5); }
.f-logo { font-weight: 900; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 10px; }
.f-links a { color: var(--secondary); text-decoration: none; margin: 0 10px; font-size: 0.9rem; }

/* ANIMATIONS */
@keyframes pulse { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 1; transform: scale(1.3); } }
@keyframes animateGlow { 0% { filter: blur(15px) hue-rotate(0deg); } 100% { filter: blur(15px) hue-rotate(360deg); } }
@keyframes tickerAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes shakeBtn { 
  0% { transform: scale(1); } 
  50% { transform: scale(1.05) rotate(-1deg); } 
  100% { transform: scale(1); } 
}

.shake-btn { animation: shakeBtn 3s infinite ease-in-out; }

/* Observers Transitions classes */
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.is-visible { opacity: 1; }

.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

.fade-in-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in-scale.is-visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-proof-row { justify-content: center; gap: 10px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .inside-layout { grid-template-columns: 1fr; gap: 30px; }
  .hide-mobile { display: none; }
  .section-spacing { padding: 60px 0; }
  .hero { padding-top: 60px; }
}

@media (max-width: 600px) {
  .container { width: 92%; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.5rem) !important; line-height: 1.15 !important; margin-bottom: 25px !important; }
  h2 { font-size: 1.8rem; }
  .hero { padding-top: 40px; padding-bottom: 30px; }
  .nav-logo { font-size: 1.1rem; }
  .navbar { width: 95%; top: 10px; padding: 10px 15px; }
  .nav-cta { padding: 8px 12px; font-size: 0.75rem; }
  .btn-primary { padding: 18px 25px; font-size: 1.1rem; width: 100%; text-align: center; font-weight: 800; border-radius: 50px; }
  .btn-large { font-size: 1.1rem; padding: 18px 25px; }
  .proof-item { font-size: 0.8rem; padding: 6px 12px; }
  .pricing-main { font-size: 2.2rem; }
  .t-box { padding: 8px 10px; min-width: 60px; }
  .timer-flex { gap: 8px; font-size: 1.2rem; }
  .module-card { padding: 20px; }
  .bonus-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bonus-card { padding: 20px 10px; }
  .b-icon { font-size: 2rem; }
}

@media (max-width: 400px) {
  .bonus-grid { grid-template-columns: 1fr; }
}
