/* ============================================================
   BOZZAS — style.css
   Paleta:
     --ink:     #0A0A0F  (fundo principal)
     --deep:    #1A0A2E  (fundo alternado)
     --gold:    #C9A84C  (acento dourado)
     --glow:    #D4AF37  (gold mais brilhante para hover)
     --snow:    #F0EDE6  (texto principal claro)
     --mist:    #8B8B9A  (texto secundário)
     --surface: #12121A  (cards e superfícies)
     --border:  rgba(201,168,76,0.18)  (bordas subtis)
   ============================================================ */

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

:root {
  --ink:     #0A0A0F;
  --deep:    #1A0A2E;
  --gold:    #C9A84C;
  --glow:    #D4AF37;
  --snow:    #F0EDE6;
  --mist:    #8B8B9A;
  --surface: #12121A;
  --border:  rgba(201,168,76,0.18);
  --radius:  12px;
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3.25rem;
  --fs-hero: clamp(3rem, 10vw, 7.5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--snow);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ── SELEÇÃO ── */
::selection { background: var(--gold); color: var(--ink); }

/* ── CONTAINER ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── HEADINGS ── */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--snow);
}

h2 em { font-style: italic; color: var(--gold); }

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

#navbar.scrolled {
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: var(--fs-sm);
  color: var(--mist);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--snow); }

.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--snow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem 5% 4rem;
  gap: 2rem;
  overflow: hidden;
}

#audioCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 0.9;
  color: var(--snow);
  margin-bottom: 1.5rem;
  position: relative;
}

.decode-text {
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--mist);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
}

.btn-primary:hover {
  background: var(--glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--mist);
  padding: 0.85rem 1.5rem;
  border-radius: 99px;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(139,139,154,0.3);
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--snow);
  border-color: var(--snow);
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.countdown-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--mist);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.countdown-units {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.unit span {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.unit small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 3px;
}

.sep {
  font-size: var(--fs-2xl);
  color: var(--border);
  padding-bottom: 0.2rem;
  font-weight: 300;
}

/* ── COVER ART ── */
.hero-cover {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.cover-art {
  width: clamp(240px, 30vw, 420px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1A0A2E 0%, #0A0A0F 60%, #2A1A0E 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
}

.cover-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.cover-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-letter {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(201,168,76,0.4);
  z-index: 2;
  position: relative;
  line-height: 1;
}

.cover-rings {
  position: absolute;
  inset: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  animation: pulseRing 4s ease-in-out infinite;
}

.r1 { width: 160px; height: 160px; animation-delay: 0s; }
.r2 { width: 220px; height: 220px; animation-delay: 0.8s; }
.r3 { width: 280px; height: 280px; animation-delay: 1.6s; }

@keyframes pulseRing {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.03); }
}

/* ── SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero-scroll-hint span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mist);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   SECÇÃO SOBRE
   ============================================================ */
.section-sobre {
  padding: 8rem 0;
  background: var(--ink);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-text p {
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: var(--fs-lg);
}

.sobre-stats {
  display: flex;
  gap: 2.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-l {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--mist);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Fotos ── */
.foto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.foto-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foto-card:hover { transform: scale(1.02); }

.f1 { grid-column: 1 / -1; min-height: 220px; }

.foto-placeholder {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--mist);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================================
   TRACKLIST
   ============================================================ */
.section-tracklist {
  padding: 8rem 0;
  background: var(--deep);
  position: relative;
}

.section-tracklist::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.tracks-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }

.track-item {
  display: grid;
  grid-template-columns: 50px 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.track-item:hover {
  background: rgba(201,168,76,0.06);
  border-color: var(--border);
}

.track-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-sm);
  color: var(--mist);
  text-align: center;
  position: relative;
}

.track-play-icon {
  display: none;
  color: var(--gold);
  font-size: 1.1rem;
}

.track-item:hover .track-num { display: none; }
.track-item:hover .track-play-icon { display: block; }

.track-info { display: flex; flex-direction: column; gap: 0.2rem; }

.track-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--snow);
}

.track-feat {
  font-size: var(--fs-xs);
  color: var(--mist);
  font-family: 'JetBrains Mono', monospace;
}

.track-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-sm);
  color: var(--mist);
}

.track-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  border: 1px solid var(--gold);
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.track-item:hover .track-badge { opacity: 1; }
.track-item.single .track-badge { opacity: 1; }

/* ============================================================
   LETRAS
   ============================================================ */
.section-letras {
  padding: 8rem 0;
  background: var(--ink);
}

.letras-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.letra-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--mist);
  padding: 0.5rem 1.25rem;
  border-radius: 99px;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.letra-tab:hover { border-color: var(--gold); color: var(--snow); }

.letra-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.letra-display {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.letra-display::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  pointer-events: none;
}

.letra-content {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-lg);
  line-height: 2.2;
  color: var(--snow);
  white-space: pre-line;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.4s ease;
}

.letra-title-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

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

/* ============================================================
   FICHA TÉCNICA
   ============================================================ */
.section-ficha {
  padding: 8rem 0;
  background: var(--deep);
}

.ficha-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ficha-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.ficha-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}

.ficha-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.ficha-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  color: var(--snow);
  margin-bottom: 0.4rem;
}

.ficha-detail {
  font-size: var(--fs-sm);
  color: var(--mist);
  line-height: 1.6;
}

/* ============================================================
   DECODING THE CODE
   ============================================================ */
.section-decoding {
  padding: 8rem 0;
  background: var(--ink);
}

.decoding-intro {
  color: var(--mist);
  font-size: var(--fs-lg);
  max-width: 640px;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.decoding-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.decode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.decode-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.decode-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.decode-card:hover::after { opacity: 1; }

.decode-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.decode-track-name {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--snow);
  margin-bottom: 1rem;
}

