/* ============================================================
   ALVA VINTER — Hypnotic Nordic Pop
   Design System: Icy Dark · Aurora · Atmospheric
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Core palette */
  --bg:          #05080f;
  --bg-2:        #080c17;
  --bg-3:        #0a1020;
  --ice:         #7dd3fc;
  --ice-dim:     rgba(125, 211, 252, 0.15);
  --ice-glow:    rgba(125, 211, 252, 0.08);
  --frost:       #e0f2fe;
  --aurora-1:    #6366f1; /* indigo */
  --aurora-2:    #06b6d4; /* cyan */
  --aurora-3:    #818cf8; /* violet */
  --yt-red:      #FF0000;
  --yt-red-dim:  rgba(255, 0, 0, 0.18);
  --sp-green:    #1DB954;
  --sp-green-dim:rgba(29, 185, 84, 0.15);
  --white:       #ffffff;
  --white-90:    rgba(255,255,255,0.9);
  --white-70:    rgba(255,255,255,0.7);
  --white-50:    rgba(255,255,255,0.5);
  --white-30:    rgba(255,255,255,0.3);
  --white-12:    rgba(255,255,255,0.12);
  --white-06:    rgba(255,255,255,0.06);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-serif:   'DM Serif Display', serif;

  /* Layout */
  --max-w: 1280px;
  --px: clamp(1.25rem, 5vw, 4rem);
  --header-h: 70px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: none; color: inherit; font: inherit; }
@media (hover: none) { button { cursor: pointer; } }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── CUSTOM CURSOR ── */
#cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.25s ease;
  mix-blend-mode: screen;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
#cursor-dot::before {
  content: '❄';
  color: var(--ice);
  font-size: 1.25rem;
  text-shadow: 0 0 8px rgba(125, 211, 252, 0.8);
  animation: spin-frost 15s linear infinite;
  display: block;
  transition: font-size 0.25s var(--ease), color 0.25s ease, text-shadow 0.25s ease;
}
#cursor-dot.expanded::before {
  font-size: 2.3rem;
  color: var(--frost);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.95), 0 0 25px var(--ice);
  animation-duration: 4s; /* Gira mais rápido quando passa sobre links */
}
@media (hover: none) { #cursor-dot { display: none; } }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#header.scrolled {
  background: rgba(5, 8, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--white-06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--px);
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-mark {
  font-size: 1rem;
  color: var(--ice);
  animation: spin-frost 20s linear infinite;
}
@keyframes spin-frost {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.logo-text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-left: auto;
}
@media (max-width: 860px) { .nav-links { display: none; } }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-70);
  position: relative;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--ice);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 860px) { .header-ctas { display: none; } }

.btn-yt-header, .btn-spotify-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-yt-header svg, .btn-spotify-header svg { width: 14px; height: 14px; flex-shrink: 0; }
.btn-yt-header {
  background: var(--yt-red-dim);
  border: 1px solid rgba(255,0,0,0.35);
  color: #ff6b6b;
}
.btn-yt-header:hover { background: var(--yt-red); color: var(--white); border-color: var(--yt-red); }
.btn-spotify-header {
  background: var(--sp-green-dim);
  border: 1px solid rgba(29,185,84,0.3);
  color: var(--sp-green);
}
.btn-spotify-header:hover { background: var(--sp-green); color: var(--white); border-color: var(--sp-green); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
@media (max-width: 860px) { .hamburger { display: flex; } }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all 0.3s ease; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 16px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* ── MOBILE MENU ── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,8,15,0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#mobile-menu.open { opacity: 1; visibility: visible; }

.mm-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--px);
  border-bottom: 1px solid var(--white-06);
}
.mm-top button { display: flex; align-items: center; }
.mm-top svg { width: 28px; height: 28px; }

.mm-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 2rem;
  padding: 3rem var(--px);
}
.mm-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-70);
  transition: color 0.25s ease;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
