/* YILDA - STYLES OPTIMIZADOS (PLATEADO + ROSA CONSISTENTE) */

/* Paleta centralizada */
:root {
  --bg: #09090b;
  --dark: #0b0c0f;
  --card: #121218;

  --ink: #f6f7fb;
  --ink-dim: #b9bdc9;

  --silver-lighter: #f3f6fa;
  --silver-light: #e6ebf2;
  --silver: #b9c0cc;
  --silver-dark: #8e98a5;

  --accent: #e6ebf2;
  --violet: #9aa3ad;
  --pink: #ff1493;
  --pink-soft: rgba(255, 20, 147, 0.15);

  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuente Koolegant para títulos principales */
@font-face {
  font-family: "Koolegant";
  src: url("../tip/Koolegant.woff2") format("woff2"),
    url("../tip/Koolegant.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: var(--dark);
  color: var(--silver-light);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  inset: 0 auto auto 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 235, 242, 0.1);
  transition: all 0.3s;
  will-change: transform;
  transform: translateZ(0);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 30px rgba(255, 20, 147, 0.2);
  border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

.nav__content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
}

/* Logo como imagen */
.nav__logo-img {
  height: clamp(35px, 5vw, 50px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav__logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(255, 20, 147, 0.6));
}

/* Ocultar texto si hay imagen cargada */
.nav__logo:has(.nav__logo-img[src]:not([src=""])) .nav__logo-text {
  display: none;
}

/* Fallback: Logo como texto (solo si no hay imagen) */
.nav__logo-text,
.nav__logo--text {
  font-family: "Koolegant", cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 2px;
  background: linear-gradient(
    135deg,
    var(--silver-light) 0%,
    var(--pink) 50%,
    var(--silver-lighter) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.nav__menu {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
  align-items: center;
}

.nav__menu a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--pink), var(--accent));
  transition: width 0.3s;
}

.nav__menu a:hover {
  color: var(--pink);
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__toggle span {
  width: 28px;
  height: 3px;
  background: var(--silver);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 968px) {
  .nav__toggle {
    display: flex;
  }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(350px, 85vw);
    height: 100vh;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 20, 147, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav__menu.active {
    right: 0;
  }
  .nav__menu a {
    font-size: 1.1rem;
  }
}

/* ============================================
   STACKED SECTIONS EFFECT
   ============================================ */
.hero,
.wow-intro,
.music,
.video-section,
.about,
.contact {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EXCEPCIÓN: Gallery NO es sticky y permite scroll normal */
.gallery {
  position: relative !important;
  overflow: visible !important;
  min-height: auto !important;
  height: auto !important;
  display: block !important;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.hero {
  z-index: 1;
}
.wow-intro {
  z-index: 2;
}
.music {
  z-index: 3;
}
.video-section {
  z-index: 4;
}
.gallery {
  z-index: 5;
  position: relative !important;
}
.about {
  z-index: 6;
}
.contact {
  z-index: 7;
}
.footer {
  position: relative;
  z-index: 8;
  background: var(--dark);
}

.wow-intro,
.music,
.video-section,
.about,
.contact {
  border-radius: 30px 30px 0 0;
}

/* Gallery sin border-radius arriba para transición suave */
.gallery {
  border-radius: 0;
}

.wow-intro::before,
.music::before,
.video-section::before,
.about::before,
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  z-index: 10;
  pointer-events: none;
}
/* ============================================
   HERO CON IMAGEN DE FONDO
   ============================================ */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

@media (max-width: 968px) {
  .hero {
    min-height: 100vh; /* Cambiar a más alto si necesitas */
    height: 100vh;
    padding-top: 80px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh; /* EDITA AQUÍ - aumenta si quieres más alto */
    height: 100vh; /* EDITA AQUÍ - aumenta si quieres más alto */
    padding-top: 70px;
  }

  .hero__content {
    padding: 2rem 1rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/optimized/2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.85) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 20, 147, 0.2) 0%,
    transparent 70%
  );
}

