/* =============================================
   SUBINDO O MONTE — Sara Nossa Terra PE
   Design System — Identidade Visual
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&family=Orbitron:wght@500;700;900&display=swap');

:root {
  --gold:       #D4A843;
  --gold-light: #F0D080;
  --gold-dim:   #8A7030;
  --navy:       #0A1128;
  --navy-2:     #0D1640;
  --navy-3:     #12204A;
  --navy-4:     #1A2D5A;
  --text:       #E8E4D9;
  --text-dim:   #9A9580;
  --white:      #FAFAF7;
  --red:        #C14040;
  --blue:       #3A6FA5;
  --purple:     #5A4FA0;
  --green:      #4A8A60;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(212,168,67,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,17,40,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,0.2);
}

.site-header .logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav-days { display: flex; gap: 6px; flex-wrap: wrap; }

.nav-days-inner a,
.nav-days-inner span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-days-inner a:hover,
.nav-days-inner a.active {
  color: var(--gold);
  background: rgba(212,168,67,0.1);
}

.nav-days-inner {
  display: flex; gap: 4px; flex-wrap: wrap;
  justify-self: start;
  align-items: center;
}

.nav-stats { justify-self: center; }
.gami-menu-wrap { justify-self: end; }

/* Center the middle section on mobile */
@media (max-width: 640px) {
  .nav-stats { order: 1; flex: 1 1 100%; justify-content: center; padding: 0; margin: 0; border: 0; }
  .nav-days-inner { order: 0; flex: 1; }
}

/* Tooltips customizados para nav-stat-item */
.nav-stat-item {
  position: relative;
  cursor: help;
}
.nav-stat-item::before {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-4);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,67,0.3);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.nav-stat-item::after {
  content: '';
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: rgba(212,168,67,0.3);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 9999;
}
.nav-stat-item:hover::before,
.nav-stat-item:hover::after {
  opacity: 1;
}

/* Legenda card */
.legend-card {
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.legend-card-header {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  gap: 12px;
}
.legend-card-title {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim);
}
.legend-card-toggle {
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.2s;
}
.legend-card.open .legend-card-toggle { transform: rotate(180deg); }
.legend-items {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(212,168,67,0.1);
}
.legend-card.open .legend-items { display: grid; }
.legend-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.75rem; color: var(--text-dim); line-height: 1.4;
}
.legend-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.legend-text strong {
  display: block;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* ═══════════════════════════════════════
   TIMER MINIMALISTA COMPACTO
   ═══════════════════════════════════════ */
.clk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  margin: 0 auto 28px;
  width: auto;
}
.clk-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.clk-inner {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.clk-group {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.clk-digits {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 22px;
  text-align: center;
  transition: transform 0.3s, opacity 0.2s;
}
.clk-digits.flip {
  animation: clk-flip 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes clk-flip {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}
.clk-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.clk-sep {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1;
  opacity: 0.6;
}
.clk-btn {
  padding: 6px 16px;
  border: 1px solid rgba(212,168,67,0.35);
  background: transparent;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.clk-btn:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--gold);
}
.clk.running { border-color: rgba(255,140,50,0.4); }
.clk.running .clk-digits { color: #FF8C32; }
.clk.running .clk-btn { color: #FF8C32; border-color: rgba(255,140,50,0.5); }
.clk.done { border-color: rgba(74,138,96,0.4); }
.clk.done .clk-digits { color: var(--green); }
.clk.done .clk-btn { color: var(--green); border-color: rgba(74,138,96,0.4); }

/* ═══════════════════════════════════════
   RELÓGIO DIGITAL LCD (legado)
   ═══════════════════════════════════════ */
.smt-clock-box {
  background: linear-gradient(145deg, #1B3A6B 0%, #142E5A 50%, #0F2347 100%);
  border: 1px solid rgba(100,160,220,0.4);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 48px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.smt-clock-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  pointer-events: none;
}

.smt-clock-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
}
.smt-clock-title {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(180,210,245,0.7);
}
.smt-clock-led {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3A4858;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}
.smt-clock-box.running .smt-clock-led {
  background: #FF3333;
  box-shadow: 0 0 10px rgba(255,50,50,0.8), inset 0 0 3px rgba(255,255,255,0.4);
  animation: led-blink 1s ease-in-out infinite;
}
.smt-clock-box.done .smt-clock-led {
  background: #4AE35C;
  box-shadow: 0 0 12px rgba(74,227,92,0.8);
  animation: none;
}
@keyframes led-blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* LCD Screen */
.smt-clock-screen {
  position: relative;
  background: linear-gradient(180deg, #0a1628 0%, #0d1f36 100%);
  border: 2px solid rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 18px 20px;
  text-align: center;
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.6),
    inset 0 0 30px rgba(0,180,255,0.05),
    0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 16px;
  overflow: hidden;
}
.smt-clock-screen::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.15) 0px,
      rgba(0,0,0,0.15) 1px,
      transparent 1px,
      transparent 3px
    );
  pointer-events: none;
  opacity: 0.4;
}
.smt-clock-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Orbitron', 'Space Mono', monospace;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(80,140,200,0.08);
  pointer-events: none;
  user-select: none;
}
.smt-clock-digits {
  position: relative;
  font-family: 'Orbitron', 'Space Mono', monospace;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5AD4FF;
  text-shadow:
    0 0 6px rgba(90,212,255,0.8),
    0 0 12px rgba(90,212,255,0.5),
    0 0 24px rgba(90,212,255,0.3);
  display: inline-block;
  z-index: 1;
}
.smt-clock-box.running .smt-clock-digits {
  animation: digit-pulse 1s ease-in-out infinite;
}
@keyframes digit-pulse {
  0%,100% {
    text-shadow: 0 0 6px rgba(90,212,255,0.8), 0 0 12px rgba(90,212,255,0.5), 0 0 24px rgba(90,212,255,0.3);
  }
  50% {
    text-shadow: 0 0 8px rgba(90,212,255,1), 0 0 18px rgba(90,212,255,0.7), 0 0 32px rgba(90,212,255,0.4);
  }
}
.smt-clock-box.done .smt-clock-digits {
  color: #4AE35C;
  text-shadow: 0 0 6px rgba(74,227,92,0.8), 0 0 12px rgba(74,227,92,0.5), 0 0 24px rgba(74,227,92,0.3);
}

