:root {
  /* Paleta de Cores Premium */
  --bg-dark: #050505;
  --bg-card: #0F0F0F;
  --primary: #00E054; /* Verde mais elétrico */
  --primary-dark: #00A83F;
  --accent: #ffffff;
  
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
  
  --border-glass: rgba(255, 255, 255, 0.06);
  --border-active: rgba(0, 224, 84, 0.3);
  --glass-bg: rgba(20, 20, 20, 0.65);
  --glass-highlight: rgba(255, 255, 255, 0.03);
  
  /* Espaçamentos e Estrutura */
  --container-width: 1140px;
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); /* Curva mais suave */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* --- FUNDO E TEXTURA --- */
.bg-grid {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -2;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
}

.background-glow {
  position: fixed;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.12;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s infinite ease-in-out;
}

.blob-1 { width: 500px; height: 500px; top: -100px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: #0044ff; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 50px); }
}

/* --- UTILITÁRIOS --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.text-center { text-align: center; }

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Glassmorphism Refinado */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 0;
  transition: var(--transition);
}

.nav-content {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo { height: 36px; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.date-display { 
  display: flex; align-items: center; gap: 6px; 
  font-size: 14px; color: var(--text-muted); font-weight: 500; 
}

.cta-small {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.cta-small:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* --- HERO --- */
.hero { padding-top: 160px; padding-bottom: 100px; text-align: center; position: relative; }

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 224, 84, 0.1);
  border: 1px solid rgba(0, 224, 84, 0.2);
  border-radius: 50px;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); }

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero .subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Countdown */
.countdown-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  margin-bottom: 40px;
}

.countdown-label { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Plus Jakarta Sans', monospace;
  font-variant-numeric: tabular-nums;
}

.countdown-timer span { font-size: 32px; font-weight: 700; color: #fff; line-height: 1; display: block; }
.countdown-timer small { font-size: 10px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; display: block; }
.countdown-timer .separator { font-size: 24px; color: rgba(255,255,255,0.2); margin-top: -15px; }

/* Botões Principais */
.cta-primary {
  background: var(--primary);
  color: #000;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 224, 84, 0.25);
}

/* Shine Effect */
.shine-effect::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}

