@charset "UTF-8";
/*! 
 * Responsividade — Breakpoints + media() + mq/mq-set
 * Versão: 1.2.0
 * Data: 2025-12-14
 * Autor: Herbert
 * Licença: Interna (projeto)
 * 
 * CHANGELOG v1.3:
 *  - Breakpoints unificados: tablet e phablet mesclados em mobile
 *  - Sistema simplificado para 4 faixas principais
 *  - Adicionado breakpoint especial para notebooks com altura limitada
 *  - Foco em: ultra-wide, desktop, notebook, mobile
 *
 * Breakpoints principais:
 *  • ultra-wide     → monitores muito largos (≥2000px) - Constrained Width Layout
 *  • desktop        → monitores normais (1600-1999px)
 *  • notebook       → notebooks (1180-1599px) - Base: 1180x580
 *  • mobile         → mobile + tablets (0-1179px) - Unified touch devices
 *
 * Breakpoint especial:
 *  • notebook-tight → notebooks com altura limitada (altura ≤640px, largura ≥1180px)
 *
 * Convenções:
 *  - Desktop-first: valor base é sempre desktop
 *  - Ultra-wide aplica restrição de largura máxima (Constrained Width Layout)
 *  - Mobile unificado: todos os dispositivos de toque (smartphones + tablets)
 */
/* 1) Padrão universal: imagem responsiva sem distorcer */
.img-fluid {
  display: block; /* evita espaçamento de inline elements */
  max-width: 100%; /* nunca ultrapassa o contêiner */
  height: auto; /* mantém proporção */
  vertical-align: middle;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* 2) Quando o contêiner tem tamanho fixo ou aspect-ratio
      e você quer PREENCHER (pode cortar bordas) */
.img-fit-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* preenche o box sem distorcer */
  -o-object-position: center;
     object-position: center;
}

/* 3) Quando quer ENCAIXAR sem cortar (pode sobrar “faixas”) */
.img-fit-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* mostra tudo, sem distorcer */
  -o-object-position: center;
     object-position: center;
}

/* 4) Opcional: imagens com pixels “nítidos” (ícones/prints/pixel-art) */
.img-pixelated {
  image-rendering: pixelated;
}

/* 5) Se o HTML tiver width/height nos atributos, garanta proporção pelo CSS */
img.img-fluid[width][height] {
  height: auto;
}

/* Cobre a tela inteira (viewport) usando absolute */
/* ==========================================================================
   %btn-secundary-circular — Placeholder SCSS (Botões circulares)
   --------------------------------------------------------------------------
   Componente
   --------------------------------------------------------------------------
   Um botão circular (ícone-only) usado para ações rápidas na UI onde o
   espaço é compacto e o visual precisa ser minimalista e consistente.

   Exemplos de uso:
   - Alternador de tema (light / dark) na barra de navegação
   - Fechar modais / overlays
   - Ações rápidas em cards/listas (adicionar, editar, excluir)
   - Icon buttons em toolbars, filtros e linhas de tabela
   --------------------------------------------------------------------------
   Características principais
   --------------------------------------------------------------------------
   - Forma: círculo (border-radius: 50%)
   - Conteúdo: normalmente somente ícone centralizado (sem texto)
   - Tamanhos suportados: compact / comfort / large (classes: .is-compact,
     .is-comfort, .is-large)
   - Implementado como placeholder `%btn-secundary-circular` para @extend
     ou como base para variantes específicas (.btn-*, .icon-btn, etc.)
   --------------------------------------------------------------------------
   Anatomia (o que o bloco define)
   --------------------------------------------------------------------------
   - Box model: largura/altura fixas (32 / 36 / 44), display inline-grid,
     place-items: center
   - Tipografia/ícone: > i { font-size } — ícone herda a cor via currentColor
   - Estados: :hover, :focus-visible, :active, :disabled
   - Transições: transform / box-shadow / background-color / outline-color
   --------------------------------------------------------------------------
   Tokens / variáveis esperadas (nome sugerido, definir no tema)
   --------------------------------------------------------------------------
   - --bg-btn-secundary-circular            (fundo padrão)
   - --cor-btn-secundary-circular           (cor do ícone/texto)
   - --bg-btn-hover-secundary-circular      (fundo no hover/focus/active)
   - --border-btn-secundary-circular        (cor do outline/anel)
   * Obs.: caso use map de tokens SCSS, mapear essas keys ao emitir variáveis
   --------------------------------------------------------------------------
   Acessibilidade & boas práticas
   --------------------------------------------------------------------------
   - Fornecer `aria-label` ou `title` ao usar somente ícone (ex.: <button
     aria-label="Fechar">).
   - Garantir tamanho mínimo de alvo de toque (recomendado 40x40 px para
     dispositivos touch). Se necessário, mantenha aparência 32px mas aumente
     o hit-area com padding ou ::before invisível.
   - Usar :focus-visible para destaque de teclado (o bloco já prevê).
   - Garantir contraste suficiente entre ícone e fundo (WCAG AA).
   - Preservar comportamento sem dependência de JS para foco e teclas
     (enter/space são nativas para <button>).
   --------------------------------------------------------------------------
   Variantes / extensões
   --------------------------------------------------------------------------
   - .is-compact  (32px)  — use quando o espaço for crítico
   - .is-comfort  (36px)  — padrão equilibrado
   - .is-large    (44px)  — quando precisar de alvo maior / ênfase visual
   - .with-hover-bg  — aplica fundo sutil no hover (definir token)
   - .is-filled      — versão preenchida (fundo com cor de destaque)
   --------------------------------------------------------------------------
   Observações finais
   --------------------------------------------------------------------------
   - Preferir usar este placeholder como base (`@extend %btn-secundary-circular`)
     ou copiar as regras para variantes específicas (ex.: .btn-icon, .btn-close).
   - Evitar colocar texto dentro do botão — se precisar de label visível,
     use `.btn-primary-circular` ou uma variante com texto.
   - Testar em diferentes contextos (navbar, lista, modal) para garantir
     alinhamento e espaçamento consistentes.
   ========================================================================== */
