/* ================================================================
   ANYER & ALDANA — Subpágina del proyecto (Latin Gang Producciones)
   Paleta plateada + dark Latin Gang.
   ================================================================ */

.aa-page {
  background: #0a0a0a;
  color: #ffffff;
}

/* ============ HERO ============ */
.aa-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 30px 60px;
  overflow: hidden;
}

/* Hero genérico antiguo (.aa-hero-bg) — fallback cuando no hay lanzamiento.
   Para el hero del lanzamiento usamos .aa-hero-slideshow (ver más abajo). */
.aa-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: grayscale(0.5) blur(3px);
  opacity: 0.45;
  transform: scale(1.05);
  animation: aaHeroZoom 18s ease-out forwards;
}

@keyframes aaHeroZoom { to { transform: scale(1); } }

/* ----- HERO DEL LANZAMIENTO MI ÁNGEL -----
   Bg slideshow de 4 imgs sin filtros pesados (los artistas se ven nítidos).
   Cada slide ocupa todo el hero y se cruza con fade cada 2.5s. */
.aa-hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.aa-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;        /* favorece cara/torso en retratos verticales */
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.22, 1, .36, 1);
  transform: scale(1.04);
  animation: aaHeroSlowZoom 14s ease-out infinite alternate;
}
.aa-hero-slide.active {
  opacity: 0.95;                          /* MUY visible — los artistas son protagonistas */
}
@keyframes aaHeroSlowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

/* Overlay del hero del lanzamiento: SUTIL. Lo justo para legibilidad del
   texto pero sin tapar a los artistas. El text-shadow fuerte de los elementos
   garantiza contraste. */
.aa-hero-launch .aa-hero-overlay {
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.8) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.75) 100%);
}

/* Hero genérico (fallback): overlay oscuro original */
.aa-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.95) 70%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}

.aa-breadcrumb {
  position: absolute;
  top: 100px;
  left: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.aa-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color .2s;
}
.aa-breadcrumb a:hover { color: var(--silver-l); }
.aa-bc-sep { color: rgba(255,255,255,0.4); }
.aa-bc-current { color: rgba(255,255,255,0.5); }

.aa-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  animation: aaFadeUp 1.4s cubic-bezier(.22,1,.36,1) .3s both;
}

@keyframes aaFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.aa-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 8px 22px;
  border: 1px solid rgba(192,192,192,0.4);
  border-radius: 100px;
  margin-bottom: 22px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.aa-hero-logo {
  max-width: 380px;
  margin: 0 auto 4px;        /* casi pegado al título — el cliente lo pidió */
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 28px rgba(192,192,192,0.4));
  animation: aaLogoFloat 5s ease-in-out infinite;
}
.aa-hero-logo img { width: 100%; height: auto; display: block; }

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

/* Título grande del lanzamiento ("Mi Ángel") */
.aa-hero-title {
  font-family: var(--font-title);
  font-size: clamp(46px, 7.5vw, 84px);
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.8);
}
.aa-hero-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;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.aa-hero-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 620px;
  margin: 0 auto 32px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.7);
}
.aa-hero-tagline strong { color: var(--silver-l); font-weight: 600; }

/* CTAs del hero del lanzamiento */
.aa-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.aa-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: aaScrollHint 2.4s ease-in-out infinite;
}
.aa-hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
}
@keyframes aaScrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============ SECCIONES GENÉRICAS ============ */
.aa-section {
  padding: 90px 30px;
  position: relative;
}
.aa-section .wrap { max-width: 1200px; margin: 0 auto; }

.aa-section-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;
}

.aa-section-title {
  font-family: var(--font-title);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 32px;
}
.aa-section-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;
}

.aa-section-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--silver-d);
  margin: 0 0 28px;
}

/* ============ DIVISOR FINO PLATEADO ============ */
.aa-thin-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  opacity: 0.35;
  position: relative;
}
.aa-thin-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver);
  box-shadow: 0 0 10px var(--silver-glow);
}