#mobile-menu.open .mm-link { opacity: 1; transform: translateX(0); }
#mobile-menu.open .mm-link:nth-child(1) { transition-delay: 0.05s; }
#mobile-menu.open .mm-link:nth-child(2) { transition-delay: 0.1s; }
#mobile-menu.open .mm-link:nth-child(3) { transition-delay: 0.15s; }
#mobile-menu.open .mm-link:nth-child(4) { transition-delay: 0.2s; }
.mm-link:hover { color: var(--ice); }

.mm-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem var(--px);
  border-top: 1px solid var(--white-06);
}
.mm-cta-yt, .mm-cta-spotify {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.4s 0.25s ease, background 0.25s ease;
}
#mobile-menu.open .mm-cta-yt,
#mobile-menu.open .mm-cta-spotify { opacity: 1; }
.mm-cta-yt svg, .mm-cta-spotify svg { width: 20px; height: 20px; flex-shrink: 0; }
.mm-cta-yt { background: var(--yt-red); color: var(--white); }
.mm-cta-yt:hover { background: #cc0000; }
.mm-cta-spotify { background: var(--sp-green); color: var(--white); }
.mm-cta-spotify:hover { background: #18a349; }

/* ── SHARED BUTTON STYLES ── */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cta-xl { font-size: 1rem; padding: 1.1rem 2.5rem; }
.cta-full { width: 100%; justify-content: center; }

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cta-primary:hover .cta-glow { opacity: 1; }
.cta-inner { position: relative; display: inline-flex; align-items: center; gap: 0.6rem; z-index: 1; }
.cta-inner svg, .cta-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }
.cta-xl .cta-inner svg { width: 22px; height: 22px; }

.cta-yt { background: var(--yt-red); color: var(--white); box-shadow: 0 0 30px rgba(255,0,0,0.25); }
.cta-yt:hover { background: #cc0000; box-shadow: 0 0 50px rgba(255,0,0,0.4), 0 8px 24px rgba(0,0,0,0.4); transform: translateY(-2px); }

.cta-sp {
  background: transparent;
  color: var(--sp-green);
  border: 1.5px solid rgba(29,185,84,0.4);
}
.cta-sp:hover {
  background: var(--sp-green);
  color: var(--white);
  border-color: var(--sp-green);
  box-shadow: 0 0 30px rgba(29,185,84,0.25);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 95% 15%, #5c5d62 0%, #3a3a3f 40%, #1e1f22 70%, #0d0d10 100%);
}
.aurora-img {
  display: none;
}
.hero-gradient-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 2;
}
.hero-gradient-top {
  position: absolute; top: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to bottom, rgba(5,8,15,0.6) 0%, transparent 100%);
  z-index: 2;
}
.hero-gradient-horizontal {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #05080f 0%, rgba(5, 8, 15, 0.9) 30%, rgba(5, 8, 15, 0.4) 65%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Frost particles */
.frost-particles { position: absolute; inset: 0; pointer-events: none; }
.frost {
  position: absolute;
  color: var(--ice);
  opacity: 0;
  animation: frost-float 15s ease-in-out infinite;
  font-size: 1.2rem;
}
.fp-1 { top: 20%; left: 15%; animation-delay: 0s; font-size: 0.9rem; }
.fp-2 { top: 40%; left: 80%; animation-delay: 2.5s; font-size: 1.4rem; }
.fp-3 { top: 70%; left: 25%; animation-delay: 5s; font-size: 0.7rem; }
.fp-4 { top: 55%; left: 88%; animation-delay: 7s; font-size: 1rem; }
.fp-5 { top: 30%; left: 60%; animation-delay: 1.5s; font-size: 2rem; color: rgba(125,211,252,0.4); }
.fp-6 { top: 80%; left: 70%; animation-delay: 4s; font-size: 1.5rem; color: rgba(125,211,252,0.3); }
.fp-7 { top: 10%; left: 90%; animation-delay: 9s; font-size: 0.8rem; }
.fp-8 { top: 60%; left: 45%; animation-delay: 11s; font-size: 2.5rem; color: rgba(125,211,252,0.2); }

@keyframes frost-float {
  0% { opacity: 0; transform: translateY(20px) rotate(0deg); }
  25% { opacity: 0.6; }
  75% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-60px) rotate(30deg); }
}
@media (max-width: 640px) { .frost-particles { display: none; } }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) var(--px) 6rem;
}

