.barra-categorias {
    width: 100%;
    height: 90px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    background-color: #3a0f11;
}

.barra-categorias::-webkit-scrollbar {
    display: none
}

.item-categoria {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    min-width: 80px;
    margin-right: 10px
}

.item-categoria .icono {
    width: 35px;
    height: 35px;
    margin: 0 auto
}

.item-categoria svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    transition: transform 0.3s ease
}

.titulo-categoria {
    font-family: 'Montserrat',sans-serif;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease
}

.item-categoria:hover svg {
    transform: scale(1)
}

.item-categoria:hover .titulo-categoria {
    color: #debe59
}

.item-categoria:active .titulo-categoria {
    color: #debe59
}

.controles-carrusel {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 920px;
}

.btn-carrusel {
    background-color: #fff0;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding-bottom: 17px
}

.dragging {
    cursor: grabbing;
    scroll-behavior: auto
}

.dragging-effect {
    overflow-x: scroll;
    scroll-snap-type: x mandatory
}

@media(min-width: 768px) {
    .btn-carrusel {
        display:none
    }
}

@media (max-width: 768px) {
    .barra-categorias {
        height:85px
    }

    .titulo-categoria {
        font-size: 9px
    }

    .item-categoria-m {
        cursor: pointer
    }

    .item-categoria-m .icono-m {
        width: 20px;
        height: 20px;
        margin: 0 auto
    }

    .titulo-categoria-m {
        font-family: 'Montserrat',sans-serif;
        margin-top: 5px;
        font-size: 10px;
        font-weight: 400;
        color: #fff;
        transition: color 0.3s ease
    }

    .icono-ingresar {
        margin-top: -15px
    }
}
