/* ===============================
   FOOTER PRINCIPAL
   =============================== */
#main-footer {
  background-color: #1a1d27;
  color: #DAAD5C;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid #333;
  width: 100%;
  box-sizing: border-box;
}

#main-footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

#main-footer p {
  margin: 0;
  line-height: 1.5;
}

#main-footer .footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

#main-footer .footer-nav a {
  color: #DAAD5C;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  border-radius: 4px;
  padding: 2px 8px;
}

#main-footer .footer-nav a:hover,
#main-footer .footer-nav a:focus {
  color: #fff;
  background: rgba(218,173,92,0.08);
  outline: none;
}

.footer-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.footer-links a svg {
  width: 24px;
  height: 24px;
  fill: #DAAD5C;
  transition: fill 0.3s;
}

.footer-links a:hover svg {
  fill: #ffffff;
}


/* Responsive */
@media screen and (max-width: 768px) {
  #main-footer {
    padding: 22px 8px;
    font-size: 0.9rem;
  }

  #main-footer .footer-content {
    gap: 12px;
  }

  #main-footer .footer-nav {
    gap: 12px;
    font-size: 0.98em;
  }
}

/* Accesibilidad: focus visible */
#main-footer .footer-nav a:focus-visible {
  outline: 2px solid #DAAD5C;
  outline-offset: 2px;
}