function calendario_pokemon_go() {
    $eventos = [
        [
            "nome" => "Mega Mewtwo Raid",
            "data" => "2026-06-10",
            "hora" => "07:30",
            "bonus" => "Evento pago"
        ],
        [
            "nome" => "Community Day",
            "data" => "2026-06-15",
            "hora" => "14:00",
            "bonus" => "XP x2"
        ]
    ];

    $html = '<table style="width:100%;border-collapse:collapse;">';
    $html .= '<tr>
                <th>Evento</th>
                <th>Data</th>
                <th>Hora</th>
                <th>Bônus</th>
              </tr>';

    foreach ($eventos as $evento) {
        $html .= "<tr>
                    <td>{$evento['nome']}</td>
                    <td>{$evento['data']}</td>
                    <td>{$evento['hora']}</td>
                    <td>{$evento['bonus']}</td>
                  </tr>";
    }

    $html .= '</table>';

    return $html;
}

add_shortcode('pokemon_calendario', 'calendario_pokemon_go');