/* ===============================
Texto justificado sem “buracos”
=============================== */
.texto-justificado {
    text-align: justify;
    line-height: 1.6;
    max-width: 65ch;

    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;

    overflow-wrap: break-word;
    word-break: normal;
    letter-spacing: 0.01em;
}

/* Mobile: legibilidade > alinhamento */
@media (max-width: 576px) {
    .texto-justificado {
        text-align: left;
        hyphens: none;
    }
}