/* Entry animations */
.animate-in { opacity: 0; transform: translateY(30px); }
.animate-in.done { opacity: 1; transform: translateY(0); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.25s; }
.delay-2 { transition-delay: 0.45s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.75rem;
  border: 1px solid var(--ice-dim);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--ice-glow);
  width: fit-content;
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin-bottom: 2rem;
}
.ht-line { display: block; }
.ht-sm {
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: var(--white-70);
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.ht-lg { font-size: clamp(4rem, 12vw, 10rem); }
.ht-accent {
  background: linear-gradient(135deg, var(--frost), var(--ice) 40%, var(--aurora-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--white-60, rgba(255,255,255,0.6));
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-sub em { color: var(--ice); font-style: italic; }

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-50);
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--white-12);
}

/* Scroll hint */
.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: 10;
}
.scroll-hint span {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-30);
  font-family: var(--font-body);
}
.scroll-arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ice));
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
@media (max-width: 640px) { .scroll-hint { display: none; } }

/* ── SECTION BASE ── */
.section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  scroll-margin-top: var(--header-h);
}
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(125, 211, 252, 0.12) 30%, rgba(125, 211, 252, 0.22) 50%, rgba(125, 211, 252, 0.12) 70%, transparent);
  z-index: 3;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 200px;
  background: radial-gradient(ellipse at center, rgba(125, 211, 252, 0.04) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.section-label {
  margin-bottom: 1.5rem;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ice);
  border: 1px solid var(--ice-dim);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: var(--ice-glow);
}
.section-pill svg { width: 14px; height: 14px; }
.section-pill-yt {
  color: #ff6b6b;
  border-color: rgba(255,0,0,0.2);
  background: var(--yt-red-dim);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ice);
  text-transform: none;
  font-weight: 400;
}

/* ── LISTEN SECTION ── */
.section-listen { background: var(--bg-2); }

.listen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 900px) { .listen-grid { grid-template-columns: 1fr; } }

.embed-wrap {
  border: 1px solid var(--ice-dim);
  border-radius: 18px;
  padding: 4px;
  background: var(--ice-glow);
  margin-bottom: 1rem;
}

.open-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-50);
  transition: color 0.25s ease;
}
.open-platform-link:hover { color: var(--sp-green); }
.open-platform-link svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.open-platform-link:hover svg { transform: translate(2px, -2px); }

.listen-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-70);
  margin-bottom: 2rem;
  max-width: 480px;
}

.tracks-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 0.75rem;
}
.track-list { display: flex; flex-direction: column; margin-bottom: 2rem; }
.track-item {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--white-06);
  transition: background 0.2s ease;
}
.track-item:first-child { border-top: 1px solid var(--white-06); }
.track-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--white-30);
  font-weight: 600;
}
.track-name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}
.track-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-40, rgba(255,255,255,0.4));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  font-style: italic;
}
@media (max-width: 480px) { .track-sub { display: none; } }

/* ── WATCH SECTION ── */
.section-watch { background: var(--bg-3); overflow: hidden; }

.watch-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 0, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.watch-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.watch-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 380px;
}

/* Watch Grid */
.watch-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}
@media (max-width: 990px) {
  .watch-grid {
    grid-template-columns: 1fr;
  }
}

.video-playlist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.5rem;
  border-radius: 12px;
  background: var(--white-06);
  border: 1px solid var(--white-06);
  text-align: left;
  transition: all 0.3s var(--ease);
  width: 100%;
}

