.section-plano {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    z-index: 7;
}

.plano-header h2 {
    width: 19ch;
}

.plano-header p {
    width: 100%;
}

.plano{
    display: flex;
    justify-content: center;
}

.plano img {
    width: 100%;
    align-self: center;
    padding: 0;
}

@media(min-width:1024px) {
    .section-plano {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }

    .plano-header p {
        width: 45ch;
    }
}