/* --- FOOTER GLOBAL --- */
.app-footer {
  margin-top: 50px;
  /* Separación del contenido */
  padding: 30px 20px;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.2);
  /* Fondo sutilmente más oscuro */
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-brand span {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--success);
  /* Color verde al pasar el mouse */
}

/* Versión Escritorio: Pone los elementos en una línea */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}