.boxGarantia {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.boxGarantia .boxGrid {
    float: left;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.boxGarantia .boxGrid .boxItem {
    border-radius: 8px;
    background-color: #EFEFEF;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boxGarantia .boxGrid .boxItem .boxTexto {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}

.boxGarantia .boxGrid .boxItem .boxTexto h2 {
    float: left;
    width: 100%;
    color: #292929;
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.boxGarantia .boxGrid .boxItem .boxTexto p {
    float: left;
    width: 100%;
    color: #3D3D3D;
    margin: 0;
    font-size: 14px;
}

.boxGarantia .boxGrid .boxItem .boxTexto img {
    min-width: 80px;
}

@media only screen and (max-width: 900px) {

    .boxGarantia .boxGrid {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media only screen and (max-width: 600px) {

    .boxGarantia .boxGrid .boxItem {
        flex-direction: column-reverse;
    }

    .boxGarantia .boxGrid .boxItem .boxTexto {
        margin-right: 0;
        margin-top: 30px;
    }

}