/* ==========================================
   APOSENTO ALTO — CSS
   Design: Azul Meia-Noite + Ouro Sagrado
   ========================================== */

/* ── 1. TOKENS & RESET ───────────────────── */
:root {
  --bg-main:       #080c18;
  --bg-card:       rgba(16, 22, 45, 0.85);
  --bg-card-hover: rgba(22, 30, 60, 0.95);
  --gold:          #D4AF37;
  --gold-light:    #f0d060;
  --gold-dim:      rgba(212, 175, 55, 0.15);
  --purple:        #2d1b69;
  --purple-light:  rgba(80, 50, 160, 0.3);
  --text-main:     #f0eee8;
  --text-sub:      #a8a3b8;
  --text-muted:    #6b6680;
  --border:        rgba(212, 175, 55, 0.15);
  --border-hover:  rgba(212, 175, 55, 0.4);
  --radius:        14px;
  --radius-lg:     20px;
  --shadow:        0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold:   0 0 40px rgba(212, 175, 55, 0.15);
  --font-heading:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', system-ui, sans-serif;
  --transition:    0.3s ease;
  --header-h:      72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ── 2. CANVAS DE ESTRELAS ───────────────── */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── 3. UTILITÁRIOS ──────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

.section {
  position: relative;
  z-index: 1;
  padding: 90px 0;
}

/* ── 4. HEADER ───────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 12, 24, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.header.scrolled {
  background: rgba(8, 12, 24, 0.95);
  border-bottom-color: var(--border-hover);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-dove { width: 36px; height: 36px; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.logo-text span { color: var(--gold); }

.nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

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

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

/* ── 5. BOTÕES ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-xs  { font-size: 0.76rem; padding: 5px 12px; border-radius: 8px; gap: 5px; }
.btn-sm  { font-size: 0.82rem; padding: 8px 18px; }
.btn-lg  { font-size: 1rem;    padding: 16px 32px; border-radius: 12px; }

.btn-primary {
  background: linear-gradient(135deg, #c9a227, #e8c94a);
  color: #0a0f1e;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e8c94a, #f0d870);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-glow {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}

.btn-glass {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-hover);
  color: var(--gold-light);
}
.btn-glass:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--gold-light);
  font-size: 0.88rem;
  padding: 11px 20px;
}
.btn-outline:not(:disabled):hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-block { width: 100%; }

/* ── 6. MENU MOBILE ──────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 12, 24, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-sub);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }

/* ── 7. HERO ─────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: 
    linear-gradient(180deg, rgba(8, 12, 24, 0.68) 0%, rgba(8, 12, 24, 0.85) 60%, var(--bg-main) 100%),
    url('images/hero_sunrise_mountains.jpg') center/cover no-repeat;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(45, 27, 105, 0.08) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container { text-align: center; padding: 60px 24px; position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  padding: 8px 22px;
  border-radius: 99px;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 28px;
  background: linear-gradient(160deg, #f0eee8 30%, #D4AF37 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-small {
  display: block;
  font-size: 0.35em;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-subtitle strong { color: var(--text-main); }

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-verse {
  max-width: 580px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.hero-verse p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 10px;
}

.hero-verse span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── 8. SEÇÕES — HEADER ──────────────────── */
.section-header { margin-bottom: 56px; }

.badge-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 9. VERSÍCULO DO DIA ─────────────────── */
.section-versiculo {
  background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 105, 0.08) 100%);
}

.versiculo-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), var(--shadow-gold);
  text-align: center;
}

.verse-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.verse-cat-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 15px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  color: var(--text-sub);
  cursor: pointer;
  transition: all var(--transition);
}

.verse-cat-btn:hover {
  color: var(--text-main);
  border-color: var(--border-hover);
  background: rgba(212, 175, 55, 0.14);
}

.verse-cat-btn.active {
  color: #0a0f1e;
  background: linear-gradient(135deg, #c9a227, #f0d060);
  border-color: var(--gold);
  font-weight: 600;
  box-shadow: 0 2px 14px rgba(212, 175, 55, 0.3);
}

.versiculo-emblem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
}