.trust-indicator {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  background-size: cover;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.trust-indicator span { font-size: 14px; color: var(--text-muted); }
.trust-indicator strong { color: #fff; }

/* --- SECTIONS --- */
.section { padding: 100px 0; }
.section-title { text-align: center; font-size: 36px; margin-bottom: 16px; font-weight: 700; letter-spacing: -0.5px; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 18px; }

/* Pain Cards */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.pain-card { padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.pain-card:hover { border-color: var(--border-active); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.icon-box {
  width: 50px; height: 50px;
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.pain-card h3 { margin-bottom: 12px; font-size: 20px; }
.pain-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* Transformation Section */
.transformation-wrapper { display: flex; align-items: stretch; gap: 30px; }
.state-box { flex: 1; padding: 40px; border-radius: var(--radius); position: relative; }

.state-box.old { border: 1px dashed rgba(255,255,255,0.15); background: rgba(255,255,255,0.02); }
.state-box.old h3 i { color: #ff4d4d; }

.state-box.new { background: rgba(0, 224, 84, 0.05); border: 1px solid var(--primary); }
.state-box.new h3 i { color: var(--primary); }

.state-box h3 { margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-size: 22px; }
.state-box ul { list-style: none; }
.state-box li { margin-bottom: 16px; color: var(--text-muted); position: relative; padding-left: 24px; }
.state-box.new li { color: #fff; }
.state-box li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: #333; border-radius: 50%; }
.state-box.new li::before { background: var(--primary); box-shadow: 0 0 10px var(--primary); }

.arrow-divider { font-size: 32px; color: var(--text-muted); display: flex; align-items: center; }

/* Timeline (Cronograma) */
.timeline { position: relative; padding-left: 20px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
}
.timeline-item::after {
  content: ''; position: absolute; left: -5px; top: 0; width: 12px; height: 12px;
  background: var(--bg-dark); border: 2px solid var(--primary); border-radius: 50%;
  box-shadow: 0 0 15px var(--primary);
}

.timeline-item .time {
  font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 14px;
}
.timeline-item .content { padding: 24px; transition: var(--transition); }
.timeline-item:hover .content { border-color: var(--border-active); background: rgba(20, 20, 20, 0.9); }
.timeline-item h4 { margin-bottom: 8px; font-size: 18px; color: #fff; }
.timeline-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 24px; }
.feature-card { display: flex; align-items: center; padding: 0; overflow: hidden; }
.feature-img { width: 140px; height: 140px; flex-shrink: 0; position: relative; }
.feature-img::after { 
    content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; 
    background: linear-gradient(90deg, transparent, var(--glass-bg)); 
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text { padding: 24px; }
.feature-text h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }

/* Team */
.team-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.mentor-card { width: 240px; }
.img-wrapper { 
    width: 100%; height: 300px; border-radius: var(--radius); overflow: hidden; margin-bottom: -40px; 
    border: 1px solid var(--border-glass); 
}
.mentor-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); filter: grayscale(100%); }
.mentor-card:hover img { filter: grayscale(0%); transform: scale(1.05); }

.mentor-info {
  position: relative; margin: 0 16px; padding: 16px; text-align: center;
  background: rgba(15, 15, 15, 0.9); backdrop-filter: blur(10px);
}

/* FAQ */
.faq-wrapper { display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 0 32px; cursor: pointer; transition: var(--transition); }
.faq-item:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.faq-question { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 16px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--text-muted); padding-right: 20px; }
.faq-answer p { padding-bottom: 24px; font-size: 15px; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }

/* Price Card */
.price-card {
  max-width: 480px; margin: 0 auto; padding: 48px;
  border: 1px solid var(--border-glass); position: relative; overflow: hidden;
}
.price-card:hover { border-color: var(--primary); box-shadow: 0 0 50px rgba(0, 224, 84, 0.1); }

.popular-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #000; font-weight: 700; font-size: 12px;
  padding: 4px 16px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px;
}

.price-header { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.price-old { text-decoration: line-through; color: var(--text-muted); font-size: 16px; }
.price-label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }

.price-value { font-size: 72px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -2px; margin-bottom: 30px; }
.price-value .currency { font-size: 28px; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-value .cents { font-size: 28px; color: var(--text-muted); }

.check-list-center { text-align: left; margin: 0 auto 30px; display: inline-block; width: 100%; }
.check-list-center li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-size: 15px; color: #ddd; }
.check-list-center li i { color: var(--primary); font-size: 20px; }

.garantia { margin-top: 16px; font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Mobile CTA */
.cta-mobile {
  display: none; position: fixed; bottom: 0; left: 0; width: 100%; padding: 16px 24px;
  z-index: 999; border-top: 1px solid var(--border-glass); background: rgba(5,5,5,0.95);
  backdrop-filter: blur(10px);
}
.cta-mobile-content { display: flex; justify-content: space-between; align-items: center; }
.mobile-info { display: flex; flex-direction: column; }
.offer-tag { font-size: 10px; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.mobile-price { font-size: 16px; font-weight: 700; color: #fff; }
.cta-mobile button {
  background: var(--primary); border: none; padding: 12px 32px; border-radius: 8px; font-weight: 700; color: #000;
}

/* Scroll Animation Classes */
.animate { opacity: 0; transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up { transform: translateY(30px); }
.fade-right { transform: translateX(-30px); }
.fade-left { transform: translateX(30px); }
.animate.show { opacity: 1; transform: translate(0); }

/* Responsivo */
@media (max-width: 768px) {
  .hero { padding-top: 120px; }
  .grid-2, .features-grid, .transformation-wrapper { grid-template-columns: 1fr; flex-direction: column; }
  .arrow-divider { transform: rotate(90deg); margin: 20px 0; justify-content: center; }
  .feature-card { flex-direction: column; text-align: center; }
  .feature-img { width: 100%; height: 200px; }
  .feature-img::after { background: linear-gradient(180deg, transparent, var(--glass-bg)); }
  .cta-mobile { display: block; }
  .final-cta { padding-bottom: 120px; }
  .timeline::before { left: 10px; }
  .timeline-item { padding-left: 30px; }
  .nav-actions .date-display { display: none; }
}