/* ==========================================================================
   DESIGN SYSTEM 2026 - CONGREGAÇÃO YAOHÚSHUA NO MUNDO
   Estética: Sacred Minimalist & Modern Editorial 2026
   Cores: Deep Royal Navy, Astral Indigo, Celestial Gold, Ultra-clean Slate
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  /* Paleta Base - Dark Mode (Default) */
  --bg-main: #060b18;
  --bg-surface: #0e172f;
  --bg-surface-elevated: #162244;
  --bg-glass: rgba(14, 23, 47, 0.82);
  --bg-glass-card: rgba(22, 34, 68, 0.72);
  
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-medium: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(212, 175, 55, 0.38);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #090e1a;

  /* Cores de Acento Sagradas */
  --gold-primary: #d4af37;
  --gold-glow: #e5c365;
  --gold-subtle: rgba(212, 175, 55, 0.15);
  --blue-heaven: #38bdf8;
  --blue-vibrant: #2563eb;
  --blue-subtle: rgba(56, 189, 248, 0.12);
  
  --crimson-soft: #f43f5e;
  --emerald-pure: #10b981;

  /* Tipografia */
  --font-display: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-editorial: 'Playfair Display', serif;

  /* Sombras e Iluminação */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);

  /* Dimensões e Layout Aperfeiçoados (Sem vazios laterais) */
  --max-width: 1380px;
  --max-width-narrow: 920px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode Sagrado Exclusivo e Perpétuo */
[data-theme="light"],
[data-theme="dark"],
:root {
  --bg-main: #060b18;
  --bg-surface: #0e172f;
  --bg-surface-elevated: #162244;
  --bg-glass: rgba(14, 23, 47, 0.82);
  --bg-glass-card: rgba(22, 34, 68, 0.72);
  
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-medium: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(212, 175, 55, 0.38);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #090e1a;

  --gold-primary: #d4af37;
  --gold-glow: #e5c365;
  --gold-subtle: rgba(212, 175, 55, 0.15);
  --blue-heaven: #38bdf8;
  --blue-vibrant: #2563eb;
  --blue-subtle: rgba(56, 189, 248, 0.12);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);
}

/* Reset Global e Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
  -webkit-font-smoothing: antialiased;
}

/* Tipografia Hierárquica */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-glow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container Responsivo com Distribuição Fluida */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin-left: auto;
  margin-right: auto;
}

/* Barra de Anúncio Superior */
.top-notice-bar {
  background: linear-gradient(90deg, #101c3d, #1a2f66, #101c3d);
  color: #e2e8f0;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-notice-bar span.badge {
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Navbar Flutuante Glassmorphic */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.25rem;
}

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

.brand-logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--gold-primary);
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Links de Navegação */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
  padding: 0.5rem 0.25rem;
  white-space: nowrap; /* Evita quebra feia como 'Quem \n Somos' */
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: var(--radius-full);
}

