/* ============================================================
   PLAIN VANILLA — styles.css
   Shared styles for index.html and show.html
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #0a0a0a;
  --surface:    #111111;
  --surface-2:  #181818;
  --text:       #ffffff;
  --muted:      #888888;
  --accent:     #f0ede8;
  --brand-orange: #e27743;
  --brand-cream:  #ebdcca;
  --nav-height: 70px;
  --section-v:  5rem;
  --radius:     2px;
  --ease:       0.3s ease;
  --max-w:      1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home h4 { color: #e27743; }

.page-home .show-title { color: #ebdcca; }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: var(--section-v) 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
}

/* === SECTION LABELS === */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 3.5rem;
  font-size: 0.95rem;
}

.section-body {
  max-width: 680px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* === FADE-IN ON SCROLL === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: var(--bg);
  transition: border-color var(--ease);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-logo img {
  height: 51px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity var(--ease);
}
.nav-logo:hover img { opacity: 0.7; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--text); }

.nav-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-badge-notes {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
}

.nav-badge-note {
  width: 12px;
  height: 12px;
  color: #e27743;
  opacity: 0;
  animation: nav-badge-sprout 1.5s ease-in-out infinite;
}

@keyframes nav-badge-sprout {
  0%   { opacity: 0; transform: translateY(4px); }
  25%  { opacity: 1; transform: translateY(0); }
  55%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(-3px); }
  100% { opacity: 0; transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .nav-badge-note { animation: none; opacity: 1; }
}



/* Botón de cuenta */
.nav-account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--ease);
}
.nav-account-btn:hover { opacity: 0.7; }

/* El SVG estático es solo un respaldo mientras carga React; una vez
   que #nav-account-status tiene contenido, se oculta para no duplicar. */
#nav-account-status:not(:empty) ~ .nav-account-fallback-icon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    z-index: 999;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform var(--ease);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }
}

/* ============================================================
   HERO — CAROUSEL
   ============================================================ */
#hero {
  position: relative;
  height: calc(100svh - var(--nav-height));
  min-height: calc(560px - var(--nav-height));
  overflow: hidden;
  padding: 0;
  cursor: grab;
}
#hero:active { cursor: grabbing; }

/* Slides */
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide 2: show hero dentro del carrusel */
.carousel-slide--show {
  background: var(--bg);
  align-items: center;
  justify-content: flex-start;
}
.carousel-slide--show .show-hero-split {
  width: 100%;
}

/* Flechas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.carousel-arrow:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.carousel-arrow--prev { left: 1.5rem; }
.carousel-arrow--next { right: 1.5rem; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
  transition: background var(--ease), transform var(--ease);
}
.carousel-dot.is-active {
  background: #e27743;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .carousel-arrow { display: none; }
  .carousel-dot   { width: 10px; height: 10px; }
  .carousel-slide { bottom: 3rem; }
  .carousel-dots  { bottom: 0; height: 3rem; align-items: center; }
  .hero-bg {
    inset: 0;
    background-position: center 25%;
  }
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.75) 100%
  );
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

video.hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video.hero-bg::after { content: none; }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.75) 100%
  );
  pointer-events: none;
}

.hero-mute-btn {
  position: absolute;
  bottom: 4.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: white;
}

.hero-mute-btn:hover { opacity: 1; }

@media (max-width: 768px) {
  .hero-mute-btn {
    bottom: 3.5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  .hero-mute-btn svg {
    width: 40px;
    height: 40px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 0 1.5rem;
}

.hero-logo {
  width: 70px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero-content h1 {
  font-size: clamp(4.5rem, 18vw, 11rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.88;
  text-shadow: 0 4px 60px rgba(0,0,0,0.4);
}

/* ============================================================
   PRÓXIMO SENCILLO
   ============================================================ */
#proximo-sencillo {
  background: var(--surface);
  padding: var(--section-v) 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Dos columnas: portada izq | info + countdown der */
.release-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Portada B&W */
.release-cover-wrap {
  display: flex;
  justify-content: center;
}

.release-cover {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08);
  display: block;
}

/* Overlay con fecha */
.release-date-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.overlay-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.overlay-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1;
}

