html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00703C;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00522c;
}

/* Ajuste para o scroll não cobrir o título devido ao header fixo */
section {
    scroll-margin-top: 80px;
}