/* ===== FOOTER ===== */

.footer {
  width: 100%;
  padding: 4rem 0;
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
}

.footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footer_left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
}

.footer_left > h2 {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer_left > h2 > span {
  color: var(--gold);
}

.footer_left > p {
  color: var(--text-muted);
}

.footer_licencia {
  color: var(--text-dim);
  margin-top: 0.6rem;
}

.footer_right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer_nav {
  display: flex;
  gap: 2rem;
}

.footer_nav > a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer_nav > a:hover {
  color: var(--gold);
}

.footer_copy {
  color: var(--text-dim);
}

@media (max-width: 1024px) {
  .footer_content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_right {
    align-items: flex-start;
  }

  .footer_nav {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
