/* ================================================================
   EXTRAS.CSS — Componentes nuevos del index Latin Gang
   ----------------------------------------------------------------
   Aplica a: index.html
   Agrupa lo que no encaja en main.css ni latingang.css:
     · Línea fina dorada divisora
     · Sección Bodas (con bg-image)
     · Cartelera destacado (video al inicio Próximos Shows)
     · B2B Experiencia (con video)
     · Sección DJ Flaco (paleta violeta)
     · Sección Productora Anyer & Aldana (paleta plateada)
     · Pop modal de bienvenida
     · Mini-players de audio
   ================================================================ */

/* ============ LÍNEA FINA DORADA — divisora elegante ============ */
.thin-divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.45;
  margin: 0;
  position: relative;
}
.thin-divider-gold::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200, 168, 75, 0.6);
}

/* ============ SECCIÓN BODAS — TONALIDAD CLARA estilo DB Maquillaje ============ */
.bodas-section {
  position: relative;
  padding: 100px 30px;
  background: #FAFAF8;            /* fondo crema DB */
  overflow: hidden;
  color: #1a1414;
}

.bodas-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.55;
  transform: scale(1.04);
  filter: saturate(1.05);
}

/* Overlay claro: suaviza la imagen sin oscurecerla */
.bodas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(250, 250, 248, 0.55) 0%,
    rgba(250, 250, 248, 0.65) 50%,
    rgba(250, 250, 248, 0.85) 100%);
  z-index: 1;
}

.bodas-section .wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ============ TEXTOS CENTRADOS Y CON CONTRASTE FUERTE SOBRE FONDO CLARO ============ */

/* Eyebrow centrado: el .eyebrow base es flex con línea ::before, lo recolocamos al centro */
.bodas-section .eyebrow {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: #8B6F4E !important;        /* dorado bronce más contrastado */
  font-weight: 700 !important;
  letter-spacing: .35em !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.bodas-section .eyebrow::before {
  background: #8B6F4E !important;
}

/* Título principal: oscuro sólido + sombra blanca para resaltar sobre la imagen detrás */
.bodas-section .sec-title {
  color: #0a0a0a !important;
  font-weight: 600 !important;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}
.bodas-section .sec-title em {
  color: #8B6F4E !important;        /* dorado bronce contrastado, no rosa pálido */
  font-style: italic;
  font-weight: 700;
}

/* Descripción: contraste fuerte + glow blanco detrás para legibilidad sobre la foto */
.bodas-section .sec-desc {
  color: #1a1414 !important;
  font-weight: 500 !important;       /* sube de 300 a 500 para que pese más */
  font-size: 15px !important;
  line-height: 1.75 !important;
  max-width: 640px !important;
  margin: 0 auto 40px !important;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.85);
  /* Fondo translúcido suave para asegurar legibilidad si la foto detrás es muy clara */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px 28px;
  border-radius: 12px;
  border: 1px solid rgba(196, 168, 130, 0.18);
}

/* Anula la alineación a la izquierda heredada del .sr.left para que todo quede centrado */
.bodas-section .sr.left,
.bodas-section .sr.right { transform: none !important; }

.bodas-packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 580px;
  margin: 50px auto 0;
}

/* La card de paquete: fondo blanco con borde sutil */
.bodas-packages-grid .bodas-package {
  background: #ffffff !important;
  border: 1px solid rgba(196, 168, 130, 0.25) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  color: #1a1414 !important;
}
.bodas-packages-grid .bodas-package h3 {
  color: #1a1414 !important;
}
.bodas-packages-grid .bodas-package p {
  color: #4a3838 !important;
}
.bodas-packages-grid .bodas-package > p:nth-of-type(1) {
  /* Subtitle dorado */
  color: #c4a882 !important;
}

/* CTAs en la sección: gold en versión clara */
.bodas-section .bodas-ctas .btn-gold {
  background: #c4a882;
  color: #ffffff;
  border-color: #c4a882;
}
.bodas-section .bodas-ctas .btn-outline {
  color: #1a1414;
  border-color: rgba(26, 20, 20, 0.35);
}
.bodas-section .bodas-ctas .btn-outline:hover {
  background: #1a1414;
  color: #ffffff;
}

@media (max-width: 768px) {
  .bodas-section { padding: 70px 20px; }
}

