/* Efeito de gradiente no texto do título */
.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #7a7a7a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

/* Scrollbar Vermelha Premium */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

/* Rolagem suave */
html {
    scroll-behavior: smooth;
}
