:root {
  --bg: #020304;
  --bg-2: #06090E;
  --surface: rgba(14, 20, 27, 0.82);
  --surface-solid: #0E141B;
  --surface-2: #121A23;
  --text: #F4F7F8;
  --muted: #9AA7B3;
  --soft: rgba(244, 247, 248, 0.74);
  --line: rgba(244, 247, 248, 0.14);
  --cyan: #00C2D1;
  --magenta: #2D7DFF;
  --violet: #184C70;
  --green: #BFEFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C4A;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
  --radius: 24px;
  --max: 1180px;
  --header-height: 76px;
  --hero-offset: 0px;
  --hero-scale: 1.06;
  --hero-progress: 0;
  --mouse-x: 50%;
  --mouse-y: 44%;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(45, 125, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(0, 194, 209, 0.16), transparent 32rem),
    linear-gradient(180deg, #020304 0%, #06090E 52%, #020304 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

.club-ambient {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
  mix-blend-mode: screen;
  contain: paint;
}

body.audio-ambient-on .club-ambient {
  opacity: 1;
  visibility: visible;
}

.club-ambient__wash,
.club-ambient__spark,
.club-ambient__pulse {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.club-ambient__wash {
  width: 46vw;
  height: 46vw;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .11;
  background: radial-gradient(circle, rgba(0, 194, 209, .55), rgba(45, 125, 255, .22) 34%, transparent 68%);
  animation: ambientWash 8.5s ease-in-out infinite alternate;
}

.club-ambient__wash--one {
  left: -16vw;
  top: 10vh;
}

.club-ambient__wash--two {
  right: -18vw;
  bottom: 2vh;
  width: 38vw;
  height: 38vw;
  opacity: .09;
  animation-delay: -3.2s;
  background: radial-gradient(circle, rgba(45, 125, 255, .50), rgba(0, 194, 209, .20) 32%, transparent 70%);
}

.club-ambient__spark {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(191, 239, 255, .92);
  box-shadow: 0 0 18px rgba(0, 194, 209, .78), 0 0 44px rgba(45, 125, 255, .36);
  opacity: 0;
  animation: ambientSpark 4.8s ease-in-out infinite;
}

.club-ambient__spark--one { left: 18%; top: 28%; animation-delay: .15s; }
.club-ambient__spark--two { right: 18%; top: 42%; animation-delay: 1.65s; }
.club-ambient__spark--three { left: 48%; bottom: 22%; animation-delay: 3.05s; }

.club-ambient__pulse {
  left: 50%;
  top: 50%;
  width: 55vmin;
  height: 55vmin;
  border-radius: 999px;
  border: 1px solid rgba(0, 194, 209, .12);
  transform: translate(-50%, -50%) scale(.82);
  opacity: 0;
  box-shadow: inset 0 0 38px rgba(45, 125, 255, .06), 0 0 52px rgba(0, 194, 209, .08);
  animation: ambientPulse 3.8s ease-in-out infinite;
}

@keyframes ambientWash {
  0% { transform: translate3d(0, 0, 0) scale(.92); }
  100% { transform: translate3d(7vw, 4vh, 0) scale(1.08); }
}

@keyframes ambientSpark {
  0%, 68%, 100% { opacity: 0; transform: scale(.6) translate3d(0, 0, 0); }
  12% { opacity: .72; transform: scale(1) translate3d(8px, -10px, 0); }
  26% { opacity: .18; transform: scale(1.45) translate3d(18px, -24px, 0); }
}

@keyframes ambientPulse {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.78); }
  42% { opacity: .36; transform: translate(-50%, -50%) scale(1.04); }
  64% { opacity: .06; transform: translate(-50%, -50%) scale(1.14); }
}

img, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

::selection { background: rgba(45, 125, 255, 0.35); color: #fff; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-200%);
  background: var(--text);
  color: var(--bg);
  padding: .75rem 1rem;
  border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  place-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.72);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1280px, calc(100% - 34px));
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  position: relative;
}
.brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .3s ease;
}
.brand:hover::after { transform: scaleX(1); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 2rem);
  color: var(--soft);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.site-nav a {
  position: relative;
  padding: .4rem 0;
  transition: color .25s ease;
}
.site-nav a::before {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: #fff; }
.site-nav a:hover::before, .site-nav a.is-active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: .72rem 1rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 125, 255, .7);
  box-shadow: 0 0 30px rgba(45, 125, 255, .2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 26px; }
.nav-open .nav-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 4rem) 0 5.5rem;
  overflow: clip;
  isolation: isolate;
}

.hero-media, .hero-media img, .hero-vignette, .hero-noise, .hero-orb {
  position: absolute;
  inset: 0;
}
.hero-media {
  z-index: -5;
  overflow: hidden;
  background: #020304;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: translate3d(0, var(--hero-offset), 0) scale(var(--hero-scale));
  animation: heroIn 2.2s cubic-bezier(.16, 1, .3, 1) forwards;
  will-change: transform;
}
.hero-vignette {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .92) 0%, rgba(5, 7, 11, .74) 28%, rgba(5, 7, 11, .24) 60%, rgba(5, 7, 11, .66) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, .25) 0%, rgba(5, 7, 11, .2) 42%, rgba(5, 7, 11, .94) 100%);
}
.hero-noise {
  z-index: -2;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-orb {
  z-index: -3;
  pointer-events: none;
  filter: blur(38px);
  opacity: .75;
  animation: floatOrb 7s ease-in-out infinite alternate;
}
.hero-orb-one {
  width: 40vw;
  height: 40vw;
  left: -14vw;
  top: 16vh;
  background: radial-gradient(circle, rgba(45, 125, 255, .28), transparent 64%);
}
.hero-orb-two {
  width: 34vw;
  height: 34vw;
  right: -10vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(0, 194, 209, .2), transparent 60%);
  animation-delay: -2s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero-title {
  margin: 0;
  font-size: clamp(5rem, 18vw, 15rem);
  line-height: .78;
  letter-spacing: -.09em;
  text-transform: uppercase;
  font-weight: 950;
  text-shadow: 0 0 38px rgba(0, 194, 209, .18), 0 0 72px rgba(45, 125, 255, .12);
}
.hero-meta {
  margin: 1.2rem 0 0;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.hero-lead {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  margin: .78rem 0 0;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem;
  margin-top: 1.7rem;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .9rem 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  border: 1px solid transparent;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: #020304;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 32px rgba(0, 194, 209, .2), 0 0 46px rgba(45, 125, 255, .16);
}
.btn-primary:hover { box-shadow: 0 0 42px rgba(0, 194, 209, .28), 0 0 70px rgba(45, 125, 255, .24); }
.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(0, 194, 209, .55); box-shadow: 0 0 35px rgba(0, 194, 209, .12); }

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero-socials a { transition: color .2s ease; }
.hero-socials a:hover { color: #fff; }

.scroll-cue {
  position: absolute;
  right: min(4vw, 48px);
  bottom: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.scroll-cue i {
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, #fff, transparent);
  display: block;
  animation: scrollPulse 1.4s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-heading h2, .profile-copy h2, .booking-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: .88;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.section-heading p:not(.eyebrow), .booking-copy p, .profile-copy p {
  color: var(--soft);
  line-height: 1.7;
  font-size: 1.04rem;
}

.sets-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.set-card, .video-card, .booking-form, .appearances-list, .profile-portrait {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.set-card {
  padding: 1rem;
  min-height: 265px;
}
.set-card::before, .video-card::before, .booking-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 194, 209, .45), rgba(45, 125, 255, .3), transparent 58%);
  transition: opacity .3s ease;
}
.set-card:hover::before, .video-card:hover::before, .booking-form:hover::before { opacity: .55; }
.set-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}
.set-card h3 {
  position: relative;
  z-index: 1;
  margin: .9rem 0 1rem;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  letter-spacing: -.04em;
}
.embed-frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #020304;
  border: 1px solid rgba(255,255,255,.1);
}
.soundcloud-frame iframe { width: 100%; height: 166px; border: 0; display: block; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.video-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: stretch;
  min-height: 270px;
}
.video-copy {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.video-copy span {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}
.video-copy h3 { margin: .55rem 0 0; font-size: 1.8rem; letter-spacing: -.04em; }
.video-embed { position: relative; min-height: 270px; background: #000; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.profile-section {
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 194, 209, .14), transparent 31rem),
    radial-gradient(circle at 10% 74%, rgba(45, 125, 255, .10), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}
