.descartes__descricao_texto{
    background-color: var(--bg-color);
    /* font-size: 10px; */
    height: 0;
    opacity: 0;
    overflow: hidden;
    letter-spacing: -0.05rem;
    line-height: 18px;
    text-align: left;
    /* text-align: justify; */
    transform: rotateX(-90deg);
    transition: all ease .25s;
    word-spacing: 1px;
    z-index: -1;
}
.descartes__descricao_texto--titulo{
    color: black;
    white-space: pre;
}

.descartes__descricao_texto--titulo::after{
    content: '\A\A';
    white-space: pre;
}

.descartes__descricao_texto--ativo{
    height: inherit;
    max-width: 100%;
    opacity: 1;
    padding-top: 2rem;
    transform: rotateX(0deg);
    z-index: auto;
}

@media screen and (min-width: 778px){
    .descartes__descricao_texto--ativo{
        height: 200px;
    }
}