.emblem-aura {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.08) 55%, transparent 75%);
  filter: blur(10px);
  pointer-events: none;
  animation: emblemAuraPulse 3.5s ease-in-out infinite alternate;
  z-index: 0;
}

.emblem-svg {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
  transition: transform 0.4s ease;
}

.versiculo-card:hover .emblem-svg {
  transform: scale(1.08) rotate(3deg);
}

@keyframes emblemAuraPulse {
  0% { opacity: 0.6; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.65; transform: scale(0.95); }
}

.versiculo-content {}
.versiculo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--text-main);
  margin-bottom: 16px;
}
.versiculo-ref {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.versiculo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── 10. TIMER DE ORAÇÃO ─────────────────── */
.section-oracao {
  background: radial-gradient(ellipse at center, rgba(45, 27, 105, 0.15) 0%, transparent 70%);
}

.timer-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow), var(--shadow-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.timer-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.preset-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  color: var(--text-sub);
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.preset-btn:hover, .preset-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.timer-display { position: relative; }

.timer-ring { position: relative; width: 220px; height: 220px; }

.timer-svg {
  position: absolute;
  top: 0; left: 0;
  width: 220px; height: 220px;
  transform: rotate(-90deg);
}

.timer-track {
  fill: none;
  stroke: rgba(212, 175, 55, 0.1);
}

.timer-progress {
  fill: none;
  stroke: url(#goldGrad);
  stroke: #D4AF37;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}

.timer-time {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.04em;
}

.timer-controls { display: flex; gap: 16px; align-items: center; }

.timer-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border);
  color: var(--text-sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.timer-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.timer-btn-play {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #c9a227, #e8c94a);
  border: none;
  color: #0a0f1e;
  font-size: 1.2rem;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.3);
}
.timer-btn-play:hover {
  background: linear-gradient(135deg, #e8c94a, #f0d870);
  transform: scale(1.06);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.5);
  color: #0a0f1e;
}

.timer-verse-wrap {
  text-align: center;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.04);
}

.timer-stats-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--gold-light);
  margin-top: 14px;
}
.timer-stats-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: pulseDot 2s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}
.timer-verse-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ── 11. DIÁRIO ESPIRITUAL ───────────────── */
.section-diario {
  background: linear-gradient(180deg, rgba(45, 27, 105, 0.08) 0%, transparent 100%);
}

/* Card de Inspiração / Momento Devocional */
.diario-inspiration-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.diario-inspiration-img-wrap {
  position: relative;
  flex: 0 0 38%;
  min-height: 240px;
  overflow: hidden;
}

.diario-inspiration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.diario-inspiration-card:hover .diario-inspiration-img {
  transform: scale(1.05);
}

.diario-inspiration-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(12, 17, 36, 0.75) 85%, rgba(12, 17, 36, 1) 100%);
}

.diario-inspiration-content {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.diario-inspiration-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
  line-height: 1.3;
}

.diario-inspiration-verse {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
}

.diario-inspiration-desc {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .diario-inspiration-card {
    flex-direction: column;
  }
  .diario-inspiration-img-wrap {
    flex: none;
    height: 190px;
  }
  .diario-inspiration-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(12, 17, 36, 0.9) 80%, rgba(12, 17, 36, 1) 100%);
  }
  .diario-inspiration-content {
    padding: 24px 20px;
  }
}

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

.diario-form-card, .diario-entries-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
}

.diario-entries-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.diario-entries-header h3 {
  margin-bottom: 0 !important;
}

.diario-form-card h3, .diario-entries-card h3,
.pedido-form-card h3, .pedidos-mural h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.entries-count {
  font-size: 0.75rem;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--border-hover);
  padding: 2px 10px;
  border-radius: 99px;
  font-family: var(--font-body);
  font-weight: 700;
}