.profile-section::before,
.profile-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.profile-section::before {
  inset: 10% auto auto -16%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 125, 255, .18), transparent 64%);
  filter: blur(28px);
  opacity: .72;
  animation: profileOrbFloat 8s ease-in-out infinite alternate;
}
.profile-section::after {
  inset: auto -14% 4% auto;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 209, .16), transparent 62%);
  filter: blur(34px);
  opacity: .7;
  animation: profileOrbFloat 9s ease-in-out -2s infinite alternate-reverse;
}
.profile-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 46%, rgba(0, 194, 209, .18) 49%, rgba(45, 125, 255, .12) 52%, transparent 56% 100%);
  background-size: 84px 84px, 84px 84px, 100% 100%;
  mask-image: radial-gradient(circle at 64% 48%, #000 0 48%, transparent 74%);
  transform: translate3d(calc(var(--hero-progress) * 18px), 0, 0);
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(280px, .66fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.profile-grid-upgraded { position: relative; }
.profile-copy { position: relative; }
.profile-copy::before {
  content: "";
  position: absolute;
  left: -1.2rem;
  top: .35rem;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), transparent);
  box-shadow: 0 0 24px rgba(0, 194, 209, .32);
  transition: height 1.15s cubic-bezier(.16, 1, .3, 1) .2s;
}
.profile-copy.is-visible::before { height: 82%; }
.profile-name {
  display: grid;
  gap: .02em;
  margin: 0;
  perspective: 900px;
}
.profile-name span {
  display: block;
  opacity: 0;
  transform: translate3d(0, -1.2em, 0) rotateX(64deg) scale(.96);
  transform-origin: 50% 0%;
  text-shadow: 0 0 34px rgba(0, 194, 209, .08), 0 0 54px rgba(45, 125, 255, .06);
  will-change: transform, opacity, filter;
}
.profile-copy.is-visible .profile-name span {
  animation: profileNameDrop 1.05s cubic-bezier(.16, 1, .3, 1) forwards;
}
.profile-copy.is-visible .profile-name span:nth-child(2) { animation-delay: .14s; }
.profile-copy .large-text {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.45;
  margin-top: 1.5rem;
}
.profile-pulse-card {
  position: relative;
  width: min(100%, 520px);
  margin-top: 1.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    radial-gradient(circle at 12% 0%, rgba(0, 194, 209, .18), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(45, 125, 255, .16), transparent 36%);
  box-shadow: 0 18px 70px rgba(0,0,0,.32);
  overflow: hidden;
}
.profile-pulse-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-120%);
  animation: profileCardShine 4.5s ease-in-out 1.5s infinite;
}
.profile-pulse-card span {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  margin-bottom: .3rem;
}
.profile-pulse-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -.03em;
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.7rem;
}
.profile-tags span {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  color: var(--soft);
  padding: .65rem .85rem;
  font-size: .82rem;
  transition: transform .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.profile-tags span:hover {
  color: #fff;
  transform: translateY(-3px);
  border-color: rgba(0, 194, 209, .45);
  box-shadow: 0 0 28px rgba(0, 194, 209, .12);
}
.profile-portrait {
  transform: rotate(1.25deg);
  background: #0E141B;
}
.profile-carousel {
  overflow: visible;
  min-height: min(720px, 78vh);
  border-radius: calc(var(--radius) + 4px);
  isolation: isolate;
}
.profile-carousel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 194, 209, .52), rgba(45, 125, 255, .38), rgba(255,255,255,.08));
  filter: blur(0);
  opacity: .66;
}
.profile-frame {
  position: relative;
  height: min(720px, 78vh);
  border-radius: inherit;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #020304;
  box-shadow: 0 34px 100px rgba(0,0,0,.54);
}
.profile-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 52%, rgba(5,7,11,.82) 100%),
    radial-gradient(circle at 50% 16%, transparent 30%, rgba(5,7,11,.18) 70%);
  z-index: 2;
}
.profile-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  opacity: 0;
  transform: scale(1.08) translate3d(0, 18px, 0);
  filter: saturate(.95) contrast(1.04) brightness(.92);
  transition: opacity 1.05s cubic-bezier(.16, 1, .3, 1), transform 1.25s cubic-bezier(.16, 1, .3, 1), filter 1.25s ease;
  will-change: opacity, transform;
}
.profile-slide.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, 0, 0);
  filter: saturate(1.02) contrast(1.05) brightness(1);
  z-index: 1;
}
.profile-frame-glow {
  position: absolute;
  inset: auto -18% -10% 16%;
  height: 35%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(45, 125, 255, .28), transparent 65%);
  filter: blur(34px);
  opacity: .78;
  animation: profileGlowPulse 5.5s ease-in-out infinite alternate;
}
.profile-portrait figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .58rem .78rem;
  border-radius: 999px;
  background: rgba(5,7,11,.72);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  backdrop-filter: blur(12px);
  font-size: .78rem;
}
.profile-portrait figcaption strong {
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
}
.profile-dots {
  position: absolute;
  z-index: 5;
  right: 1.25rem;
  top: 1.25rem;
  display: flex;
  gap: .45rem;
}
.profile-dots span {
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
  transition: width .38s cubic-bezier(.16, 1, .3, 1), background .38s ease, box-shadow .38s ease;
}
.profile-dots span.is-active {
  width: 1.65rem;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 22px rgba(0, 194, 209, .28);
}
@keyframes profileNameDrop {
  0% { opacity: 0; transform: translate3d(0, -1.25em, 0) rotateX(66deg) scale(.96); filter: blur(12px); }
  62% { opacity: 1; transform: translate3d(0, .09em, 0) rotateX(-6deg) scale(1.01); filter: blur(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotateX(0deg) scale(1); filter: blur(0); }
}
@keyframes profileOrbFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3vw, -2vh, 0) scale(1.08); }
}
@keyframes profileCardShine {
  0%, 68%, 100% { transform: translateX(-120%); opacity: 0; }
  74% { opacity: .75; }
  88% { transform: translateX(120%); opacity: 0; }
}
@keyframes profileGlowPulse {
  from { opacity: .42; transform: translate3d(-4%, 0, 0) scale(.94); }
  to { opacity: .82; transform: translate3d(4%, -3%, 0) scale(1.08); }
}

.appearances-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 1.1rem;
  align-items: stretch;
}
.appearances-video-layout { perspective: 1400px; }
.appearances-list {
  padding: .5rem;
  position: relative;
  border-radius: var(--radius);
  max-height: min(72vh, 590px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 194, 209, .55) rgba(255,255,255,.06);
}
.appearances-list::-webkit-scrollbar {
  width: 8px;
}
.appearances-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,.045);
  border-radius: 999px;
}
.appearances-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 194, 209, .8), rgba(45, 125, 255, .7));
  border-radius: 999px;
}
.appearances-list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 12% 18%, rgba(0, 194, 209, .12), transparent 22rem), radial-gradient(circle at 86% 78%, rgba(45, 125, 255, .1), transparent 18rem);
  opacity: .8;
}
.appearance-item {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid transparent;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background .28s ease, border-color .28s ease, transform .28s cubic-bezier(.16, 1, .3, 1), box-shadow .28s ease;
}
.appearance-item + .appearance-item { border-top: 1px solid rgba(255,255,255,.08); }
.appearance-item:hover,
.appearance-item:focus-visible,
.appearance-item.is-active {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.13);
  transform: translateX(6px);
  box-shadow: 0 22px 70px rgba(0,0,0,.24), inset 0 0 0 1px rgba(0, 194, 209, .06);
  outline: none;
}
.appearance-item.is-active {
  background: linear-gradient(135deg, rgba(0, 194, 209, .13), rgba(45, 125, 255, .09));
  border-color: rgba(0, 194, 209, .22);
}
.appearance-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0, 194, 209, .28), rgba(45, 125, 255, .22));
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 18px 44px rgba(0, 194, 209, .08);
}
.appearance-item.is-active span {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #020409;
}
.appearance-item h3 { margin: 0; font-size: clamp(1.12rem, 1.75vw, 1.85rem); line-height: 1.08; letter-spacing: -.04em; overflow-wrap: anywhere; }
.appearance-item p { margin: .35rem 0 0; color: var(--muted); }
.appearance-item i {
  font-style: normal;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease, color .25s ease;
}
.appearance-item:hover i,
.appearance-item:focus-visible i,
.appearance-item.is-active i {
  opacity: 1;
  transform: translateX(0);
  color: var(--cyan);
}
.appearance-stage {
  position: sticky;
  top: 6.6rem;
  align-self: start;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 194, 209, .16), transparent 24rem),
    radial-gradient(circle at 86% 100%, rgba(45, 125, 255, .14), transparent 23rem),
    rgba(5,7,11,.74);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}
.appearance-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
  opacity: .22;
}
.appearance-stage::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  left: -8rem;
  top: -9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 209, .22), transparent 62%);
  filter: blur(6px);
  opacity: .65;
  animation: appearanceGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}
.appearance-stage-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem .85rem;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.appearance-stage-top strong { color: var(--cyan); }
.appearance-video-frame {
  position: relative;
  z-index: 2;
  margin: 0 1rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  background: #020304;
  box-shadow: 0 28px 90px rgba(0,0,0,.44), 0 0 70px rgba(0, 194, 209, .09);
}
.appearance-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 194, 209, .15), transparent 28%, transparent 72%, rgba(45, 125, 255, .12));
  mix-blend-mode: screen;
  opacity: .78;
}
.appearance-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.appearance-video-frame.is-switching {
  animation: videoSwitch .52s cubic-bezier(.16, 1, .3, 1);
}
.appearance-stage-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 1.2rem;
}
.appearance-stage-copy h3 {
  margin: 0 0 .3rem;
  max-width: none;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.appearance-stage-copy .eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: .45rem .68rem;
  border-radius: 999px;
  color: var(--text);
  border: 1px solid rgba(0, 194, 209, .22);
  background: rgba(0, 194, 209, .08);
  box-shadow: 0 16px 42px rgba(0, 194, 209, .08);
}
.appearance-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .68rem .92rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.appearance-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 194, 209, .38);
  box-shadow: 0 18px 54px rgba(0, 194, 209, .14);
}
@keyframes videoSwitch {
  0% { opacity: .42; transform: scale(.96) rotateX(7deg); filter: blur(10px) saturate(1.25); }
  100% { opacity: 1; transform: scale(1) rotateX(0); filter: blur(0) saturate(1); }
}
@keyframes appearanceGlow {
  from { transform: translate3d(0,0,0) scale(.94); opacity: .45; }
  to { transform: translate3d(4rem, 3rem, 0) scale(1.12); opacity: .78; }
}
.appearances-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.1);
}
.appearances-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}
.appearances-image:hover img { transform: scale(1.05); }


