/* =========================================================
   IVYSHA — Presskit oficial
   Estética: Cyberpunk + Psytrance
   Autor visual: LUNA · Implementación: ALEX
   ========================================================= */

/* -------- Reset mínimo -------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #1A1A1C;
  color: #F4E8EF;
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* -------- Variables -------- */
:root {
  --c-bg:        #1A1A1C;
  --c-bg-2:      #262628;
  --c-surface:   #2c2730;
  --c-text:      #F4E8EF;
  --c-text-mute: #A7A3A5;
  --c-line:      #4B4B4E;

  --p-1: #C8A4C9;
  --p-2: #AA78A8;
  --p-3: #946195;
  --p-4: #7C467F;
  --p-5: #5D2F63;

  --neon: #7FFF00;

  --max-w: 1240px;
  --section-y: clamp(80px, 10vw, 140px);

  --font-display: 'Space Grotesk', 'Rajdhani', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* -------- Tipografía base -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--c-text);
}

p { color: var(--c-text-mute); }

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

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-y) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 640px;
  color: var(--c-text-mute);
  margin-bottom: 56px;
}

/* =========================================================
   NAVEGACIÓN
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(26, 26, 28, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 70, 127, 0.25);
  transition: background .3s ease, border-color .3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.32em;
  color: var(--c-text);
  position: relative;
}
.nav__logo::after {
  content: "·";
  color: var(--neon);
  margin-left: 8px;
  text-shadow: 0 0 8px var(--neon);
}
.nav__links {
  display: none;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.nav__links a {
  color: var(--c-text-mute);
  transition: color .2s ease;
  position: relative;
}
.nav__links a:hover { color: var(--neon); }
.nav__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon);
  border: 1px solid var(--neon);
  padding: 9px 16px;
  border-radius: 999px;
  transition: all .25s ease;
}
.nav__cta:hover {
  background: var(--neon);
  color: var(--c-bg);
  box-shadow: 0 0 24px rgba(127, 255, 0, 0.45);
}
@media (min-width: 880px) { .nav__links { display: flex; } }

/* =========================================================
   EVENT DOCK (tarjeta flotante lateral izquierda, dismissible)
   ========================================================= */
.event-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 280px;
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(127, 255, 0, 0.32);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-mono);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(127, 255, 0, 0.06) inset,
    0 0 40px rgba(127, 255, 0, 0.10);
  padding: 16px 18px 18px;
  transform: translateX(140%);
  opacity: 0;
  transition:
    transform .55s cubic-bezier(.22, 1.2, .36, 1),
    opacity .45s ease;
  will-change: transform, opacity;
}
.event-dock[hidden] { display: none; }
.event-dock.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.event-dock.is-dismissed {
  transform: translateX(140%);
  opacity: 0;
  pointer-events: none;
}

/* Estado minimizado: solo header visible */
.event-dock.is-minimized .event-dock__body { display: none; }
.event-dock.is-minimized {
  width: auto;
  min-width: 200px;
  padding: 12px 14px;
  cursor: pointer;
}
.event-dock.is-minimized .event-dock__head { margin-bottom: 0; }
.event-dock__icon-exp { display: none; }
.event-dock.is-minimized .event-dock__icon-min { display: none; }
.event-dock.is-minimized .event-dock__icon-exp { display: block; }

/* Esquinas tipo HUD */
.event-dock__corner {
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--neon);
  border-style: solid;
  pointer-events: none;
}
.event-dock__corner--tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.event-dock__corner--tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.event-dock__corner--bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.event-dock__corner--br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.event-dock__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.event-dock__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon), 0 0 24px var(--neon);
  flex: 0 0 auto;
  animation: dock-pulse 1.6s ease-in-out infinite;
}
@keyframes dock-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}
.event-dock__label {
  flex: 1;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--neon);
  font-weight: 600;
}
.event-dock__close {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  flex: 0 0 auto;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.event-dock__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.event-dock__close:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

.event-dock__title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: .01em;
}

