/* Importar a fonte Inter diretamente no CSS para limpar o HTML */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Aplicar a fonte globalmente */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased; /* Deixa a fonte mais nítida */
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   Personalização da Barra de Scroll
   ========================================= */

/* Largura da barra */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Fundo da barra (transparente para ser discreto) */
::-webkit-scrollbar-track {
    background: transparent; 
}

/* A "pega" da barra (Modo Light) */
::-webkit-scrollbar-thumb {
    background-color: #cbd5e1; /* slate-300 */
    border-radius: 4px;
}

/* Hover na barra (Modo Light) */
::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8; /* slate-400 */
}

/* =========================================
   Barra de Scroll - Modo Dark
   ========================================= */

/* A "pega" da barra (Modo Dark) */
.dark ::-webkit-scrollbar-thumb {
    background-color: #1e293b; /* slate-800 */
}

.dark ::-webkit-scrollbar-thumb:hover {
    background-color: #334155; /* slate-700 */
}

/* =========================================
   Seleção de Texto (Highlight)
   ========================================= */
::selection {
    background-color: #6526ef; /* A sua cor Primary */
    color: #ffffff;
}