.decode-text-content {
  font-size: var(--fs-sm);
  color: var(--mist);
  line-height: 1.8;
}

.decode-expand {
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.decode-extra {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
  color: var(--mist);
  line-height: 1.8;
  display: none;
}

.decode-extra.open { display: block; animation: fadeUp 0.3s ease; }

/* ============================================================
   FORMULÁRIO DE FÃS
   ============================================================ */
.section-contato {
  padding: 8rem 0;
  background: var(--deep);
  position: relative;
}

.section-contato::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato-text p {
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.perks li {
  font-size: var(--fs-sm);
  color: var(--mist);
  padding-left: 1.5rem;
  position: relative;
}

.perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Formulário ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--mist);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  color: var(--snow);
  font-size: var(--fs-base);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder { color: rgba(139,139,154,0.5); }

.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: var(--fs-sm);
  color: var(--mist);
}

.radio-option input[type="radio"] { accent-color: var(--gold); }

.radio-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  color: var(--snow);
}

.form-note {
  margin-top: 0.75rem;
  font-size: var(--fs-xs);
  color: rgba(139,139,154,0.5);
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
}

.form-feedback {
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  animation: fadeUp 0.3s ease;
}

.form-feedback.success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}

.form-feedback.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

.form-feedback.hidden { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--mist);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--mist);
  transition: color 0.2s, transform 0.2s;
  display: flex;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  #hero {
    flex-direction: column;
    padding-top: 8rem;
    text-align: center;
    justify-content: center;
  }

  .hero-actions { justify-content: center; }
  .countdown-wrap { align-items: center; }

  .hero-cover { order: -1; }
  .cover-art { width: 260px; }

  .sobre-grid,
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,15,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: var(--fs-xl); }

  .nav-toggle { display: flex; z-index: 100; position: relative; }
}

@media (max-width: 600px) {
  h2 { font-size: var(--fs-2xl); }
  .letra-display { padding: 1.75rem; }
  .track-item { grid-template-columns: 36px 1fr auto; }
  .track-badge { display: none; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Estilos adicionados na versão corrigida ── */

/* Link de privacidade no footer */
.footer-privacy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--mist);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-privacy:hover { color: var(--gold); }

/* Checkbox de consentimento RGPD */
.consent-label {
  cursor: pointer;
  align-items: flex-start;
  gap: 0.75rem;
  border-color: rgba(201,168,76,0.2);
  line-height: 1.5;
  font-size: 0.875rem;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.consent-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-link:hover { opacity: 0.8; }

/* ── Capa do álbum com imagem real ── */
.cover-art--image {
  padding: 0;
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.cover-rings--over {
  position: absolute;
  inset: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}


/* ============================================================
   SISTEMA DE BLOQUEIO PRÉ-LANÇAMENTO — v7
   Secções bloqueadas até LAUNCH_DATE zerar.
   O JavaScript adiciona/remove a classe .locked-mode no <body>
   e .section-unlocked em cada secção quando o tempo chega a 0.
   ============================================================ */

/* ── Secções bloqueadas: desfoque + pointer-events off ────── */
body.locked-mode #sobre,
body.locked-mode #tracklist,
body.locked-mode #letras,
body.locked-mode #ficha,
body.locked-mode #decoding {
  position: relative;
  pointer-events: none;
  user-select: none;
}

/* Camada de desfoque sobre o conteúdo bloqueado */
body.locked-mode #sobre::after,
body.locked-mode #tracklist::after,
body.locked-mode #letras::after,
body.locked-mode #ficha::after,
body.locked-mode #decoding::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px) brightness(0.4);
  -webkit-backdrop-filter: blur(14px) brightness(0.4);
  z-index: 10;
  pointer-events: none;
}

/* Overlay de bloqueio com cadeado e mensagem */
.lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  pointer-events: none;
}

.lock-icon {
  font-size: 2.8rem;
  animation: lockPulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.5));
}

.lock-msg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  text-shadow: 0 0 20px rgba(201,168,76,0.6);
  padding: 0 1rem;
}

@keyframes lockPulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.1); opacity: 1;   }
}

/* ── Navbar: links bloqueados ficam inacessíveis ─────────── */
body.locked-mode .nav-links a[href="#sobre"],
body.locked-mode .nav-links a[href="#tracklist"],
body.locked-mode .nav-links a[href="#letras"],
body.locked-mode .nav-links a[href="#ficha"],
body.locked-mode .nav-links a[href="#decoding"] {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
}

/* Botão "Explorar o Álbum" bloqueado */
body.locked-mode a.btn-primary[href="#tracklist"] {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

/* ── Faixa de aviso no hero (abaixo do countdown) ────────── */
#launch-banner {
  display: none;
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 99px;
  background: rgba(201,168,76,0.07);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  animation: bannerGlow 3s ease-in-out infinite;
}

body.locked-mode #launch-banner { display: inline-block; }

@keyframes bannerGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%       { box-shadow: 0 0 20px 4px rgba(201,168,76,0.2); }
}

/* ── Animação de desbloqueio ─────────────────────────────── */
.section-unlocking {
  animation: unlockReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes unlockReveal {
  0%   { opacity: 0; transform: translateY(20px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Efeito de flash dourado ao desbloquear */
.unlock-flash {
  position: fixed;
  inset: 0;
  background: rgba(201,168,76,0.12);
  z-index: 9999;
  pointer-events: none;
  animation: flashOut 1s ease-out forwards;
}

@keyframes flashOut {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

/* ── Banner de desbloqueio celebrativo ───────────────────── */
#unlock-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: var(--ink);
  padding: 1rem 2.5rem;
  border-radius: 99px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9998;
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

#unlock-toast.show {
  transform: translateX(-50%) translateY(0);
}