.archive-section {
  background: radial-gradient(circle at 10% 20%, rgba(45, 125, 255, .1), transparent 32rem);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 1rem;
}
.media-item {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
  background: #06090E;
  box-shadow: var(--shadow);
}
.media-item.tall { grid-row: span 2; }
.media-item:nth-child(3) { grid-column: span 2; }
.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}
.media-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78));
  opacity: .88;
}
.media-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.media-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.15) contrast(1.05);
}
.media-item:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.booking-section {
  overflow: hidden;
  background: linear-gradient(180deg, #020304 0%, #06090E 100%);
}
.booking-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 194, 209, .16), transparent 32rem),
    radial-gradient(circle at 88% 10%, rgba(45, 125, 255, .18), transparent 34rem);
  pointer-events: none;
}
.booking-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr .8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.social-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: .75rem;
}
.social-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  color: var(--soft);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .25s ease, padding-left .25s ease;
}
.social-list a::after { content: "↗"; color: var(--muted); }
.social-list a:hover { color: #fff; padding-left: .35rem; }

.booking-form {
  padding: clamp(1.1rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
  backdrop-filter: blur(20px);
}
.form-note, .small-print {
  color: var(--muted);
  font-size: .83rem;
}
.booking-form label {
  display: grid;
  gap: .45rem;
  color: var(--soft);
  font-size: .88rem;
}
.booking-form input, .booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  color: #fff;
  padding: .9rem 1rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.booking-form input:focus, .booking-form textarea:focus {
  border-color: rgba(0, 194, 209, .58);
  box-shadow: 0 0 0 4px rgba(0, 194, 209, .09);
  background: rgba(255,255,255,.08);
}
.booking-form textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; border: 0; margin-top: .3rem; }

.site-footer {
  position: relative;
  padding: 2.4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 194, 209, .09), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(45, 125, 255, .10), transparent 32%),
    linear-gradient(180deg, rgba(7,9,14,.98), #030408 76%);
  color: var(--muted);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 86px);
  opacity: .16;
}
.footer-shell {
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.footer-brand {
  display: inline-grid;
  gap: .35rem;
  justify-self: start;
}
.footer-brand strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.045em;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: .9;
}
.footer-brand span {
  color: var(--soft);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem .9rem;
  color: var(--soft);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links a {
  position: relative;
  padding: .35rem .05rem;
  transition: color .22s ease, transform .22s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}
.footer-links a:hover::after { transform: scaleX(1); }
.footer-credit {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem;
  min-width: 0;
}
.footer-credit > span {
  color: var(--soft);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.creator-logo-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 55px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.creator-logo-link::before {
  content: "";
  position: absolute;
  inset: -80% -35%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.24), transparent 65%);
  transform: translateX(-70%) rotate(10deg);
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}
.creator-logo-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 194, 209, .45);
  box-shadow: 0 0 0 4px rgba(0, 194, 209, .08), 0 24px 70px rgba(0,0,0,.36);
}
.creator-logo-link:hover::before { transform: translateX(68%) rotate(10deg); }
.creator-logo-link img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .25rem .55rem;
}
.footer-bottom {
  margin-top: 1.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 42px;
  padding: .72rem 1rem;
  border: 1px solid rgba(0, 194, 209, .45);
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(0, 194, 209, .13), rgba(45, 125, 255, .10));
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 14px 44px rgba(0, 194, 209, .10);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.back-to-top::after {
  content: "↑";
  font-size: .88rem;
  line-height: 1;
  color: var(--green);
}
.back-to-top:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 239, 255, .72);
  box-shadow: 0 18px 58px rgba(0, 194, 209, .16), 0 0 34px rgba(45, 125, 255, .12);
  background: linear-gradient(135deg, rgba(0, 194, 209, .20), rgba(45, 125, 255, .15));
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
  box-shadow: 0 14px 44px rgba(37, 211, 102, .24);
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp:hover { transform: translateY(-4px); box-shadow: 0 18px 58px rgba(37, 211, 102, .32); }


.audio-toggle {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 82;
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  min-height: 48px;
  padding: .74rem .94rem;
  border-radius: 999px;
  border: 1px solid rgba(191, 239, 255, .26);
  background:
    linear-gradient(135deg, rgba(14, 20, 27, .86), rgba(6, 9, 14, .92)),
    radial-gradient(circle at 20% 10%, rgba(45, 125, 255, .24), transparent 58%);
  color: var(--text);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .34), 0 0 34px rgba(45, 125, 255, .10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 950;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.audio-toggle:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 239, 255, .58);
  box-shadow: 0 18px 58px rgba(0, 0, 0, .42), 0 0 38px rgba(45, 125, 255, .22);
}

.audio-toggle.is-playing {
  border-color: rgba(0, 194, 209, .68);
  background:
    linear-gradient(135deg, rgba(45, 125, 255, .34), rgba(0, 194, 209, .18)),
    linear-gradient(135deg, rgba(14, 20, 27, .88), rgba(6, 9, 14, .92));
  box-shadow: 0 18px 58px rgba(0, 0, 0, .42), 0 0 42px rgba(0, 194, 209, .22);
}

.audio-toggle__icon {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(45, 125, 255, .48);
  position: relative;
  flex: 0 0 auto;
}

.audio-toggle__icon::before,
.audio-toggle__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(191, 239, 255, .24);
  border-radius: inherit;
  opacity: .72;
}

.audio-toggle.is-playing .audio-toggle__icon {
  background: var(--cyan);
  animation: audioPulse 1.35s ease-in-out infinite;
}

.audio-toggle__state {
  color: var(--soft);
  font-size: .68rem;
}

.audio-toggle.is-playing .audio-toggle__state { color: var(--green); }

@keyframes audioPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(0, 194, 209, .35); }
  50% { transform: scale(1.24); box-shadow: 0 0 28px rgba(0, 194, 209, .62); }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(18px);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 25px 90px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox p { color: var(--soft); margin: 1rem 0 0; text-align: center; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.reveal, .reveal-load {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(6px);
  transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1), filter .95s cubic-bezier(.16, 1, .3, 1);
}
.reveal.is-visible, .reveal-load {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.hero .reveal-load:nth-child(1) { animation: revealLoad .8s .2s both; }
.hero .reveal-load:nth-child(2) { animation: revealLoad 1s .35s both; }
.hero .reveal-load:nth-child(3) { animation: revealLoad .9s .55s both; }
.hero .reveal-load:nth-child(4) { animation: revealLoad .9s .72s both; }
.hero .reveal-load:nth-child(5) { animation: revealLoad .9s .9s both; }
.hero .reveal-load:nth-child(6) { animation: revealLoad .9s 1.06s both; }

@keyframes heroIn {
  0% { transform: translate3d(0, 0, 0) scale(1.15); filter: saturate(1.15) contrast(1.08); }
  100% { transform: translate3d(0, var(--hero-offset), 0) scale(var(--hero-scale)); filter: saturate(1) contrast(1); }
}
@keyframes revealLoad {
  0% { opacity: 0; transform: translateY(44px) scale(.97); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -2vh, 0) scale(1.08); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.6); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; z-index: 102; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    min-height: 100svh;
    padding: 7rem 2rem 2rem;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 1.35rem;
    background: rgba(5, 7, 11, .94);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1);
    font-size: clamp(2rem, 9vw, 5rem);
    letter-spacing: -.06em;
    text-transform: uppercase;
    font-weight: 950;
  }
  .nav-open .site-nav { transform: translateY(0); }
  .site-nav a::before { display: none; }

  .sets-grid, .video-grid, .profile-grid, .appearances-layout, .booking-grid { grid-template-columns: 1fr; }
  .video-card { grid-template-columns: 1fr; }
  .video-copy { min-height: 150px; }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 260px; }
  .media-item:nth-child(3) { grid-column: auto; }
  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-brand, .footer-credit { justify-self: center; }
  .footer-credit { justify-content: center; }
  .footer-links { max-width: 560px; }
}

@media (max-width: 680px) {
  :root { --header-height: 68px; }
  .container { width: min(100% - 28px, var(--max)); }
  .hero { min-height: 100svh; padding-bottom: 4rem; align-items: end; }
  .hero-media img { object-position: center top; }
  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(5,7,11,.25) 0%, rgba(5,7,11,.42) 30%, rgba(5,7,11,.94) 100%),
      linear-gradient(90deg, rgba(5,7,11,.74), rgba(5,7,11,.24));
  }
  .hero-title { font-size: clamp(4.6rem, 22vw, 7rem); }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .scroll-cue { display: none; }
  .section { padding: 4.5rem 0; }
  .section-heading h2, .profile-copy h2, .booking-copy h2 { font-size: clamp(2.6rem, 15vw, 4.4rem); }
  .profile-portrait img { height: 560px; }
  .appearances-list {
    max-height: 470px;
    padding: .35rem;
  }
  .appearance-item { grid-template-columns: 46px 1fr; padding: .92rem; gap: .8rem; }
  .appearance-item h3 { font-size: clamp(1.05rem, 6vw, 1.55rem); }
  .appearance-item p { font-size: .92rem; }
  .appearance-item i { grid-column: 2; opacity: 1; transform: none; }
  .appearance-stage { position: relative; top: auto; min-height: auto; }
  .appearance-stage-copy { align-items: flex-start; flex-direction: column; }
  .appearance-stage-copy h3 { max-width: none; }
  .appearance-item span { width: 40px; height: 40px; }
  .appearances-image { min-height: 420px; }
  .appearance-video-frame { margin: 0 .75rem; border-radius: 18px; }
  .appearance-stage-top, .appearance-stage-copy { padding-left: 1rem; padding-right: 1rem; }
  .media-grid { grid-template-columns: 1fr; grid-auto-rows: 440px; }
  .media-item.tall { grid-row: span 1; }
  .floating-whatsapp { left: 14px; right: 14px; bottom: 14px; }
  .site-footer { padding-bottom: 5.2rem; }
  .footer-top { gap: 1.35rem; }
  .footer-links { gap: .45rem .75rem; font-size: .66rem; }
  .footer-credit { flex-direction: column; gap: .55rem; }
  .creator-logo-link { width: 148px; height: 48px; }
  .footer-bottom { justify-content: center; flex-direction: column; }
  .back-to-top { width: 100%; max-width: 260px; }
  .footer-bottom p { font-size: .64rem; letter-spacing: .1em; }
}