/* ============ CARTELERA — VIDEO DESTACADO AL INICIO ============ */
.cartelera-featured {
  position: relative;
  width: 100%;
  margin: 30px 0 50px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--s2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.cartelera-featured video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cartelera-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 8, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

.cartelera-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 3;
  color: #ffffff;
}

.cartelera-featured-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.cartelera-featured-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 8px;
}
.cartelera-featured-title em { color: var(--gold); font-style: italic; }

.cartelera-featured-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
}

.cartelera-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gold);
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: transform .25s ease;
}
.cartelera-featured-cta:hover { transform: translateY(-2px); }

.cartelera-sound-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  z-index: 4;
  transition: background .2s ease;
}
.cartelera-sound-toggle:hover { background: rgba(0, 0, 0, 0.85); }

@media (max-width: 768px) {
  .cartelera-featured { aspect-ratio: 4 / 5; }
  .cartelera-featured-content { padding: 24px; }
}

/* ============ B2B EXPERIENCIA COMPLETA (con video) ============ */
.b2b-experiencia {
  padding: 80px 30px 100px;
  background: var(--s1);
}
.b2b-experiencia .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.b2b-experiencia-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--s2);
}
.b2b-experiencia-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.b2b-experiencia-card .cartelera-featured-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 8, 0.95) 100%);
}
.b2b-experiencia-card .cartelera-featured-content {
  padding: 50px;
}
.b2b-experiencia-card .cartelera-featured-title {
  font-size: clamp(32px, 5vw, 60px);
}
@media (max-width: 768px) {
  .b2b-experiencia { padding: 60px 20px 80px; }
  .b2b-experiencia-card { aspect-ratio: 4 / 5; }
  .b2b-experiencia-card .cartelera-featured-content { padding: 28px; }
}

/* ============ SECCIÓN DJ FLACO (paleta violeta) ============ */
:root {
  --dj-violet: #7F00FF;
  --dj-violet-l: #A540FF;
  --dj-violet-glow: rgba(127, 0, 255, 0.35);
  --silver: #C0C0C0;
  --silver-l: #D8D8D8;
  --silver-d: #9DA3A8;
  --silver-glow: rgba(192, 192, 192, 0.3);
}

.dj-flaco {
  position: relative;
  padding: 100px 30px 120px;
  background: linear-gradient(180deg, #0a0a0a 0%, #110a18 50%, #0a0a0a 100%);
  overflow: hidden;
}

.dj-flaco::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, var(--dj-violet-glow) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, var(--dj-violet-glow) 0%, transparent 40%);
  pointer-events: none;
  opacity: 0.6;
}

.dj-flaco .wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.dj-flaco-header {
  text-align: center;
  margin-bottom: 50px;
}

.dj-flaco-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dj-violet-l);
  margin-bottom: 14px;
  padding: 6px 16px;
  border: 1px solid var(--dj-violet);
  border-radius: 100px;
  background: rgba(127, 0, 255, 0.08);
}

.dj-flaco-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 18px;
}
.dj-flaco-title em { color: var(--dj-violet-l); font-style: italic; }

/* Video principal */
.dj-flaco-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px var(--dj-violet-glow), 0 0 0 1px rgba(127, 0, 255, 0.4);
  background: #0a0a0a;
  margin-bottom: 50px;
  cursor: pointer;
}
.dj-flaco-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dj-flaco-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 8, 0.7) 100%);
  pointer-events: none;
}

/* Logo flotante (efecto levitación) */
.dj-flaco-logo {
  position: relative;
  margin: 0 auto 30px;
  max-width: 360px;
  animation: djLogoLevitate 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 30px var(--dj-violet-glow));
}
.dj-flaco-logo img { width: 100%; height: auto; display: block; }

@keyframes djLogoLevitate {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Texto descriptivo */
.dj-flaco-desc {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 40px;
}
.dj-flaco-desc strong { color: var(--dj-violet-l); font-weight: 600; }

/* CTAs DJ */
.dj-flaco-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-dj {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--dj-violet) 0%, var(--dj-violet-l) 100%);
  color: #ffffff;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .25s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 8px 24px var(--dj-violet-glow);
}
.btn-dj:hover { transform: translateY(-2px); box-shadow: 0 14px 32px var(--dj-violet-glow); }

