@charset "UTF-8";
/*! 
 * Responsividade — Breakpoints + media() + mq/mq-set
 * Versão: 1.1.0
 * Data: 2025-09-19
 * Autor: Herbert
 * Licença: Interna (projeto)
 * 
 * Descrição:
 *  - Mapa de breakpoints semânticos ($breakpoints).
 *  - Função media($alias) → "only screen and (...)".
 *  - Mixin mq($prop, $pairs...) [robusto]: 
 *      * aceita pares em formato flexível (com/sem parênteses, múltiplos pares),
 *      * agrupa <alias> + <valor(es)>,
 *      * define BASE **desktop-first**:
 *          - se existir `desktop`, usa como base;
 *          - senão, se existir `ultra-wide`, usa como base;
 *          - senão, usa o 1º alias informado,
 *      * emite @media para cada alias informado ≠ base.
 *  - Mixin mq-set($map): aplica várias propriedades de uma vez usando mq.
 *
 * Requisitos:
 *  - Compilador: Dart Sass recomendado.
 *  - SCSS: uso de funções de lista e strings (append, nth, length, type-of).
 *
 * Convenções:
 *  - Desktop-first: valor base é sempre uma faixa desktop (idealmente `desktop`).
 *  - Alias principais de layout:
 *      • mobile      → telefones
 *      • tablet-*    → tablets por faixa/orientação
 *      • desktop     → monitores "normais"
 *      • ultra-wide  → monitores muito largos
 *  - Para valores com vírgulas (gradients, múltiplos box-shadows): prefira variável ou unquote("...").
 *
 * Erros comuns (mensagens emitidas):
 *  - token 'X' não é um alias conhecido → alias não existe em $breakpoints.
 *  - nenhum valor para alias 'X' → faltou o valor após o alias.
 *  - tokens vazios após normalização → include sem pares válidos.
 *
 * Links internos:
 *  - DOCUMENTAÇÃO DE USO: ver wiki do projeto (Seção: Responsividade).
 */
