/* ═══════════════════════════════════════════════════════════
   MUNAY QUANTEC PRO — DESIGN SYSTEM
   Premium | Espiritual Moderno | Tecnológico
═══════════════════════════════════════════════════════════ */

/* ───── TOKENS ───── */
:root {
  --bg-primary:     #0B0F1F;
  --bg-secondary:   #0F1429;
  --bg-card:        #131829;
  --bg-card-hover:  #17203a;
  --grad-deep:      linear-gradient(135deg, #1A0F2E 0%, #0B0F1F 50%, #0A1628 100%);
  --grad-violet:    linear-gradient(135deg, #1A0F2E 0%, #2A1450 100%);
  --grad-ganesha:   linear-gradient(135deg, #1A0822 0%, #2C0E45 40%, #1A0F2E 100%);

  --violet:         #945ACB;
  --violet-light:   #b07fe0;
  --gold:           #D4AF37;
  --gold-light:     #F0CC5A;
  --green:          #2ECC71;
  --yellow:         #F4D03F;
  --white-soft:     #EAEAF0;
  --text-muted:     #8892B0;
  --text-secondary: #A0AEC0;

  --radius-card:    16px;
  --radius-btn:     50px;
  --shadow-card:    0 4px 32px rgba(0,0,0,0.45);
  --shadow-hover:   0 12px 48px rgba(0,0,0,0.6);
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max:  1140px;
  --font-heading:   'Sora', 'Poppins', sans-serif;
  --font-body:      'Inter', 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-primary);
  color: var(--white-soft);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 36px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ───── CONTAINER ───── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── TYPOGRAPHY ───── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.gradient-text {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--violet) 50%, #6a3d9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #B8962E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ───── SECTION HELPERS ───── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--violet-light);
  border: 1px solid rgba(148, 90, 203, 0.3);
  background: rgba(148, 90, 203, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.tag-gold {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-xl { padding: 18px 48px; font-size: 1.1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #6a3d9e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(148, 90, 203, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(148, 90, 203, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--white-soft);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-whatsapp-sm {
  background: #25D366;
  color: #fff;
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 50px;
}
.btn-whatsapp-sm:hover { background: #1ebe5a; transform: translateY(-1px); }

.btn-whatsapp-full {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}

/* Card Buttons */
.btn-card {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  margin-top: auto;
  font-size: 0.95rem;
}

.btn-dourada {
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #0B0F1F;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}
.btn-dourada:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.55);
}

.btn-diamante {
  background: linear-gradient(135deg, #a8d8f8 0%, #6ab8ee 100%);
  color: #0B0F1F;
  box-shadow: 0 4px 20px rgba(106, 184, 238, 0.35);
}
.btn-diamante:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(106, 184, 238, 0.55);
}

.btn-violeta {
  background: linear-gradient(135deg, var(--violet) 0%, #6a3d9e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(148, 90, 203, 0.4);
}
.btn-violeta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(148, 90, 203, 0.6);
}

.btn-verde {
  background: linear-gradient(135deg, var(--green) 0%, #27ae60 100%);
  color: #0B0F1F;
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.35);
}
.btn-verde:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.55);
}

.btn-ganesha {
  background: linear-gradient(135deg, var(--gold) 0%, #c9a227 100%);
  color: #0B0F1F;
  padding: 16px 40px;
  font-size: 1.05rem;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-ganesha:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.65);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 15, 31, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 90, 203, 0.12);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(11, 15, 31, 0.97);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white-soft);
}
.brand-logo .logo-icon {
  color: var(--violet);
  font-size: 1.2rem;
}
.brand-logo em {
  font-style: normal;
  color: var(--violet-light);
}

.logo-text { display: flex; gap: 6px; align-items: baseline; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white-soft); }
.nav-link.active { color: var(--violet-light); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-soft);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: rgba(11, 15, 31, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  gap: 4px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(148, 90, 203, 0.15);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-nav-link:hover, .mobile-nav-link.wpp { color: #25D366; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--grad-deep);
  overflow: hidden;
  text-align: center;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--violet);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: #2A1450;
  top: 20%; right: -80px;
  animation-delay: -4s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #1a4a7a;
  bottom: 0; left: 30%;
  animation-delay: -8s;
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(148, 90, 203, 0.12);
  border: 1px solid rgba(148, 90, 203, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white-soft);
  max-width: 820px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  font-weight: 400;
}