/* ── 12. FORMULÁRIOS ─────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ── 13. ENTRADAS DO DIÁRIO ──────────────── */
.diario-entries-list { display: flex; flex-direction: column; gap: 14px; max-height: 480px; overflow-y: auto; padding-right: 4px; }
.diario-entries-list::-webkit-scrollbar { width: 4px; }
.diario-entries-list::-webkit-scrollbar-track { background: transparent; }
.diario-entries-list::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }

.diario-entry {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color var(--transition);
}
.diario-entry:hover { border-color: var(--border-hover); }
.diario-entry-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.diario-entry-title { font-family: var(--font-heading); font-size: 1.05rem; color: var(--text-main); }
.diario-entry-date { font-size: 0.76rem; color: var(--text-muted); }
.diario-entry-verse { font-size: 0.78rem; color: var(--gold); margin-bottom: 8px; }
.diario-entry-text { font-size: 0.88rem; color: var(--text-sub); line-height: 1.6; }

.empty-state {
  text-align: center;
  padding: 36px 16px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.empty-state-svg {
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
  opacity: 0.9;
}
.empty-state p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
  color: var(--text-sub);
  word-break: normal;
  overflow-wrap: break-word;
}

/* ── 14. PEDIDOS DE INTERCESSÃO ──────────── */
.section-pedidos {}

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

.pedido-form-card, .pedidos-mural {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
}

.pedidos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.pedidos-list::-webkit-scrollbar { width: 4px; }
.pedidos-list::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }

.pedidos-mural-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #2ecc71;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px #2ecc71;
  animation: pulseDot 1.5s infinite ease-in-out;
}

.pedido-item {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}
.pedido-item:hover {
  border-color: var(--border-hover);
  background: rgba(212, 175, 55, 0.07);
}
.pedido-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pedido-item-nome {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.pedido-item-cidade {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
}
.pedido-item-hora {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.pedido-item-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
}
.pedido-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pedido-item-pray {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.pedido-item-pray:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}
.pedido-item-pray.prayed {
  background: rgba(46, 204, 113, 0.15);
  border-color: rgba(46, 204, 113, 0.4);
  color: #2ecc71;
  pointer-events: none;
}
.intercessoes-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.form-feedback {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
}
.form-feedback.success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}
.form-feedback.error {
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* ── 15. TESTEMUNHOS ─────────────────────── */
.section-testemunhos {
  background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
}
/* Banner de Alegria e Gratidão na Natureza */
.testemunhos-inspiration-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  margin-bottom: 32px;
  min-height: 220px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testemunhos-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testemunhos-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 6s ease;
}

.testemunhos-inspiration-banner:hover .testemunhos-img {
  transform: scale(1.04);
}

.testemunhos-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 24, 0.92) 0%, rgba(8, 12, 24, 0.72) 55%, rgba(8, 12, 24, 0.85) 100%);
}

.testemunhos-img-caption {
  position: relative;
  z-index: 1;
  padding: 34px 44px;
  max-width: 680px;
  text-align: left;
}

.testemunhos-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
}

.testemunhos-img-caption h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-style: italic;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 10px;
}

.testemunhos-img-caption p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testemunhos-img-caption {
    padding: 24px 20px;
  }
}

.testemunhos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testemunho-form-card, .testemunhos-mural {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
}
.testemunhos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 4px;
}
.testemunhos-list::-webkit-scrollbar { width: 4px; }
.testemunhos-list::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 4px; }
.testemunho-item {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all var(--transition);
}
.testemunho-item:hover {
  border-color: var(--border-hover);
  background: rgba(212, 175, 55, 0.07);
}
.testemunho-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.testemunho-item-nome {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.testemunho-item-hora {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testemunho-item-text {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
  font-style: italic;
}

/* ── 15. LOJA ────────────────────────────── */
.section-loja {
  background: radial-gradient(ellipse at center bottom, rgba(45, 27, 105, 0.12) 0%, transparent 70%);
}

.loja-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.loja-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.loja-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.loja-card-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 99px;
}
.loja-card-badge-destaque {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--border-hover);
}