/* Info + countdown: alineado a la izquierda en desktop */
.release-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.release-info .eyebrow {
  text-align: left;
}

.release-name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-style: italic;
  line-height: 1;
}

.release-date-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.release-info .countdown {
  justify-content: flex-start;
  margin-bottom: 2.5rem;
}

/* Mobile: stack */
@media (max-width: 700px) {
  .release-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .release-cover {
    max-width: 260px;
    margin: 0 auto;
  }
  .release-info {
    align-items: center;
  }
  .release-info .eyebrow,
  .release-info .countdown {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #proximo-sencillo .countdown-num  { font-size: 2rem; }
  #proximo-sencillo .countdown-sep  { font-size: 1.4rem; }
  #proximo-sencillo .countdown-unit { min-width: 52px; }
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 3rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.countdown-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.countdown-sep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  padding-top: 0.05em;
  line-height: 1;
  user-select: none;
}

/* ============================================================
   NOSOTROS
   ============================================================ */
#nosotros { background: var(--bg); }

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.member-card { text-align: center; }

.member-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--surface-2);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}
.member-card:hover .member-photo img { transform: scale(1.05); }

.member-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo-placeholder svg {
  width: 40px;
  opacity: 0.2;
}

.member-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.member-card .member-role {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}



/* Galería page intro */
.galeria-intro {
  padding-top: 4rem;
  padding-bottom: 0;
}

#galeria { padding-top: 1.5rem; }

/* Gallery sections */
.gallery-section {
  margin-bottom: 3.5rem;
}

.gallery-section-header {
  margin-bottom: 1.25rem;
}

.gallery-section-title {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.gallery-section-meta {
  font-size: 0.72em;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
}

.gallery-item--hidden {
  display: none;
}

.gallery-item--reduced img {
  width: 67%;
  margin: 0 auto;
}

.gallery-expand-btn,
.gallery-collapse-btn {
  display: inline-block;
  margin-top: 0.875rem;
  background: none;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  transition: color var(--ease);
}
.gallery-expand-btn:hover,
.gallery-collapse-btn:hover { color: var(--text); }
.gallery-expand-btn[hidden],
.gallery-collapse-btn[hidden] { display: none; }

/* Gallery grid */
.gallery-grid {
  columns: 3;
  column-gap: 0.625rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.625rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { background: rgba(0,0,0,0.35); }

@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  user-select: none;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--ease);
  font-family: 'Space Grotesk', sans-serif;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--ease);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.12); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ============================================================
   MÚSICA
   ============================================================ */
#musica { background: var(--bg); }

.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.music-card { text-align: center; }

.music-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--surface-2);
  cursor: pointer;
}

.music-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.music-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-card:hover .music-cover img { transform: scale(1.06); }
.music-card:hover .music-overlay  { opacity: 1; }

.play-icon { width: 44px; height: 44px; fill: var(--text); }

.music-card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

@media (max-width: 860px) {
  .music-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   VIDEOCLIPS
   ============================================================ */
#videoclips { background: var(--surface); }

.videoclips-quote {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.videoclips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.videoclip-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--surface-2);
}

.videoclip-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

/* ============================================================
   PRÓXIMO SHOW (teaser in index.html)
   ============================================================ */
#proximo-show {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.show-teaser-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.show-teaser-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.7)  0%,
    rgba(10,10,10,0.6)  50%,
    rgba(10,10,10,0.85) 100%
  );
  padding: var(--section-v) 2rem;
}

.show-teaser {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.show-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.75rem 0 2.5rem;
}

.show-meta-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.show-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.show-teaser-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACTO
   ============================================================ */
#contacto {
  background: var(--bg);
  padding: 3.5rem 0;
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.contacto-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color var(--ease);
}
.contacto-email:hover { color: var(--text); }

.social-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 0.65rem 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--ease);
}
.social-link:hover { color: var(--text); }

.social-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: currentColor;
}