.hero__gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.3), transparent 70%);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero__title {
  font-family: "Koolegant", cursive;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 400;
  letter-spacing: clamp(4px, 1.5vw, 12px);
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Logo grande en hero */
.hero__logo-img {
  max-width: min(80vw, 600px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 20, 147, 0.6))
    drop-shadow(0 20px 60px rgba(255, 20, 147, 0.4));
  animation: floatLogo 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

/* Ocultar texto si hay logo de imagen */
.hero__title:has(.hero__logo-img[src]:not([src=""])) .hero__logo-text {
  display: none;
}

/* Fallback: mantener el texto con efecto glitch */
.hero__logo-text {
  display: block;
}

.glitch {
  font-family: "Koolegant", cursive;
  background: linear-gradient(
    135deg,
    var(--silver-lighter) 0%,
    var(--pink) 30%,
    var(--silver) 55%,
    var(--pink) 75%,
    var(--silver-lighter) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease-in-out infinite;
  text-shadow: 0 0 80px rgba(255, 20, 147, 0.5);
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--pink);
  animation: glitch 3s infinite;
}

.glitch::after {
  left: -2px;
  text-shadow: 2px 0 var(--silver);
  animation: glitch 2s infinite reverse;
}

@keyframes glitch {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
  }
  20% {
    clip-path: inset(10% 0 40% 0);
  }
  40% {
    clip-path: inset(40% 0 10% 0);
  }
  60% {
    clip-path: inset(20% 0 30% 0);
  }
  80% {
    clip-path: inset(30% 0 20% 0);
  }
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.5rem);
  color: var(--silver-light);
  letter-spacing: clamp(4px, 1vw, 8px);
  text-transform: uppercase;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--silver);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 640px) {
  .scroll-indicator {
    bottom: 2rem;
    font-size: 0.7rem;
  }

  .scroll-indicator__line {
    height: 40px;
  }
}

.scroll-indicator__line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--pink) 0%, transparent 100%);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0.3;
  }
}

/* ============================================
   WOW INTRO 2025
   ============================================ */
.wow-intro {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 100%);
}

.wow-intro__track {
  width: 100%;
  padding: clamp(2rem, 4vh, 4rem) 0;
}

.wow-intro__header {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 6vw, 4rem);
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.wow-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 3px;
  background: var(--pink-soft);
  border: 2px solid var(--pink);
  color: var(--pink);
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.wow-heading {
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wow-line {
  font-family: "Koolegant", cursive;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.05em 0;
  overflow: visible;
}

.wow-desc {
  margin: 0;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wow-carousel {
  display: flex;
  gap: clamp(2rem, 3vw, 3rem);
  padding: 0 clamp(2rem, 6vw, 4rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.wow-carousel::-webkit-scrollbar {
  display: none;
}

.wow-card {
  flex: 0 0 clamp(300px, 40vw, 450px);
  scroll-snap-align: center;
  perspective: 1000px;
}

.wow-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.wow-card:hover .wow-card__inner {
  transform: rotateY(5deg) rotateX(-5deg) scale(1.05);
}

.wow-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(255, 20, 147, 0.4);
}

/* REEMPLAZAR en la sección .wow-card__media */
.wow-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 20, 147, 0.3) 0%,
    rgba(255, 20, 147, 0.6) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  mix-blend-mode: multiply;
}

.wow-card:hover .wow-card__media::before {
  opacity: 1;
}

.wow-card__media img,
.wow-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
  filter: grayscale(0.3) brightness(0.9);
}

.wow-card:hover .wow-card__media img,
.wow-card:hover .wow-card__media video {
  transform: scale(1.15);
  filter: grayscale(0) brightness(1.1) saturate(1.5) contrast(1.2);
}

.wow-card__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.6), transparent 70%);
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}

.wow-card:hover .wow-card__glow {
  opacity: 1;
}

.wow-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.wow-card:hover .wow-card__info {
  transform: translateY(0);
  opacity: 1;
}

.wow-card__num {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
}

.wow-card__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wow-card--cta .wow-card__inner {
  background: linear-gradient(
    135deg,
    var(--pink-soft),
    rgba(255, 20, 147, 0.05)
  );
  border: 2px solid var(--pink);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(255, 20, 147, 0.4);
}

.wow-card--cta:hover .wow-card__inner {
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.4),
    rgba(255, 20, 147, 0.1)
  );
  box-shadow: 0 0 100px rgba(255, 20, 147, 0.8);
}

