.cat-carrossel-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-carrossel-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.cat-carrossel-wrapper::-webkit-scrollbar {
    display: none;
}

.cat-carrossel-wrapper .cat-item {
    text-align: center;
    flex: 0 0 auto;
    width: 100px;
}

.cat-carrossel-wrapper.style-circle .cat-item img {
    border-radius: 50%;
}

.cat-carrossel-wrapper.style-square .cat-item img {
    border-radius: 0;
}

.cat-carrossel-wrapper .cat-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cat-carrossel-wrapper .cat-item span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.cat-carrossel-prev,
.cat-carrossel-next {
    background: #000;
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
}

/* Responsivo */
@media screen and (max-width: 600px) {
    .cat-carrossel-wrapper .cat-item {
        width: 80px;
    }
    .cat-carrossel-wrapper .cat-item img {
        width: 60px;
        height: 60px;
    }
}