.dropdown-chevron {
  display: inline-block;
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

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

/* Dropdown Menu Desktop */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  list-style: none;
  z-index: 1050;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dropdown-item:hover {
  background: var(--gold-subtle);
  color: var(--gold-primary);
}

/* Ações da Navbar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.theme-toggle-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: rotate(15deg);
}

/* Botão Hamburger Redondinho Moderno */
.menu-toggle-mobile {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%; /* 100% redondinho */
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle-mobile:hover, .menu-toggle-mobile.open {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-subtle);
}

.menu-toggle-mobile .hamburger-line {
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.menu-toggle-mobile.open .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle-mobile.open .line-2 {
  opacity: 0;
}

.menu-toggle-mobile.open .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

/* Botões do Design System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #e5c365 0%, #d4af37 100%);
  color: #080d1a;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0cf78 0%, #ddb742 100%);
  color: #000;
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #080d1a;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   HERO SECTION 2026 COM NUVENS DE FUNDO (REF. IMAGEM)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
  background-image: url('../images/clouds_hero_bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(6, 11, 24, 0.65) 0%, rgba(6, 11, 24, 0.84) 100%);
  z-index: 0;
}



.hero-background-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 950px;
  height: 520px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, rgba(212, 175, 55, 0.16) 45%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-subtle);
  color: var(--gold-primary);
  border: 1px solid var(--border-accent);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--gold-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   CARDS DAS TRÊS REVELAÇÕES FUNDAMENTAIS
   ========================================================================== */
.revelations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.revelation-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.revelation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.revelation-card.creator::before { background: linear-gradient(90deg, #38bdf8, #2563eb); }
.revelation-card.messiah::before { background: linear-gradient(90deg, #f43f5e, #e11d48); }
.revelation-card.spirit::before { background: linear-gradient(90deg, #f59e0b, #d97706); }

.revelation-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.card-header-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.creator .card-header-tag { color: var(--blue-heaven); }
.messiah .card-header-tag { color: var(--crimson-soft); }
.spirit .card-header-tag { color: #f59e0b; }

.revelation-title {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.pronunciation-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  user-select: none;
}

.pronunciation-pill:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  transform: scale(1.02);
}

.pronunciation-pill.playing {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.4);
  animation: pulse-audio 1.2s infinite alternate ease-in-out;
}

@keyframes pulse-audio {
  0% { box-shadow: 0 0 4px rgba(212, 160, 23, 0.2); }
  100% { box-shadow: 0 0 14px rgba(212, 160, 23, 0.55); }
}

.pronunciation-pill .speaker-icon {
  color: var(--gold-primary);
}

.card-body-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

/* ==========================================================================
   GRADE DE TESTEMUNHAS (REF. IMAGEM 2026)
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0 5.5rem;
  position: relative;
}

.testimonials-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card-modern {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}



.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: #3b82f6;
  font-family: var(--font-editorial);
  margin-bottom: 0.85rem;
  display: block;
  user-select: none;
}

.testimonial-quote-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-weight: 400;
}

.testimonial-author-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
  background: var(--bg-surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #3b82f6;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.testimonial-author-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==========================================================================
   EXPLORADOR INTERATIVO DE NOMES SAGRADOS
   ========================================================================== */
.names-explorer-section {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 3.5rem 3rem;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-md);
}

.section-header-centered {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.explorer-search-bar {
  position: relative;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.explorer-search-input {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  padding: 0.95rem 1.2rem 0.95rem 3.2rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.explorer-search-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-subtle);
}

.explorer-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.modern-table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.modern-table th {
  background: var(--bg-surface-elevated);
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  border-bottom: 2px solid var(--border-medium);
  letter-spacing: 0.5px;
}

.modern-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.modern-table tr:hover td {
  background: var(--bg-glass);
}

.modern-table .name-highlight {
  color: var(--text-primary);
  font-weight: 700;
}

.modern-table .root-badge {
  background: var(--blue-subtle);
  color: var(--blue-heaven);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ==========================================================================
   TIMELINE DA TRILHA DE APRENDIZADO
   ========================================================================== */
.timeline-section {
  margin-bottom: 5rem;
}

.timeline-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary), var(--blue-heaven));
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  transition: all var(--transition-fast);
}

.timeline-step:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #b48310);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.step-content p {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

/* ==========================================================================
   LEITOR EDITORIAL 2026 (LAYOUT INTELIGENTE & RESPONSIVO)
   ========================================================================== */
.study-reader-layout, .reader-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 1.5rem 0 5rem;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

/* Opcional: em telas ultra-wide (> 1500px), exibe a 3ª coluna se presente */
@media (min-width: 1501px) {
  .study-reader-layout, .reader-layout-grid {
    grid-template-columns: 280px 1fr 260px;
    max-width: 1440px;
  }
}

@media (max-width: 1500px) {
  .reader-tools-sidebar {
    display: none !important;
  }
}

/* Coluna 1: Barra Lateral Esquerda de Índice (Sticky) */
.reader-sidebar {
  position: sticky;
  top: 95px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.reader-sidebar::-webkit-scrollbar {
  width: 5px;
}

.reader-sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(212, 175, 55, 0.3);
  border-radius: 9999px;
}

.sidebar-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-index-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
}

.mobile-index-toggle:hover {
  background: var(--gold-subtle);
}

@media (max-width: 992px) {
  .mobile-index-toggle {
    display: flex;
  }
  .reader-sidebar.collapsed .reader-index-nav,
  .reader-sidebar.collapsed .sidebar-toggle-wrap {
    display: none !important;
  }
}

.reader-index-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.index-nav-item a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  line-height: 1.4;
  border-left: 3px solid transparent;
}

.index-nav-item a:hover, .index-nav-item.active a {
  background: var(--gold-subtle);
  color: var(--gold-primary);
  border-left-color: var(--gold-primary);
  font-weight: 600;
}

.reader-content-area {
  min-width: 0;
  width: 100%;
}

.reader-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reading-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.progress-bar-container {
  width: 140px;
  height: 6px;
  background: var(--border-subtle);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-primary);
  transition: width 0.2s ease;
}

.font-size-adjuster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.font-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.font-btn:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.reader-article {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  min-height: 600px;
  width: 100%;
  box-sizing: border-box;
}

.reader-article,
.reader-article * {
  color: #cbd5e1;
}

.reader-article h1,
.reader-article h2,
.entry-content .reader-article h1,
.entry-content .reader-article h2 {
  color: #f8fafc !important;
  font-family: var(--font-display, 'Cinzel', serif);
}

.reader-article h2 {
  font-size: 1.85rem;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
}

.reader-article h3,
.entry-content .reader-article h3,
.reader-article .entry-content h3 {
  color: var(--gold-primary, #d4af37) !important;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.5px;
}

.reader-article h4,
.reader-article h5,
.reader-article h6,
.entry-content .reader-article h4,
.entry-content .reader-article h5,
.entry-content .reader-article h6 {
  color: #e2e8f0 !important;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.reader-article p,
.entry-content .reader-article p {
  color: #cbd5e1 !important;
  font-size: 1.12rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.reader-article strong,
.reader-article b,
.entry-content .reader-article strong,
.entry-content .reader-article b {
  color: #ffffff !important;
  font-weight: 700;
}

.reader-article em,
.reader-article i {
  color: #e2e8f0 !important;
}

.reader-article ul,
.reader-article ol {
  color: #cbd5e1 !important;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.reader-article li {
  color: #cbd5e1 !important;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.scripture-callout {
  position: relative;
  background: var(--bg-glass-card, rgba(22, 34, 68, 0.72)) !important;
  border-left: 4px solid var(--gold-primary, #d4af37) !important;
  padding: 1.5rem 1.8rem !important;
  border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
  margin: 2rem 0 !important;
  font-style: italic;
  font-size: 1.15rem;
  color: #f1f5f9 !important;
  box-shadow: var(--shadow-sm);
}

.scripture-callout p,
.scripture-callout span {
  color: #f1f5f9 !important;
}

.scripture-reference {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-primary, #d4af37) !important;
  margin-top: 0.6rem;
  text-align: right;
}

/* Coluna 3: Barra Lateral Direita de Apoio e Ferramentas (Sticky) */
.reader-tools-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.tools-box-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glossary-mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.glossary-mini-item dt {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.glossary-mini-item dd {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.2rem;
}

.commandments-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  margin: 2.5rem 0;
}

.commandment-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.commandment-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cmd-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.study-nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.chapter-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
  gap: 1rem;
  flex-wrap: wrap;
}

.chapter-jump-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.chapter-jump-btn:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.chapter-jump-btn.primary {
  background: var(--gold-primary);
  color: #060b18;
  border-color: var(--gold-primary);
}

.chapter-jump-btn.primary:hover {
  background: var(--gold-bright);
}


/* ==========================================================================
   RODAPÉ EDITORIAL
   ========================================================================== */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  margin-top: 4rem;
}

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

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-column h4 {
  font-size: 1.1rem;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-verse-box {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Badge de Teste Paralelo */
.parallel-testing-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(14, 23, 47, 0.92);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.parallel-testing-bar .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   RESPONSIVIDADE INTELIGENTE (SEM VAZIOS LATERAIS & MENU REDONDINHO)
   ========================================================================== */
@media (max-width: 1280px) {
  .study-reader-layout, .reader-layout-grid {
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
  }
  .reader-tools-sidebar {
    display: none !important; /* Em telas médias a barra de ferramentas cede espaço ao texto */
  }
  .testimonials-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Telas médias / Laptops menores (1025px a 1240px) - Menu Compacto Sem Quebras */
@media (max-width: 1240px) and (min-width: 1025px) {
  .navbar-inner {
    gap: 0.85rem;
  }
  .brand-title {
    font-size: 1.05rem;
  }
  .brand-subtitle {
    font-size: 0.66rem;
    letter-spacing: 0.8px;
  }
  .nav-links {
    gap: 0.75rem;
  }
  .nav-link {
    font-size: 0.86rem;
    padding: 0.4rem 0.2rem;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-desktop-cta {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.82rem !important;
  }
}

/* Transição para Menu Mobile / Gaveta Glassmorphism (<= 1024px) */
@media (max-width: 1024px) {
  .menu-toggle-mobile {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-surface-elevated);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-medium);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.6rem;
    gap: 0.4rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: menuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-size: 1.02rem;
    border-radius: var(--radius-md);
    justify-content: space-between;
  }

  .nav-link:hover, .nav-link.active {
    background: var(--gold-subtle);
    color: var(--gold-primary);
  }

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

  /* Dropdown Mobile Interativo */
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    box-shadow: none;
    padding: 0.4rem;
    margin: 0.35rem 0 0.5rem 0.75rem;
    border-radius: var(--radius-md);
  }

  .nav-item-dropdown.dropdown-open .dropdown-menu {
    display: block;
    animation: menuSlideDown 0.2s ease;
  }

  .nav-item-dropdown.dropdown-open .dropdown-chevron {
    transform: rotate(180deg);
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
  }
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .study-reader-layout, .reader-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem 0 3rem !important;
  }
  
  .reader-sidebar {
    position: static !important;
    max-height: none !important;
    width: 100% !important;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1rem !important;
  }

  .reader-tools-sidebar {
    display: none !important;
  }
  
  .revelations-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .reader-article {
    padding: 1.75rem 1.15rem !important;
    border-radius: var(--radius-md) !important;
  }

  .reader-article h2 {
    font-size: 1.45rem !important;
    line-height: 1.35;
    margin-top: 1.5rem;
  }

  .reader-article h3 {
    font-size: 1.2rem !important;
    line-height: 1.4;
  }

  .reader-article p {
    font-size: 1.02rem !important;
    line-height: 1.75;
  }

  .scripture-callout {
    padding: 1.15rem 1.25rem !important;
    font-size: 1.02rem !important;
    margin: 1.5rem 0 !important;
  }

  .reader-controls-bar {
    padding: 0.75rem 1rem !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .reading-progress-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .font-size-adjuster {
    justify-content: space-between;
    width: 100%;
  }

  .chapter-nav-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }

  .chapter-jump-btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.75rem 1rem !important;
  }

  .study-nav-footer {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .study-nav-footer .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .modern-table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 1.5rem 0;
  }

  .modern-table {
    min-width: 520px;
  }

  .testimonials-grid-modern {
    grid-template-columns: 1fr;
  }

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

  .timeline-track::before {
    left: 18px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .navbar-inner {
    height: 70px;
    gap: 0.6rem;
  }

  .brand-logo img {
    height: 38px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 0.6px;
  }

  .nav-desktop-cta {
    display: none; /* No celular pequeno, usa o CTA dentro do menu gaveta */
  }
}


/* ====================================================
   Pronúncia Sagrada - Cards e Botões Interativos Oficiais
   ==================================================== */
.audio-card-container {
    background: #0e172f !important;
    background-color: #0e172f !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45) !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
}
.audio-card-container:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6) !important;
}
.audio-badge {
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    background: rgba(212, 175, 55, 0.15) !important;
    color: #e5c365 !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}
.audio-hebrew-title {
    font-family: var(--font-serif, 'Cinzel', serif) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0.75rem 0 0.4rem !important;
}
.audio-phonetic {
    font-size: 0.88rem !important;
    color: #94a3b8 !important;
    margin-bottom: 0.85rem !important;
    font-weight: 500 !important;
}
.audio-meaning {
    font-size: 0.95rem !important;
    color: #cbd5e1 !important;
    line-height: 1.65 !important;
    margin-bottom: 1.5rem !important;
    flex-grow: 1 !important;
}
.audio-meaning strong {
    color: #dfb235 !important;
}
button.audio-btn-action,
.audio-btn-action,
.audio-card-container button.audio-btn-action,
.audio-card-container .audio-btn-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 13px 20px !important;
    border-radius: 10px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    cursor: pointer !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%) !important;
    background-color: #1e3a8a !important;
    color: #ffffff !important;
    border: 1px solid rgba(56, 189, 248, 0.45) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45) !important;
    outline: none !important;
    text-align: center !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
button.audio-btn-action *,
.audio-btn-action * {
    color: #ffffff !important;
    text-decoration: none !important;
    pointer-events: none !important;
}
button.audio-btn-action:hover,
.audio-btn-action:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%) !important;
    border-color: rgba(56, 189, 248, 0.8) !important;
    box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}