.wow-card__cta-content {
  text-align: center;
  padding: 2rem;
}

.wow-card__cta-content h3 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.wow-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
  background: var(--pink);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.5);
}

.wow-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 60px rgba(255, 20, 147, 0.8);
}

/* ============================================
   MUSIC SECTION
   ============================================ */
.music {
  background: radial-gradient(
    ellipse at top,
    rgba(255, 20, 147, 0.08) 0%,
    var(--dark) 70%
  );
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: visible;
}

/* Alineación alternada */
.music .section-title {
  align-items: flex-end;
  text-align: right;
}

.gallery .section-title {
  align-items: flex-start;
  text-align: left;
}

.about .section-title {
  align-items: flex-end;
  text-align: right;
}

.contact .section-title {
  align-items: flex-start;
  text-align: left;
}

.section-line {
  font-family: "Koolegant", cursive;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(135deg, #ffffff 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.05em 0;
  overflow: visible;
}

/* Responsive: centrar en móvil */
@media (max-width: 968px) {
  .music .section-title,
  .gallery .section-title,
  .about .section-title,
  .contact .section-title {
    align-items: center;
    text-align: center;
  }
}

.shine {
  background: linear-gradient(
    135deg,
    var(--silver-lighter) 0%,
    var(--pink) 25%,
    var(--accent) 50%,
    var(--pink) 75%,
    var(--silver-lighter) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300% 0;
  }
}

.latest-release {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto clamp(3rem, 8vw, 6rem);
  background: linear-gradient(
    135deg,
    rgba(230, 235, 242, 0.05),
    var(--pink-soft)
  );
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 20, 147, 0.3);
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
}

.latest-release__artwork {
  width: clamp(200px, 30vw, 300px);
  aspect-ratio: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.4);
  flex-shrink: 0;
}

.latest-release__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.latest-release__artwork:hover img {
  transform: scale(1.1);
}

.latest-release__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--pink);
  opacity: 0;
  transition: opacity 0.3s;
}

.latest-release__artwork:hover .latest-release__play {
  opacity: 1;
}

.latest-release__info {
  flex: 1;
  min-width: 0;
}

.latest-release__label {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.7rem;
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

.latest-release__title {
  font-family: "Koolegant", cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest-release__artist {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--silver);
}

@media (max-width: 768px) {
  .latest-release {
    flex-direction: column;
    text-align: center;
  }
  .latest-release__artwork {
    width: 100%;
    max-width: 300px;
  }
}
.platforms {
  text-align: center;
  overflow: hidden;
}

.platforms__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--silver-light);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.platforms__carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.platforms__track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.platforms__track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  min-width: 180px;
  background: linear-gradient(
    135deg,
    rgba(230, 235, 242, 0.03),
    rgba(255, 20, 147, 0.08)
  );
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 20px;
  text-decoration: none;
  color: var(--silver-light);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.1);
  cursor: pointer;
  flex-shrink: 0;
}

.platform-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink);
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(255, 20, 147, 0.15)
  );
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.platform-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.platform-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 20, 147, 0.6));
}

.platform-card span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.platform-card:hover span {
  color: var(--pink);
}

/* Responsive */
@media (max-width: 968px) {
  .platforms__track {
    gap: 1.5rem;
  }

  .platform-card {
    min-width: 150px;
    padding: 1.2rem 1.5rem;
  }

  .platform-card img {
    width: 45px;
    height: 45px;
  }

  .platform-card span {
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .platforms__track {
    gap: 1rem;
  }

  .platform-card {
    min-width: 130px;
    padding: 1rem 1.2rem;
  }

  .platform-card img {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  padding: 0;
  background: #000;
  height: 100vh;
  overflow: hidden;
}

.video-section .video-player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  outline: none;
}

.video-audio-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(
      60vmax 60vmax at 50% 50%,
      rgba(255, 20, 147, 0.25),
      rgba(0, 0, 0, 0.7) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
  z-index: 10;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.video-audio-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.btn-unmute {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
}

.btn-unmute:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.6);
}

.btn-unmute svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .video-section {
    height: auto;
    min-height: 100vh;
  }
  .video-section .video-player {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    aspect-ratio: 9/16;
  }
}