.event-dock__rows {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.event-dock__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 5px;
}
.event-dock__row:last-child { border-bottom: 0; }
.event-dock__row dt {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.event-dock__row dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.event-dock__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--neon);
  color: #0a0a0e;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.event-dock__cta:hover {
  box-shadow: 0 0 24px rgba(127, 255, 0, 0.65);
  transform: translateY(-1px);
}
.event-dock__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Móvil: dock más pequeño y plegado en la esquina inferior */
@media (max-width: 720px) {
  .event-dock {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px 14px 16px;
  }
  .event-dock__title { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .event-dock__pulse { animation: none; }
  .event-dock { transition: opacity .2s linear; transform: none; }
  .event-dock.is-dismissed { transform: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 96px;
  isolation: isolate;
  overflow: hidden;
  background: #1A1A1C;
}

/* Capa 0: foto del artista (full-bleed) */
.hero__photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(26, 26, 28, 0.55) 0%, rgba(26, 26, 28, 0.75) 60%, rgba(26, 26, 28, 0.92) 100%),
    linear-gradient(90deg, rgba(26, 26, 28, 0.5) 0%, rgba(26, 26, 28, 0.1) 45%, rgba(26, 26, 28, 0) 100%),
    url("img/artist/ivysha-portrait-hiedra.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: -4;
  opacity: 0.9;
}
@media (max-width: 720px) {
  .hero__photo {
    background-image:
      linear-gradient(180deg, rgba(26, 26, 28, 0.7) 0%, rgba(26, 26, 28, 0.85) 60%, rgba(26, 26, 28, 0.95) 100%),
      url("img/artist/ivysha-portrait-hiedra.jpg");
    background-position: center 20%;
  }
}

/* Capa 1: gradiente animado */
.hero__bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(148, 97, 149, 0.45) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 70%, rgba(93, 47, 99, 0.45) 0%, transparent 60%),
    radial-gradient(40% 40% at 60% 20%, rgba(170, 120, 168, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  animation: hero-drift 18s ease-in-out infinite alternate;
  z-index: -3;
  mix-blend-mode: overlay;
}
@keyframes hero-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%  { transform: translate3d(2%, 1%, 0) scale(1.05); }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.02); }
}

/* Capa 2: grid cyberpunk */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 60%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 60%, #000 30%, transparent 80%);
  z-index: -2;
}

/* Capa 3: scanline + ruido */
.hero__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(244, 232, 239, 0.018) 3px,
    rgba(244, 232, 239, 0.018) 4px
  );
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}

.hero__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--p-1);
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon);
}

