.main-product {
    background: url(/img/produtos.webp) no-repeat center center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
}

.main-product-grid{
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}

.main-product-grid .main-title{
    background: #182c20;
    font-size: 4rem;
    line-height: 1.2em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    padding-right: 10px;
    padding-left: 10px;
    color: #FCFCFB;
}

.main-product-grid .main-title-var{
    background: #fcce01;
    font-size: 4rem;
    line-height: 1.2em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    padding-right: 10px;
    padding-left: 10px;
    color: #182c20;
}

.main-product-grid p {
    color: #182c20;
    font-weight: 700;
    padding: 5px 10px;
    background: rgba(252, 252, 251, .5);
}

.main-product .btn {
    margin-top: 20px;
    background: #FCFCFB;
}

.main-product .btn img {
   width: 30px;
}

.products-text {
    max-width: 1000px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.products-text h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
}

.products-page {
    padding-top: 10px;
    padding-bottom: 40px;
}

.products-page-grid {
    display: grid;
    grid-gap: 40px;
}

.product-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.product-page-grid h2 {
    font-size: 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    color: #182c20;
    font-weight: 600;
    line-height: 1.1em;
}

.product-page-grid h2::after {
    content: "";
    width: 20px;
    height: 2px;
    display: block;
    background: #fcce01;
}


.product-page-grid p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.product-page-content {
    display: grid;
    align-content: center;
    justify-content: center;
}

.product-page-grid .product-call a{
    font-size: 1.5rem;
}

.product-page-grid .product-call a img{
    width: 30px;
}

.bread {
    padding-top: 30px;
    padding-bottom: 30px;
}

.bread-group {
    display: flex;
    grid-gap: 5px;
}

.link-atual{
    text-decoration: underline;
}

.product-single {
    padding-bottom: 40px;
}


@media only screen and (min-width: 352px) and (max-width: 810px) {
    .product-page-grid {
        grid-template-columns: 1fr;
    }  

    .products-page-grid .product-page-grid:nth-child(odd) figure{
        grid-row: 1/3;
    }

    .product-page-grid h2 {
        font-size: 2.25rem;
    }
}

@media only screen and (max-width: 351px) {
    .product-page-grid {
        grid-template-columns: 1fr;
    }  

    .products-page-grid .product-page-grid:nth-child(odd) figure{
        grid-row: 1/3;
    }

    .product-page-grid h2 {
        font-size: 2.25rem;
    }

    .product-call {
        display: grid;
        grid-template-columns: 1fr;
    }
}