/* ==========================================================================
   CLUBE DOS VITORIOSOS — SÃO PADRE PIO • APP OFICIAL (VERSÃO LIGHT)
   Padrão: Minimalista Contemporâneo & Acabamento Editorial de Luxo
   Regra: 100% Versão Light (Fundo Branco/Claro, Tipografia Escura de Alto Contraste)
   Especialista: Thiago Dutra | Catedral Digital OS
   ========================================================================== */

:root {
  /* Design Tokens Oficiais — Versão Light */
  --color-bg-app: #F8FAFC;
  --color-bg-surface: #FFFFFF;
  --color-bg-subtle: #F1F5F9;
  --color-bg-hover: #F8FAFC;
  
  --color-border: rgba(15, 23, 42, 0.08);
  --color-border-subtle: rgba(15, 23, 42, 0.05);
  --color-border-gold: rgba(168, 123, 56, 0.35);

  --color-text-main: #0F172A;       /* Carvão Grafite de altíssimo contraste */
  --color-text-dim: #334155;        /* Grafite de leitura confortável */
  --color-text-muted: #64748B;      /* Cinza suave para metadados */

  /* Acentos Sacros & Dourados */
  --color-gold: #A87B38;            /* Ouro Nobre Escuro (alto contraste no branco) */
  --color-gold-light: #B8860B;
  --color-gold-soft: #FDF8ED;       /* Dourado pálido para fundos */
  --color-gold-glow: rgba(168, 123, 56, 0.20);

  --color-stigma: #991B1B;          /* Carmesim Sacro */
  --color-stigma-soft: #FEF2F2;

  --color-salvia: #166534;
  --color-salvia-soft: #F0FDF4;

  /* Fontes */
  --font-display: 'Cinzel', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Geometria & Sombras */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-subtle: 0 2px 10px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.06);
  --shadow-gold: 0 6px 20px rgba(168, 123, 56, 0.15);
  --transition-smooth: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-app);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Clean */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-app);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Layout Geral */
.app-container {
  display: flex;
  min-height: 100vh;
  background-color: var(--color-bg-app);
}

/* Sidebar Desktop / Tablet (Branco Puro com Borda Nítida) */
.app-sidebar {
  display: none;
  width: 270px;
  background: var(--color-bg-surface);
  border-right: 1px solid var(--color-border);
  flex-direction: column;
  padding: 24px 20px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  box-shadow: 2px 0 16px rgba(15, 23, 42, 0.02);
}

@media (min-width: 900px) {
  .app-sidebar {
    display: flex;
  }
  .app-main {
    margin-left: 270px;
    padding-bottom: 40px !important;
  }
  .mobile-bottom-nav {
    display: none !important;
  }
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.sidebar-logo img,
.sidebar-logo svg {
  width: 36px;
  height: 36px;
}

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

.sidebar-logo-text .brand-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-main);
  text-transform: uppercase;
}

.sidebar-logo-text .brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Menu de Navegação */
.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--color-text-dim);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.nav-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.nav-item:hover {
  background: var(--color-bg-subtle);
  color: var(--color-text-main);
}

.nav-item.active {
  background: var(--color-gold-soft);
  color: var(--color-gold);
  border-color: var(--color-border-gold);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(168, 123, 56, 0.08);
}

/* Card do Membro na Sidebar */
.sidebar-member-card {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gold);
  background: #FDF8ED;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
}

.member-meta h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-main);
}

.member-meta .badge-founder {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-gold);
  background: #FFF;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-gold);
  margin-top: 2px;
}

/* Área Principal */
.app-main {
  flex: 1;
  min-width: 0;
  padding-bottom: 90px;
}

/* Topbar Superior */
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-brand svg, .topbar-brand img {
  width: 28px;
  height: 28px;
}

.topbar-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.06em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Streak de Vitória / Dias em Oração */
.streak-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #B91C1C;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.streak-pill:hover {
  transform: scale(1.03);
  background: #FEE2E2;
}

.streak-flame {
  animation: pulse-flame 1.8s infinite ease-in-out;
}

@keyframes pulse-flame {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Seções de Conteúdo */
.content-section {
  display: none;
  padding: 24px;
  max-width: 1080px;
  margin: 0 auto;
  animation: fadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.content-section.active {
  display: block;
}

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

/* Hero Card da Home (Versão Light Editorial) */
.hero-greeting-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF7 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero-greeting-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #A87B38, #C89D5C, #991B1B);
}

.eyebrow-sacro {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
  line-height: 1.25;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--color-text-dim);
  margin-bottom: 24px;
  max-width: 640px;
}

/* Áudio em Destaque no Hero */
.featured-audio-box {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.audio-box-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.audio-play-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #B8860B, #A87B38);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
  border: none;
  flex-shrink: 0;
}

.audio-play-btn-circle:hover {
  transform: scale(1.08);
}

.audio-box-meta h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.audio-box-meta p {
  font-size: 12.5px;
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-weight: 600;
}

/* Grid de Cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sacred-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
}

.sacred-card:hover {
  border-color: rgba(168, 123, 56, 0.35);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-header-row h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Regra de Vida */
.rule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.rule-item:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.rule-item.completed {
  border-color: #86EFAC;
  background: #F0FDF4;
}

.rule-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rule-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: transparent;
  transition: var(--transition-smooth);
  background: #FFF;
}

.rule-item.completed .rule-checkbox {
  background: #16A34A;
  border-color: #16A34A;
  color: #FFFFFF;
}

.rule-text {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-main);
}