.hero__title {
  font-size: clamp(72px, 16vw, 220px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(180deg, #F4E8EF 0%, #C8A4C9 60%, #946195 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.hero__title[data-text] { position: relative; }
.hero__title[data-text]::before,
.hero__title[data-text]::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
}
.hero__title[data-text]::before {
  background: linear-gradient(180deg, var(--neon), var(--neon));
  -webkit-background-clip: text;
  background-clip: text;
  mix-blend-mode: screen;
  transform: translate(2px, 0);
  opacity: 0.5;
  animation: glitch-x 4s steps(1) infinite;
}
.hero__title[data-text]::after {
  background: linear-gradient(180deg, var(--p-3), var(--p-3));
  -webkit-background-clip: text;
  background-clip: text;
  mix-blend-mode: screen;
  transform: translate(-2px, 0);
  opacity: 0.6;
  animation: glitch-y 5s steps(1) infinite;
}
@keyframes glitch-x {
  0%, 92%, 100% { transform: translate(0, 0); }
  93% { transform: translate(3px, -1px); }
  95% { transform: translate(-2px, 1px); }
  97% { transform: translate(2px, 0); }
}
@keyframes glitch-y {
  0%, 88%, 100% { transform: translate(0, 0); }
  89% { transform: translate(-3px, 1px); }
  91% { transform: translate(2px, -2px); }
  94% { transform: translate(-1px, 1px); }
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__subtitle span { color: var(--p-1); }
.hero__subtitle .dot { color: var(--neon); }

.hero__lead {
  margin-top: 28px;
  max-width: 520px;
  font-size: 17px;
  color: var(--c-text-mute);
}

.hero__cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Tarjeta lateral del hero */
.hero__card {
  position: relative;
  border: 1px solid rgba(200, 164, 201, 0.28);
  background:
    linear-gradient(180deg, rgba(38, 38, 40, 0.6), rgba(26, 26, 28, 0.85));
  backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 32px;
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border-top: 1px solid var(--neon);
  border-left: 1px solid var(--neon);
  box-shadow: 0 0 12px rgba(127, 255, 0, 0.4);
}
.hero__card::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--neon);
  border-right: 1px solid var(--neon);
  box-shadow: 0 0 12px rgba(127, 255, 0, 0.4);
}
.hero__card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--neon);
  text-transform: uppercase;
}
.hero__card-stat {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 18px;
  color: var(--c-text);
  line-height: 1;
}
.hero__card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed rgba(124, 70, 127, 0.4);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__card-row span:first-child { color: var(--c-text-mute); }
.hero__card-row span:last-child { color: var(--p-1); }

.hero__card-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--neon), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* =========================================================
   BOTONES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn--neon {
  background: transparent;
  color: var(--neon);
  border-color: var(--neon);
  box-shadow:
    inset 0 0 0 0 var(--neon),
    0 0 0 0 rgba(127, 255, 0, 0);
}
.btn--neon:hover {
  background: var(--neon);
  color: var(--c-bg);
  box-shadow:
    0 0 30px rgba(127, 255, 0, 0.55),
    0 0 60px rgba(127, 255, 0, 0.25);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: rgba(200, 164, 201, 0.4);
}
.btn--ghost:hover {
  border-color: var(--p-1);
  color: var(--p-1);
  box-shadow: 0 0 24px rgba(200, 164, 201, 0.18);
}

.btn--solid {
  background: linear-gradient(135deg, var(--p-4), var(--p-5));
  color: var(--c-text);
  border-color: rgba(200, 164, 201, 0.3);
}
.btn--solid:hover {
  background: linear-gradient(135deg, var(--p-3), var(--p-4));
  box-shadow: 0 0 32px rgba(148, 97, 149, 0.45);
  transform: translateY(-2px);
}

.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   SOBRE MÍ
   ========================================================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 880px) {
  .about__inner { grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
}

/* Placeholder de foto del artista */
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(200, 164, 201, 0.28);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(124, 70, 127, 0.18) 0,
      rgba(124, 70, 127, 0.18) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(135deg, var(--c-bg-2), #1f1c22);
  overflow: hidden;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 30% 20%, rgba(148, 97, 149, 0.35), transparent 70%);
  pointer-events: none;
}
.about__photo-tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(26, 26, 28, 0.7);
  padding: 6px 10px;
  border: 1px solid rgba(127, 255, 0, 0.4);
}
.about__photo-caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  display: flex;
  justify-content: space-between;
}
.about__photo-caption span:last-child { color: var(--p-1); }

