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

.audio-player {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  transition: all 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  .audio-player {
    background: rgba(255, 255, 255, 0.03);
  }
}
.audio-player .play-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gr-btn-soft--start), var(--gr-btn-soft--end));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.audio-player .play-btn div[data-icon] {
  width: 24px;
  height: 24px;
  fill: white !important;
}
.audio-player .play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(130, 87, 229, 0.4);
}
.audio-player .play-btn:active {
  transform: scale(0.95);
}
.audio-player .player-controls {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.audio-player .player-controls .time-display,
.audio-player .player-controls .duration-display {
  font-size: 0.7rem;
  font-family: "JetBrains Mono", monospace, sans-serif;
  font-weight: 600;
  color: #64748b;
  min-width: 35px;
  opacity: 0.8;
}
@media (prefers-color-scheme: dark) {
  .audio-player .player-controls .time-display,
  .audio-player .player-controls .duration-display {
    color: #94a3b8;
  }
}
.audio-player .player-controls .progress-container {
  flex: 1;
  height: 45px;
  background: transparent;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  overflow: visible;
}
.audio-player .player-controls .progress-container .progress-bar {
  position: absolute;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, rgba(var(--gr-btn-soft--start), 0.05));
  border-right: 2px solid var(--gr-btn-soft--start);
  z-index: 5;
  pointer-events: none;
  transition: width 0.1s linear;
}
.audio-player .player-controls .progress-container .progress-bar::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gr-btn-soft--start);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gr-btn-soft--start);
}
.audio-player .player-controls .progress-container .waveform-simulator {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  opacity: 0.3;
  transition: opacity 0.3s;
}
.audio-player .player-controls .progress-container .waveform-simulator span {
  width: 3px;
  background: #64748b;
  background: #94a3b8;
  border-radius: 1.5px;
  min-height: 4px;
  height: var(--h, 10px);
  transition: all 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  .audio-player .player-controls .progress-container .waveform-simulator span {
    background: #475569;
  }
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(1) {
  height: 13px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(2) {
  height: 17px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(3) {
  height: 18px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(4) {
  height: 6px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(5) {
  height: 6px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(6) {
  height: 16px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(7) {
  height: 24px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(8) {
  height: 30px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(9) {
  height: 9px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(10) {
  height: 13px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(11) {
  height: 22px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(12) {
  height: 9px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(13) {
  height: 18px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(14) {
  height: 9px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(15) {
  height: 17px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(16) {
  height: 10px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(17) {
  height: 23px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(18) {
  height: 18px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(19) {
  height: 23px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(20) {
  height: 7px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(21) {
  height: 8px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(22) {
  height: 24px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(23) {
  height: 18px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(24) {
  height: 13px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(25) {
  height: 18px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(26) {
  height: 17px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(27) {
  height: 15px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(28) {
  height: 15px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(29) {
  height: 17px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(30) {
  height: 13px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(31) {
  height: 6px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(32) {
  height: 13px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(33) {
  height: 24px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(34) {
  height: 7px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(35) {
  height: 14px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(36) {
  height: 16px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(37) {
  height: 10px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(38) {
  height: 16px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(39) {
  height: 24px;
}
.audio-player .player-controls .progress-container .waveform-simulator span:nth-child(40) {
  height: 29px;
}
.audio-player .player-controls:hover .waveform-simulator {
  opacity: 0.5;
}
.audio-player.is-playing {
  background: rgba(130, 87, 229, 0.05);
}
.audio-player.is-playing .waveform-simulator {
  opacity: 0.8;
}
.audio-player.is-playing .waveform-simulator span {
  background: var(--gr-btn-soft--start);
  animation: wavePulse 1.2s ease-in-out infinite;
}
.audio-player.is-playing .waveform-simulator span:nth-child(1) {
  animation-delay: 0.05s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(2) {
  animation-delay: 0.1s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(3) {
  animation-delay: 0.15s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(4) {
  animation-delay: 0.2s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(5) {
  animation-delay: 0.25s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(6) {
  animation-delay: 0.3s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(7) {
  animation-delay: 0.35s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(8) {
  animation-delay: 0.4s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(9) {
  animation-delay: 0.45s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(10) {
  animation-delay: 0.5s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(11) {
  animation-delay: 0.55s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(12) {
  animation-delay: 0.6s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(13) {
  animation-delay: 0.65s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(14) {
  animation-delay: 0.7s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(15) {
  animation-delay: 0.75s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(16) {
  animation-delay: 0.8s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(17) {
  animation-delay: 0.85s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(18) {
  animation-delay: 0.9s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(19) {
  animation-delay: 0.95s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(20) {
  animation-delay: 1s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(21) {
  animation-delay: 1.05s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(22) {
  animation-delay: 1.1s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(23) {
  animation-delay: 1.15s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(24) {
  animation-delay: 1.2s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(25) {
  animation-delay: 1.25s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(26) {
  animation-delay: 1.3s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(27) {
  animation-delay: 1.35s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(28) {
  animation-delay: 1.4s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(29) {
  animation-delay: 1.45s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(30) {
  animation-delay: 1.5s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(31) {
  animation-delay: 1.55s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(32) {
  animation-delay: 1.6s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(33) {
  animation-delay: 1.65s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(34) {
  animation-delay: 1.7s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(35) {
  animation-delay: 1.75s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(36) {
  animation-delay: 1.8s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(37) {
  animation-delay: 1.85s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(38) {
  animation-delay: 1.9s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(39) {
  animation-delay: 1.95s;
}
.audio-player.is-playing .waveform-simulator span:nth-child(40) {
  animation-delay: 2s;
}

@keyframes wavePulse {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}
.musica-renova-container {
  display: flex;
  min-height: 100vh;
  min-width: 100%;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--gr-bg--V3--P1), var(--gr-bg--V3--P2), var(--gr-bg--V3--P3));
  background-size: 200% 200%;
  animation: gradientAnimation 15s ease infinite;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.musica-renova-container::before, .musica-renova-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.4;
}
.musica-renova-container::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #8257e5, transparent 70%);
  top: -150px;
  left: -150px;
}
.musica-renova-container::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gr-btn-soft--end), transparent 70%);
  bottom: -100px;
  right: -100px;
}
.musica-renova-container .renova-sidebar {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  z-index: 20;
  background: linear-gradient(180deg, var(--gr-bg--V3--P1) 0%, var(--gr-bg--V3--P2) 100%);
  border-right: 1px solid #e5e7eb;
  width: 280px;
  width: 280px;
  min-width: 280px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-sidebar {
    border-right: 1px solid #1f2937;
  }
}
@media only screen and (min-width: 2000px) {
  .musica-renova-container .renova-sidebar {
    width: 320px;
  }
}
@media only screen and (max-width: 1599px) {
  .musica-renova-container .renova-sidebar {
    width: 260px;
  }
}
@media only screen and (min-width: 2000px) {
  .musica-renova-container .renova-sidebar {
    min-width: 320px;
  }
}
@media only screen and (max-width: 1599px) {
  .musica-renova-container .renova-sidebar {
    min-width: 260px;
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    min-width: 280px;
    height: 100vh;
    z-index: 1000;
    transform: translateX(-100%);
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
    background: rgba(18, 18, 20, 0.95);
    border-right: none;
  }
}
@media only screen and (max-width: 1179px) and (prefers-color-scheme: dark) {
  .musica-renova-container .renova-sidebar {
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.4);
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-sidebar.open {
    transform: translateX(0);
  }
}
.musica-renova-container .renova-sidebar .sidebar-header {
  margin-bottom: 3rem;
}
.musica-renova-container .renova-sidebar .sidebar-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--gr-btn-soft--start), var(--gr-btn-soft--end));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.musica-renova-container .renova-sidebar .sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.musica-renova-container .renova-sidebar .sidebar-nav ul li {
  margin-bottom: 1rem;
}
.musica-renova-container .renova-sidebar .sidebar-nav ul li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  color: #64748b;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-sidebar .sidebar-nav ul li a {
    color: #a1a1aa;
  }
}
.musica-renova-container .renova-sidebar .sidebar-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #0f172a;
  transform: translateX(5px);
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-sidebar .sidebar-nav ul li a:hover {
    color: #f1f5f9;
  }
}
.musica-renova-container .renova-sidebar .sidebar-nav ul li a.active {
  background: linear-gradient(90deg, rgba(130, 87, 229, 0.1), transparent);
  color: #8257e5;
  font-weight: 600;
}
.musica-renova-container .renova-sidebar .sidebar-nav ul li a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #8257e5;
  border-radius: 0 4px 4px 0;
}
.musica-renova-container .renova-content {
  flex: 1;
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  position: relative;
  z-index: 10;
  padding: 1.5rem;
  padding: 3rem;
  margin-left: 0;
  overflow: auto;
}
@media only screen and (min-width: 2000px) {
  .musica-renova-container .renova-content {
    padding: 4rem;
  }
}
@media only screen and (max-width: 1599px) {
  .musica-renova-container .renova-content {
    padding: 2rem;
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content {
    padding: 1rem;
  }
}
@media (hover: hover) {
  .musica-renova-container .renova-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .musica-renova-container .renova-content::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .musica-renova-container .renova-content:hover {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb {
    border-radius: 6px;
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content:hover {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
@media (hover: hover) {
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb:active {
    background-color: #4b5563;
  }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb:hover {
    background-color: #9ca3af;
  }
  .musica-renova-container .renova-content:hover::-webkit-scrollbar-thumb:active {
    background-color: #d1d5db;
  }
}
@media (hover: none) {
  .musica-renova-container .renova-content {
    scrollbar-width: thin;
    -ms-overflow-style: auto;
    scrollbar-color: #9ca3af rgba(229, 231, 235, 0);
  }
  .musica-renova-container .renova-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .musica-renova-container .renova-content::-webkit-scrollbar-thumb {
    border-radius: 6px;
  }
  .musica-renova-container .renova-content::-webkit-scrollbar-thumb {
    background-color: #9ca3af;
  }
  .musica-renova-container .renova-content::-webkit-scrollbar-track {
    background-color: rgba(229, 231, 235, 0);
  }
}
@media (hover: none) and (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content {
    scrollbar-color: #6b7280 rgba(31, 41, 55, 0);
  }
  .musica-renova-container .renova-content::-webkit-scrollbar-thumb {
    background-color: #6b7280;
  }
  .musica-renova-container .renova-content::-webkit-scrollbar-track {
    background-color: rgba(31, 41, 55, 0);
  }
}
.musica-renova-container .renova-content .sidebar-toggle {
  display: none;
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: 45px;
    height: 45px;
    background: var(--gr-btn-soft--start);
    border: none;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    cursor: pointer;
  }
}
.musica-renova-container .renova-content > .wrapper-wide {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.musica-renova-container .renova-content > .wrapper-wide .track-section {
  min-height: auto;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  scroll-margin-top: 2rem;
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-width: 850px;
  background: linear-gradient(180deg, var(--gr-bg--V2--P1) 0%, var(--gr-bg--V2--P2) 100%);
  border: 1px solid var(--gr-bg--V2--P2);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1599px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card {
    max-width: 750px;
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card {
    max-width: 100%;
  }
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card {
    border: 1px solid var(--gr-bg--V1--P2);
  }
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card {
    padding: 1.5rem;
  }
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header {
    align-items: flex-start;
  }
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-cover {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-cover {
    border: 1px solid #333;
  }
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info {
  flex-basis: 100%;
  flex-shrink: 0;
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gr-btn-soft--start), var(--gr-btn-soft--end));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.6rem;
}
:root[data-theme=dark] .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info h2 {
  background: linear-gradient(135deg, var(--gr-warm--start), var(--gr-warm--end));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info h2::after {
  display: none;
}
@media only screen and (max-width: 1599px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info h2 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 1179px) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info h2 {
    font-size: 1.2rem;
  }
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info .track-artist {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .card-header .track-info .track-artist {
    color: #94a3b8;
  }
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .lyrics-placeholder p {
  font-size: 1.1rem;
  color: #4b5563;
  font-weight: 400;
}
@media (prefers-color-scheme: dark) {
  .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .lyrics-placeholder p {
    color: #cbd5e1;
  }
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .lyrics-placeholder p.refrao {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--gr-btn-soft--start);
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}
:root[data-theme=dark] .musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .lyrics-placeholder p.refrao {
  color: var(--gr-warm--start);
}
.musica-renova-container .renova-content > .wrapper-wide .track-section .track-card .lyrics-placeholder br {
  content: "";
  display: block;
  margin: 1.5rem 0;
}/*# sourceMappingURL=pag.musica-renova.css.map */