/*
Theme Name: Rumble Lucrativo
Theme URI: https://rumblelucrativo.com
Author: Rumble Lucrativo
Author URI: https://rumblelucrativo.com
Description: Template de vendas moderno para o curso Rumble Lucrativo
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rumble-lucrativo
*/

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

:root {
  --background: 160 100% 2%;
  --foreground: 150 20% 95%;
  --card: 160 50% 5%;
  --card-foreground: 150 20% 95%;
  --primary: 145 100% 45%;
  --primary-foreground: 160 100% 2%;
  --secondary: 160 30% 12%;
  --secondary-foreground: 150 20% 95%;
  --muted: 160 20% 18%;
  --muted-foreground: 150 10% 60%;
  --accent: 145 100% 45%;
  --accent-foreground: 160 100% 2%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 160 30% 15%;
  --neon: 145 100% 50%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  min-height: 100vh;
  background-image: radial-gradient(ellipse at top, hsl(145 100% 45% / 0.03), transparent 50%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 12px;
}

.text-center { text-align: center; }
.text-gradient-neon {
  background: linear-gradient(135deg, hsl(var(--neon)), hsl(145 100% 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 20px hsl(var(--neon) / 0.5), 0 0 40px hsl(var(--neon) / 0.3);
}

.glow-neon {
  box-shadow: 0 0 15px hsl(var(--neon) / 0.4), 0 0 30px hsl(var(--neon) / 0.2);
}

.glow-neon-intense {
  box-shadow: 0 0 20px hsl(var(--neon) / 0.6), 0 0 40px hsl(var(--neon) / 0.4), 0 0 60px hsl(var(--neon) / 0.2);
}

.bg-grid-pattern {
  background-image: 
    linear-gradient(hsl(var(--neon) / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--neon) / 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px hsl(var(--neon) / 0.4); }
  50% { box-shadow: 0 0 25px hsl(var(--neon) / 0.6), 0 0 40px hsl(var(--neon) / 0.3); }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 16px 12px 32px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(hsl(var(--neon) / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--neon) / 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: hsl(var(--primary) / 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: hsl(var(--destructive) / 0.1);
  border: 1px solid hsl(var(--destructive) / 0.3);
  border-radius: 9999px;
  color: hsl(var(--destructive));
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.urgency-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: hsl(var(--destructive));
  border-radius: 50%;
}

.hero-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-title .highlight {
  color: #00ff00;
  text-shadow: 0 0 20px rgba(0, 255, 0, 0.5), 0 0 40px rgba(0, 255, 0, 0.3);
}

.hero-subtitle {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ===== VSL PLAYER ===== */
.vsl-container {
  position: relative;
  max-width: 768px;
  margin: 16px auto 24px;
}

.vsl-glow {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.2);
  filter: blur(32px);
  border-radius: 16px;
  z-index: -1;
}

.vsl-player {
  position: relative;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.vsl-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CTA BUTTONS ===== */
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(145 100% 35%));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 0 20px hsl(var(--neon) / 0.6), 0 0 40px hsl(var(--neon) / 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px hsl(var(--neon) / 0.8), 0 0 60px hsl(var(--neon) / 0.5);
}

.cta-button-secondary {
  background: transparent;
  color: hsl(var(--primary));
  border: 2px solid hsl(var(--primary));
  box-shadow: 0 0 15px hsl(var(--neon) / 0.3);
}

.cta-button-secondary:hover {
  background: hsl(var(--primary) / 0.1);
  box-shadow: 0 0 25px hsl(var(--neon) / 0.5);
}

.cta-discount {
  text-align: center;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

.cta-discount strong {
  color: hsl(var(--primary));
}

/* ===== SECTION BASE ===== */
.section {
  padding: 24px 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-title .highlight {
  color: hsl(var(--primary));
}

/* ===== PAIN SECTION ===== */
.pain-section {
  background: hsl(var(--secondary));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 672px;
  margin: 0 auto;
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--destructive) / 0.2);
  border-radius: 8px;
}

.pain-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--destructive) / 0.1);
  border-radius: 8px;
  color: hsl(var(--destructive));
  font-size: 16px;
}

.pain-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.pain-card p {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

/* ===== SOLUTION SECTION ===== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 672px;
  margin: 0 auto 16px;
}

.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 8px;
}

.solution-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: 8px;
  color: hsl(var(--primary));
  font-size: 16px;
}

.solution-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.solution-card p {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
  background: linear-gradient(180deg, hsl(var(--secondary)), hsl(var(--background)));
}

.guarantee-card {
  max-width: 448px;
  margin: 0 auto;
  padding: 16px;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary) / 0.3);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 30px hsl(var(--primary) / 0.1);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  color: hsl(var(--primary));
  font-size: 24px;
}

.guarantee-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: hsl(var(--secondary));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 672px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 12px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(145 100% 35%));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  font-size: 14px;
}

.testimonial-info h4 {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 12px;
  margin-bottom: 6px;
}

.testimonial-text {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 672px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 12px;
  background: hsl(var(--card));
  border: none;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: hsl(var(--secondary));
}

.faq-question::after {
  content: '+';
  font-size: 18px;
  color: hsl(var(--primary));
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  display: none;
  padding: 12px;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--border));
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  padding: 16px 12px;
  text-align: center;
  border-top: 1px solid hsl(var(--border));
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-logo .highlight {
  background: linear-gradient(135deg, hsl(var(--neon)), hsl(145 100% 70%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-copy {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero-section {
    padding: 32px 12px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-container {
    flex-direction: row;
  }
  
  .cta-button {
    width: auto;
  }
  
  .pain-grid,
  .solution-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 24px;
  }
}
