/* css/footer.css */
/* Autor: Axel Cotón Gutiérrez */

footer.footer {
  width: 100%;
  box-sizing: border-box;
  overflow-x: visible;
  padding: 0.4rem 1rem 0.45rem;
  text-align: center;
  background: linear-gradient(180deg, #fffefb 0%, #f8f3e8 100%);
  color: #111111;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.2;
  border-top: 1px solid var(--dorado-2, #c89b3c);
  box-shadow: none;
}

#footer-placeholder {
  width: 100%;
  background: #ffffff;
}

#footer-placeholder footer.footer {
  background: linear-gradient(180deg, #fffefb 0%, #f8f3e8 100%);
}

footer.footer p {
  margin: 0;
  color: #a87c1f;
  font-weight: 700;
  letter-spacing: 0.01em;
}

footer.footer a {
  color: var(--dorado-1, #a87c1f);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

footer.footer a:hover {
  color: var(--dorado-2, #c89b3c);
  text-decoration: none;
}

footer.footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 0.15rem 0 0 0;
  padding: 0;
}

footer.footer .footer-links li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

footer.footer img {
  display: block;
  width: 72px;
  max-width: min(72px, 30vw);
  height: auto;
  filter: none;
}

footer.footer a:hover img {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  footer.footer {
    padding: 0.35rem 0.75rem 0.4rem;
    font-size: 0.9rem;
  }

  footer.footer .footer-links {
    margin-top: 0.1rem;
  }

  footer.footer img {
    width: 62px;
    max-width: 28vw;
  }
}