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

.footer {
  background: rgba(248,250,252,0.85);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.7);
  padding: 2rem 0 1.5rem;
}
:root.dark .footer {
  background: rgba(10,12,18,0.88);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* Fila principal */
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* Marca */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__brand img {
  width: 36px; height: 36px;
  object-fit: contain;
}
:root.dark .footer__brand img { filter: brightness(0) invert(1); }

.footer__brand strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.footer__brand small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Links */
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--primary); }

/* Copyright */
.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin: 0;
}
