@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.
   ========================================================================== */
/*! 
 * 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)
 */
.caixa-1 {
  max-height: 320px;
  overflow: auto;
}
@media (hover: hover) {
  .caixa-1 {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .caixa-1::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .caixa-1:hover {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .caixa-1:hover::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .caixa-1:hover::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .caixa-1:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .caixa-1:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .caixa-1:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-1:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-1:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .caixa-1:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .caixa-1:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .caixa-1:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .caixa-1:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .caixa-1 {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .caixa-1::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .caixa-1::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .caixa-1::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .caixa-1::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .caixa-1 {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-1::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-1::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.caixa-1-ghost {
  max-height: 320px;
  overflow: auto;
}
@media (hover: hover) {
  .caixa-1-ghost {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: transparent transparent;
  }
  .caixa-1-ghost::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .caixa-1-ghost::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .caixa-1-ghost::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .caixa-1-ghost::-webkit-scrollbar-track {
    background-color: transparent;
  }
  .caixa-1-ghost:hover {
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .caixa-1-ghost:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .caixa-1-ghost:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .caixa-1-ghost:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-1-ghost:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-1-ghost:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .caixa-1-ghost:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .caixa-1-ghost:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .caixa-1-ghost:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .caixa-1-ghost:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .caixa-1-ghost {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .caixa-1-ghost::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .caixa-1-ghost::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .caixa-1-ghost::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .caixa-1-ghost::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .caixa-1-ghost {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-1-ghost::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-1-ghost::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.caixa-2 {
  max-height: 420px;
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.caixa-2::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}
.caixa-2::-webkit-scrollbar-thumb {
  border-radius: 8px;
}
.caixa-2::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.caixa-2::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}
@media (prefers-color-scheme: dark) {
  .caixa-2 {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-2::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-2::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.caixa-3 {
  height: 300px;
  overflow: hidden;
}
@media (hover: hover) {
  .caixa-3 {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .caixa-3::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .caixa-3:hover {
    overflow: auto;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .caixa-3:hover::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .caixa-3:hover::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .caixa-3:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .caixa-3:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .caixa-3:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-3:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-3:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .caixa-3:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .caixa-3:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .caixa-3:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .caixa-3:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .caixa-3 {
    overflow: auto;
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .caixa-3::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .caixa-3::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .caixa-3::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .caixa-3::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .caixa-3 {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-3::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-3::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.caixa-4 {
  height: 60vh;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.caixa-4::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.caixa-5 {
  max-height: 360px;
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #111827 #f3f4f6;
}
.caixa-5::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}
.caixa-5::-webkit-scrollbar-thumb {
  border-radius: 8px;
}
.caixa-5::-webkit-scrollbar-thumb {
  background-color: #111827;
}
.caixa-5::-webkit-scrollbar-track {
  background-color: #f3f4f6;
}
@media (prefers-color-scheme: dark) {
  .caixa-5 {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-5::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-5::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.caixa-6 {
  height: 480px;
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.caixa-6::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}
.caixa-6::-webkit-scrollbar-thumb {
  border-radius: 6px;
}
.caixa-6::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.caixa-6::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}
@media (prefers-color-scheme: dark) {
  .caixa-6 {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .caixa-6::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .caixa-6::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.coluna-y {
  overflow-y: auto;
  overflow-x: hidden;
  overflow: auto;
}
@media (hover: hover) {
  .coluna-y {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .coluna-y::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .coluna-y:hover {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .coluna-y:hover::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .coluna-y:hover::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .coluna-y:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .coluna-y:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .coluna-y:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .coluna-y:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .coluna-y:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .coluna-y:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .coluna-y:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .coluna-y:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .coluna-y:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .coluna-y {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .coluna-y::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .coluna-y::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .coluna-y::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .coluna-y::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .coluna-y {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .coluna-y::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .coluna-y::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.linha-x {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  overflow: auto;
}
@media (hover: hover) {
  .linha-x {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .linha-x::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .linha-x:hover {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .linha-x:hover::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .linha-x:hover::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .linha-x:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .linha-x:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .linha-x:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .linha-x:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .linha-x:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .linha-x:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .linha-x:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .linha-x:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .linha-x:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .linha-x {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .linha-x::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .linha-x::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .linha-x::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .linha-x::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .linha-x {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .linha-x::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .linha-x::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.sem-dark {
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.sem-dark::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}
.sem-dark::-webkit-scrollbar-thumb {
  border-radius: 8px;
}
.sem-dark::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.sem-dark::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}

.acessivel {
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.acessivel::-webkit-scrollbar {
  width: 16px;
  height: 12px;
}
.acessivel::-webkit-scrollbar-thumb {
  border-radius: 10px;
}
.acessivel::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.acessivel::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}
@media (prefers-color-scheme: dark) {
  .acessivel {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .acessivel::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .acessivel::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.modal-conteudo {
  max-height: min(70vh, 600px);
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.modal-conteudo::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}
.modal-conteudo::-webkit-scrollbar-thumb {
  border-radius: 8px;
}
.modal-conteudo::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.modal-conteudo::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}
@media (prefers-color-scheme: dark) {
  .modal-conteudo {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .modal-conteudo::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .modal-conteudo::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.sidebar-sticky {
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow: auto;
}
@media (hover: hover) {
  .sidebar-sticky {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .sidebar-sticky::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .sidebar-sticky:hover {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .sidebar-sticky:hover::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .sidebar-sticky:hover::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .sidebar-sticky:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .sidebar-sticky:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .sidebar-sticky:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .sidebar-sticky:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .sidebar-sticky:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .sidebar-sticky:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .sidebar-sticky:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .sidebar-sticky:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .sidebar-sticky:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .sidebar-sticky {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .sidebar-sticky::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .sidebar-sticky::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .sidebar-sticky::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .sidebar-sticky::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .sidebar-sticky {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .sidebar-sticky::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .sidebar-sticky::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.lista-virtual {
  height: 70vh;
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.lista-virtual::-webkit-scrollbar {
  width: 10px;
  height: 6px;
}
.lista-virtual::-webkit-scrollbar-thumb {
  border-radius: 8px;
}
.lista-virtual::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.lista-virtual::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}
@media (prefers-color-scheme: dark) {
  .lista-virtual {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .lista-virtual::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .lista-virtual::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}

.dark-contraste {
  overflow: auto;
  scrollbar-width: thin;
  -ms-overflow-style: auto;
  scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
}
.dark-contraste::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}
.dark-contraste::-webkit-scrollbar-thumb {
  border-radius: 8px;
}
.dark-contraste::-webkit-scrollbar-thumb {
  background-color: #9ca3af;
}
.dark-contraste::-webkit-scrollbar-track {
  background-color: rgba(229, 231, 235, 0);
}
@media (prefers-color-scheme: dark) {
  .dark-contraste {
    scrollbar-color: #e5e7eb #111827;
  }
  .dark-contraste::-webkit-scrollbar-thumb {
    background-color: #e5e7eb;
  }
  .dark-contraste::-webkit-scrollbar-track {
    background-color: #111827;
  }
}

/*
----------------------------------------------------------------------------
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;
  }
}

/* ==========================================================================
   Tokens de Tema (CSS Variables)
   - Auto (sem data-theme) alterna por prefers-color-scheme
   - Temas explícitos: light, dark, ocean, sunset, arkacontainerbrasil
   ========================================================================== */
/* Cores para testar posteriorment
   #fafbf6
//    #f6f8fb
   */
:root {
  --transition-base: border-color 0.6s ease, box-shadow 0.4s ease, background-color 0.3s ease;
}

/* --------------------- TEMA EXPLÍCITO — LIGHT --------------------- */
:root[data-theme=light] {
  color-scheme: light;
  --background-id-001-100:red;
  --btn-link-primary-bg: #0000;
  --btn-link-primary-text: #574ef0;
  --btn-link-primary-text-hover: #6c63ff;
  --btn-link-primary-bg-after: #574ef038;
  --btn-link-primary-bg-after-b: #6c63ff2e;
  --btn-link-primary-outline: #918cff38;
  --btn-bg-primary: #574ef0;
  --btn-bg-primary-hover: #6c63ff;
  --btn-bg-primary-active: #6c63ff;
  --btn-bg-primary-focus-visible: #6c63ff;
  --btn-outline-primary: #918cff;
  --bg-pag-recuperar-senha: #fff;
  --bg-pag-recuperar-senha-form: #fff;
  --color-text-n1-pag-recuperar-senha: #21262e;
  --color-text-n2-pag-recuperar-senha: #6b7280;
  --color-text-n3-pag-recuperar-senha: #6b7280;
  --color-text-d1-pag-recuperar-senha: #6c63ff;
  --lb-ma-title: #64748b;
  --lb-ma-contaienr-border: #e6e9ef;
  --lb-ma-contaienr-background: #fafcff;
  --lb-ma-icon-color: #6169d0;
  --lb-ma-icon-background: #0000;
  --lb-ma-input-color: #333;
  --lb-ma-input-color-placeholder: #aaa;
  --lb-ma-button-action-color: #64748b;
  --lb-ma-button-action-background: #0000;
  --lb-ma-button-action-border: #0000;
  --lb-ma-button-action-color-hover: #6169d0;
  --lb-ma-button-action-border-hover: #e6e9ef;
  --lb-ma-button-action-background-hover: #fafbf6;
  --lb-ma-container-msg-color: red;
  --lb-ma-container-msg-background: #0000;
  --lb-lembrar-me-background: #ffffff;
  --lb-lembrar-me-border: #cfd8de;
  --lb-lembrar-me-background-checked: #574ef0;
  --lb-lembrar-me-border-checked: #574ef0;
  --lb-lembrar-me-background-checked-after: #fff;
  --lb-lembrar-me-border-checked-after: #fff;
  --lb-lembrar-me-background-focus-visible: #918cff38;
  --lb-lembrar-me-color: #374151;
  --bg-header-destaque: #2c3e50;
  --header-title: #9ca3af;
  --header-title-b: aliceblue;
  --bg-pag-login: #fff;
  --bg-pag-login-transparent: #0000;
  --pre-header-title: #1e293b;
  --header-tile: #21262e;
  --bg-aside: #f2f4f8;
  --bg-aside-logo: #f2f4f8;
  --bg-aside-rotulo-main: #1e293b;
  --bg-aside-menu: #f2f4f8;
  --bg-aside-foter: #f2f4f8;
  --bg-aside-rotulo-logo: #475569;
  --aside-text-link-normal: #374151;
  --aside-text-link-hover: #8f8bff;
  --aside-text-link-active-cl: #574ef0;
  --aside-marcador: #9ca3af;
  --aside-marcador-active: #6c63ff;
  --aside-linha: #e9edf3;
  --aside-linha-hover: #c5c2ff;
  --aside-bg-transparente-hover: rgba(255, 255, 255, 0.28);
  --bg-navbar-main: #ffffff;
  --navbar-text-input: #556070;
  --navbar-text-input-icon: #556070;
  --navbar-hover-button: #f4f6f8;
  --navbar-bg-button-pesquisar: #574ef0;
  --navbar-bg-button-pesquisar-hover: #6c63ff;
  --navbar-text-button-pesquisar: #fff;
  --bg-btn-secundary-circular: #0000;
  --bg-btn-hover-secundary-circular: #f4f6f8;
  --cor-btn-secundary-circular: #6c63ff;
  --border-btn-secundary-circular: #c5c2ff;
  --bg-btn-login: #0000;
  --bg-btn-hover-login: #f4f6f8;
  --title-btn-login: #6c63ff;
  --subtitle-btn-login: #a29eff;
  --title-btn-login-hover: #574ef0;
  --subtitle-btn-login-hover: #5d57e6;
  --border-btn-login: #c5c2ff;
  --bg-btn-tab-primary: #0000;
  --bg-btn-hover-tab-primary: #464f5b;
  --color-btn-tab-primary: #dddddd;
  --color-btn-tab-hover: #e9edf3;
  --border-btn-tab-primary: #6b7280;
  --border-btn-tab-hover: #e9edf3;
  --border-btn-tab-focus-visible: #5d57e6;
  --title: #0f1724;
  --subtitle: #6b7280;
  --bg-notifications: #fff;
  --bg-notifications-main: #00000000;
  --bg-notifications-footer: #00000000;
  --bg-btn-central-notication: #574ef0;
  --bg-hover-btn-central-notication: #6c63ff;
  --border-footer-notifications: #e9edf3;
  --bg-menu-rapido: #f6f8fb;
  --cor-title-menu-rapido: #0f1724;
  --bg-cards-menu-rapido: #f4f6f8;
  --bg-hover-cards-menu-rapido: rgb(252, 252, 252);
  --border-menu-rapido: #cccccc;
  --border-hover-menu-rapido: #c5c2ff;
  --cor-icon: #5d57e6;
  --cor-hover-icon: #2e2a82;
  --cor-title-card-menu-rapido: #333333;
  --cor-subtitle-card-menu-rapido: #555;
  --cor-hover-title-card-menu-rapido: #2e2a82;
  --cor-hover-subtitle-card-menu-rapido: #5d57e6;
  --bg-config-rapido: #21262e;
  --bg-config-rapido-main: #00000000;
  --bg-config-rapido-footer: #00000000;
  --cor-title-card-config-rapido: #f7f7f8;
  --cor-titulo-section-config-rapido: #6b7280;
  --cor-subtitulo-section-config-rapido: #6b7280;
  --cor-separador-config-rapido: #e9edf3;
  --cor-separador-config-rapido: #e9edf3;
  --bg-label-item-config-rapido: #0000;
  --bg-hover-label-item-config-rapido: #eef1f5;
  --cor-cfg-label: #374151;
  --bg-cfg-switch-config-rapido-bolinha-on: #fff;
  --bg-cfg-switch-config-rapido-bolinha-off: #ccc;
  --bg-cfg-switch-config-rapido-off: #e2e6eb;
  --border-cfg-switch-config-rapido-off: #e9edf3;
  --bg-cfg-switch-config-rapido-on: #6c63ff;
  --border-cfg-switch-config-rapido-on: #6c63ff;
  --bg-btn-central-config-rapido: #574ef0;
  --bg-hover-btn-central-config-rapido: #6c63ff;
  --cor-btn-central-config-rapido: #fff;
  --bg-nav-login: #ffffff;
  --bg-nav-login-pre-header: #0000;
  --bg-nav-login-header: #0000;
  --bg-nav-login-menu: #0000;
  --bg-nav-login-footer: #0000;
  --cor-text-link-btn-nav-login: #727cf5;
  --cor-text-link-btn-hover-nav-login: #4a59ff;
  --cor-text-accent-a-nav-login: #1c2128;
  --bg-list-item-nav-login: #0000;
  --bg-hover-list-item-nav-login: #f9fafb;
  --border-bottom: #f2f4f8;
  --bg-hover-doca-left-nav-login: #ffff;
  --cor-doca-left--nav-login: #1f2937;
  --border-bottom-nav-login: #e6e9ef;
  --btn-link-log-out-nav-login: #0000;
  --btn-link-log-hover-out-nav-login: #f9fafb;
  --cor-icon-log-out-nav-login: tomato;
  --cor-fineprint-nav-login: #212529;
  --cor-icon-camera-nav-login: #495057;
  --bg-icon-camera-nav-login: #fff;
  /* ----------------- ACCENT (light) ----------------- */
  --accent: #727cf5;
  --accent-100: #ecebff;
  --accent-200: #c5c2ff;
  --accent-300: #a29eff;
  --accent-400: #8f8bff;
  --accent-500: #6c63ff;
  --accent-600: #5d57e6;
  --accent-700: #574ef0;
  --accent-800: #4640c5;
  --accent-900: #2e2a82;
  /* ----------------- BORDAS/DIVISOR/INPUT (light) ----------------- */
  --border: #e6e9ef;
  --border-b: #e5e7eb;
  --divider: #e9edf3;
  --input-bg: #f2f4f8;
  --input-bg: #f2f4f8;
  --bg-transparente-ovarley: rgba(0, 0, 0, 0.3);
  --bg-transparente-100: #ffffff05;
  --bg-transparente-200: #ffffff0d;
  --bg-transparente-300: #ffffff1a;
  --bg-transparente-400: #ffffff33;
  --bg-transparente-500: #ffffff66;
  --bg-transparente-600: #ffffff99;
  --bg-transparente-700: #ffffffcc;
  --bg-transparente-800: #fffffff3;
  --bg-transparente-900: #ffffffff;
  --shadow-modal: -4px 0 8px #00000033;
}

/* =========================
   TEMA EXPLÍCITO — DARK
   ========================= */
:root[data-theme=dark] {
  color-scheme: dark;
  --btn-link-primary-bg: #0000;
  --btn-link-primary-text: #574ef0;
  --btn-link-primary-text-hover: #6c63ff;
  --btn-link-primary-bg-after: #574ef038;
  --btn-link-primary-bg-after-b: #6c63ff2e;
  --btn-link-primary-outline: #918cff38;
  --btn-bg-primary: #574ef0;
  --btn-bg-primary-hover: #6c63ff;
  --btn-bg-primary-active: #6c63ff;
  --btn-bg-primary-focus-visible: #6c63ff;
  --btn-outline-primary: #918cff;
  --bg-pag-recuperar-senha: #121212;
  --bg-pag-recuperar-senha-form: #0000;
  --color-text-n1-pag-recuperar-senha: aliceblue;
  --color-text-n2-pag-recuperar-senha: #dddddd;
  --color-text-n3-pag-recuperar-senha: #6b7280;
  --color-text-d1-pag-recuperar-senha: #6c63ff;
  --lb-ma-title: #64748b;
  --lb-ma-contaienr-border: #262627;
  --lb-ma-contaienr-background: #0000;
  --lb-ma-icon-color: #6169d0;
  --lb-ma-icon-background: #0000;
  --lb-ma-input-color: #d1d5db;
  --lb-ma-input-color-placeholder: #aaa;
  --lb-ma-button-action-color: #64748b;
  --lb-ma-button-action-background: #0000;
  --lb-ma-button-action-border: #0000;
  --lb-ma-button-action-color-hover: #6169d0;
  --lb-ma-button-action-border-hover: #262627;
  --lb-ma-button-action-background-hover: #161617;
  --lb-ma-container-msg-color: red;
  --lb-ma-container-msg-background: #0000;
  --lb-lembrar-me-background: #0000;
  --lb-lembrar-me-border: #262627;
  --lb-lembrar-me-background-checked: #574ef0;
  --lb-lembrar-me-border-checked: #574ef0;
  --lb-lembrar-me-background-checked-after: #fff;
  --lb-lembrar-me-border-checked-after: #fff;
  --lb-lembrar-me-background-focus-visible: #918cff38;
  --lb-lembrar-me-color: #d1d5db;
  --bg-pag-login-transparent: #0000;
  --color-titulo: aliceblue;
  --color-subtitulo: #9ea8bb;
  --bg-header-destaque: #2c3e50;
  --header-title: #9ca3af;
  --header-title-b: aliceblue;
  --bg-pag-login-transparent: #0000;
  --bg-aside: #1c2128;
  --bg-aside-logo: #2a3038;
  --bg-aside-rotulo-main: #9ca3af;
  --bg-aside-menu: #21262e;
  --bg-aside-foter: #181c22;
  --bg-aside-rotulo-logo: #9ca3af;
  --aside-text-link-normal: #e5e9f0;
  --aside-text-link-hover: #8f8bff;
  --aside-text-link-active-cl: #6c63ff;
  --aside-marcador: #9ca3af;
  --aside-marcador-active: #6c63ff;
  --aside-linha: #454d5c;
  --aside-linha-hover: #8f8bff;
  --aside-bg-transparente-hover: rgba(255, 255, 255, 0.06);
  --bg-navbar-main: #3a444e;
  --navbar-text-input: #e3eaef;
  --navbar-text-input-icon: #e3eaef;
  --navbar-hover-button: #464f5b;
  --navbar-bg-button-pesquisar: #574ef0;
  --navbar-bg-button-pesquisar-hover: #6c63ff;
  --navbar-text-button-pesquisar: #fff;
  --bg-btn-secundary-circular: #0000;
  --bg-btn-hover-secundary-circular: #464f5b;
  --cor-btn-secundary-circular: #8f8bff;
  --border-btn-secundary-circular: #3a414f;
  --bg-btn-login: #0000;
  --bg-btn-hover-login: # color: var(--cor-btn-secundary-circular);
  --title-btn-login: #c5c2ff;
  --subtitle-btn-login: #8f8bff;
  --title-btn-login-hover: #fff;
  --subtitle-btn-login-hover: #8f8bff;
  --border-btn-login: #3a414f;
  --bg-btn-tab-primary: #0000;
  --bg-btn-hover-tab-primary: #464f5b;
  --color-btn-tab-primary: #dddddd;
  --color-btn-tab-hover: #e9edf3;
  --border-btn-tab-primary: #6b7280;
  --border-btn-tab-hover: #e9edf3;
  --border-btn-tab-focus-visible: #5d57e6;
  --bg-menu-rapido: #1c2128;
  --cor-title-menu-rapido: #9ca3af;
  --bg-cards-menu-rapido: #21262e;
  --bg-hover-cards-menu-rapido: #88a9c9;
  --border-menu-rapido: #0000;
  --border-hover-menu-rapido: #0000;
  --cor-icon: #5d57e6;
  --cor-hover-icon: #2e2a82;
  --cor-title-card-menu-rapido: #f7f7f8;
  --cor-subtitle-card-menu-rapido: #aab8c5;
  --cor-hover-title-card-menu-rapido: #fff;
  --cor-hover-subtitle-card-menu-rapido: aliceblue;
  --cor-hover-title-card-menu-rapido: #2e2a82;
  --cor-hover-subtitle-card-menu-rapido: #5d57e6;
  --bg-notifications: #21262e;
  --bg-notifications-main: #00000000;
  --bg-notifications-footer: #00000000;
  --bg-btn-central-notication: #574ef0;
  --bg-hover-btn-central-notication: #6c63ff;
  --border-footer-notifications: #e9edf3;
  --bg-config-rapido: #21262e;
  --bg-config-rapido-main: #00000000;
  --bg-config-rapido-footer: #00000000;
  --cor-title-card-config-rapido: #f7f7f8;
  --title: cornflowerblue;
  --subtitle: #6b7280;
  --bg-config-rapido: #21262e;
  --bg-config-rapido-main: #00000000;
  --bg-config-rapido-footer: #0000;
  --bg-config-rapido-opacidade: #0000;
  --cor-title-card-config-rapido: #f7f7f8;
  --cor-titulo-section-config-rapido: #6b7280;
  --cor-subtitulo-section-config-rapido: #6b7280;
  --cor-separador-config-rapido: #e9edf3;
  --cor-separador-config-rapido: #e9edf3;
  --bg-label-item-config-rapido: #0000;
  --bg-hover-label-item-config-rapido: #eef1f5;
  --cor-cfg-label: #8f8bff;
  --cor-hover-cfg-label: #c5c2ff;
  --bg-cfg-switch-config-rapido-bolinha-on: #fff;
  --bg-cfg-switch-config-rapido-bolinha-off: #636e81;
  --bg-cfg-switch-config-rapido-off: #374151;
  --border-cfg-switch-config-rapido-off: #374151;
  --bg-cfg-switch-config-rapido-on: #6c63ff;
  --border-cfg-switch-config-rapido-on: #6c63ff;
  --bg-btn-central-config-rapido: #574ef0;
  --bg-hover-btn-central-config-rapido: #6c63ff;
  --bg-nav-login: #1c2128;
  --bg-nav-login-pre-header: #0000;
  --bg-nav-login-header: #0000;
  --bg-nav-login-menu: #0000;
  --bg-nav-login-footer: #0000;
  --cor-text-link-btn-nav-login: #727cf5;
  --cor-text-link-btn-hover-nav-login: #4a59ff;
  --cor-text-accent-a-nav-login: #ffff;
  --bg-hover-doca-left-nav-login: #1c2128;
  --bg-list-item-nav-login: #0000;
  --bg-hover-list-item-nav-login: #181c21;
  --border-bottom: #f2f4f8;
  --border-bottom-nav-login: #2f3641;
  --btn-link-log-out-nav-login: #0000;
  --btn-link-log-hover-out-nav-login: #181c21;
  --cor-icon-log-out-nav-login: tomato;
  --cor-fineprint-nav-login: #ced4da;
  --cor-icon-camera-nav-login: #ced4da;
  --bg-icon-camera-nav-login: #2f3641;
  --accent: #727cf5;
  --accent-100: #ecebff;
  --accent-200: #c5c2ff;
  --accent-300: #a29eff;
  --accent-400: #8f8bff;
  --accent-500: #6c63ff;
  --accent-600: #5d57e6;
  --accent-700: #574ef0;
  --accent-800: #4640c5;
  --accent-900: #2e2a82;
  /* ----------------- ESTADOS (DARK) ----------------- */
  --hover: #7a73ff;
  --hover-a: #464f5b;
  --hover-b: #1f252f;
  --focus: #918cff;
  /* ----------------- BORDAS/DIVISOR/INPUT (DARK) ----------------- */
  --border: #2f3641;
  --border-b: #3a414f;
  --divider: #454d5c;
  --input-bg: #464f5b;
  /* ----------------- BASE TRANSPARENT (BRANCO PARA 0) ----------------- */
  --bg-transparente-ovarley: rgba(0, 0, 0, 0.3);
  --bg-transparente-100: #ffffff05;
  --bg-transparente-200: #ffffff0d;
  --bg-transparente-300: #ffffff1a;
  --bg-transparente-400: #ffffff33;
  --bg-transparente-500: #ffffff66;
  --bg-transparente-600: #ffffff99;
  --bg-transparente-700: #ffffffcc;
  --bg-transparente-800: #fffffff3;
  --bg-transparente-900: #ffffffff;
}

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

/*! 
 * 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.
   ========================================================================== */
.hero-status-painel {
  flex-direction: column !important;
  max-width: 100%;
  min-width: 100%;
}
@media only screen and (min-width: 2000px) {
  .hero-status-painel {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1599px) {
  .hero-status-painel {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1179px) {
  .hero-status-painel {
    max-width: 100%;
  }
}
@media only screen and (min-width: 2000px) {
  .hero-status-painel {
    min-width: 100%;
  }
}
@media only screen and (max-width: 1599px) {
  .hero-status-painel {
    min-width: 100%;
  }
}
@media only screen and (max-width: 1179px) {
  .hero-status-painel {
    min-width: 100%;
  }
}
.hero-status-painel > .hero-status-painel-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 20px;
  width: 100%;
  flex-direction: row;
  align-items: flex-end;
}
.hero-status-painel > .hero-status-painel-left > .painel-header {
  min-width: 100%;
}
.hero-status-painel > .hero-status-painel-left > .painel-header > h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-header > h2 {
    color: #f3f4f6;
  }
}
.hero-status-painel > .hero-status-painel-left > .painel-header > p {
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-header > p {
    color: #9ca3af;
  }
}
.hero-status-painel > .hero-status-painel-left > .painel-controls {
  min-width: 100%;
  display: flex;
  gap: 8px;
}
.hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter {
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter {
    background-color: rgba(255, 255, 255, 0.05);
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter {
    color: #e2e8f0;
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter {
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter {
    box-shadow: 0 1px 2px none;
  }
}
.hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter:hover {
  background-color: #f1f5f9;
  color: #111827;
  border-color: #cbd5e1;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter:hover {
    color: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter:hover {
    border-color: rgba(255, 255, 255, 0.1);
  }
}
.hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}
.hero-status-painel > .hero-status-painel-left > .painel-controls > .btn-filter.active:hover {
  background: #1d4ed8;
}
.hero-status-painel > .hero-status-painel-right {
  width: 100%;
  padding: 2em 0;
}
.hero-status-painel .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .hero-status-painel .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .hero-status-painel .cards-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.hero-status-painel .cards-grid > .glass-card {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  min-height: 354px;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card {
    background-color: rgba(20, 25, 35, 0.6);
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
}
.hero-status-painel .cards-grid > .glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.1);
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
  }
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  }
}
.hero-status-painel .cards-grid > .glass-card > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hero-status-painel .cards-grid > .glass-card > div:first-child h3 {
  font-weight: 600;
  color: #1f2937;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > div:first-child h3 {
    color: #f3f4f6;
  }
}
.hero-status-painel .cards-grid > .glass-card > .chart-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-svg circle:first-child {
  stroke: #e5e7eb;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-svg circle:first-child {
    stroke: rgba(255, 255, 255, 0.1);
  }
}
.hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-text {
  position: absolute;
  text-align: center;
}
.hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-text span:first-child {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-text span:first-child {
    color: #f9fafb;
  }
}
.hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-text span:last-child {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > .chart-circle > .chart-text span:last-child {
    color: #9ca3af;
  }
}
.hero-status-painel .cards-grid > .glass-card > div > .list-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #f3f4f6;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > div > .list-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
}
.hero-status-painel .cards-grid > .glass-card > div > .list-row:last-child {
  border-bottom: none;
}
.hero-status-painel .cards-grid > .glass-card > div > .list-row span:first-child {
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > div > .list-row span:first-child {
    color: #9ca3af;
  }
}
.hero-status-painel .cards-grid > .glass-card > div > .list-row span:last-child {
  font-weight: 500;
  color: #374151;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > div > .list-row span:last-child {
    color: #e5e7eb;
  }
}
.hero-status-painel .cards-grid > .glass-card > .check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.hero-status-painel .cards-grid > .glass-card > .check-item:last-child {
  margin-bottom: 0;
}
.hero-status-painel .cards-grid > .glass-card > .check-item > .check-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-status-painel .cards-grid > .glass-card > .check-item > div div:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > .check-item > div div:first-child {
    color: #e5e7eb;
  }
}
.hero-status-painel .cards-grid > .glass-card > .check-item > div div:last-child {
  font-size: 0.75rem;
  color: #6b7280;
}
@media (prefers-color-scheme: dark) {
  .hero-status-painel .cards-grid > .glass-card > .check-item > div div:last-child {
    color: #9ca3af;
  }
}/*# sourceMappingURL=pag.conta-status.css.map */