/* ══════════════════════════════════════════
   CÓDIGO DAS FREQUÊNCIAS — Design System Premium
   Paleta: Aurora Mística + Ouro Vibrante + Violeta Étereo
   ══════════════════════════════════════════ */

:root {
  --black-cosmos: #0a0612;
  --black-deep: #120a1f;
  --purple-deep: #1a0a2e;
  --purple-mid: #4a1a6b;
  --purple-light: #8b4dba;
  --purple-glow: rgba(139, 77, 186, 0.25);
  --gold-dark: #b8860b;
  --gold-mid: #d4af37;
  --gold-light: #f5d76e;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --cyan-aura: #00d4ff;
  --cyan-glow: rgba(0, 212, 255, 0.2);
  --rose-energy: #ff6b9d;
  --rose-glow: rgba(255, 107, 157, 0.2);
  --text-white: #f8f4ff;
  --text-muted: #a89ec4;
  --text-gold: #d4af37;
  --border-subtle: rgba(212, 175, 55, 0.15);
  --border-glow: rgba(212, 175, 55, 0.4);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-card: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(135deg, #0a0612 0%, #1a0a2e 50%, #0d0820 100%);
  color: var(--text-white);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── AURORA BOREAL BACKGROUND ── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.aurora-layer {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(139, 77, 186, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  animation: auroraShift 15s ease-in-out infinite;
}

@keyframes auroraShift {
  0%, 100% { opacity: 0.6; transform: scale(1) translateY(0); }
  50% { opacity: 0.9; transform: scale(1.1) translateY(-10px); }
}

/* ── CANVAS COSMOS WITH AURA ── */
#cosmos-canvas {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.5;
}

/* ── HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

em { font-style: italic; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; font-size: 1.1em; }

.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-mid);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 77, 186, 0.1));
  border: 1px solid var(--border-glow);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.label-white { color: var(--text-white); border-color: rgba(255,255,255,0.2); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ NAVBAR ══ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10, 6, 18, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.6rem 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: var(--gold-mid);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a0612;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  background-size: 200% 200%;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 0 30px var(--gold-glow), 0 4px 15px rgba(0,0,0,0.3);
  animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.nav-cta:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.5), 0 8px 30px rgba(0,0,0,0.4); 
}

/* ══ HERO ══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  z-index: 2;
  overflow: hidden;
  background: transparent;
}

.hero-glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 77, 186, 0.15) 0%, rgba(0, 212, 255, 0.08) 30%, transparent 70%);
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-glow-orb:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.hero-glow-orb:nth-child(2) { bottom: 20%; right: 15%; animation-delay: -4s; background: radial-gradient(circle, rgba(255, 107, 157, 0.12) 0%, rgba(212, 175, 55, 0.08) 30%, transparent 70%); }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

.hero-mandala {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-mandala svg {
  width: min(85vw, 800px);
  height: min(85vw, 800px);
  opacity: 0.12;
  animation: mandalaPulse 10s ease-in-out infinite;
}

@keyframes mandalaPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.12; }
  50% { transform: scale(1.05) rotate(5deg); opacity: 0.2; }
}

@keyframes mandalaRotate { to { transform: rotate(360deg); } }
@keyframes mandalaRotateRev { to { transform: rotate(-360deg); } }
.mandala-ring { animation: mandalaRotate 80s linear infinite; transform-origin: 200px 200px; }
.mandala-ring-reverse { animation: mandalaRotateRev 60s linear infinite; transform-origin: 200px 200px; }

.hero-content { position: relative; z-index: 3; max-width: 900px; }

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 8px;
  color: var(--gold-mid);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: fadeUp 1s ease-out both;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-eyebrow span {
  display: inline-block;
}
.eyebrow-divider {
  margin: 0 0.5rem;
}
.hero-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(160deg, #fff 0%, var(--gold-light) 25%, var(--gold-mid) 50%, var(--purple-light) 75%, var(--cyan-aura) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s ease infinite, fadeUp 1.2s ease-out 0.2s both;
}
@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-title em { display: block; font-style: normal; -webkit-text-fill-color: transparent; }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeUp 1.4s ease-out 0.4s both;
}

.hero-energy-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.energy-ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: energyExpand 4s ease-out infinite;
}
.energy-ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.energy-ring:nth-child(2) { width: 450px; height: 450px; animation-delay: 1s; border-color: rgba(139, 77, 186, 0.15); }
.energy-ring:nth-child(3) { width: 600px; height: 600px; animation-delay: 2s; border-color: rgba(0, 212, 255, 0.1); }

@keyframes energyExpand {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0; }
}

.hero-wave {
  margin: 0 auto 2.5rem;
  max-width: 500px;
  animation: fadeUp 1.6s ease-out 0.6s both;
}
.hero-wave svg { width: 100%; overflow: visible; }
#waveAnim1 { animation: waveFloat 4s ease-in-out infinite; }
#waveAnim2 { animation: waveFloat 5s ease-in-out infinite 0.5s; }

@keyframes waveFloat {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-8px) scaleY(0.85); }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  color: #0a0612;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-radius: 60px;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4), 0 4px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.1);
  transition: var(--transition-smooth);
  animation: fadeUp 1.8s ease-out 0.8s both, btnGlow 3s ease-in-out 2s infinite;
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 80px rgba(212, 175, 55, 0.7), 0 0 120px rgba(139, 77, 186, 0.3); }
}
.btn-hero:hover { 
  transform: translateY(-5px) scale(1.03); 
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.6), 0 8px 40px rgba(0,0,0,0.5); 
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 100;
  animation: fadeUp 2s ease-out 1s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{height:50px;opacity:0.6}50%{height:30px;opacity:1} }

/* ══ DESPERTAR ══ */
#despertar {
  position: relative;
  padding: 8rem 0 10rem;
  z-index: 10;
  background: transparent;
}
#despertar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 30% 20%, rgba(139, 77, 186, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.awakening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.awakening-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}
.awakening-text h2 em {
  background: linear-gradient(135deg, var(--gold-light), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
}
.awakening-text p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.mystical-quote {
  margin-top: 2rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(139, 77, 186, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.mystical-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: quoteShine 4s ease-in-out infinite;
}
@keyframes quoteShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.quote-glyph { 
  color: var(--gold-mid); 
  flex-shrink: 0; 
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* ── Frequency Meter ── */
.frequency-meter {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.8), rgba(18, 10, 31, 0.9));
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.frequency-meter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 77, 186, 0.1) 0%, transparent 50%);
  animation: meterRotate 20s linear infinite;
}
@keyframes meterRotate { to { transform: rotate(360deg); } }