/* Button */
.smt-clock-btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(100,160,220,0.35);
  background: rgba(30,70,130,0.4);
  color: rgba(180,210,245,0.95);
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.smt-clock-btn:hover {
  background: rgba(50,110,180,0.5);
  border-color: rgba(130,190,240,0.6);
  color: #fff;
}
.smt-clock-btn:active {
  transform: translateY(1px);
}
.smt-clock-box.running .smt-clock-btn {
  background: rgba(180,50,40,0.3);
  border-color: rgba(255,80,60,0.4);
  color: rgba(255,180,160,0.95);
}
.smt-clock-box.done .smt-clock-btn {
  background: rgba(74,138,96,0.2);
  border-color: rgba(74,227,92,0.4);
  color: #4AE35C;
}

/* Progress */
.smt-clock-progress {
  height: 3px;
  background: rgba(0,0,0,0.4);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.5);
}
.smt-clock-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #5AD4FF, #8EC5FF);
  border-radius: 999px;
  transition: width 1s linear;
  box-shadow: 0 0 8px rgba(90,212,255,0.6);
}
.smt-clock-box.done .smt-clock-fill {
  background: linear-gradient(90deg, #4AE35C, #8FFFA0);
  box-shadow: 0 0 8px rgba(74,227,92,0.6);
}

@media (max-width: 480px) {
  .smt-clock-digits, .smt-clock-ghost { font-size: 2.4rem; }
  .smt-clock-screen { padding: 14px 16px; }
}

/* Timer Box Navy (igual week-progress) */
.smt-timer-box {
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.smt-timer-box:hover {
  border-color: rgba(212,168,67,0.4);
  background: linear-gradient(145deg, rgba(255,140,50,0.04), var(--navy-2));
  box-shadow: 0 0 20px rgba(255,140,50,0.08);
}
.smt-timer-box-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.smt-timer-box-display {
  font-family: 'Space Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.smt-timer-box-action {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF8C32;
  margin-bottom: 14px;
}
.smt-timer-box-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.smt-timer-box-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF8C32, var(--gold));
  border-radius: 999px;
  transition: width 1s linear;
}
.smt-timer-box.running {
  border-color: rgba(255,140,50,0.5);
  animation: smt-box-glow 2s ease-in-out infinite;
}
.smt-timer-box.running .smt-timer-box-display { color: #FF8C32; }
.smt-timer-box.done { border-color: var(--green); }
.smt-timer-box.done .smt-timer-box-display { color: var(--green); }
.smt-timer-box.done .smt-timer-box-action { color: var(--green); }
.smt-timer-box.done .smt-timer-box-fill { background: var(--green); width: 100%; }
@keyframes smt-box-glow {
  0%,100% { box-shadow: 0 0 8px rgba(255,140,50,0.08); }
  50% { box-shadow: 0 0 24px rgba(255,140,50,0.2); }
}

/* Mini Timer (legado) */
.smt-timer-mini {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  cursor: pointer;
  user-select: none;
}
.smt-timer-clock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--navy-2);
  border: 1px solid rgba(255,140,50,0.25);
  border-radius: 999px;
  transition: all 0.25s;
}
.smt-timer-mini:hover .smt-timer-clock {
  border-color: rgba(255,140,50,0.5);
  background: rgba(255,140,50,0.08);
  box-shadow: 0 0 20px rgba(255,140,50,0.1);
}
.smt-timer-clock-icon {
  font-size: 1rem;
  opacity: 0.7;
}
.smt-timer-clock-display {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  min-width: 54px;
  text-align: center;
}
.smt-timer-clock-btn {
  font-size: 0.85rem;
  color: #FF8C32;
  padding: 0 4px;
}
.smt-timer-mini.running .smt-timer-clock {
  border-color: #FF8C32;
  animation: smt-mini-pulse 2s ease-in-out infinite;
}
.smt-timer-mini.running .smt-timer-clock-display { color: #FF8C32; }
.smt-timer-mini.done .smt-timer-clock {
  border-color: var(--green);
  background: rgba(74,138,96,0.08);
}
.smt-timer-mini.done .smt-timer-clock-display { color: var(--green); }
@keyframes smt-mini-pulse {
  0%,100% { box-shadow: 0 0 8px rgba(255,140,50,0.15); }
  50% { box-shadow: 0 0 20px rgba(255,140,50,0.3); }
}

/* Circular Hero Timer (legado — não usado) */
.smt-timer-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 20px 0;
}
.smt-timer-circle {
  position: relative;
  width: 220px; height: 220px;
  cursor: pointer;
  transition: transform 0.3s;
}
.smt-timer-circle:hover { transform: scale(1.02); }
.smt-timer-circle:active { transform: scale(0.98); }
.smt-timer-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.smt-timer-svg-bg {
  fill: none;
  stroke: rgba(212,168,67,0.12);
  stroke-width: 4;
}
.smt-timer-svg-prog {
  fill: none;
  stroke: url(#grad);
  stroke: #FF8C32;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1s linear;
  filter: drop-shadow(0 0 8px rgba(255,140,50,0.4));
}
.smt-timer-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  pointer-events: none;
}
.smt-timer-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 12px rgba(255,140,50,0.4));
  margin-bottom: 4px;
}
.smt-timer-display {
  font-family: 'Space Mono', monospace;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(255,140,50,0.3);
  line-height: 1;
}
.smt-timer-state {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF8C32;
  margin-top: 4px;
}
.smt-timer-circle.running .smt-timer-svg-prog {
  animation: timer-pulse-stroke 2s ease-in-out infinite;
}
.smt-timer-circle.running {
  animation: timer-glow 2s ease-in-out infinite;
  border-radius: 50%;
}
@keyframes timer-glow {
  0%,100% { filter: drop-shadow(0 0 20px rgba(255,140,50,0.2)); }
  50% { filter: drop-shadow(0 0 40px rgba(255,140,50,0.5)); }
}
@keyframes timer-pulse-stroke {
  0%,100% { stroke: #FF8C32; }
  50% { stroke: var(--gold-light); }
}
.smt-timer-circle.done .smt-timer-svg-prog {
  stroke: var(--green);
  animation: none;
}
.smt-timer-circle.done .smt-timer-display { color: var(--green); }
.smt-timer-circle.done .smt-timer-state { color: var(--green); }
.smt-timer-circle.done { animation: none; filter: drop-shadow(0 0 20px rgba(74,138,96,0.3)); border-radius: 50%; }

.smt-timer-elapsed {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .smt-timer-circle { width: 180px; height: 180px; }
  .smt-timer-display { font-size: 2rem; }
}
.smt-timer-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #FF8C32, var(--gold));
  border-radius: 999px;
  transition: width 1s linear;
}