.hidden {
  visibility: hidden;
}

.ocultar {
  display: none !important;
}

.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.item-requerido {
  /* Muda a cor do texto do título */
  /* Apenas a borda vermelha e o fundo pulsante na .container */
}
.item-requerido .titulo {
  color: red !important;
}
.item-requerido .container {
  border: 1px solid #e92626 !important;
  /* Muda a cor do placeholder para vermelho */
  /* Compatibilidade com diferentes navegadores */
}
.item-requerido .container > button {
  color: #e92626 !important;
}
.item-requerido .container > input {
  animation: pulsar 1s infinite alternate ease-in-out;
}
.item-requerido .container > input::-moz-placeholder {
  color: rgba(248, 56, 56, 0.3294117647) !important;
  color: rgba(248, 3, 3, 0.937254902) !important;
  opacity: 1; /* Garante que a cor será aplicada corretamente */
}
.item-requerido .container > input::placeholder {
  color: rgba(248, 56, 56, 0.3294117647) !important;
  color: rgba(248, 3, 3, 0.937254902) !important;
  opacity: 1; /* Garante que a cor será aplicada corretamente */
}
.item-requerido .container > input::-webkit-input-placeholder {
  /* Chrome, Safari, Edge */
  color: rgba(248, 3, 3, 0.937254902) !important;
}
.item-requerido .container > input::-moz-placeholder {
  /* Firefox */
  color: rgba(248, 3, 3, 0.937254902) !important;
}
.item-requerido .container > input:-ms-input-placeholder {
  /* Internet Explorer */
  color: rgba(248, 3, 3, 0.937254902) !important;
}
.item-requerido .container > input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(248, 3, 3, 0.937254902) !important;
}

/* Animação de pulsação suave para a div.container */
@keyframes pulsar {
  0% {
    background-color: rgba(255, 0, 0, 0.02); /* Vermelho bem leve */
  }
  100% {
    background-color: rgba(255, 0, 0, 0.05); /* Um pouco mais forte */
  }
}
/* ==========================================================================
   %btn-close-standard — Botão de Fechar Padronizado (Premium)
   --------------------------------------------------------------------------
   Baseado no design do Painel de Notificações.
   Estilo circular, fundo vermelho suave, ícone branco.
   ========================================================================== */
.nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #ffa0a0;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar {
    background-color: #a53939;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar {
    color: #ffffff;
  }
}
.nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar > i {
  font-size: 1.125rem;
}
.nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar:hover {
  background-color: #ff7b7b;
  color: #ffffff;
  transform: scale(1.05);
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar:hover {
    background-color: #c94444;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar:hover {
    color: #ffffff;
  }
}
.nav-wrap-notification > section.notifications > .notifications-header > .btn-fechar:active {
  transform: scale(0.95);
}