.hero-support {
  font-size: 1rem;
  color: var(--violet-light);
  font-weight: 500;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-trust i { color: var(--violet); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  display: block;
  width: 8px; height: 8px;
  background: var(--violet);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--violet);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ═══════════════════════════════════════════
   CONSCIOUSNESS BLOCK
═══════════════════════════════════════════ */
.consciousness-block {
  padding: 72px 0;
  background: linear-gradient(135deg, #0F1429 0%, #0B0F1F 100%);
  border-top: 1px solid rgba(148, 90, 203, 0.1);
  border-bottom: 1px solid rgba(148, 90, 203, 0.1);
}

.consciousness-inner {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  max-width: 820px;
  margin: 0 auto;
}

.consciousness-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(148,90,203,0.2) 0%, rgba(148,90,203,0.05) 100%);
  border: 1px solid rgba(148, 90, 203, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--violet-light);
}

.consciousness-main {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white-soft);
  margin-bottom: 12px;
  line-height: 1.5;
}
.consciousness-sub {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   SALAS SECTION
═══════════════════════════════════════════ */
.salas-section {
  padding: 96px 0;
  background: var(--bg-primary);
}

.salas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ───── SALA CARD ───── */
.sala-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: var(--transition);
  overflow: hidden;
}
.sala-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,255,255,0.1);
}

.card-glow {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sala-card:hover .card-glow { opacity: 0.18; }

/* Color glows */
.sala-dourada .card-glow { background: var(--gold); }
.sala-diamante .card-glow { background: #6ab8ee; }
.sala-violeta .card-glow { background: var(--violet); }
.sala-verde .card-glow { background: var(--green); }

/* Card-specific top borders */
.sala-dourada  { border-top: 3px solid var(--gold); }
.sala-diamante { border-top: 3px solid #6ab8ee; }
.sala-violeta  { border-top: 3px solid var(--violet); }
.sala-verde    { border-top: 3px solid var(--green); }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.badge-dourada  { background: rgba(212,175,55,0.12); color: var(--gold-light); border: 1px solid rgba(212,175,55,0.25); }
.badge-diamante { background: rgba(106,184,238,0.12); color: #a8d8f8; border: 1px solid rgba(106,184,238,0.25); }
.badge-violeta  { background: rgba(148,90,203,0.12); color: var(--violet-light); border: 1px solid rgba(148,90,203,0.25); }
.badge-verde    { background: rgba(46,204,113,0.12); color: #6ee4a0; border: 1px solid rgba(46,204,113,0.25); }

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-soft);
  line-height: 1.2;
}

.card-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.card-benefits i { flex-shrink: 0; margin-top: 2px; font-size: 0.8rem; }

.sala-dourada  .card-benefits i { color: var(--gold); }
.sala-diamante .card-benefits i { color: #6ab8ee; }
.sala-violeta  .card-benefits i { color: var(--violet-light); }
.sala-verde    .card-benefits i { color: var(--green); }

.card-destaque {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  padding: 8px 14px;
  border-radius: 10px;
}

.card-frase {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  border-left: 3px solid rgba(148, 90, 203, 0.3);
  padding-left: 14px;
  margin-top: auto;
}
.sala-dourada  .card-frase { border-color: rgba(212,175,55,0.4); }
.sala-diamante .card-frase { border-color: rgba(106,184,238,0.4); }
.sala-verde    .card-frase { border-color: rgba(46,204,113,0.4); }

/* ═══════════════════════════════════════════
   GANESHA SECTION
═══════════════════════════════════════════ */
.ganesha-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
}

.ganesha-bg-layer {
  position: absolute;
  inset: 0;
  background: var(--grad-ganesha);
  z-index: 0;
}
.ganesha-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(212,175,55,0.08)'/%3E%3C/svg%3E") repeat;
}

.ganesha-inner {
  position: relative;
  z-index: 1;
}

.ganesha-badge-wrap {
  margin-bottom: 20px;
}
.ganesha-star {
  display: inline-block;
  font-size: 2rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.6));
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.ganesha-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white-soft);
  margin-bottom: 16px;
}

.ganesha-subtitle {
  font-size: 1.1rem;
  color: rgba(212,175,55,0.75);
  margin-bottom: 48px;
}

.ganesha-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(8px);
}

