/* ══════════════════════════════════════════════════════════
   STREAMUNIDOS — ESTILOS GLOBAIS
══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --purple-900: #0D0A1A;
  --purple-800: #13102B;
  --purple-700: #1A1535;
  --purple-600: #231D4F;
  --purple-500: #3B2E8A;
  --accent: #9146FF;
  --accent-light: #C084FC;
  --accent-dark: #6920D6;
  --pink: #FF4FA7;
  --cyan: #00D4FF;
  --gold: #F59E0B;
  --green: #10B981;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --text-primary: rgba(255,255,255,0.95);
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.40);
  --glass-bg: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.10);
  --card-bg: rgba(255,255,255,0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 40px rgba(145,70,255,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--purple-900);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* CANVAS PARTÍCULAS */
#particles-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.4;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════ TIPOGRAFIA ═══════════════ */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }
.title-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.title-highlight {
  color: var(--accent-light);
  text-shadow: 0 0 30px rgba(192,132,252,0.5);
  display: block;
}
.accent { color: var(--accent); }

/* ═══════════════ BOTÕES ═══════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white; padding: 10px 22px;
  border-radius: 50px; font-weight: 600;
  font-size: 0.9rem; text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(145,70,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(145,70,255,0.6); }

.btn-ghost {
  color: var(--text-secondary); padding: 10px 22px;
  border-radius: 50px; font-weight: 500;
  font-size: 0.9rem; text-decoration: none;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.btn-ghost:hover { color: white; border-color: var(--accent); background: var(--glass-bg); }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  color: white; padding: 16px 32px;
  border-radius: 50px; font-weight: 700;
  font-size: 1rem; text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(145,70,255,0.5);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(145,70,255,0.7); }
.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text-secondary); padding: 16px 32px;
  border-radius: 50px; font-weight: 600;
  font-size: 1rem; text-decoration: none;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-hero-ghost:hover { color: white; border-color: var(--accent); background: rgba(145,70,255,0.1); }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,10,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 800; color: white; }
.nav-links {
  display: flex; list-style: none; gap: 32px; margin: 0 auto;
}
.nav-link {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-link:hover { color: white; }
.nav-link:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
  text-align: center;
}
.hero-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; animation: floatGlow 8s ease-in-out infinite;
}
.glow-1 { width: 600px; height: 600px; background: rgba(145,70,255,0.15); top: -100px; left: -200px; animation-delay: 0s; }
.glow-2 { width: 400px; height: 400px; background: rgba(255,79,167,0.10); top: 20%; right: -100px; animation-delay: -3s; }
.glow-3 { width: 350px; height: 350px; background: rgba(0,212,255,0.08); bottom: 0; left: 30%; animation-delay: -5s; }

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(145,70,255,0.15); border: 1px solid rgba(145,70,255,0.3);
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
  color: var(--accent-light); margin-bottom: 32px;
  animation: fadeInDown 0.8s ease;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 24px; color: white;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both;
}
.stat-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); border-color: rgba(145,70,255,0.3); }
.stat-icon { font-size: 1.8rem; }
.stat-number {
  font-family: 'Outfit', sans-serif; font-size: 1.4rem;
  font-weight: 800; color: white; display: block;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }

.scroll-indicator {
  position: absolute; bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem;
  animation: fadeIn 1s ease 1s both;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--accent);
  border-radius: 2px; animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block; color: var(--accent-light);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: white; margin-bottom: 16px;
}
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* ═══════════════ COMO FUNCIONA ═══════════════ */
.como-funciona { background: linear-gradient(180deg, var(--purple-900) 0%, var(--purple-800) 100%); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.step-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.step-card:hover { transform: translateY(-8px); border-color: rgba(145,70,255,0.4); box-shadow: 0 20px 60px rgba(145,70,255,0.15); }
.step-number {
  font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900;
  color: rgba(145,70,255,0.12); position: absolute; top: 16px; right: 20px;
  line-height: 1;
}
.step-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(145,70,255,0.2), rgba(192,132,252,0.1));
  border: 1px solid rgba(145,70,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: var(--transition);
}
.step-card:hover .step-icon-wrap { background: linear-gradient(135deg, rgba(145,70,255,0.4), rgba(192,132,252,0.2)); }
.step-icon { font-size: 2rem; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: white; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  position: absolute; top: 50%; right: -12px;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* ═══════════════ VANTAGENS ═══════════════ */
.vantagens { background: var(--purple-800); }
.vantagens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.vantagem-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.vantagem-card:hover { transform: translateY(-6px); border-color: rgba(145,70,255,0.3); box-shadow: var(--shadow-glow); }
.vantagem-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(145,70,255,0.12), rgba(192,132,252,0.05));
  border-color: rgba(145,70,255,0.25);
}
.vantagem-glow {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: rgba(145,70,255,0.1); top: -60px; right: -60px;
  filter: blur(60px); pointer-events: none;
}
.vantagem-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.vantagem-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: white; }
.vantagem-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.vantagem-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.vantagem-list li { color: var(--text-secondary); font-size: 0.9rem; }
.vantagem-list li:first-child { color: var(--green); }

