/*
Theme Name: Influencer Edit Viral
Theme URI: https://influencereditviral.com
Author: Fran
Author URI: https://influencereditviral.com
Description: Tema moderno e responsivo para landing page de curso de criação de conteúdo
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: influencer-edit-viral
Tags: one-column, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===================================
   Reset e Base
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --background: hsl(0, 0%, 7%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(0, 0%, 10%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(0, 0%, 65%);
  --border: hsl(0, 0%, 20%);
  
  /* Neon Colors */
  --neon-cyan: hsl(186, 100%, 50%);
  --neon-green: hsl(142, 100%, 50%);
  --neon-pink: hsl(330, 100%, 50%);
  --neon-yellow: hsl(48, 100%, 50%);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(186, 100%, 50%), hsl(142, 100%, 50%));
  --gradient-accent: linear-gradient(135deg, hsl(330, 100%, 50%), hsl(186, 100%, 50%));
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero {
  background: var(--gradient-primary);
  color: var(--background);
  box-shadow: 0 0 20px hsla(186, 100%, 50%, 0.5);
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsla(142, 100%, 50%, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.btn-outline:hover {
  background: hsla(186, 100%, 50%, 0.1);
}

.btn-urgency {
  background: var(--neon-yellow);
  color: var(--background);
  animation: pulse 2s infinite;
}

/* ===================================
   Sections
   =================================== */
section {
  padding: var(--section-padding);
  position: relative;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid hsla(186, 100%, 50%, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  animation: glow-pulse 2s infinite;
  margin-bottom: 32px;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: hsla(186, 100%, 50%, 0.5);
  transform: translateY(-5px);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-value.cyan { color: var(--neon-cyan); }
.stat-value.green { color: var(--neon-green); }
.stat-value.pink { color: var(--neon-pink); }
.stat-value.yellow { color: var(--neon-yellow); }

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: hsla(0, 0%, 10%, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--neon-green);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--neon-green);
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.result-card {
  background: linear-gradient(135deg, var(--card), var(--muted));
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: hsla(186, 100%, 50%, 0.5);
}

.result-value {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: hsla(0, 0%, 10%, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: hsla(186, 100%, 50%, 0.5);
}

.stars {
  display: flex;
  gap: 4px;
  margin: 16px 0;
  color: var(--neon-yellow);
}

/* FAQ */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

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

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted-foreground);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--card), var(--muted));
  border: 2px solid hsla(186, 100%, 50%, 0.3);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.price-section {
  margin: 32px 0;
}

.original-price {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.current-price {
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0;
}

/* Footer */
footer {
  background: hsla(0, 0%, 10%, 0.5);
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link.instagram:hover {
  background: hsla(330, 100%, 50%, 0.2);
  color: var(--neon-pink);
}

.social-link.youtube:hover {
  background: hsla(48, 100%, 50%, 0.2);
  color: var(--neon-yellow);
}

/* ===================================
   Animations
   =================================== */
@keyframes glow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .stats-grid,
  .benefits-grid,
  .results-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .current-price {
    font-size: 3rem;
  }
}