/*! 
 * Responsividade — Breakpoints + media() + mq/mq-set
 * Versão: 1.2.0
 * Data: 2025-12-14
 * Autor: Herbert
 * Licença: Interna (projeto)
 * 
 * CHANGELOG v1.3:
 *  - Breakpoints unificados: tablet e phablet mesclados em mobile
 *  - Sistema simplificado para 4 faixas principais
 *  - Adicionado breakpoint especial para notebooks com altura limitada
 *  - Foco em: ultra-wide, desktop, notebook, mobile
 *
 * Breakpoints principais:
 *  • ultra-wide     → monitores muito largos (≥2000px) - Constrained Width Layout
 *  • desktop        → monitores normais (1600-1999px)
 *  • notebook       → notebooks (1180-1599px) - Base: 1180x580
 *  • mobile         → mobile + tablets (0-1179px) - Unified touch devices
 *
 * Breakpoint especial:
 *  • notebook-tight → notebooks com altura limitada (altura ≤640px, largura ≥1180px)
 *
 * Convenções:
 *  - Desktop-first: valor base é sempre desktop
 *  - Ultra-wide aplica restrição de largura máxima (Constrained Width Layout)
 *  - Mobile unificado: todos os dispositivos de toque (smartphones + tablets)
 */
:root[data-theme=light] {
  color-scheme: light;
  --gr-bg--V3--P1: #f9fafb;
  --gr-bg--V3--P2: #edf2ff;
  --gr-bg--V3--P3: #e0ebff;
  --gr-bg--V2--P1: #ffffff;
  --gr-bg--V2--P2: #e5e7eb;
  --gr-bg--V2--P3: #cbd5f5;
  --gr-bg--V2--P4: #ffffff;
  --gr-bg--V2--P5: #ffffff;
  --gr-bg--V2--P5: #edf2ff;
  --gr-bg--V2--P6: #edf2ff;
  --gr-bg--V1--P1: #ffffff;
  --gr-bg--V1--P2: #e5e7eb;
  --gr-bg--V1--P3: #cbd5f5;
  --gr-btn-soft--start: #6366f1;
  --gr-btn-soft--end: #ec4899;
  --gr-btn-soft--text: #ffffff;
  --gr-btn-soft--border: #4338ca;
  --gr-warm--start: #f97316;
  --gr-warm--end: #fbbf24;
}

:root[data-theme=dark] {
  color-scheme: dark;
  --gr-bg--V3--P1: #020617;
  --gr-bg--V3--P2: #0b1220;
  --gr-bg--V3--P3: #1d2846;
  --gr-bg--V2--P1: #374151;
  --gr-bg--V2--P2: #1f2937;
  --gr-bg--V2--P3: #111827;
  --gr-bg--V2--P4: #1f2937;
  --gr-bg--V2--P5: #1f2937;
  --gr-bg--V2--P5: #111827;
  --gr-bg--V2--P6: #111827;
  --gr-bg--V1--P1: #4b5563;
  --gr-bg--V1--P2: #374151;
  --gr-bg--V1--P3: #1f2937;
  --gr-btn-soft--start: #4338ca;
  --gr-btn-soft--end: #9d174d;
  --gr-btn-soft--text: #e0e7ff;
  --gr-btn-soft--border: #312e81;
  --gr-warm--start: #ea580c;
  --gr-warm--end: #f59e0b;
}

