/* ============================================================
   BUSCADORA ASTRAL - DESIGN SYSTEM & ESTILOS PRINCIPAIS
   ============================================================ */

:root {
  /* Paleta de Cores Mística e Numerológica */
  --bg-dark: #0d0414;
  --bg-primary: #140721;
  --bg-secondary: #1f0b33;
  --bg-wine: #300a24;
  --bg-wine-deep: #1e0516;
  --card-bg: rgba(26, 11, 42, 0.75);
  --card-bg-glass: rgba(36, 14, 58, 0.55);
  
  /* Acentos de Luz */
  --coral-accent: #ff6f59;
  --coral-light: #ff8a78;
  --coral-glow: rgba(255, 111, 89, 0.35);

  --violet-glow: rgba(186, 104, 255, 0.25);
  --violet-vivid: #a855f7;
  --violet-light: #c084fc;

  --gold-primary: #e5c365;
  --gold-light: #fae8a4;
  --gold-dark: #aa852b;
  --gold-glow: rgba(229, 195, 101, 0.3);

  --white-pure: #ffffff;
  --white-muted: #e2d9eb;
  --text-muted: #a69bb5;

  /* Estética Pergaminho Sagrado */
  --parchment-bg: #f6efe0;
  --parchment-bg-alt: #ece1c8;
  --parchment-text: #2c2014;
  --parchment-muted: #5e4a36;
  --parchment-border: #c8b082;
  --parchment-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(229, 195, 101, 0.15);

  /* Fontes */
  --font-serif-title: 'Cinzel', 'Marcellus', serif;
  --font-serif-sub: 'Cormorant Garamond', serif;
  --font-sans: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Transições & Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset Básico */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--white-pure);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(168, 85, 247, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(255, 111, 89, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(48, 10, 36, 0.4) 0%, transparent 60%);
  background-attachment: fixed;
}

/* Canvas de Poeira Estelar de Fundo */
#stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Container Global */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Tipografia Base */
h1, h2, h3, h4 {
  font-family: var(--font-serif-title);
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-serif-sub);
  font-size: 1.25rem;
  color: var(--white-muted);
  font-style: italic;
  margin-bottom: 3.5rem;
  letter-spacing: 0.03em;
}

