/* ============================================================
   Astral Livre — Production Stylesheet
   ============================================================ */

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

:root {
  --cosmic-50: #E6F5FF;
  --cosmic-100: #00C2FF;
  --cosmic-300: #00A2FF;
  --cosmic-500: #0055D4;
  --cosmic-700: #004BFF;
  --cosmic-900: #001C55;
  --cosmic-950: #021133;
  --gold-50: #FFE680;
  --gold-100: #FFD700;
  --gold-300: #D4AF37;
  --gold-500: #C5A059;
  --gold-700: #9A7B33;
  --gold-900: #73571A;
  --gradient-cosmic: linear-gradient(135deg, #001C55 0%, #004BFF 50%, #00C2FF 100%);
  --gradient-gold: linear-gradient(135deg, #FFE680 0%, #FFD700 35%, #D4AF37 70%, #9A7B33 100%);
}

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: #fff;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: color 300ms ease; }
.italic { font-style: italic; }

/* ── Utilities ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 7rem 0; position: relative; }

.text-cosmic {
  background: linear-gradient(135deg, #E6F5FF 0%, #00C2FF 50%, #00A2FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gold-inline { color: var(--gold-100); }

.eyebrow {
  font-size: 0.7rem; font-family: "Inter", sans-serif; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-100);
}
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
  margin: 1.5rem 0;
}
.gold-divider.center { max-width: 200px; margin: 2rem auto 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; }
.section-sub {
  margin-top: 1.5rem; color: rgba(255,255,255,0.65);
  max-width: 540px; margin-left: auto; margin-right: auto;
}

/* ── Cosmic Background ─────────────────────────────────────── */
.cosmic-bg-wrap {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none; background: #000;
}
.nebula {
  position: absolute; inset: 0; opacity: 0.85;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0,162,255,0.28), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(212,175,55,0.18), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0,75,255,0.32), transparent 60%);
}
.grid-overlay {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,215,0,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}
.star-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit-svg { position: absolute; top: -160px; right: -160px; width: 700px; height: 700px; opacity: 0.2; }
.bg-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, transparent 60%, rgba(0,0,0,0.5));
}

/* ── Glass Card ────────────────────────────────────────────── */
.glass-card {
  background: linear-gradient(180deg, rgba(0,28,85,0.45) 0%, rgba(2,17,51,0.65) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.18);
  transition: all 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Buttons ───────────────────────────────────────────────── */
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.85rem; border-radius: 999px;
  background: var(--gradient-gold); color: #021133;
  font-family: "Inter", sans-serif;
  font-weight: 500; font-size: 0.875rem; border: none; cursor: pointer;
  white-space: nowrap; box-shadow: 0 10px 40px -10px rgba(255,215,0,0.5);
  transition: all 400ms ease;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -10px rgba(255,215,0,0.7), 0 0 80px rgba(0,194,255,0.3);
  color: #021133;
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.85rem; border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.4); background: rgba(0,28,85,0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--gold-100); font-family: "Inter", sans-serif;
  font-weight: 500; font-size: 0.875rem; cursor: pointer; white-space: nowrap;
  transition: all 300ms ease;
}
.btn-secondary:hover {
  border-color: var(--gold-100); background: rgba(212,175,55,0.12); color: #fff;
}
.btn-secondary svg, .cta-button svg { flex-shrink: 0; }