.meter-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.meter-bars {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.bar {
  height: 50px;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  cursor: default;
  transition: all 0.4s ease;
}
.bar::before {
  content: attr(data-level) ' · ' attr(data-hz);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-weight: 500;
}
.bar::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.bar:hover { transform: scale(1.02); box-shadow: 0 5px 30px rgba(0,0,0,0.3); }
.bar:hover::after { opacity: 1; }

.bar-low { 
  background: linear-gradient(90deg, rgba(139, 28, 50, 0.7), rgba(100, 20, 40, 0.5));
  border-left: 3px solid #e74c3c;
}
.bar-mid { 
  background: linear-gradient(90deg, rgba(52, 73, 94, 0.7), rgba(80, 60, 120, 0.5));
  border-left: 3px solid #9b59b6;
}
.bar-high { 
  background: linear-gradient(90deg, rgba(39, 55, 70, 0.7), rgba(40, 100, 140, 0.5));
  border-left: 3px solid #3498db;
}
.bar-peak {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(139, 77, 186, 0.4) 50%, rgba(0, 212, 255, 0.3) 100%);
  border-left: 3px solid var(--gold-mid);
  color: var(--gold-light);
  animation: barGlow 2s ease-in-out infinite;
}
@keyframes barGlow {
  0%, 100% { box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.4), 0 0 20px rgba(139, 77, 186, 0.2); }
}

.meter-needle {
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-light), var(--cyan-aura), transparent);
  margin: 0 auto 1rem;
  border-radius: 2px;
  animation: needleGrow 1.5s ease-out forwards 0.5s, needlePulse 2s ease-in-out infinite 2s;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}
@keyframes needleGrow { to { height: 50px; } }
@keyframes needlePulse { 0%,100%{opacity:0.6;box-shadow:0 0 15px rgba(212,175,55,0.5)}50%{opacity:1;box-shadow:0 0 25px rgba(212,175,55,0.8)} }