/* Hero cinematic motion inspired by MIQI's image-led Framer aesthetic:
   duplicate light layers, soft ghosting, animated glow, scroll parallax and title motion. */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(45, 125, 255, .11) 40%, rgba(0, 194, 209, .12) 51%, transparent 63% 100%);
  transform: translateX(calc(-32% + (var(--hero-progress) * 20%))) skewX(-10deg);
  opacity: .48;
  mix-blend-mode: screen;
  animation: heroBeam 4.8s cubic-bezier(.16, 1, .3, 1) 1.15s both;
}
.hero::after {
  z-index: 0;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,.08), transparent 18rem),
    radial-gradient(circle at calc(var(--mouse-x) + 12%) calc(var(--mouse-y) + 8%), rgba(0, 194, 209, .14), transparent 22rem),
    radial-gradient(circle at calc(var(--mouse-x) - 18%) calc(var(--mouse-y) - 5%), rgba(45, 125, 255, .10), transparent 20rem);
  opacity: calc(.66 - (var(--hero-progress) * .28));
  mix-blend-mode: screen;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: -4%;
  background-image: url("assets/img/hero-facualt.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity, clip-path;
}
.hero-media::before {
  z-index: 1;
  mix-blend-mode: screen;
  filter: hue-rotate(170deg) saturate(1.35) blur(.4px);
  clip-path: polygon(0 8%, 52% 0, 72% 100%, 0 88%);
  animation: heroGhostLeft 5.6s cubic-bezier(.16, 1, .3, 1) .65s both, ghostPulse 7s ease-in-out 3s infinite;
}
.hero-media::after {
  z-index: 2;
  mix-blend-mode: lighten;
  filter: hue-rotate(-35deg) saturate(1.55) blur(.8px);
  clip-path: polygon(30% 0, 100% 0, 100% 76%, 58% 100%);
  animation: heroGhostRight 5.2s cubic-bezier(.16, 1, .3, 1) .85s both, ghostPulse 8s ease-in-out 3.3s infinite reverse;
}

.hero-media img {
  transform-origin: 68% 42%;
  filter: saturate(calc(1.05 + (var(--hero-progress) * .22))) contrast(calc(1.02 + (var(--hero-progress) * .1))) brightness(calc(1 - (var(--hero-progress) * .08)));
  animation: heroIn 2.45s cubic-bezier(.16, 1, .3, 1) forwards, heroBreath 10s ease-in-out 2.55s infinite alternate;
}
.hero-vignette {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .96) 0%, rgba(5, 7, 11, .78) 24%, rgba(5, 7, 11, .18) 60%, rgba(5, 7, 11, .72) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, .22) 0%, rgba(5, 7, 11, .16) 45%, rgba(5, 7, 11, .96) 100%);
  opacity: calc(1 - (var(--hero-progress) * .1));
}
.hero-noise {
  opacity: .12;
  background-size: 260px 260px;
  animation: noiseShift .65s steps(2, end) infinite;
  mix-blend-mode: soft-light;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: calc(.22 - (var(--hero-progress) * .08));
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.85), transparent 74%);
  transform: translate3d(calc(var(--hero-progress) * -28px), calc(var(--hero-progress) * 18px), 0);
}
.hero-light-sweep {
  position: absolute;
  inset: -16% -12%;
  z-index: -1;
  pointer-events: none;
  background:
    conic-gradient(from 124deg at 46% 42%, transparent 0 11%, rgba(0, 194, 209, .22) 13%, transparent 18% 100%),
    conic-gradient(from 290deg at 76% 38%, transparent 0 7%, rgba(45, 125, 255, .18) 10%, transparent 16% 100%);
  opacity: calc(.62 - (var(--hero-progress) * .32));
  filter: blur(9px);
  mix-blend-mode: screen;
  transform: rotate(calc(-3deg + (var(--hero-progress) * 5deg))) scale(1.08);
  animation: lightSweepIn 2.3s cubic-bezier(.16, 1, .3, 1) .5s both, lightSweepPulse 6.5s ease-in-out 2.8s infinite alternate;
}
.hero-ghost-word {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 0;
  transform: translate(-50%, -50%) translateY(calc(var(--hero-progress) * -80px));
  width: 120vw;
  text-align: center;
  pointer-events: none;
  user-select: none;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.1em;
  font-size: clamp(8rem, 27vw, 31rem);
  line-height: .75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .105);
  text-shadow: 0 0 80px rgba(0, 194, 209, .08), 0 0 120px rgba(45, 125, 255, .08);
  opacity: calc(.42 - (var(--hero-progress) * .24));
  animation: ghostWordIn 1.7s cubic-bezier(.16, 1, .3, 1) .55s both;
}
.hero-content {
  transform: translate3d(0, calc(var(--hero-progress) * -42px), 0);
  opacity: calc(1 - (var(--hero-progress) * .2));
}
.hero-title {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-title::before {
  color: rgba(0, 194, 209, .68);
  transform: translate3d(-8px, 0, 0);
  clip-path: inset(0 0 52% 0);
  animation: titleSplitCyan 4.6s ease-in-out 1.45s infinite;
}
.hero-title::after {
  color: rgba(45, 125, 255, .62);
  transform: translate3d(8px, 0, 0);
  clip-path: inset(48% 0 0 0);
  animation: titleSplitMagenta 5.2s ease-in-out 1.7s infinite;
}
.hero-socials a,
.site-nav a,
.brand {
  text-shadow: 0 0 18px rgba(0, 194, 209, .04);
}

@keyframes heroBeam {
  0% { transform: translateX(-80%) skewX(-10deg); opacity: 0; }
  35% { opacity: .62; }
  100% { transform: translateX(-32%) skewX(-10deg); opacity: .48; }
}
@keyframes heroGhostLeft {
  0% { opacity: 0; transform: translate3d(-52px, 0, 0) scale(1.18); }
  36% { opacity: .22; }
  100% { opacity: .08; transform: translate3d(-16px, 0, 0) scale(1.085); }
}
@keyframes heroGhostRight {
  0% { opacity: 0; transform: translate3d(58px, 0, 0) scale(1.16); }
  34% { opacity: .18; }
  100% { opacity: .065; transform: translate3d(18px, 0, 0) scale(1.08); }
}
@keyframes ghostPulse {
  0%, 100% { opacity: .055; }
  50% { opacity: .12; }
}
@keyframes heroBreath {
  from { transform: translate3d(0, var(--hero-offset), 0) scale(var(--hero-scale)); }
  to { transform: translate3d(0, var(--hero-offset), 0) scale(calc(var(--hero-scale) + .025)); }
}
@keyframes noiseShift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  75% { transform: translate3d(2%, 1%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes lightSweepIn {
  0% { opacity: 0; transform: rotate(-8deg) scale(1.2); filter: blur(22px); }
  100% { opacity: .62; transform: rotate(-3deg) scale(1.08); filter: blur(9px); }
}
@keyframes lightSweepPulse {
  from { opacity: .38; transform: rotate(-3deg) scale(1.04); }
  to { opacity: .7; transform: rotate(2deg) scale(1.12); }
}
@keyframes ghostWordIn {
  0% { opacity: 0; transform: translate(-50%, -50%) translateY(44px) scale(.92); filter: blur(18px); }
  100% { opacity: .42; transform: translate(-50%, -50%) translateY(0) scale(1); filter: blur(0); }
}
@keyframes titleSplitCyan {
  0%, 88%, 100% { opacity: 0; transform: translate3d(-8px, 0, 0); }
  90% { opacity: .52; transform: translate3d(-14px, -2px, 0); }
  92% { opacity: .18; transform: translate3d(2px, 1px, 0); }
  94% { opacity: .42; transform: translate3d(-6px, 0, 0); }
}
@keyframes titleSplitMagenta {
  0%, 84%, 100% { opacity: 0; transform: translate3d(8px, 0, 0); }
  86% { opacity: .48; transform: translate3d(14px, 2px, 0); }
  88% { opacity: .16; transform: translate3d(-2px, -1px, 0); }
  91% { opacity: .36; transform: translate3d(6px, 0, 0); }
}

@media (max-width: 680px) {
  .hero-media::before,
  .hero-media::after {
    background-image: url("assets/img/hero-facualt-mobile.webp");
    background-position: center top;
  }
  .hero-ghost-word {
    top: 42%;
    width: 160vw;
    font-size: clamp(6.4rem, 30vw, 9rem);
    opacity: calc(.34 - (var(--hero-progress) * .2));
  }
  .hero::before { opacity: .32; }
  .hero-grid { opacity: .14; background-size: 46px 46px; }
  .hero-light-sweep { opacity: .34; }
}


@media (max-width: 980px) {
  .profile-copy::before { left: -.75rem; }
  .profile-carousel { max-width: 620px; margin-inline: auto; }
}

@media (max-width: 680px) {
  .profile-grid { gap: 2rem; }
  .profile-name { font-size: clamp(2.6rem, 14vw, 4.4rem); }
  .profile-pulse-card { border-radius: 18px; }
  .profile-carousel,
  .profile-frame { min-height: 590px; height: 590px; }
  .profile-portrait img.profile-slide { height: 100%; }
  .profile-portrait figcaption {
    left: .8rem;
    right: .8rem;
    bottom: .8rem;
    font-size: .72rem;
  }
  .profile-dots { right: 1rem; top: 1rem; }
}

@media (max-width: 420px) {
  .profile-carousel,
  .profile-frame { min-height: 540px; height: 540px; }
  .profile-slide { object-position: 50% 12%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-media img { transform: none !important; }
  .hero::before, .hero::after, .hero-media::before, .hero-media::after, .hero-light-sweep, .hero-grid, .hero-ghost-word { animation: none !important; transform: none !important; }
  .hero-title::before, .hero-title::after { display: none !important; }
  .reveal, .reveal-load { opacity: 1 !important; transform: none !important; filter: none !important; }
}

.appearance-item.is-active i {
  color: var(--cyan);
  border-color: rgba(0, 194, 209, .38);
  background: rgba(0, 194, 209, .09);
}
.appearance-item[aria-current="true"] {
  cursor: default;
}


/* Ajustes solicitados: Archivo solo con flyers Parizone + formulario debajo en Contrataciones */
.media-grid-flyers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(620px, 72vh);
  max-width: 980px;
  margin: 0 auto;
}
.media-grid-flyers .media-item {
  min-height: 620px;
}
.media-grid-flyers .media-item img {
  object-fit: cover;
  object-position: center;
}
.media-grid-flyers .media-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 194, 209, .18), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(45, 125, 255, .2), transparent 34%);
  opacity: .25;
  pointer-events: none;
  transition: opacity .35s ease;
}
.media-grid-flyers .media-item:hover::before { opacity: .5; }
.media-grid-flyers .media-item span { z-index: 3; }