/* ============ LANZAMIENTO DESTACADO — Mi Ángel ============
   Bloque entre el hero y la descripción. 2 columnas: embed YT
   click-to-play a la izquierda, info + CTAs a la derecha.
   Inyectado dinámicamente por anyer-aldana.js leyendo
   LANZAMIENTO_MI_ANGEL desde data.js. */
.aa-launch-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 90px 30px;
  position: relative;
  overflow: hidden;
}
.aa-launch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--silver-glow) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, var(--silver-glow) 0%, transparent 45%);
  opacity: 0.4;
  pointer-events: none;
}
.aa-launch-section .wrap {
  position: relative;
  z-index: 1;
}

.aa-launch-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .aa-launch-section { padding: 70px 22px; }
  .aa-launch-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ----- Embed YouTube click-to-play ----- */
.aa-launch-yt {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  border: 1px solid rgba(192, 192, 192, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(192, 192, 192, 0.1);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.aa-launch-yt:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--silver-l);
}
.aa-launch-yt:focus-visible {
  outline: 2px solid var(--silver-l);
  outline-offset: 4px;
}
.aa-launch-yt img,
.aa-launch-yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.aa-launch-yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  transition: opacity .25s ease;
}
.aa-launch-yt:hover .aa-launch-yt-overlay { opacity: 0.75; }

.aa-launch-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF0033, #C8001E);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(255, 0, 51, 0.5);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease;
  z-index: 2;
}
.aa-launch-yt-play svg { margin-left: 5px; }
.aa-launch-yt:hover .aa-launch-yt-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 44px rgba(255, 0, 51, 0.65);
}

.aa-launch-yt-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver-l);
  z-index: 2;
}

/* Cuando el iframe está activo, ocultamos overlay/play/label */
.aa-launch-yt.playing .aa-launch-yt-overlay,
.aa-launch-yt.playing .aa-launch-yt-play,
.aa-launch-yt.playing .aa-launch-yt-label { display: none; }

/* ----- Info + CTAs ----- */
.aa-launch-info { max-width: 520px; }

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

.aa-launch-title {
  font-family: var(--font-title);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.aa-launch-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;
}

.aa-launch-artist {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-l);
  font-weight: 500;
  margin: 0 0 22px;
}

.aa-launch-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px;
}
.aa-launch-desc strong { color: var(--silver-l); font-weight: 600; }

.aa-launch-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.aa-launch-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s ease;
}
.aa-launch-cta:hover { transform: translateY(-2px) scale(1.03); }

.aa-launch-cta-spotify {
  background: linear-gradient(135deg, #1DB954, #149942);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4);
}
.aa-launch-cta-spotify:hover { box-shadow: 0 14px 32px rgba(29, 185, 84, 0.55); }

.aa-launch-cta-youtube {
  background: linear-gradient(135deg, #FF0033, #C8001E);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 0, 51, 0.35);
}
.aa-launch-cta-youtube:hover { box-shadow: 0 14px 32px rgba(255, 0, 51, 0.5); }

.aa-launch-cta-outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--silver-d);
}
.aa-launch-cta-outline:hover {
  background: rgba(192, 192, 192, 0.1);
  color: #ffffff;
  border-color: var(--silver-l);
}

@media (max-width: 600px) {
  .aa-launch-yt-play { width: 72px; height: 72px; }
  .aa-launch-yt-play svg { width: 30px; height: 30px; }
  .aa-launch-cta { width: 100%; justify-content: center; }
}