.btn-dj-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--dj-violet-l);
  border: 1px solid var(--dj-violet);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .25s ease;
}
.btn-dj-outline:hover { background: rgba(127, 0, 255, 0.12); color: #ffffff; }

/* Galería DJ (2 imgs + 1 video secundario) */
.dj-flaco-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dj-flaco-gallery .item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(127, 0, 255, 0.25);
  cursor: pointer;
  transition: transform .35s ease;
}
.dj-flaco-gallery .item:hover { transform: translateY(-4px); border-color: var(--dj-violet); }
.dj-flaco-gallery .item img,
.dj-flaco-gallery .item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .dj-flaco { padding: 70px 20px 90px; }
  .dj-flaco-gallery { grid-template-columns: 1fr 1fr; }
}

/* ============ SECCIÓN PRODUCTORA — ANYER & ALDANA (paleta plateada) ============ */
.productora {
  position: relative;
  padding: 100px 30px 120px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
}

.productora-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.18;
  filter: grayscale(0.6) blur(4px);
}

.productora-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.productora .wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.productora-header {
  text-align: center;
  margin-bottom: 50px;
}

.productora-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
  padding: 6px 16px;
  border: 1px solid var(--silver-d);
  border-radius: 100px;
  background: rgba(192, 192, 192, 0.05);
}

.productora-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 18px;
}
.productora-title em {
  background: linear-gradient(135deg, var(--silver-l), var(--silver-d));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.productora-stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px rgba(192, 192, 192, 0.18), 0 0 0 1px rgba(192, 192, 192, 0.25);
  background: #0a0a0a;
  margin-bottom: 40px;
  cursor: pointer;
}
.productora-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productora-logo {
  max-width: 380px;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 14px 30px var(--silver-glow));
  animation: prodLogoLevitate 5s ease-in-out infinite;
}
@keyframes prodLogoLevitate {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.productora-logo img { width: 100%; height: auto; display: block; }

.productora-desc {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin: 0 auto 40px;
}
.productora-desc strong { color: var(--silver-l); font-weight: 600; }

/* Reproductores de audio */
.productora-tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 40px;
}
@media (max-width: 700px) { .productora-tracks { grid-template-columns: 1fr; } }

.audio-player {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.08), rgba(192, 192, 192, 0.02));
  border: 1px solid rgba(192, 192, 192, 0.25);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color .25s ease, transform .25s ease;
}
.audio-player:hover {
  border-color: var(--silver-l);
  transform: translateY(-2px);
}
.audio-player.playing {
  border-color: var(--silver-l);
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.16), rgba(192, 192, 192, 0.04));
}

.audio-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver-l), var(--silver-d));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: #0a0a0a;
  transition: transform .2s ease;
  box-shadow: 0 6px 18px rgba(192, 192, 192, 0.25);
}
.audio-play-btn:hover { transform: scale(1.06); }
.audio-play-btn .icon-play { display: block; margin-left: 3px; }
.audio-play-btn .icon-pause { display: none; }
.audio-player.playing .audio-play-btn .icon-play { display: none; }
.audio-player.playing .audio-play-btn .icon-pause { display: block; }

.audio-info { flex: 1; min-width: 0; }
.audio-info-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.1;
}
.audio-info-artist {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-d);
  margin: 0 0 10px;
}
.audio-progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
}
.audio-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--silver-l), var(--silver));
  width: 0%;
  border-radius: 2px;
  transition: width .12s linear;
}
.audio-time {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--silver-d);
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  letter-spacing: .5px;
}

/* Galería de fotos juntos (3 imágenes) */
.productora-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.productora-gallery .item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(192, 192, 192, 0.2);
  cursor: pointer;
  transition: transform .35s ease, border-color .25s ease;
}
.productora-gallery .item:hover { transform: translateY(-4px); border-color: var(--silver-l); }
.productora-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .productora { padding: 70px 20px 90px; }
  .productora-gallery { grid-template-columns: 1fr 1fr; }
}

/* CTAs Productora */
.productora-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 50px;
}
.btn-silver {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--silver-l) 0%, var(--silver-d) 100%);
  color: #0a0a0a;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .25s ease;
  box-shadow: 0 8px 24px var(--silver-glow);
}
.btn-silver:hover { transform: translateY(-2px); }