.loja-card-icon { font-size: 3rem; margin-bottom: 4px; }
.loja-card h3 { font-family: var(--font-heading); font-size: 1.35rem; color: var(--text-main); }
.loja-card p { font-size: 0.88rem; color: var(--text-sub); line-height: 1.65; flex: 1; }
.loja-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── ÁREA DE SEMEADORES / PIX VOLUNTÁRIO ── */
.pix-semeadores-card {
  max-width: 680px;
  margin: 0 auto 56px;
  background: linear-gradient(135deg, rgba(16, 22, 45, 0.95) 0%, rgba(26, 18, 54, 0.9) 100%);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(16px);
}

.pix-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border-hover);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.pix-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.pix-subtitle {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 24px;
}

.pix-box {
  background: rgba(8, 12, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.pix-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pix-info-label {
  color: var(--text-muted);
  font-weight: 600;
}

.pix-key-val {
  font-family: monospace;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  letter-spacing: 0.04em;
}

.pix-info-val {
  color: var(--text-main);
  font-weight: 600;
}

.pix-actions {
  margin-top: 6px;
}

.pix-feedback {
  font-size: 0.85rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  padding: 8px 16px;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
  margin-top: 4px;
}

.pix-verse {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 10px;
  max-width: 500px;
}

.pix-verse em {
  color: var(--text-sub);
}

.pix-verse span {
  display: block;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .pix-semeadores-card {
    padding: 24px 16px;
    margin-bottom: 40px;
  }
  .pix-title {
    font-size: 1.6rem;
  }
  .pix-key-val {
    font-size: 0.92rem;
    word-break: break-all;
  }
}

/* ── 16. FOOTER ──────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 18, 0.95) 100%);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.footer-brand-link {
  display: inline-flex;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 320px;
}

.footer-faith-verse {
  background: rgba(212, 175, 55, 0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  max-width: 320px;
}

.footer-faith-verse-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.45;
  margin-bottom: 4px;
}

.footer-faith-verse-ref {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.footer-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-sub);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-col-media {
  display: flex;
  justify-content: flex-end;
}

.footer-secret-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  background: rgba(16, 22, 45, 0.9);
  max-width: 360px;
  width: 100%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
  transition: all var(--transition);
}

.footer-secret-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 175, 55, 0.15);
}

.footer-secret-img-wrap {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}

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

.footer-secret-card:hover .footer-secret-img {
  transform: scale(1.05);
}

.footer-secret-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.1) 0%, rgba(16, 22, 45, 0.95) 100%);
}

.footer-secret-content {
  position: relative;
  padding: 12px 18px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-secret-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-secret-verse {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.45;
}

.footer-secret-ref {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-secret-btn {
  margin-top: 4px;
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(4, 6, 14, 0.8);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-back-to-top {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-back-to-top:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-col-brand, .footer-col-nav, .footer-secret-card {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
  .footer-secret-content {
    align-items: center;
    text-align: center;
  }
  .footer-secret-btn {
    align-self: center;
  }
  .footer-col-media {
    justify-content: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── 17. ANIMAÇÕES ───────────────────────── */
/* Garantia absoluta de visibilidade imediata de 100% do conteúdo */
.reveal-up {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.hero .reveal-up {
  animation: heroReveal 0.8s ease backwards;
}
.hero-tag.reveal-up { animation-delay: 0.1s; }
.hero-title.reveal-up { animation-delay: 0.2s; }
.hero-subtitle.reveal-up { animation-delay: 0.3s; }
.hero-cta-group.reveal-up { animation-delay: 0.4s; }
.hero-verse.reveal-up { animation-delay: 0.5s; }

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

/* ── 18. MOBILE APP BAR (BARRA DO APLICATIVO) ────── */
.mobile-app-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-app-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    height: 64px;
    background: rgba(8, 12, 24, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    align-items: center;
    justify-content: space-around;
    padding: 0 4px;
    padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.6);
  }

  .app-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 8px;
    transition: all var(--transition);
    flex: 1;
    max-width: 68px;
    touch-action: manipulation;
  }

  .app-tab-icon {
    stroke: currentColor;
    transition: transform var(--transition), stroke var(--transition);
  }

  .app-tab:hover,
  .app-tab.active {
    color: var(--gold-light);
  }

  .app-tab.active .app-tab-icon {
    stroke: var(--gold);
    transform: scale(1.1);
  }

  .app-tab-label {
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* Botão Central de Oração em Destaque */
  .app-tab-highlight {
    position: relative;
    top: -12px;
    flex: 1.1;
    max-width: 74px;
    color: var(--text-main);
  }

  .app-tab-highlight-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5d77f, #c9a227);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
    border: 2px solid rgba(8, 12, 24, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .app-tab-highlight:active .app-tab-highlight-circle {
    transform: scale(0.92);
  }

  .app-tab-highlight .app-tab-label {
    color: var(--gold);
    font-weight: 700;
    margin-top: 2px;
  }

  /* Compensa espaço para a barra inferior no rodapé */
  .footer {
    padding-bottom: 96px !important;
  }
}

/* ── MODO APLICATIVO STANDALONE (PWA INSTALADO) ──── */
@media all and (display-mode: standalone) {
  body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .mobile-app-bar {
    padding-bottom: max(14px, env(safe-area-inset-bottom, 12px));
    height: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}

/* ── 19. RESPONSIVO COMPLETO (MOBILE-FIRST) ─────── */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  .container {
    padding: 0 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HEADER */
  .nav-menu { display: none !important; }
  .menu-toggle { display: flex !important; }
  .mobile-drawer { display: flex !important; }

  .header {
    height: var(--header-h);
  }

  .header-container {
    padding: 0 16px;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .logo-dove {
    width: 28px;
    height: 28px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  /* Oculta botões que transbordam o topo no celular */
  .header-actions #btn-pwa-install,
  .header-actions .btn-primary {
    display: none !important;
  }

  .header-actions {
    gap: 8px;
  }

  .streak-badge {
    padding: 5px 9px;
    gap: 4px;
  }
  .streak-badge .streak-text {
    font-size: 0.74rem;
    font-weight: 600;
  }

  /* HERO */
  .hero {
    min-height: calc(100vh - 60px);
    padding: 24px 0 50px;
    align-items: center;
    background-attachment: scroll;
  }

  .hero-container {
    padding: 16px 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-glow {
    width: 100%;
    max-width: 300px;
    height: 300px;
  }

  .hero-tag {
    font-size: 0.68rem;
    padding: 6px 12px;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    white-space: normal;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-title-small {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 22px;
    padding: 0 4px;
  }
  .hero-subtitle br {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .hero-verse {
    margin-top: 24px;
    padding: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-verse p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  /* SEÇÕES */
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.88rem;
    padding: 0 4px;
  }

  /* CATEGORIAS DO VERSÍCULO TOUCH SWIPE */
  .verse-categories {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 2px 10px !important;
    gap: 6px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    justify-content: flex-start !important;
  }
  .verse-categories::-webkit-scrollbar {
    display: none;
  }

  .verse-cat-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.78rem !important;
    padding: 7px 12px !important;
  }

  .versiculo-card {
    padding: 24px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .versiculo-text {
    font-size: 1.2rem !important;
    line-height: 1.45 !important;
  }

  .versiculo-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .versiculo-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 44px;
  }

  /* TIMER DE ORAÇÃO */
  .timer-card {
    padding: 20px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .timer-presets {
    gap: 6px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .preset-btn {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
  }

  .timer-ring {
    width: 180px !important;
    height: 180px !important;
    margin: 14px auto !important;
  }

  .timer-svg {
    width: 180px !important;
    height: 180px !important;
  }

  .timer-time {
    font-size: 2.2rem !important;
  }

  .sound-mixer-wrap {
    padding: 12px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .sound-presets {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }

  .sound-preset-btn {
    font-size: 0.74rem !important;
    padding: 9px 4px !important;
    white-space: normal !important;
    min-height: 38px !important;
  }

  .sound-preset-btn[data-sound="silencio"] {
    grid-column: auto !important;
    max-width: 100% !important;
  }

  /* JORNADAS */
  .jornadas-tabs {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .jornada-tab-btn {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 12px 14px !important;
  }

  .jornada-visual-banner {
    height: 160px !important;
    margin-bottom: 20px !important;
  }

  .jornada-banner-verse {
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .jornada-card {
    padding: 18px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .jornada-header h3 {
    font-size: 1.3rem !important;
  }

  .jornada-days-grid {
    gap: 4px !important;
    justify-content: center !important;
  }

  .jornada-day-pill {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.8rem !important;
  }

  .jornada-day-actions {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .jornada-day-actions .btn {
    width: 100% !important;
  }

  /* DIÁRIO & MURAL */
  .diario-inspiration-card {
    flex-direction: column !important;
  }

  .diario-inspiration-img-wrap {
    width: 100% !important;
    height: 150px !important;
  }

  .diario-grid,
  .pedidos-grid,
  .testemunhos-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .diario-form-card,
  .diario-entries-card,
  .pedido-form-card,
  .pedidos-mural,
  .testemunho-form-card,
  .testemunhos-mural {
    padding: 18px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pedidos-filter-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 6px !important;
    scrollbar-width: none !important;
    justify-content: flex-start !important;
  }
  .pedidos-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
  }

  /* LOJA */
  .loja-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }

  .footer-col-brand,
  .footer-col-nav,
  .footer-col-media {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .footer-faith-verse {
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .footer-secret-card {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  /* MODAIS */
  .momento-card,
  .streak-modal-card {
    width: 95% !important;
    max-width: 420px !important;
    padding: 20px 14px !important;
    margin: 12px auto !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }

  .breathing-container {
    width: 170px !important;
    height: 170px !important;
  }
  .breathing-circle-aura,
  .breathing-circle {
    width: 140px !important;
    height: 140px !important;
  }
  .breathing-text {
    font-size: 0.9rem !important;
  }
  .step-label {
    display: none !important;
  }
}

/* ── 19. ESTILOS DE IMPRESSÃO / EXPORTAÇÃO (PDF) ── */
@media print {
  @page {
    margin: 1.8cm;
    size: A4 portrait;
  }

  body {
    background: #ffffff !important;
    color: #1a1a1a !important;
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
  }

  #stars-canvas,
  .header,
  .hero,
  .section-versiculo,
  .section-oracao,
  .section-pedidos,
  .section-testemunhos,
  .section-loja,
  .footer,
  .diario-form-card,
  #btn-export-diario,
  .menu-toggle,
  .mobile-drawer {
    display: none !important;
  }

  .section-diario {
    padding: 0 !important;
    background: none !important;
  }

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

  .section-diario .badge-pill {
    border: 1px solid #c9a227 !important;
    color: #8b6b15 !important;
    background: transparent !important;
  }

  .section-diario .section-title {
    color: #111827 !important;
    font-size: 2.2rem !important;
  }

  .section-diario .section-subtitle {
    color: #4b5563 !important;
  }

  .diario-grid {
    display: block !important;
  }

  .diario-entries-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    backdrop-filter: none !important;
  }

  .diario-entries-list {
    max-height: none !important;
    overflow: visible !important;
    gap: 20px;
  }

  .diario-entry {
    background: #faf8f5 !important;
    border: 1px solid #dcd7ce !important;
    border-radius: 8px !important;
    padding: 20px 24px !important;
    page-break-inside: avoid;
    break-inside: avoid;
    box-shadow: none !important;
    margin-bottom: 16px;
  }

  .diario-entry-title {
    color: #1f2937 !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
  }

  .diario-entry-date {
    color: #6b7280 !important;
    font-size: 0.85rem !important;
  }

  .diario-entry-verse {
    color: #92400e !important;
    font-style: italic !important;
    font-size: 0.95rem !important;
    border-left: 2px solid #d97706;
    padding-left: 10px;
    margin: 8px 0;
  }

  .diario-entry-text {
    color: #374151 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
}

/* ── 15. STREAK BADGE (HEADER) ──────────── */
.streak-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 99px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.streak-badge:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}
.streak-flame, .streak-flame-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 180, 0, 0.6));
  animation: flameBounce 2s infinite ease-in-out;
}
@keyframes flameBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(2deg); }
}
.streak-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

/* ── 16. SOUND MIXER (TIMER) ─────────────── */
.sound-mixer-wrap {
  width: 100%;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mixer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mixer-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.volume-slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}
.volume-slider-wrap input[type="range"] {
  width: 90px;
  height: 5px;
  accent-color: var(--gold);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
}
.sound-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sound-preset-btn[data-sound="silencio"] {
  grid-column: 1 / -1;
  max-width: 180px;
  justify-self: center;
  width: 100%;
}
.sound-preset-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.sound-preset-btn:hover {
  color: var(--text-main);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-hover);
}
.sound-preset-btn.active {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* ── 17. JORNADAS DEVOCIONAIS ─────────────── */
.section-jornadas {
  background: radial-gradient(ellipse at 50% 30%, rgba(45, 27, 105, 0.15) 0%, transparent 70%);
}

/* Banner Visual da Natureza / Caminho */
.jornada-visual-banner {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 32px auto 28px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 55, 0.08);
  min-height: 200px;
  display: flex;
  align-items: center;
}

.jornada-banner-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jornada-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.jornada-visual-banner:hover .jornada-banner-img {
  transform: scale(1.04);
}

.jornada-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 24, 0.88) 0%, rgba(8, 12, 24, 0.65) 60%, rgba(8, 12, 24, 0.82) 100%);
}

.jornada-banner-content {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  text-align: left;
  max-width: 620px;
}

.jornada-banner-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.jornada-banner-verse {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 6px;
}

.jornada-banner-ref {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .jornada-banner-content {
    padding: 24px 20px;
  }
}

.jornadas-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.jornada-tab-btn {
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  color: var(--text-sub);
  cursor: pointer;
  transition: all var(--transition);
}
.jornada-tab-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--border-hover);
  color: var(--text-main);
}
.jornada-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.08));
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
}
.jornada-tab-svg {
  flex-shrink: 0;
  stroke: currentColor;
  opacity: 0.85;
}
.jornada-tab-btn.active .jornada-tab-svg {
  stroke: var(--gold);
  opacity: 1;
}
.jornada-tab-title {
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.jornada-tab-days {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold);
}

