.produtos {
    padding: 70px 10px;
    color: #f2f2f2;
}
.produtos-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
}
.produtos-grid {
    display: grid;
    justify-items: center;
    gap: 50px;
}
.item {
    display: grid;
    gap: 10px;
    max-width: fit-content;
    text-transform: uppercase;
}
.item:hover h2 {
    color: #BC8034
}
.item h2 {
    color: #F2F2F280;
    transition: .2s;
}
.produtos-title {
    display: grid;
    gap: 20px;
    margin-right: auto;
    color: #f2f2f2;
}
.produtos-title h4 {
    font-size: 2.25rem;
    line-height: 1.2em;
    font-weight: 300;
}
.produtos-title > span {
    max-width: 140px;
    width: 100%;
    height: 1px;
    background-color: #BC8034;
    display: block;
}
.produtos-title p {
    font-size: 1.25rem;
    max-width: 600px;
}
.produtos-title p span {
    color: #BC8034;
}

@media only screen and (max-width:350px) {

    .produtos-title h4 {
        font-size: 1.6rem;
    }
    .produtos-title p {
        font-size: 1rem;
    }
    
}