/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --font-family: "Montserrat", "sans-serif";
}

body {
  font-family: var(--font-family);
}

.dark body {
  background-color: var(--color-grafite);
}

.ativa-tab-indicador::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #2563eb;
  border-radius: 9999px;
  opacity: 1;
  transition: opacity 0.2s ease-out;
}

.dark .ativa-tab-indicador::before {
  background-color: var(--color-azul-noturno);
}

[data-menu-item]:not(.ativa-tab-indicador)::before {
  opacity: 0;
}