.sobre {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.titulo-sobre {
    color: var(--cinza-escuro);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--montserrat);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.25rem;
}

.texto-sobre {
    line-height: normal;
    margin-bottom: 1rem;
}

.texto-sobre-destaque {
    color: var(--cinza-escuro);
    font-weight: 700;
}

.img-sobre {
    display: none;
}

.plataformas-sobre {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
    .sobre {
        display: flex;
    }
    .conteudo-sobre {
        margin-right: 3rem;
    }
    .titulo-sobre {
        text-align: left;
    }
    .texto-sobre-divisao {
        border-bottom: 1px solid var(--cinza-medio);
        padding-bottom: 1.5rem;
    }
    .img-sobre {
        display: block;
    }    
}

