/* ==========================================================================
   Estilos de Navegação
   ========================================================================== */

/* Ocultar botão de busca global no navbar */
.navbar__search-btn {
  display: none !important;
}

/* Ícones de Perfil */
.profile-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navbar-background);
  border: 1px solid var(--slate-500);
  padding: 0.35rem;
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.profile-icon {
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  object-fit: cover;
}

/* Link de Pular Navegação (Acessibilidade) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-black, #000);
  color: var(--color-white, #fff);
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Ajustes para Dispositivos Móveis */
@media (max-width: 768px) {
  /* Aumentar tamanho da fonte para links de navegação */
  .appmenu .menu-item > a {
    font-size: var(--font-size-4);
  }
}