/* ═══════════════ ESTATÍSTICAS ═══════════════ */
.estatisticas {
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.big-stat {
  text-align: center; padding: 48px 24px;
  position: relative;
  border-right: 1px solid var(--glass-border);
}
.big-stat:last-child { border-right: none; }
.big-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 8px;
}
.big-stat-label { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; }
.big-stat-bar {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  border-radius: 2px;
}

/* ═══════════════ DEPOIMENTOS ═══════════════ */
.depoimentos { background: var(--purple-800); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(145,70,255,0.3); }
.testimonial-featured {
  background: linear-gradient(135deg, rgba(145,70,255,0.1), rgba(255,79,167,0.05));
  border-color: rgba(145,70,255,0.2);
}
.testimonial-stars { font-size: 1rem; margin-bottom: 8px; }
.testimonial-quote {
  font-size: 5rem; line-height: 0.8;
  color: var(--accent); font-family: 'Outfit', sans-serif;
  font-weight: 900; margin-bottom: 16px; display: block;
}
.testimonial-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: white;
  flex-shrink: 0;
}
.author-info { flex: 1; }
.author-info strong { display: block; font-size: 0.9rem; color: white; }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }
.twitch-badge {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 50px;
  background: rgba(145,70,255,0.1); border: 1px solid rgba(145,70,255,0.2);
  font-size: 0.75rem; color: var(--accent-light);
  flex-shrink: 0;
}

/* ═══════════════ CTA FINAL ═══════════════ */
.cta-final {
  background: var(--purple-900);
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.cta-glow-1 { width: 500px; height: 500px; background: rgba(145,70,255,0.15); top: -150px; left: -150px; }
.cta-glow-2 { width: 400px; height: 400px; background: rgba(255,79,167,0.1); bottom: -100px; right: -100px; }
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; color: white;
  line-height: 1.2; margin-bottom: 20px;
}
.cta-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-note {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.85rem;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--purple-900);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 16px 0 24px; line-height: 1.7; }
.footer-logo { margin-bottom: 0; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { background: rgba(145,70,255,0.2); border-color: var(--accent); color: white; transform: translateY(-3px); }
.footer-col h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* ═══════════════ ANIMAÇÕES ═══════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .vantagens-grid { grid-template-columns: repeat(2, 1fr); }
  .vantagem-featured { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .big-stat:nth-child(2) { border-right: none; }
  .big-stat:nth-child(3) { border-top: 1px solid var(--glass-border); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(13,10,26,0.98); backdrop-filter: blur(20px);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--glass-border);
  }
  .nav-links.open + .nav-actions { display: flex; }

  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; align-items: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .vantagem-featured { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