/* =========================================================
   GALERÍA 3D: Paralaje por tarjeta + tinte rosa + tilt
   Compatible con .xg__card/.xg__in y con .bento-card/.bento-card__inner
   ========================================================= */

/* Contenedor de la sección (no sticky, scroll natural) */
.gallery {
  position: relative !important;
  overflow: visible !important;
  min-height: auto !important;
  height: auto !important;
  display: block !important;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

/* Grid flexible: usa el que ya tengas. De no existir, activamos uno básico */
.gallery .xg__grid,
.gallery .gallery__bento,
.gallery .gallery__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  position: relative;
  z-index: 1;
}

/* Selección unificada de tarjetas e inner */
.gallery .xg__card,
.gallery .bento-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  perspective: 1100px;
  transform-style: preserve-3d;
  background: #000;
  box-shadow: 0 28px 70px rgba(255, 20, 147, 0.12);
}

.gallery .xg__in,
.gallery .bento-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 20, 147, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 16px 36px rgba(255, 20, 147, 0.16);
  /* variables para el tilt/parallax */
  --rx: 0; /* rotación X normalizada -1..1 */
  --ry: 0; /* rotación Y normalizada -1..1 */
  --tx: 0; /* parallax X px */
  --ty: 0; /* parallax Y px */
}

/* Imagen de la tarjeta */
.gallery .xg__in img,
.gallery .bento-card__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(calc(var(--tx) * -1px), calc(var(--ty) * -1px), 0)
    scale(1.08);
  filter: grayscale(0.35) brightness(0.96) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.35s ease;
  will-change: transform, filter;
}

/* Tinte ROSA permanente (estética wow-card) */
.gallery .xg__in::after,
.gallery .bento-card__inner::after {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(
    55% 55% at 50% 60%,
    rgba(255, 20, 147, 0.42) 0%,
    rgba(255, 20, 147, 0.16) 55%,
    transparent 70%
  );
  mix-blend-mode: color;
  filter: blur(16px);
  opacity: 0.9;
  pointer-events: none;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.6s ease;
  z-index: 2;
}

/* “Esquinas vivas” que se desplazan con el mouse */
.gallery .xg__in::before,
.gallery .bento-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
      16px 16px at calc(12px + var(--ry) * 6px) calc(12px - var(--rx) * 6px),
      rgba(255, 20, 147, 0.65),
      transparent 70%
    ),
    radial-gradient(
      16px 16px at calc(100% - 12px + var(--ry) * 6px)
        calc(12px - var(--rx) * 6px),
      rgba(255, 20, 147, 0.65),
      transparent 70%
    ),
    radial-gradient(
      16px 16px at calc(12px + var(--ry) * 6px)
        calc(100% - 12px - var(--rx) * 6px),
      rgba(255, 20, 147, 0.65),
      transparent 70%
    ),
    radial-gradient(
      16px 16px at calc(100% - 12px + var(--ry) * 6px)
        calc(100% - 12px - var(--rx) * 6px),
      rgba(255, 20, 147, 0.65),
      transparent 70%
    );
  filter: blur(2px) drop-shadow(0 6px 24px rgba(255, 20, 147, 0.25));
}

/* Hover/focus: más color y zoom contenido */
.gallery .xg__card:hover .xg__in img,
.gallery .bento-card:hover .bento-card__inner img,
.gallery .xg__card:focus-visible .xg__in img,
.gallery .bento-card:focus-visible .bento-card__inner img {
  filter: grayscale(0.1) brightness(1.06) saturate(1.18);
  transform: translate3d(calc(var(--tx) * -1px), calc(var(--ty) * -1px), 0)
    scale(1.14);
}

.gallery .xg__card:hover .xg__in,
.gallery .bento-card:hover .bento-card__inner {
  transform: perspective(1100px) rotateX(calc(var(--rx) * -10deg))
    rotateY(calc(var(--ry) * 10deg)) scale3d(1.02, 1.02, 1.02);
}

/* Meta/overlay inferior: opcional si ya lo tienes */
.gallery .xg__meta,
.gallery .bento-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 80%);
  color: #fff;
  z-index: 4;
}

