Finnally I modified this file:
/modules/paypal/express_checkout/process.php
Line 320, find:
$fields['L_PAYMENTREQUEST_0_AMT'.$index] = Tools::ps_round($product['price_wt'], $this->decimals);
and replace with:
$fields['L_PAYMENTREQUEST_0_AMT'.$index] = sprintf('%.2f', $product['price_wt']);
My problem was that this field was print with 6 decimals.
It seems to work, I put live and I check if OK