.carrossel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #f9f9f9;
    padding: 10px 0;
}

.carrossel-scroll {
    display: inline-flex;
    animation: scroll-left 40s linear infinite;
}

.carrossel-item {
    flex: 0 0 auto;
    background: #28a745;
    color: #fff;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    min-width: 150px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}





/* titulo */


.carrossel-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.carrossel-titulo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