.jornada-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow), var(--shadow-gold);
}
.jornada-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.jornada-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.jornada-title-wrap p {
  font-size: 0.92rem;
  color: var(--text-sub);
}
.jornada-progress-box {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.jornada-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
}
.jornada-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.jornada-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a227, #f0d060);
  border-radius: 99px;
  transition: width 0.5s ease-in-out;
}

/* Lista de dias */
.jornada-days-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 28px;
}
.jornada-days-nav::-webkit-scrollbar { height: 4px; }
.jornada-days-nav::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.day-tab-btn {
  flex: 1;
  min-width: 80px;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--border);
  color: var(--text-sub);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.day-tab-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-hover);
  color: var(--text-main);
}
.day-tab-btn.active {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.15);
}
.day-tab-btn.completed {
  border-color: rgba(46, 204, 113, 0.4);
  background: rgba(46, 204, 113, 0.08);
}
.day-num {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.day-status-icon {
  font-size: 0.85rem;
}

/* Corpo do Dia Selecionado */
.jornada-day-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.jornada-day-title-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.jornada-day-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
  line-height: 1.3;
}
.jornada-verse-card {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
}
.jornada-verse-text {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 6px;
}
.jornada-verse-ref {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}
.jornada-devocional-text {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.7;
}
.jornada-prayer-card {
  background: rgba(45, 27, 105, 0.18);
  border: 1px solid rgba(80, 50, 160, 0.35);
  border-radius: var(--radius);
  padding: 20px;
}
.jornada-prayer-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.jornada-prayer-card p {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
}
.jornada-day-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