.playlist-item:hover {
  background: rgba(255, 0, 0, 0.04);
  border-color: rgba(255, 0, 0, 0.25);
  transform: translateX(4px);
}

.playlist-item.active {
  background: var(--yt-red-dim);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.05);
}

.pi-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white-30);
  width: 1.5rem;
}
.playlist-item.active .pi-number {
  color: #ff6b6b;
}

.pi-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pi-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.pi-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-50);
}

.pi-play-icon {
  font-size: 0.8rem;
  color: var(--white-30);
  transition: all 0.3s ease;
}

.playlist-item:hover .pi-play-icon {
  color: #ff6b6b;
  transform: scale(1.2);
}

.playlist-item.active .pi-play-icon {
  color: #ff6b6b;
}

.video-playing-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* Featured video */
.featured-video { margin-bottom: 0; }
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,0,0,0.15);
  background: #0a0a0a;
  box-shadow: 0 0 60px rgba(255, 0, 0, 0.08);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
}
.video-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-30);
}
.video-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff6b6b;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}
.video-channel-link:hover { color: var(--yt-red); }
.video-channel-link svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.video-channel-link:hover svg { transform: translate(2px, -2px); }

/* YT Cards */
.yt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 560px) { .yt-cards { grid-template-columns: 1fr; } }

.yt-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--white-06);
  border-radius: 12px;
  background: var(--white-06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.yt-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--yt-red), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.yt-card:hover { border-color: rgba(255,0,0,0.3); background: var(--yt-red-dim); }
.yt-card:hover::before { transform: scaleY(1); }

.yt-card-subscribe { border-color: rgba(255,255,255,0.1); }
.yt-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yt-red-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.yt-card-icon svg { width: 20px; height: 20px; color: #ff6b6b; }
.yt-card-subscribe .yt-card-icon { background: var(--white-06); }
.yt-card-subscribe .yt-card-icon svg { color: var(--white-70); }
.yt-card-text { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.yt-card-text strong { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--white); }
.yt-card-text span { font-family: var(--font-body); font-size: 0.7rem; color: var(--white-50); }
.yt-card-arrow { width: 16px; height: 16px; color: var(--white-30); transition: transform 0.25s ease, color 0.25s ease; flex-shrink: 0; }
.yt-card:hover .yt-card-arrow { transform: translate(3px, -3px); color: var(--white); }

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

/* ── RELEASES SECTION ── */
.section-releases { background: var(--bg); }

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-06);
  border: 1px solid var(--white-06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .releases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .releases-grid { grid-template-columns: 1fr; } }

.release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  overflow: hidden;
  transition: background 0.3s ease;
}
.release-card:hover { background: var(--bg-3); }

