/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a:hover {
    text-decoration: none !important;
}

a {
    text-decoration: none !important;
    /* Remove qualquer sublinhado */
}

body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

/* Estiliza a barra de rolagem em todo o site */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}