
#interactive-img-2 {
    transition: transform 0.3s ease-out;
}

/* Animação do background */
.bg-animation {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #1e40af);
    background-size: 300% 300%;
    animation: bg-move 8s ease infinite;
}

@keyframes bg-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Ocultando o scroll */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

#carousel {
    cursor: grab;
    user-select: none;
}

#carousel:active {
    cursor: grabbing;
}


