.box-card{
    width: 990px;
    background: #00000000;
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.card_categoria{
    width: 300px;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    margin: 10px;
}

.card_categoria::before{
    position: absolute;
    content: '';
    width: 800px;
    height: 800px;
    background: #00000000;
    transition: all 1s;
    z-index: 0
}

.card_categoria i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 2rem;
    color: transparent;
    transition: all 1s;
}


.card_categoria:hover::before{
    background: #00000059;
    z-index: 0
}

.card_categoria:hover i{
    color: #ffffff !important;
}

@media(max-width: 1140px){
    .card_categoria{
        width: 350px;
        height: 350px;
    }

    .card_categoria::before{
        width: 350px;
        height: 350px;
    }

    .box-card{
        justify-content: center
    }
}


@media(max-width: 894px){
    .card_categoria{
        width: 70%;
        height: 500px;
    }

    .card_categoria::before{
        width: 100%;
        height: 500px;
    }
}


@media(max-width: 500px){
    .card_categoria{
        height: 300px;
    }

    .card_categoria::before{
        height: 300px;
    }
}