.release-visual {
  position: relative;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.rv-enough   { background: url('https://i.ytimg.com/vi/n2Bi76hqAfk/maxresdefault.jpg') center/cover no-repeat, linear-gradient(135deg, #1a0a2e, #2d1b69, #1e3a5f); }
.rv-lastlight { background: url('https://image-cdn-ak.spotifycdn.com/image/ab67616d0000b273dc50c34ed6ed189167ea944a') center/cover no-repeat, linear-gradient(135deg, #0a1628, #1e3a5f, #0d2840); }
.rv-home     { background: url('https://image-cdn-ak.spotifycdn.com/image/ab67616d0000b273ba3a98d4d4467785c43582c2') center/cover no-repeat, linear-gradient(135deg, #0a1f2e, #163b52, #0f2540); }
.rv-breathing { background: url('https://image-cdn-fa.spotifycdn.com/image/ab67616d0000b2732ca50e52b89d004a465e46db') center/cover no-repeat, linear-gradient(135deg, #051520, #0d2b3e, #1a3a4f); }
.rv-unseen   { background: url('https://image-cdn-fa.spotifycdn.com/image/ab67616d0000b273fc53707e89749abe35fd335f') center/cover no-repeat, linear-gradient(135deg, #12082a, #2a1255, #1e0f45); }
.rv-coming   { background: url('https://image-cdn-fa.spotifycdn.com/image/ab67616d0000b27308295100359e908c64772b71') center/cover no-repeat, linear-gradient(135deg, #071a2a, #0e3355, #163d6b); }

.release-frost {
  position: absolute;
  font-size: 4rem;
  color: rgba(125,211,252,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  transition: transform 0.6s var(--ease), color 0.4s ease;
  pointer-events: none;
}
.release-card:hover .release-frost {
  color: rgba(125,211,252,0.2);
  transform: translate(-50%, -50%) rotate(0deg) scale(1.15);
}
.release-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.release-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.release-meta {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.7;
}
.release-title {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.release-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-50);
  font-style: italic;
}

.release-arrow {
  position: absolute;
  bottom: 1.25rem; right: 1.25rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-12);
  border-radius: 50%;
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.release-arrow svg { width: 12px; height: 12px; }
.release-card:hover .release-arrow { opacity: 1; transform: translate(0,0); }

.releases-cta { display: flex; justify-content: center; }

/* ── VINTERS SECTION ── */
.section-vinters { overflow: hidden; padding-top: 0; padding-bottom: 0; }
.vinters-bg {
  position: absolute; inset: 0; z-index: 0;
}
.vinters-aurora {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.5) brightness(0.5);
}
.vinters-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,8,15,0.5) 0%, rgba(5,8,15,0.8) 100%);
}

.section-vinters .container { position: relative; z-index: 1; }

.vinters-content {
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0;
  max-width: 760px;
  margin: 0 auto;
}
.vinters-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.5rem;
}
.vinters-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.vinters-desc {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: var(--white-70);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.vinters-primary-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--white-12);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--white-70);
  transition: all 0.25s ease;
  background: var(--white-06);
}
.social-link:hover {
  border-color: var(--ice-dim);
  color: var(--white);
  background: var(--ice-glow);
}
.social-icon { display: flex; align-items: center; }
.social-icon svg { width: 16px; height: 16px; }
.social-handle {
  font-size: 0.6rem;
  color: var(--white-30);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: #000000;
  border-top: 1px solid var(--white-06);
  padding: 3rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--white-06);
  margin-bottom: 1.5rem;
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .logo-text { font-size: 1.1rem; margin-bottom: 0.75rem; display: block; }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white-50);
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white-50);
  transition: color 0.25s ease;
  letter-spacing: 0.05em;
}
.footer-link:hover { color: var(--white); }
.footer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}
.footer-platform {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--white-12);
  border-radius: 50%;
  color: var(--white-50);
  transition: all 0.25s ease;
}
.footer-platform svg { width: 16px; height: 16px; }
.footer-platform:hover {
  border-color: var(--ice-dim);
  color: var(--white);
  background: var(--ice-glow);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-30);
}
.footer-tag { color: var(--ice); opacity: 0.6; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--white-30); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--ice); }

/* ── SELECTION ── */
::selection { background: var(--ice-dim); color: var(--white); }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

/* ── VIDEO BACKGROUND SUPPORT ── */
.vinters-bg video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0; right: 8%; left: auto;
  width: 38%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
  opacity: 1;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0.85) 65%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,1) 40%, rgba(0,0,0,0.85) 65%, transparent 100%);
  pointer-events: none;
}

