/* ─── FOOTER ─── */
footer {
  background: #040810;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-body);
}

.footer-left {
  white-space: nowrap;
}

.footer-right {
  text-align: right;
  white-space: nowrap;
}

.footer-right a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--blue-glow);
}

/* ─── RESPONSIVO ─── */
@media (max-width: 640px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 6px;
  }

  .footer-left,
  .footer-right {
    white-space: normal;
    text-align: center;
  }
}
