/* Oculta todos los párrafos al inicio */
.rm-code > div:nth-of-type(n+5) {
display: none;
opacity: 0;
transition: opacity 0.3s ease;
}
/* TĂtulo 1 activa párrafo 1 */
.rm-code > div:nth-of-type(1):active ~ div:nth-of-type(5),
.rm-code > div:nth-of-type(1):focus ~ div:nth-of-type(5) {
display: block;
opacity: 1;
}
/* TĂtulo 2 activa párrafo 2 */
.rm-code > div:nth-of-type(2):active ~ div:nth-of-type(6),
.rm-code > div:nth-of-type(2):focus ~ div:nth-of-type(6) {
display: block;
opacity: 1;
}
/* TĂtulo 3 activa párrafo 3 */
.rm-code > div:nth-of-type(3):active ~ div:nth-of-type(7),
.rm-code > div:nth-of-type(3):focus ~ div:nth-of-type(7) {
display: block;
opacity: 1;
}
/* TĂtulo 4 activa párrafo 4 */
.rm-code > div:nth-of-type(4):active ~ div:nth-of-type(8),
.rm-code > div:nth-of-type(4):focus ~ div:nth-of-type(8) {
display: block;
opacity: 1;
}