.contacto-logo img {
  width: 180px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

@media (max-width: 640px) {
  .contacto-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
  .contacto-logo { display: block; }
  .contacto-logo img { width: 177px; }
  .social-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 1rem;
  }
  #contacto .section-title {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 1.75rem 2rem;
  background: var(--bg);
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ============================================================
   SHOW PAGE (show.html specific)
   ============================================================ */
/* ── Hero: poster a pantalla completa, sin bordes ────────── */
.show-hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100svh - var(--nav-height));
}

.show-hero-poster {
  height: 100%;
  overflow: hidden;
}

.show-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.show-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 24px;
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
}

.show-hero-info .eyebrow {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .show-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .show-hero-poster { aspect-ratio: 4 / 5; }
  .show-hero-info { align-items: center; text-align: center; padding: 2.5rem 1.5rem; }
}

.show-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0;
  color: #ebdcca;
}

.show-venue-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
}

/* Countdown inside hero */
.show-hero-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(0.75rem, 3vw, 1.75rem);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .show-hero-countdown { justify-content: center; }
}

.show-hero-countdown .countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: clamp(60px, 8vw, 111px);
}

.show-hero-countdown .countdown-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 0.69;
  color: #e27743;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.014em;
}

.show-hero-countdown .countdown-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.147em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0;
}

.show-hero-countdown .countdown-sep {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 300;
  color: var(--text);
  padding-top: 0.05em;
  line-height: 0.69;
  user-select: none;
}

/* Hero ticket button */
.show-ticket-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  width: 290px;
  height: 57px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.show-ticket-link:hover {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.5);
}

@media (max-width: 480px) {
  .show-hero-countdown .countdown-unit { width: auto; min-width: 52px; }
  .show-ticket-link { width: 100%; }
}

/* ── Entradas: arte estático + checkout accionable ──────────
   Desktop: columna izquierda estática (arte + info), columna
   derecha con todo lo accionable (el stepper de compra).
   Mobile: mismo orden, apilado (imagen arriba, form debajo). */
.purchase-section {
  background: var(--bg);
  padding: var(--section-v) 1.5rem;
}

.purchase-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.purchase-visual {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.purchase-visual-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
}
.purchase-visual-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.purchase-visual-art img:hover { transform: scale(1.03); }

.purchase-visual-info {
  padding: 0.25rem 0.1rem;
}

.purchase-visual-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin: 0 0 0.5rem;
}

.purchase-visual-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--brand-cream);
  margin: 0 0 0.5rem;
}

.purchase-visual-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.purchase-panel {
  min-width: 0;
}

@media (max-width: 900px) {
  .purchase-grid {
    grid-template-columns: 1fr;
  }
  .purchase-visual {
    position: static;
  }
}

/* ── Modal de cuenta (login, independiente de la compra) ── */
.account-modal[hidden] { display: none; }

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.account-modal.is-open .account-modal-backdrop { opacity: 1; }

.account-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.25rem 1.75rem 1.75rem;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.account-modal.is-open .account-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .account-modal-backdrop, .account-modal-panel { transition: none; }
}

.account-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--ease);
}
.account-modal-close:hover { color: var(--text); }

/* Carousel slide 2: más compacto para caber en 100svh */
@media (max-width: 768px) {
  /* Imagen: altura fija en svh, sin crop horizontal */
  .carousel-slide--show .show-hero-img {
    width: 100%;
    height: 48svh;
    max-height: 800px;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: top center;
  }
  /* Columna derecha: compacta */
  .carousel-slide--show .show-hero-right    { padding: 1.25rem 1.5rem 1.5rem; gap: 10px; }
  .carousel-slide--show .show-title         { font-size: 2rem; }
  /* Countdown: visible pero pequeño */
  .carousel-slide--show .show-hero-countdown .countdown-num { font-size: 1.8rem; line-height: 1; }
  .carousel-slide--show .show-hero-countdown .countdown-sep { font-size: 1.2rem; line-height: 1; }
}

/* About show */
.show-about {
  background: var(--surface);
  padding: var(--section-v) 2rem;
}

.show-about .container {
  max-width: 720px;
}

.show-about h2,
.show-faq h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2rem;
}

