.section-layout-2 .painel {
    border-radius: 20px;
    border: 1px solid #119DA4;
    background: #FFF;
    display: flex;
    padding: 50px;
    align-items: center;
    gap: 70px;
    align-self: stretch;
}

.section-layout-2 .painel:nth-child(odd) {
    border-color: #7957C7;
    flex-direction: row-reverse;
}

.section-layout-2 img {
    width: 400px;
}

.section-layout-2 .painel__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-layout-2 h2 {
    font-size: 32px;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .section-layout-2 .painel {
        flex-direction: column;
    }

    .section-layout-2 .painel:nth-child(odd) {
        flex-direction: column;
    }

    .section-layout-2 {
        text-align: center;
    }
}
