/* ============ TUNGONO — base ============ */
:root {
  --bg: #06070D;
  --bg-2: #0B0D17;
  --ink: #EFF1F8;
  --ink-dim: rgba(239, 241, 248, .62);
  --ink-faint: rgba(239, 241, 248, .34);
  --accent: #8FA8FF;
  --accent-2: #B18CFF;
  --accent-soft: rgba(143, 168, 255, .15);
  --line: rgba(239, 241, 248, .12);
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --pad: clamp(20px, 5vw, 72px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--bg); }

/* ============ Grain ============ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 200;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.4%); }
  50% { transform: translate(1.6%, -1.2%); }
  75% { transform: translate(-1.2%, -1.8%); }
  100% { transform: translate(0, 0); }
}

/* ============ Preloader ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-eq {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 34px;
}
.loader-eq span {
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: eq 1s ease-in-out infinite;
}
.loader-eq span:nth-child(1) { animation-delay: 0s; }
.loader-eq span:nth-child(2) { animation-delay: .18s; }
.loader-eq span:nth-child(3) { animation-delay: .36s; }
.loader-eq span:nth-child(4) { animation-delay: .1s; }
.loader-eq span:nth-child(5) { animation-delay: .28s; }
@keyframes eq {
  0%, 100% { height: 22%; }
  50% { height: 100%; }
}
.loader-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: .42em;
  padding-left: .42em;
}
.loader-count {
  position: absolute;
  bottom: 30px;
  right: var(--pad);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-faint);
}

/* ============ Cursor ============ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 400;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s;
  mix-blend-mode: normal;
}
.cursor.big {
  width: 74px;
  height: 74px;
  background: rgba(143, 168, 255, .95);
}
.cursor-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--bg);
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.cursor.big .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--pad);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.nav.solid {
  background: rgba(5, 6, 10, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .34em;
}
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--bg);
  background: var(--accent);
  border-radius: 100px;
  padding: 10px 22px;
  transition: transform .2s var(--ease-out), background .2s;
}
.nav-cta:hover { transform: translateY(-2px); background: #ACBEFF; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 2px;
}
.nav-burger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(5, 6, 10, .97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility .35s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
}
.nav-mobile-cta {
  margin-top: 12px;
  font-size: 16px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  padding: 14px 34px;
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(5, 6, 10, 0) 30%, rgba(5, 6, 10, .55) 78%, rgba(5, 6, 10, .92) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, .55) 0%, rgba(5, 6, 10, .08) 34%, rgba(5, 6, 10, .16) 62%, rgba(5, 6, 10, .96) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  margin-bottom: 4vh;
  text-align: center;
}
.hero-eyebrow {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2vh;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 9.6vw, 168px);
  line-height: .94;
  letter-spacing: .015em;
  white-space: nowrap;
  user-select: none;
}
.ht-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(.45em) rotate(4deg);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.loaded .ht-letter {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.ht-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
@media (max-width: 600px) {
  .ht-outline { -webkit-text-stroke-width: 1.2px; }
}
.hero-sub {
  margin-top: 2.6vh;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--ink-dim);
}
.reveal-line { overflow: hidden; }
.reveal-line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.loaded .reveal-line span { transform: translateY(0); }
.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--pad) 26px;
}
.hero-foot-item {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero-foot-link { transition: color .2s; }
.hero-foot-link:hover { color: var(--accent); }
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.35); opacity: .5; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 600px) {
  .hero-foot { flex-direction: column; align-items: center; gap: 14px; }
  .hero-scroll { display: none; }
}

/* ============ Marquee ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.marquee-group span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 24px);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-dim);
}
.marquee-group .mq-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: .04em;
  color: var(--accent);
}
.mq-star {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .6;
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Secções: base ============ */
.section-head {
  padding: 0 var(--pad);
  margin-bottom: clamp(36px, 6vh, 64px);
  max-width: 980px;
}
.section-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 66px);
  line-height: 1.04;
  letter-spacing: -.01em;
}
.section-title em, .single-title em, .booking-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
}
.section-text {
  margin-top: 22px;
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--ink-dim);
  max-width: 640px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Novo single ============ */
