He is interpreting the PDO as any class on your system, what you can do is:
You can change:
class Sql extends PDO{
To
class Sql extends \PDO{
Or import using the use command at the top of the document, below the namespace:
namespace classes\conexao;
use PDO
To continue this way:
class Sql extends PDO{