/* Footer styles extracted for standalone use */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb; /* light gray similar to dashboard separators */
  margin-top: 32px;
}
.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo {
  height: 16px;      /* controla o tamanho no desktop */
  width: auto;       /* mantém proporção original */
  max-height: 16px;  /* garante limite superior */
  max-width: 100%;
  opacity: 0.9;
}

/* Evita logos grandes em telas pequenas */
@media (max-width: 640px) {
  .footer-logo {
    height: 14px;   /* ainda menor no mobile */
    width: auto;
    max-height: 14px;
  }
}
.footer-title {
  font-weight: 600;
  color: #374151; /* slate-700 */
}
.footer-links {
  display: flex;
  flex-wrap: wrap;           /* permite quebrar em múltiplas linhas */
  gap: 8px 16px;             /* espaço entre itens (linha x coluna) */
}
.footer-link {
  color: #4b5563; /* slate-600 */
  text-decoration: none;
  overflow-wrap: anywhere;   /* evita overflow em links longos (email/telefone) */
}
.footer-link:hover {
  color: #111827; /* slate-900 */
  text-decoration: underline;
}
.footer-meta {
  margin-top: 8px;
  color: #6b7280; /* slate-500 */
  font-size: 13px;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