/* ── Header ────────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 0; transition: all 300ms ease;
  background: rgba(2,17,51,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}
header.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,175,55,0.22);
  padding: 0.75rem 0;
}
.header-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.logo-section { display: flex; align-items: center; gap: 0.85rem; flex-shrink: 0; }
.logo-img { width: 52px; height: 52px; object-fit: contain; transition: transform 400ms ease; }
.logo-section:hover .logo-img { transform: rotate(8deg); }
.logo-text h1 {
  font-size: 1.15rem;
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0.08em;
}
.logo-text p { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-500); }
nav { display: flex; gap: 1.75rem; flex: 1; justify-content: center; }
nav a { font-size: 0.85rem; color: rgba(255,255,255,0.7); position: relative; padding-bottom: 0.25rem; }
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold-100); transition: width 300ms ease;
}
nav a:hover { color: var(--gold-100); }
nav a:hover::after { width: 100%; }

/* ── Nav dropdown ──────────────────────────────────────────── */
.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-drop > a::after { display: none; }
.nav-drop > a .drop-arrow {
  width: 10px; height: 10px; opacity: 0.55;
  transition: transform 250ms ease; flex-shrink: 0;
}
.nav-drop:hover > a .drop-arrow { transform: rotate(180deg); opacity: 1; }
.drop-menu {
  position: absolute; top: 100%; left: 50%;
  background: rgba(2,17,51,0.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  padding: 14px 0 0.5rem;
  min-width: 160px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.drop-menu::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 14px;
}
.nav-drop:hover .drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.drop-menu a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}
.drop-menu a:hover { color: var(--gold-100); background: rgba(212,175,55,0.07); }
.drop-menu a::after { display: none !important; }
.drop-icon { font-size: 0.95rem; flex-shrink: 0; }