.ganesha-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ganesha-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--white-soft);
  font-weight: 500;
}
.ganesha-benefits i {
  width: 36px; height: 36px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ganesha-cta-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.ganesha-frase {
  font-size: 1.15rem;
  color: var(--gold-light);
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
}

.ganesha-note {
  font-size: 0.82rem;
  color: rgba(212,175,55,0.6);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   COMO FUNCIONA
═══════════════════════════════════════════ */
.como-funciona {
  padding: 96px 0;
  background: linear-gradient(180deg, #0B0F1F 0%, #0F1429 100%);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-card);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148, 90, 203, 0.25);
  box-shadow: var(--shadow-hover);
}

.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 16px; right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(148, 90, 203, 0.08);
  font-family: var(--font-heading);
  line-height: 1;
}

.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(148,90,203,0.15) 0%, rgba(148,90,203,0.05) 100%);
  border: 1px solid rgba(148, 90, 203, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--violet-light);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: rgba(148, 90, 203, 0.4);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════
   AUTORIDADE
═══════════════════════════════════════════ */
.autoridade-section {
  padding: 96px 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(148, 90, 203, 0.08);
}

.autoridade-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto;
}

.autoridade-avatar {
  position: relative;
  flex-shrink: 0;
}
.avatar-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(var(--violet), var(--gold), var(--violet));
  animation: spinRing 6s linear infinite;
  opacity: 0.5;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.avatar-placeholder {
  position: relative;
  z-index: 1;
  width: 160px; height: 160px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-muted);
  border: 4px solid var(--bg-primary);
}

/* Avatar wrap com foto real */
.autoridade-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring-outer {
  position: absolute;
  width: 240px;
  height: 240px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0%, var(--gold) 50%, var(--violet) 100%);
  animation: spinRing 6s linear infinite;
  opacity: 0.45;
}

.autoridade-foto {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 8px 40px rgba(148,90,203,0.35);
  display: block;
}

.autoridade-headline {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 800;
  color: var(--white-soft);
  margin: 12px 0 6px;
  line-height: 1.25;
}

.autoridade-content { flex: 1; }

.autoridade-nome {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white-soft);
  margin: 12px 0 6px;
}

.autoridade-cargo {
  font-size: 0.95rem;
  color: var(--violet-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.autoridade-bio {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.autoridade-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--white-soft);
  line-height: 1;
}
.stat-number::after { content: '+'; color: var(--violet); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-hourly {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--violet-light);
  line-height: 1;
  display: block;
}
.stat-label-hourly {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════
   CONTATO / FORMULÁRIO
═══════════════════════════════════════════ */
.contato-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #0F1429 0%, #0B0F1F 100%);
}

.contato-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(148, 90, 203, 0.12);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
}

.contato-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--white-soft);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  outline: none;
  border-color: rgba(148, 90, 203, 0.5);
  box-shadow: 0 0 0 3px rgba(148, 90, 203, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892B0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: #131829; color: var(--white-soft); }

.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

/* Error state */
.form-input.error { border-color: rgba(231, 76, 60, 0.5); }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12); }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 112px 0;
  text-align: center;
  overflow: hidden;
  background: var(--grad-violet);
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb-final-1, .orb-final-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb-final-1 {
  width: 400px; height: 400px;
  background: var(--violet);
  top: -100px; left: -80px;
}
.orb-final-2 {
  width: 350px; height: 350px;
  background: var(--gold);
  bottom: -80px; right: -60px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-icon {
  font-size: 2.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 16px rgba(212,175,55,0.5));
  display: block;
  animation: pulse 3s ease-in-out infinite;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white-soft);
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #070A14;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white-soft);
}
.footer-brand .logo-icon { color: var(--violet); }
.footer-brand em { font-style: normal; color: var(--violet-light); }

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

.social-link {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(148, 90, 203, 0.15);
  border-color: rgba(148, 90, 203, 0.3);
  color: var(--violet-light);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   WHATSAPP FLOATING
═══════════════════════════════════════════ */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
}

.wpp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(11,15,31,0.95);
  color: var(--white-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(255,255,255,0.08);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════
   BARRA DE ESCASSEZ
═══════════════════════════════════════════ */
.escassez-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #1a0822 0%, #2d0d4e 40%, #1a1008 100%);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 8px 16px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.escassez-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.escassez-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(240, 204, 90, 0.92);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.escassez-fire  { font-size: 0.9rem; }
.escassez-clock { font-size: 0.9rem; }
.escassez-warn  { font-size: 0.9rem; }

.escassez-sep {
  color: rgba(212,175,55,0.3);
  font-size: 0.9rem;
}

.escassez-vagas strong {
  color: #ff6b6b;
  font-size: 0.92rem;
}

/* ═══════════════════════════════════════════
   CARD DURAÇÃO
═══════════════════════════════════════════ */
.card-duracao {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 8px 12px;
  border-radius: 8px;
  line-height: 1.5;
}
.card-duracao i { flex-shrink: 0; margin-top: 2px; color: var(--violet-light); font-size: 0.7rem; }

/* ═══════════════════════════════════════════
   BLOCO DE BÔNUS
═══════════════════════════════════════════ */
.bonus-block {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(148,90,203,0.07) 0%, rgba(212,175,55,0.06) 100%);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.bonus-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-header {
  text-align: center;
  margin-bottom: 36px;
}

.bonus-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}
.bonus-card:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212,175,55,0.12);
}

