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

footer {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: auto;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  background: none;
  color: var(--color-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.footer-link:hover {
  background-color: var(--color-hover);
  transform: translateY(-2px);
}

.footer-link svg {
  width: 18px;
  height: 18px;
}

#btn-sobre-mi {
  background-color: rgba(139, 90, 43, 0.35);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

#btn-sobre-mi:hover {
  background-color: rgba(139, 90, 43, 0.55);
  transform: translateY(-2px);
}

footer p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-link {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}