.nav-stats {
  display: flex; gap: 12px; align-items: center;
  padding-right: 12px;
  border-right: 1px solid rgba(212,168,67,0.15);
  margin-right: 8px;
}
.nav-stat-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  white-space: nowrap;
}
.nav-stat-item.perseveranca-nav {
  color: #FF8C32;
  text-shadow: 0 0 8px rgba(255,140,50,0.3);
}

@media (max-width: 768px) {
  .nav-stats { gap: 8px; padding-right: 8px; margin-right: 4px; }
  .nav-stat-item { font-size: 0.7rem; }
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 140px 32px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.day-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.4);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(212,168,67,0.2);
}

.hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
}

.hero .subtitle {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 32px;
}

.verse-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-gold);
}

.verse-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.verse-ref {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── MAIN ── */
main {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

/* ── SECTION ── */
.section { margin-bottom: 48px; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,168,67,0.15);
}

.section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.section p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 14px; }
.section p strong { color: var(--text); font-weight: 600; }

.highlight-block {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.03));
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}

/* ── METAS ── */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.goal-card {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.goal-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--goal-color, var(--gold));
  opacity: 0.6;
}

.goal-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,168,67,0.2);
  box-shadow: var(--shadow-gold);
}

.goal-icon { font-size: 1.4rem; margin-bottom: 10px; }
.goal-title { font-weight: 600; font-size: 0.9rem; color: var(--white); margin-bottom: 6px; }
.goal-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.5; }

.goal-card label { position: absolute; inset: 0; cursor: pointer; }
.goal-card input[type="checkbox"] {
  position: absolute; top: 16px; right: 16px;
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer; z-index: 2;
}
.goal-card input:checked ~ .goal-title { text-decoration: line-through; color: var(--text-dim); }

/* ── ORAÇÃO ── */
.prayer-box {
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.prayer-box::before {
  content: '"';
  position: absolute; top: -20px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  color: rgba(212,168,67,0.05);
  line-height: 1;
  pointer-events: none;
}

.prayer-box p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 10px;
}
.prayer-box p:last-child { margin-bottom: 0; }

/* ── NAV ── */
.day-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.day-nav a,
.day-nav .day-nav-link {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}

.day-nav a:hover {
  color: var(--gold);
  border-color: rgba(212,168,67,0.3);
  background: rgba(212,168,67,0.05);
}

.day-nav .center-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
}

/* ── PROGRESS ── */
.week-progress {
  background: var(--navy-2);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 48px;
}

.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  font-weight: 600;
}

.progress-track { height: 4px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); border-radius: 999px; transition: width 0.5s ease; }

.progress-days { display: flex; justify-content: space-between; margin-top: 12px; }

.progress-day {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.progress-day.done  { background: var(--gold); color: var(--navy); }
.progress-day.today { background: rgba(212,168,67,0.2); color: var(--gold); border: 2px solid var(--gold); }
.progress-day.future { background: var(--navy-4); color: var(--text-dim); }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,67,0.2), transparent); margin: 40px 0; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--navy-4); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .nav-days { display: none; }
  .hero { padding: 100px 16px 60px; }
  main { padding: 0 16px 80px; }
  .goals-grid { grid-template-columns: 1fr; }
}

