/* ── Footer compartido — Alquemet ── */
.footer {
  background: #f8f6f2;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 3.5rem 6vw 1.8rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 1.8rem;
}

.footer-logo img {
  width: 170px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem 1.8rem;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  color: #999;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: #C8963E; }

.footer-bottom {
  display: flex;
  justify-content: center;
}

.footer-copy {
  font-size: 0.62rem;
  color: #bbb;
  letter-spacing: 0.07em;
}

@media (max-width: 600px) {
  .footer {
    padding: 2.5rem 6vw 1.6rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 0.25rem 0.9rem;
  }

  .footer-links a {
    min-height: 48px;
    padding: 0 0.25rem;
    font-size: 0.72rem;
  }
}