/* ============ DESCRIPCIÓN PROYECTO ============ */
.aa-description-section { background: linear-gradient(180deg, #0a0a0a 0%, #131316 100%); }
.aa-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
}
.aa-description strong { color: var(--silver-l); font-weight: 600; }

/* ============ VIDEOS ============ */
.aa-videos-section { background: #0a0a0a; }

.aa-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 800px) { .aa-videos-grid { grid-template-columns: 1fr; } }

.aa-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  cursor: pointer;
  border: 1px solid rgba(192,192,192,0.18);
  box-shadow: 0 14px 40px rgba(0,0,0,0.5);
  transition: border-color .25s ease, transform .25s ease;
}
.aa-video-card:hover {
  border-color: var(--silver-l);
  transform: translateY(-4px);
}
.aa-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ TRACKS ============ */
.aa-tracks-section { background: linear-gradient(180deg, #0a0a0a 0%, #15151a 100%); }
.aa-tracks-grid { margin-top: 20px; max-width: 880px; }

/* ============ GALERÍA MASONRY ============ */
.aa-gallery-section { background: #0a0a0a; }

.aa-masonry {
  column-count: 4;
  column-gap: 14px;
  margin-top: 20px;
}
@media (max-width: 1100px) { .aa-masonry { column-count: 3; } }
@media (max-width: 700px)  { .aa-masonry { column-count: 2; column-gap: 10px; } }

.aa-mas-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid rgba(192,192,192,0.12);
  position: relative;
}
.aa-mas-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.5), 0 0 0 1px var(--silver-l);
}
.aa-mas-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.aa-mas-item:hover img { transform: scale(1.04); }

.aa-empty-gallery {
  text-align: center;
  padding: 60px 20px;
  color: var(--silver-d);
  font-family: var(--font-body);
  font-size: 14px;
}

/* ============ CTA REDES + CONTACTO ============ */
.aa-cta-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #18181f 50%, #0a0a0a 100%);
  padding-bottom: 120px;
}

.aa-cta-card {
  text-align: center;
  margin-bottom: 80px;
}

.aa-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.aa-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: rgba(192,192,192,0.05);
  border: 1px solid rgba(192,192,192,0.3);
  color: var(--silver);
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .25s ease;
}
.aa-social-btn:hover {
  background: linear-gradient(135deg, var(--silver-l), var(--silver-d));
  color: #0a0a0a;
  border-color: var(--silver);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--silver-glow);
}

/* Botón social Spotify: usa colores brand Spotify (verde) */
.aa-social-spotify {
  background: linear-gradient(135deg, #1DB954, #149942) !important;
  color: #ffffff !important;
  border-color: rgba(29, 185, 84, 0.6) !important;
  box-shadow: 0 6px 18px rgba(29, 185, 84, 0.3);
}
.aa-social-spotify:hover {
  background: linear-gradient(135deg, #1ED760, #1DB954) !important;
  color: #ffffff !important;
  border-color: #1ED760 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 185, 84, 0.5) !important;
}

/* Producciones Latin Gang block */
.aa-prod-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(192,192,192,0.06), rgba(192,192,192,0.02));
  border: 1px solid rgba(192,192,192,0.25);
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aa-prod-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, var(--silver-glow) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.aa-prod-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  color: #ffffff;
  margin: 14px 0 14px;
}

.aa-prod-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 30px;
}

.aa-prod-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 600px) {
  .aa-section { padding: 70px 20px; }
  .aa-prod-card { padding: 36px 24px; }
  .aa-breadcrumb { left: 20px; top: 90px; }
}

/* ============ FOOTER ============ */
.aa-footer {
  background: #050505;
  padding: 60px 30px;
  border-top: 1px solid rgba(192,192,192,0.15);
  text-align: center;
}
.aa-footer-content {
  max-width: 720px;
  margin: 0 auto;
}
.aa-footer-brand {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  color: var(--silver-l);
  margin: 0 0 8px;
}
.aa-footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--silver-d);
  margin: 0 0 22px;
}
.aa-footer-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.aa-footer-links a {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color .2s;
}
.aa-footer-links a:hover { color: #ffffff; }
.aa-footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ============ ACCESIBILIDAD ============ */
@media (prefers-reduced-motion: reduce) {
  .aa-hero-bg,
  .aa-hero-content,
  .aa-hero-logo,
  .aa-hero-slide,
  .aa-hero-scroll,
  .aa-mas-item,
  .aa-mas-item img {
    animation: none !important;
    transition: none !important;
  }
  .aa-mas-item:hover img { transform: none !important; }
  .aa-hero-slide:not(.active) { display: none; }
}