.bonus-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--gold);
}

.bonus-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white-soft);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.bonus-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bonus-reforco {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(212,175,55,0.7);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════
   GANESHA PREMIUM BADGES
═══════════════════════════════════════════ */
.ganesha-premium-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ganesha-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-light);
}

.ganesha-badge-lock {
  background: rgba(148,90,203,0.15);
  border-color: rgba(148,90,203,0.4);
  color: var(--violet-light);
}

/* ═══════════════════════════════════════════
   FOTO DO TERAPEUTA
═══════════════════════════════════════════ */
.autoridade-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-ring-outer {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(var(--violet) 0%, var(--gold) 50%, var(--violet) 100%);
  animation: spinRing 6s linear infinite;
  opacity: 0.45;
  width: 240px;
  height: 240px;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.autoridade-foto {
  position: relative;
  z-index: 1;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 8px 40px rgba(148,90,203,0.3);
  display: block;
}

.autoridade-headline {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--white-soft);
  margin: 12px 0 8px;
  line-height: 1.2;
}

.autoridade-nome {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white-soft);
  margin: 4px 0 6px;
}

/* ═══════════════════════════════════════════
   BLOCO ATIVAÇÃO PÓS-COMPRA
═══════════════════════════════════════════ */
.ativacao-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0B0F1F 0%, #0d1120 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ativacao-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, rgba(148,90,203,0.07) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.ativacao-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--violet), var(--gold));
}

.ativacao-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ativacao-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.ativacao-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white-soft);
  font-family: var(--font-heading);
}

.ativacao-intro {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.ativacao-itens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.ativacao-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 16px;
}

.ativacao-num {
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.3;
}

.ativacao-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white-soft);
  margin-bottom: 4px;
}

.ativacao-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ativacao-footer {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ativacao-info, .ativacao-prazo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.ativacao-info { color: var(--text-secondary); }
.ativacao-prazo { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   ANIMATE ON SCROLL
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 300;
  background: #1a2040;
  border: 1px solid rgba(148,90,203,0.3);
  color: var(--white-soft);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-card);
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 280px;
}
.toast.show { transform: translateX(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .salas-grid { grid-template-columns: 1fr; gap: 24px; }

  .ganesha-grid {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
    text-align: center;
  }
  .ganesha-benefits li { justify-content: center; }

  .steps-grid { gap: 16px; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }

  .autoridade-inner { flex-direction: column; gap: 36px; text-align: center; }
  .autoridade-stats { justify-content: center; }
  .bonus-grid { grid-template-columns: 1fr; }
  .ativacao-itens { grid-template-columns: 1fr; }
  .ganesha-premium-badges { flex-direction: column; align-items: center; }

  .contato-card { padding: 36px 28px; }

  .header-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  body { padding-top: 52px; }
  .container { padding: 0 16px; }
  .escassez-inner { flex-direction: column; gap: 3px; align-items: center; }
  .escassez-sep { display: none; }
  .escassez-bar { padding: 6px 12px; min-height: 52px; }

  .hero { padding: 100px 0 64px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { gap: 12px; }

  .consciousness-inner { flex-direction: column; gap: 20px; text-align: center; }

  .salas-section { padding: 64px 0; }
  .sala-card { padding: 24px 20px; }
  .card-title { font-size: 1.3rem; }

  .ganesha-section { padding: 64px 0; }
  .ganesha-grid { padding: 28px 20px; }

  .como-funciona { padding: 64px 0; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .step-connector { display: none; }

  .autoridade-section { padding: 64px 0; }
  .avatar-placeholder { width: 120px; height: 120px; font-size: 3.5rem; }

  .contato-section { padding: 64px 0; }
  .contato-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .cta-final { padding: 80px 0; }

  .section-header { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════════
   HIDE HELPER
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .hide-mobile { display: none; }
}