/* ── MONTE IMAGE ── */
.monte-img-wrap {
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.2);
}
.monte-img { width: 100%; height: auto; display: block; }

/* ── SUBINDO O MONTE CARD ── */
.monte-card {
  background: linear-gradient(145deg, var(--navy-2) 0%, #0E1845 50%, var(--navy-3) 100%);
  border: 2px solid rgba(212,168,67,0.35);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(212,168,67,0.1);
}

.monte-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.monte-prayer-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.monte-prayer-label::after { content: ''; flex: 1; height: 1px; background: rgba(212,168,67,0.12); }

.monte-prayer-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}

.monte-timer-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.08);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.monte-timer-btn:hover { background: rgba(212,168,67,0.14); border-color: var(--gold); box-shadow: 0 0 20px rgba(212,168,67,0.15); }
.monte-timer-btn.running { animation: pulse-gold 2s ease infinite; }
.monte-timer-btn.done { background: rgba(74,138,96,0.12); border-color: var(--green); color: var(--green); animation: none; }
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 8px rgba(212,168,67,0.1); }
  50%       { box-shadow: 0 0 24px rgba(212,168,67,0.28); }
}

/* ── STEPS BOX ── */
.steps-box {
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.steps-header {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.steps-list { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.step-item { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; }
.step-item strong { color: var(--gold); font-weight: 700; }

/* ── AUDIO PLAYER ── */
.audio-player {
  background: linear-gradient(145deg, var(--navy-2) 0%, #0E1845 100%);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.ap-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ap-label { font-family: 'Cinzel', serif; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dim); }
.ap-counter { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--text-dim); }
.ap-track-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--gold-light); margin-bottom: 16px; text-align: center; }
.ap-audio-wrap { margin-bottom: 16px; }
.ap-audio-wrap audio { width: 100%; height: 44px; border-radius: var(--radius-sm); outline: none; }
.ap-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ap-btn {
  background: rgba(212,168,67,0.06); border: 1px solid rgba(212,168,67,0.2);
  color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s;
}
.ap-btn:hover { background: rgba(212,168,67,0.14); border-color: var(--gold); }
.ap-dots { display: flex; gap: 8px; flex: 1; justify-content: center; }
.ap-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212,168,67,0.18); cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.ap-dot.active { background: var(--gold); transform: scale(1.4); }
.ap-empty { text-align: center; padding: 20px; color: var(--text-dim); font-size: 0.85rem; font-style: italic; }
@media (max-width: 640px) { .ap-controls { flex-wrap: wrap; justify-content: center; } }

/* ── COMENTÁRIOS ── */
.comment-box { background: var(--navy-2); border: 1px solid rgba(212,168,67,0.15); border-radius: var(--radius); padding: 24px; }
.comment-input {
  width: 100%; background: var(--navy-4); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; padding: 14px; resize: vertical; line-height: 1.6; outline: none; transition: border-color 0.2s;
}
.comment-input:focus { border-color: rgba(212,168,67,0.4); }
.comment-input::placeholder { color: var(--text-dim); opacity: 0.6; }
.comment-footer { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.comment-name {
  flex: 1; min-width: 150px; background: var(--navy-4); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.85rem; padding: 10px 14px; outline: none; transition: border-color 0.2s;
}
.comment-name:focus { border-color: rgba(212,168,67,0.4); }
.comment-name::placeholder { color: var(--text-dim); opacity: 0.6; }
.comment-btn {
  padding: 10px 24px; border-radius: var(--radius-sm); border: 1px solid rgba(212,168,67,0.4);
  background: rgba(212,168,67,0.08); color: var(--gold); font-family: 'Cinzel', serif;
  font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.comment-btn:hover { background: rgba(212,168,67,0.18); border-color: var(--gold); box-shadow: 0 0 16px rgba(212,168,67,0.15); }
.comment-status { font-size: 0.8rem; margin-top: 10px; color: var(--text-dim); min-height: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }

/* ── GAMIFICATION ── */
#gami-bar {
  position: fixed; top: 58px; left: 0; right: 0; z-index: 98;
  background: rgba(10,17,40,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
  padding: 8px 24px;
}
.gami-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.gami-user { display: flex; align-items: center; gap: 8px; }
.gami-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,168,67,0.2); color: var(--gold);
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,168,67,0.4);
}
.gami-name { font-size: 0.78rem; color: var(--text); font-weight: 500; }
.gami-stats { display: flex; gap: 16px; }
.gami-stat { text-align: center; }
.gami-val { font-family: 'Space Mono', monospace; font-size: 0.8rem; color: var(--gold); display: block; font-weight: 700; }
.gami-lbl { font-size: 0.55rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.gami-logout {
  background: none; border: 1px solid rgba(255,255,255,0.1); color: var(--text-dim);
  font-size: 0.7rem; padding: 4px 12px; border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
}
.gami-btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,67,0.2); background: rgba(212,168,67,0.05);
  color: var(--gold); font-size: 0.9rem; text-decoration: none;
  transition: all 0.2s;
}
.gami-btn-icon:hover { background: rgba(212,168,67,0.15); border-color: var(--gold); }