.single {
  padding: clamp(70px, 13vh, 130px) var(--pad);
  background:
    radial-gradient(60% 50% at 18% 40%, rgba(143, 168, 255, .07) 0%, transparent 70%),
    var(--bg);
}
.single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.single-vinyl { display: flex; justify-content: center; }
.vinyl {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
}
.vinyl-disc {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(239, 241, 248, .1),
    0 30px 80px rgba(0, 0, 0, .55),
    0 0 120px rgba(143, 168, 255, .14);
  animation: spin 9s linear infinite;
  animation-play-state: paused;
}
.vinyl.playing .vinyl-disc { animation-play-state: running; }
.vinyl-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vinyl-disc::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 5px, rgba(0, 0, 0, .16) 5px 6px);
  mix-blend-mode: multiply;
}
.vinyl-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13%;
  height: 13%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(239, 241, 248, .25);
  z-index: 2;
}
.vinyl-hole::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26%;
  height: 26%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
}
.vinyl-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .14) 0%, transparent 34%, transparent 66%, rgba(255, 255, 255, .05) 100%);
  z-index: 3;
  pointer-events: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.vinyl-play {
  position: absolute;
  bottom: 6%;
  right: 6%;
  z-index: 4;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
  transition: transform .2s var(--ease-out), background .2s;
}
.vinyl-play:hover { transform: scale(1.08); background: #ACBEFF; }
.vinyl-play svg { width: 30px; height: 30px; }
.vinyl.playing .vinyl-play svg path { d: path('M8 5h3v14H8zM13 5h3v14h-3z'); }

.single-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}
.single-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--accent);
  margin-bottom: 14px;
}
.single-text {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-dim);
  max-width: 520px;
  margin-bottom: 34px;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(239, 241, 248, .04);
  transition: border-color .2s, background .2s, transform .2s var(--ease-out);
}
.platform:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.platform svg { width: 18px; height: 18px; color: var(--accent); }
.platform-ghost {
  border-style: dashed;
  color: var(--ink-dim);
}
.single-embed { margin-top: 26px; }
.single-embed iframe {
  width: 100%;
  max-width: 560px;
  height: 152px;
  border: none;
  border-radius: 14px;
}
@media (max-width: 900px) {
  .single-grid { grid-template-columns: 1fr; }
  .single-vinyl { order: -1; }
  .vinyl { width: min(78vw, 380px); }
}

/* ============ Discografia ============ */
.disco {
  padding: clamp(70px, 12vh, 120px) 0 clamp(60px, 10vh, 110px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.disco-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 30px);
  padding: 0 var(--pad);
  max-width: 1280px;
  margin: 0 auto;
}
.track {
  cursor: pointer;
  outline-offset: 4px;
}
.track:focus-visible { outline: 2px solid var(--accent); }
.track-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg);
}
.track-media img,
.track-media .track-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), opacity .35s;
}
.track-media .track-video { opacity: 0; }
.track.previewing .track-media img { opacity: 0; }
.track.previewing .track-media .track-video { opacity: 1; }
.track:hover .track-media img { transform: scale(1.05); }
.track-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 10, .55) 100%);
  pointer-events: none;
}
.track-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(5, 6, 10, .72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(239, 241, 248, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background .2s, transform .2s var(--ease-out);
}
.track:hover .track-badge {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.08);
}
.track-badge svg { width: 19px; height: 19px; }
.track-info {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 6px 0;
}
.track-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-faint);
}
.track-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 22px);
  letter-spacing: .01em;
}
.track-meta {
  font-size: 13.5px;
  color: var(--ink-faint);
  margin-top: 3px;
}
@media (max-width: 760px) {
  .disco-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ============ Letra ============ */
.lyric {
  padding: clamp(90px, 16vh, 170px) var(--pad);
  text-align: center;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(177, 140, 255, .09) 0%, transparent 72%),
    var(--bg);
}
.lyric-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(30px, 5.6vw, 66px);
  line-height: 1.22;
  max-width: 1000px;
  margin: 0 auto;
}
.lyric-line span {
  opacity: .13;
  transition: opacity .5s var(--ease-out);
}
.lyric-line span.lit { opacity: 1; }
.lyric-credit {
  margin-top: 30px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ Palco ============ */
.stage {
  padding: clamp(70px, 12vh, 120px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.stage-strip {
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  overflow-x: auto;
  padding: 6px var(--pad) 26px;
  scrollbar-width: none;
  cursor: grab;
}
.stage-strip::-webkit-scrollbar { display: none; }
.stage-strip.dragging { cursor: grabbing; scroll-snap-type: none; }
.stage-item {
  flex: 0 0 auto;
  height: clamp(320px, 52vh, 560px);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.stage-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.stage-item:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
  .stage-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: visible;
    cursor: default;
    padding-bottom: 0;
  }
  .stage-item { height: auto; aspect-ratio: 3 / 4; }
  .stage-item img { width: 100%; height: 100%; }
}

/* ============ Sobre ============ */
.about {
  padding: clamp(80px, 13vh, 140px) var(--pad);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.about-media {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.about-media img { width: 100%; }
.about-media::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(239, 241, 248, .08);
  border-radius: 18px;
  pointer-events: none;
}
.about-text {
  margin-top: 20px;
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--ink-dim);
  max-width: 520px;
}
.about-motto {
  margin-top: 34px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--accent);
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
}

/* ============ Booking ============ */
.booking {
  padding: clamp(90px, 15vh, 160px) var(--pad);
  text-align: center;
  background:
    radial-gradient(55% 70% at 50% 100%, rgba(255, 143, 184, .08) 0%, transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.booking-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.04;
  max-width: 900px;
  margin: 0 auto 20px;
}
.booking-text {
  color: var(--ink-dim);
  font-size: clamp(15px, 1.6vw, 17.5px);
  margin-bottom: 40px;
}
.booking-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.booking-cta {
  font-size: 15px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border-radius: 100px;
  padding: 16px 38px;
  transition: transform .2s var(--ease-out), background .2s;
}
.booking-cta:hover { transform: translateY(-2px); background: #ACBEFF; }
.booking-alt {
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 16px 38px;
  color: var(--ink-dim);
  transition: border-color .2s, color .2s;
}
.booking-alt:hover { border-color: var(--accent); color: var(--ink); }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 0 0 30px;
  background:
    radial-gradient(70% 55% at 50% 118%, rgba(177, 140, 255, .12) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}
.footer-marquee {
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 5vh, 46px) 0;
  overflow: hidden;
}
.footer-marquee .marquee-track { animation-duration: 38s; }
.fm-group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  padding-right: clamp(28px, 4vw, 60px);
}
.fm-group span {
  font-size: clamp(46px, 8.5vw, 120px);
  line-height: 1;
  white-space: nowrap;
}
.fm-solid {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .02em;
}
.fm-outline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(239, 241, 248, .38);
}
.fm-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.fm-group .mq-star {
  width: 12px;
  height: 12px;
  opacity: .5;
}
.footer-now {
  display: flex;
  justify-content: center;
  padding: clamp(34px, 6vh, 54px) var(--pad);
}
.fnow {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 26px 14px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(239, 241, 248, .03);
  transition: border-color .2s, background .2s, transform .2s var(--ease-out);
}
.fnow:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.fnow-disc {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  animation: spin 7s linear infinite;
  box-shadow: 0 0 0 1px rgba(239, 241, 248, .14);
}
.fnow-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fnow-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(239, 241, 248, .3);
}
.fnow-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  flex-shrink: 0;
}
.fnow-eq span {
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  animation: eq 1s ease-in-out infinite;
}
.fnow-eq span:nth-child(1) { animation-delay: 0s; }
.fnow-eq span:nth-child(2) { animation-delay: .22s; }
.fnow-eq span:nth-child(3) { animation-delay: .09s; }
.fnow-eq span:nth-child(4) { animation-delay: .31s; }
.fnow-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fnow-text strong {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
}
.fnow-text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.footer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 var(--pad);
  margin-bottom: 26px;
}
.ficon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease-out);
}
.ficon:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.ficon svg { width: 20px; height: 20px; }
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 44px;
  padding: 0 var(--pad);
}
.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--ink); }
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 var(--pad);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-faint);
}
.footer-top-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-dim);
  transition: color .2s;
}
.footer-top-btn:hover { color: var(--accent); }
.footer-top-btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease-out);
}
.footer-top-btn:hover svg { transform: translateY(-3px); }
.footer-upmedia {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--ink-dim);
  transition: color .2s;
}
.footer-upmedia:hover { color: var(--accent); }
@media (max-width: 640px) {
  .footer-base { justify-content: center; text-align: center; flex-direction: column; }
  .fnow { width: min(100%, 360px); }
  .fnow-text em { font-size: 16px; }
  .footer-nav { gap: 22px; }
}

