/* =========================================================
   footer.css — Rodapé do site
   ========================================================= */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Lado esquerdo: ícone + nome ── */
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Centro: links ── */
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ── Direita: copyright ── */
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

/* ── Responsividade ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 5%;
    gap: 20px;
  }
}