/* Mobile menu */
.menu-btn {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; flex-shrink: 0;
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-100); border-radius: 2px;
  transition: all 300ms ease;
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: rgba(0,0,0,0.95); border-top: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  max-height: 0; overflow: hidden; transition: max-height 400ms ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  display: block; padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: all 200ms ease;
}
.mobile-nav a:hover { color: var(--gold-100); background: rgba(212,175,55,0.05); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 8rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.hero-orbit {
  position: absolute; width: 820px; height: 820px;
  max-width: 90vmin; max-height: 90vmin;
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.hero-orbit::before, .hero-orbit::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.25);
}
.hero-orbit::after {
  inset: 80px; border-color: rgba(0,162,255,0.18); border-style: dashed;
}
.hero-content { max-width: 1280px; text-align: center; z-index: 10; position: relative; }
.hero-mark {
  position: relative; width: 140px; height: 140px; margin: 0 auto 2rem;
  animation: float 8s ease-in-out infinite;
}
.hero-mark-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(0,162,255,0.45), transparent 60%);
  filter: blur(20px);
}
.hero-mark-img { position: relative; width: 100%; height: 100%; object-fit: contain; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
  border: 1px solid rgba(212,175,55,0.3); border-radius: 999px;
  background: rgba(2,17,51,0.4); backdrop-filter: blur(8px);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-50); margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 6px; height: 6px; background: var(--gold-100); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem); line-height: 1.05;
  margin-bottom: 2.5rem; font-weight: 500;
}
.hero h1 .cosmic {
  display: block;
  background: linear-gradient(135deg, #E6F5FF 0%, #00C2FF 50%, #00A2FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .gold {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.hero > .hero-content > p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-footer {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-top: 5rem; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-footer .divider { width: 30px; height: 1px; background: rgba(212,175,55,0.4); }

/* ── Services ──────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; }
.service-card:hover {
  border-color: rgba(255,215,0,0.45);
  box-shadow: 0 30px 80px -20px rgba(0,162,255,0.35);
  transform: translateY(-4px);
}
.service-card.featured { grid-column: span 2; }
.service-top {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 16px;
  background: linear-gradient(135deg, var(--cosmic-900), var(--cosmic-950));
  border: 1px solid rgba(154,123,51,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--gold-100);
}
.service-badge {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-100);
  border: 1px solid rgba(154,123,51,0.4); border-radius: 999px; padding: 0.3rem 0.8rem;
}
.service-card h3 { font-size: 1.6rem; }
.service-desc { margin-top: 0.75rem; color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 1.65; flex: 1; }
.service-options { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-option {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(154,123,51,0.2); padding-top: 0.5rem; font-size: 0.85rem;
}
.service-option span:first-child { color: rgba(255,255,255,0.7); }
.service-option .price { font-weight: 600; }
.service-link {
  margin-top: 0; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--gold-100);
}
.service-link:hover { color: #fff; }
.service-actions {
  margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; flex-wrap: wrap;
}
.service-info-btn {
  display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35); background: rgba(0,28,85,0.3);
  color: var(--gold-50); white-space: nowrap; transition: all 250ms ease;
  font-family: "Inter", sans-serif;
}
.service-info-btn:hover { border-color: var(--gold-100); color: #fff; background: rgba(212,175,55,0.1); }

.raios-panel { border-radius: 24px; padding: 2.5rem; margin-top: 4rem; }
.raios-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.raios-head h3 { font-size: 2rem; margin-top: 0.75rem; }
.raios-desc { margin-top: 0.75rem; color: rgba(255,255,255,0.65); max-width: 540px; font-size: 0.875rem; }
.raios-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1rem; }
.raio-card {
  position: relative; aspect-ratio: 3/4; border-radius: 16px;
  border: 1px solid rgba(154,123,51,0.2); background: rgba(2,17,51,0.6);
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end; padding: 1rem;
  transition: all 300ms ease;
}
.raio-card:hover { border-color: rgba(255,215,0,0.6); }
.raio-glow { position: absolute; inset: 0; opacity: 0.5; transition: opacity 300ms ease; }
.raio-card:hover .raio-glow { opacity: 0.85; }
.raio-orb { position: relative; width: 52px; height: 52px; border-radius: 50%; margin-bottom: 0.75rem; }
.raio-name { position: relative; font-size: 0.72rem; color: rgba(255,255,255,0.85); text-align: center; font-weight: 500; }

/* ── Method C.L.A.R.O. ─────────────────────────────────────── */
.claro-container { max-width: 1100px; }
.claro-timeline { position: relative; display: flex; flex-direction: column; gap: 4rem; }
.claro-line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(154,123,51,0.4) 15%, rgba(154,123,51,0.4) 85%, transparent);
}
.claro-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.claro-right .claro-text { order: 2; text-align: left; }
.claro-right .claro-letter-wrap { order: 1; justify-self: flex-end; }
.claro-left .claro-text { text-align: right; }
.claro-left .claro-letter-wrap { justify-self: flex-start; }
.claro-step-label { font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-100); margin-bottom: 0.5rem; font-weight: 600; }
.claro-title { font-size: 2.25rem; }
.claro-desc { margin-top: 0.75rem; color: rgba(255,255,255,0.65); max-width: 400px; display: inline-block; }
.claro-left .claro-desc { margin-left: auto; }
.claro-letter-wrap { position: relative; }
.claro-letter-glow {
  position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(0,162,255,0.35), transparent 65%); filter: blur(20px);
}
.claro-letter {
  position: relative; width: 160px; height: 160px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.claro-letter-text {
  font-family: "Cormorant Garamond", serif; font-size: 5rem; font-weight: 500;
  text-shadow: 0 0 30px rgba(255,215,0,0.4); display: inline-block; font-style: italic;
}

/* ── Chama Trina ───────────────────────────────────────────── */
.chama-intro { margin-top: 1.5rem; color: rgba(255,255,255,0.7); font-style: italic; font-size: 1.15rem; }
.chama-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: start; margin-bottom: 3rem; }
.chama-text { border-radius: 24px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.forcas-list { display: flex; flex-direction: column; gap: 1rem; }
.forca-card { border-radius: 18px; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.forca-orb {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.forca-label { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; letter-spacing: 0.05em; font-weight: 500; }
.forca-desc { color: rgba(255,255,255,0.7); font-family: "Inter", sans-serif; font-size: 0.95rem; font-weight: 400; letter-spacing: 0; }
.forca-details { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

.recebera-panel { border-radius: 24px; padding: 2.5rem 3rem; margin-bottom: 2rem; text-align: center; }
.recebera-title { font-size: 1.85rem; }
.recebera-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem; text-align: left;
}
.recebera-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.recebera-icon { color: var(--gold-100); flex-shrink: 0; margin-top: 2px; }

.semanas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.semana-card { border-radius: 24px; padding: 1.85rem; position: relative; overflow: hidden; }
.semana-num { font-size: 0.65rem; letter-spacing: 0.3em; font-weight: 600; }
.semana-title { font-family: "Cormorant Garamond", serif; font-size: 1.85rem; margin-top: 0.5rem; font-weight: 500; }
.semana-desc { margin-top: 0.75rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.info-bar { border-radius: 24px; padding: 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.info-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
.info-icon { color: var(--gold-100); }
.info-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.info-value { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 500; }
.info-value-white { color: #fff; font-size: 0.9rem; }

.chama-cta { border-radius: 24px; padding: 2.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.chama-cta p { color: rgba(255,255,255,0.75); max-width: 640px; line-height: 1.7; }

/* ── Journey ───────────────────────────────────────────────── */
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.journey-card { border-radius: 28px; padding: 2.5rem; display: flex; flex-direction: column; }
.journey-ouro {
  border-color: rgba(255,215,0,0.5);
  box-shadow: 0 0 50px -10px rgba(255,215,0,0.25);
  background: linear-gradient(180deg, rgba(2,17,51,0.9), rgba(0,0,0,0.95));
}
.journey-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.journey-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.journey-badge.bronze { color: #c8a27a; }
.journey-badge.prata { color: #d8d8e0; }
.journey-badge.ouro { color: var(--gold-100); }
.journey-duration { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.journey-card h3 { font-size: 2.1rem; }
.journey-price { font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 600; margin-top: 0.5rem; color: #fff; }
.journey-ouro .journey-price { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.journey-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.journey-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.check-icon { color: var(--gold-100); flex-shrink: 0; margin-top: 2px; }
.journey-cta { width: 100%; }

/* ── Formations / Reiki ────────────────────────────────────── */
.reiki-levels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.reiki-level { border-radius: 24px; padding: 1.75rem; position: relative; overflow: hidden; }
.reiki-bignum {
  position: absolute; top: -2rem; right: -1rem;
  font-family: "Cormorant Garamond", serif; font-size: 8rem;
  color: rgba(255,215,0,0.05); line-height: 1; pointer-events: none;
}
.reiki-level-inner { position: relative; }
.reiki-name { font-size: 1.5rem; margin-top: 0.5rem; }
.reiki-prices { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.reiki-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.5rem; border-top: 1px solid rgba(154,123,51,0.2); font-size: 0.85rem;
}
.reiki-price-row span:first-child { color: rgba(255,255,255,0.6); }
.reiki-price-row .price { font-weight: 600; }
.reiki-agenda { border-radius: 24px; padding: 2.5rem 2.5rem 1rem; }
.reiki-agenda-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.5rem; }
.reiki-agenda-icon { color: var(--gold-100); }
.reiki-agenda-title { font-size: 1.75rem; }
.reiki-schedule { list-style: none; }
.reiki-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
  border-top: 1px solid rgba(154,123,51,0.18); color: rgba(255,255,255,0.8);
}
.reiki-row:first-child { border-top: none; }
.reiki-row.exclusive { color: var(--gold-100); }
.reiki-row-left { display: flex; align-items: center; gap: 0.75rem; }
.reiki-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.reiki-star { color: var(--gold-100); flex-shrink: 0; }
.reiki-row-right { font-size: 0.85rem; }
.reiki-time { color: rgba(255,255,255,0.6); }

/* ── About ─────────────────────────────────────────────────── */
.about-container { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; max-width: 1100px; }
.about-photo-wrap { position: relative; }
.about-photo-glow {
  position: absolute; inset: -1rem; border-radius: 2rem;
  background: radial-gradient(ellipse at center, rgba(0,162,255,0.35), transparent 70%);
  filter: blur(40px);
}
.about-photo-frame { position: relative; aspect-ratio: 1; border-radius: 24px; padding: 0.75rem; }
.about-photo { position: relative; height: 100%; width: 100%; border-radius: 18px; overflow: hidden; }
.about-photo img { height: 100%; width: 100%; object-fit: cover; }
.about-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%); }
.about-photo-tl { position: absolute; top: 1.25rem; left: 1.25rem; font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-100); }
.about-photo-br { position: absolute; bottom: 1.25rem; right: 1.25rem; font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.about-content h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.1; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; }
.about-strong { color: rgba(255,255,255,0.95); }
.about-italic { font-style: italic; color: rgba(255,230,128,0.8); }

/* ── Testimonials ──────────────────────────────────────────── */
.marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: drift 60s linear infinite; padding: 0 1.5rem;
}
.marquee-track:hover { animation-play-state: paused; }
.testimonial-card { border-radius: 24px; padding: 2rem; width: 400px; flex-shrink: 0; }
.quote-icon { color: rgba(255,215,0,0.5); margin-bottom: 1rem; }
.testimonial-text { color: rgba(255,255,255,0.8); line-height: 1.7; font-size: 0.95rem; }
.testimonial-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; }
.testimonial-name { color: #fff; font-weight: 500; }
.testimonial-role { font-size: 0.72rem; color: rgba(255,215,0,0.8); }
.stars { color: var(--gold-100); letter-spacing: 2px; font-size: 0.85rem; }

/* ── Blog ──────────────────────────────────────────────────── */
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.blog-head h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-top: 0.75rem; }
.blog-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-cat {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: 999px; border: 1px solid rgba(154,123,51,0.3);
  color: rgba(255,255,255,0.7); cursor: pointer; transition: all 300ms ease;
}
.blog-cat:hover { border-color: var(--gold-100); color: var(--gold-100); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { border-radius: 24px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; }
.blog-card:hover {
  border-color: rgba(255,215,0,0.4); transform: translateY(-4px);
  box-shadow: 0 30px 80px -20px rgba(0,162,255,0.3);
}
.blog-thumb {
  aspect-ratio: 5/3; position: relative;
  background: radial-gradient(ellipse at 30% 30%, rgba(0,162,255,0.4), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(212,175,55,0.3), transparent 60%), #021133;
}
.blog-thumb-stars {
  position: absolute; inset: 0; opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, #FFD700 1px, transparent 1.5px),
    radial-gradient(circle at 50% 80%, #fff 1px, transparent 1.5px);
  background-size: 80px 80px;
}
.blog-thumb-cat {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-100);
  padding: 0.3rem 0.7rem; border-radius: 999px; border: 1px solid rgba(255,215,0,0.4);
  background: rgba(0,0,0,0.4);
}
.blog-thumb-num { position: absolute; bottom: 1rem; right: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.blog-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-title { font-size: 1.4rem; color: #fff; line-height: 1.25; transition: color 300ms ease; }
.blog-card:hover .blog-title { color: var(--gold-100); }
.blog-excerpt { margin-top: 0.75rem; font-size: 0.85rem; color: rgba(255,255,255,0.65); flex: 1; }
.blog-read { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--gold-100); }

/* ── Contact ───────────────────────────────────────────────── */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; max-width: 1100px; }
.contact-left h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; margin-top: 1rem; }
.contact-sub { margin-top: 1.5rem; color: rgba(255,255,255,0.7); max-width: 380px; }
.contact-channels { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-channel { border-radius: 18px; padding: 1.1rem; display: flex; align-items: center; gap: 1rem; }
.contact-channel:hover { border-color: rgba(255,215,0,0.6); }
.contact-channel-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--cosmic-950);
  border: 1px solid rgba(154,123,51,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--gold-100); flex-shrink: 0;
}
.contact-channel-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.contact-channel-value { color: #fff; font-size: 0.9rem; }
.contact-form { border-radius: 28px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; }
.field label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-100); margin-bottom: 0.5rem; font-family: "Inter", sans-serif; }
.field input, .field select, .field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(154,123,51,0.4);
  outline: none; padding: 0.5rem 0; color: #fff; font-family: "Inter", sans-serif;
  font-size: 0.9rem; resize: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-100); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field select option { background: #000; color: #fff; }
.contact-submit { width: 100%; margin-top: 0.5rem; }
.form-success { display: none; text-align: center; padding: 1rem; color: var(--gold-100); }
.form-success.visible { display: block; }

/* ── Footer ────────────────────────────────────────────────── */
footer { border-top: 1px solid rgba(212,175,55,0.15); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.footer-brand-info h3 {
  font-size: 1.1rem;
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0.05em;
}
.footer-brand-info p { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-500); }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 360px; }
.footer-column h4 {
  font-family: "Inter", sans-serif; font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-100); margin-bottom: 1rem; font-weight: 600;
}
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-column a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-column a:hover { color: var(--gold-100); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 2rem;
}
.footer-tagline { letter-spacing: 0.3em; text-transform: uppercase; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-badge .dot { animation: none; }
  .hero-mark { animation: none; }
}

/* ── Hover glow global ─────────────────────────────────────── */
.glass-card:hover {
  border-color: rgba(255,215,0,0.42);
  box-shadow: 0 0 0 1px rgba(255,215,0,0.08) inset, 0 12px 40px -10px rgba(212,175,55,0.28);
}
.marquee-track .glass-card:hover { transform: none; }

/* ── WhatsApp FAB ──────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.75); }
.whatsapp-fab svg { flex-shrink: 0; }

/* ── Escola de Astrologia ──────────────────────────────────── */
.escola-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.escola-card { border-radius: 24px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.65; }
.escola-card-active { border-color: rgba(255,215,0,0.5); box-shadow: 0 0 50px -15px rgba(255,215,0,0.25); }
.escola-price { font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 600; color: var(--gold-100); line-height: 1; }
.escola-ativo { color: var(--gold-100) !important; }
.escola-modulo-titulo { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; font-weight: 500; color: #fff; }
.escola-info { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: auto; padding-top: 1rem; }
.escola-card .btn-secondary, .escola-card .cta-button { margin-top: auto; width: 100%; justify-content: center; }

.trilha-panel { border-radius: 24px; padding: 2.5rem; }
.trilha-title { font-size: 1.75rem; margin-bottom: 2rem; }
.trilha-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trilha-modulo {
  border-radius: 16px; padding: 1.25rem; position: relative;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(154,123,51,0.2);
  transition: border-color 300ms ease;
}
.trilha-modulo.done { border-color: rgba(154,123,51,0.4); }
.trilha-modulo.atual { border-color: rgba(255,215,0,0.6); box-shadow: 0 0 24px rgba(255,215,0,0.12); }
.trilha-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.4rem; font-family: "Inter", sans-serif; font-weight: 600; }
.trilha-nome { font-family: "Cormorant Garamond", serif; font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.trilha-modulo.done .trilha-nome { color: rgba(255,255,255,0.6); }
.trilha-modulo.atual .trilha-nome { color: var(--gold-100); }
.trilha-check { color: rgba(154,123,51,0.6); position: absolute; top: 0.85rem; right: 0.85rem; }
.trilha-badge-atual {
  position: absolute; top: 0.7rem; right: 0.7rem;
  font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-100); border: 1px solid rgba(255,215,0,0.4); border-radius: 999px;
  padding: 0.2rem 0.5rem; font-family: "Inter", sans-serif; font-weight: 600;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { display: none; }
  .menu-btn { display: flex; }
  .mobile-nav { display: flex; }
  .trilha-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid, .journey-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; }
  .raios-grid { grid-template-columns: repeat(4, 1fr); }
  .reiki-levels { grid-template-columns: repeat(2, 1fr); }
  .about-container, .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .chama-grid { grid-template-columns: 1fr; }
  .info-bar { grid-template-columns: repeat(2, 1fr); }
  .semanas-grid { grid-template-columns: 1fr 1fr; }
  .recebera-list { grid-template-columns: 1fr; }
  .claro-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .claro-row .claro-text, .claro-row .claro-letter-wrap { order: 0; text-align: center; justify-self: center; }
  .claro-row .claro-desc { margin: 0 auto; }
  .claro-line { display: none; }
}

@media (max-width: 680px) {
  .escola-pricing { grid-template-columns: 1fr; }
  .trilha-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 5rem 0; }
  .services-grid, .journey-grid, .blog-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .raios-grid { grid-template-columns: repeat(2, 1fr); }
  .reiki-levels { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons a { width: 100%; max-width: 320px; }
  .semanas-grid { grid-template-columns: 1fr; }
  .info-bar { grid-template-columns: 1fr 1fr; }
  .blog-head { flex-direction: column; align-items: flex-start; }
  .raios-head { flex-direction: column; align-items: flex-start; }
  .recebera-panel { padding: 2rem 1.5rem; }
  .chama-cta { padding: 2rem 1.5rem; }
}