/*
----------------------------------------------------------------------------
Exemplo 1: Scrollbar vertical invisível por padrão, visível no hover
----------------------------------------------------------------------------*/
.tabela-larga {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
  -ms-overflow-style: auto;
}
.tabela-larga::-webkit-scrollbar {
  height: 6px;
}
@media (max-width: 1024px) {
  .tabela-larga::-webkit-scrollbar {
    height: 5px;
  }
}
@media (max-width: 768px) {
  .tabela-larga::-webkit-scrollbar {
    height: 4px;
  }
}
.tabela-larga::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.7);
  border-radius: 8px;
}
.tabela-larga::-webkit-scrollbar-track {
  background-color: transparent;
}
.tabela-larga::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.9);
}
.tabela-larga::-webkit-scrollbar-thumb:active {
  background-color: rgb(75, 85, 99);
}
.tabela-larga::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.tabela-larga::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.container-scroll {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: auto;
}
.container-scroll::-webkit-scrollbar {
  width: 10px;
}
.container-scroll::-webkit-scrollbar {
  height: 6px;
}
@media (max-width: 1024px) {
  .container-scroll::-webkit-scrollbar {
    width: 8px;
  }
  .container-scroll::-webkit-scrollbar {
    height: 5px;
  }
}
@media (max-width: 768px) {
  .container-scroll::-webkit-scrollbar {
    width: 6px;
  }
  .container-scroll::-webkit-scrollbar {
    height: 4px;
  }
}
.container-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 8px;
}
.container-scroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.container-scroll::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.container-scroll::-webkit-scrollbar-thumb:active {
  background-color: transparent;
}
.container-scroll::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.container-scroll::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.container-scroll:hover {
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
  -ms-overflow-style: auto;
}
.container-scroll:hover::-webkit-scrollbar {
  width: 10px;
}
.container-scroll:hover::-webkit-scrollbar {
  height: 6px;
}
@media (max-width: 1024px) {
  .container-scroll:hover::-webkit-scrollbar {
    width: 8px;
  }
  .container-scroll:hover::-webkit-scrollbar {
    height: 5px;
  }
}
@media (max-width: 768px) {
  .container-scroll:hover::-webkit-scrollbar {
    width: 6px;
  }
  .container-scroll:hover::-webkit-scrollbar {
    height: 4px;
  }
}
.container-scroll:hover::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.7);
  border-radius: 8px;
}
.container-scroll:hover::-webkit-scrollbar-track {
  background-color: transparent;
}
.container-scroll:hover::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.9);
}
.container-scroll:hover::-webkit-scrollbar-thumb:active {
  background-color: rgb(75, 85, 99);
}
.container-scroll:hover::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.container-scroll:hover::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.lista-oculta {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: auto;
}
.lista-oculta::-webkit-scrollbar {
  width: 10px;
}
@media (max-width: 1024px) {
  .lista-oculta::-webkit-scrollbar {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .lista-oculta::-webkit-scrollbar {
    width: 6px;
  }
}
.lista-oculta::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 8px;
}
.lista-oculta::-webkit-scrollbar-track {
  background-color: transparent;
}
.lista-oculta::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.lista-oculta::-webkit-scrollbar-thumb:active {
  background-color: transparent;
}
.lista-oculta::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.lista-oculta::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.sidebar-menu {
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
  -ms-overflow-style: auto;
}
.sidebar-menu::-webkit-scrollbar {
  width: 10px;
}
@media (max-width: 1024px) {
  .sidebar-menu::-webkit-scrollbar {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .sidebar-menu::-webkit-scrollbar {
    width: 6px;
  }
}
.sidebar-menu::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.7);
  border-radius: 8px;
}
.sidebar-menu::-webkit-scrollbar-track {
  background-color: transparent;
}
.sidebar-menu::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.9);
}
.sidebar-menu::-webkit-scrollbar-thumb:active {
  background-color: rgb(75, 85, 99);
}
.sidebar-menu::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.sidebar-menu::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.mobile-list {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
  -ms-overflow-style: auto;
}
.mobile-list::-webkit-scrollbar {
  width: 10px;
}
@media (max-width: 1024px) {
  .mobile-list::-webkit-scrollbar {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .mobile-list::-webkit-scrollbar {
    width: 6px;
  }
}
.mobile-list::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.7);
  border-radius: 8px;
}
.mobile-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.mobile-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.9);
}
.mobile-list::-webkit-scrollbar-thumb:active {
  background-color: rgb(75, 85, 99);
}
.mobile-list::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.mobile-list::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
@media (hover: hover) {
  .mobile-list {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    -ms-overflow-style: auto;
  }
  .mobile-list::-webkit-scrollbar {
    width: 10px;
  }
}
@media (hover: hover) and (max-width: 1024px) {
  .mobile-list::-webkit-scrollbar {
    width: 8px;
  }
}
@media (hover: hover) and (max-width: 768px) {
  .mobile-list::-webkit-scrollbar {
    width: 6px;
  }
}
@media (hover: hover) {
  .mobile-list::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 8px;
  }
  .mobile-list::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .mobile-list::-webkit-scrollbar-thumb:hover {
    background-color: transparent;
  }
  .mobile-list::-webkit-scrollbar-thumb:active {
    background-color: transparent;
  }
  .mobile-list::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .mobile-list::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }
  .mobile-list:hover {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
    -ms-overflow-style: auto;
  }
  .mobile-list:hover::-webkit-scrollbar {
    width: 10px;
  }
}
@media (hover: hover) and (max-width: 1024px) {
  .mobile-list:hover::-webkit-scrollbar {
    width: 8px;
  }
}
@media (hover: hover) and (max-width: 768px) {
  .mobile-list:hover::-webkit-scrollbar {
    width: 6px;
  }
}
@media (hover: hover) {
  .mobile-list:hover::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.7);
    border-radius: 8px;
  }
  .mobile-list:hover::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .mobile-list:hover::-webkit-scrollbar-thumb:hover {
    background-color: rgba(107, 114, 128, 0.9);
  }
  .mobile-list:hover::-webkit-scrollbar-thumb:active {
    background-color: rgb(75, 85, 99);
  }
  .mobile-list:hover::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
  }
  .mobile-list:hover::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }
}

