/* Custom Styles */
body {
    scroll-behavior: smooth;
}

/* Estilo para a barra de rolagem */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #00C853;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #009624;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: #00C853;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.floating-btn.show {
    opacity: 1;
    transform: translateY(0);
}