/* Mobile: rosa presente y sin tilt agresivo */
@media (max-width: 968px) {
  .gallery .xg__in,
  .gallery .bento-card__inner {
    transform: none !important;
  }
  .gallery .xg__in::after,
  .gallery .bento-card__inner::after {
    opacity: 1;
    filter: blur(14px);
  }
}

/* Reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  .gallery .xg__in,
  .gallery .bento-card__inner,
  .gallery .xg__in::after,
  .gallery .bento-card__inner::after,
  .gallery .xg__in img,
  .gallery .bento-card__inner img {
    transition: none !important;
  }
}

/* Lightbox mínimo por si tu HTML ya lo tiene */
.lightbox,
.xg__lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  z-index: 9999;
  background: radial-gradient(
    80vmax 80vmax at 50% 50%,
    rgba(255, 20, 147, 0.17),
    rgba(0, 0, 0, 0.86) 50%
  );
  backdrop-filter: blur(6px);
}
.lightbox.is-open,
.xg__lightbox.is-open {
  display: grid;
}
.lightbox__img,
.xg__lbimg {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 20, 147, 0.35);
  box-shadow: 0 30px 100px rgba(255, 20, 147, 0.3);
}
.lightbox__close,
.xg__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--pink, #ff1493);
  color: #fff;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(255, 20, 147, 0.45);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: radial-gradient(
    ellipse at bottom,
    rgba(255, 20, 147, 0.08) 0%,
    var(--dark) 70%
  );
  display: block;
}

.about__container {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  max-height: 85vh;
  overflow-y: auto;
}

.about__container::-webkit-scrollbar {
  width: 8px;
}

.about__container::-webkit-scrollbar-track {
  background: rgba(230, 235, 242, 0.1);
  border-radius: 10px;
}

.about__container::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

.about__image {
  width: 40%;
  position: relative;
  flex-shrink: 0;
}

.about__image::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 20, 147, 0.1) 30%,
    rgba(255, 20, 147, 0.2) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  filter: blur(20px);
  border-radius: 0 0 20px 20px;
}

.about__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
  border: 2px solid rgba(255, 20, 147, 0.3);
  position: relative;
  z-index: 2;
}

.about__content {
  flex: 1;
  min-width: 0;
}

.about__text p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 2rem;
}

.about__stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat__number {
  display: block;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--silver-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 968px) {
  .about__container {
    flex-direction: column;
    max-height: none;
  }
  .about__image {
    width: 100%;
    max-width: 400px;
  }
  .about__image::after {
    height: 80px;
    filter: blur(15px);
  }
  .about__stats {
    justify-content: center;
  }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 20, 147, 0.1) 0%,
    var(--dark) 70%
  );
  display: block;
}

.contact .container {
  max-height: 85vh;
  overflow-y: auto;
}

.contact .container::-webkit-scrollbar {
  width: 8px;
}

.contact .container::-webkit-scrollbar-track {
  background: rgba(230, 235, 242, 0.1);
  border-radius: 10px;
}

.contact .container::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact__info-box {
  background: linear-gradient(
    135deg,
    rgba(230, 235, 242, 0.08),
    var(--pink-soft)
  );
  padding: 1.75rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 20, 147, 0.3);
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
  width: 100%;
}

.contact__info-box h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.contact__social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  color: var(--silver-light);
  background: rgba(230, 235, 242, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.2);
  transition: all 0.3s;
}

.social-link span {
  display: none;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--silver);
  transition: fill 0.3s;
  flex-shrink: 0;
}

.social-link:hover {
  border-color: var(--pink);
  background: var(--pink-soft);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
  transform: translateY(-3px);
}

.social-link:hover svg {
  fill: var(--pink);
}

.contact__email-box {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 20, 147, 0.2);
  text-align: center;
}

.contact__label {
  font-size: 0.75rem;
  color: var(--silver-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
}

.contact__email {
  font-size: 1rem;
  font-weight: 700;
  word-break: break-word;
  text-decoration: none;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTACT FORM */
.contact__form {
  background: rgba(230, 235, 242, 0.03);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.contact__form h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(230, 235, 242, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 10px;
  color: var(--silver-light);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255, 20, 147, 0.08);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--silver-dark);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.3s;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.75rem;
  background: var(--dark);
  padding: 0 0.5rem;
  color: var(--pink);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  min-width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--pink);
}