.btn-silver-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--silver-d);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .25s ease;
}
.btn-silver-outline:hover { background: rgba(192, 192, 192, 0.08); color: #ffffff; border-color: var(--silver-l); }

/* ============ POP MODAL DE BIENVENIDA — Lanzamiento Mi Ángel ============ */
.welcome-pop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity .35s ease;
}
.welcome-pop.open { display: flex; opacity: 1; }

.welcome-pop-card {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  background: #0a0a0a;
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(192, 192, 192, 0.18);
  animation: welcomePopIn .6s cubic-bezier(.22,1,.36,1);
  isolation: isolate;
  overflow: hidden;            /* recorta el slideshow al border-radius */
  display: flex;
  flex-direction: column;
}

/* ---- Slideshow de fondo del card (4 imágenes rotando cada 2s) ---- */
.welcome-pop-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
}
.welcome-pop-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.welcome-pop-bg-slide.active { opacity: 1; }

/* Overlay encima del slideshow.
   Bajamos la opacidad (~50%) para que las fotos del lanzamiento se vean
   protagonistas. La legibilidad del texto la garantizamos con text-shadow
   fuerte sobre cada elemento (eyebrow / headline / tagline). */
.welcome-pop-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.28) 0%, rgba(10,10,10,0.65) 80%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
}

/* El contenido del modal va encima del slideshow + overlay.
   Aquí va el scroll (no en el card) para que el bg slideshow quede fijo
   mientras el usuario scrollea el contenido en móvil. */
.welcome-pop-content {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-height: 0;
}
.welcome-pop-content::-webkit-scrollbar { width: 6px; }
.welcome-pop-content::-webkit-scrollbar-thumb {
  background: rgba(192, 192, 192, 0.3);
  border-radius: 3px;
}
/* Scrollbar elegante dentro del pop */
.welcome-pop-card::-webkit-scrollbar { width: 6px; }
.welcome-pop-card::-webkit-scrollbar-thumb {
  background: rgba(192, 192, 192, 0.3);
  border-radius: 3px;
}
.welcome-pop-card::-webkit-scrollbar-thumb:hover { background: rgba(192, 192, 192, 0.5); }

/* Botón "Ver más sobre el proyecto" en el pop */
.welcome-pop-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px 22px;
  background: transparent;
  color: var(--silver-l);
  border: 1px solid var(--silver-d);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all .25s ease;
}
.welcome-pop-more:hover {
  background: rgba(192, 192, 192, 0.1);
  color: #ffffff;
  border-color: var(--silver-l);
  transform: translateY(-2px);
}

@keyframes welcomePopIn {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.welcome-pop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.welcome-pop-close:hover { background: rgba(255, 255, 255, 0.15); }

/* Todos los textos del modal sobre slideshow llevan text-shadow fuerte
   para asegurar legibilidad incluso si el overlay no tapa del todo. */
.welcome-pop-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.welcome-pop-logo-lg {
  max-width: 110px;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 14px rgba(200, 168, 75, 0.35));
}

.welcome-pop-productions {
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 26px;
  font-weight: 600;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.welcome-pop-divider {
  width: 60px;
  height: 1px;
  background: var(--silver-d);
  margin: 0 auto 26px;
  box-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
}

.welcome-pop-new-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-l);
  margin-bottom: 14px;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.welcome-pop-artist-logo {
  max-width: 280px;
  margin: 0 auto 2px;          /* casi pegado al headline siguiente */
  display: block;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 20px var(--silver-glow));
}

.welcome-pop-headline {
  font-family: var(--font-title);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
}
.welcome-pop-headline em { color: var(--silver-l); font-style: italic; }

.welcome-pop-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

/* Nombre del artista (debajo del headline "Mi Ángel") */
.welcome-pop-artist-name {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-l);
  margin: 0 0 14px;
  font-weight: 500;
}

/* CTAs principales del modal: Spotify + YouTube — paleta plateada */
.welcome-pop-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 4px 0 22px;
}