/* Menu dropdown */
.gami-menu-wrap { position: relative; }
.gami-menu-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(212,168,67,0.25);
  background: rgba(212,168,67,0.05);
  cursor: pointer;
  transition: all 0.2s;
}
.gami-menu-btn:hover {
  background: rgba(212,168,67,0.12);
  border-color: rgba(212,168,67,0.5);
}
.gami-menu-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,168,67,0.25); color: var(--gold);
  font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,168,67,0.4);
  overflow: hidden;
}
.gami-menu-avatar img { width: 100%; height: 100%; object-fit: cover; }
.gami-menu-arrow {
  color: var(--gold); font-size: 0.65rem;
  transition: transform 0.2s;
}
.gami-menu-wrap:has(.gami-dropdown.open) .gami-menu-arrow,
.gami-dropdown.open ~ * .gami-menu-arrow { transform: rotate(180deg); }
.gami-dropdown {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  min-width: 220px;
  background: var(--navy-2);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  display: none;
  z-index: 200;
  animation: fadeUp 0.2s ease;
}
.gami-dropdown.open { display: block; }
.gami-dd-header {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(212,168,67,0.12);
  background: rgba(212,168,67,0.03);
}
.gami-dd-name {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}
.gami-dd-email {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.gami-dd-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
}
.gami-dd-item:hover {
  background: rgba(212,168,67,0.08);
  color: var(--gold);
}
.gami-dd-icon {
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}
.gami-dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 4px 0;
}
.gami-dd-logout:hover {
  background: rgba(193,64,64,0.1);
  color: var(--red);
}
.perseveranca-stat .gami-val {
  color: #FF8C32 !important;
  text-shadow: 0 0 12px rgba(255,140,50,0.3);
}
.gami-popup-flame {
  font-size: 3rem; margin-bottom: 12px;
  filter: drop-shadow(0 0 20px rgba(255,140,50,0.6));
  animation: flicker 1.5s ease-in-out infinite;
}
@keyframes flicker {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255,140,50,0.6)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(255,140,50,0.9)); }
}
.gami-logout:hover { border-color: rgba(193,64,64,0.4); color: var(--red); }

/* Steps */
.gami-wrapper { margin: 32px 0; }
.gami-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 20px; flex-wrap: wrap;
}
.gami-step {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  position: relative;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-4); color: var(--text-dim);
  font-family: 'Cinzel', serif; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.gami-step.done .step-num {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  box-shadow: 0 0 12px rgba(212,168,67,0.4);
}
.gami-step.current .step-num {
  border-color: var(--gold); color: var(--gold);
  animation: pulse-gold 2s ease infinite;
}
.step-label { font-size: 0.6rem; color: var(--text-dim); }
.gami-step.done .step-label { color: var(--gold); }
.step-line {
  width: 24px; height: 2px; background: rgba(255,255,255,0.1);
  margin: 0 4px; margin-bottom: 18px;
}
.step-line.done { background: var(--gold); }

/* Complete button */
.gami-complete-wrap { text-align: center; margin-top: 16px; }
.gami-complete-btn {
  padding: 16px 32px; border-radius: var(--radius-sm);
  border: 2px solid rgba(212,168,67,0.5);
  background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(212,168,67,0.05));
  color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; letter-spacing: 0.04em;
}
.gami-complete-btn:hover {
  background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(212,168,67,0.1));
  border-color: var(--gold); box-shadow: 0 0 30px rgba(212,168,67,0.2);
  transform: translateY(-2px);
}
.gami-done-msg {
  padding: 16px; border-radius: var(--radius-sm);
  background: rgba(74,138,96,0.1); border: 1px solid rgba(74,138,96,0.3);
  color: var(--green); font-family: 'Cinzel', serif; font-size: 0.85rem;
}

/* Popup */
.gami-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: fadeUp 0.4s ease;
}
.gami-popup-card {
  background: var(--navy-2); border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius); padding: 40px 32px; text-align: center;
  max-width: 380px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,168,67,0.1);
}
.gami-popup-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(212,168,67,0.15); color: var(--gold);
  font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 2px solid rgba(212,168,67,0.4);
}
.gami-popup-title {
  font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 12px;
}
.gami-popup-msgs p {
  font-size: 0.88rem; color: var(--text-dim); margin-bottom: 6px; line-height: 1.5;
}
.gami-popup-btn {
  margin-top: 20px; padding: 12px 28px; border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,67,0.4); background: rgba(212,168,67,0.1);
  color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.gami-popup-btn:hover { background: rgba(212,168,67,0.2); border-color: var(--gold); }

@media (max-width: 640px) {
  #gami-bar { padding: 6px 12px; }
  .gami-name { display: none; }
  .gami-stats { gap: 10px; }
  .step-line { width: 12px; }
}

/* ═══════════════════════════════════════
   MOBILE LAYOUT — 2 LINHAS APENAS
   Linha 1: Logo texto | Pernambuco   (logo SNT escondida no mobile)
   Linha 2: Dias 1-letra | Stats | Avatar
   ═══════════════════════════════════════ */
