.produto-main {
    padding-top: 60px;
    padding-bottom: 60px;
    background: url(/img/fundo-produto.png)no-repeat right;
}
.produto-content {
    display: grid;
    grid-template-columns: .6fr 1fr;
    grid-gap: 30px;
    padding-left: 10px;
    padding-right: 10px;
    background: url(/img/background-absolute2.png) no-repeat left bottom;
}

.produto-content-second {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.pct  img {
    margin-top: 10px;
    margin-bottom: 10px;
}


.produto-imagem img {
    width: 100%;
    object-fit: cover;
}

.pct h2, .pct-second {
    font-weight: 800;
    font-size: 2.25rem;
    color: #282828;
    margin-top: 20px;
    line-height: 1.2em;
}
.pct span, .pct-second span {
    color: #A25641;
}


.pct h2 span::after, .pct-second h2 span:after {
    content: url(/img/point.svg);
    transition: 1s;
}
.pct p, .pct-second p  {
    color: #282828;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 20px;
    margin-top: 5px;
    max-width: 550px;
    font-style: italic;
}

.description-itens-porta {
    color: #000!important;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}

.pct ul li {
    color: #282828;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 10px;
    margin-top: 5px;
    max-width: 550px;
    font-style: italic;
}

.pct-second ul li {
    color: #282828;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 10px;
    margin-top: 5px;
    max-width: 800px;
    font-style: italic;
}

.pct-sobre, .pct-sobre-second {
    display: grid;
}

.pct-sobre h5, .pct-sobre-second h5 {
    color: #282828;
    font-weight: 500;
    font-size: 1.125rem;
    margin-top: 15px;
}

.pct-sobre a {
    margin-top: 20px;
    font-weight: 500;
    font-size: 1rem;
    background-color: #A25641;
    color: #fff;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    transition: .3s;
    max-width: 550px;
}

.pct-sobre-second a {
    margin-top: 20px;
    font-weight: 500;
    font-size: 1rem;
    background-color: #A25641;
    color: #fff;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    transition: .3s;
    max-width: 800px;
}

.pct-sobre a:hover, .pct-sobre-second a:hover{
    background-color: #f3cd33;
    box-shadow: 0px 0px 10px #f3cd33;
    color: #282828;
}

.gallery-produtos {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-gap: 20px;
    justify-items: center
}


@media only screen and (min-width: 531px) and (max-width: 1025px) {
    .produto-content {
        grid-template-columns: 1fr;
        max-width: 560px;
        justify-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-produtos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    
    }
    
}

@media only screen and (max-width: 530px) {
    .produto-content {
        grid-template-columns: 1fr;
        max-width: 560px;
        justify-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pct h2, .pct-second {
        font-size: 1.5rem;
        color: #282828;
        margin-top: 20px;
        line-height: 1.2em;
    }

    
    .gallery-produtos {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
    
    }

}