.welcome-pop-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--silver-l), var(--silver-d));
  color: #0a0a0a;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  box-shadow: 0 8px 24px rgba(192, 192, 192, 0.25);
}
.welcome-pop-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 32px rgba(192, 192, 192, 0.35);
}
/* CTA Spotify: tinte verde Spotify sutil */
.welcome-pop-cta[data-cta="spotify"] {
  background: linear-gradient(135deg, #1DB954, #149942);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4);
}
.welcome-pop-cta[data-cta="spotify"]:hover {
  box-shadow: 0 14px 32px rgba(29, 185, 84, 0.55);
}
/* CTA YouTube: tinte rojo YT */
.welcome-pop-cta[data-cta="youtube"] {
  background: linear-gradient(135deg, #FF0033, #C8001E);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 0, 51, 0.35);
}
.welcome-pop-cta[data-cta="youtube"]:hover {
  box-shadow: 0 14px 32px rgba(255, 0, 51, 0.5);
}

.welcome-pop-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
}
.welcome-pop-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.welcome-pop-socials a:hover { background: var(--silver); color: #0a0a0a; }

.welcome-pop-noremind {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .5px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 6px;
  text-decoration: underline;
}
.welcome-pop-noremind:hover { color: #ffffff; }

@media (max-width: 600px) {
  .welcome-pop-content { padding: 40px 24px; }
  .welcome-pop-ctas { flex-direction: column; }
  .welcome-pop-cta { width: 100%; justify-content: center; }
}

/* ============ ARTISTAS — MASONRY tipo Pinterest ============ */
.artists-masonry {
  column-count: 4;
  column-gap: 14px;
  margin-top: 20px;
}
@media (max-width: 1400px) { .artists-masonry { column-count: 4; } }
@media (max-width: 1100px) { .artists-masonry { column-count: 3; } }
@media (max-width: 700px)  { .artists-masonry { column-count: 2; column-gap: 10px; } }

.artist-mas-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 14px;
  background: var(--s2);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.artist-mas-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--gold);
}
.artist-mas-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.artist-mas-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--s1);
}
.artist-mas-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .25s ease;
}
.artist-mas-card:hover .artist-mas-img img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

.artist-mas-noimg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--s1), var(--s2));
}

.artist-mas-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(200, 168, 75, 0.4);
}

.artist-mas-body {
  padding: 18px 20px 22px;
}

.artist-mas-genre {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.artist-mas-genre span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.artist-mas-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.15;
}
.artist-mas-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

@media (max-width: 700px) {
  .artist-mas-name { font-size: 18px; }
  .artist-mas-body { padding: 14px 14px 18px; }
}

/* ============ ARTIST MODAL — fixes de overflow + responsive ============ */
/* El modal antiguo ocupaba todo el viewport — ahora 90% max-width 1100px,
   con texto y fechas que respiran sin desbordar */
#artistModal .modal {
  width: 90vw !important;
  max-width: 1100px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  margin: auto !important;
}