.booking-grid {
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
}
.booking-copy {
  max-width: 900px;
}
.booking-copy .contact-actions,
.booking-copy .social-list {
  max-width: 760px;
}
.booking-form {
  width: min(100%, 860px);
  justify-self: stretch;
  margin-top: .35rem;
}
.booking-form::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem -1px 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 194, 209, .65), rgba(45, 125, 255, .45), transparent);
  opacity: .7;
}

@media (max-width: 900px) {
  .media-grid-flyers {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    max-width: 560px;
  }
  .media-grid-flyers .media-item {
    min-height: auto;
    aspect-ratio: 9 / 14;
  }
}

@media (max-width: 680px) {
  .media-grid-flyers {
    grid-auto-rows: auto;
  }
  .media-grid-flyers .media-item {
    aspect-ratio: 9 / 14;
  }
  .booking-form {
    width: 100%;
  }
}

/* Optimización final: embeds livianos + formulario premium + disponible para */
.lazy-embed {
  position: relative;
}
.embed-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  color: var(--text);
  text-align: left;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(45, 125, 255, .28), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(0, 194, 209, .18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
}
.embed-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.13) 46%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.embed-placeholder:hover::before { transform: translateX(120%); }
.embed-placeholder:hover { filter: brightness(1.08); }
.soundcloud-placeholder {
  min-height: 166px;
  display: grid;
  align-content: center;
  gap: .34rem;
  padding: 1.2rem;
}
.soundcloud-placeholder span,
.soundcloud-placeholder em,
.youtube-placeholder em {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  color: var(--muted);
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.soundcloud-placeholder strong {
  position: relative;
  z-index: 2;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: -.04em;
}
.soundcloud-placeholder em {
  margin-top: .35rem;
  color: var(--green);
}
.video-embed .embed-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0;
}
.youtube-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.92) contrast(1.08) brightness(.72);
  transform: scale(1.02);
  transition: transform .45s ease, opacity .3s ease, filter .3s ease;
}
.youtube-placeholder:hover img {
  transform: scale(1.07);
  opacity: .74;
  filter: saturate(1.05) contrast(1.12) brightness(.82);
}
.play-badge {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding-left: 4px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(45,125,255,.95), rgba(0,194,209,.78));
  box-shadow: 0 18px 58px rgba(45,125,255,.28), 0 0 32px rgba(0,194,209,.18);
}
.youtube-placeholder em {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  color: var(--text);
  background: rgba(2,3,4,.58);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .55rem .75rem;
  backdrop-filter: blur(12px);
}
.lazy-embed.is-loaded iframe {
  animation: embedLoad .45s ease both;
}
@keyframes embedLoad {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}
.booking-availability {
  margin: 1.4rem 0 1.7rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(45, 125, 255, .24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(45, 125, 255, .13), transparent 34%),
    rgba(255,255,255,.035);
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
}
.booking-availability span {
  display: block;
  margin-bottom: .45rem;
  color: var(--green);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.booking-availability p {
  margin: 0;
  color: var(--text);
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  line-height: 1.7;
}
.booking-form .form-note {
  padding: .85rem 1rem;
  border: 1px solid rgba(0, 194, 209, .20);
  border-radius: 16px;
  color: var(--soft);
  background: linear-gradient(135deg, rgba(0, 194, 209, .08), rgba(45, 125, 255, .06));
}

/* Ajustes finales solicitados: perfil real, micro sección presskit y responsive mobile reforzado */
.technical-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(45, 125, 255, .12), transparent 34rem),
    radial-gradient(circle at 88% 68%, rgba(0, 194, 209, .10), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.035));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.technical-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}
.technical-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .9fr 1.15fr;
  gap: 1rem;
}
.technical-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2vw, 1.65rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 125, 255, .15), transparent 36%),
    radial-gradient(circle at 92% 84%, rgba(0, 194, 209, .10), transparent 34%),
    rgba(12, 18, 25, .72);
  box-shadow: 0 18px 64px rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}
.technical-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.10), transparent 34%, rgba(45,125,255,.07));
  opacity: .55;
}
.technical-card > * { position: relative; z-index: 1; }
.technical-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.technical-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: .98;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.technical-card h4 {
  margin: 1.35rem 0 .85rem;
  color: var(--green);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.technical-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .72rem;
}
.technical-card li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--soft);
  font-size: .96rem;
  line-height: 1.45;
}
.technical-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: .32rem;
  height: .32rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  box-shadow: 0 0 18px rgba(45,125,255,.35);
}
.compact-list { gap: .55rem; }

@media (max-width: 980px) {
  .technical-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  html, body { max-width: 100%; overflow-x: hidden; }

  .section-heading h2,
  .profile-copy h2,
  .booking-copy h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.6vw, 3.9rem);
    line-height: .92;
    letter-spacing: -.075em;
    overflow-wrap: anywhere;
  }

  .section-heading p:not(.eyebrow),
  .booking-copy p,
  .profile-copy p {
    font-size: clamp(1rem, 4.2vw, 1.1rem);
  }

  .profile-copy::before { display: none; }
  .profile-copy .large-text { font-size: clamp(1.1rem, 5vw, 1.45rem); }
  .profile-tags { gap: .6rem; }
  .profile-tags span { font-size: .82rem; padding: .72rem .9rem; }

  .profile-carousel,
  .profile-frame {
    width: 100%;
    min-height: auto;
    height: clamp(430px, 118vw, 540px);
  }
  .profile-portrait img.profile-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 14%;
  }
  .profile-frame-glow { opacity: .45; }
  .profile-portrait figcaption {
    left: .85rem;
    right: .85rem;
    bottom: .85rem;
    max-width: calc(100% - 1.7rem);
    gap: .65rem;
  }
  .profile-portrait figcaption span { line-height: 1.15; }

  .technical-card {
    border-radius: 20px;
    padding: 1.15rem;
  }
  .technical-card h3 { font-size: clamp(1.45rem, 8vw, 2.15rem); }
  .technical-card li { font-size: .94rem; }

  .floating-whatsapp {
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 380px) {
  .section-heading h2,
  .profile-copy h2,
  .booking-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }
  .profile-carousel,
  .profile-frame { height: 420px; }
}


@media (max-width: 680px) {
  .audio-toggle {
    left: 14px;
    bottom: 78px;
    min-height: 42px;
    padding: .65rem .82rem;
    font-size: .66rem;
    letter-spacing: .07em;
  }
  .audio-toggle__state { font-size: .62rem; }
}


/* Logo final FACU ALT - header y footer */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.brand img {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}
.footer-brand-logo {
  display: block;
  width: min(210px, 72vw);
  height: auto;
  object-fit: contain;
}
@media (max-width: 680px) {
  .brand img {
    height: 30px;
  }
  .footer-brand-logo {
    width: min(185px, 70vw);
    margin-inline: auto;
  }
}

/* Ajuste: rider técnico movido a Contrataciones */
.booking-rider-card {
  width: min(100%, 860px);
  justify-self: stretch;
}
.booking-rider-card h3 {
  max-width: 760px;
}
@media (max-width: 680px) {
  .booking-rider-card {
    padding: 1.15rem;
  }
}


@media (max-width: 980px) {
  .appearances-list {
    max-height: 520px;
  }
}

/* Appearance video panel refinement */
.appearance-stage {
  min-height: 0;
}
.appearance-stage-top {
  padding: 1rem 1.15rem .8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(90deg, rgba(0, 194, 209, .08), rgba(255,255,255,0));
}
.appearance-video-frame {
  margin: 1rem 1rem 0;
  border-radius: 20px;
  box-shadow: 0 26px 74px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.05), 0 0 64px rgba(0, 194, 209, .08);
}
.appearance-stage-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.1rem;
  margin: 1rem;
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    radial-gradient(circle at 0% 0%, rgba(0, 194, 209, .12), transparent 18rem),
    rgba(3, 6, 10, .72);
  box-shadow: inset 0 0 0 1px rgba(0, 194, 209, .035), 0 18px 50px rgba(0,0,0,.26);
}
.appearance-stage-info {
  min-width: 0;
}
.appearance-stage-label {
  display: inline-flex;
  margin-bottom: .65rem;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.appearance-stage-copy h3 {
  max-width: 11ch;
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.appearance-stage-copy .eyebrow {
  margin: 0;
}
.appearance-link {
  align-self: end;
  justify-self: end;
  min-height: 44px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .appearance-stage-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .appearance-link {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .appearance-stage-copy {
    margin: .75rem;
    padding: 1rem;
    border-radius: 18px;
  }
  .appearance-stage-copy h3 {
    max-width: none;
    font-size: clamp(1.85rem, 11vw, 2.75rem);
  }
}


.appearance-video-frame iframe[hidden] {
  display: none;
}
.appearance-video-empty {
  min-height: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  gap: .55rem;
  text-align: center;
  color: var(--soft);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 194, 209, .12), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.appearance-video-empty[hidden] {
  display: none;
}
.appearance-video-empty span {
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.appearance-video-empty strong {
  max-width: 18ch;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.05;
}
.appearance-link[hidden] {
  display: none;
}

/* Ajuste solicitado: Sets solo con videos y Producciones antes de Archivo */
.section-sets .video-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: 0;
}
.section-sets .video-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.section-sets .video-embed {
  order: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.section-sets .video-copy {
  order: 2;
  min-height: 0;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  justify-content: flex-start;
}
.section-sets .video-copy h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}
.section-sets .youtube-placeholder em {
  left: 1.15rem;
  bottom: 1.15rem;
}

@media (max-width: 860px) {
  .section-sets .video-grid {
    grid-template-columns: 1fr;
  }
  .section-sets .video-embed {
    aspect-ratio: 1 / 1;
  }
}

/* Reproductor visual Producciones & edits */
.playlist-section .section-heading {
  max-width: 760px;
}
.music-player-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.65rem);
  align-items: stretch;
}
.track-library,
.track-player-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(45, 125, 255, .14), transparent 35%),
    radial-gradient(circle at 92% 90%, rgba(0, 194, 209, .10), transparent 36%),
    rgba(9, 14, 21, .76);
  box-shadow: 0 18px 64px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.track-library {
  display: grid;
  gap: .9rem;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  height: clamp(520px, 58vh, 620px);
  max-height: none;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(45,125,255,.65) rgba(255,255,255,.06);
}
.track-library::-webkit-scrollbar { width: 7px; }
.track-library::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 999px; }
.track-library::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--cyan), var(--blue)); border-radius: 999px; }
.track-group {
  display: grid;
  gap: .55rem;
}
.track-group + .track-group {
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.track-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: .1rem .15rem .25rem;
}
.track-group-heading span,
.track-state,
.track-cover span {
  color: var(--green);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.track-group-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.track-item {
  width: 100%;
  appearance: none;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: .82rem .9rem;
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr) auto;
  align-items: center;
  gap: .8rem;
  color: var(--white);
  background: rgba(255,255,255,.025);
  cursor: pointer;
  text-align: left;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.track-item:hover,
.track-item.is-active {
  transform: translateY(-1px);
  border-color: rgba(45,125,255,.42);
  background: linear-gradient(135deg, rgba(0,194,209,.12), rgba(45,125,255,.09));
  box-shadow: 0 16px 36px rgba(0,0,0,.20);
}
.track-index {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,194,209,.12);
  border: 1px solid rgba(45,125,255,.22);
  color: var(--white);
  font-size: .76rem;
  font-weight: 950;
}
.track-text {
  min-width: 0;
  display: grid;
  gap: .18rem;
}
.track-text strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .98rem;
  letter-spacing: -.02em;
}
.track-text em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
}
.track-state {
  color: var(--cyan);
  font-size: .58rem;
  letter-spacing: .12em;
  white-space: nowrap;
}
.track-item.is-upcoming .track-state {
  color: var(--muted);
}
.track-player-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  display: flex;
  flex-direction: column;
  height: clamp(520px, 58vh, 620px);
  min-height: 0;
}

