/* #produtos .wrap {
    display: flex;
    gap: 20px;
} */
.produtos-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}
.produtos-container:nth-child(even) {
    flex-direction: row-reverse;
}
.produtos-info {
    width: fit-content;
    max-width: 400px;
    justify-content: flex-start;
}
.produtos-container:nth-child(even) .produtos-info {
    justify-content: flex-end;
}
.produtos-img {
    width: fit-content;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.produtos-container:nth-child(even) .produtos-img {
    justify-content: flex-start;
}
a.produto-link {
    color: #002a00;
    text-decoration: none;
    transition: all 200ms linear;
}
a.produto-link:hover {
    color: #004a00;
}
.produtos-name {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    font-weight: 700;
}
.produtos-subtitulo {
    font-weight: 600;
}
.produtos-categories {
    margin-top: 5px;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
}
.produtos-categories a {
    background-color: #005900;
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 11px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
}
.produtos-categories a:hover {
    background-color: #00c200;
    color: #ffffff;
}
.produtos-description {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: darkslategrey;
    padding: 30px 0;
}
.produtos-description ul {
    list-style: disc;
}
.produtos-description ul:last-child {
    margin-bottom: 0;
}
a.produtos-seemore {
    color: #005000;
    text-decoration: none;
    transition: all 200ms linear;
}
a.produtos-seemore:hover {
    color: #00c200;
}
.produtos-price {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 20px;
    font-weight: 700;
    color: #005000;
    text-decoration: none;
}
.produtos-price del {
    font-size: 16px;
    font-weight: 300;
    color: #a4b3a4;
}
.produtos-price ins {
    text-decoration: none;
}
.product-quantity-set {
    width: 80px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: solid 1px rgba(0, 0, 0, 0.125);
    text-align: center;
}
.product-quantity-set[type=number]::-webkit-inner-spin-button {
    opacity: 1
}
.contator {
    display: flex;
}
.contator span {
    display: flex;
    width: 30px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: solid 1px rgba(0, 0, 0, 0.125);
}
.produtos-add-to-cart {
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.fa {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0 0 0 / 4%);
    height: 40px;
    width: 25px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.125);
    border-top: solid 1px rgba(0, 0, 0, 0.125);
    font-size: 10px;
}
.fa.left {
    border-left: solid 1px rgba(0, 0, 0, 0.125);
    border-radius: 5px 0 0 5px;
}
.fa.right {
    border-right: solid 1px rgba(0, 0, 0, 0.125);
    border-radius: 0 5px 5px 0;
}
.product-add-to-cart-button {
    border: none;
    background-color: #007200;
    border-radius: 5px;
    padding: 4px 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-subheader .breadcrumbs a {
    text-decoration: none;
    display: flex;
    gap: 5px;
    align-items: center;
}