/* Carrusel de fotos editoriales del artista */
.about__carousel {
  margin: 72px auto 0;
  max-width: 1100px;
  padding: 0 24px;
}
.about__carousel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #0c0c10;
  border: 1px solid rgba(255, 43, 214, 0.18);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 43, 214, 0.06) inset;
}
.about__carousel-frame::after {
  /* línea neón inferior */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p-1), transparent);
  opacity: .55;
  pointer-events: none;
  z-index: 3;
}
.about__carousel-track {
  position: absolute;
  inset: 0;
}
.about__cphoto {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s ease, transform .8s ease;
  pointer-events: none;
  overflow: hidden;
}
.about__cphoto[data-active="true"] {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
/* Fondo difuminado con la misma foto, llenando el frame */
.about__cphoto-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(28px) brightness(.45) saturate(1.1);
  transform: scale(1.15);
  z-index: 0;
}
.about__cphoto::before {
  /* Capa oscura para mejor contraste de la foto principal */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.35);
  z-index: 1;
  pointer-events: none;
}
.about__cphoto-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Botones prev/next */
.about__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 14, 0.78);
  border: 1px solid rgba(255, 43, 214, 0.4);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.about__carousel-btn:hover {
  background: rgba(255, 43, 214, 0.18);
  border-color: var(--p-1);
  box-shadow: 0 0 22px rgba(255, 43, 214, 0.45);
  transform: translateY(-50%) scale(1.05);
}
.about__carousel-btn:focus-visible {
  outline: 2px solid var(--p-1);
  outline-offset: 3px;
}
.about__carousel-btn--prev { left: 16px; }
.about__carousel-btn--next { right: 16px; }

/* Meta info debajo */
.about__carousel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.about__carousel-tag { color: var(--p-1); }
.about__carousel-counter { display: inline-flex; gap: 6px; align-items: baseline; }
.about__carousel-counter [data-carousel-current] {
  color: #fff;
  font-size: 14px;
}
.about__carousel-counter-sep { opacity: .4; }

/* Dots */
.about__carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}
.about__carousel-dot {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease, width .25s ease;
}
.about__carousel-dot:hover { background: rgba(255, 43, 214, 0.5); }
.about__carousel-dot[aria-selected="true"] {
  background: var(--p-1);
  width: 44px;
  box-shadow: 0 0 14px rgba(255, 43, 214, 0.6);
}
.about__carousel-dot:focus-visible {
  outline: 2px solid var(--p-1);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .about__carousel { margin-top: 56px; padding: 0 16px; }
  .about__carousel-frame { aspect-ratio: 4 / 5; }
  .about__carousel-btn { width: 40px; height: 40px; }
  .about__carousel-btn--prev { left: 10px; }
  .about__carousel-btn--next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .about__cphoto { transition: opacity .2s linear; transform: none; }
  .about__cphoto[data-active="true"] { transform: none; }
}

.about__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about__photo .about__photo-tag,
.about__photo .about__photo-caption { z-index: 2; }
.about__photo::after { z-index: 1; }

.about__bio {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text-mute);
  text-wrap: pretty;
}
.about__bio p + p { margin-top: 18px; }
.about__bio strong { color: var(--c-text); font-weight: 600; }

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(170, 120, 168, 0.4);
  color: var(--p-1);
  border-radius: 999px;
  transition: all .25s ease;
}
.tag:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 16px rgba(127, 255, 0, 0.25);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(124, 70, 127, 0.3);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-top: 8px;
}

/* =========================================================
   SETS EN VIVO
   ========================================================= */
.sets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 980px) {
  .sets__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.set-card {
  position: relative;
  border: 1px solid rgba(124, 70, 127, 0.4);
  background: var(--c-bg-2);
  overflow: hidden;
  transition: all .35s ease;
}
.set-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all .35s ease;
}
.set-card:hover {
  border-color: var(--p-3);
  box-shadow: 0 0 40px rgba(148, 97, 149, 0.25);
  transform: translateY(-4px);
}