@media (max-width: 640px) {
  /* ─── Header compacto (sem logo SNT no mobile) ─── */
  .site-header {
    padding: 0 14px !important;
    gap: 10px;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }
  .site-header .logo {
    font-size: 0.9rem !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* ESCONDER logo SNT do header em mobile */
  .site-header a[style*="absolute"] {
    display: none !important;
  }
  /* Pernambuco discreto */
  .site-header > div > span {
    font-size: 0.55rem !important;
    letter-spacing: 0.12em !important;
  }

  /* ─── Nav-days: 1 linha só, grid 3 colunas fixas ─── */
  .nav-days {
    padding: 6px 10px !important;
    top: 48px !important;
    height: 40px;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 8px !important;
  }
  /* Dias em 1 letra só: S T Q Q S S D */
  .nav-days-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 2px !important;
    justify-self: start !important;
    grid-column: 1 !important;
  }
  .nav-days-inner a,
  .nav-days-inner span {
    padding: 3px 5px !important;
    font-size: 0 !important;
    min-width: 20px;
    text-align: center;
    position: relative;
    line-height: 1;
  }
  /* Mostrar só primeira letra */
  .nav-days-inner a::first-letter,
  .nav-days-inner span::first-letter {
    font-size: 0.75rem;
    color: inherit;
  }
  .nav-days-inner a::before,
  .nav-days-inner span::before {
    content: attr(data-letter);
    font-size: 0.75rem;
    font-weight: 700;
  }
  /* Stats no centro */
  .nav-stats {
    justify-self: center !important;
    grid-column: 2 !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
  }
  .nav-stat-item {
    font-size: 0.7rem !important;
    white-space: nowrap;
    padding: 0;
  }
  /* Avatar à direita */
  .gami-menu-wrap {
    justify-self: end !important;
    grid-column: 3 !important;
  }
  .gami-menu-btn {
    padding: 3px 8px 3px 3px !important;
  }
  .gami-menu-avatar {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.7rem !important;
  }
  .gami-menu-arrow { font-size: 0.55rem !important; }

  /* Ajustar conteúdo principal pra começar depois das 2 linhas */
  main {
    padding-top: 96px;
  }
  .hero {
    padding-top: 96px !important;
  }
}

@media (max-width: 420px) {
  .site-header .logo { font-size: 0.78rem !important; }
  .site-header > div > span { font-size: 0.5rem !important; }
  .nav-stats { gap: 6px !important; }
  .nav-stat-item { font-size: 0.65rem !important; }
  .nav-days-inner a::before,
  .nav-days-inner span::before { font-size: 0.7rem; }
}

@media (max-width: 360px) {
  .nav-stats .nav-stat-item:not(.perseveranca-nav) { display: none; }
  .site-header .logo { font-size: 0.72rem !important; }
}

/* ═══════════════════════════════════════
   JOURNEY HUD — Nova regra
   ═══════════════════════════════════════ */