/* ── 18. PEDIDOS CATEGORIAS & DEUS RESPONDEU ── */
.pedidos-filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.filter-tab-btn {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-sub);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--text-main);
  border-color: var(--border-hover);
}
.filter-tab-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.pedido-cat-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-left: 8px;
  vertical-align: middle;
}

.btn-contar-graca {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-light);
  background: transparent;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-contar-graca:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

.highlight-testemunho {
  animation: pulseGoldBox 2s ease-in-out 3;
}
@keyframes pulseGoldBox {
  0%, 100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.6); border-color: var(--gold); }
}

/* ── 19. MODAL MOMENTO NO APOSENTO ───────── */
.momento-overlay, .streak-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 8, 18, 0.88);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.momento-overlay.open, .streak-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.momento-card, .streak-modal-card {
  position: relative;
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(12, 17, 36, 0.96);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  animation: modalSlideUp 0.35s ease;
}
@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.momento-close-btn {
  position: absolute;
  top: 18px; right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color var(--transition);
}
.momento-close-btn:hover { color: var(--gold); }

/* Steps Nav */
.momento-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.momento-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity var(--transition);
}
.momento-step-indicator.active {
  opacity: 1;
}
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.momento-step-indicator.active .step-num {
  background: var(--gold);
  color: #0a0f1e;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}
.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}
.step-connector {
  width: 32px;
  height: 1px;
  background: var(--border);
}