/* ============ Modal ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 8, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  width: min(920px, 100%);
  max-height: min(86vh, 720px);
  background: #0F1119;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  animation: modalIn .35s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(26px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-media {
  background: #000;
  min-height: 300px;
}
.modal-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-info {
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 26px;
}
.modal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s, background .2s;
}
.modal-links a:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.modal-links a::after {
  content: '↗';
  color: var(--accent);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(239, 241, 248, .2);
  background: rgba(5, 6, 10, .6);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: rgba(143, 168, 255, .92); color: var(--bg); }
.modal-close svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .modal-card { grid-template-columns: 1fr; max-height: 88vh; overflow-y: auto; }
  .modal-media { aspect-ratio: 9 / 12; min-height: 0; }
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 460;
  background: rgba(3, 4, 8, .93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-stage {
  position: relative;
  width: min(92vw, 1100px);
  height: min(84vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lb-stage img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
}
.lb-stage img.lb-in-right { animation: lbInR .45s var(--ease-out); }
.lb-stage img.lb-in-left { animation: lbInL .45s var(--ease-out); }
.lb-stage img.lb-out-left { animation: lbOutL .3s ease-in forwards; }
.lb-stage img.lb-out-right { animation: lbOutR .3s ease-in forwards; }
@keyframes lbInR { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes lbInL { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes lbOutL { to { opacity: 0; transform: translateX(-60px); } }
@keyframes lbOutR { to { opacity: 0; transform: translateX(60px); } }
.lb-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(239, 241, 248, .25);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.lb-close:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.lb-close svg { width: 19px; height: 19px; }
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(239, 241, 248, .25);
  background: rgba(5, 6, 10, .45);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.lb-arrow:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.lb-arrow svg { width: 20px; height: 20px; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-dim);
}
@media (max-width: 640px) {
  .lb-arrow { width: 44px; height: 44px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

/* ============ Acessibilidade ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .ht-letter, .reveal-line span { opacity: 1 !important; transform: none !important; }
  .lyric-line span { opacity: 1; }
}
