.breadcrumb {
    margin-top: 20px;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb .breadcrumb-item,
.breadcrumb .breadcrumb-item a {
    color: #0d6efd;
}

.produtos-lista {
    padding: 30px 0;
}

.product-wrapper {
    height: 150px;
    border-radius: 36.06px;
    border: 4px solid transparent;
}

.product-image {
    border-radius: 36.06px;
}

.products-columns {
    justify-content: flex-start;
    margin-top: 20px;
}

.product-wrapper.active {
    border-color: #0d6efd;
}

.product-item {
    cursor: pointer;
}

.product-item .h5 {
    text-align: left;
}

.catalogos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* justify-content: space-between; */
}

.catalogo {
    width: calc(100% / 3.3);
}

.catalogo-img {
    position: relative;
    margin-bottom: 10px;
}

.catalogo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10.54px;
}

.catalogo-img a {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.catalogo a.h6 {
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 576px) {
    .product-wrapper {
        height: 100px;
        width: 100px;
        border-radius: 20px;
    }

    .product-image {
        border-radius: 20px;
    }

    .product-item {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .product-item .h5 {
        margin: 0;
    }

    .products-columns {
        margin-bottom: 70px;
    }

    .catalogo {
        width: calc(100% / 2.2);
    }
}