.form-checkbox label {
  position: static;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  user-select: none;
}

.form-checkbox label a {
  color: var(--pink);
  text-decoration: underline;
  transition: color 0.3s;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.form-checkbox label a:hover {
  color: #ff69b4;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--pink), #ff69b4);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ff69b4, var(--pink));
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn-submit:hover svg {
  transform: translateX(5px);
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-status--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  display: block;
}

.form-status--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: block;
}

.form-status--loading {
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.3);
  color: var(--pink);
  display: block;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  display: block;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: block;
}

@media (max-width: 968px) {
  .contact .container {
    max-height: none;
  }
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 20, 147, 0.2);
  background: linear-gradient(180deg, transparent, rgba(255, 20, 147, 0.05));
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Koolegant", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer__logo-text {
  background: linear-gradient(135deg, #ffffff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__logo:not(:has(.footer__logo-img)) .footer__logo-text {
  display: inline;
}

.footer__logo:has(.footer__logo-img) .footer__logo-text {
  display: none;
}

/* ============================================
   MODAL TÉRMINOS Y CONDICIONES
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 20px;
  max-width: 700px;
  max-height: 80vh;
  width: 100%;
  margin: 2rem auto;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
  animation: slideUp 0.4s ease-out;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.3);
  color: var(--pink);
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  background: var(--pink);
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  color: #e6ebf2;
}

.modal-body h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(135deg, #ffffff 0%, #ff1493 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.modal-body h2 {
  font-size: 1.2rem;
  color: #ff1493;
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(255, 20, 147, 0.3);
}

.modal-body p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.modal-body ul,
.modal-body ol {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-body li {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.modal-body strong {
  color: #ff1493;
}

.modal-highlight {
  background: rgba(255, 20, 147, 0.1);
  padding: 1rem;
  border-left: 4px solid #ff1493;
  margin: 1rem 0;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* Estilos del scrollbar para el modal */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #ff69b4;
}

@media (max-width: 768px) {
  .modal-overlay.active {
    padding: 0.5rem;
  }

  .modal-content {
    margin: 0.5rem auto;
    padding: 1.5rem;
    max-height: 90vh;
    border-radius: 15px;
  }

  .modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .modal-body h1 {
    font-size: 1.5rem;
  }

  .modal-body h2 {
    font-size: 1.1rem;
  }

  .modal-body ul,
  .modal-body ol {
    margin-left: 1rem;
  }
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--pink);
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 20, 147, 0.1);
}

