<?php

$string = "Mais de - valor: R$3.21 - Tipo: (+05)";
preg_match('/^([^-]+)[^\(]+(\([^\)]+\))/', $string, $match);
echo $match[1].$match[2];