/* =========================
   FOOTER
========================= */
footer.footer {
  margin: 0 !important;
  padding: 0 !important;
}

.footer {
  background: #f8f9fa;
  color: #212529;
  padding: 30px 0;
  font-size: 0.9rem;
  text-align: center; /* centraliza tudo por padrão */
}

/* Logo sempre centralizada */
.footer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/* Navegação horizontal */
.footer-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-navigation li {
  display: inline;
}
.footer-navigation a {
  color: inherit;
  text-decoration: none;
}
.footer-navigation a:hover {
  text-decoration: underline;
}

/* Sociais lado a lado */
.footer-sociais {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-sociais a {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Copyright */
.site-bellow-footer {
  border-top: 1px solid #444; /* borda mais discreta no dark */
  margin: 0;                  /* remove margens extras */
  padding: 6px 0;             /* altura enxuta */
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
}

/* Dark Mode */
body.dark-mode .site-bellow-footer {
  background-color: #0f172a; /* fundo igual ao resto do rodapé */
  border-top: 1px solid #334155;
  color: #94a3b8;            /* cinza claro, visível no dark */
}

body.dark-mode .site-bellow-footer a {
  color: #38bdf8; /* azul claro */
}


/* ===== FIX FOOTER NO SMARTPHONE ===== */
@media (max-width: 768px) {
  footer.footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: center !important;
  }

  footer.footer .footer-section {
    width: 100% !important;
  }

  /* Logo sempre centralizada */
  footer.footer .footer-logo {
    text-align: center !important;
  }
  footer.footer .footer-logo img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 180px;
    height: auto;
  }

  /* Menu horizontal e centralizado */
  footer.footer .footer-navigation ul,
  footer.footer .footer-navigation #footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 12px 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 16px !important;
  }
  footer.footer .footer-navigation li {
    display: inline !important;
  }

  /* Sociais lado a lado e centralizado */
  footer.footer .footer-sociais {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-bottom: 12px !important;
  }
}