.set-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.set-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Poster fallback (cuando el video está bloqueado para embed) */
.set-card__media--poster {
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
}
.set-card__media--poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  filter: saturate(0.85) contrast(1.05);
}
.set-card__media--poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(93, 47, 99, 0.0), rgba(26, 26, 28, 0.55) 80%),
    linear-gradient(180deg, rgba(26,26,28,0) 50%, rgba(26,26,28,0.6) 100%);
  pointer-events: none;
}
.set-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(26, 26, 28, 0.7);
  border: 1px solid var(--neon);
  color: var(--neon);
  display: grid;
  place-items: center;
  box-shadow: 0 0 30px rgba(127, 255, 0, 0.35);
  transition: all .3s ease;
  z-index: 2;
  pointer-events: none;
}
.set-card__play svg,
.set-card__badge { pointer-events: none; }
.set-card__media--poster img { pointer-events: none; }
.set-card__play svg { transform: translateX(2px); }
.set-card__badge {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
  background: rgba(26, 26, 28, 0.75);
  border: 1px solid rgba(127, 255, 0, 0.4);
  padding: 6px 10px;
  z-index: 2;
}
.set-card__media--poster:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.1);
}

/* Botón YouTube nativo (Set 01) — replica el look del embed real */
.set-card__yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
  width: 68px; height: 48px;
  transition: filter .25s ease, transform .25s ease;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
}
.set-card__yt-play svg {
  width: 68px;
  height: 48px;
}
.set-card__media--poster:hover .set-card__yt-play {
  transform: translate(-50%, -50%) scale(1.06);
}
.set-card__yt-watch {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.set-card__yt-watch svg { display: block; }
.set-card__media--poster:hover .set-card__play {
  background: var(--neon);
  color: var(--c-bg);
  box-shadow: 0 0 50px rgba(127, 255, 0, 0.65);
}

.set-card__body { padding: 28px 28px 32px; }

.set-card__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--neon);
  text-transform: uppercase;
}
.set-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.set-card__desc {
  margin-top: 12px;
  font-size: 15px;
  color: var(--c-text-mute);
}
.set-card__meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(124, 70, 127, 0.4);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.set-card__meta span:last-child { color: var(--p-1); }

/* =========================================================
   MÚSICA (SoundCloud)
   ========================================================= */
.music__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 980px) {
  .music__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.music__player {
  border: 1px solid rgba(124, 70, 127, 0.4);
  background: var(--c-bg-2);
  padding: 24px;
  position: relative;
}
.music__player iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.music__player-corner {
  position: absolute;
  top: -1px; right: -1px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--neon);
  color: var(--c-bg);
  padding: 6px 12px;
  font-weight: 600;
}

.music__copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.music__copy p {
  font-size: 16px;
  margin-bottom: 28px;
}

/* =========================================================
   EVENTOS (galería de flyers)
   ========================================================= */
.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 720px) { .events__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1100px) { .events__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.flyer {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(124, 70, 127, 0.5);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(124, 70, 127, 0.18) 0,
      rgba(124, 70, 127, 0.18) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(160deg, var(--p-5) 0%, var(--c-bg-2) 60%, #1f1a23 100%);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(124, 70, 127, 0);
  transition: all .35s cubic-bezier(.2, .9, .2, 1);
}
.flyer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 30%, rgba(200, 164, 201, 0.25), transparent 70%);
  pointer-events: none;
}
.flyer__num {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--p-1);
  background: rgba(26, 26, 28, 0.6);
  padding: 4px 8px;
  border: 1px solid rgba(200, 164, 201, 0.25);
}
.flyer__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 232, 239, 0.5);
  text-align: center;
  padding: 24px;
}

.flyer__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s ease, filter .35s ease;
  filter: saturate(0.92) contrast(1.02);
}
.flyer:hover .flyer__img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08);
}
.flyer__num { z-index: 2; }

.flyer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 28, 0.95) 0%, rgba(26, 26, 28, 0.7) 50%, rgba(26, 26, 28, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s ease;
  z-index: 2;
}
.flyer__overlay-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.flyer__overlay-date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-top: 4px;
  text-transform: uppercase;
}

.flyer:hover {
  border-color: var(--p-2);
  box-shadow:
    0 0 0 1px rgba(148, 97, 149, 0.5),
    0 0 30px rgba(148, 97, 149, 0.45),
    0 0 60px rgba(124, 70, 127, 0.25);
  transform: translateY(-4px);
}
.flyer:hover .flyer__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   BOOKING
   ========================================================= */
