/* =========================================================
   FOOTER
   Fila superior: logo del server | logo Devs.
   Debajo: redes sociales, copyright, y crédito de autor.
   Requiere las variables de :root de style.min.css
   (--gold, --gold-light, --gold-glow).
   ========================================================= */

.footer-mu {
  background: #000;
  border-top: 1px solid rgba(221, 171, 94, .15);
  padding: 60px 0 30px;
}

.footer-mu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  max-width: 480px;
  text-align: center;
}

/* ---------- fila de logos ---------- */

.footer-brands {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-logo {
  filter: drop-shadow(0 0 10px rgba(221, 171, 94, .35));
  height: 88px;
  transition: filter .3s ease, transform .3s ease;
  width: auto;
}

.footer-logo:hover {
  filter: drop-shadow(0 0 20px var(--gold-glow));
  transform: scale(1.05);
}

.footer-brands-sep {
  background: linear-gradient(180deg, transparent, rgba(221, 171, 94, .35), transparent);
  height: 56px;
  width: 1px;
}

.footer-devs-link {
  align-items: center;
  display: inline-flex;
  transition: filter .25s ease, transform .25s ease;
}

.footer-devs-link:hover {
  filter: drop-shadow(0 0 12px var(--gold-glow));
  transform: scale(1.05);
}

.footer-devs-logo {
  height: 50px;
  width: auto;
}

/* ---------- redes sociales ----------
   Reutiliza .hero-social .redes-top (hero.css). */

.footer-social.hero-social {
  margin: 0;
}

/* ---------- copyright ---------- */

.footer-copy {
  color: #8b95a5;
  font-family: 'Play', sans-serif;
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ---------- crédito de autor ---------- */

.footer-author {
  color: #555;
  font-family: 'Play', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.footer-author strong {
  color: var(--gold-light);
  font-weight: 800;
  text-shadow: 0 0 8px var(--gold-glow);
}

/* ---------- responsive ---------- */

@media (max-width: 480px) {
  .footer-mu {
    padding: 48px 0 24px;
  }

  .footer-brands {
    gap: 16px;
  }

  .footer-logo {
    height: 64px;
  }

  .footer-brands-sep {
    height: 40px;
  }

  .footer-devs-logo {
    height: 36px;
  }
}