/* =========================================
   PAINEL DE NOTIFICAÇÕES - PREMIUM REDESIGN
   ========================================= */
.nav-wrap-notification {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  --notif-enter-dur: 220ms;
  --notif-exit-dur: 180ms;
  --notif-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media only screen and (max-width: 1179px) {
  .nav-wrap-notification {
    width: 100vw;
  }
}
@media only screen and (max-width: 1179px) {
  .nav-wrap-notification {
    height: 100vh;
  }
}
.nav-wrap-notification > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  cursor: pointer;
  opacity: 0;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > .overlay {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.nav-wrap-notification > section.notifications {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transition: opacity var(--notif-enter-dur) var(--notif-ease);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
  background: linear-gradient(135deg, var(--gr-bg--V3--P1) 0%, var(--gr-bg--V3--P2) 50%, var(--gr-bg--V3--P3) 100%);
}
@media only screen and (max-width: 1179px) {
  .nav-wrap-notification > section.notifications {
    width: 100vw;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  }
}
.nav-wrap-notification > section.notifications > .notifications-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
}
.nav-wrap-notification > section.notifications > .notifications-header > .header-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.nav-wrap-notification > section.notifications > .notifications-header > .header-content > .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.nav-wrap-notification > section.notifications > .notifications-header > .header-content > .badge > i {
  font-size: 0.875rem;
}
.nav-wrap-notification > section.notifications > .notifications-header > .header-content > .titulo {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-header > .header-content > .titulo {
    color: #ffffff;
  }
}
.nav-wrap-notification > section.notifications > .notifications-header > .header-content > .subtitulo {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-header > .header-content > .subtitulo {
    color: #9ca3af;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  overflow-x: auto;
  flex-shrink: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: auto;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar {
  height: 6px;
}
@media (max-width: 1024px) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar {
    height: 5px;
  }
}
@media (max-width: 768px) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar {
    height: 4px;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 8px;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar-track {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar-thumb:active {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
  -ms-overflow-style: auto;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar {
  height: 6px;
}
@media (max-width: 1024px) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar {
    height: 5px;
  }
}
@media (max-width: 768px) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar {
    height: 4px;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.7);
  border-radius: 8px;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar-track {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.9);
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar-thumb:active {
  background-color: rgb(75, 85, 99);
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header:hover::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background-color: #ffffff;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip {
    background-color: #374151;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip {
    color: #9ca3af;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip {
    border: 1px solid #4b5563;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip > .chip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #f3f4f6;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip > .chip-badge {
    background-color: #4b5563;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip > .chip-badge {
    color: #9ca3af;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip:hover {
  background-color: #f9fafb;
  border: 1px solid #6366f1;
  transform: translateY(-1px);
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip:hover {
    background-color: #4b5563;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip:hover {
    border: 1px solid #818cf8;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip.is-active {
  background-color: #6366f1;
  color: #ffffff;
  border-color: transparent;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip.is-active {
    background-color: #4f46e5;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip.is-active {
    color: #ffffff;
  }
}
.nav-wrap-notification > section.notifications > .notifications-pos-header > .filter-chip.is-active > .chip-badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.nav-wrap-notification > section.notifications > .notifications-main {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  -ms-overflow-style: auto;
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar {
  width: 10px;
}
@media (max-width: 1024px) {
  .nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar {
    width: 6px;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 8px;
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar-track {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar-thumb:active {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.nav-wrap-notification > section.notifications > .notifications-main::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.nav-wrap-notification > section.notifications > .notifications-main:hover {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.7) transparent;
  -ms-overflow-style: auto;
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar {
  width: 10px;
}
@media (max-width: 1024px) {
  .nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar {
    width: 8px;
  }
}
@media (max-width: 768px) {
  .nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar {
    width: 6px;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.7);
  border-radius: 8px;
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar-track {
  background-color: transparent;
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar-thumb:hover {
  background-color: rgba(107, 114, 128, 0.9);
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar-thumb:active {
  background-color: rgb(75, 85, 99);
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.nav-wrap-notification > section.notifications > .notifications-main:hover::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card {
    background-color: #1f2937;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card {
    border: 1px solid #374151;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .status-dot {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-read=false] > .status-dot {
  opacity: 1;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-read=true] > .status-dot {
  opacity: 0;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .icon-wrapper > i {
  font-size: 1.25rem;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content > .notification-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #111827;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content > .notification-title {
    color: #f9fafb;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content > .notification-message {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content > .notification-message {
    color: #9ca3af;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content > .notification-time {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 4px;
  color: #9ca3af;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card > .notification-content > .notification-time {
    color: #6b7280;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card:hover {
    background-color: #374151;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=info] > .status-dot {
  background-color: #3b82f6;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=info] > .status-dot {
    background-color: #60a5fa;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=info] > .icon-wrapper {
  background-color: #dbeafe;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=info] > .icon-wrapper {
    background-color: #1e3a8a;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=info] > .icon-wrapper > i {
  color: #3b82f6;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=info] > .icon-wrapper > i {
    color: #60a5fa;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=success] > .status-dot {
  background-color: #16a34a;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=success] > .status-dot {
    background-color: #4ade80;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=success] > .icon-wrapper {
  background-color: #dcfce7;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=success] > .icon-wrapper {
    background-color: #14532d;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=success] > .icon-wrapper > i {
  color: #16a34a;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=success] > .icon-wrapper > i {
    color: #4ade80;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=warning] > .status-dot {
  background-color: #eab308;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=warning] > .status-dot {
    background-color: #fde047;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=warning] > .icon-wrapper {
  background-color: #fef3c7;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=warning] > .icon-wrapper {
    background-color: #78350f;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=warning] > .icon-wrapper > i {
  color: #eab308;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=warning] > .icon-wrapper > i {
    color: #fde047;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=danger] > .status-dot {
  background-color: #ef4444;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=danger] > .status-dot {
    background-color: #f87171;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=danger] > .icon-wrapper {
  background-color: #fee2e2;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=danger] > .icon-wrapper {
    background-color: #7f1d1d;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=danger] > .icon-wrapper > i {
  color: #ef4444;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=danger] > .icon-wrapper > i {
    color: #f87171;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=security] > .status-dot {
  background-color: #f97316;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=security] > .status-dot {
    background-color: #fb923c;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=security] > .icon-wrapper {
  background-color: #fed7aa;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=security] > .icon-wrapper {
    background-color: #7c2d12;
  }
}
.nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=security] > .icon-wrapper > i {
  color: #f97316;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main > .notification-card[data-type=security] > .icon-wrapper > i {
    color: #fb923c;
  }
}
.nav-wrap-notification > section.notifications > .notifications-footer {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #e5e7eb !important;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-footer {
    border: 1px solid #374151 !important;
  }
}
.nav-wrap-notification > section.notifications > .notifications-footer > .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  color: #6366f1;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-footer > .view-all-link {
    color: #818cf8;
  }
}
.nav-wrap-notification > section.notifications > .notifications-footer > .view-all-link > i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.nav-wrap-notification > section.notifications > .notifications-footer > .view-all-link:hover {
  color: #4f46e5;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-footer > .view-all-link:hover {
    color: #a5b4fc;
  }
}
.nav-wrap-notification > section.notifications > .notifications-footer > .view-all-link:hover > i {
  transform: translateX(4px);
}

/* =========================================
   ESTADOS (Visibilidade / Animação)
   ========================================= */
.nav-wrap-notification.ocultar {
  display: none;
}

.nav-wrap-notification.is-open,
.nav-wrap-notification.is-closing {
  pointer-events: auto;
}

.nav-wrap-notification.is-open > .overlay {
  opacity: 1;
}
.nav-wrap-notification.is-open > section.notifications {
  opacity: 1;
}

.nav-wrap-notification.is-closing > .overlay {
  opacity: 0;
  transition-duration: var(--notif-exit-dur);
}
.nav-wrap-notification.is-closing > section.notifications {
  opacity: 0;
  transition-duration: var(--notif-exit-dur);
}

@media (prefers-reduced-motion: reduce) {
  .nav-wrap-notification,
  .nav-wrap-notification * {
    transition: none !important;
    animation: none !important;
  }
}/*# sourceMappingURL=cop.notifications-panel.css.map */