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

/* COLORES BASE */
:root {
  --gold: #983628;
  --black: #000;
}

/* BODY */
html, body {
  width: 100%;
  height: 100%;
  background: #000;
  font-family: "Montserrat", sans-serif;
}

/* PAGE WRAPPER */
.page {
  width: 100%;
  height: 100dvh; /* importante para mobile */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #000;
}

/* CONTENEDOR PRINCIPAL */
.card {
  flex: 1;
  margin: 21px 21px 0px 21px;
  border-radius: 10px;
  background-image: url("img/bg-desktop.webp");
  background-size: cover;
  background-position:top center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}

/* BARRA DE PLATAFORMAS */
.platforms {
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 18px 28px 14px 28px;
  display: flex;
  gap: 26px;
  align-items: center;
}

.platforms {
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.platforms:hover {
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}


.platforms img {
  height: 18px;
  opacity: 0.85;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.3s ease,
    transform 0.35s ease,
    filter 0.35s ease;
  transform-origin: center;
}


.platforms a:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 8px rgba(201, 138, 82, 0.45));
}


/* FOOTER */
.footer {
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

.footer-right {
  display: flex;
  gap: 10px;
}

.footer-right img {
  height: 14px;
  width: auto;
  opacity: 0.85;
  transition:
    opacity 0.3s ease,
    transform 0.35s ease,
    filter 0.35s ease;
  transform-origin: center;
}

.footer-right img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-right a:hover img {
  opacity: 1;
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 0 6px rgba(152, 54, 40, 0.6));
}

/* ICONOS PLACEHOLDER (puedes cambiar por SVG reales) */
.icon {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.mobile-artist {
  display: none;
}


/* MOBILE */
@media (max-width: 800px) {

  .card {
    margin: 16px;
    padding-bottom: 64px;
    background-image: url("img/bg-mobile.webp");
    background-position: center;
    position:relative;
  }

  .mobile-artist {
    display: block;
    position: absolute;
    top: 4vh;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 80%;
    height: auto;
    z-index: 2;
    pointer-events: none;
  }

 .platforms {
    width: calc(100% - 24px);
    padding: 2.7vh 8vw 2.2vh 8vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1vh;
    column-gap: 7vw;
  }

  .platforms img {
    height: 2vh;
  }

  .footer {
    font-size: 10px;
  }
}