.rule-item.completed .rule-text {
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.rule-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Card da Live */
.live-banner-box {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: #DC2626;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: var(--radius-pill);
  background: #DC2626;
  box-shadow: 0 0 6px #DC2626;
  animation: blink-live 1.2s infinite;
}

@keyframes blink-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-info-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
}

.live-schedule-text {
  font-size: 13px;
  color: var(--color-text-dim);
}

/* Botões */
.btn-sacred {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #B8860B, #A87B38);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}

.btn-sacred:hover {
  background: linear-gradient(135deg, #C89D5C, #B8860B);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(168, 123, 56, 0.3);
}

.btn-sacred-secondary {
  background: #FDF8ED;
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  box-shadow: none;
}

.btn-sacred-secondary:hover {
  background: #F5E8CE;
  color: #8C6527;
}

/* ==========================================================================
   ÁUDIOS DIÁRIOS (VERSÃO LIGHT)
   ========================================================================== */
.audios-header h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.audio-filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-top: 14px;
}

.chip-btn {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-dim);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.chip-btn.active, .chip-btn:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  border-color: var(--color-gold);
}

.audio-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audio-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.audio-card:hover {
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-card);
}

.audio-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audio-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #FDF8ED;
  color: var(--color-gold);
  border: 1px solid var(--color-border-gold);
  font-weight: 700;
}

.audio-date {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--color-text-muted);
}

.audio-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.audio-card-desc {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.55;
}

.audio-transcript-toggle {
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 0;
}

.audio-transcript-content {
  display: none;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-dim);
  background: #FDFBF7;
  border-left: 3px solid var(--color-gold);
  padding: 14px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
  line-height: 1.7;
}

/* Player Flutuante Fixo (Versão Light) */
.floating-audio-bar {
  display: none;
  position: fixed;
  bottom: 74px;
  left: 16px;
  right: 16px;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  z-index: 60;
  flex-direction: column;
  gap: 8px;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 900px) {
  .floating-audio-bar {
    bottom: 24px;
    left: 290px;
    right: 24px;
  }
}

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

.floating-audio-bar.active {
  display: flex;
}

.player-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.player-thumb {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #FDF8ED;
  border: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.player-track-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track-speaker {
  font-size: 11.5px;
  color: var(--color-gold);
  font-weight: 600;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ctrl-btn {
  background: none;
  border: none;
  color: var(--color-text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.ctrl-btn:hover {
  color: var(--color-text-main);
}

.ctrl-btn-play {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--color-gold);
  color: #FFFFFF;
}

.ctrl-btn-play:hover {
  transform: scale(1.06);
  background: #8C6527;
}

.speed-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  background: #FDF8ED;
  border: 1px solid var(--color-border-gold);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.player-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-stamp {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--color-text-muted);
  width: 32px;
}

.progress-bar-container {
  flex: 1;
  height: 5px;
  background: #E2E8F0;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--color-gold);
  border-radius: 3px;
}

/* ==========================================================================
   MURAL DE ORAÇÃO & ALTAR (VERSÃO LIGHT)
   ========================================================================== */
.mural-header-altar {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF7 100%);
  border: 1.5px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.mural-header-altar h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.altar-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FDF8ED;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 700;
}

.prayer-form-box {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-subtle);
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--color-text-main);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(168, 123, 56, 0.15);
}

.prayer-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prayer-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-subtle);
}

.prayer-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prayer-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: #FDF8ED;
  border: 1px solid var(--color-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 700;
}

.prayer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
}

.prayer-category-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
  font-weight: 700;
}

.prayer-intent-text {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--color-text-dim);
  line-height: 1.6;
}

.prayer-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 12px;
}

.btn-candle-pray {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FDF8ED;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-candle-pray:hover {
  background: #F5E8CE;
  transform: scale(1.03);
}

.btn-candle-pray.prayed {
  background: var(--color-gold);
  color: #FFFFFF;
}

/* ==========================================================================
   SALA DE AULAS (VERSÃO LIGHT)
   ========================================================================== */
.video-player-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0F172A;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.module-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.module-card-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #F8FAFC;
  transition: var(--transition-smooth);
}

.module-card-header:hover {
  background: #F1F5F9;
}

.module-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text-main);
}

.lesson-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.lesson-item {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border-subtle);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: #FFFFFF;
}

.lesson-item:hover {
  background: #F8FAFC;
}

.lesson-item.active {
  background: #FDF8ED;
  border-left: 3.5px solid var(--color-gold);
}

/* ==========================================================================
   CARTEIRINHA DOS FUNDADORES (VERSÃO LIGHT LUXO EDITORIAL)
   ========================================================================== */
.founder-card-wrapper {
  max-width: 480px;
  margin: 0 auto 28px;
}

.founder-id-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FCFAF5 100%);
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(168, 123, 56, 0.15), 0 2px 10px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.card-top-crest {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.founder-number-seal {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gold);
  background: #FDF8ED;
  border: 1.5px solid var(--color-gold);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.card-middle-content {
  margin-bottom: 24px;
}

.card-middle-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.card-middle-content p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.card-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   MOBILE BOTTOM NAV (VERSÃO LIGHT)
   ========================================================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
  z-index: 50;
  box-shadow: 0 -2px 10px rgba(15, 23, 42, 0.04);
}

.nav-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 20%;
}

.nav-tab-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nav-tab-btn.active {
  color: var(--color-gold);
}

.nav-tab-btn.active svg {
  stroke: var(--color-gold);
}
