/* Capitalizar mês no calendário (ex: Março de 2026) */
.fc .fc-toolbar-title {
  text-transform: capitalize;
}

/* Ocultar Quick Create na topbar (botão + com dropdown) */
.nav.navbar-nav.visible-md.visible-lg {
  display: none !important;
}

/* Estilos para artigos da Ajuda Online (guia passo a passo) */
.kb-article-guide .kb-step {
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 4px solid var(--primary, #6366f1);
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
}
.kb-article-guide .kb-numero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary, #6366f1);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
.kb-article-guide .kb-img-placeholder {
  margin-top: 1rem;
  padding: 1rem;
  background: #e2e8f0;
  border: 2px dashed #94a3b8;
  border-radius: 8px;
  color: #64748b;
  font-size: 0.9rem;
}
.kb-article-guide .kb-dica {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fef3c7;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}
.kb-article-guide h2 { margin-bottom: 1.5rem; }
.kb-article-guide h3 { margin-top: 0; font-size: 1.1rem; }