.track-player-card {
  overflow: visible;
}
.track-player-card .track-cover {
  flex-shrink: 0;
}

.track-cover {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: auto;
  height: clamp(220px, 28vw, 330px);
  min-height: 0;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 16%, rgba(45,125,255,.35), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(0,194,209,.22), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    #04070b;
}
.track-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .13;
  z-index: -1;
}
.track-cover::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% -12%;
  height: 46%;
  background: radial-gradient(circle, rgba(0,194,209,.26), transparent 68%);
  filter: blur(14px);
  opacity: .75;
  z-index: -1;
}
.track-cover img {
  width: min(72%, 330px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.55));
  opacity: .96;
  transition: transform .35s ease, opacity .35s ease;
}
.track-cover.is-switching img {
  transform: scale(.94);
  opacity: .55;
}
.track-cover span {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: .5rem .7rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  color: var(--white);
}
.track-player-info {
  padding: .95rem .1rem .55rem;
}
.track-player-info h3 {
  margin: .15rem 0 .3rem;
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  line-height: .96;
  letter-spacing: -.065em;
  text-transform: uppercase;
  max-width: 14ch;
}
.track-player-info p {
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
}
.track-timeline {
  width: 100%;
  margin: .15rem 0 .85rem;
}
.track-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .48rem;
}
.track-progress {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}
.track-progress::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.07), transparent 42%, rgba(255,255,255,.04));
  pointer-events: none;
}
.track-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(45,125,255,.42);
  transition: width .2s linear;
}
.track-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 1vw, .82rem);
  width: 100%;
  margin: .2rem auto 0;
}
.track-controls button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  width: 2.78rem;
  height: 2.78rem;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.track-controls button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(0,194,209,.18), rgba(45,125,255,.13));
  border-color: rgba(45,125,255,.55);
  box-shadow: 0 16px 34px rgba(45,125,255,.14), inset 0 1px 0 rgba(255,255,255,.12);
}
.track-controls button:disabled {
  cursor: not-allowed;
  opacity: .42;
}
.track-controls .track-play {
  width: 3.75rem;
  height: 3.75rem;
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.42), transparent 28%), linear-gradient(135deg, var(--cyan), var(--blue));
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(45,125,255,.28), 0 0 0 7px rgba(45,125,255,.08);
  font-size: 1.25rem;
}
.track-control-secondary {
  color: var(--soft);
}
.track-control-secondary.is-on {
  color: var(--white);
  border-color: rgba(0,194,209,.62);
  background: linear-gradient(145deg, rgba(0,194,209,.24), rgba(45,125,255,.16));
  box-shadow: 0 14px 30px rgba(0,194,209,.14), inset 0 1px 0 rgba(255,255,255,.12);
}
.track-note {
  margin: .78rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.track-player-card.is-playing .track-cover img {
  animation: playerPulse 2.6s ease-in-out infinite;
}
@keyframes playerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
@media (max-width: 980px) {
  .music-player-layout {
    grid-template-columns: 1fr;
  }
  .track-player-card {
    order: -1;
    height: auto;
  }
  .track-library {
    height: auto;
    max-height: 560px;
  }
}
@media (max-width: 560px) {
  .track-item {
    grid-template-columns: 2.15rem minmax(0, 1fr);
    gap: .7rem;
    padding: .78rem;
  }
  .track-state {
    grid-column: 2;
    justify-self: start;
  }
  .track-player-info h3 {
    font-size: clamp(1.6rem, 9vw, 2.55rem);
    max-width: 11ch;
  }
  .track-time-row {
    font-size: .66rem;
  }
  .track-controls {
    gap: .48rem;
  }
  .track-controls button {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1rem;
  }
  .track-controls .track-play {
    width: 3.35rem;
    height: 3.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .track-player-card.is-playing .track-cover img { animation: none; }
}

/* Ajuste final: cards de playlist y reproductor equilibradas */
@media (min-width: 981px) {
  .music-player-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .track-library,
  .track-player-card {
    height: clamp(560px, 62vh, 680px);
  }
  .track-cover {
    width: min(100%, 430px);
    align-self: center;
    flex: 0 0 auto;
  }
}

/* Ajuste final: reproductor sin recorte en desktop + fondo sutil en Presentaciones */
.appearances-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(45, 125, 255, .115), transparent 34rem),
    radial-gradient(circle at 84% 70%, rgba(0, 194, 209, .085), transparent 32rem),
    linear-gradient(180deg, rgba(4, 7, 12, .98), rgba(8, 13, 20, .94));
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.appearances-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 78%, transparent);
}
.appearances-section::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 14%;
  width: min(44vw, 680px);
  height: min(44vw, 680px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(0,194,209,.09), transparent 66%);
  filter: blur(20px);
  opacity: .8;
}
.appearances-section .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 981px) {
  .music-player-layout {
    align-items: stretch;
  }
  .track-library,
  .track-player-card {
    height: clamp(610px, 66vh, 720px);
  }
  .track-player-card {
    overflow: hidden;
    justify-content: flex-start;
    padding: clamp(1rem, 1.4vw, 1.22rem);
  }
  .track-player-card .track-cover {
    width: min(100%, 410px);
    height: clamp(210px, 22vw, 270px);
    max-height: 270px;
    align-self: center;
  }
  .track-cover img {
    width: min(58%, 250px);
  }
  .track-player-info {
    padding: .78rem 0 .42rem;
  }
  .track-player-info h3 {
    font-size: clamp(1.35rem, 1.9vw, 2.05rem);
    line-height: .98;
    letter-spacing: -.055em;
    max-width: 16ch;
  }
  .track-player-info p {
    font-size: .94rem;
  }
  .track-timeline {
    margin: .05rem 0 .62rem;
  }
  .track-controls {
    margin-top: .1rem;
  }
  .track-controls button {
    width: 2.62rem;
    height: 2.62rem;
  }
  .track-controls .track-play {
    width: 3.55rem;
    height: 3.55rem;
  }
  .track-note {
    margin-top: .62rem;
    font-size: .82rem;
    line-height: 1.35;
  }
}

/* Verificación visual final: reproductor más compacto para evitar recortes en desktop */
@media (min-width: 981px) {
  .track-library,
  .track-player-card {
    height: clamp(600px, 64vh, 660px);
  }
  .track-player-card {
    overflow: hidden;
  }
  .track-player-card .track-cover,
  .track-cover {
    height: clamp(170px, 17vw, 220px) !important;
    max-height: 220px !important;
  }
  .track-cover img {
    width: min(52%, 205px) !important;
    max-height: 150px;
  }
  .track-player-info {
    padding: .62rem 0 .34rem;
  }
  .track-player-info h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.72rem);
    line-height: 1;
    max-width: 18ch;
  }
  .track-player-info p {
    font-size: .9rem;
  }
  .track-time-row {
    margin-bottom: .38rem;
  }
  .track-timeline {
    margin: 0 0 .56rem;
  }
  .track-controls {
    gap: .62rem;
  }
  .track-controls button {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 1rem;
  }
  .track-controls .track-play {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.1rem;
    box-shadow: 0 15px 34px rgba(45,125,255,.24), 0 0 0 6px rgba(45,125,255,.07);
  }
  .track-note {
    margin-top: .55rem;
    font-size: .78rem;
    line-height: 1.32;
  }
}