/* Steps Panes */
.momento-step-pane {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.momento-step-pane.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.momento-pane-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--text-main);
  margin-bottom: 6px;
}
.momento-pane-verse {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
}
.momento-pane-subtitle {
  font-size: 0.92rem;
  color: var(--text-sub);
}

/* Círculo de Respiração */
.breathing-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breathing-circle-aura {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  animation: auraPulse 4s infinite ease-in-out;
}
@keyframes auraPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.breathing-circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(14, 20, 40, 0.8) 80%);
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  transition: transform 4s ease-in-out;
}
.breathing-circle.inhale {
  transform: scale(1.25);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.5);
}
.breathing-circle.hold {
  transform: scale(1.25);
  border-color: #f0d060;
}
.breathing-circle.exhale {
  transform: scale(0.85);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.breathing-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  transition: opacity 0.4s ease;
}
.breathing-guidance {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-sub);
  font-size: 0.9rem;
}
.breathing-cycles-counter {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Caixa de Versículo & Reflexão no Momento */
.momento-verse-box {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  width: 100%;
}
.momento-verse-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.momento-verse-content {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 8px;
}
.momento-verse-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.momento-reflection-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  width: 100%;
}
.momento-reflection-box h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.momento-reflection-box p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Oração no Momento */
.momento-prayer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.momento-prayer-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.momento-time-display {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.momento-time-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.momento-audio-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.momento-prayer-guide {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}
.momento-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* ── 20. MODAL DE STREAK ─────────────────── */
.streak-modal-card {
  max-width: 480px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.streak-modal-flame {
  margin-top: 10px;
  animation: flameBounce 2s infinite ease-in-out;
}
.streak-modal-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--text-main);
}
.streak-modal-title span {
  color: var(--gold-light);
}
.streak-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.6;
  font-style: italic;
}
.streak-week-days {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 0;
}
.streak-day-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.streak-day-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}
.streak-day-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.streak-day-item.completed .streak-day-circle {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.streak-day-item.today .streak-day-circle {
  border-color: #f0d060;
  border-width: 2px;
}
.streak-message-box {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.5;
}
.streak-modal-actions {
  width: 100%;
}

