* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,0) 100%);
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar__links--left { justify-self: end; }
.navbar__links--right { justify-self: start; }

.navbar__links a {
  color: #fff;
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.navbar__links a:hover {
  color: #c81e2e;
}

.navbar__logo {
  justify-self: center;
  padding: 0 2rem;
}

.navbar__logo img {
  display: block;
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(200,20,30,.5));
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.75));
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1rem;
}

.hero__logo {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(200,20,30,.6));
}

.hero__tagline {
  margin-top: .5rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c81e2e;
}

/* White Metal Sudamericano */
.whitemetal {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 55%);
  color: #e8e8e8;
  padding: 4.5rem 1.5rem;
}

.whitemetal__inner {
  max-width: 720px;
  margin: 0 auto;
}

.whitemetal__title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #b3121f;
  margin-bottom: 1.75rem;
}

.whitemetal p {
  font-size: 1rem;
  line-height: 1.75;
}

.whitemetal blockquote {
  margin: 2.25rem 0 0;
  padding-left: 1.25rem;
  border-left: 4px solid #b3121f;
}

.whitemetal blockquote p {
  font-style: italic;
  color: #ccc;
}

.whitemetal blockquote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b3121f;
}

/* Line Up */
.lineup {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 3rem 1.5rem;
}

.lineup__title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.lineup__stage {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.lineup__track {
  display: flex;
  gap: 1rem;
  height: 100%;
  transition: transform .9s ease;
}

.slide {
  flex: 0 0 44%;
  box-sizing: border-box;
  height: 100%;
}

.slide__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.slide__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.slide__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,0) 70%);
}

.slide__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5rem;
  text-align: left;
}

.slide__name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .25rem;
}

.slide__meta {
  font-size: .75rem;
  opacity: .85;
  margin: 0 0 .5rem;
}

.slide__role {
  font-size: .8rem;
  line-height: 1.45;
}

.lineup__dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: background .3s ease;
}

.dot.is-active {
  background: #b3121f;
}

/* Discografía */
.discografia {
  position: relative;
  z-index: 2;
  background-color: #b3121f;
  padding: 3.5rem 0;
  overflow: hidden;
}

.discografia::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #b3121f;
  background-image: url('../img/mm01.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  opacity: .8;
}

.discografia__title {
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.discografia__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
}

.discografia__spacer {
  flex: 0 0 calc(50% - 110px);
}

.album {
  flex: 0 0 220px;
  scroll-snap-align: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
}

.album img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0,0,0,.6);
}

.album figcaption {
  margin-top: .9rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  opacity: .85;
}

.album figcaption span {
  display: block;
  margin-top: .25rem;
  font-size: .7rem;
  letter-spacing: .12em;
  color: #f0c419;
  opacity: 1;
}

/* Multimedia */
.multimedia {
  position: relative;
  z-index: 2;
  background: #000;
}

.multimedia__banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.multimedia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.85));
}

.multimedia__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.multimedia__title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
}

.page-subtitle {
  margin-top: .5rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c81e2e;
}

.fotos {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 55%);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.fotos__title {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.fotos__content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.fotos__gallery {
  flex: 1 1 400px;
  max-width: 480px;
}

.fotos__slideshow {
  position: relative;
  width: 100%;
  height: 452px;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.fotos__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fotos__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.fotos__slideshow-link {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  z-index: 2;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .4rem .7rem;
  border-radius: 4px;
}

.fotos__player {
  flex: 1 1 320px;
  max-width: 400px;
}

.fotos__player iframe {
  width: 100%;
  border: 0;
  display: block;
}

.videos {
  position: relative;
  z-index: 2;
  background: #b3121f;
  padding: 3.5rem 1.5rem;
}

.videos__title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.video-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background: #7a0f19;
  border-radius: 14px;
  overflow: hidden;
}

.video-card + .video-card {
  margin-top: 1.5rem;
}

.video-card__media {
  position: relative;
  flex: 1 1 480px;
  aspect-ratio: 16 / 9;
}

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

.video-card__media--thumb {
  display: block;
}

.video-card__media--thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.6rem;
  transition: background .2s ease, transform .2s ease;
}

.video-card__media--thumb:hover .video-card__play {
  background: #b3121f;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card__text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.video-card__text p {
  color: #fff;
  font-size: .95rem;
  line-height: 1.7;
  text-align: left;
}

.mini-videos {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #7a0f19;
  border-radius: 14px;
  overflow: hidden;
}

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

@media (max-width: 560px) {
  .mini-videos {
    grid-template-columns: 1fr;
  }
}

/* Contacto */
.contacto {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 4rem 1.5rem;
  text-align: center;
}

.contacto__title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 2.5rem;
}

.contacto__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.btn {
  display: inline-block;
  padding: .9rem 2.5rem;
  border: 2px solid #b3121f;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  transition: background .25s ease, color .25s ease;
}

.btn:hover {
  background: #b3121f;
}

.btn--whatsapp {
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #25d366;
  color: #000;
}

/* Misión Metal 2026 */
.mm2026 {
  position: relative;
  z-index: 2;
  background: #000;
}

.mm2026__banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mm2026__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.85));
}

.mm2026__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mm2026__title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
}

.documental {
  position: relative;
  z-index: 2;
  margin-top: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 55%);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.documental__title {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.documental__video {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 2.5rem;
  border-radius: 6px;
  overflow: hidden;
}

.documental__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.documental__text {
  max-width: 700px;
  margin: 0 auto;
  color: #e8e8e8;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.galeria {
  position: relative;
  z-index: 2;
  background: #b3121f;
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.galeria__title {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 2rem;
}

.galeria__slideshow {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  height: 420px;
  margin: 0 auto 2rem;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.galeria__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.galeria__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.galeria__text {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: left;
}

.galeria__text p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.galeria__text p:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 1.5rem 1.5rem;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.footer__logo {
  display: block;
  height: 42px;
  width: auto;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__menu a {
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.footer__menu a:hover {
  color: #b3121f;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.footer__social a {
  display: flex;
  color: #fff;
  transition: color .2s ease;
}

.footer__social a:hover {
  color: #b3121f;
}

.footer__copy {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .05em;
  color: rgba(255,255,255,.4);
}

/* ============ Responsive ============ */

html, body {
  overflow-x: hidden;
}

@media (max-width: 700px) {
  .footer__inner {
    justify-content: center;
    text-align: center;
  }

  .navbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: .6rem;
    padding: .8rem 1rem;
  }

  .navbar__logo {
    order: -1;
    padding: 0;
  }

  .navbar__logo img {
    height: 36px;
  }

  .navbar__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1rem;
  }

  .navbar__links--left,
  .navbar__links--right {
    justify-self: center;
  }

  .navbar__links a {
    font-size: .68rem;
    letter-spacing: .06em;
  }

  .lineup__stage {
    height: 300px;
  }

  .slide {
    flex-basis: 85%;
  }

  .galeria__slideshow {
    height: 300px;
  }

  .video-card__text {
    padding: 1.5rem;
  }

  .documental__video {
    max-width: 100%;
  }

  .album {
    flex-basis: 180px;
  }

  .discografia__spacer {
    flex-basis: calc(50% - 90px);
  }

  .album img {
    width: 180px;
    height: 180px;
  }
}