.journey-hud {
  background: linear-gradient(145deg, var(--navy-2) 0%, #0E1845 100%);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.journey-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.journey-title {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim); font-weight: 700;
}
.journey-pct {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem; color: var(--gold); font-weight: 700;
}
.journey-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap; margin-bottom: 16px;
  overflow-x: auto; padding: 8px 0;
}
.journey-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.step-dot {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 0.75rem; font-weight: 700;
  background: var(--navy-4); color: var(--text-dim);
  border: 2px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.journey-step.done .step-dot {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold); box-shadow: 0 0 14px rgba(212,168,67,0.35);
}
.journey-step.current .step-dot {
  border-color: var(--gold); color: var(--gold);
  animation: pulse-gold 2s ease infinite;
}
.journey-step.locked .step-dot { opacity: 0.35; }
.journey-step.sunday .step-dot {
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.03));
  border-color: rgba(212,168,67,0.5);
  color: var(--gold-light);
}
.journey-step.sunday.done .step-dot {
  background: linear-gradient(135deg, #F0D080, var(--gold));
  color: var(--navy);
  box-shadow: 0 0 20px rgba(212,168,67,0.5);
}
.step-lbl {
  font-size: 0.6rem; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.journey-step.done .step-lbl { color: var(--gold); }
.step-line {
  flex: 0 0 auto; width: 20px; height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 0 3px 22px;
}
.step-line.done { background: var(--gold); }
.journey-caption {
  text-align: center;
  font-size: 0.78rem; color: var(--text-dim);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
}

.journey-sunday-pending {
  margin-top: 16px; padding: 14px 18px;
  background: linear-gradient(135deg, rgba(212,168,67,0.12), rgba(212,168,67,0.03));
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: var(--radius-sm);
  color: var(--gold); text-align: center;
  font-family: 'Cinzel', serif; font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.journey-sunday-done {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(74,138,96,0.1);
  border: 1px solid rgba(74,138,96,0.35);
  border-radius: var(--radius-sm);
  color: var(--green); text-align: center;
  font-family: 'Cinzel', serif; font-size: 0.82rem;
}
.journey-sunday-miss {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(193,64,64,0.08);
  border: 1px solid rgba(193,64,64,0.3);
  border-radius: var(--radius-sm);
  color: var(--red); text-align: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.9rem;
}

.journey-cta { margin-top: 24px; text-align: center; }
.journey-cta-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(212,168,67,0.5);
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
  color: var(--gold); font-family: 'Cinzel', serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.journey-cta-btn:hover {
  background: linear-gradient(135deg, rgba(212,168,67,0.25), rgba(212,168,67,0.08));
  box-shadow: 0 0 24px rgba(212,168,67,0.2);
  transform: translateY(-2px);
}
.journey-cta-sub {
  margin-top: 10px; font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.85rem; color: var(--text-dim);
}
.journey-done-msg {
  padding: 18px; border-radius: var(--radius-sm);
  background: rgba(74,138,96,0.1); border: 1px solid rgba(74,138,96,0.3);
  color: var(--green); font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem; text-align: center;
}

@media (max-width: 640px) {
  .journey-hud { padding: 16px; }
  .step-dot { width: 30px; height: 30px; font-size: 0.68rem; }
  .step-line { width: 10px; }
  .step-lbl { font-size: 0.55rem; }
}

/* ═══════════════════════════════════════
   NAV PROGRESS BAR (central do header)
   ═══════════════════════════════════════ */
.nav-progress {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 10px;
  margin: 0 4px;
  border-left: 1px solid rgba(212,168,67,0.15);
  border-right: 1px solid rgba(212,168,67,0.15);
  position: relative;
  cursor: help;
}
.nav-segs { display: inline-flex; gap: 3px; }
.nav-seg {
  width: 14px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-seg.done {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  box-shadow: 0 0 6px rgba(212,168,67,0.4);
}
.nav-progress-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; color: var(--gold);
  font-weight: 700;
  margin-left: 2px;
}
.nav-progress::before {
  content: attr(data-tooltip);
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--navy-4); color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  padding: 8px 12px; border-radius: var(--radius-sm);
  border: 1px solid rgba(212,168,67,0.3);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s; z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.nav-progress:hover::before { opacity: 1; }

@media (max-width: 640px) {
  .nav-progress { padding: 0 6px; margin: 0 2px; }
  .nav-seg { width: 10px; height: 3px; }
  .nav-progress-label { font-size: 0.6rem; }
}

/* ═══════════════════════════════════════
   WELCOME POPUP REFINADO
   ═══════════════════════════════════════ */
.welcome-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(ellipse at center, rgba(10,17,40,0.85) 0%, rgba(0,0,0,0.95) 100%);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: welcomeFadeIn 0.5s ease;
}
@keyframes welcomeFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(12px); }
}
.welcome-card {
  background: linear-gradient(160deg, var(--navy-2) 0%, #0E1845 60%, var(--navy-3) 100%);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius);
  padding: 40px 32px 28px;
  max-width: 400px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(212,168,67,0.12);
  position: relative;
  overflow: hidden;
  animation: welcomeCardIn 0.7s cubic-bezier(0.22,1,0.36,1);
}
@keyframes welcomeCardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.welcome-card::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,50,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.welcome-greeting {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
  position: relative;
}
.welcome-flame-wrap {
  display: flex; align-items: baseline; justify-content: center;
  gap: 6px; margin-bottom: 10px;
  position: relative;
}
.welcome-flame {
  font-size: 3.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 24px rgba(255,140,50,0.6));
  animation: welcomeFlicker 1.8s ease-in-out infinite;
}
@keyframes welcomeFlicker {
  0%,100% { transform: scale(1); filter: drop-shadow(0 0 24px rgba(255,140,50,0.6)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 36px rgba(255,140,50,0.9)); }
}
.welcome-streak-num {
  font-family: 'Cinzel', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(255,140,50,0.3);
  animation: welcomeNumberIn 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}
@keyframes welcomeNumberIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
.welcome-streak-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 2px;
}
.welcome-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #FF8C32;
  margin: 14px 0 12px;
  position: relative;
}
.welcome-tag::before,
.welcome-tag::after {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: rgba(255,140,50,0.4);
  vertical-align: middle;
  margin: 0 10px;
}
.welcome-msg {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 300px;
  margin-left: auto; margin-right: auto;
  position: relative;
}

.welcome-week {
  display: flex; align-items: center; gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(212,168,67,0.05);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 999px;
  position: relative;
}
.welcome-week-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dim);
}
.welcome-week-bar { display: flex; gap: 4px; }
.welcome-week-seg {
  width: 16px; height: 5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
}
.welcome-week-seg.done {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  box-shadow: 0 0 6px rgba(212,168,67,0.5);
}
.welcome-week-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem; color: var(--gold); font-weight: 700;
}

.welcome-stats {
  display: flex; justify-content: center; gap: 24px;
  margin-bottom: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.welcome-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.welcome-stat-icon { font-size: 1.2rem; }
.welcome-stat-val {
  font-family: 'Space Mono', monospace;
  font-size: 1.3rem; color: var(--gold);
  font-weight: 700;
}
.welcome-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.welcome-btn {
  padding: 14px 36px;
  border: 1px solid rgba(212,168,67,0.5);
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.04));
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.welcome-btn:hover {
  background: linear-gradient(135deg, rgba(212,168,67,0.25), rgba(212,168,67,0.08));
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212,168,67,0.25);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   PASTOR CARD — Mensagem direta
   ═══════════════════════════════════════ */