button.audio-btn-action.playing,
.audio-btn-action.playing {
    background: linear-gradient(135deg, #c59b27 0%, #b45309 100%) !important;
    border-color: #f59e0b !important;
    box-shadow: 0 0 22px rgba(245, 158, 11, 0.6) !important;
    color: #ffffff !important;
}
.audio-card-container .btn-outline-gold {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 16px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    color: #dfb235 !important;
    background: rgba(14, 23, 47, 0.6) !important;
    box-sizing: border-box !important;
    width: 100% !important;
    transition: all 0.25s ease !important;
}
.audio-card-container .btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.18) !important;
    border-color: #dfb235 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* ====================================================
   Blog Editorial 2026 - Correção Definitiva de Layout e Cores
   ==================================================== */
.blog #primary, .archive #primary {
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 3.5rem 1.5rem 6rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.blog .ast-row, .archive .ast-row,
.ast-blog-layout-4-grid .ast-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
    gap: 2rem !important;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}
@media (max-width: 768px) {
    .blog .ast-row, .archive .ast-row,
    .ast-blog-layout-4-grid .ast-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}
.blog .ast-article-post, .archive .ast-article-post,
.ast-blog-layout-4-grid .ast-article-post {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #0e172f !important;
    background-color: #0e172f !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.blog .ast-article-post:hover, .archive .ast-article-post:hover,
.ast-blog-layout-4-grid .ast-article-post:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6) !important;
}
.blog .ast-article-inner, .archive .ast-article-inner,
.ast-blog-layout-4-grid .ast-article-inner,
.ast-separate-container .ast-article-inner {
    background: #0e172f !important;
    background-color: #0e172f !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    padding: 2.2rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
    border-radius: 16px !important;
    border: none !important;
    overflow: visible !important;
}
.blog .post-content, .archive .post-content,
.ast-blog-layout-4-grid .post-content,
.ast-blog-layout-4-grid .post-content.ast-grid-common-col {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    box-sizing: border-box !important;
}
.blog .ast-grid-common-col, .archive .ast-grid-common-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
    float: none !important;
}
.blog .entry-title, .archive .entry-title {
    font-family: var(--font-display, 'Cinzel', serif) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0.85rem 0 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    writing-mode: horizontal-tb !important;
    display: block !important;
    width: 100% !important;
}
.blog .entry-title a, .archive .entry-title a {
    color: #f8fafc !important;
    text-decoration: none !important;
    display: inline !important;
    transition: color 0.2s ease !important;
}
.blog .entry-title a:hover, .archive .entry-title a:hover {
    color: #dfb235 !important;
}
.blog .cat-links, .archive .cat-links {
    margin-bottom: 0.5rem !important;
    display: block !important;
}
.blog .cat-links a, .archive .cat-links a {
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    background: rgba(223, 178, 53, 0.15) !important;
    color: #dfb235 !important;
    border: 1px solid rgba(223, 178, 53, 0.3) !important;
}
.blog .entry-meta, .archive .entry-meta {
    font-size: 0.82rem !important;
    color: #94a3b8 !important;
    margin-bottom: 0.85rem !important;
}
.blog .ast-excerpt-container, .archive .ast-excerpt-container {
    margin-bottom: 1.5rem !important;
    flex-grow: 1 !important;
    width: 100% !important;
}
.blog .ast-excerpt-container p, .archive .ast-excerpt-container p {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.65 !important;
    font-size: 0.95rem !important;
    color: #cbd5e1 !important;
    margin-bottom: 0 !important;
}
.btn-read-article {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    border-radius: 10px !important;
    padding: 12px 18px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    margin-top: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, rgba(223, 178, 53, 0.2) 0%, rgba(223, 178, 53, 0.08) 100%) !important;
    color: #dfb235 !important;
    border: 1px solid rgba(223, 178, 53, 0.45) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.25s ease !important;
}
.btn-read-article:hover {
    background: #dfb235 !important;
    color: #060b18 !important;
    border-color: #dfb235 !important;
    box-shadow: 0 6px 20px rgba(223, 178, 53, 0.4) !important;
    transform: translateY(-2px) !important;
}
