






{"id":37748,"date":"2020-02-19T13:05:56","date_gmt":"2020-02-19T16:05:56","guid":{"rendered":"https:\/\/pages.cnpem.br\/pay\/?page_id=37748"},"modified":"2020-02-20T14:33:37","modified_gmt":"2020-02-20T17:33:37","slug":"contact","status":"publish","type":"page","link":"https:\/\/pages.cnpem.br\/pay\/en\/contact\/","title":{"rendered":"Contact us"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column]<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_4' ><form method='post' enctype='multipart\/form-data'  id='gform_4'  action='\/pay\/en\/wp-json\/wp\/v2\/pages\/37748' data-formid='4' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_1\" class=\"gfield gfield--type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_1'><span class='gform-field-label__text'>Full name<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_4_1' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_3\" class=\"gfield gfield--type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>E-mail<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_complex ginput_container ginput_container_email gform-grid-row' id='input_4_3_container'>\n                                <span id='input_4_3_1_container' class='ginput_left gform-grid-col gform-grid-col--size-auto'>\n                                    <input class='' type='email' name='input_3' id='input_4_3' value=''    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                                    <label for='input_4_3' class='gform-field-label gform-field-label--type-sub '>Enter Email<\/label>\n                                <\/span>\n                                <span id='input_4_3_2_container' class='ginput_right gform-grid-col gform-grid-col--size-auto'>\n                                    <input class='' type='email' name='input_3_2' id='input_4_3_2' value=''    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                                    <label for='input_4_3_2' class='gform-field-label gform-field-label--type-sub '>Confirm Email<\/label>\n                                <\/span>\n                                <div class='gf_clear gf_clear_complex'><\/div>\n                            <\/div><\/li><li id=\"field_4_4\" class=\"gfield gfield--type-text field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_4'><span class='gform-field-label__text'>Phone number<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_4' id='input_4_4' type='text' value='' class='medium'  aria-describedby=\"gfield_description_4_4\"    aria-invalid=\"false\"   \/><\/div><div class='gfield_description' id='gfield_description_4_4'>+XX (Country code) XX (Region code) XXXXXXXX (Phone number)<\/div><\/li><li id=\"field_4_7\" class=\"gfield gfield--type-text field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_7'><span class='gform-field-label__text'>Which event do you want to talk about?<\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_7' id='input_4_7' type='text' value='' class='medium'      aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_5\" class=\"gfield gfield--type-radio gfield--type-choice gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><label class='gfield_label gform-field-label' ><span class='gform-field-label__text'>What would you like to talk about?<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_4_5'>\n\t\t\t<li class='gchoice gchoice_4_5_0'>\n\t\t\t\t<input name='input_5' type='radio' value='Questions about payment'  id='choice_4_5_0'    \/>\n\t\t\t\t<label for='choice_4_5_0' id='label_4_5_0' class='gform-field-label gform-field-label--type-inline'>Questions about payment<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_5_1'>\n\t\t\t\t<input name='input_5' type='radio' value='Order cancellation'  id='choice_4_5_1'    \/>\n\t\t\t\t<label for='choice_4_5_1' id='label_4_5_1' class='gform-field-label gform-field-label--type-inline'>Order cancellation<\/label>\n\t\t\t<\/li>\n\t\t\t<li class='gchoice gchoice_4_5_2'>\n\t\t\t\t<input name='input_5' type='radio' value='Other information'  id='choice_4_5_2'    \/>\n\t\t\t\t<label for='choice_4_5_2' id='label_4_5_2' class='gform-field-label gform-field-label--type-inline'>Other information<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_4_6\" class=\"gfield gfield--type-textarea gfield_contains_required field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_6'><span class='gform-field-label__text'>Tell us how we can help you<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_6' id='input_4_6' class='textarea medium'  aria-describedby=\"gfield_description_4_6\"   aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><div class='gfield_description' id='gfield_description_4_6'>Try to insert as much relevant information you can such as order date, time and payment method (if these options apply). <\/div><\/li><li id=\"field_4_8\" class=\"gfield gfield--type-fileupload field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='gform_browse_button_4_8'><span class='gform-field-label__text'>Would you like to attach files relating to your case?<\/span><\/label><div class='ginput_container ginput_container_fileupload'><div id='gform_multifile_upload_4_8' data-settings='{&quot;runtimes&quot;:&quot;html5,flash,html4&quot;,&quot;browse_button&quot;:&quot;gform_browse_button_4_8&quot;,&quot;container&quot;:&quot;gform_multifile_upload_4_8&quot;,&quot;drop_element&quot;:&quot;gform_drag_drop_area_4_8&quot;,&quot;filelist&quot;:&quot;gform_preview_4_8&quot;,&quot;unique_names&quot;:true,&quot;file_data_name&quot;:&quot;file&quot;,&quot;url&quot;:&quot;https:\\\/\\\/pages.cnpem.br\\\/pay\\\/?gf_page=abb6d7b9c2b8be0&quot;,&quot;flash_swf_url&quot;:&quot;https:\\\/\\\/pages.cnpem.br\\\/pay\\\/wp-includes\\\/js\\\/plupload\\\/plupload.flash.swf&quot;,&quot;silverlight_xap_url&quot;:&quot;https:\\\/\\\/pages.cnpem.br\\\/pay\\\/wp-includes\\\/js\\\/plupload\\\/plupload.silverlight.xap&quot;,&quot;filters&quot;:{&quot;mime_types&quot;:[{&quot;title&quot;:&quot;Allowed Files&quot;,&quot;extensions&quot;:&quot;*&quot;}],&quot;max_file_size&quot;:&quot;10485760b&quot;},&quot;multipart&quot;:true,&quot;urlstream_upload&quot;:false,&quot;multipart_params&quot;:{&quot;form_id&quot;:4,&quot;field_id&quot;:8,&quot;_gform_file_upload_nonce_4_8&quot;:&quot;3efa4468b3&quot;},&quot;gf_vars&quot;:{&quot;max_files&quot;:&quot;3&quot;,&quot;message_id&quot;:&quot;gform_multifile_messages_4_8&quot;,&quot;disallowed_extensions&quot;:[&quot;php&quot;,&quot;asp&quot;,&quot;aspx&quot;,&quot;cmd&quot;,&quot;csh&quot;,&quot;bat&quot;,&quot;html&quot;,&quot;htm&quot;,&quot;hta&quot;,&quot;jar&quot;,&quot;exe&quot;,&quot;com&quot;,&quot;js&quot;,&quot;lnk&quot;,&quot;htaccess&quot;,&quot;phar&quot;,&quot;phtml&quot;,&quot;ps1&quot;,&quot;ps2&quot;,&quot;php3&quot;,&quot;php4&quot;,&quot;php5&quot;,&quot;php6&quot;,&quot;py&quot;,&quot;rb&quot;,&quot;tmp&quot;]}}' class='gform_fileupload_multifile'>\n\t\t\t\t\t\t\t\t\t\t<div id='gform_drag_drop_area_4_8' class='gform_drop_area gform-theme-field-control'>\n\t\t\t\t\t\t\t\t\t\t\t<span class='gform_drop_instructions'>Drop files here or <\/span>\n\t\t\t\t\t\t\t\t\t\t\t<button type='button' id='gform_browse_button_4_8' class='button gform_button_select_files gform-theme-button gform-theme-button--control' aria-describedby=\"gfield_upload_rules_4_8 gfield_description_4_8\"  >Select files<\/button>\n\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div><span class='gfield_description gform_fileupload_rules' id='gfield_upload_rules_4_8'>Max. file size: 10 MB, Max. files: 3.<\/span><ul class='validation_message--hidden-on-empty gform-ul-reset' id='gform_multifile_messages_4_8'><\/ul> <div id='gform_preview_4_8' class='ginput_preview_list'><\/div><\/div><div class='gfield_description' id='gfield_description_4_8'>Add screenshots, PDF documents and other support files as needed <\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <button type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Enviar<\/button> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='BRL' value='6MFYeYIQNwPuCyw9GU2HBL09SWWfBgWHnccPYMbWixdrCw9M5mUXMTlb6YLpiEE1IIiszPYdFz+XJS0sSusUJsAppSLscAqForte62qG\/lA9yfk=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJ7XCJnZm9ybV9zdWJtaXNzaW9uX21ldGhvZFwiOltcIjM0NzdkZjhiOWMwZmE4MTllYjAyYjJiMzZlZDAxMTZhXCIsXCI3ODM3OWE1MjM5M2MxNTRiYjhhNjE0M2ZhOGQ4NWIwMFwiXSxcImdmb3JtX3RoZW1lXCI6XCI3OTU0YjUwY2JjOTU1N2RhMTU1OWRkNGFhMTgzZjVkOVwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcIjcxNzRkZWUxMTFjZWFhYTczNDVhYWUyYjIwMmZkY2ZhXCIsXCJmb3JtX2lkXCI6XCJmN2RmN2RmNDczZDdmZDM0NDc2NmI2YzBmNzQ5NjQ0OFwiLFwidXJsXCI6XCI4MTZmNmQ5Yzc4NWQ0YzQ3MDY1YzVkNTUzYmRlZWZjZFwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCJlMDRhY2EyNGM0ZDA1NWQwYWRmMThlNzgwOWJkODBmZVwifSIsImYwYTJkZWYxZTNhZTc0N2JhMGQ5M2QxNTYzODc0Y2MwIiwxNzg3NTUyMDQxXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            <input type='hidden' name='gform_uploaded_files' id='gform_uploaded_files_4' value='' \/>\n        <\/div>\n                        <\/form>\n                        <\/div>[\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][\/vc_column][\/vc_row][vc_row][vc_column][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":883,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-37748","page","type-page","status-publish","hentry","description-off"],"acf":[],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/pages\/37748","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/users\/883"}],"replies":[{"embeddable":true,"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/comments?post=37748"}],"version-history":[{"count":0,"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/pages\/37748\/revisions"}],"wp:attachment":[{"href":"https:\/\/pages.cnpem.br\/pay\/en\/wp-json\/wp\/v2\/media?parent=37748"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}