.carrosselRotSite {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px; /* Adiciona margem para dar mais espaço */
}

.carrossel {
    display: flex;
    overflow-x: scroll;
    width: 100%; /* Aumenta a largura para 100% */
    gap: 20px;
    cursor: grab;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carrossel::-webkit-scrollbar {
    display: none; /* Oculta a barra de rolagem no Chrome, Safari e Opera */
}

.imagem-container {
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.carrossel img {
    border-radius: 10px;
    max-width: 300px; /* Limita o tamanho máximo das imagens */
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Efeito de zoom nas imagens ao passar o mouse */
.carrossel img:hover {
    transform: scale(1.05);
}

.descricao {
   margin-top: 10px;
    font-size: 15px;
    color: #333;
    font-weight: bold;
}
