/* =============================================
   VIDA COM DEUS — Devocional Semanal
   Design System
   ============================================= */

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

:root {
  --gold:       #C9A84C;
  --gold-light: #F0D080;
  --gold-dim:   #7A6230;
  --dark:       #0D0D0F;
  --dark-2:     #141418;
  --dark-3:     #1C1C22;
  --dark-4:     #252530;
  --text:       #E8E4D9;
  --text-dim:   #9A9580;
  --white:      #FAFAF7;
  --red:        #C14040;
  --blue:       #4A7FA5;
  --purple:     #7A5FA0;
  --green:      #4A8A60;

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

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

html { scroll-behavior: smooth; }

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

/* ── NOISE TEXTURE OVERLAY ── */
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(13,13,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.site-header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

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

.nav-days a,
.nav-days 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 a:hover,
.nav-days a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* ── 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(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.day-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.hero h1 em {
  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(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-gold);
}

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

.verse-ref {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

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

.section-label {
  font-size: 0.65rem;
  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(201,168,76,0.15);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  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(201,168,76,0.08), rgba(201,168,76,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: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
}

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

.goal-card {
  background: var(--dark-3);
  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(201,168,76,0.2);
  box-shadow: var(--shadow-gold);
}

.goal-card.done {
  opacity: 0.6;
}

.goal-card.done .goal-title::after {
  content: ' ✓';
  color: var(--green);
}

.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-check {
  display: none;
}

.goal-card input:checked ~ .goal-title { text-decoration: line-through; color: var(--text-dim); }

/* checkbox label hack */
.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;
}

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

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

.prayer-box p {
  font-family: 'Playfair Display', 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; }

/* ── MÚSICA ── */
.music-tabs {
  display: flex; gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.tab-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.tab-btn.active[data-genre="worship"] { background: rgba(122,95,160,0.2); border-color: var(--purple); color: var(--purple); }
.tab-btn.active[data-genre="jazz"]    { background: rgba(74,127,165,0.2); border-color: var(--blue);   color: var(--blue); }
.tab-btn.active[data-genre="blues"]   { background: rgba(193,64,64,0.2);  border-color: var(--red);    color: var(--red); }
.tab-btn.active[data-genre="trap"]    { background: rgba(74,138,96,0.2);  border-color: var(--green);  color: var(--green); }

.music-panel { display: none; }
.music-panel.active { display: block; }

.track-list { display: flex; flex-direction: column; gap: 12px; }

.track-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--dark-4);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: all 0.2s;
}

.track-item:hover {
  border-color: rgba(201,168,76,0.2);
  background: var(--dark-3);
  transform: translateX(4px);
}

.track-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  width: 20px;
  text-align: center;
}

.track-info { flex: 1; }
.track-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.track-artist { font-size: 0.78rem; color: var(--text-dim); }

.track-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}

.tag-worship { background: rgba(122,95,160,0.2); color: var(--purple); }
.tag-jazz    { background: rgba(74,127,165,0.2);  color: var(--blue); }
.tag-blues   { background: rgba(193,64,64,0.2);   color: var(--red); }
.tag-trap    { background: rgba(74,138,96,0.2);   color: var(--green); }

.track-play {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── FOOTER 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(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}

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

/* ── PROGRESS BAR ── */
.week-progress {
  background: var(--dark-3);
  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(--dark); }
.progress-day.today   { background: rgba(201,168,76,0.2); color: var(--gold); border: 2px solid var(--gold); }
.progress-day.future  { background: var(--dark-4); color: var(--text-dim); }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-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; }
}