.footer__bottom p {
  color: var(--silver-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer__made {
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - DESACTIVAR STICKY EN MÓVILES
   ============================================ */
@media (max-width: 968px) {
  .hero,
  .wow-intro,
  .music,
  .video-section,
  .gallery,
  .about,
  .contact {
    position: relative;
    height: auto;
    min-height: auto;
  }

  .gallery__grid,
  .about__container,
  .contact .container {
    max-height: none;
    overflow-y: visible;
  }

  .wow-intro,
  .music,
  .video-section,
  .about,
  .contact {
    border-radius: 0;
  }

  .wow-intro::before,
  .music::before,
  .video-section::before,
  .about::before,
  .contact::before {
    display: none;
  }

  .wow-card {
    flex: 0 0 85vw;
  }

  .wow-card__info {
    transform: translateY(0);
    opacity: 1;
  }

  .hero__title {
    font-size: clamp(3rem, 12vw, 8rem);
  }

  .scroll-indicator {
    bottom: 2rem;
  }
}

/* ============================================
   EFECTO FOTOS B/N GRANULADAS + HOVER ROSA
   ============================================ */

/* Efecto de grano/ruido para todas las imágenes */
.gallery__item::after,
.latest-release__artwork::after,
.about__image::after,
.wow-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

/* Imágenes en blanco y negro por defecto */
.gallery__item img,
.latest-release__artwork img,
.about__image img,
.wow-card__media img {
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* Videos en blanco y negro */
.wow-card__media video {
  filter: grayscale(1) contrast(1.1) brightness(0.9);
  transition: filter 0.5s ease, transform 0.8s ease;
}

/* Capa rosada al hacer hover */
.gallery__item::before,
.latest-release__artwork::before,
.about__image::before,
.wow-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.6) 0%,
    rgba(255, 20, 147, 0.4) 50%,
    rgba(255, 105, 180, 0.5) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Activar capa rosada y color al hover */
.gallery__item:hover::before,
.latest-release__artwork:hover::before,
.about__image:hover::before,
.wow-card:hover .wow-card__media::before {
  opacity: 1;
}

/* Quitar blanco y negro al hover */
.gallery__item:hover img,
.latest-release__artwork:hover img,
.about__image:hover img,
.wow-card:hover .wow-card__media img,
.wow-card:hover .wow-card__media video {
  filter: grayscale(0) contrast(1.15) brightness(1.05) saturate(1.3);
}

/* Reducir el grano al hacer hover */
.gallery__item:hover::after,
.latest-release__artwork:hover::after,
.about__image:hover::after,
.wow-card:hover .wow-card__media::after {
  opacity: 0.15;
}

/* Asegurar z-index correcto */
.gallery__item img,
.latest-release__artwork img,
.about__image img,
.wow-card__media img,
.wow-card__media video {
  position: relative;
  z-index: 0;
}

/* Brillo sutil alrededor de las imágenes al hover */
.gallery__item:hover,
.latest-release__artwork:hover,
.about__image:hover,
.wow-card:hover .wow-card__media {
  box-shadow: 0 20px 60px rgba(255, 20, 147, 0.6),
    0 0 40px rgba(255, 20, 147, 0.4);
}

/* Mantener el glow del wow-card pero con rosa */
.wow-card:hover .wow-card__glow {
  opacity: 1;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.7), transparent 70%);
}

/* DEBUG - Asegurar visibilidad de imágenes */
.bento-card picture,
.bento-card img {
  display: block !important;
  visibility: visible !important;
}

.bento-card__inner {
  background-color: #000 !important;
}

/* Asegurar que las imágenes carguen */
.bento-card img[loading="lazy"] {
  opacity: 1;
}

@media (max-width: 768px) {
  .bento-card__overlay {
    opacity: 0.9;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .section-title {
    letter-spacing: 2px;
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .hero__title {
    font-size: clamp(3rem, 15vw, 5rem) !important;
  }

  .hero__subtitle {
    font-size: clamp(0.8rem, 3vw, 1rem) !important;
  }

  .wow-line {
    font-size: clamp(3rem, 12vw, 6rem) !important;
  }

  .latest-release {
    padding: clamp(1.5rem, 3vw, 2rem);
  }

  .platforms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .platform-card {
    padding: 1.2rem 1rem;
  }

  .platform-card__icon {
    width: 50px;
    height: 50px;
  }

  .platform-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .video-section {
    min-height: 70vh;
  }

  .btn-unmute {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .about__text p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
  }

  .stat__number {
    font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
  }

  .contact__info-box h3,
  .contact__form h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .social-link {
    padding: 0.8rem 1.2rem;
  }

  .contact__email {
    font-size: clamp(1rem, 3vw, 1.4rem) !important;
  }
}

/* Mejoras para tablets */
@media (min-width: 641px) and (max-width: 968px) {
  .gallery__bento {
    grid-template-rows: repeat(5, 260px);
  }

  .bento-card:hover {
    transform: translateY(-8px);
  }

  .platforms__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .latest-release {
    max-width: 800px;
  }
}

/* Prevenir comportamientos extraños en landscape móvil */
@media (max-width: 968px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .video-section {
    height: auto;
    min-height: 100vh;
  }

  .nav__menu {
    padding-top: 4rem;
  }
}

/* Mejoras para hover en dispositivos touch */
@media (hover: none) {
  .bento-card__overlay {
    opacity: 0.9 !important;
  }

  .bento-card__info {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  .wow-card__info {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .gallery__item img,
  .latest-release__artwork img,
  .about__image img,
  .wow-card__media img {
    filter: grayscale(0) contrast(1.05) brightness(1) saturate(1.1);
  }
}

/* =========================
   GALERÍA MODERNA 2025
   ========================= */
.gallery {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: radial-gradient(
      ellipse at 30% 20%,
      rgba(255, 20, 147, 0.08),
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(255, 20, 147, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, var(--dark) 0%, #0d0d0f 100%);
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink) 50%, transparent);
}

.gallery__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.gallery__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.gallery__tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 50px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
  animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
  }
}

.gallery__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--silver);
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Grid PC: 2 filas de 3 imágenes cuadradas */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  row-gap: 5rem; /* ESPACIO GRANDE entre las 2 filas */
  width: 100%;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  aspect-ratio: 1/1; /* Cuadradas perfectas */
  perspective: 1200px;
  width: 100%;
  height: 100%;
}

/* Asegurar que las imágenes estén en las filas correctas */
.gallery__item:nth-child(1),
.gallery__item:nth-child(2),
.gallery__item:nth-child(3) {
  grid-row: 1;
}

.gallery__item:nth-child(4),
.gallery__item:nth-child(5),
.gallery__item:nth-child(6) {
  grid-row: 2;
}

/* RESPONSIVE: Móvil - imagen por imagen ancho completo */
@media (max-width: 968px) {
  .gallery__container {
    padding: 0 !important;
  }

  .gallery__grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 0 !important;
    row-gap: 0 !important;
  }

  .gallery__item {
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    margin: 0 !important;
    grid-row: auto !important;
    aspect-ratio: 1/1;
  }

  .gallery__card {
    border-radius: 0 !important;
  }

  .gallery__header {
    padding: 0 1rem !important;
    margin-bottom: 2rem;
  }
}