.pastor-card {
  background: linear-gradient(145deg, var(--navy-2) 0%, #0E1845 100%);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin: 32px 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.pastor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0.7;
}
.pastor-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212,168,67,0.12);
}
.pastor-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(212,168,67,0.05));
  border: 2px solid rgba(212,168,67,0.5);
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(212,168,67,0.15);
}
.pastor-avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.pastor-avatar-placeholder {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem; color: var(--gold);
  font-weight: 700;
}
.pastor-info { flex: 1; min-width: 0; }
.pastor-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 4px;
}
.pastor-name {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.pastor-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
}
.pastor-message {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  position: relative;
}
.pastor-message p {
  margin-bottom: 14px;
  color: var(--text) !important;
  font-size: 1.05rem !important;
}
.pastor-message p:last-child { margin-bottom: 0; }
.pastor-message strong {
  color: var(--gold);
  font-weight: 600;
}
.pastor-message em {
  color: var(--gold-light);
  font-style: italic;
}
.pastor-quote {
  background: rgba(212,168,67,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 18px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold-light);
  line-height: 1.6;
  position: relative;
}
.pastor-quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 12px;
  font-size: 2.5rem;
  color: rgba(212,168,67,0.3);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

@media (max-width: 640px) {
  .pastor-card { padding: 20px 18px; }
  .pastor-header { gap: 12px; padding-bottom: 16px; margin-bottom: 16px; }
  .pastor-avatar { width: 60px; height: 60px; }
  .pastor-name { font-size: 1rem; }
  .pastor-role { font-size: 0.78rem; }
  .pastor-message, .pastor-message p { font-size: 0.98rem !important; }
}

/* ═══════════════════════════════════════
   POLIMENTO — PÁGINAS DIÁRIAS
   ═══════════════════════════════════════ */

/* Hero do dia com entrada em cascata */
.hero .day-badge { animation: heroFadeIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero h1 { animation: heroFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.hero .subtitle { animation: heroFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero .verse-card { animation: heroFadeIn 0.9s cubic-bezier(0.22,1,0.36,1) 0.55s both; }
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Verse card com glow sutil pulsante */
.verse-card {
  position: relative;
  overflow: hidden;
}
.verse-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212,168,67,0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: verseGlow 4s ease-in-out infinite;
}
@keyframes verseGlow {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Week progress com status visual */
.week-progress {
  transition: all 0.4s;
}
.progress-day {
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.progress-day.done {
  animation: progressPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes progressPop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Status badge do dia */
.day-status-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  transition: all 0.3s;
}
.day-status-badge.pending {
  background: rgba(255,140,50,0.1);
  border: 1px solid rgba(255,140,50,0.3);
  color: #FF8C32;
}
.day-status-badge.in-progress {
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold);
  animation: statusPulse 2s ease infinite;
}
.day-status-badge.done {
  background: rgba(74,138,96,0.1);
  border: 1px solid rgba(74,138,96,0.3);
  color: var(--green);
}
@keyframes statusPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Section labels animados */
.section-label {
  position: relative;
  transition: color 0.3s;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.5;
  transition: width 0.4s cubic-bezier(0.22,1,0.36,1);
}
.section:hover .section-label::before { width: 40px; opacity: 1; }

/* Goal cards polimento */
.goals-grid .goal-card {
  animation: goalFadeIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.goals-grid .goal-card:nth-child(1) { animation-delay: 0.05s; }
.goals-grid .goal-card:nth-child(2) { animation-delay: 0.12s; }
.goals-grid .goal-card:nth-child(3) { animation-delay: 0.19s; }
.goals-grid .goal-card:nth-child(4) { animation-delay: 0.26s; }
.goals-grid .goal-card:nth-child(5) { animation-delay: 0.33s; }
@keyframes goalFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.goal-card {
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}
.goal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(212,168,67,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.goal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,168,67,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 24px rgba(212,168,67,0.08);
}
.goal-card:hover::after { opacity: 1; }
.goal-card input:checked ~ .goal-title {
  color: var(--green) !important;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(74,138,96,0.6);
}
.goal-card input:checked ~ .goal-icon {
  filter: brightness(1.2);
  animation: iconPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes iconPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Prayer box elegante */
.prayer-box {
  position: relative;
  overflow: hidden;
}
.prayer-box::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.prayer-box p {
  opacity: 0;
  animation: prayerFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) both;
}
.prayer-box p:nth-child(1) { animation-delay: 0.1s; }
.prayer-box p:nth-child(2) { animation-delay: 0.3s; }
.prayer-box p:nth-child(3) { animation-delay: 0.5s; }
.prayer-box p:nth-child(4) { animation-delay: 0.7s; }
@keyframes prayerFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Highlight block com glow */
.highlight-block {
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.highlight-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(212,168,67,0.06) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: highlightSheen 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes highlightSheen {
  0% { transform: translateX(-100%); }
  40% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Comment box melhor */
.comment-box {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.comment-box:focus-within {
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 0 30px rgba(212,168,67,0.08);
}
.comment-input {
  transition: all 0.3s;
}
.comment-input:focus {
  transform: translateY(-1px);
}

/* Day nav (rodapé) */
.day-nav {
  animation: navFadeIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.day-nav a {
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.day-nav a:hover {
  transform: translateX(4px);
}
.day-nav a:first-child:hover { transform: translateX(-4px); }

/* Section titles com reveal elegante */
.section h2 {
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  position: relative;
  display: inline-block;
}
.section h2::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.22,1,0.36,1);
}
.section:hover h2::after { width: 40px; }

/* Pastor card hover sutil */
.pastor-card { transition: all 0.4s cubic-bezier(0.22,1,0.36,1); }
.pastor-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,67,0.12);
}
.pastor-avatar {
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pastor-card:hover .pastor-avatar {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212,168,67,0.3);
}
