/* Importando Fontes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Space+Grotesk:wght@500;700;900&display=swap');

/* Configurações Globais */
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, .font-display {
    font-family: 'Space Grotesk', sans-serif;
}

/* Scrollbar Personalizada (Dark Mode) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0B0F19; 
}
::-webkit-scrollbar-thumb {
    background: #1e293b; 
    border-radius: 5px;
    border: 2px solid #0B0F19;
}
::-webkit-scrollbar-thumb:hover {
    background: #00F0FF; 
}

/* Utilitários */
html {
    scroll-behavior: smooth;
}