/* Cards cuadradas */
.gallery__card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.4) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}

.gallery__item:hover .gallery__card::before {
  opacity: 1;
}

/* Imágenes en blanco y negro, color al hover */
.gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
  filter: grayscale(1) brightness(0.7) contrast(1.2);
  transform: scale(1);
}

.gallery__item:hover .gallery__card img {
  filter: grayscale(0) brightness(1) saturate(1.3) contrast(1.1);
  transform: scale(1.05);
}

/* Efecto 3D parallax en hover */
.gallery__item:hover .gallery__card {
  transform: translateZ(20px);
}

/* Overlay con glassmorphism */
.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 3;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__category {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 20, 147, 0.2);
  border: 1px solid var(--pink);
  border-radius: 50px;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  width: fit-content;
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

.gallery__name {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery__item:hover .gallery__name {
  transform: translateY(0);
}

/* Lightbox moderno */
.gallery__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.gallery__lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery__lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery__lightbox.active .gallery__lightbox-content {
  transform: scale(1) translateY(0);
}

.gallery__lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 20px;
  box-shadow: 0 50px 100px rgba(255, 20, 147, 0.3),
    0 0 100px rgba(255, 20, 147, 0.2), 0 0 0 1px rgba(255, 20, 147, 0.3);
  object-fit: contain;
}

.gallery__lightbox-info {
  text-align: center;
}

.gallery__lightbox-category {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 20, 147, 0.15);
  border: 1px solid var(--pink);
  border-radius: 50px;
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.gallery__lightbox-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.gallery__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--pink);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.5);
  z-index: 10001;
}

.gallery__close:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.7);
}

.gallery__close svg {
  width: 24px;
  height: 24px;
}

/* Animación de entrada */
.gallery__item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.gallery__item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery__item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery__item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery__item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery__item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery__item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Touch devices */
@media (hover: none) {
  .gallery__overlay {
    opacity: 0.9;
  }

  .gallery__name {
    transform: translateY(0);
  }

  .gallery__card img {
    filter: grayscale(0.5) brightness(0.85) contrast(1.1);
  }
}

/* Reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  .gallery__item,
  .gallery__card,
  .gallery__card img,
  .gallery__overlay,
  .gallery__lightbox-content {
    animation: none !important;
    transition: none !important;
  }
}

.btn-unmute {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 100;
}

.btn-unmute:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.6);
}

.btn-unmute svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-unmute.muted .audio-on {
  display: none;
}

.btn-unmute.muted .audio-off {
  display: block !important;
}

.btn-unmute:not(.muted) .audio-off {
  display: none !important;
}

.btn-unmute:not(.muted) .audio-on {
  display: block;
}