.gold-text {
  color: var(--gold-primary);
  background: linear-gradient(135deg, #fae8a4 0%, #e5c365 50%, #aa852b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coral-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 111, 89, 0.15);
  border: 1px solid rgba(255, 111, 89, 0.35);
  color: var(--coral-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Divisor Místico */
.mystic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 2.5rem;
  opacity: 0.8;
}

.mystic-divider::before,
.mystic-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.mystic-divider span {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* ============================================================
   HEADER & NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.85rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(13, 4, 20, 0.9);
  border-bottom: 1px solid rgba(229, 195, 101, 0.2);
}

.site-header.scrolled {
  padding: 0.65rem 0;
  background: rgba(10, 2, 16, 0.96);
  border-bottom: 1px solid rgba(229, 195, 101, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Container fluído da Navbar */
.nav-container {
  width: 95%;
  max-width: 1420px;
  margin: 0 auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  object-fit: cover;
  box-shadow: 0 0 15px var(--gold-glow);
  transition: var(--transition-smooth);
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 25px var(--gold-glow);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 195, 101, 0.25) 0%, rgba(48, 10, 36, 0.8) 100%);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.15rem;
  box-shadow: 0 0 15px var(--gold-glow);
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 0 25px var(--gold-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--coral-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.15vw, 1.4rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  position: relative;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral-accent), var(--gold-primary));
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

/* Destaque do Oráculo na Navbar (Horizontal, Fina e Elegante) */
.nav-link.nav-highlight {
  color: var(--gold-light);
  background: rgba(229, 195, 101, 0.1);
  border: 1px solid rgba(229, 195, 101, 0.35);
  padding: 0.32rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  white-space: nowrap !important;
  box-shadow: 0 0 10px rgba(229, 195, 101, 0.12);
  line-height: 1.2;
}

.nav-link.nav-highlight:hover {
  background: rgba(229, 195, 101, 0.22);
  border-color: var(--gold-primary);
  box-shadow: 0 0 18px rgba(229, 195, 101, 0.35);
  transform: translateY(-1px);
  color: #fff;
}

.nav-link.nav-highlight::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Botão Agendar Consulta na Navbar */
.btn-header-cta {
  background: linear-gradient(135deg, #fae8a4 0%, #e5c365 50%, #b88e2c 100%);
  color: #1a0418 !important;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  white-space: nowrap !important;
  box-shadow: 0 4px 18px rgba(229, 195, 101, 0.35);
  transition: var(--transition-smooth);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-header-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(229, 195, 101, 0.6);
  background: linear-gradient(135deg, #fff2be 0%, #f1d37e 50%, #c99e35 100%);
}

/* Menu Dropdown de Saberes & Terapias */
.nav-item-dropdown {
  position: relative;
  list-style: none;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.75rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(18, 5, 28, 0.96);
  border: 1px solid rgba(229, 195, 101, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(168, 85, 247, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 0.6rem 0;
  min-width: 220px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(18, 5, 28, 0.96);
  border-left: 1px solid rgba(229, 195, 101, 0.35);
  border-top: 1px solid rgba(229, 195, 101, 0.35);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.25rem;
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.dropdown-menu li a:hover {
  background: rgba(229, 195, 101, 0.12);
  color: var(--gold-light);
  padding-left: 1.5rem;
}

.dropdown-menu li a.drop-featured {
  color: #7ef5bd;
}

.dropdown-menu li a.drop-featured:hover {
  background: rgba(46, 213, 115, 0.15);
  color: #a8ffd5;
}

.drop-icon {
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7 0%, #6b21a8 50%, #3b092b 100%);
  color: var(--white-pure);
  border: 1px solid rgba(229, 195, 101, 0.4);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5), 0 0 15px var(--gold-glow);
}

.btn-gold {
  background: linear-gradient(135deg, #fae8a4 0%, #e5c365 50%, #b8972f 100%);
  color: #1a0826;
  border: 1px solid #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 195, 101, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(229, 195, 101, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #fae8a4 50%, #e5c365 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-pure);
  border: 1px solid rgba(229, 195, 101, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(229, 195, 101, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-coral {
  background: linear-gradient(135deg, #ff8a78 0%, #ff6f59 50%, #d83d26 100%);
  color: var(--white-pure);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px var(--coral-glow);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 111, 89, 0.6);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: url('../assets/hero_bg.jpg') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(20, 7, 33, 0.65) 0%, rgba(13, 4, 20, 0.95) 85%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--white-muted);
  margin-bottom: 2rem;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.8;
}

.hero-quote {
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.2rem;
  margin-bottom: 2.2rem;
  font-family: var(--font-serif-sub);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold-light);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

/* Widget do Céu de Hoje & Fase Lunar */
.celestial-widget {
  background: linear-gradient(145deg, rgba(38, 16, 62, 0.82) 0%, rgba(18, 7, 34, 0.92) 100%);
  border: 1px solid rgba(229, 195, 101, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(168, 85, 247, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.celestial-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(229, 195, 101, 0.09) 0%, transparent 60%);
  pointer-events: none;
  animation: rotateGlow 25s linear infinite;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(229, 195, 101, 0.18);
  padding-bottom: 0.9rem;
}

.widget-header-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.widget-title {
  font-family: var(--font-serif-title);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.widget-sign-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.28), rgba(255, 111, 89, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.45);
  color: #f3e8ff;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(168, 85, 247, 0.2);
}

.widget-date {
  font-size: 0.82rem;
  color: var(--coral-light);
  font-weight: 500;
}

.moon-phase-display {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.moon-visual {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9e6, #d4be93 60%, #4a3827 100%);
  box-shadow: 0 0 25px rgba(254, 241, 184, 0.45), inset -5px -5px 15px rgba(0,0,0,0.6);
  flex-shrink: 0;
  position: relative;
  transition: all 0.5s ease;
}

/* Fases da Lua visuais */
.moon-visual.moon-waning {
  background: radial-gradient(circle at 75% 40%, #fff9e6 0%, #d4be93 35%, #241432 70%);
  box-shadow: 0 0 20px rgba(254, 241, 184, 0.35), inset 4px -4px 10px rgba(0,0,0,0.7);
}

.moon-visual.moon-waxing {
  background: radial-gradient(circle at 25% 40%, #fff9e6 0%, #d4be93 35%, #241432 70%);
  box-shadow: 0 0 20px rgba(254, 241, 184, 0.35), inset -4px -4px 10px rgba(0,0,0,0.7);
}

.moon-visual.moon-full {
  background: radial-gradient(circle at 45% 45%, #ffffff 0%, #fff6d6 45%, #cca762 100%);
  box-shadow: 0 0 30px rgba(254, 241, 184, 0.65), 0 0 10px rgba(229, 195, 101, 0.8);
}

.moon-visual.moon-new {
  background: radial-gradient(circle at 50% 50%, #2b1240 0%, #150722 80%, #0d0414 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3), inset 0 0 12px rgba(0,0,0,0.8);
}

.moon-info h4 {
  font-family: var(--font-serif-title);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  color: #fff9e6;
  line-height: 1.25;
}

.moon-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.daily-energy {
  background: linear-gradient(135deg, rgba(15, 6, 26, 0.75), rgba(32, 12, 50, 0.6));
  border: 1px solid rgba(229, 195, 101, 0.25);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.daily-energy h5 {
  font-size: 0.82rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.daily-energy p {
  font-size: 0.88rem;
  color: #ede9fe;
  font-style: italic;
  line-height: 1.45;
}

/* ============================================================
   SEÇÃO SOBRE - O SONHO DO PERGAMINHO
   ============================================================ */
.about-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-primary) 50%, var(--bg-dark) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(229, 195, 101, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px var(--violet-glow);
}

.about-image-frame img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.parchment-badge-float {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: var(--parchment-bg);
  color: var(--parchment-text);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--parchment-border);
  box-shadow: var(--parchment-shadow);
  max-width: 240px;
  font-family: var(--font-serif-sub);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  z-index: 3;
}

.parchment-badge-float::before {
  content: '✦';
  color: var(--gold-dark);
  margin-right: 0.4rem;
}

/* Card Estilo Pergaminho para a Narrativa */
.parchment-card {
  background: var(--parchment-bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(200, 176, 130, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(184, 151, 47, 0.15) 0%, transparent 60%);
  color: var(--parchment-text);
  padding: 2.8rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--parchment-border);
  box-shadow: var(--parchment-shadow);
  position: relative;
}

.parchment-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px dashed rgba(170, 133, 43, 0.45);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
}

.parchment-card h3 {
  color: #4a1525;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  text-shadow: none;
}

.parchment-card p {
  font-size: 1.05rem;
  color: var(--parchment-muted);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.parchment-card .quote-highlight {
  font-family: var(--font-serif-sub);
  font-size: 1.25rem;
  font-style: italic;
  color: #3b092b;
  border-left: 3px solid var(--gold-dark);
  padding-left: 1rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.numerology-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.num-pill {
  background: rgba(61, 12, 46, 0.08);
  border: 1px solid rgba(170, 133, 43, 0.35);
  color: #3d0c2e;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================================
   SEÇÃO CATÁLOGO DE ATENDIMENTOS & LEITURAS
   ============================================================ */
.services-section {
  padding: 100px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg-glass);
  border: 1px solid rgba(229, 195, 101, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--violet-vivid), var(--gold-primary), var(--coral-accent));
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px var(--violet-glow);
}

.service-card:hover::before {
  opacity: 1;
  height: 6px;
}

.service-tag-header {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-light);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.service-title {
  font-family: var(--font-serif-title);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, #fae8a4 0%, #e5c365 60%, #ff8a78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✧';
  color: var(--coral-light);
}

.service-action {
  margin-top: auto;
}

.btn-whatsapp-service {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   ORÁCULO DO PERGAMINHO - CARTA DO DIA (INTERATIVO)
   ============================================================ */
.oracle-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(31, 11, 51, 0.7) 0%, var(--bg-dark) 80%);
}

.oracle-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.oracle-deck-area {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.cards-spread {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  perspective: 1000px;
  margin-bottom: 2rem;
}

.tarot-card {
  width: 140px;
  height: 235px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.tarot-card:hover:not(.revealed) {
  transform: translateY(-12px) scale(1.04);
}

.tarot-card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.card-back {
  background: linear-gradient(155deg, #3b1058 0%, #5d1a80 45%, #240838 100%);
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.7), 0 0 22px rgba(168, 85, 247, 0.35), inset 0 0 18px rgba(229, 195, 101, 0.2);
}

.card-back-pattern {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(229, 195, 101, 0.55);
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.2) 0%, transparent 75%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.3rem;
  border-radius: 4px;
}

.card-back-star {
  font-size: 1.1rem;
  color: var(--gold-light);
  line-height: 1;
}

.card-back-brand {
  font-family: var(--font-serif-title);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fae8a4;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

.card-back-logo-wrapper {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #fae8a4, #e5c365, #ff6f59);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 15px rgba(229, 195, 101, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0.15rem 0;
  transition: transform 0.3s ease;
}

.tarot-card:hover .card-back-logo-wrapper {
  transform: scale(1.05) rotate(4deg);
}

.card-back-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) brightness(1.02);
}

.card-back-hint {
  font-size: 0.65rem;
  color: #fdf8e6;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(20, 6, 32, 0.65);
  border: 1px solid rgba(229, 195, 101, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.card-front {
  background: #190924;
  border: 2px solid var(--gold-primary);
  color: var(--white-pure);
  transform: rotateY(180deg);
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.tarot-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(229, 195, 101, 0.45);
}

.tarot-card-caption {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4px;
}

.tarot-card-caption strong {
  font-family: var(--font-serif-title);
  font-size: 0.78rem;
  color: var(--gold-light);
  line-height: 1.1;
  text-align: center;
}

.tarot-card-caption span {
  font-size: 0.64rem;
  color: var(--coral-light);
  letter-spacing: 0.04em;
}

.tarot-card.revealed {
  transform: rotateY(180deg) scale(1.08);
  box-shadow: 0 0 35px var(--gold-glow);
}

/* Modal / Card da Revelação da Carta */
.oracle-result-box {
  display: none;
  background: var(--parchment-bg);
  color: var(--parchment-text);
  border-radius: var(--radius-md);
  border: 2px solid var(--parchment-border);
  padding: 2.2rem;
  max-width: 760px;
  margin: 1.8rem auto 0;
  box-shadow: var(--parchment-shadow);
  text-align: left;
  position: relative;
}

.oracle-result-box.active {
  display: block;
  animation: fadeInParchment 0.6s ease forwards;
}

.oracle-result-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
}

.oracle-result-card-side {
  display: flex;
  justify-content: center;
}

.result-card-img {
  width: 170px;
  height: 275px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.result-card-img:hover {
  transform: scale(1.02);
}

.oracle-card-titles h3 {
  font-size: 1.5rem;
  color: #3b092b;
  margin-bottom: 0.2rem;
}

.oracle-card-titles span {
  font-family: var(--font-serif-sub);
  font-style: italic;
  color: #7a5c3d;
  font-size: 1.05rem;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.oracle-message {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--parchment-muted);
  margin-bottom: 1.2rem;
}

.oracle-advice {
  background: rgba(61, 12, 46, 0.06);
  border-left: 3px solid #731a54;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: #2e0922;
  margin-bottom: 1.4rem;
  font-weight: 500;
  border-radius: 0 6px 6px 0;
}

.oracle-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Grid de 3 Colunas para a Seção CONSULTA ONLINE */
@media (min-width: 992px) {
  .services-three-col {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 680px) {
  .oracle-result-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.2rem;
  }
  .oracle-actions {
    justify-content: center;
  }
}

/* ============================================================
   BIBLIOTECA ASTRAL / E-BOOKS & INFOPRODUTOS
   ============================================================ */
.ebooks-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(229, 195, 101, 0.08) 0%, transparent 55%);
}

.ebook-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(28, 9, 41, 0.9) 0%, rgba(14, 3, 22, 0.97) 100%);
  border: 1px solid rgba(229, 195, 101, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(168, 85, 247, 0.15);
  position: relative;
  overflow: hidden;
}

.ebook-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-primary), var(--gold-primary), var(--coral-accent));
}

.ebook-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ebook-frame {
  position: relative;
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(229, 195, 101, 0.3);
  border: 2px solid rgba(229, 195, 101, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.ebook-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 195, 101, 0.5);
}

.ebook-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ebook-badge-tag {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 4, 20, 0.9);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.ebook-info-col {
  display: flex;
  flex-direction: column;
}

.ebook-badge-stars {
  color: var(--gold-primary);
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.ebook-badge-stars span {
  color: var(--coral-light);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  margin-left: 0.5rem;
  font-weight: 600;
}

.ebook-main-title {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--white-pure);
}

.ebook-lead {
  color: var(--white-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.ebook-highlights h4 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.ebook-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.ebook-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.55;
}

.check-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ebook-checklist strong {
  color: var(--gold-light);
}

/* Box de Preço e Acesso Eduzz */
.ebook-pricing-box {
  background: rgba(13, 4, 20, 0.75);
  border: 1px solid rgba(229, 195, 101, 0.35);
  border-radius: var(--radius-md);
  padding: 1.8rem 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(229, 195, 101, 0.25);
}

.price-wrapper {
  display: flex;
  flex-direction: column;
}

.old-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.current-price {
  display: flex;
  align-items: baseline;
  color: var(--gold-light);
  line-height: 1;
}

.current-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 0.2rem;
}

.current-price .amount {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-serif-title);
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(229, 195, 101, 0.3);
}

.current-price .cents {
  font-size: 1.5rem;
  font-weight: 700;
}

.price-sub {
  font-size: 0.78rem;
  color: var(--coral-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

.security-badges {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.security-badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-eduzz {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
}

.btn-eduzz:hover {
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.55);
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================================
   AUTOCONHECIMENTO (BLOG ESTILO PERSONARE)
   ============================================================ */
.blog-section {
  padding: 100px 0;
  position: relative;
}

.areas-vida-wrapper {
  margin-bottom: 2.8rem;
}

.areas-vida-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-btn {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(229, 195, 101, 0.45);
  color: #ffffff;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #fae8a4 0%, #e5c365 70%, #d4a738 100%);
  border-color: #fef1b8;
  color: #1e0516;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(229, 195, 101, 0.5), 0 0 12px rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.blog-search {
  position: relative;
  min-width: 250px;
}

.blog-search input {
  width: 100%;
  background: rgba(20, 7, 33, 0.85);
  border: 1px solid rgba(229, 195, 101, 0.3);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.2rem 0.55rem 2.4rem;
  color: var(--white-pure);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-smooth);
}

.blog-search input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
}

.blog-search::before {
  content: '🔍';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Grid Harmonizado de Cards Estilo Personare */
.personare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

.personare-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.personare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(168, 85, 247, 0.25);
}

.personare-card-media {
  width: 100%;
  height: 185px;
  overflow: hidden;
  position: relative;
  background: #190924;
}

.personare-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.personare-card:hover .personare-card-img {
  transform: scale(1.08);
}

.personare-card-body {
  padding: 1.35rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  color: #1e1b2e;
}

.personare-card-category {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a2be2;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.personare-card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #1a162b;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.personare-card-excerpt {
  font-size: 0.88rem;
  color: #5a556b;
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.personare-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.9rem;
  border-top: 1px solid #f0edf5;
  margin-top: auto;
}

.personare-author-avatar-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-primary);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.personare-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #ff6f59);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

.personare-author-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.personare-author-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: #1e1b2e;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.personare-author-role {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 500;
}

.personare-card-arrow {
  color: #8a2be2;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.personare-card:hover .personare-card-arrow {
  transform: translateX(4px);
}

/* ============================================================
   MODAL DE LEITURA DO ARTIGO (ESTILO PERGAMINHO / LIVRO)
   ============================================================ */
.article-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 4, 20, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-y: auto;
}

.article-modal.active {
  display: flex;
}

.article-modal-content {
  background: var(--parchment-bg);
  color: var(--parchment-text);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  border: 2px solid var(--parchment-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow);
  padding: 3rem;
  position: relative;
  animation: modalPop 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(61, 12, 46, 0.1);
  border: 1px solid var(--parchment-border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--parchment-text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: #3b092b;
  color: #fff;
}

.article-header {
  border-bottom: 2px solid var(--parchment-border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.article-title {
  font-family: var(--font-serif-title);
  font-size: 2rem;
  color: #3b092b;
  line-height: 1.3;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--parchment-muted);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h3 {
  color: #53113d;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.article-body blockquote {
  font-family: var(--font-serif-sub);
  font-size: 1.3rem;
  font-style: italic;
  color: #3d0c2e;
  border-left: 3px solid var(--gold-dark);
  padding-left: 1.2rem;
  margin: 1.8rem 0;
}

/* ============================================================
   SEÇÃO DO CANAL DO YOUTUBE
   ============================================================ */
.youtube-section {
  padding: 90px 0;
  position: relative;
  background: radial-gradient(circle at 80% 40%, rgba(255, 0, 0, 0.07) 0%, transparent 60%),
              radial-gradient(circle at 20% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
}

.youtube-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(28, 9, 41, 0.9) 0%, rgba(15, 3, 23, 0.96) 100%);
  border: 1px solid rgba(229, 195, 101, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 195, 101, 0.15);
  position: relative;
  overflow: hidden;
}

.youtube-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff0000, #ff6f59, #e5c365);
}

.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.4);
  color: #ff6b6b;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.yt-play-icon {
  color: #ff0000;
  font-size: 0.9rem;
}

.youtube-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
  font-weight: 600;
}

.btn-youtube:hover {
  background: linear-gradient(135deg, #ff2a2a 0%, #e60000 100%);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.youtube-player-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(229, 195, 101, 0.35);
  background: #000;
}

.video-container {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
}

.video-placeholder-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(48, 10, 36, 0.92) 0%, rgba(10, 2, 16, 0.98) 100%);
  color: #fff;
  text-decoration: none;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.video-placeholder-card:hover {
  background: radial-gradient(circle, rgba(65, 12, 49, 0.95) 0%, rgba(15, 3, 23, 1) 100%);
}

.video-play-btn-large {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000 0%, #b30000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6), 0 0 15px rgba(229, 195, 101, 0.4);
  margin-bottom: 1.2rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.video-placeholder-card:hover .video-play-btn-large {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.8), 0 0 25px rgba(229, 195, 101, 0.6);
}

/* ============================================================
   DEPOIMENTOS & RELATOS
   ============================================================ */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-wine-deep) 50%, var(--bg-dark) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--card-bg-glass);
  border: 1px solid rgba(229, 195, 101, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-badge-service {
  display: inline-block;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(229, 195, 101, 0.12);
  border: 1px solid rgba(229, 195, 101, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.9rem;
}

.testimonial-stars {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-text {
  font-family: var(--font-serif-sub);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-accent), var(--bg-wine));
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 10px rgba(229, 195, 101, 0.2);
}

.author-info h4 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.1rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Banner para envio de novos relatos */
.send-testimonial-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, rgba(38, 12, 54, 0.85) 0%, rgba(18, 4, 28, 0.95) 100%);
  border: 1px solid rgba(229, 195, 101, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 195, 101, 0.1);
}

.send-testimonial-banner .banner-icon {
  font-size: 2.8rem;
  background: rgba(229, 195, 101, 0.12);
  border: 1px solid rgba(229, 195, 101, 0.35);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.send-testimonial-banner .banner-text h3 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.send-testimonial-banner .banner-text p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 650px;
}

/* ============================================================
   CALL TO ACTION & FOOTER
   ============================================================ */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cta-box {
  background: linear-gradient(135deg, rgba(48, 10, 36, 0.8) 0%, rgba(20, 7, 33, 0.95) 100%);
  border: 1px solid rgba(229, 195, 101, 0.35);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  color: var(--white-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

/* Footer */
.site-footer {
  background: #08020d;
  border-top: 1px solid rgba(229, 195, 101, 0.15);
  padding: 60px 0 30px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* Botão Flutuante do WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 20px rgba(229, 195, 101, 0.3);
  text-decoration: none;
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulseWhatsApp 3s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ============================================================ */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .ebook-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ebook-showcase {
    padding: 2.5rem;
  }

  .youtube-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }

  .send-testimonial-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }

  .send-testimonial-banner .banner-text p {
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1080px) {
  .nav-links, .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-menu-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 4, 20, 0.98);
    padding: 1.8rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--gold-primary);
    max-height: 85vh;
    overflow-y: auto;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(26, 8, 38, 0.95);
    border: 1px solid rgba(229, 195, 101, 0.25);
    box-shadow: none;
    margin-top: 0.6rem;
    padding: 0.4rem 0;
    border-radius: var(--radius-sm);
  }

  .nav-item-dropdown .dropdown-menu::before {
    display: none;
  }

  .nav-item-dropdown .dropdown-menu li a {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-modal-content {
    padding: 1.8rem;
  }
}