/* Texto de bio sin overflow horizontal */
#artistModal .modal-bio,
#artistModal .modal-title,
#artistModal .modal-performer {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Fechas dentro del modal — responsive con scroll vertical limpio */
.modal-dates-block {
  margin-top: 24px;
  padding: 20px;
  background: rgba(200, 168, 75, 0.05);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 14px;
}
.modal-dates-month {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 600;
}
.modal-dates-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.modal-dates-list::-webkit-scrollbar { width: 4px; }
.modal-dates-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.modal-date-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--s2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
}
.modal-date-day {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-date-loc {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-date-ticket {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  transition: background .2s ease;
}
.modal-date-ticket:hover { background: var(--gold); color: #0a0a0a; }
.modal-date-soon {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 600px) {
  #artistModal .modal { width: 96vw !important; }
  .modal-date-row {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: left;
  }
  .modal-date-day, .modal-date-loc { white-space: normal; }
}

/* ============ WHATSAPP FLOTANTE GLOBAL (Latin Gang) ============ */
/* Botón fijo abajo a la derecha. Estilo verde WhatsApp clásico con
   pulse dorado sutil para combinar con el dark/gold de Latin Gang. */
.lg-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  text-decoration: none;
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.45),
    0 0 0 2px rgba(200, 168, 75, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease;
  animation: lgWaPulse 3.2s ease-in-out infinite;
}
.lg-wa-float:hover {
  transform: scale(1.1) rotate(-6deg);
  box-shadow:
    0 14px 36px rgba(37, 211, 102, 0.55),
    0 0 0 3px var(--gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation-play-state: paused;
}
.lg-wa-float svg {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

@keyframes lgWaPulse {
  0%, 100% {
    box-shadow:
      0 8px 28px rgba(37, 211, 102, 0.45),
      0 0 0 2px rgba(200, 168, 75, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0 8px 30px rgba(37, 211, 102, 0.6),
      0 0 0 8px rgba(200, 168, 75, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 480px) {
  .lg-wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .lg-wa-float svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .lg-wa-float { animation: none; }
}

/* ============ HERO CARRUSEL — fade + dots ============ */
/* Transición fade del bg y del contenido cuando rota el hero */
.hero-show-bg,
.hero-show-content {
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}
.hero-show-bg.hero-fading,
.hero-show-content.hero-fading {
  opacity: 0;
}

/* Dots / indicadores debajo del hero */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.hero-dot:hover {
  background: rgba(200, 168, 75, 0.6);
  transform: scale(1.15);
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 28px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(200, 168, 75, 0.6);
}

@media (max-width: 600px) {
  .hero-dots { bottom: 16px; padding: 6px 10px; gap: 8px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.active { width: 22px; }
}

/* ============ NAV — link "PRODUCCIONES" en paleta plateada ============
   Resaltado con gradiente plateado y borde sutil, distinto del resto
   de links del nav que son dorados. Indica visualmente que es la
   sección de Latin Gang Producciones (Anyer & Aldana). */
.nav-links a.nav-prod,
.mobile-menu a.nav-prod {
  position: relative;
  background: linear-gradient(135deg, var(--silver-l), var(--silver-d));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: .12em;
  transition: filter .25s ease, transform .25s ease;
}
.nav-links a.nav-prod::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver-l), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-links a.nav-prod:hover {
  filter: drop-shadow(0 0 8px var(--silver-glow));
  transform: translateY(-1px);
}
.nav-links a.nav-prod:hover::after { opacity: 1; }

/* Mobile menu: añadimos un punto plateado como prefijo */
.mobile-menu a.nav-prod {
  border-left: 3px solid var(--silver);
  padding-left: 14px;
  filter: drop-shadow(0 0 6px var(--silver-glow));
}

/* ============ CARRUSEL GALERÍA — Sección Productora (index) ============
   Reemplaza la grid de 3 imágenes. Auto 2s + flechas + dots + swipe.
   Las imágenes se rotan con fade — no es slide horizontal. */
.productora-carousel {
  position: relative;
  margin: 30px auto 0;
  max-width: 860px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.25);
  background: #0a0a0a;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.productora-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.prod-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1);
}
.prod-slide.active { opacity: 1; }
.prod-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;     /* favorece cabezas/torso en retratos verticales */
  display: block;
}

/* Flechas prev/next: sutiles, plateadas, solo visibles en hover (desktop) */
.prod-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(192, 192, 192, 0.4);
  color: var(--silver-l);
  font-size: 24px;
  line-height: 1;
  font-family: var(--font-title);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s ease, transform .2s ease, opacity .25s ease;
  opacity: 0.6;
}
.prod-carousel-nav:hover {
  background: rgba(192, 192, 192, 0.85);
  color: #0a0a0a;
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}
.prod-prev { left: 14px; }
.prod-next { right: 14px; }

/* Dots inferiores */
.prod-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.prod-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.prod-dot:hover { background: var(--silver-l); }
.prod-dot.active {
  background: var(--silver-l);
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 6px var(--silver-glow);
}

@media (max-width: 768px) {
  .productora-carousel { aspect-ratio: 4 / 5; }
  .prod-carousel-nav { width: 38px; height: 38px; font-size: 20px; }
}

/* ============ SHOW CARD VIDEO BG (cartelera) ============
   Cuando un SHOW tiene videoBackground (ej: Bad Bunny Tour Europa),
   el .show-card-img muestra video en loop muteado en vez de imagen. */
.show-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.show-card-img:has(.show-card-video) {
  /* Asegura que el contenedor recorta correctamente el video */
  position: relative;
  overflow: hidden;
}

/* ============ ACCESIBILIDAD ============ */
@media (prefers-reduced-motion: reduce) {
  .dj-flaco-logo,
  .productora-logo,
  .welcome-pop-card,
  .welcome-pop-bg-slide,
  .bodas-bg,
  .artist-mas-card,
  .artist-mas-img img,
  .hero-show-bg,
  .hero-show-content,
  .prod-slide {
    animation: none !important;
    transition: none !important;
  }
  .artist-mas-card:hover .artist-mas-img img { transform: none !important; }
}