.booking {
  position: relative;
  overflow: hidden;
}
.booking__inner {
  position: relative;
  border: 1px solid rgba(124, 70, 127, 0.45);
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(148, 97, 149, 0.25), transparent 60%),
    radial-gradient(60% 80% at 20% 100%, rgba(93, 47, 99, 0.4), transparent 60%),
    var(--c-bg-2);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) {
  .booking__inner { grid-template-columns: 1.2fr 1fr; }
}
.booking__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  border-top: 2px solid var(--neon);
  border-left: 2px solid var(--neon);
  box-shadow: 0 0 18px rgba(127, 255, 0, 0.5);
}
.booking__inner::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--neon);
  border-right: 2px solid var(--neon);
  box-shadow: 0 0 18px rgba(127, 255, 0, 0.5);
}

.booking__title {
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.booking__title em {
  font-style: normal;
  color: var(--neon);
  text-shadow: 0 0 24px rgba(127, 255, 0, 0.4);
}
.booking__lead {
  font-size: 17px;
  max-width: 520px;
}
.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border: 1px solid rgba(244, 232, 239, 0.18);
  background: rgba(26, 26, 28, 0.5);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text);
  transition: all .25s ease;
}
.booking__btn:hover {
  border-color: var(--neon);
  background: rgba(127, 255, 0, 0.06);
  color: var(--neon);
  box-shadow: 0 0 24px rgba(127, 255, 0, 0.2);
  transform: translateX(4px);
}
.booking__btn--whatsapp {
  background: rgba(127, 255, 0, 0.08);
  border-color: var(--neon);
  color: var(--neon);
}
.booking__btn--whatsapp:hover {
  background: var(--neon);
  color: var(--c-bg);
  box-shadow: 0 0 32px rgba(127, 255, 0, 0.55);
}
.booking__btn-label { display: flex; align-items: center; gap: 14px; }
.booking__btn-icon {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.booking__btn-arrow { font-family: var(--font-mono); }

/* =========================================================
   REDES SOCIALES
   ========================================================= */
.social__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 720px) { .social__grid { grid-template-columns: repeat(4, 1fr); } }

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--c-bg-2);
  border: 1px solid rgba(124, 70, 127, 0.35);
  aspect-ratio: 1 / 1;
  transition: all .3s ease;
  overflow: hidden;
}
.social-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--neon), transparent 60%) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--p-2);
  box-shadow: 0 0 32px rgba(148, 97, 149, 0.3);
}
.social-card:hover::after { opacity: 1; }

.social-card__handle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.social-card__name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text);
  margin-top: auto;
  letter-spacing: -0.01em;
}
.social-card__icon {
  width: 28px;
  height: 28px;
  color: var(--p-1);
  transition: color .25s ease;
}
.social-card:hover .social-card__icon { color: var(--neon); }
.social-card__arrow {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--p-1);
  transition: transform .25s ease, color .25s ease;
}
.social-card:hover .social-card__arrow {
  color: var(--neon);
  transform: translate(4px, -4px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid rgba(124, 70, 127, 0.3);
  padding: 56px 0 40px;
  margin-top: 40px;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(93, 47, 99, 0.18), transparent 70%),
    var(--c-bg);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
}
.footer__brand span { color: var(--neon); }
.footer__tag {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__list a {
  font-size: 14px;
  color: var(--c-text-mute);
  transition: color .2s ease;
}
.footer__list a:hover { color: var(--neon); }

.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(75, 75, 78, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.footer__bottom span:last-child { color: var(--p-1); }

/* =========================================================
   ANIMACIÓN: fade-in al hacer scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .hero__title[data-text]::before, .hero__title[data-text]::after,
  .hero__scroll::after { animation: none; }
}

/* =========================================================
   UTILIDADES
   ========================================================= */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124, 70, 127, 0.5), transparent);
}

/* Mejor contraste en focus */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}
