.produtos__page .content {
    display: flex;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.produtos__page .content .products {
    padding-left: 1.5rem;
}
.produtos__page .content .filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.produtos__page .content .filter .line {
    width: 100%;
    height: 2px;
    background-color: #e8231a;
    border-radius: 3px;
    margin: 1rem 0;
}

.produtos__page .content .filter .items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}
.produtos__page .content .filter .items a {
    color: #292929;
    text-decoration: none;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
}

body.gray .produtos__page .content .filter .items a {
    color: #333;
}

.produtos__page .content .filter .items a + a {
    margin-top: 0.4rem;
}

.produtos__page .content .filter .items a:hover,
.produtos__page .content .filter .items a.active,
body.gray .produtos__page .content .filter .items a:hover,
body.gray .produtos__page .content .filter .items a.active {
    color: #e8231a;
}

.produtos__page .content .products {
    flex-grow: 1;
}

.produtos__page .content .products .container__products {
    background-color: #fff;
    width: 100%;
    min-height: 10rem;
    border-radius: 3rem 1rem 1rem 1rem;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}
.produtos__page .content .products .container__products h3.error {
    width: 100%;
    text-align: center;
    color: #333;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.produtos__page .content .products .container__products .content {
    width: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: left;
    position: relative;
}
.produtos__page .content .products .container__products .content::after {
    position: absolute;
    content: " ";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 2px solid #fff;
}

.produtos__page .content .products .container__products .product {
    display: flex;
    flex-direction: column;
    /* max-width: 300px; */
    width: 33.333333%;
    /* flex: 1 0 33.3333333%; */
    padding: 1rem;
    text-decoration: none;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}
.produtos__page .content .products .container__products .product + .product {
    border-right: 1px solid #d7d7d7;
    border-left: none;
}

.produtos__page .content .products .container__products .product h5 {
    font-family: "Poppins SemiBold", sans-serif;
    color: #e8231a;
    font-size: 1rem;
    position: relative;
}
.produtos__page .content .products .container__products .product h5::before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    background-color: #e8231a;
    width: 0%;
    opacity: 0;
    animation: hideUnderline 0.3s forwards;
}
.produtos__page
    .content
    .products
    .container__products
    .product:hover
    h5::before {
    animation: showUnderline 0.3s forwards;
}

.produtos__page .content .products .container__products .product p {
    font-family: "Poppins SemiBold", sans-serif;
    color: #333;
    font-size: 0.7rem;
    font-weight: 100;
}

.produtos__page .content .products .container__products .product .image {
    width: 100%;
    height: 200px;
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    transition: 0.3s;
}
.produtos__page .content .products .container__products .product:hover .image {
    transform: scale(1.05);
}

.produtos__page .products > h1 {
    color: black;
    font-size: 1.2rem;
}

@keyframes showUnderline {
    from {
        width: 0%;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}
@keyframes hideUnderline {
    from {
        width: 100%;
        opacity: 1;
    }
    to {
        width: 0%;
        opacity: 0;
    }
}

.pagination__container ul.pagination {
    justify-content: center;
}
.pagination__container ul.pagination .page-item.active .page-link {
    background-color: #e8231a;
    border-color: #e8231a;
    color: #fff;
}
.pagination__container ul.pagination .page-item .page-link {
    color: red;
}

@media screen and (max-width: 991px), (orientation: portrait) {
    .produtos__page .content {
        flex-direction: column;
        align-items: center;
    }
    .produtos__page .content .filter {
        margin-bottom: 1.5rem;
    }
    .produtos__page .content .products {
        flex: unset;
        padding-left: 0;
        width: 100%;
    }
    .produtos__page .content .products .container__products .content {
        margin: 0;
    }
    .produtos__page .content .products .container__products .product {
        width: 100%;
        flex: unset;
    }
    .pagination__container ul.pagination .page-item .page-link {
        font-size: 0.8rem;
    }
    .pagination__container {
        margin-bottom: 3.5rem;
    }
}