.meter-caption { 
  font-size: 0.85rem; 
  color: var(--text-muted); 
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ══ MÉTODO ══ */
#metodo {
  position: relative;
  padding: 10rem 0;
  z-index: 10;
}
#metodo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.section-header { text-align: center; margin-bottom: 6rem; position: relative; }
.section-rune {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 12px;
  color: var(--gold-mid);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  animation: runeGlow 3s ease-in-out infinite;
}
@keyframes runeGlow {
  0%, 100% { opacity: 0.7; text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
  50% { opacity: 1; text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 50px rgba(139, 77, 186, 0.3); }
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-white);
}
.section-header h2 em {
  background: linear-gradient(135deg, var(--gold-light), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
}
.section-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* ── Journey Path ── */
.journey-path {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}
.journey-path::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold-mid), var(--purple-light), var(--cyan-aura), transparent);
  opacity: 0.4;
}
.journey-node {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
}
.node-connector {
  position: absolute;
  left: 35px;
  top: 70px;
  width: 2px;
  height: calc(100% + 1rem);
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  opacity: 0.3;
}
.journey-node:last-child .node-connector { display: none; }
.node-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 77, 186, 0.1));
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
  box-shadow: 0 0 20px rgba(139, 77, 186, 0.2);
}
.journey-node:hover .node-icon {
  border-color: var(--gold-mid);
  box-shadow: 0 0 40px var(--gold-glow), 0 0 60px rgba(139, 77, 186, 0.3);
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(139, 77, 186, 0.15));
}
.node-content {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(18, 10, 31, 0.8));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.journey-node:hover .node-content {
  border-color: var(--border-glow);
  box-shadow: 0 0 50px rgba(139, 77, 186, 0.15), 0 10px 40px rgba(0,0,0,0.3);
  transform: translateX(5px);
}
.node-badge {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.75rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
}
.node-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}
.node-goal {
  font-size: 0.95rem;
  color: var(--gold-pale);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold-mid);
}
.node-list {
  list-style: none;
  margin-bottom: 1.25rem;
}
.node-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.node-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-size: 0.6rem;
  top: 0.6rem;
}
.node-tool {
  font-size: 0.8rem;
  color: var(--cyan-aura);
  letter-spacing: 1px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.8rem;
}

/* ══ TRANSFORMAÇÃO ══ */
#transformacao {
  padding: 10rem 0;
  z-index: 10;
  position: relative;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(139, 77, 186, 0.1) 0%, transparent 60%);
}
.transform-header { text-align: center; margin-bottom: 5rem; }
.transform-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-white);
}
.transform-header h2 em {
  background: linear-gradient(135deg, var(--rose-energy), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
}
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.transform-card {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.5), rgba(18, 10, 31, 0.7));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.transform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.transform-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), var(--purple-light), var(--cyan-aura));
  opacity: 0;
  transition: opacity 0.5s;
}
.transform-card:hover { 
  border-color: var(--border-glow); 
  transform: translateY(-8px); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.transform-card:hover::before { opacity: 1; }
.transform-card:hover::after { opacity: 1; }
.transform-icon { 
  font-size: 2.5rem; 
  margin-bottom: 1rem;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.transform-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}
.transform-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ══ BÔNUS ══ */
.bonus-header-img {
  display: none;
}

#bonus {
  padding: 10rem 0;
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, transparent, rgba(26, 10, 46, 0.4) 20%, rgba(26, 10, 46, 0.4) 80%, transparent);
}
#bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(139, 77, 186, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.bonus-bg-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50vw;
  color: rgba(212, 175, 55, 0.03);
  pointer-events: none;
  font-family: 'Cinzel Decorative', cursive;
  z-index: 0;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.bonus-card {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.7), rgba(18, 10, 31, 0.85));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 77, 186, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.bonus-card:hover { 
  border-color: var(--border-glow); 
  transform: translateY(-6px); 
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}
.bonus-card:hover::before { opacity: 1; }
.bonus-card-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(139, 77, 186, 0.2), rgba(212, 175, 55, 0.1), rgba(18, 10, 31, 0.9));
  border-color: var(--purple-mid);
  border: 2px solid;
  position: relative;
}
.bonus-card-featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--gold-mid), var(--purple-light), var(--cyan-aura));
  z-index: -1;
  opacity: 0.3;
  animation: featuredBorder 3s ease-in-out infinite;
}
@keyframes featuredBorder {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.bonus-card-featured h4, .bonus-card-featured p { grid-column: auto; }
.bonus-number {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.1);
  line-height: 1;
  pointer-events: none;
}
.bonus-icon { 
  font-size: 2rem; 
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}
.bonus-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-white);
}
.bonus-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.bonus-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: rgba(139, 77, 186, 0.1);
}
.bonus-tag-gold {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* ══ FAQ ══ */
#faq {
  padding: 10rem 0;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 10, 46, 0.3) 30%, rgba(26, 10, 46, 0.3) 70%, transparent 100%);
}
#faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.6), rgba(18, 10, 31, 0.8));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(139, 77, 186, 0.15);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover {
  background: rgba(139, 77, 186, 0.08);
}
.faq-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 77, 186, 0.15));
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-mid);
  flex-shrink: 0;
}
.faq-question h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 2rem 1.8rem 4.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold-mid);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.faq-item {
  position: relative;
}
.faq-item.active::after {
  transform: translateY(-50%) rotate(45deg);
}

