/* ======================================================
   FOOTER — HOMEGYM ARACENA (FINAL DEFINITIVO)
   Desktop · Android · iOS
====================================================== */

/* ===============================
   FOOTER BASE
================================ */
footer{
  position: relative;
  padding: 42px 0;
  background: var(--bg);
  border-top: var(--border-soft);
  overflow: hidden;
}

/* Glow superior sutil */
footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      600px 120px at 50% 0%,
      rgba(255,138,0,.18),
      transparent 70%
    );
  pointer-events: none;
}

/* ===============================
   CONTENEDOR
================================ */
.footer-inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 92%;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===============================
   LOGO FOOTER
================================ */
.footer-inner img{
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255,138,0,.35));
  transition: transform .3s ease, filter .3s ease;
}

.footer-inner img:hover{
  transform: scale(1.05);
  filter: drop-shadow(0 0 16px rgba(255,138,0,.55));
}

/* ===============================
   TEXTO
================================ */
.footer-inner p{
  color: var(--muted-soft);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  text-align: end;
  max-width: 520px;
}

/* ===============================
   LINKS (FUTUROS)
================================ */
.footer-inner a{
  color: inherit;
  transition: color .25s ease;
}

.footer-inner a:hover{
  color: var(--orange);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 640px){

  footer{
    padding: 36px 0;
  }

  .footer-inner{
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-inner p{
    text-align: center;
    font-size: 12px;
  }

  .footer-inner img{
    width: 100px;
  }
}