/* Archivo de eventos: carrusel compacto con fondos transparentes */
.archive-carousel {
  position: relative;
  width: min(720px, 100%);
  margin: clamp(2rem, 4vw, 3.2rem) auto 0;
  display: grid;
  gap: 1rem;
}
.archive-stage {
  position: relative;
  min-height: clamp(520px, 68vh, 720px);
  perspective: 1400px;
}
.archive-slide {
  position: absolute;
  inset: 0;
  width: min(480px, 78vw);
  max-width: 100%;
  margin: 0 auto;
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 3;
  cursor: pointer;
  transition: opacity .42s ease, transform .55s cubic-bezier(.16, 1, .3, 1), filter .42s ease, box-shadow .42s ease;
}
.archive-slide:not(.is-active) {
  opacity: .20;
  z-index: 1;
  pointer-events: none;
  filter: blur(.6px) saturate(.78) brightness(.72);
}
.archive-slide:not(.is-active):nth-child(odd) { transform: translateX(-18%) scale(.88) rotate(-3deg); }
.archive-slide:not(.is-active):nth-child(even) { transform: translateX(18%) scale(.88) rotate(3deg); }
.archive-slide.is-active {
  opacity: 1;
  z-index: 4;
  box-shadow: 0 26px 90px rgba(0,0,0,.38), 0 0 0 1px rgba(45,125,255,.12);
}
.archive-slide img {
  object-position: center top;
}
.archive-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  position: relative;
  z-index: 6;
}
.archive-nav {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.archive-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(45,125,255,.5);
  background: linear-gradient(145deg, rgba(0,194,209,.16), rgba(45,125,255,.12));
  box-shadow: 0 16px 40px rgba(45,125,255,.14);
}
.archive-dots {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .62rem .8rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(5, 9, 15, .68);
  backdrop-filter: blur(16px);
}
.archive-dots button {
  width: .58rem;
  height: .58rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: width .25s ease, background .25s ease, box-shadow .25s ease;
}
.archive-dots button.is-active {
  width: 2.1rem;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(45,125,255,.34);
}
@media (max-width: 680px) {
  .archive-carousel {
    width: 100%;
    margin-top: 1.65rem;
  }
  .archive-stage {
    min-height: min(118vw, 560px);
  }
  .archive-slide {
    width: min(82vw, 390px);
  }
  .archive-slide:not(.is-active):nth-child(odd) { transform: translateX(-12%) scale(.86) rotate(-2deg); }
  .archive-slide:not(.is-active):nth-child(even) { transform: translateX(12%) scale(.86) rotate(2deg); }
}

/* Producciones & edits: reproductor más destacado, profesional y separado del fondo */
.track-player-card {
  background:
    radial-gradient(circle at 18% 8%, rgba(45,125,255,.42), transparent 34%),
    radial-gradient(circle at 82% 88%, rgba(0,194,209,.28), transparent 42%),
    linear-gradient(145deg, rgba(10, 34, 72, .96), rgba(4, 13, 24, .96) 48%, rgba(2, 37, 44, .92));
  border-color: rgba(83, 166, 255, .28);
  box-shadow: 0 26px 90px rgba(0,0,0,.38), 0 0 0 1px rgba(45,125,255,.10), inset 0 1px 0 rgba(255,255,255,.08);
}
.track-player-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.075), transparent 18%, transparent 70%, rgba(0,194,209,.06)),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  opacity: .46;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}
.track-player-card > * {
  position: relative;
  z-index: 1;
}
.track-player-card .track-cover,
.track-cover {
  background:
    radial-gradient(circle at 20% 10%, rgba(45,125,255,.55), transparent 34%),
    radial-gradient(circle at 72% 82%, rgba(0,194,209,.36), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02)),
    #03070d;
  border-color: rgba(150, 205, 255, .20);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.045), 0 18px 48px rgba(0,0,0,.32);
}
.track-cover span,
.track-player-info .technical-label,
.track-player-info [data-player-status] {
  color: #d9f5ff;
}
.track-player-info h3 {
  color: #fff;
  text-shadow: 0 12px 38px rgba(0,0,0,.34);
}
.track-progress {
  background: rgba(255,255,255,.16);
}
.track-progress span {
  background: linear-gradient(90deg, #00d9ff, #2d7dff 55%, #7ab6ff);
  box-shadow: 0 0 22px rgba(45,125,255,.58);
}
.track-controls button {
  border-color: rgba(190, 226, 255, .22);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  box-shadow: 0 14px 34px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.12);
}
.track-controls button:hover:not(:disabled) {
  background: linear-gradient(145deg, rgba(0,217,255,.24), rgba(45,125,255,.20));
  border-color: rgba(124, 190, 255, .72);
  box-shadow: 0 18px 44px rgba(45,125,255,.22), inset 0 1px 0 rgba(255,255,255,.16);
}
.track-controls .track-play {
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.45), transparent 28%), linear-gradient(135deg, #00d9ff, #2d7dff 58%, #1551d3);
  box-shadow: 0 20px 52px rgba(45,125,255,.38), 0 0 0 8px rgba(45,125,255,.12);
}
.track-note {
  color: rgba(231, 241, 255, .78);
}

/* Ajuste final revisado: el reproductor entra completo en desktop */
@media (min-width: 981px) {
  .music-player-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }
  .track-library,
  .track-player-card {
    height: 620px;
  }
  .track-player-card {
    padding: 1rem 1.15rem .95rem;
    overflow: hidden;
    justify-content: flex-start;
  }
  .track-player-card .track-cover,
  .track-cover {
    height: 210px !important;
    max-height: 210px !important;
    width: min(100%, 392px);
    align-self: center;
  }
  .track-cover img {
    width: min(46%, 180px) !important;
    max-height: 118px;
  }
  .track-player-info {
    padding: .62rem 0 .3rem;
  }
  .track-player-info h3 {
    font-size: clamp(1.08rem, 1.38vw, 1.56rem);
    line-height: 1.02;
    max-width: 19ch;
  }
  .track-player-info p {
    font-size: .88rem;
  }
  .track-time-row {
    margin-bottom: .32rem;
    font-size: .68rem;
  }
  .track-progress { height: 6px; }
  .track-timeline {
    margin: 0 0 .48rem;
  }
  .track-controls {
    gap: .54rem;
    margin-top: 0;
  }
  .track-controls button {
    width: 2.32rem;
    height: 2.32rem;
    font-size: .98rem;
  }
  .track-controls .track-play {
    width: 3.05rem;
    height: 3.05rem;
    font-size: 1.05rem;
  }
  .track-note {
    margin-top: .48rem;
    font-size: .76rem;
    line-height: 1.3;
  }
}

/* Contact social cards - compact horizontal layout */
.social-list.social-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  max-width: 860px;
}
.social-list.social-grid li {
  min-width: 0;
}
.social-list.social-grid a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .62rem;
  min-height: 66px;
  padding: .82rem .9rem;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(10, 20, 34, .88), rgba(5, 10, 16, .74)),
    radial-gradient(circle at 20% 0%, rgba(0, 194, 209, .16), transparent 60%);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 18px 45px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.social-list.social-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 194, 209, .16), rgba(45, 125, 255, .12));
  opacity: 0;
  transition: opacity .25s ease;
}
.social-list.social-grid a::after {
  content: none;
}
.social-list.social-grid a > * {
  position: relative;
  z-index: 1;
}
.social-list.social-grid a:hover {
  padding-left: .9rem;
  transform: translateY(-3px);
  color: #fff;
  border-color: rgba(0, 194, 209, .38);
  box-shadow: 0 0 0 4px rgba(0, 194, 209, .07), 0 24px 62px rgba(0,0,0,.35);
}
.social-list.social-grid a:hover::before {
  opacity: 1;
}
.social-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 194, 209, .12);
  border: 1px solid rgba(0, 194, 209, .22);
  color: var(--cyan);
  flex: 0 0 auto;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-list.social-grid a span:not(.social-icon):not(.social-arrow) {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-arrow {
  color: var(--soft);
  font-size: .9rem;
  transform: translateY(-1px);
}

/* Created by logo final */
.creator-logo-link {
  width: clamp(154px, 11vw, 190px);
  height: clamp(76px, 6.2vw, 104px);
  border-radius: 20px;
  padding: .35rem;
}
.creator-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

@media (max-width: 980px) {
  .social-list.social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .social-list.social-grid {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .social-list.social-grid a {
    min-height: 58px;
    padding: .72rem .78rem;
  }
  .social-list.social-grid a:hover {
    padding-left: .78rem;
  }
  .social-icon {
    width: 32px;
    height: 32px;
  }
  .creator-logo-link {
    width: min(210px, 72vw);
    height: 118px;
  }
}

/* Final responsive refinements — contact socials, created by logo, mobile appearances */
.creator-logo-link,
.creator-logo-link:hover {
  width: clamp(82px, 6.2vw, 116px);
  height: clamp(48px, 3.9vw, 64px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: none;
}
.creator-logo-link::before { display: none; }
.creator-logo-link img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, .32));
}

@media (max-width: 560px) {
  .social-list.social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
    max-width: 100%;
    margin-top: 1.25rem;
  }
  .social-list.social-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: .55rem .35rem;
    border-radius: 16px;
  }
  .social-list.social-grid a:hover {
    padding-left: .35rem;
    transform: translateY(-2px);
  }
  .social-list.social-grid a span:not(.social-icon):not(.social-arrow),
  .social-list.social-grid .social-arrow {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .social-icon {
    width: 36px;
    height: 36px;
  }
  .social-icon svg {
    width: 19px;
    height: 19px;
  }
  .creator-logo-link,
  .creator-logo-link:hover {
    width: 92px;
    height: 54px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  .appearances-list {
    max-height: 430px;
  }
  .appearance-item {
    grid-template-columns: 38px 1fr;
    padding: .78rem;
    gap: .72rem;
  }
  .appearance-item span {
    width: 36px;
    height: 36px;
    font-size: .72rem;
  }
  .appearance-item h3 {
    font-size: clamp(.96rem, 4.9vw, 1.28rem);
    line-height: 1.05;
    letter-spacing: -.035em;
  }
  .appearance-item p {
    margin-top: .28rem;
    font-size: .82rem;
  }
  .appearance-item i {
    margin-top: .34rem;
    font-size: .66rem;
    letter-spacing: .13em;
  }
  .appearance-stage-top {
    padding: .78rem .92rem .62rem;
    font-size: .68rem;
  }
  .appearance-video-frame {
    width: calc(100% - 1rem);
    margin: .7rem .5rem 0;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }
  .appearance-video-empty {
    min-height: 100%;
    padding: 1rem;
  }
  .appearance-video-empty span {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .appearance-video-empty strong {
    font-size: .82rem;
  }
  .appearance-stage-copy {
    margin: .65rem .5rem .75rem;
    padding: .9rem;
    gap: .65rem;
    border-radius: 18px;
  }
  .appearance-stage-label {
    margin-bottom: .45rem;
    font-size: .62rem;
    letter-spacing: .14em;
  }
  .appearance-stage-copy h3 {
    max-width: 12ch;
    margin-bottom: .48rem;
    font-size: clamp(1.35rem, 8vw, 2.05rem);
    line-height: .94;
  }
  .appearance-stage-copy .eyebrow {
    font-size: .62rem;
    letter-spacing: .14em;
  }
}

/* Ajuste visual final: sombras sutiles en menú y títulos */
.site-nav a,
.header-cta {
  text-shadow:
    0 2px 14px rgba(0, 0, 0, .55),
    0 0 16px rgba(45, 125, 255, .10);
}

.site-nav a.is-active,
.site-nav a:hover {
  text-shadow:
    0 2px 18px rgba(0, 0, 0, .62),
    0 0 18px rgba(0, 194, 209, .18),
    0 0 28px rgba(45, 125, 255, .12);
}

.section-heading h2,
.profile-copy h2,
.booking-copy h2 {
  text-shadow:
    0 8px 30px rgba(0, 0, 0, .48),
    0 0 34px rgba(45, 125, 255, .11),
    0 0 58px rgba(0, 194, 209, .07);
}

.section-heading .eyebrow,
.profile-copy .eyebrow,
.booking-copy .eyebrow,
.appearances-kicker,
.player-section-kicker,
.card-kicker {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, .55),
    0 0 14px rgba(0, 194, 209, .14);
}

.brand img {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, .55)) drop-shadow(0 0 10px rgba(45, 125, 255, .08));
}

