Yes, that was the problem. With so many names to choose, I used the forbidden one! hehe now its ok! Thanks!
One more issue:
I underestand the "permalink" is auto-generated when you don´t define it. I´m using the "Monday by Noon" tutorial:http://mondaybynoon.com/2010/01/04/pulling-pods-data/
When I try to pull the permalink, it comes empty. The code is basically that:
<?php
$pesquisas = new Pod('pesquisas');
$pesquisas->findRecords('name ASC');
$total_pesquisas = $pesquisas->getTotalRows();
?>
<?php if( $total_pesquisas>0 ) : ?>
<ul>
<?php while ( $pesquisas->fetchRecord() ) : ?>
<?php
// set our variables
$pesquisa_slug = $pesquisas->get_field('permalink');
?>
<li>
<a href="<?php echo get_permalink(); ?><?php echo $pesquisa_slug; ?>/">
<?php echo $pesquisa_nome; ?>
</a>
</li>
...
But the <?php echo $pesquisa_slug; ?> doesn´t get anything...
I´m doing something wrong? Its a .htaccess problem or something like that? My normal wp permalinks are working well...