/* Garante fluxo correto */
.categoria-descricao {
    clear: both;
}

/* Corta apenas o conteúdo interno */
.categoria-descricao .interno {
    max-height: 260px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Quando expandido */
.categoria-descricao.expandido .interno {
    max-height: 5000px;
}

/* Botão */
.botao-ver-mais {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
}
