.texto-justificado {
    text-align: justify;
}

.texto-centrado {
    text-align: center;
}

.texto-negrita {
    font-weight: bold;
}
.texto-italica {
    font-style: italic;
}
.texto-subrayado {
    text-decoration: underline;
}
.texto-mayusculas {
    text-transform: uppercase;
}
.texto-minusculas {
    text-transform: lowercase;
}
.texto-capitalizado {
    text-transform: capitalize;
}
.texto-pequeno {
    font-size: 0.8em;
}
.texto-grande {
    font-size: 1.2em;
}
.texto-color {
    color: #333;
}