.hero-fog-wrap {
  display: none;
}
.hero-fog-1, .hero-fog-2 {
  position: absolute;
  bottom: -15%; left: -50%;
  width: 200%; height: 60%;
  background: radial-gradient(circle at 30% 90%, rgba(186, 230, 253, 0.18) 0%, transparent 60%),
              radial-gradient(circle at 75% 85%, rgba(186, 230, 253, 0.14) 0%, transparent 65%),
              linear-gradient(to top, rgba(3, 5, 10, 0.95) 0%, transparent 80%);
  filter: blur(40px);
  opacity: 0.85;
}
.hero-fog-1 {
  animation: drift-fog-1 45s ease-in-out infinite alternate;
}
.hero-fog-2 {
  animation: drift-fog-2 30s ease-in-out infinite alternate-reverse;
  height: 70%;
  opacity: 0.6;
}
@keyframes drift-fog-1 {
  0% { transform: translate(0, 0) scaleY(1); }
  100% { transform: translate(25%, 5%) scaleY(1.15); }
}
@keyframes drift-fog-2 {
  0% { transform: translate(0, 0) scaleY(1.1); }
  100% { transform: translate(-25%, -5%) scaleY(0.9); }
}

.snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Responsividade do vídeo no Mobile e Tablet */
@media (max-width: 1024px) {
  .hero-video-overlay {
    width: 100%;
    left: 0; right: 0;
    height: 85%;
    top: auto;
    bottom: 0;
    object-position: bottom center;
    opacity: 0.75; /* reduz ligeiramente para não atrapalhar a legibilidade dos textos principais em telas menores */
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.85) 75%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.85) 75%, transparent 100%);
  }
}

.card-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.release-card:hover .card-video-bg {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ── STORE SECTION ── */
.section-store {
  background: var(--bg-2);
}

.store-header {
  margin-bottom: 3.5rem;
}

.store-intro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 480px;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 860px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

.store-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--white-06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.store-card:hover {
  transform: translateY(-6px);
  border-color: var(--ice-dim);
  box-shadow: 0 12px 30px rgba(125, 211, 252, 0.05);
}

.store-visual {
  height: 280px;
  background: linear-gradient(135deg, #091122, #05080f);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Vinyl CD Render */
.cd-vinyl-render {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-sleeve {
  position: absolute;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, #111b30, #080f1e);
  border: 1.5px solid var(--ice-dim);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
  transform: translateX(-15px);
}
.cd-sleeve::before {
  content: '❄';
  font-size: 2rem;
  color: var(--ice);
  opacity: 0.35;
  animation: spin-frost 25s linear infinite;
}

.cd-disc {
  position: absolute;
  width: 130px; height: 130px;
  background: radial-gradient(circle, #05080f 0%, #1e293b 25%, #0f172a 35%, #020617 70%, #475569 90%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 1;
  transition: transform 0.6s var(--ease);
  transform: translateX(15px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-disc::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 4px solid var(--ice-dim);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.store-card:hover .cd-sleeve {
  transform: translateX(-35px) rotate(-5deg);
}
.store-card:hover .cd-disc {
  transform: translateX(35px) rotate(90deg);
}

/* Digital Folder Render */
.digital-folder-render {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-sleeve {
  position: absolute;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, #182848, #0e1726);
  border: 1.5px solid var(--white-12);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease);
  transform: translateY(10px);
}
.digital-sleeve::before {
  content: '💾';
  font-size: 2.2rem;
  color: var(--white);
  opacity: 0.3;
}

.digital-disc {
  position: absolute;
  width: 110px; height: 110px;
  background: radial-gradient(circle, #0284c7 0%, #0369a1 40%, #0c4a6e 80%);
  border: 1px solid rgba(125,211,252,0.3);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  z-index: 1;
  transition: transform 0.6s var(--ease);
  transform: translateY(-25px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.digital-disc::before {
  content: '❄';
  font-size: 1.8rem;
  color: var(--ice);
  animation: spin-frost 12s linear infinite;
}

.store-card:hover .digital-sleeve {
  transform: translateY(25px) scale(0.95);
}
.store-card:hover .digital-disc {
  transform: translateY(-35px) scale(1.05);
}

.store-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.store-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
}

.store-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
}

.store-item-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--white-50);
}

.store-item-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.5rem 0;
}

.store-btn {
  margin-top: auto;
  align-self: flex-start;
}
