.produtos {
    padding: 70px 10px;
}
.produtos-grid {
    display: grid;
    gap: 40px;
}
.servico {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    justify-items: center;
    gap: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.10);
    padding: 20px;
    transition: .8s;
    background-color: #fff;
}

.servico > div a {
    margin-top: 10px;
}
.servico > div p {
    font-size: 1.25rem;
}
.servico > div h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.servico > div span {
    font-style: italic;
}
.produtos-title {
    padding-left: 50px;
    margin-bottom: 50px;
}
.produtos-title p {
    max-width: 650px;
    font-size: 1.5rem;
}
.produtos-title h4 {
    font-weight: 800;
    color: #0A2FB7;
}
.produtos-title h3 {
    font-size: 3.125rem;
    color: #242425;
    font-weight: 800;
}

@media only screen and (min-width:460px) and (max-width:700px) {

    .servico {
        grid-template-columns: 1fr;
    }
    .produtos-title {
        padding-left: 0px;
    }
    .produtos-title h3 {
        font-size: 2.3rem;
    }
    .produtos-title p {
        font-size: 1.2rem;
    }
    
}

@media only screen and (min-width:315px) and (max-width:459px) {

    .servico {
        grid-template-columns: 1fr;
    }
    .servico > div p {
        font-size: 1rem;
    }
    .servico > div h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    .servico > div a {
        font-size: 1.1rem;
    }

    .produtos-title {
        padding-left: 0px;
    }
    .produtos-title h3 {
        font-size: 2rem;
        line-height: 1.2em;
    }
    .produtos-title p {
        font-size: 1rem;
    }
    
}

@media only screen and (min-width:0px) and (max-width:314px) {

    .servico {
        grid-template-columns: 1fr;
    }
    .servico > div p {
        font-size: 1rem;
    }
    .servico > div h2 {
        font-size: 1.2rem;
        text-align: center;
    }
    .servico > div a {
        font-size: .85rem;
    }

    .produtos-title {
        padding-left: 0px;
    }
    .produtos-title h3 {
        font-size: 2rem;
        line-height: 1.2em;
    }
    .produtos-title p {
        font-size: 1rem;
    }
    
}