.categorias {
    display: none;
}
.categoria {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.items-cat {
    width: calc(12%);
    display: inline-block;
    justify-content: center;
}

.items-cat a:hover{
    text-decoration: none;
}
.categoria .items-cat img {
    cursor: pointer;
    display: block;
    padding: 14%;
    width: 127px; /* Tamanho para mecher no photoshop */
    height: 122px; /* Tamanho para mecher no photoshop */
    margin-left: 16px;
}

.categoria .items-cat {
    cursor: pointer;
    border: 1px solid rgba(0,0,0,.125);
    color: black;
}

.categoria .items-cat label{
    cursor: pointer;
    font-size: 11pt;
    color: black;
}

.categoria .items-cat:hover img {
    text-decoration: none;
    transform: translateY(-10px);
    transition: 0.2s;
}

@media screen and (max-width: 900px){
    .pc{display: none;}
    .categorias{
        width: 100%;
        display: block;
        margin-bottom: 0;
    }

    .categoria{
        width: 100%;
        height: auto;
        margin-top: 0 !important;
    }

    .items-cat{
        width: 100%;
        height: 76px;
        display: block;
        border: 1px solid red;
        padding: 0.5rem;
        margin-right: 0;
    }

    .items-cat img {
        width: 50px !important;
        padding: 0 !important;
        height: auto !important;
        display: inline-block !important;
    }

    .items-cat label {
        width: 50%;
        display: inline-block;
    }
}