/* Ajuste final Presentaciones: títulos más horizontales y legibles */
.appearance-stage-copy h3 {
  max-width: min(100%, 20ch);
  font-size: clamp(1.5rem, 2.2vw, 2.45rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.appearance-item h3 {
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

@media (max-width: 680px) {
  .appearance-stage-copy {
    padding: .82rem .86rem;
  }
  .appearance-stage-copy h3 {
    max-width: 100%;
    font-size: clamp(1.08rem, 5.9vw, 1.62rem);
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: .42rem;
  }
  .appearance-stage-copy .eyebrow {
    font-size: .58rem;
    letter-spacing: .12em;
    line-height: 1.25;
  }
  .appearance-item h3 {
    font-size: clamp(.9rem, 4.1vw, 1.12rem);
    line-height: 1.08;
    letter-spacing: -.03em;
  }
}

/* Ajuste final Presentaciones: títulos más horizontales y lista nítida */
.appearances-video-layout {
  perspective: none;
}
.appearance-stage-copy {
  gap: .85rem;
}
.appearance-stage-info {
  min-width: 0;
  flex: 1 1 auto;
}
.appearance-stage-copy h3 {
  max-width: 100%;
  font-size: clamp(1.18rem, 1.55vw, 1.78rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
}
.appearance-item h3 {
  font-size: clamp(.96rem, 1.16vw, 1.28rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: pretty;
  overflow-wrap: normal;
  word-break: normal;
}
.appearance-item h3,
.appearance-item p,
.appearance-item i,
.appearance-item span {
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@media (max-width: 680px) {
  .appearances-list {
    max-height: 440px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .appearances-list::before {
    opacity: .46;
  }
  .appearance-item,
  .appearance-item:hover,
  .appearance-item:focus-visible,
  .appearance-item.is-active {
    transform: none;
  }
  .appearance-item {
    grid-template-columns: 36px 1fr;
    padding: .72rem .7rem;
    gap: .68rem;
  }
  .appearance-item h3 {
    font-size: clamp(.82rem, 3.62vw, .98rem);
    line-height: 1.13;
    letter-spacing: -.02em;
  }
  .appearance-item p {
    font-size: .78rem;
    line-height: 1.25;
  }
  .appearance-item i {
    font-size: .6rem;
    letter-spacing: .12em;
  }
  .appearance-item span {
    width: 34px;
    height: 34px;
    font-size: .68rem;
  }
  .appearance-stage-copy {
    padding: .78rem .8rem;
    gap: .62rem;
  }
  .appearance-stage-info {
    width: 100%;
  }
  .appearance-stage-copy h3 {
    max-width: 100%;
    font-size: clamp(.98rem, 4.85vw, 1.28rem);
    line-height: 1.08;
    letter-spacing: -.025em;
  }
  .appearance-stage-copy .eyebrow {
    max-width: 100%;
    white-space: normal;
  }
}

@media (min-width: 981px) {
  .appearance-stage-copy h3 {
    max-width: 27ch;
  }
}

@media (max-width: 680px) {
  .club-ambient__wash {
    width: 78vw;
    height: 78vw;
    opacity: .075;
    filter: blur(32px);
  }
  .club-ambient__spark {
    width: 5px;
    height: 5px;
    opacity: 0;
  }
  .club-ambient__pulse {
    width: 72vmin;
    height: 72vmin;
  }
}

@media (prefers-reduced-motion: reduce) {
  .club-ambient {
    display: none;
  }
}


/* Email contact refinements */
.form-email-link {
  width: 100%;
  min-height: 46px;
  margin-top: -.25rem;
}
.small-print a,
.footer-email {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}
.small-print a:hover,
.footer-email:hover {
  color: #fff;
}
.footer-email {
  font-size: .72rem;
  letter-spacing: .03em;
}

@media (max-width: 680px) {
  .footer-email {
    font-size: .78rem;
  }
}




/* Reparación final Producciones & edits: lista + reproductor alineados */
.playlist-section .music-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .94fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  align-items: stretch;
}
.playlist-section .music-player-layout > * {
  min-width: 0;
}
.playlist-section .track-library,
.playlist-section .track-player-card {
  height: clamp(560px, 62vh, 640px);
  max-height: 640px;
}
.playlist-section .track-library {
  overflow-y: auto;
  display: grid;
  align-content: start;
}
.playlist-section .track-player-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1rem, 1.4vw, 1.15rem);
}
.playlist-section .track-player-card .track-cover,
.playlist-section .track-cover {
  width: min(100%, 360px);
  height: clamp(168px, 17vw, 205px) !important;
  max-height: 205px !important;
  margin-inline: auto;
  align-self: center;
  flex-shrink: 0;
}
.playlist-section .track-cover img {
  width: min(48%, 170px) !important;
  max-height: 112px;
}
.playlist-section .track-player-info {
  padding: .72rem 0 .34rem;
}
.playlist-section .track-player-info h3 {
  max-width: 100%;
  font-size: clamp(1.16rem, 1.35vw, 1.55rem);
  line-height: 1.03;
  margin: .12rem 0 .26rem;
}
.playlist-section .track-player-info p {
  font-size: .9rem;
}
.playlist-section .track-timeline {
  margin: 0 0 .55rem;
}
.playlist-section .track-time-row {
  font-size: .67rem;
  margin-bottom: .34rem;
}
.playlist-section .track-progress {
  height: 6px;
}
.playlist-section .track-controls {
  gap: .55rem;
  margin-top: .05rem;
}
.playlist-section .track-controls button {
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1rem;
}
.playlist-section .track-controls .track-play {
  width: 3.18rem;
  height: 3.18rem;
  font-size: 1.05rem;
}
.playlist-section .track-note {
  margin-top: .62rem;
  font-size: .8rem;
  line-height: 1.38;
}
@media (max-width: 980px) {
  .playlist-section .music-player-layout {
    grid-template-columns: 1fr;
  }
  .playlist-section .track-library {
    height: auto;
    max-height: 560px;
  }
  .playlist-section .track-player-card {
    height: auto;
    max-height: none;
    padding: 1rem;
  }
  .playlist-section .track-player-card .track-cover,
  .playlist-section .track-cover {
    width: 100%;
    max-width: 100%;
    height: min(52vw, 210px) !important;
    max-height: 210px !important;
  }
  .playlist-section .track-cover img {
    width: min(52%, 190px) !important;
    max-height: 120px;
  }
  .playlist-section .track-player-info h3 {
    max-width: 100%;
    font-size: clamp(1.25rem, 5.4vw, 1.95rem);
  }
}
@media (max-width: 560px) {
  .playlist-section .track-item {
    grid-template-columns: 2.05rem minmax(0, 1fr);
  }
  .playlist-section .track-state {
    grid-column: 2;
    justify-self: start;
  }
}


/* Archivo de eventos: carrusel extendido de flyers */
.archive-carousel {
  width: min(760px, 100%);
}
.archive-stage {
  min-height: clamp(540px, 70vh, 760px);
}
.archive-slide {
  width: min(500px, 78vw);
}
.archive-slide:not(.is-active) {
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) scale(.86);
}
.archive-slide.is-prev,
.archive-slide.is-next {
  opacity: .18;
  z-index: 2;
  filter: blur(.5px) saturate(.82) brightness(.72);
}
.archive-slide.is-prev {
  transform: translateX(-18%) scale(.88) rotate(-3deg);
}
.archive-slide.is-next {
  transform: translateX(18%) scale(.88) rotate(3deg);
}
.archive-slide.is-hidden {
  opacity: 0;
  z-index: 0;
  transform: translateX(0) scale(.82);
}
.archive-slide.is-active {
  z-index: 4;
}
.archive-dots {
  flex-wrap: wrap;
  justify-content: center;
  max-width: min(520px, calc(100vw - 7.5rem));
}
.archive-dots button {
  flex: 0 0 auto;
}
@media (max-width: 680px) {
  .archive-stage {
    min-height: min(128vw, 600px);
  }
  .archive-slide {
    width: min(84vw, 410px);
  }
  .archive-slide.is-prev {
    transform: translateX(-10%) scale(.86) rotate(-2deg);
  }
  .archive-slide.is-next {
    transform: translateX(10%) scale(.86) rotate(2deg);
  }
  .archive-carousel-controls {
    gap: .65rem;
  }
  .archive-dots {
    gap: .42rem;
    padding: .52rem .62rem;
    max-width: calc(100vw - 6.8rem);
  }
  .archive-dots button {
    width: .5rem;
    height: .5rem;
  }
  .archive-dots button.is-active {
    width: 1.45rem;
  }
}
