{"id":2753,"date":"2025-07-29T10:09:14","date_gmt":"2025-07-29T09:09:14","guid":{"rendered":"https:\/\/knowingcounts.net\/prueba\/"},"modified":"2025-09-08T17:19:56","modified_gmt":"2025-09-08T16:19:56","slug":"prueba","status":"publish","type":"page","link":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/","title":{"rendered":"Prueba"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"2753\" class=\"elementor elementor-2753 elementor-2457\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e49119b e-con-full e-flex e-con e-parent\" data-id=\"e49119b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t<div class=\"elementor-element elementor-element-d9e4b1b e-con-full e-flex e-con e-child\" data-id=\"d9e4b1b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-08a2026 elementor-widget elementor-widget-image\" data-id=\"08a2026\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https:\/\/knowingcounts.net\/es\/\">\n\t\t\t\t\t\t\t<img decoding=\"async\" width=\"160\" height=\"64\" src=\"https:\/\/knowingcounts.net\/wp-content\/uploads\/2025\/07\/kc-logo-black.svg\" class=\"attachment-full size-full wp-image-2373\" alt=\"Knowing Counts | Networkin Know-how\" \/>\t\t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-52f6530 e-con-full e-flex e-con e-child\" data-id=\"52f6530\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;jet_parallax_layout_list&quot;:[]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-45165e3 eael-gravity-form-button-custom elementor-widget elementor-widget-eael-gravity-form\" data-id=\"45165e3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"eael-gravity-form.default\">\n\t\t\t\t\t\t\t\t<div class=\"eael-contact-form eael-gravity-form eael-custom-radio-checkbox eael-contact-form-align-default\">\n\t\t        \n            <script type=\"text\/javascript\">\n                \/* EA Gravity Forms - fallback dispatch of GF's per-form post-render event.\n                 *\n                 * GF normally dispatches this itself from GFFormDisplay::footer_init_scripts().\n                 * In render contexts where that never runs, GF add-ons that bind to\n                 * `gform\/post_render` - e.g. the reCAPTCHA Add-On v2.2.2+, which registers its\n                 * v3 token submission filter there - are never initialised.\n                 *\n                 * Dispatching unconditionally is not safe. GF's multi-file uploader calls\n                 * `new plupload.Uploader()` on every post_render with no idempotency guard\n                 * (gravityforms\/js\/gravityforms.js), so a second dispatch binds a second\n                 * uploader to the same field and every selected file is submitted twice. GF's\n                 * own guard is function-local to the script it prints and cannot be read from\n                 * here, so we watch for the event instead and only step in if it never comes.\n                 *\n                 * This is the single fallback for this widget. Tickets 84410 and 84529 each\n                 * added one independently and both were merged, leaving two mutually-blind\n                 * shims that raced (issue #894). Do not add another - extend this one, and\n                 * keep the `window.__eaelGfPostRender*` flags as the shared source of truth.\n                 *\n                 * Printed before the form markup so the listeners are in place ahead of any\n                 * GF init script for this form, whether printed inline or in the footer.\n                 *\/\n                ( function () {\n                    var formId    = 1;\n                    var seenFlag  = '__eaelGfPostRenderSeen_'  + formId; \/\/ dispatched, by anyone\n                    var boundFlag = '__eaelGfPostRenderBound_' + formId; \/\/ this shim is installed\n\n                    if ( window[ boundFlag ] ) {\n                        return;\n                    }\n                    window[ boundFlag ] = true;\n\n                    function markSeen( id ) {\n                        if ( parseInt( id, 10 ) === formId ) {\n                            window[ seenFlag ] = true;\n                        }\n                    }\n\n                    \/\/ triggerPostRenderEvents() always fires the jQuery event first and the\n                    \/\/ gform.utils one after, whoever calls it - so between them these observe\n                    \/\/ GF core's own dispatch as well as any other caller's.\n                    if ( window.jQuery ) {\n                        window.jQuery( document ).on( 'gform_post_render', function ( event, id ) {\n                            markSeen( typeof id !== 'undefined' ? id : formId );\n                        } );\n                    }\n                    if ( window.gform && window.gform.utils\n                         && typeof window.gform.utils.addEventListener === 'function' ) {\n                        window.gform.utils.addEventListener( 'gform\/post_render', function ( e ) {\n                            markSeen( e && e.detail && typeof e.detail.formId !== 'undefined'\n                                      ? e.detail.formId : formId );\n                        } );\n                    }\n\n                    function maybeDispatch() {\n                        if ( window[ seenFlag ] ) {\n                            return;\n                        }\n\n                        \/\/ GF leaves this marker beside a hidden form while it waits for the\n                        \/\/ form to become visible, and removes it once it dispatches. Still\n                        \/\/ present means GF's script did run and will dispatch on its own -\n                        \/\/ firing now is the double-dispatch that duplicates file uploads.\n                        if ( document.getElementById( 'gform_visibility_test_' + formId ) ) {\n                            return;\n                        }\n\n                        if ( ! window.gform || ! window.gform.core\n                             || typeof window.gform.core.triggerPostRenderEvents !== 'function' ) {\n                            return;\n                        }\n\n                        var pageInput   = document.getElementById( 'gform_source_page_number_' + formId );\n                        var currentPage = pageInput ? parseInt( pageInput.value, 10 ) : 1;\n\n                        window[ seenFlag ] = true;\n                        window.gform.core.triggerPostRenderEvents( formId, currentPage || 1 );\n                    }\n\n                    \/\/ Wait for the window load event and then for GF's own gate, which needs\n                    \/\/ DOMContentLoaded plus its main and theme script events. Registering the\n                    \/\/ callback this late puts it behind GF's in the queue, and the timeout\n                    \/\/ puts it in a later task again, so GF always gets to dispatch first.\n                    function schedule() {\n                        if ( window.gform && typeof window.gform.initializeOnLoaded === 'function' ) {\n                            window.gform.initializeOnLoaded( function () {\n                                setTimeout( maybeDispatch, 0 );\n                            } );\n                        } else {\n                            setTimeout( maybeDispatch, 0 );\n                        }\n                    }\n\n                    if ( document.readyState === 'complete' ) {\n                        schedule();\n                    } else {\n                        window.addEventListener( 'load', schedule );\n                    }\n                } )();\n            <\/script>\n\n            <script>\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform-theme gform-theme--foundation gform-theme--framework gform-theme--orbital' data-form-theme='orbital' data-form-index='0' id='gform_wrapper_1' ><style>#gform_wrapper_1[data-form-index=\"0\"].gform-theme,[data-parent-form=\"1_0\"]{--gf-color-primary: #204ce5;--gf-color-primary-rgb: 32, 76, 229;--gf-color-primary-contrast: #fff;--gf-color-primary-contrast-rgb: 255, 255, 255;--gf-color-primary-darker: #001AB3;--gf-color-primary-lighter: #527EFF;--gf-color-secondary: #fff;--gf-color-secondary-rgb: 255, 255, 255;--gf-color-secondary-contrast: #112337;--gf-color-secondary-contrast-rgb: 17, 35, 55;--gf-color-secondary-darker: #F5F5F5;--gf-color-secondary-lighter: #FFFFFF;--gf-color-out-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-out-ctrl-light-rgb: 17, 35, 55;--gf-color-out-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-out-ctrl-light-lighter: #F5F5F5;--gf-color-out-ctrl-dark: #585e6a;--gf-color-out-ctrl-dark-rgb: 88, 94, 106;--gf-color-out-ctrl-dark-darker: #112337;--gf-color-out-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-color-in-ctrl: #fff;--gf-color-in-ctrl-rgb: 255, 255, 255;--gf-color-in-ctrl-contrast: #112337;--gf-color-in-ctrl-contrast-rgb: 17, 35, 55;--gf-color-in-ctrl-darker: #F5F5F5;--gf-color-in-ctrl-lighter: #FFFFFF;--gf-color-in-ctrl-primary: #204ce5;--gf-color-in-ctrl-primary-rgb: 32, 76, 229;--gf-color-in-ctrl-primary-contrast: #fff;--gf-color-in-ctrl-primary-contrast-rgb: 255, 255, 255;--gf-color-in-ctrl-primary-darker: #001AB3;--gf-color-in-ctrl-primary-lighter: #527EFF;--gf-color-in-ctrl-light: rgba(17, 35, 55, 0.1);--gf-color-in-ctrl-light-rgb: 17, 35, 55;--gf-color-in-ctrl-light-darker: rgba(104, 110, 119, 0.35);--gf-color-in-ctrl-light-lighter: #F5F5F5;--gf-color-in-ctrl-dark: #585e6a;--gf-color-in-ctrl-dark-rgb: 88, 94, 106;--gf-color-in-ctrl-dark-darker: #112337;--gf-color-in-ctrl-dark-lighter: rgba(17, 35, 55, 0.65);--gf-radius: 3px;--gf-font-size-secondary: 14px;--gf-font-size-tertiary: 13px;--gf-icon-ctrl-number: url(\"data:image\/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-select: url(\"data:image\/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.292893C0.683417 -0.097631 1.31658 -0.097631 1.70711 0.292893L5 3.58579L8.29289 0.292893C8.68342 -0.0976311 9.31658 -0.0976311 9.70711 0.292893C10.0976 0.683417 10.0976 1.31658 9.70711 1.70711L5.70711 5.70711C5.31658 6.09763 4.68342 6.09763 4.29289 5.70711L0.292893 1.70711C-0.0976311 1.31658 -0.0976311 0.683418 0.292893 0.292893Z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-icon-ctrl-search: url(\"data:image\/svg+xml,%3Csvg width='640' height='640' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cpath d='M256 128c-70.692 0-128 57.308-128 128 0 70.691 57.308 128 128 128 70.691 0 128-57.309 128-128 0-70.692-57.309-128-128-128zM64 256c0-106.039 85.961-192 192-192s192 85.961 192 192c0 41.466-13.146 79.863-35.498 111.248l154.125 154.125c12.496 12.496 12.496 32.758 0 45.254s-32.758 12.496-45.254 0L367.248 412.502C335.862 434.854 297.467 448 256 448c-106.039 0-192-85.962-192-192z' fill='rgba(17, 35, 55, 0.65)'\/%3E%3C\/svg%3E\");--gf-label-space-y-secondary: var(--gf-label-space-y-md-secondary);--gf-ctrl-border-color: #686e77;--gf-ctrl-size: var(--gf-ctrl-size-md);--gf-ctrl-label-color-primary: #112337;--gf-ctrl-label-color-secondary: #112337;--gf-ctrl-choice-size: var(--gf-ctrl-choice-size-md);--gf-ctrl-checkbox-check-size: var(--gf-ctrl-checkbox-check-size-md);--gf-ctrl-radio-check-size: var(--gf-ctrl-radio-check-size-md);--gf-ctrl-btn-font-size: var(--gf-ctrl-btn-font-size-md);--gf-ctrl-btn-padding-x: var(--gf-ctrl-btn-padding-x-md);--gf-ctrl-btn-size: var(--gf-ctrl-btn-size-md);--gf-ctrl-btn-border-color-secondary: #686e77;--gf-ctrl-file-btn-bg-color-hover: #EBEBEB;--gf-field-img-choice-size: var(--gf-field-img-choice-size-md);--gf-field-img-choice-card-space: var(--gf-field-img-choice-card-space-md);--gf-field-img-choice-check-ind-size: var(--gf-field-img-choice-check-ind-size-md);--gf-field-img-choice-check-ind-icon-size: var(--gf-field-img-choice-check-ind-icon-size-md);--gf-field-pg-steps-number-color: rgba(17, 35, 55, 0.8);}<\/style><div id='gf_1' class='gform_anchor' tabindex='-1'><\/div><form method='post' enctype='multipart\/form-data' target='gform_ajax_frame_1' id='gform_1'  action='\/es\/wp-json\/wp\/v2\/pages\/2753#gf_1' data-formid='1' novalidate>\n        <div id='gf_progressbar_wrapper_1' class='gf_progressbar_wrapper' data-start-at-zero=''>\n        \t<p class=\"gf_progressbar_title\">Paso <span class='gf_step_current_page'>1<\/span> de <span class='gf_step_page_count'>9<\/span><span class='gf_step_page_name'> - Adopta una identidad positiva como networker.<\/span>\n        \t<\/p>\n            <div class='gf_progressbar gf_progressbar_blue' aria-hidden='true'>\n                <div class='gf_progressbar_percentage percentbar_blue percentbar_11' style='width:11%;'><span>11%<\/span><\/div>\n            <\/div><\/div>\n                        <div class='gform-body gform_body'><div id='gform_page_1_1' class='gform_page ' data-js='page-field-id-0' >\n\t\t\t\t\t<div class='gform_page_fields'><div id='gform_fields_1' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_1\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >\u00bfQu\u00e9 opinas de los resultados que obtienes gracias al networking?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_1'>\n\t\t\t<div class='gchoice gchoice_1_1_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_1' type='radio' value='gquiz11830b4b2'  id='choice_1_1_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_1_0' id='label_1_1_0' class='gform-field-label gform-field-label--type-inline'>Casi nunca obtengo resultados positivos.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_1_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_1' type='radio' value='gquiz19e112b9b'  id='choice_1_1_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_1_1' id='label_1_1_1' class='gform-field-label gform-field-label--type-inline'>Obtengo algunos resultados, pero las conexiones me parecen muy aleatorias.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_1_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_1' type='radio' value='gquiz187f6daf8'  id='choice_1_1_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_1_2' id='label_1_1_2' class='gform-field-label gform-field-label--type-inline'>Consigo algunos buenos resultados, pero me gustar\u00eda hacerlo a\u00fan mejor.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_1_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_1' type='radio' value='gquiz1d2415311'  id='choice_1_1_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_1_3' id='label_1_1_3' class='gform-field-label gform-field-label--type-inline'>Tengo una s\u00f3lida red de seguidores que me ayudan a tener \u00e9xito en mi trabajo y mi carrera profesional.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                         <input type='button' id='gform_next_button_1_3' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_2' class='gform_page' data-js='page-field-id-3' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_2' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_4\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >\u00bfSabes exactamente qui\u00e9nes deber\u00edan formar parte de tu red de contactos?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_4'>\n\t\t\t<div class='gchoice gchoice_1_4_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='gquiz11830b4b2'  id='choice_1_4_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_4_0' id='label_1_4_0' class='gform-field-label gform-field-label--type-inline'>No estoy seguro de qu\u00e9 tipo de personas necesito en mi red.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_4_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='gquiz19e112b9b'  id='choice_1_4_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_4_1' id='label_1_4_1' class='gform-field-label gform-field-label--type-inline'>Tengo algunos contactos, pero no estoy seguro de c\u00f3mo crear un grupo de contactos bien equilibrado.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_4_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='gquiz187f6daf8'  id='choice_1_4_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_4_2' id='label_1_4_2' class='gform-field-label gform-field-label--type-inline'>Tengo un buen grupo de contactos, pero s\u00e9 que necesito a\u00f1adir m\u00e1s.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_4_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_4' type='radio' value='gquiz1d2415311'  id='choice_1_4_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_4_3' id='label_1_4_3' class='gform-field-label gform-field-label--type-inline'>Tengo un grupo diverso de contactos a los que puedo recurrir en cualquier momento.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_5' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_5' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_3' class='gform_page' data-js='page-field-id-5' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_3' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_6\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >Todos tenemos cuatro redes de contactos: nuestro grupo de trabajo, nuestra organizaci\u00f3n, nuestra profesi\u00f3n y nuestra familia\/amigos. \u00bfHasta qu\u00e9 punto considera que aprovecha bien sus cuatro redes?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_6'>\n\t\t\t<div class='gchoice gchoice_1_6_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='gquiz11830b4b2'  id='choice_1_6_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_6_0' id='label_1_6_0' class='gform-field-label gform-field-label--type-inline'>No sab\u00eda que hab\u00eda cuatro redes diferentes.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_6_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='gquiz19e112b9b'  id='choice_1_6_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_6_1' id='label_1_6_1' class='gform-field-label gform-field-label--type-inline'>Conozco a mucha gente de diferentes \u00e1mbitos, pero no s\u00e9 muy bien c\u00f3mo entablar relaci\u00f3n con ellos.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_6_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='gquiz187f6daf8'  id='choice_1_6_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_6_2' id='label_1_6_2' class='gform-field-label gform-field-label--type-inline'>Creo que hago un buen trabajo aprovechando mis cuatro redes, pero siento que podr\u00eda hacerlo mejor.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_6_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_6' type='radio' value='gquiz1d2415311'  id='choice_1_6_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_6_3' id='label_1_6_3' class='gform-field-label gform-field-label--type-inline'>Tengo contactos en las cuatro redes con los que mantengo contacto regularmente.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_7' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_7' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_4' class='gform_page' data-js='page-field-id-7' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_9\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >Estoy seguro de saber cu\u00e1l es el siguiente paso adecuado para construir una relaci\u00f3n m\u00e1s s\u00f3lida.<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_9'>\n\t\t\t<div class='gchoice gchoice_1_9_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='gquiz11830b4b2'  id='choice_1_9_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_9_0' id='label_1_9_0' class='gform-field-label gform-field-label--type-inline'>Me cuesta dar el siguiente paso con alguien con quien quiero construir una relaci\u00f3n.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_9_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='gquiz19e112b9b'  id='choice_1_9_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_9_1' id='label_1_9_1' class='gform-field-label gform-field-label--type-inline'>A veces descubro un buen paso a seguir, pero me preocupa que pueda ser demasiado insistente o demasiado pasivo.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_9_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='gquiz187f6daf8'  id='choice_1_9_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_9_2' id='label_1_9_2' class='gform-field-label gform-field-label--type-inline'>En la mayor\u00eda de los casos, encuentro un buen paso siguiente que ayuda a construir la relaci\u00f3n.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_9_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_9' type='radio' value='gquiz1d2415311'  id='choice_1_9_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_9_3' id='label_1_9_3' class='gform-field-label gform-field-label--type-inline'>Casi siempre consigo dar con el siguiente paso adecuado para entablar una relaci\u00f3n con un nuevo contacto.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_8' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_8' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_5' class='gform_page' data-js='page-field-id-8' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_5' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_10\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >\u00bfTe sientes c\u00f3modo entrando en una sala llena de desconocidos y hablando con gente que no conoces?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_10'>\n\t\t\t<div class='gchoice gchoice_1_10_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='gquiz11830b4b2'  id='choice_1_10_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_10_0' id='label_1_10_0' class='gform-field-label gform-field-label--type-inline'>Entrar en una sala llena de desconocidos es mi peor pesadilla.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_10_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='gquiz19e112b9b'  id='choice_1_10_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_10_1' id='label_1_10_1' class='gform-field-label gform-field-label--type-inline'>Cada vez que me encuentro en una sala llena de desconocidos, siento que es una p\u00e9rdida de tiempo.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_10_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='gquiz187f6daf8'  id='choice_1_10_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_10_2' id='label_1_10_2' class='gform-field-label gform-field-label--type-inline'>Me siento c\u00f3modo en una sala llena de desconocidos y tengo cierto \u00e9xito a la hora de conocer gente nueva.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_10_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_10' type='radio' value='gquiz1d2415311'  id='choice_1_10_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_10_3' id='label_1_10_3' class='gform-field-label gform-field-label--type-inline'>Una sala llena de desconocidos es una sala llena de oportunidades.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_12' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_12' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_6' class='gform_page' data-js='page-field-id-12' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_6' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_11\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >\u00bfQu\u00e9 tan c\u00f3modo se siente al saber qu\u00e9 decir y hacer en una conversaci\u00f3n, lo que har\u00e1 que su seguimiento sea f\u00e1cil y natural?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_11'>\n\t\t\t<div class='gchoice gchoice_1_11_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_11' type='radio' value='gquiz11830b4b2'  id='choice_1_11_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_11_0' id='label_1_11_0' class='gform-field-label gform-field-label--type-inline'>Parece que nunca s\u00e9 qu\u00e9 decir o hacer cuando conozco a alguien por primera vez.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_11_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_11' type='radio' value='gquiz19e112b9b'  id='choice_1_11_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_11_1' id='label_1_11_1' class='gform-field-label gform-field-label--type-inline'>A veces s\u00e9 qu\u00e9 decir y qu\u00e9 hacer, pero muchas veces siento que las palabras no me salen.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_11_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_11' type='radio' value='gquiz187f6daf8'  id='choice_1_11_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_11_2' id='label_1_11_2' class='gform-field-label gform-field-label--type-inline'>A menudo s\u00e9 qu\u00e9 decir y hacer para que el seguimiento resulte f\u00e1cil y natural.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_11_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_11' type='radio' value='gquiz1d2415311'  id='choice_1_11_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_11_3' id='label_1_11_3' class='gform-field-label gform-field-label--type-inline'>Casi siempre consigo encontrar las palabras y acciones adecuadas para que el seguimiento resulte f\u00e1cil y natural.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_13' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_13' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_7' class='gform_page' data-js='page-field-id-13' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_7' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_19\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >\u00bfQu\u00e9 tan c\u00f3modo y seguro te sientes al hablar de tus logros sin parecer que est\u00e1s presumiendo?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_19'>\n\t\t\t<div class='gchoice gchoice_1_19_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='gquiz11830b4b2'  id='choice_1_19_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_19_0' id='label_1_19_0' class='gform-field-label gform-field-label--type-inline'>Nunca me siento c\u00f3modo hablando de m\u00ed mismo y de mis \u00e9xitos.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_19_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='gquiz19e112b9b'  id='choice_1_19_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_19_1' id='label_1_19_1' class='gform-field-label gform-field-label--type-inline'>Cada vez que intento hablar de mis \u00e9xitos, me preocupa que la otra persona piense que estoy presumiendo.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_19_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='gquiz187f6daf8'  id='choice_1_19_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_19_2' id='label_1_19_2' class='gform-field-label gform-field-label--type-inline'>Me siento c\u00f3modo hablando de mis logros, pero no siempre estoy seguro de cu\u00e1l es la mejor manera de hacerlo.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_19_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_19' type='radio' value='gquiz1d2415311'  id='choice_1_19_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_19_3' id='label_1_19_3' class='gform-field-label gform-field-label--type-inline'>Hablar de mis logros es una forma estupenda de ense\u00f1ar a los dem\u00e1s mis competencias y habilidades.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_18' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_18' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_8' class='gform_page' data-js='page-field-id-18' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_8' class='gform_fields top_label form_sublabel_below description_below validation_below'><fieldset id=\"field_1_20\" class=\"gfield gfield--type-quiz gfield--type-choice gfield--input-type-radio gfield--width-full field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible gquiz-field \"  data-field-class=\"gquiz-field\" ><legend class='gfield_label gform-field-label' >\u00bfEn qu\u00e9 medida utiliza su red de contactos para a\u00f1adir valor a su organizaci\u00f3n o al trabajo que realiza?<\/legend><div class='ginput_container ginput_container_radio'><div class='gfield_radio' id='input_1_20'>\n\t\t\t<div class='gchoice gchoice_1_20_0'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='gquiz11830b4b2'  id='choice_1_20_0' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_20_0' id='label_1_20_0' class='gform-field-label gform-field-label--type-inline'>Nunca pens\u00e9 en utilizar mi red de contactos para a\u00f1adir valor.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_20_1'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='gquiz19e112b9b'  id='choice_1_20_1' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_20_1' id='label_1_20_1' class='gform-field-label gform-field-label--type-inline'>De vez en cuando, utilizo mi red de contactos para a\u00f1adir valor.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_20_2'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='gquiz187f6daf8'  id='choice_1_20_2' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_20_2' id='label_1_20_2' class='gform-field-label gform-field-label--type-inline'>Puedo recordar varios casos en los que mi red ha aportado valor a\u00f1adido a mi trabajo y\/o a mi organizaci\u00f3n.<\/label>\n\t\t\t<\/div>\n\t\t\t<div class='gchoice gchoice_1_20_3'>\n\t\t\t\t\t<input class='gfield-choice-input' name='input_20' type='radio' value='gquiz1d2415311'  id='choice_1_20_3' onchange='gformToggleRadioOther( this )'    \/>\n\t\t\t\t\t<label for='choice_1_20_3' id='label_1_20_3' class='gform-field-label gform-field-label--type-inline'>Utilizo constantemente mi red de contactos para a\u00f1adir valor al trabajo que realizo y\/o a mi organizaci\u00f3n.<\/label>\n\t\t\t<\/div><\/div><\/div><\/fieldset><\/div>\n                    <\/div>\n                    <div class='gform-page-footer gform_page_footer top_label'>\n                        <input type='button' id='gform_previous_button_1_21' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='button' id='gform_next_button_1_21' class='gform_next_button gform-theme-button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='next' value='Siguiente'  \/> \n                    <\/div>\n                <\/div>\n                <div id='gform_page_1_9' class='gform_page' data-js='page-field-id-21' style='display:none;'>\n                    <div class='gform_page_fields'>\n                        <div id='gform_fields_1_9' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_1_22\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half 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_1_22'>Nombre<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_22' id='input_1_22' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_23\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-half 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_1_23'>Apellido<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_23' id='input_1_23' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_1_24\" class=\"gfield gfield--type-email gfield--input-type-email gfield--width-full 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_1_24'>Correo electr\u00f3nico<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_24' id='input_1_24' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><fieldset id=\"field_1_25\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' >Consentimiento<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_25.1' id='input_1_25_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_1_25_1' >Acepto la pol\u00edtica de privacidad de Knowing Counts.<\/label><input type='hidden' name='input_25.2' value='Acepto la pol\u00edtica de privacidad de Knowing Counts.' class='gform_hidden' \/><input type='hidden' name='input_25.3' value='1' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-page-footer gform_page_footer top_label'><input type='submit' id='gform_previous_button_1' class='gform_previous_button gform-theme-button gform-theme-button--secondary button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='previous' value='Anterior'  \/> <input type='submit' id='gform_submit_button_1' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Enviar'  \/> <input type='hidden' name='gform_ajax' value='form_id=1&amp;title=&amp;description=&amp;tabindex=0&amp;theme=orbital&amp;hash=b4fd110c264fc020167f2dd8f77741d3' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_1' value='iframe' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_1' id='gform_theme_1' value='orbital' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_1' id='gform_style_settings_1' value='' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_1' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='1' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='EUR' value='+LRTbIi6ZvEHOPzLjekL1dS4VKacI7gu4\/AXC1AWk4iO7JV1EUEm+oDChhYPLh1u28cCUaI+EV+T9gsPo6vLCinOjb2uTIcACd\/ARmZ1jjtQmSw=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_1' value='WyJ7XCIyNS4xXCI6XCJhN2U1MWI4YjQ5M2VjZDQzYmVhOGFkNjYyMzRhMGI2OFwiLFwiMjUuMlwiOlwiOTY2OWViZGY2NGJhMWU0NTgxMDQ2ZDljZTgwZjQ1YjhcIixcIjI1LjNcIjpcImE3ZTUxYjhiNDkzZWNkNDNiZWE4YWQ2NjIzNGEwYjY4XCJ9IiwiOGIwNTEyOTdkMWUwNzI4MTE1NWQzMWU0N2U3OGM1MzAiXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_1' id='gform_target_page_number_1' value='2' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_1' id='gform_source_page_number_1' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n             <\/div><\/div>\n                        <\/form>\n                        <\/div>\n\t\t                <iframe style='display:none;width:0px;height:0px;' src='about:blank' name='gform_ajax_frame_1' id='gform_ajax_frame_1' title='Este iframe contiene la l\u00f3gica necesaria para gestionar formularios con ajax activado.'><\/iframe>\n\t\t                <script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 1, 'https:\/\/knowingcounts.net\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery('#gform_ajax_frame_1').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_1');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_1').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_1').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_1').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_1').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/ jQuery(document).scrollTop(jQuery('#gform_wrapper_1').offset().top - mt); }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_1').val();gformInitSpinner( 1, 'https:\/\/knowingcounts.net\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', false );jQuery(document).trigger('gform_page_loaded', [1, current_page]);window['gf_submitting_1'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_1').replaceWith(confirmation_content);jQuery(document).scrollTop(jQuery('#gf_1').offset().top - mt);jQuery(document).trigger('gform_confirmation_loaded', [1]);window['gf_submitting_1'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_1').text());}else{jQuery('#gform_1').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"1\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_1\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_1\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_1\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 1, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\t\t\t<\/div>\n\n            <script type=\"text\/javascript\">\n                var gf_global = {\"gf_currency_config\":{\"name\":\"Euro\",\"symbol_left\":\"\",\"symbol_right\":\"&#8364;\",\"symbol_padding\":\" \",\"thousand_separator\":\".\",\"decimal_separator\":\",\",\"decimals\":2,\"code\":\"EUR\"},\"base_url\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/plugins\\\/gravityforms\",\"number_formats\":[],\"spinnerUrl\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/plugins\\\/gravityforms\\\/images\\\/spinner.svg\",\"version_hash\":\"6da71e7b5525f906cad44cc5403308ef\",\"strings\":{\"newRowAdded\":\"Nueva fila a\\u00f1adida.\",\"rowRemoved\":\"Fila eliminada\",\"formSaved\":\"Se ha guardado el formulario. El contenido incluye el enlace para volver y completar el formulario.\"}};\t\t\t\tvar gf_vars = {\"active\":\"Activo\",\"inactive\":\"Inactivos\",\"save\":\"Guardar\",\"update\":\"Actualizar\",\"previousLabel\":\"Anterior\",\"selectFormat\":\"Seleccionar un formato\",\"column\":\"Columna\",\"editToViewAll\":\"Se muestran 5 de %d elementos. Edita el campo para ver todos\",\"selectAll\":\"Seleccionar todos\",\"enterValue\":\"Introduce un valor\",\"formTitle\":\"Formulario sin t\\u00edtulo\",\"formDescription\":\"\\u00a1Nos encantar\\u00eda saber de ti! Por favor, rellena este formulario y nos pondremos en contacto muy pronto.\",\"formConfirmationMessage\":\"\\u00a1Gracias por contactar con nosotros! Nos pondremos en contacto contigo muy pronto.\",\"buttonText\":\"Enviar\",\"buttonDescription\":\"El bot\\u00f3n de env\\u00edo de este formulario\",\"loading\":\"Cargando...\",\"thisFieldIf\":\"este campo si\",\"thisSectionIf\":\"esta secci\\u00f3n si\",\"thisPage\":\"esta p\\u00e1gina si\",\"thisFormButton\":\"este bot\\u00f3n del formulario si\",\"show\":\"Mostrar\",\"hide\":\"Ocultar\",\"enable\":\"Activar\",\"disable\":\"Desactivar\",\"enabled\":\"Activado\",\"disabled\":\"Desactivado\",\"configure\":\"Configurar\",\"conditional_logic_text\":\"L\\u00f3gica condicional\",\"conditional_logic_desc\":\"La l\\u00f3gica condicional permite cambiar lo que el usuario puede ver seg\\u00fan los campos que elijan.\",\"conditional_logic_a11y\":\"A\\u00f1adir l\\u00f3gica condicional al env\\u00edo de formularios puede causar problemas de usabilidad para algunos usuarios e impactar negativamente a la accesibilidad de tu formulario. Aprende m\\u00e1s sobre la l\\u00f3gica condicional en botones en nuestra <a href=\\\"https:\\\/\\\/docs.gravityforms.com\\\/field-accessibility-warning\\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">documentaci\\u00f3n<span class=\\\"screen-reader-text\\\">(se abre en una pesta\\u00f1a nueva)<\\\/span>&nbsp;<span class=\\\"gform-icon gform-icon--external-link\\\" aria-hidden=\\\"true\\\"><\\\/span><\\\/a>.\",\"page\":\"P\\u00e1gina\",\"next_button\":\"Bot\\u00f3n siguiente\",\"button\":\"Bot\\u00f3n de enviar\",\"all\":\"Todo\",\"any\":\"Cualquiera\",\"ofTheFollowingMatch\":\"coincide:\",\"is\":\"es\",\"isNot\":\"no est\\u00e1\",\"greaterThan\":\"mayor que\",\"lessThan\":\"menor que\",\"contains\":\"contiene\",\"startsWith\":\"comienza por\",\"endsWith\":\"termina por\",\"emptyChoice\":\"Vac\\u00edo (sin opciones seleccionadas)\",\"alertLegacyMode\":\"Este formulario tiene habilitado un marcado obsoleto y no es compatible con el cambio de tama\\u00f1o de campo dentro del editor. Por favor, desactiva el marcado obsoleto en los ajustes del formulario para activar el cambio de tama\\u00f1o en vivo.\",\"thisConfirmation\":\"Usar esta confirmaci\\u00f3n si\",\"thisNotification\":\"Enviar esta notificaci\\u00f3n si\",\"confirmationSave\":\"Guardar\",\"confirmationSaving\":\"Guardando...\",\"confirmationAreYouSure\":\"\\u00bfEst\\u00e1s seguro de que deseas cancelar estos cambios?\",\"confirmationIssueSaving\":\"Hubo un problema al guardar esta confirmaci\\u00f3n.\",\"confirmationConfirmDelete\":\"\\u00bfSeguro que quieres borrar esta confirmaci\\u00f3n?\",\"confirmationIssueDeleting\":\"Hubo un problema al borrar esta confirmaci\\u00f3n.\",\"confirmationConfirmDiscard\":\"Hay cambios sin guardar en la confirmaci\\u00f3n actual. \\u00bfTe gustar\\u00eda descartar estos cambios?\",\"confirmationDefaultName\":\"Confirmaci\\u00f3n sin t\\u00edtulo\",\"confirmationDefaultMessage\":\"\\u00a1Gracias por contactar con nosotros! Nos pondremos en contacto contigo muy pronto.\",\"confirmationInvalidPageSelection\":\"Selecciona una p\\u00e1gina.\",\"confirmationInvalidRedirect\":\"Introduce una URL.\",\"confirmationInvalidName\":\"Introduce un nombre de confirmaci\\u00f3n.\",\"confirmationDeleteField\":\"Al borrar este campo tambi\\u00e9n se borrar\\u00e1n todos los datos de entrada asociados a \\u00e9l. \\u00abCancelar\\u00bb para abortar. \\u00abAceptar\\u00bb para borrar.\",\"confirmationDeleteDisplayField\":\"Est\\u00e1s a punto de borrar este campo. \\u00abCancelar\\u00bb para parar. \\u00abAceptar\\u00bb para borrar\",\"confirmationDeleteDisplayFieldTitle\":\"Advertencia\",\"conditionalLogicDependency\":\"Este formulario contiene l\\u00f3gica condicional de tipo {type} dependiente de este campo. Borrar este campo desactivar\\u00e1 esas reglas de l\\u00f3gica condicional y tambi\\u00e9n todos los datos asociados con el campo en las entradas. 'OK' para borrar, 'Cancelar' para abortar.\",\"conditionalLogicDependencyChoice\":\"Este formulario contiene l\\u00f3gica condicional de tipo {type} dependiente de esta opci\\u00f3n \\u00bfest\\u00e1s seguro de que quieres borrarla?. 'OK' para borrar, 'Cancelar' para abortar.\",\"conditionalLogicDependencyChoiceEdit\":\"Este formulario contiene l\\u00f3gica condicional de tipo {type} dependiente de esta opci\\u00f3n. \\u00bfEst\\u00e1s seguro de editar esta opci\\u00f3n? 'OK' para borrar, 'Cancelar' para abortar.\",\"conditionalLogicDependencyAdminOnly\":\"Este formulario contiene l\\u00f3gica condicional de tipo {type} dependiente de este campo. \\u00bfEst\\u00e1s seguro de que quieres marcar este campo como Administrativo? 'OK' para borrar, 'Cancelar' para abortar.\",\"conditionalLogicRichTextEditorWarning\":\"Este formulario contiene l\\u00f3gica condicional que depende de este campo. No seguir\\u00e1 funcionando si est\\u00e1 activado el editor de texto enriquecido.  \\u00bfQuieres activar el editor de texto enriquecido? \\u00abCancelar\\u00bb para abortar. \\u00abAceptar\\u00bb para continuar.\",\"conditionalLogicTypeButton\":\"bot\\u00f3n\",\"conditionalLogicTypeConfirmation\":\"confirmaci\\u00f3n\",\"conditionalLogicTypeNotification\":\"aviso\",\"conditionalLogicTypeNoficationRouting\":\"enrutamiento de avisos\",\"conditionalLogicTypeField\":\"campo\",\"conditionalLogicTypeFeed\":\"feed\",\"conditionalLogicWarningTitle\":\"Advertencia de l\\u00f3gica condicional\",\"mergeTagsText\":\"Insertar etiquetas de fusi\\u00f3n\",\"baseUrl\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/plugins\\\/gravityforms\",\"gf_currency_config\":{\"name\":\"Euro\",\"symbol_left\":\"\",\"symbol_right\":\"&#8364;\",\"symbol_padding\":\" \",\"thousand_separator\":\".\",\"decimal_separator\":\",\",\"decimals\":2,\"code\":\"EUR\"},\"otherChoiceValue\":\"Otro\",\"isFormTrash\":false,\"currentlyAddingField\":false,\"visibilityOptions\":[{\"label\":\"Visible\",\"value\":\"visible\",\"description\":\"Opci\\u00f3n predeterminada. El campo ser\\u00e1 visible cuando se vea el formulario.\"},{\"label\":\"Oculto\",\"value\":\"hidden\",\"description\":\"El campo est\\u00e1 oculto cuando se ve el formulario. \\u00datil cuando necesitas la funcionalidad de este campo pero no quieres que el usurario pueda verlo.\"},{\"label\":\"Administrativo\",\"value\":\"administrative\",\"description\":\"Este campo s\\u00f3lo es visible al administrar entradas enviadas. El campo no es visible o funcional cuando se ve el formulario.\"}],\"addFieldFilter\":\"A\\u00f1adir una condici\\u00f3n\",\"removeFieldFilter\":\"Eliminar una condici\\u00f3n\",\"filterAndAny\":\"{0} de los siguientes coinciden:\",\"customChoices\":\"Opciones personalizadas\",\"predefinedChoices\":\"Opciones predefinidas\",\"fieldLabelAriaLabel\":\"{field_label} - {field_type}, saltar a los ajustes de este campo\",\"fieldCanBeAddedTitle\":\"L\\u00edmite de campo\",\"fieldCanBeAddedCaptcha\":\"Un formulario s\\u00f3lo puede contener un campo CAPTCHA.\",\"fieldCanBeAddedShipping\":\"Un formulario s\\u00f3lo puede contener un campo de tipo de env\\u00edo.\",\"fieldCanBeAddedPostContent\":\"Un formulario s\\u00f3lo puede contener un campo de cuerpo del mensaje.\",\"fieldCanBeAddedPostTitle\":\"Un formulario s\\u00f3lo puede contener un campo de t\\u00edtulo de la entrada.\",\"fieldCanBeAddedPostExcerpt\":\"Un formulario s\\u00f3lo puede contener un campo de extracto de entrada.\",\"fieldCanBeAddedCreditCard\":\"Un formulario s\\u00f3lo puede contener un campo de tarjeta de cr\\u00e9dito.\",\"fieldCanBeAddedProductTitle\":\"Falta el campo de producto\",\"fieldCanBeAddedProduct\":\"Debes a\\u00f1adir un campo de producto primero.\",\"legacyMarkupTitle\":\"Marcado no compatible\",\"fieldCanBeAddedMultipleChoice\":\"No puedes a\\u00f1adir un campo de opci\\u00f3n m\\u00faltiple a un formulario que utiliza marcado heredado. Edita la configuraci\\u00f3n del formulario y desactiva el marcado heredado.\",\"fieldCanBeAddedImageChoice\":\"No puedes a\\u00f1adir un campo de elecci\\u00f3n de imagen a un formulario que utiliza marcado heredado. Edita la configuraci\\u00f3n del formulario y desactiva el marcado heredado.\",\"FieldAjaxonErrorTitle\":\"Error\",\"StartAddFieldAjaxonError\":\"Error de Ajax al a\\u00f1adir un campo. Por favor, actualiza la p\\u00e1gina e int\\u00e9ntalo de nuevo.\",\"StartChangeInputTypeAjaxonError\":\"Error deAjax al cambiar el tipo de entrada. Por favor, actualiza la p\\u00e1gina e int\\u00e9ntalo de nuevo.\",\"MissingNameCustomChoicesTitle\":\"Falta el nombre\",\"MissingNameCustomChoices\":\"Por favor, dale un nombre a esta elecci\\u00f3n personalizada.\",\"DuplicateNameCustomChoicesTitle\":\"Duplicar t\\u00edtulo\",\"DuplicateNameCustomChoices\":\"Esta elecci\\u00f3n personalizada ya est\\u00e1 en uso. Por favor selecciona otro nombre.\",\"DuplicateTitleMessageTitle\":\"Duplicar t\\u00edtulo\",\"DuplicateTitleMessage\":\"El t\\u00edtulo de formulario que has introducido ya est\\u00e1 en uso. Por favor introduce un t\\u00edtulo de formulario \\u00fanico.\",\"ValidateFormMissingFormTitleTitle\":\"Falta el t\\u00edtulo del formulario\",\"ValidateFormMissingFormTitle\":\"Introduce un t\\u00edtulo para este formulario. Cuando a\\u00f1adas un formulario a una entrada o p\\u00e1gina, tendr\\u00e1s la opci\\u00f3n de ocultar el t\\u00edtulo.\",\"ValidateFormEmptyPageTitle\":\"Pagina vacia\",\"ValidateFormEmptyPage\":\"Este formulario tiene actualmente una o m\\u00e1s p\\u00e1ginas sin ning\\u00fan campo. Las p\\u00e1ginas en blanco son el resultado de los saltos de p\\u00e1gina que est\\u00e1n colocados como primer o \\u00faltimo campo del formulario o justo uno detr\\u00e1s de otro. Ajusta los saltos de p\\u00e1gina.\",\"ValidateFormMissingProductLabelTitle\":\"Falta la etiqueta del producto\",\"ValidateFormMissingProductLabel\":\"Este formulario tiene un campo de producto con una etiqueta en blanco. Por favor, introduce una etiqueta para cada campo de producto.\",\"ValidateFormMissingProductFieldTitle\":\"Falta el campo de producto\",\"ValidateFormMissingProductField\":\"Este formulario tiene un campo de opci\\u00f3n sin un campo de producto. Debes a\\u00f1adir un campo de producto a tu formulario.\",\"FormulaIsValidTitle\":\"Correcto\",\"FormulaIsValid\":\"La f\\u00f3rmula parece ser v\\u00e1lida.\",\"FormulaIsInvalid\":\"Parece que hay un problema con la f\\u00f3rmula.\",\"DeleteFormTitle\":\"Confirmar\",\"DeleteForm\":\"Est\\u00e1s a punto de mover este formulario a la papelera. \\u00abCancelar\\u00bb para abortar. \\u00abAceptar\\u00bb para borrar.\",\"DeleteCustomChoice\":\"\\u00bfBorrar esta lista de opciones personalizada? \\u00abCancelar\\u00bb para abortar. \\u00abAceptar\\u00bb para borrar.\",\"FieldAdded\":\"&nbsp;campo a\\u00f1adido al formulario\",\"nameFieldDefaultPrefixes\":[{\"text\":\"Dr.\",\"value\":\"Dr.\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"},{\"text\":\"Sr.\",\"value\":\"Sr.\"},{\"text\":\"Sra.\",\"value\":\"Sra.\"},{\"text\":\"Srta.\",\"value\":\"Srta.\"}]};\t\t\t<\/script>\n\n            \t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Passo 1 de 9 11% O que acha dos resultados que obt\u00e9m ao fazer networking? Quase nunca obtenho resultados positivos. Obtenho alguns resultados, mas o networking parece-me muito aleat\u00f3rio. Consigo alguns bons resultados, mas gostaria de fazer ainda melhor. Tenho uma rede s\u00f3lida de apoiantes que me ajudam a ter sucesso no trabalho e na [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":2817,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-2753","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Prueba - Knowing Counts<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Prueba - Knowing Counts\" \/>\n<meta property=\"og:description\" content=\"Passo 1 de 9 11% O que acha dos resultados que obt\u00e9m ao fazer networking? Quase nunca obtenho resultados positivos. Obtenho alguns resultados, mas o networking parece-me muito aleat\u00f3rio. Consigo alguns bons resultados, mas gostaria de fazer ainda melhor. Tenho uma rede s\u00f3lida de apoiantes que me ajudam a ter sucesso no trabalho e na [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowing Counts\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-08T16:19:56+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/\",\"url\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/\",\"name\":\"Prueba - Knowing Counts\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/kc-logo-black.svg\",\"datePublished\":\"2025-07-29T09:09:14+00:00\",\"dateModified\":\"2025-09-08T16:19:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/#primaryimage\",\"url\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/kc-logo-black.svg\",\"contentUrl\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/kc-logo-black.svg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/prueba\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/knowing-counts\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Grado de comodidad y competencia en Networking\",\"item\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/grado-de-comodidad-y-competencia-en-networking\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Prueba\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/\",\"name\":\"Knowing Counts\",\"description\":\"Networking Know-How\",\"publisher\":{\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/#organization\",\"name\":\"Knowing Counts\",\"alternateName\":\"Valter Alcoforado Barreira\",\"url\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/knowing-counts-logo.svg\",\"contentUrl\":\"https:\\\/\\\/knowingcounts.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/knowing-counts-logo.svg\",\"width\":200,\"height\":35,\"caption\":\"Knowing Counts\"},\"image\":{\"@id\":\"https:\\\/\\\/knowingcounts.net\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Prueba - Knowing Counts","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/","og_locale":"es_ES","og_type":"article","og_title":"Prueba - Knowing Counts","og_description":"Passo 1 de 9 11% O que acha dos resultados que obt\u00e9m ao fazer networking? Quase nunca obtenho resultados positivos. Obtenho alguns resultados, mas o networking parece-me muito aleat\u00f3rio. Consigo alguns bons resultados, mas gostaria de fazer ainda melhor. Tenho uma rede s\u00f3lida de apoiantes que me ajudam a ter sucesso no trabalho e na [&hellip;]","og_url":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/","og_site_name":"Knowing Counts","article_modified_time":"2025-09-08T16:19:56+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/","url":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/","name":"Prueba - Knowing Counts","isPartOf":{"@id":"https:\/\/knowingcounts.net\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/#primaryimage"},"image":{"@id":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/#primaryimage"},"thumbnailUrl":"https:\/\/knowingcounts.net\/wp-content\/uploads\/2025\/07\/kc-logo-black.svg","datePublished":"2025-07-29T09:09:14+00:00","dateModified":"2025-09-08T16:19:56+00:00","breadcrumb":{"@id":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/#primaryimage","url":"https:\/\/knowingcounts.net\/wp-content\/uploads\/2025\/07\/kc-logo-black.svg","contentUrl":"https:\/\/knowingcounts.net\/wp-content\/uploads\/2025\/07\/kc-logo-black.svg"},{"@type":"BreadcrumbList","@id":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/prueba\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/knowingcounts.net\/es\/knowing-counts\/"},{"@type":"ListItem","position":2,"name":"Grado de comodidad y competencia en Networking","item":"https:\/\/knowingcounts.net\/es\/grado-de-comodidad-y-competencia-en-networking\/"},{"@type":"ListItem","position":3,"name":"Prueba"}]},{"@type":"WebSite","@id":"https:\/\/knowingcounts.net\/es\/#website","url":"https:\/\/knowingcounts.net\/es\/","name":"Knowing Counts","description":"Networking Know-How","publisher":{"@id":"https:\/\/knowingcounts.net\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/knowingcounts.net\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/knowingcounts.net\/es\/#organization","name":"Knowing Counts","alternateName":"Valter Alcoforado Barreira","url":"https:\/\/knowingcounts.net\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/knowingcounts.net\/es\/#\/schema\/logo\/image\/","url":"https:\/\/knowingcounts.net\/wp-content\/uploads\/2025\/07\/knowing-counts-logo.svg","contentUrl":"https:\/\/knowingcounts.net\/wp-content\/uploads\/2025\/07\/knowing-counts-logo.svg","width":200,"height":35,"caption":"Knowing Counts"},"image":{"@id":"https:\/\/knowingcounts.net\/es\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/pages\/2753","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/comments?post=2753"}],"version-history":[{"count":1,"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/pages\/2753\/revisions"}],"predecessor-version":[{"id":2754,"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/pages\/2753\/revisions\/2754"}],"up":[{"embeddable":true,"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/pages\/2817"}],"wp:attachment":[{"href":"https:\/\/knowingcounts.net\/es\/wp-json\/wp\/v2\/media?parent=2753"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}