/* ══ CTA FINAL ══ */
#inscricao {
  position: relative;
  padding: 12rem 2rem;
  text-align: center;
  z-index: 10;
  overflow: hidden;
}
#inscricao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(139, 77, 186, 0.15) 0%, transparent 60%);
}
#cta-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; }
.cta-mandala-sm {
  font-size: 3.5rem;
  color: var(--gold-mid);
  margin-bottom: 2rem;
  display: block;
  animation: spinSlow 20s linear infinite, ctaGlow 2s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes ctaGlow {
  0%, 100% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.5); }
  50% { text-shadow: 0 0 50px rgba(212, 175, 55, 0.8), 0 0 80px rgba(139, 77, 186, 0.4); }
}
.cta-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(160deg, #fff, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  background-clip: text;
}
.cta-title em {
  display: block;
  font-style: normal;
  font-family: 'Cinzel Decorative', cursive;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(160deg, var(--gold-mid), var(--purple-light), var(--cyan-aura));
  -webkit-background-clip: text;
}
.cta-sub { 
  color: var(--text-muted); 
  font-size: 1.15rem; 
  margin-bottom: 3rem;
  line-height: 1.8;
}
.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.cta-features span {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.8rem 5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  background-size: 200% 200%;
  color: #0a0612;
  text-decoration: none;
  border-radius: 70px;
  transition: var(--transition-smooth);
  box-shadow: 0 0 80px rgba(212, 175, 55, 0.35), 0 8px 40px rgba(0,0,0,0.4), inset 0 0 30px rgba(255,255,255,0.1);
  animation: shineBtn 4s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes shineBtn {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 0 80px rgba(212, 175, 55, 0.35); }
  50% { background-position: 100% 50%; box-shadow: 0 0 120px rgba(212, 175, 55, 0.6), 0 0 150px rgba(139, 77, 186, 0.3); }
}
.btn-cta:hover { 
  transform: translateY(-8px) scale(1.03); 
  box-shadow: 0 0 120px rgba(212, 175, 55, 0.6), 0 15px 50px rgba(0,0,0,0.5); 
}
.btn-cta-text { 
  font-family: 'Cinzel Decorative', cursive; 
  font-size: 1.1rem; 
  font-weight: 700; 
  letter-spacing: 2px; 
}
.btn-cta-sub { font-size: 0.75rem; opacity: 0.8; font-weight: 600; letter-spacing: 1px; }
.cta-guarantee { 
  margin-top: 2.5rem; 
  font-size: 0.85rem; 
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ══ FOOTER ══ */
footer {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 10;
  background: rgba(10, 6, 18, 0.5);
}
.footer-symbol { 
  font-size: 2.5rem; 
  color: var(--gold-mid); 
  opacity: 0.5; 
  margin-bottom: 1rem;
  animation: footerGlow 3s ease-in-out infinite;
}
@keyframes footerGlow {
  0%, 100% { opacity: 0.4; text-shadow: 0 0 10px rgba(212,175,55,0.2); }
  50% { opacity: 0.7; text-shadow: 0 0 20px rgba(212,175,55,0.4); }
}
.footer-tagline { margin-top: 0.5rem; font-style: italic; color: var(--gold-mid); opacity: 0.6; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1000px) {
  .awakening-grid { grid-template-columns: 1fr; gap: 4rem; }
  .transform-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-card-featured { grid-column: span 2; grid-template-columns: auto 1fr; }
  .journey-path::before { left: 24px; }
  .journey-node { grid-template-columns: 50px 1fr; gap: 1.5rem; }
  .node-icon { width: 50px; height: 50px; font-size: 1.4rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .bonus-header-img {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .bonus-header-img img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-card-featured { 
    grid-column: span 1; 
    grid-template-columns: 1fr; 
    text-align: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .bonus-card-featured .bonus-number { display: none; }
  .bonus-card-featured .bonus-icon { 
    font-size: 2.5rem; 
    margin-bottom: 0.5rem;
  }
  .bonus-card-featured h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .bonus-card-featured p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .bonus-card-featured .bonus-tag { 
    display: inline-block;
    margin: 0 auto;
  }
  #inscricao { padding: 6rem 1.5rem; }
  .cta-features { gap: 1rem; flex-direction: column; align-items: center; }
  .btn-cta { padding: 1.4rem 2.5rem; }
  .nav-logo { font-size: 0.65rem; letter-spacing: 2px; }
  #hero { padding: 7rem 1.5rem 5rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .nav-cta { display: flex; justify-content: center; padding: 0.7rem 1.2rem; }
  #cosmos-canvas { opacity: 0.25; }
  .hero-eyebrow {
    flex-direction: column;
    gap: 0.3rem;
    letter-spacing: 4px;
  }
  .eyebrow-divider { display: none; }
}
