.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 50px 0;
    align-items: center;
    justify-items: center;
}

.sobre-valores {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: stretch;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 50px 25px;
    gap: 2rem;
}

.sobre-valores-box {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 2px #588929;
    border-radius: 4px;
    padding: 15px;
}

.sobre-valores-box h2 {
    color: #333333;
}

.sobre-valores-box p {
    color: #545454;
    text-align: justify;
}

@media only screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .sobre-valores {
        grid-template-columns: 1fr;
    }
}