.toolbar {
  display: flex;
  justify-content: flex-start;
  /* em tablet-sm centraliza */
  justify-content: center;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 599px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1023px) {
  .card-list {
    gap: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .card-list {
    gap: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .card-list {
    padding: 18px;
  }
}
@media only screen and (max-width: 599px) {
  .card-list {
    padding: 12px;
  }
}

.panel {
  max-width: 80%;
  min-width: 60%;
}
@media only screen and (max-width: 1023px) {
  .panel {
    max-width: 760px;
  }
}
@media only screen and (max-width: 833px) {
  .panel {
    max-width: 72ch;
  }
}
@media only screen and (max-width: 819px) {
  .panel {
    max-width: 92%;
  }
}
@media only screen and (max-width: 599px) {
  .panel {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .panel {
    min-width: 70%;
  }
}
@media only screen and (max-width: 833px) {
  .panel {
    min-width: fit-content(72ch);
  }
}
@media only screen and (max-width: 819px) {
  .panel {
    min-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .panel {
    min-width: 100%;
  }
}

.box {
  padding: 24px 32px;
  transform: translateX(0) translateY(0);
}
@media only screen and (max-width: 1023px) {
  .box {
    padding: 18px 24px;
  }
}
@media only screen and (max-width: 599px) {
  .box {
    padding: 12px 16px;
  }
}
@media only screen and (max-width: 599px) {
  .box {
    transform: translateX(-8px) translateY(0);
  }
}

.modal {
  min-height: 75vh;
  max-height: 92vh;
}
@media only screen and (max-width: 1023px) {
  .modal {
    min-height: 75vh;
  }
}
@media only screen and (max-width: 833px) {
  .modal {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
@media only screen and (max-width: 819px) {
  .modal {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
@media only screen and (max-width: 599px) {
  .modal {
    min-height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .modal {
    max-height: 90vh;
  }
}
@media only screen and (max-width: 833px) {
  .modal {
    max-height: 88vh;
  }
}
@media only screen and (max-width: 819px) {
  .modal {
    max-height: 92vh;
  }
}
@media only screen and (max-width: 599px) {
  .modal {
    max-height: 100vh;
  }
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    flex-direction: row;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    align-items: center;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    align-items: stretch;
  }
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    justify-content: center;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    justify-content: center;
  }
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    gap: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    gap: 8px;
  }
}

.hero-banner {
  height: 60vh;
}
@media only screen and (orientation: portrait) {
  .hero-banner {
    height: 40vh;
  }
}
@media only screen and (max-width: 599px) {
  .hero-banner {
    height: 36vh;
  }
}

.panel-debug {
  min-width: 70%;
}
@media only screen and (width: 1366px) {
  .panel-debug {
    min-width: 60%;
  }
}

.panel-prod {
  min-width: 60%;
}
@media only screen and (max-width: 1023px) {
  .panel-prod {
    min-width: 70%;
  }
}
@media only screen and (max-width: 819px) {
  .panel-prod {
    min-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .panel-prod {
    min-width: 100%;
  }
}

.title {
  font-size: 2.25rem;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
}
@media only screen and (max-width: 1023px) {
  .title {
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 599px) {
  .title {
    font-size: 1.6rem;
  }
}

.badge--desktop {
  display: inline-flex;
  display: none;
}

.badge--mobile {
  display: none;
  display: inline-flex;
}

.layout {
  display: grid;
  grid-template-areas: "aside main";
  grid-template-columns: 280px 1fr;
  grid-template-areas: main aside;
}
@media only screen and (max-width: 1023px) {
  .layout {
    grid-template-columns: 240px 1fr;
  }
}
@media only screen and (max-width: 599px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

aside {
  grid-area: aside;
}

main {
  grid-area: main;
}

/* 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 */
  }
}
/*! 
 * Responsividade — Breakpoints + media() + mq/mq-set
 * Versão: 1.1.0
 * Data: 2025-09-19
 * Autor: Herbert
 * Licença: Interna (projeto)
 * 
 * Descrição:
 *  - Mapa de breakpoints semânticos ($breakpoints).
 *  - Função media($alias) → "only screen and (...)".
 *  - Mixin mq($prop, $pairs...) [robusto]: 
 *      * aceita pares em formato flexível (com/sem parênteses, múltiplos pares),
 *      * agrupa <alias> + <valor(es)>,
 *      * define BASE **desktop-first**:
 *          - se existir `desktop`, usa como base;
 *          - senão, se existir `ultra-wide`, usa como base;
 *          - senão, usa o 1º alias informado,
 *      * emite @media para cada alias informado ≠ base.
 *  - Mixin mq-set($map): aplica várias propriedades de uma vez usando mq.
 *
 * Requisitos:
 *  - Compilador: Dart Sass recomendado.
 *  - SCSS: uso de funções de lista e strings (append, nth, length, type-of).
 *
 * Convenções:
 *  - Desktop-first: valor base é sempre uma faixa desktop (idealmente `desktop`).
 *  - Alias principais de layout:
 *      • mobile      → telefones
 *      • tablet-*    → tablets por faixa/orientação
 *      • desktop     → monitores "normais"
 *      • ultra-wide  → monitores muito largos
 *  - Para valores com vírgulas (gradients, múltiplos box-shadows): prefira variável ou unquote("...").
 *
 * Erros comuns (mensagens emitidas):
 *  - token 'X' não é um alias conhecido → alias não existe em $breakpoints.
 *  - nenhum valor para alias 'X' → faltou o valor após o alias.
 *  - tokens vazios após normalização → include sem pares válidos.
 *
 * Links internos:
 *  - DOCUMENTAÇÃO DE USO: ver wiki do projeto (Seção: Responsividade).
 */
.toolbar {
  display: flex;
  justify-content: flex-start;
  /* em tablet-sm centraliza */
  justify-content: center;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 24px;
}
@media only screen and (max-width: 1023px) {
  .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 599px) {
  .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1023px) {
  .card-list {
    gap: 16px;
  }
}
@media only screen and (max-width: 599px) {
  .card-list {
    gap: 12px;
  }
}
@media only screen and (max-width: 1023px) {
  .card-list {
    padding: 18px;
  }
}
@media only screen and (max-width: 599px) {
  .card-list {
    padding: 12px;
  }
}

.panel {
  max-width: 80%;
  min-width: 60%;
}
@media only screen and (max-width: 1023px) {
  .panel {
    max-width: 760px;
  }
}
@media only screen and (max-width: 833px) {
  .panel {
    max-width: 72ch;
  }
}
@media only screen and (max-width: 819px) {
  .panel {
    max-width: 92%;
  }
}
@media only screen and (max-width: 599px) {
  .panel {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .panel {
    min-width: 70%;
  }
}
@media only screen and (max-width: 833px) {
  .panel {
    min-width: fit-content(72ch);
  }
}
@media only screen and (max-width: 819px) {
  .panel {
    min-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .panel {
    min-width: 100%;
  }
}

.box {
  padding: 24px 32px;
  transform: translateX(0) translateY(0);
}
@media only screen and (max-width: 1023px) {
  .box {
    padding: 18px 24px;
  }
}
@media only screen and (max-width: 599px) {
  .box {
    padding: 12px 16px;
  }
}
@media only screen and (max-width: 599px) {
  .box {
    transform: translateX(-8px) translateY(0);
  }
}

.modal {
  min-height: 75vh;
  max-height: 92vh;
}
@media only screen and (max-width: 1023px) {
  .modal {
    min-height: 75vh;
  }
}
@media only screen and (max-width: 833px) {
  .modal {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
@media only screen and (max-width: 819px) {
  .modal {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
@media only screen and (max-width: 599px) {
  .modal {
    min-height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .modal {
    max-height: 90vh;
  }
}
@media only screen and (max-width: 833px) {
  .modal {
    max-height: 88vh;
  }
}
@media only screen and (max-width: 819px) {
  .modal {
    max-height: 92vh;
  }
}
@media only screen and (max-width: 599px) {
  .modal {
    max-height: 100vh;
  }
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    flex-direction: row;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    align-items: center;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    align-items: stretch;
  }
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    justify-content: center;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    justify-content: center;
  }
}
@media only screen and (max-width: 1023px) {
  .header-actions {
    gap: 10px;
  }
}
@media only screen and (max-width: 599px) {
  .header-actions {
    gap: 8px;
  }
}

.hero-banner {
  height: 60vh;
}
@media only screen and (orientation: portrait) {
  .hero-banner {
    height: 40vh;
  }
}
@media only screen and (max-width: 599px) {
  .hero-banner {
    height: 36vh;
  }
}

.panel-debug {
  min-width: 70%;
}
@media only screen and (width: 1366px) {
  .panel-debug {
    min-width: 60%;
  }
}

.panel-prod {
  min-width: 60%;
}
@media only screen and (max-width: 1023px) {
  .panel-prod {
    min-width: 70%;
  }
}
@media only screen and (max-width: 819px) {
  .panel-prod {
    min-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .panel-prod {
    min-width: 100%;
  }
}

.title {
  font-size: 2.25rem;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
}
@media only screen and (max-width: 1023px) {
  .title {
    font-size: 1.9rem;
  }
}
@media only screen and (max-width: 599px) {
  .title {
    font-size: 1.6rem;
  }
}

.badge--desktop {
  display: inline-flex;
  display: none;
}

.badge--mobile {
  display: none;
  display: inline-flex;
}

.layout {
  display: grid;
  grid-template-areas: "aside main";
  grid-template-columns: 280px 1fr;
  grid-template-areas: main aside;
}
@media only screen and (max-width: 1023px) {
  .layout {
    grid-template-columns: 240px 1fr;
  }
}
@media only screen and (max-width: 599px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

aside {
  grid-area: aside;
}

main {
  grid-area: main;
}

: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;
}

: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;
}

/* =========================================
   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: 599px) {
  .nav-wrap-notification {
    width: 100vw;
  }
}
@media only screen and (max-width: 599px) {
  .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);
}
@media only screen and (max-width: 599px) {
  .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;
  background: linear-gradient(135deg, var(--gr-bg--V3--P1) 0%, var(--gr-bg--V3--P2) 50%, var(--gr-bg--V3--P3) 100%);
}
.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-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;
}
@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-pos-header {
  display: flex;
  gap: 8px;
  padding: 16px 24px;
  overflow-x: auto;
  flex-shrink: 0;
  background-color: #f9fafb;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-pos-header {
    background-color: #1f2937;
  }
}
.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;
  background-color: #ffffff;
}
@media (prefers-color-scheme: dark) {
  .nav-wrap-notification > section.notifications > .notifications-main {
    background-color: #111827;
  }
}
.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;
  background: linear-gradient(135deg, var(--gr-bg--V3--P1) 0%, var(--gr-bg--V3--P2) 50%, var(--gr-bg--V3--P3) 100%);
  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=notifications-panel.css.map */