The API does not handle negative values: ```python from price_parser import Price def test_price_parser(): value = Price.fromstring("R$ 1,00") assert value.amount_float == 1.0 value = Price.fromstring("R$ -2,00") assert value.amount_float == -2.0 # Fails ```