.show-about p {
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Show gallery */
.show-gallery {
  background: var(--bg);
  padding: var(--section-v) 0;
}

/* FOMO gallery — video protagonista + fotos ─────────────────── */
.fomo-cols {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.fomo-video {
  flex: 1.4;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.fomo-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.fomo-photos {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.fomo-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.fomo-photo--tall {
  aspect-ratio: 0.72;
  grid-row: span 2;
}

.fomo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fomo-photo:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .fomo-cols {
    flex-direction: column;
    padding: 0 1.25rem;
  }
  .fomo-video { aspect-ratio: 16 / 9; }

  .fomo-photos {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fomo-photos::-webkit-scrollbar { display: none; }

  .fomo-photo {
    flex: 0 0 auto;
    width: 62vw;
    max-width: 260px;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }
  .fomo-photo--tall {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
}


/* Color utilities */
.accent-orange,
.eyebrow--orange { color: #e27743; }
.accent-cream    { color: #ebdcca; }

/* About rich text */
.show-about .highlight {
  color: var(--text);
  font-weight: 600;
}

/* FAQ */
.show-faq {
  background: var(--surface);
  padding: var(--section-v) 2rem;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-q {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.faq-a {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Show footer CTA */
.show-footer-cta {
  background: var(--bg);
  padding: var(--section-v) 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.show-footer-cta p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color var(--ease);
}
.back-link:hover { color: var(--text); }

/* ============================================================
   EN VIVO
   ============================================================ */

@keyframes ev-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

#en-vivo {
  background: var(--surface);
  padding: 0 0 var(--section-v);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Header ── */
.ev-header {
  padding-top: var(--section-v);
  text-align: center;
}

/* ── Show cards ── */
.ev-show-cards {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2rem 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  max-width: var(--max-w);
  margin: 0 auto;
}
.ev-show-cards::-webkit-scrollbar { display: none; }

.ev-show-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--ease);
}
.ev-show-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.08);
  transition: background var(--ease);
}
.ev-show-card:hover { border-color: rgba(255,255,255,.2); }
.ev-show-card.is-active { border-color: #e27743; }
.ev-show-card.is-active::before { background: #e27743; }

.ev-show-card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 6px;
  padding-left: 10px;
}
.ev-show-card-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 6px;
  padding-left: 10px;
}
.ev-show-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
  padding-left: 10px;
}

/* ── Video ── */
.ev-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0 1.25rem;
}

.ev-video-overlay {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: opacity .3s ease;
}
.ev-video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.ev-play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e27743;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--ease), opacity var(--ease);
  flex-shrink: 0;
}
.ev-play-circle:hover {
  transform: scale(1.06);
  opacity: 0.85;
}

.ev-video-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 0 2rem;
  line-height: 1.4;
  margin: 0;
}

.ev-video-hint {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin: 0;
}

/* ── Meta del show ── */
.ev-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.ev-meta-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.2;
}

.ev-meta-location {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.ev-track-badge {
  flex-shrink: 0;
  background: rgba(226,119,67,.12);
  border: 1px solid rgba(226,119,67,.3);
  border-radius: 20px;
  padding: 4px 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e27743;
  white-space: nowrap;
  margin-top: 2px;
}

/* ── Setlist ── */
.ev-setlist { margin-bottom: 2rem; }

.ev-setlist-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.ev-section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

.ev-setlist-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  cursor: pointer;
  border-radius: var(--radius);
  margin: 0 -8px;
  transition: background var(--ease);
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.ev-setlist-row:hover { background: rgba(255,255,255,.03); }
.ev-setlist-row.is-active { background: rgba(226,119,67,.07); }

.ev-setlist-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  min-width: 24px;
  color: rgba(255,255,255,.3);
  line-height: 1;
  transition: color var(--ease);
}
.ev-setlist-row.is-active .ev-setlist-num { color: #e27743; }

.ev-setlist-title {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--text);
  transition: color var(--ease);
}
.ev-setlist-row.is-active .ev-setlist-title { color: #e27743; }

.ev-setlist-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ev-setlist-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), border-color var(--ease);
}
.ev-setlist-row.is-active .ev-setlist-dot {
  background: #e27743;
  border-color: #e27743;
}
.ev-setlist-dot svg { fill: rgba(255,255,255,.4); transition: fill var(--ease); }
.ev-setlist-row.is-active .ev-setlist-dot svg { fill: #fff; }

@keyframes ev-tag-ring {
  0%   { box-shadow: 0 0 0 0   rgba(226,119,67,.7); }
  70%  { box-shadow: 0 0 0 5px rgba(226,119,67,0);  }
  100% { box-shadow: 0 0 0 0   rgba(226,119,67,0);  }
}

.ev-setlist-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: #e27743;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
  animation: ev-tag-ring 2s ease-out infinite;
}

