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

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

::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* Cinza claro */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #EA580C; /* Brand Orange */
}

/* Ensure smooth scrolling works well across browsers */
html {
    scroll-behavior: smooth;
}