@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.
   ========================================================================== */
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido {
  /* layout / box model */
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  max-height: 32px;
  min-width: 32px;
  max-width: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  font-size: 0.9em;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido > i {
  font-size: 0.95rem;
  color: #3a414f;
  font-style: normal;
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido > i {
    color: #e3eaef;
  }
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:hover {
  outline-offset: 1px;
  outline: 1px solid #c5c2ff;
  background-color: #f4f6f8;
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:hover {
    outline: 1px solid #3a414f;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:hover {
    background-color: #464f5b;
  }
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:hover > i {
  color: var(--cor-btn-secundary-circular);
  font-size: 0.95rem;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:focus-visible {
  outline-offset: 1px;
  outline: 1px solid #c5c2ff;
  background-color: #f4f6f8;
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:focus-visible {
    outline: 1px solid #3a414f;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:focus-visible {
    background-color: #464f5b;
  }
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:focus-visible > i {
  color: var(--cor-btn-secundary-circular);
  font-size: 0.95rem;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:active {
  outline-offset: 1px;
  outline: 1px solid #c5c2ff;
  background-color: #f4f6f8;
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:active {
    outline: 1px solid #3a414f;
  }
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:active {
    background-color: #464f5b;
  }
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:active > i {
  color: #8f8bff;
  font-size: 0.95rem;
}
@media (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.btn-fechar-nav-config-rapido:active > i {
    color: #8f8bff;
  }
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.is-compact.btn-fechar-nav-config-rapido {
  height: 32px;
  width: 32px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.is-compact.btn-fechar-nav-config-rapido > i {
  font-size: 16px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.is-comfort.btn-fechar-nav-config-rapido {
  height: 36px;
  width: 36px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.is-comfort.btn-fechar-nav-config-rapido > i {
  font-size: 18px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.is-large.btn-fechar-nav-config-rapido {
  height: 44px;
  width: 44px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.is-large.btn-fechar-nav-config-rapido > i {
  font-size: 20px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.variant-a.btn-fechar-nav-config-rapido:hover {
  background-color: #464f5b;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > button.variant-a.btn-fechar-nav-config-rapido > i {
  color: white;
}

.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 */
  }
}
/* ===========================  LIGHT THEME  =========================== */
/* ===========================  DARK THEME  =========================== */
/* ===========================  DARK THEME  =========================== */
/* color(a)           -> var(--a)               [compat com seu código]
   color(a, b)        -> light-dark(var(--a), var(--b))
   color(#fff, #000)  -> light-dark(#fff, #000) */
:root {
  color-scheme: light dark;
  --background: #f6f8fb;
  --background-main: #F4F5F8;
  --background-200: #F2F2F2;
  --background-400: #F4F4F4;
  --background-800: #F8F8F8;
  --background-900: #F9F9F9;
  --surface: #ffffff;
  --surface-2: #f4f6f8;
  --surface-100: #f0f1f5;
  --surface-200: #e9ebf0;
  --surface-300: #f5f5f5;
  --surface-400: #f0f1f5;
  --surface-500: #eceef4;
  --surface-600: #e1e4eb;
  --surface-700: #d5d9e1;
  --surface-800: #c1c6d0;
  --header-destaque: #f4f6f8;
  --input-bg: #f2f4f8;
  --text-title: #0f1724;
  --text-body: #374151;
  --subtitle: #556070;
  --text-muted: #6b7280;
  --text-title-b: #333333;
  --text-body-b: #dddddd;
  --border: #e6e9ef;
  --border-b: #e5e7eb;
  --divider: #e9edf3;
  --accent: #6c63ff;
  --accent-800: #6169D0;
  --accent-700: #574ef0;
  --accent-300: #9894ff;
  --accent-100: #8f8bff;
  --hover: #727cf5;
  --focus: #5a4ffb;
  --success: #16a34a;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #0284c7;
  --shadow: rgba(16, 24, 40, 0.0588235294);
  --bg-transparente-light-main: rgba(255, 255, 255, 0.4588235294);
  --bg-transparente-dark-main: rgba(0, 0, 0, 0.3019607843);
  --bg-transparente-dark-100: rgba(58, 68, 78, 0.0196078431);
  --bg-transparente-dark-200: rgba(58, 68, 78, 0.0509803922);
  --bg-transparente-dark-300: rgba(58, 68, 78, 0.1019607843);
  --bg-transparente-dark-400: rgba(58, 68, 78, 0.2);
  --bg-transparente-dark-500: rgba(58, 68, 78, 0.4);
  --bg-transparente-dark-600: rgba(58, 68, 78, 0.6);
  --bg-transparente-dark-700: rgba(58, 68, 78, 0.8);
  --background-light: #f6f8fb;
  --background-main-light: #F4F5F8;
  --background-200-light: #F2F2F2;
  --background-400-light: #F4F4F4;
  --background-800-light: #F8F8F8;
  --background-900-light: #F9F9F9;
  --surface-light: #ffffff;
  --surface-2-light: #f4f6f8;
  --surface-100-light: #f0f1f5;
  --surface-200-light: #e9ebf0;
  --surface-300-light: #f5f5f5;
  --surface-400-light: #f0f1f5;
  --surface-500-light: #eceef4;
  --surface-600-light: #e1e4eb;
  --surface-700-light: #d5d9e1;
  --surface-800-light: #c1c6d0;
  --header-destaque-light: #f4f6f8;
  --input-bg-light: #f2f4f8;
  --text-title-light: #0f1724;
  --text-body-light: #374151;
  --subtitle-light: #556070;
  --text-muted-light: #6b7280;
  --text-title-b-light: #333333;
  --text-body-b-light: #dddddd;
  --border-light: #e6e9ef;
  --border-b-light: #e5e7eb;
  --divider-light: #e9edf3;
  --accent-light: #6c63ff;
  --accent-800-light: #6169D0;
  --accent-700-light: #574ef0;
  --accent-300-light: #9894ff;
  --accent-100-light: #8f8bff;
  --hover-light: #727cf5;
  --focus-light: #5a4ffb;
  --success-light: #16a34a;
  --danger-light: #ef4444;
  --warning-light: #f59e0b;
  --info-light: #0284c7;
  --shadow-light: rgba(16, 24, 40, 0.0588235294);
  --bg-transparente-light-main-light: rgba(255, 255, 255, 0.4588235294);
  --bg-transparente-dark-main-light: rgba(0, 0, 0, 0.3019607843);
  --bg-transparente-dark-100-light: rgba(58, 68, 78, 0.0196078431);
  --bg-transparente-dark-200-light: rgba(58, 68, 78, 0.0509803922);
  --bg-transparente-dark-300-light: rgba(58, 68, 78, 0.1019607843);
  --bg-transparente-dark-400-light: rgba(58, 68, 78, 0.2);
  --bg-transparente-dark-500-light: rgba(58, 68, 78, 0.4);
  --bg-transparente-dark-600-light: rgba(58, 68, 78, 0.6);
  --bg-transparente-dark-700-light: rgba(58, 68, 78, 0.8);
  --background-dark: #343a40;
  --background-main-dark: #11161c;
  --background-200-dark: #20252c;
  --background-400-dark: #242a33;
  --background-800-dark: #2c323d;
  --background-900-dark: #323945;
  --surface-dark: #1f252d;
  --surface-2-dark: #242b35;
  --surface-100-dark: #2a313c;
  --surface-200-dark: #303844;
  --surface-300-dark: #3a4350;
  --surface-400-dark: #444d5c;
  --surface-500-dark: #515b6d;
  --surface-600-dark: #5f6a7f;
  --surface-700-dark: #6f7c92;
  --surface-800-dark: #8592a8;
  --header-destaque-dark: #242b35;
  --input-bg-dark: #2a3038;
  --text-title-dark: #f1f5f9;
  --text-body-dark: #e2e8f0;
  --subtitle-dark: #cbd5e1;
  --text-muted-dark: #94a3b8;
  --text-title-b-dark: #fafafa;
  --text-body-b-dark: #b0b8c3;
  --border-dark: #2f3641;
  --border-b-dark: #3a414f;
  --divider-dark: #454d5c;
  --accent-dark: #6c63ff;
  --accent-800-dark: #5a54e6;
  --accent-700-dark: #4a45cc;
  --accent-300-dark: #8f8bff;
  --accent-100-dark: #b5b2ff;
  --hover-dark: #7a73ff;
  --focus-dark: #918cff;
  --success-dark: #22c55e;
  --danger-dark: #ef4444;
  --warning-dark: #fbbf24;
  --info-dark: #38bdf8;
  --shadow-dark: rgba(0, 0, 0, 0.3137254902);
  --bg-transparente-light-main-dark: rgba(255, 255, 255, 0.0705882353);
  --bg-transparente-dark-main-dark: rgba(0, 0, 0, 0.4);
  --bg-transparente-dark-100-dark: rgba(255, 255, 255, 0.0196078431);
  --bg-transparente-dark-200-dark: rgba(255, 255, 255, 0.0509803922);
  --bg-transparente-dark-300-dark: rgba(255, 255, 255, 0.1019607843);
  --bg-transparente-dark-400-dark: rgba(255, 255, 255, 0.2);
  --bg-transparente-dark-500-dark: rgba(255, 255, 255, 0.3019607843);
  --bg-transparente-dark-600-dark: rgba(255, 255, 255, 0.4);
  --bg-transparente-dark-700-dark: rgba(255, 255, 255, 0.5019607843);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #343a40;
    --background-main: #11161c;
    --background-200: #20252c;
    --background-400: #242a33;
    --background-800: #2c323d;
    --background-900: #323945;
    --surface: #1f252d;
    --surface-2: #242b35;
    --surface-100: #2a313c;
    --surface-200: #303844;
    --surface-300: #3a4350;
    --surface-400: #444d5c;
    --surface-500: #515b6d;
    --surface-600: #5f6a7f;
    --surface-700: #6f7c92;
    --surface-800: #8592a8;
    --header-destaque: #242b35;
    --input-bg: #2a3038;
    --text-title: #f1f5f9;
    --text-body: #e2e8f0;
    --subtitle: #cbd5e1;
    --text-muted: #94a3b8;
    --text-title-b: #fafafa;
    --text-body-b: #b0b8c3;
    --border: #2f3641;
    --border-b: #3a414f;
    --divider: #454d5c;
    --accent: #6c63ff;
    --accent-800: #5a54e6;
    --accent-700: #4a45cc;
    --accent-300: #8f8bff;
    --accent-100: #b5b2ff;
    --hover: #7a73ff;
    --focus: #918cff;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #fbbf24;
    --info: #38bdf8;
    --shadow: rgba(0, 0, 0, 0.3137254902);
    --bg-transparente-light-main: rgba(255, 255, 255, 0.0705882353);
    --bg-transparente-dark-main: rgba(0, 0, 0, 0.4);
    --bg-transparente-dark-100: rgba(255, 255, 255, 0.0196078431);
    --bg-transparente-dark-200: rgba(255, 255, 255, 0.0509803922);
    --bg-transparente-dark-300: rgba(255, 255, 255, 0.1019607843);
    --bg-transparente-dark-400: rgba(255, 255, 255, 0.2);
    --bg-transparente-dark-500: rgba(255, 255, 255, 0.3019607843);
    --bg-transparente-dark-600: rgba(255, 255, 255, 0.4);
    --bg-transparente-dark-700: rgba(255, 255, 255, 0.5019607843);
  }
}
/* Uso:
   @include themed(background, surface-2, surface);
   - Emite fallback: background: color(surface-2);
   - Emite override: background: light-dark(var(--surface-2), var(--surface));
   Se passar só 1 valor: @include themed(color, text-body);  // compat normal
*/
/* Várias propriedades de uma vez:
   @include themed-set((
     background: (surface-2, surface),
     color: text-body,
     border-color: (border, divider)
   ));
   Cada valor pode ser:
   - single: token/var/cor
   - pair:  (light, dark)
*/
/* 1) Igual você já faz (1 argumento) — troca por :root/@media */
.page {
  background: var(--background);
  color: var(--text-body);
}

/* 2) Decisão por propriedade (2 argumentos) — tokens -light/-dark */
.box {
  background: var(--background-light);
  background: light-dark(var(--background-light), var(--background-dark));
  color: var(--text-body-light);
  color: light-dark(var(--text-body-light), var(--text-body-dark));
}

/* 3) Misturar tokens diferentes entre modos
      (light: surface-2, dark: surface)  */
.panel {
  background: var(--surface-2);
  background: light-dark(var(--surface-2), var(--surface));
  border-color: var(--border);
  border-color: light-dark(var(--border), var(--divider));
}

/* 4) Usando valores das paletas diretamente (sem -light/-dark) */
.card {
  background: #ffffff;
  background: light-dark(#ffffff, #1f252d);
  color: var(--text-body);
}

/* 5) Themed “em lote” (mapa) */
.alert-success {
  background: var(--color-mix(in srgb, var(--success) 12%, var(--surface) 88%));
  background: light-dark(var(--color-mix(in srgb, var(--success) 12%, var(--surface) 88%)), var(--color-mix(in srgb, var(--success) 12%, var(--surface) 88%)));
  border-color: var(--success);
  border-color: light-dark(var(--success), var(--success));
  color: var(--text-title);
  color: light-dark(var(--text-title), var(--text-title));
}

/* 6) Botão com borda e hover distintos por modo */
.btn-outline {
  color: var(--text-title-light);
  color: light-dark(var(--text-title-light), var(--text-title-dark));
  border-color: var(--border);
  border-color: light-dark(var(--border), var(--divider));
  background: transparent;
}
.btn-outline:hover {
  background: var(--surface-2);
  background: light-dark(var(--surface-2), var(--surface));
}

/* 7) Input com foco por propriedade (ex.: foco mais visível no dark) */
.input {
  background: var(--input-bg);
  color: var(--text-body);
  border-color: var(--border);
}
.input:focus {
  box-shadow: var(--0 0 0 1px var(--focus));
  box-shadow: light-dark(var(--0 0 0 1px var(--focus)), var(--0 0 0 2px var(--focus)));
}

/* 8) Gradiente por modo (ex.: hero) */
.hero {
  background: var(--linear-gradient(180deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 30%, var(--surface) 70%) 100%));
  background: light-dark(var(--linear-gradient(180deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 30%, var(--surface) 70%) 100%)), var(--linear-gradient(180deg, var(--accent-300) 0%, color-mix(in srgb, var(--accent-300) 30%, var(--surface) 70%) 100%)));
}

/* 9) Override de escopo (subtema numa área) — continua valendo */
.sidebar {
  --surface: #f4f6f8;
  --border: #e6e9ef;
  --text-body: #374151;
}
.sidebar .panel {
  background: var(--surface);
  border-color: var(--border);
}

/* 10) Utilitário rápido (se curtir helpers) */
.util-bg-alt {
  background: var(--surface-2);
  background: light-dark(var(--surface-2), var(--surface));
}

.util-border {
  border-color: var(--border);
  border-color: light-dark(var(--border), var(--divider));
}

.util-text {
  color: var(--text-body);
}

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

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

.nav-config-rapido {
  position: absolute;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 99.5vw;
  height: 99vh;
  background-color: rgba(0, 0, 0, 0);
}
.nav-config-rapido > .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  cursor: default;
}
.nav-config-rapido > section.config-rapido {
  min-width: 300px;
  max-width: 300px;
  height: 100vh;
  background: var(--bg-menu-rapido);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 460px;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header {
  padding: 14px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
  max-width: 300px;
  background: var(--bg-header-destaque);
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media only screen and (max-width: 1023px) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header {
    min-height: 70%;
  }
}
@media only screen and (max-width: 833px) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header {
    min-height: fit-content(72ch);
  }
}
@media only screen and (max-width: 819px) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header {
    min-height: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .nav-config-rapido > section.config-rapido > header.config-rapido-header {
    min-height: 100%;
  }
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px;
  gap: 18px;
}
.nav-config-rapido > section.config-rapido > header.config-rapido-header > .heading > h3 {
  margin: 0;
  font-size: 15px;
  color: var(--cor-title-card-config-rapido);
  flex-grow: 1;
  font-family: "Nunito" !important;
  font-weight: 800;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main {
  background: var(--bg-config-rapido-main);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  flex-grow: 1;
  overflow: auto;
}
@media (hover: hover) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar {
    width: 12px;
    height: 6px;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido {
  display: grid;
  gap: 0;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  margin-top: 8px;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > h4.titulo {
  margin: 18px 0 4px 0;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--cor-titulo-section-config-rapido);
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > hr.hr-separador {
  border: 0;
  height: 1px;
  background: var(--cor-separador-config-rapido);
  margin: 10px 0;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item {
  --row-pad-x: 14px;
  --row-pad-y: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: var(--row-pad-y) var(--row-pad-x);
  cursor: pointer;
  position: relative;
  background-color: var(--bg-config-rapido-opacidade);
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item:not(:last-child) {
  border-bottom: 1px dashed transparent;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item:hover {
  background-color: var(--bg-config-rapido-opacidade);
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item:hover > .cfg-label {
  font-size: 13px;
  color: var(--cor-hover-cfg-label);
  line-height: 1.4;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item > .cfg-label {
  font-size: 13px;
  color: var(--cor-cfg-label);
  line-height: 1.4;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item > .cfg-switch-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item > .cfg-switch {
  --h: 22px;
  --w: 42px;
  --p: 3px;
  --r: 22px;
  width: var(--w);
  height: var(--h);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item > .cfg-switch::after {
  content: "";
  position: absolute;
  top: var(--p);
  left: var(--p);
  height: calc(var(--h) - var(--p) * 2);
  width: calc(var(--h) - var(--p) * 2);
  border-radius: var(--r);
  background: red;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item:has(> .cfg-switch-input:focus-visible) > .cfg-switch {
  outline: 2px solid var(--focus, #5a4ffb);
  outline-offset: 2px;
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item:has(> input:checked) > .cfg-switch {
  background: var(--bg-cfg-switch-config-rapido-on);
  border-color: var(--border-cfg-switch-config-rapido-on);
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item:has(> input:checked) > .cfg-switch::after {
  transform: translateX(calc(var(--w) - var(--h)));
  background: var(--bg-cfg-switch-config-rapido-bolinha-on);
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section.is-exclusive > label.label-item:not(:has(> input:checked)) > .cfg-switch {
  background: var(--bg-cfg-switch-config-rapido-off);
  border-color: var(--border-cfg-switch-config-rapido-off);
}
.nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section.is-exclusive > label.label-item:not(:has(> input:checked)) > .cfg-switch::after {
  transform: translateX(0);
  background: var(--bg-cfg-switch-config-rapido-bolinha-off);
}
@media (max-width: 480px) {
  .nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item {
    --row-pad-x: 12px;
    --row-pad-y: 8px;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item > .cfg-label {
    font-size: 12px;
  }
  .nav-config-rapido > section.config-rapido > main.config-rapido-main > .cfg-rapido > .cfg-section > label.label-item > .cfg-switch {
    --w: 38px;
    --h: 20px;
  }
}
.nav-config-rapido > section.config-rapido > footer.config-rapido-footer {
  background: var(--bg-config-rapido-footer);
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--white);
  min-height: 64px;
  max-height: 64px;
  justify-content: center;
}
.nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
  background: var(--bg-btn-central-config-rapido);
  font-family: "Nunito" !important;
  color: var(--cor-btn-central-config-rapido);
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 12px;
  min-width: 148px;
  max-width: 148px;
}
@media only screen and (max-width: 1023px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    min-width: 70%;
  }
}
@media only screen and (max-width: 833px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    min-width: fit-content(72ch);
  }
}
@media only screen and (max-width: 819px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    min-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    min-width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    max-width: 70%;
  }
}
@media only screen and (max-width: 833px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    max-width: fit-content(72ch);
  }
}
@media only screen and (max-width: 819px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    max-width: 90%;
  }
}
@media only screen and (max-width: 599px) {
  .nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary {
    max-width: 100%;
  }
}
.nav-config-rapido > section.config-rapido > footer.config-rapido-footer > .primary:hover {
  background: var(--bg-hover-btn-central-config-rapido);
}

/* Vars de duração/easing só aqui pra ficar fácil de ajustar */
.nav-config-rapido {
  --enter-dur: 220ms;
  --exit-dur: 180ms;
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1); /* suave-ágil */
  /* ===== estados iniciais prontos para animar ===== */
  /* ===== estado de entrada (após remover .ocultar) ===== */
  /* ===== estado de saída (antes de recolocar .ocultar) ===== */
}
.nav-config-rapido > .overlay {
  opacity: 0;
  transition: opacity var(--enter-dur) var(--easing);
  will-change: opacity;
}
.nav-config-rapido > section.config-rapido {
  transform: translateX(24px);
  opacity: 0;
  transition: transform var(--enter-dur) var(--easing), opacity var(--enter-dur) ease;
  will-change: transform, opacity;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
.nav-config-rapido.is-open > .overlay {
  opacity: 1; /* backdrop fade-in */
}
.nav-config-rapido.is-open > section.config-rapido {
  transform: translateX(0);
  opacity: 1; /* painel slide-in + fade */
}
.nav-config-rapido.is-closing > .overlay {
  opacity: 0;
  transition-duration: var(--exit-dur);
}
.nav-config-rapido.is-closing > section.config-rapido {
  transform: translateX(24px);
  opacity: 0;
  transition-duration: var(--exit-dur);
}

/* direção padrão já é “da direita” (como você montou) */
/* da ESQUERDA */
.nav-config-rapido.from-left > section.config-rapido {
  transform: translateX(-24px);
}
.nav-config-rapido.from-left.is-open > section.config-rapido {
  transform: translateX(0);
}
.nav-config-rapido.from-left.is-closing > section.config-rapido {
  transform: translateX(-24px);
}

/* de CIMA (topo) */
.nav-config-rapido.from-top > section.config-rapido {
  transform: translateY(-24px);
}
.nav-config-rapido.from-top.is-open > section.config-rapido {
  transform: translateY(0);
}
.nav-config-rapido.from-top.is-closing > section.config-rapido {
  transform: translateY(-24px);
}

/* =======================================
   VARIAÇÕES DE ANIMAÇÃO — NAV WRAP OVERLAY
   Cole estas regras abaixo do bloco principal
   ======================================= */
/* (Opcional) nome explícito p/ o padrão (da DIREITA) */
.nav-config-rapido.from-right > section.config-rapido {
  transform: translateX(24px);
}
.nav-config-rapido.from-right.is-open > section.config-rapido {
  transform: translateX(0);
}
.nav-config-rapido.from-right.is-closing > section.config-rapido {
  transform: translateX(24px);
}

/* DE BAIXO (bottom) */
.nav-config-rapido.from-bottom > section.config-rapido {
  transform: translateY(24px);
}
.nav-config-rapido.from-bottom.is-open > section.config-rapido {
  transform: translateY(0);
}
.nav-config-rapido.from-bottom.is-closing > section.config-rapido {
  transform: translateY(24px);
}

/* DIAGONAL: de CIMA-ESQUERDA */
.nav-config-rapido.from-top-left > section.config-rapido {
  transform: translate(-24px, -24px);
}
.nav-config-rapido.from-top-left.is-open > section.config-rapido {
  transform: translate(0, 0);
}
.nav-config-rapido.from-top-left.is-closing > section.config-rapido {
  transform: translate(-24px, -24px);
}

/* DIAGONAL: de BAIXO-DIREITA */
.nav-config-rapido.from-bottom-right > section.config-rapido {
  transform: translate(24px, 24px);
}
.nav-config-rapido.from-bottom-right.is-open > section.config-rapido {
  transform: translate(0, 0);
}
.nav-config-rapido.from-bottom-right.is-closing > section.config-rapido {
  transform: translate(24px, 24px);
}

/* ZOOM IN (pop suave) */
.nav-config-rapido.zoom-in > section.config-rapido {
  transform: translateY(6px) scale(0.96);
  transform-origin: right center;
}
.nav-config-rapido.zoom-in.is-open > section.config-rapido {
  transform: translateY(0) scale(1);
}
.nav-config-rapido.zoom-in.is-closing > section.config-rapido {
  transform: translateY(6px) scale(0.96);
}

/* FADE ONLY (sem deslocamento; ideal p/ algo discreto) */
.nav-config-rapido.fade-only > section.config-rapido {
  transform: none;
  opacity: 0;
}
.nav-config-rapido.fade-only.is-open > section.config-rapido {
  opacity: 1;
}
.nav-config-rapido.fade-only.is-closing > section.config-rapido {
  opacity: 0;
}

/* BLUR IN (desembaça ao entrar) */
.nav-config-rapido.blur-in > section.config-rapido {
  transform: translateX(12px);
  opacity: 0;
  filter: blur(8px);
  transition: transform var(--enter-dur) var(--easing), opacity var(--enter-dur) ease, filter var(--enter-dur) ease;
}
.nav-config-rapido.blur-in.is-open > section.config-rapido {
  transform: translateX(0);
  opacity: 1;
  filter: blur(0);
}
.nav-config-rapido.blur-in.is-closing > section.config-rapido {
  transform: translateX(12px);
  opacity: 0;
  filter: blur(8px);
  transition-duration: var(--exit-dur);
}

/* FLIP 3D (eixo Y) — “abrindo” como porta */
.nav-config-rapido.flip-y {
  perspective: 1000px; /* habilita 3D */
}
.nav-config-rapido.flip-y > section.config-rapido {
  transform: translateX(16px) rotateY(-12deg);
  transform-origin: right center;
  backface-visibility: hidden;
}
.nav-config-rapido.flip-y.is-open > section.config-rapido {
  transform: translateX(0) rotateY(0deg);
}
.nav-config-rapido.flip-y.is-closing > section.config-rapido {
  transform: translateX(16px) rotateY(-12deg);
}

/* FLIP 3D (eixo X) — “levantando” a partir do topo */
.nav-config-rapido.flip-x {
  perspective: 1000px;
}
.nav-config-rapido.flip-x > section.config-rapido {
  transform: translateY(-12px) rotateX(-10deg);
  transform-origin: top center;
  backface-visibility: hidden;
}
.nav-config-rapido.flip-x.is-open > section.config-rapido {
  transform: translateY(0) rotateX(0deg);
}
.nav-config-rapido.flip-x.is-closing > section.config-rapido {
  transform: translateY(-12px) rotateX(-10deg);
}

/* DRAWER FORTE (fora da tela) — da DIREITA */
.nav-config-rapido.drawer-right > section.config-rapido {
  transform: translateX(110%); /* sai 110% da própria largura (300px) */
}
.nav-config-rapido.drawer-right.is-open > section.config-rapido {
  transform: translateX(0);
}
.nav-config-rapido.drawer-right.is-closing > section.config-rapido {
  transform: translateX(110%);
}

/* DRAWER FORTE — da ESQUERDA */
.nav-config-rapido.drawer-left > section.config-rapido {
  transform: translateX(-110%);
}
.nav-config-rapido.drawer-left.is-open > section.config-rapido {
  transform: translateX(0);
}
.nav-config-rapido.drawer-left.is-closing > section.config-rapido {
  transform: translateX(-110%);
}

/* DRAWER FORTE — do TOPO */
.nav-config-rapido.drawer-top > section.config-rapido {
  transform: translateY(-110%);
}
.nav-config-rapido.drawer-top.is-open > section.config-rapido {
  transform: translateY(0);
}
.nav-config-rapido.drawer-top.is-closing > section.config-rapido {
  transform: translateY(-110%);
}

/* DRAWER FORTE — de BAIXO */
.nav-config-rapido.drawer-bottom > section.config-rapido {
  transform: translateY(110%);
}
.nav-config-rapido.drawer-bottom.is-open > section.config-rapido {
  transform: translateY(0);
}
.nav-config-rapido.drawer-bottom.is-closing > section.config-rapido {
  transform: translateY(110%);
}

/* (Opcional) SPRING leve com keyframes — combina com .spring */
@keyframes notif-spring-in {
  0% {
    transform: translateX(110%);
  }
  70% {
    transform: translateX(-6%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes notif-spring-out {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-4%);
  }
  100% {
    transform: translateX(110%);
  }
}
/* Aplicação do “spring” (ex.: junto com .drawer-right.spring) */
.nav-config-rapido.spring.drawer-right > section.config-rapido {
  transform: translateX(110%);
}
.nav-config-rapido.spring.drawer-right.is-open > section.config-rapido {
  animation: notif-spring-in 360ms var(--easing) both;
}
.nav-config-rapido.spring.drawer-right.is-closing > section.config-rapido {
  animation: notif-spring-out 260ms var(--easing) both;
}

/* Acessibilidade: respeitar redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .nav-config-rapido,
  .nav-config-rapido * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}/*# sourceMappingURL=nav.config-rapido.css.map */