/* ── Fotos — strip horizontal ── */
.ev-photos-section { margin-bottom: 0; }

.ev-photos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ev-photos-hint {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.2);
}

.ev-photo-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -2rem;
  padding: 0 2rem 4px;
}
.ev-photo-strip::-webkit-scrollbar { display: none; }

.ev-photo-item {
  flex-shrink: 0;
  width: 190px;
  height: 142px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  background: var(--surface-2);
}
.ev-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.ev-photo-item:hover img { transform: scale(1.04); }

.ev-photo-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  pointer-events: none;
}

/* ── Botón mute (video local) ── */
.ev-mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.5;
  transition: background var(--ease), border-color var(--ease), opacity var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ev-mute-btn:hover {
  background: rgba(0,0,0,.75);
  border-color: rgba(255,255,255,.35);
  opacity: 1;
}

/* ── Ticker ── */
.ev-ticker {
  overflow: hidden;
  padding: 2.5rem 0 1rem;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.ev-ticker-inner {
  display: inline-flex;
  animation: ev-ticker 18s linear infinite;
}

.ev-ticker-inner span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.09);
}

/* ── CTA ── */
.ev-cta {
  text-align: center;
  padding: 0 2rem;
  margin-top: 2rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .ev-show-cards { padding: 1.75rem 1.25rem 0; }
  #en-vivo .container { padding: 0 1.25rem; }
  #en-vivo .ev-header { padding-top: var(--section-v); }
  .ev-photo-strip { margin: 0 -1.25rem; padding: 0 1.25rem 4px; }
  .ev-cta { padding: 0 1.25rem; }

  /* Paginación del setlist — swipe horizontal */
  .ev-setlist-pages {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ev-setlist-pages::-webkit-scrollbar { display: none; }
  .ev-setlist-page {
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .ev-setlist-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.875rem 0 0.25rem;
  }
  .ev-setlist-page-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    transition: background 0.25s;
  }
  .ev-setlist-page-dot.is-active { background: var(--accent); }
  .ev-setlist-page-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    background: none;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s, border-color 0.2s, opacity 0.2s;
    flex-shrink: 0;
  }
  .ev-setlist-page-arrow:not(:disabled):hover {
    color: white;
    border-color: rgba(255,255,255,.4);
  }
  .ev-setlist-page-arrow:disabled {
    opacity: 0.2;
    cursor: default;
  }
}

/* Paginación oculta en desktop */
@media (min-width: 769px) {
  .ev-setlist-pagination { display: none; }
}

@media (max-width: 480px) {
  .ev-show-card { width: 185px; }
  .ev-photo-item { width: 170px; height: 128px; }
}

/* ── Desktop ── */
@media (min-width: 860px) {
  .ev-header      { padding-top: 5rem; }
  .ev-show-cards  { padding: 2rem 48px 0; }
  #en-vivo .container { padding: 2rem 48px 0; }

  #ev-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
  }

  .ev-photo-item { width: 260px; height: 195px; }
  .ev-show-cards { flex-wrap: nowrap; }
  .ev-cta { padding: 0 48px; }
}

@media (min-width: 1100px) {
  #en-vivo .ev-show-cards { padding-left: 64px; }
  #en-vivo .container     { padding-left: 64px; padding-right: 64px; }
  #ev-two-col             { grid-template-columns: 1fr 420px; gap: 56px; }
  .ev-cta                 { padding: 0 64px; }
}

@media (max-width: 859px) {
  #ev-two-col { display: block; }
  .ev-meta    { margin-bottom: 1.75rem; }
}
