/* ==========================================================================
   SECTION 5 & BRANDING: FOOTER & STICKY REKALP BRANDING BAR
   Refatorado para alinhamento centralizado 480px no desktop
   ========================================================================== */

/* Rodapé Principal do EPK com Foto de Fundo Hi-Fi */
.epk-footer {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 340px;
  padding: var(--space-3xl) 0 var(--space-3xl);
  background-color: var(--color-black);
  border-top: 1px solid rgba(249, 247, 246, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Camada de Imagem de Fundo do Footer */
.epk-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(180deg, rgba(6, 5, 5, 0.35) 0%, rgba(6, 5, 5, 0.45) 50%, rgba(6, 5, 5, 0.85) 100%),
    url('https://pub-9d5cb5bd1f704bdaa6bd1cd3849c86b1.r2.dev/footer/footer-pic.jpg');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.2) brightness(0.9);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  text-align: center;
  width: 100%;
}

/* Main Graphic Logo no Rodapé (LIUPARDO-MAIN-LOGO.svg) */
.footer-logo-img {
  width: 100%;
  max-width: 361px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

/* Copyright Metadados em Geist Mono 500 */
.footer-copyright {
  font-family: var(--font-mono);
  font-weight: var(--text-mono-weight-medium);
  font-size: 10px;
  line-height: 130%;
  letter-spacing: 0.4em;
  color: rgba(249, 247, 246, 0.9);
  text-transform: uppercase;
  margin: 0;
}

/* --------------------------------------------------------------------------
   BRANDING STICKY FOOTER (Barra Rekalp Studios Centralizada 480px)
   -------------------------------------------------------------------------- */
.rekalp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  min-height: 40px;
  background-color: rgba(6, 5, 5, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(249, 247, 246, 0.12);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--space-xs) var(--container-padding);
  gap: var(--space-xs);
  z-index: 9999;
}

.rekalp-sticky-bar .powered-by-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.08em;
}

.rekalp-sticky-bar .rekalp-logo-svg {
  width: 54px;
  height: auto;
  display: flex;
  align-items: center;
}

.rekalp-sticky-bar .rekalp-logo-svg svg {
  width: 100%;
  height: auto;
  display: block;
}