/* ── WORSHIP PLAYER ── */
.worship-player {
  background: linear-gradient(145deg, #0A0D1C 0%, #10112A 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.wp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.wp-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.wp-counter {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
}
.wp-track-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.wp-lyrics {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 2;
  white-space: pre-line;
  background: rgba(0,0,0,0.25);
  border-left: 2px solid rgba(201,168,76,0.3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin-bottom: 18px;
  min-height: 90px;
}
.wp-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wp-btn {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.wp-btn:hover { background: rgba(201,168,76,0.14); border-color: var(--gold); }
.wp-dots { display: flex; gap: 8px; flex: 1; justify-content: center; }
.wp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(201,168,76,0.18);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.wp-dot.active { background: var(--gold); transform: scale(1.4); }
@media (max-width: 640px) { .wp-controls { flex-wrap: wrap; } }

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

/* ── SUBINDO O MONTE ── */
.monte-card {
  background: linear-gradient(145deg, #0A0F2E 0%, #0D1640 50%, #111830 100%);
  border: 1px solid rgba(201,168,76,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(201,168,76,0.1);
}
.monte-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.monte-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.monte-sara-tag {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 4px;
}
.monte-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.monte-verse-ref {
  font-size: 0.67rem;
  color: var(--text-dim);
  font-style: italic;
}
.monte-day-badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.monte-focus {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.monte-focus-icon {
  font-size: 2.6rem;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.4));
  flex-shrink: 0;
  line-height: 1;
}
.monte-ore-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 4px;
}
.monte-focus-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(201,168,76,0.2);
}
.monte-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.monte-pillar {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pillar-value {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.pillar-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.monte-prayer-label {
  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(201,168,76,0.12);
}
.monte-prayer-text {
  font-family: 'Playfair Display', 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(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  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(201,168,76,0.14);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,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(201,168,76,0.1); }
  50%       { box-shadow: 0 0 24px rgba(201,168,76,0.28); }
}
@media (max-width: 640px) {
  .monte-pillars { grid-template-columns: 1fr; }
  .monte-focus-title { font-size: 1.5rem; }
  .monte-header { flex-direction: column; gap: 10px; }
}

/* ── MINI YOUTUBE PLAYER ── */
.yt-mini-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.yt-mini-bar.open { transform: translateY(0); }

.yt-note {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  animation: pulse-gold 2s ease infinite;
}
.yt-meta { flex: 1; min-width: 0; }
.yt-meta .yt-track { font-weight: 600; font-size: 0.9rem; color: var(--white); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.yt-meta .yt-artist { font-size: 0.78rem; color: var(--text-dim); }
.yt-open-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.yt-open-btn:hover { background: rgba(201,168,76,0.18); }

.yt-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.yt-close-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

@media (max-width: 640px) {
  .yt-mini-bar { flex-direction: column; align-items: stretch; padding: 12px 16px; }
  .yt-frame-wrap { width: 100%; height: 200px; }
}

/* ── STEPS BOX ── */
.steps-box {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.steps-header {
  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, #0A0D1C 0%, #10112A 100%);
  border: 1px solid rgba(201,168,76,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-size: 0.58rem;
  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: 'Playfair Display', 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(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.ap-btn:hover {
  background: rgba(201,168,76,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(201,168,76,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(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 24px;
}
.comment-input {
  width: 100%;
  background: var(--dark-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(201,168,76,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(--dark-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(201,168,76,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(201,168,76,0.4);
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.comment-btn:hover {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.15);
}
.comment-status {
  font-size: 0.8rem;
  margin-top: 10px;
  color: var(--text-dim);
  min-height: 20px;
}
.comment-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comment-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.comment-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.comment-date {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 0.7rem;
  margin-left: 8px;
}
.comment-text-display {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ── DIAS BLOQUEADOS ── */
.day-card.locked {
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
.day-card.locked .day-name,
.day-card.locked .day-theme,
.day-card.locked .day-verse {
  filter: blur(4px);
  user-select: none;
}
.day-card.locked .day-num {
  filter: none;
}
.day-card.locked::after {
  content: 'A mensagem já está pronta. Um dia de cada vez.';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.72rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-dim);
  text-align: center;
  width: 80%;
  line-height: 1.5;
  z-index: 2;
}
.day-card.locked:hover {
  transform: none;
  border-color: rgba(255,255,255,0.06);
  box-shadow: none;
}

/* ── HERO IMAGE ── */
.hero-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 32px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 12px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.08);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.hero-image:hover img {
  opacity: 1;
}

/* ── 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; }
