institutoneurosaber.com.br Open in urlscan Pro
147.182.166.203  Public Scan

URL: https://institutoneurosaber.com.br/
Submission: On August 21 via manual from PH

Form analysis 2 forms found in the DOM

GET https://institutoneurosaber.com.br/

<form class="is-search-form is-form-style is-form-style-3 is-form-id-19966 " action="https://institutoneurosaber.com.br/" method="get" role="search"><label for="is-search-input-19966"><span class="is-screen-reader-text">Search for:</span><input
      type="search" id="is-search-input-19966" name="s" value="" class="is-search-input" placeholder="O que você quer aprender?" autocomplete="off"></label><button type="submit" class="is-search-submit"><span class="is-screen-reader-text">Search
      Button</span><span class="is-search-icon"><svg focusable="false" aria-label="Search" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24px">
        <path
          d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z">
        </path>
      </svg></span></button><input type="hidden" name="post_type" value="post"></form>

Name: capturaPOST https://neurosaber46413.activehosted.com/proc.php

<form method="POST" name="captura" action="https://neurosaber46413.activehosted.com/proc.php" novalidate="">
  <input type="hidden" name="u" value="190">
  <input type="hidden" name="f" value="190">
  <input type="hidden" name="s">
  <input type="hidden" name="c" value="0">
  <input type="hidden" name="m" value="0">
  <input type="hidden" name="act" value="sub">
  <input type="hidden" name="v" value="2">
  <input type="text" name="email" class="email" placeholder="Seu e-mail" required="">
  <button id="_form_190_submit" class="_submit">OK</button>
  <div class="_form-thank-you" style="display:none;">
    <script type="text/javascript">
      window.cfields = [];
      window._show_thank_you = function(id, message, trackcmp_url) {
        var form = document.getElementById('form' + id + '_'),
          thank_you = form.querySelector('._form-thank-you');
        form.querySelector('._form-content').style.display = 'none';
        thank_you.innerHTML = message;
        thank_you.style.display = 'block';
        if (typeof(trackcmp_url) != 'undefined' && trackcmp_url) {
          // Site tracking URL to use after inline form submission.
          _load_script(trackcmp_url);
        }
        if (typeof window._form_callback !== 'undefined') window._form_callback(id);
      };
      window._show_error = function(id, message, html) {
        var form = document.getElementById('form' + id + '_'),
          err = document.createElement('div'),
          button = form.querySelector('button'),
          old_error = form.querySelector('._form_error');
        if (old_error) old_error.parentNode.removeChild(old_error);
        err.innerHTML = message;
        err.className = '_error-inner _form_error _no_arrow';
        var wrapper = document.createElement('div');
        wrapper.className = '_form-inner';
        wrapper.appendChild(err);
        button.parentNode.insertBefore(wrapper, button);
        document.querySelector('[id^="_form"][id$="_submit"]').disabled = false;
        if (html) {
          var div = document.createElement('div');
          div.className = '_error-html';
          div.innerHTML = html;
          err.appendChild(div);
        }
      };
      window._load_script = function(url, callback) {
        var head = document.querySelector('head'),
          script = document.createElement('script'),
          r = false;
        script.type = 'text/javascript';
        script.charset = 'utf-8';
        script.src = url;
        if (callback) {
          script.onload = script.onreadystatechange = function() {
            if (!r && (!this.readyState || this.readyState == 'complete')) {
              r = true;
              callback();
            }
          };
        }
        head.appendChild(script);
      };
      (function() {
        if (window.location.search.search("excludeform") !== -1) return false;
        var getCookie = function(name) {
          var match = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]+)'));
          return match ? match[2] : null;
        }
        var setCookie = function(name, value) {
          var now = new Date();
          var time = now.getTime();
          var expireTime = time + 1000 * 60 * 60 * 24 * 365;
          now.setTime(expireTime);
          document.cookie = name + '=' + value + '; expires=' + now + ';path=/';
        }
        var addEvent = function(element, event, func) {
          if (element.addEventListener) {
            element.addEventListener(event, func);
          } else {
            var oldFunc = element['on' + event];
            element['on' + event] = function() {
              oldFunc.apply(this, arguments);
              func.apply(this, arguments);
            };
          }
        }
        var _removed = false;
        var form_to_submit = document.getElementById('form_190');
        var allInputs = form_to_submit.querySelectorAll('input, select, textarea'),
          tooltips = [],
          submitted = false;
        var getUrlParam = function(name) {
          var regexStr = '[\?&]' + name + '=([^&#]*)';
          var results = new RegExp(regexStr, 'i').exec(window.location.href);
          return results != undefined ? decodeURIComponent(results[1]) : false;
        };
        for (var i = 0; i < allInputs.length; i++) {
          var regexStr = "field\\[(\\d+)\\]";
          var results = new RegExp(regexStr).exec(allInputs[i].name);
          if (results != undefined) {
            allInputs[i].dataset.name = window.cfields[results[1]];
          } else {
            allInputs[i].dataset.name = allInputs[i].name;
          }
          var fieldVal = getUrlParam(allInputs[i].dataset.name);
          if (fieldVal) {
            if (allInputs[i].dataset.autofill === "false") {
              continue;
            }
            if (allInputs[i].type == "radio" || allInputs[i].type == "checkbox") {
              if (allInputs[i].value == fieldVal) {
                allInputs[i].checked = true;
              }
            } else {
              allInputs[i].value = fieldVal;
            }
          }
        }
        var remove_tooltips = function() {
          for (var i = 0; i < tooltips.length; i++) {
            tooltips[i].tip.parentNode.removeChild(tooltips[i].tip);
          }
          tooltips = [];
        };
        var remove_tooltip = function(elem) {
          for (var i = 0; i < tooltips.length; i++) {
            if (tooltips[i].elem === elem) {
              tooltips[i].tip.parentNode.removeChild(tooltips[i].tip);
              tooltips.splice(i, 1);
              return;
            }
          }
        };
        var create_tooltip = function(elem, text) {
          var tooltip = document.createElement('div'),
            arrow = document.createElement('div'),
            inner = document.createElement('div'),
            new_tooltip = {};
          if (elem.type != 'radio' && elem.type != 'checkbox') {
            tooltip.className = '_error';
            arrow.className = '_error-arrow';
            inner.className = '_error-inner';
            inner.innerHTML = text;
            tooltip.appendChild(arrow);
            tooltip.appendChild(inner);
            elem.parentNode.appendChild(tooltip);
          } else {
            tooltip.className = '_error-inner _no_arrow';
            tooltip.innerHTML = text;
            elem.parentNode.insertBefore(tooltip, elem);
            new_tooltip.no_arrow = true;
          }
          new_tooltip.tip = tooltip;
          new_tooltip.elem = elem;
          tooltips.push(new_tooltip);
          return new_tooltip;
        };
        var resize_tooltip = function(tooltip) {
          var rect = tooltip.elem.getBoundingClientRect();
          var doc = document.documentElement,
            scrollPosition = rect.top - ((window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0));
          if (scrollPosition < 40) {
            tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _below';
          } else {
            tooltip.tip.className = tooltip.tip.className.replace(/ ?(_above|_below) ?/g, '') + ' _above';
          }
        };
        var resize_tooltips = function() {
          if (_removed) return;
          for (var i = 0; i < tooltips.length; i++) {
            if (!tooltips[i].no_arrow) resize_tooltip(tooltips[i]);
          }
        };
        var validate_field = function(elem, remove) {
          var tooltip = null,
            value = elem.value,
            no_error = true;
          remove ? remove_tooltip(elem) : false;
          if (elem.type != 'checkbox') elem.className = elem.className.replace(/ ?_has_error ?/g, '');
          if (elem.getAttribute('required') !== null) {
            if (elem.type == 'radio' || (elem.type == 'checkbox' && /any/.test(elem.className))) {
              var elems = form_to_submit.elements[elem.name];
              if (!(elems instanceof NodeList || elems instanceof HTMLCollection) || elems.length <= 1) {
                no_error = elem.checked;
              } else {
                no_error = false;
                for (var i = 0; i < elems.length; i++) {
                  if (elems[i].checked) no_error = true;
                }
              }
              if (!no_error) {
                tooltip = create_tooltip(elem, "Por favor, selecione uma opção.");
              }
            } else if (elem.type == 'checkbox') {
              var elems = form_to_submit.elements[elem.name],
                found = false,
                err = [];
              no_error = true;
              for (var i = 0; i < elems.length; i++) {
                if (elems[i].getAttribute('required') === null) continue;
                if (!found && elems[i] !== elem) return true;
                found = true;
                elems[i].className = elems[i].className.replace(/ ?_has_error ?/g, '');
                if (!elems[i].checked) {
                  no_error = false;
                  elems[i].className = elems[i].className + ' _has_error';
                  err.push("Marcar %s é necessário".replace("%s", elems[i].value));
                }
              }
              if (!no_error) {
                tooltip = create_tooltip(elem, err.join('<br/>'));
              }
            } else if (elem.tagName == 'SELECT') {
              var selected = true;
              if (elem.multiple) {
                selected = false;
                for (var i = 0; i < elem.options.length; i++) {
                  if (elem.options[i].selected) {
                    selected = true;
                    break;
                  }
                }
              } else {
                for (var i = 0; i < elem.options.length; i++) {
                  if (elem.options[i].selected && !elem.options[i].value) {
                    selected = false;
                  }
                }
              }
              if (!selected) {
                elem.className = elem.className + ' _has_error';
                no_error = false;
                tooltip = create_tooltip(elem, "Por favor, selecione uma opção.");
              }
            } else if (value === undefined || value === null || value === '') {
              elem.className = elem.className + ' _has_error';
              no_error = false;
              tooltip = create_tooltip(elem, "Este campo é necessário.");
            }
          }
          if (no_error && elem.name == 'email') {
            if (!value.match(/^[\+_a-z0-9-'&=]+(\.[\+_a-z0-9-']+)@[a-z0-9-]+(\.[a-z0-9-]+)(\.[a-z]{2,})$/i)) {
              elem.className = elem.className + ' _has_error';
              no_error = false;
              tooltip = create_tooltip(elem, "Digite um e-mail válido");
            }
          }
          if (no_error && /date_field/.test(elem.className)) {
            if (!value.match(/^\d\d\d\d-\d\d-\d\d$/)) {
              elem.className = elem.className + ' _has_error';
              no_error = false;
              tooltip = create_tooltip(elem, "Digite uma data válida.");
            }
          }
          tooltip ? resize_tooltip(tooltip) : false;
          return no_error;
        };
        var needs_validate = function(el) {
          if (el.getAttribute('required') !== null) {
            return true
          }
          if (el.name === 'email' && el.value !== "") {
            return true
          }
          return false
        };
        var validate_form = function(e) {
          var err = form_to_submit.querySelector('._form_error'),
            no_error = true;
          if (!submitted) {
            submitted = true;
            for (var i = 0, len = allInputs.length; i < len; i++) {
              var input = allInputs[i];
              if (needs_validate(input)) {
                if (input.type == 'text') {
                  addEvent(input, 'blur', function() {
                    this.value = this.value.trim();
                    validate_field(this, true);
                  });
                  addEvent(input, 'input', function() {
                    validate_field(this, true);
                  });
                } else if (input.type == 'radio' || input.type == 'checkbox') {
                  (function(el) {
                    var radios = form_to_submit.elements[el.name];
                    for (var i = 0; i < radios.length; i++) {
                      addEvent(radios[i], 'click', function() {
                        validate_field(el, true);
                      });
                    }
                  })(input);
                } else if (input.tagName == 'SELECT') {
                  addEvent(input, 'change', function() {
                    validate_field(this, true);
                  });
                } else if (input.type == 'textarea') {
                  addEvent(input, 'input', function() {
                    validate_field(this, true);
                  });
                }
              }
            }
          }
          remove_tooltips();
          for (var i = 0, len = allInputs.length; i < len; i++) {
            var elem = allInputs[i];
            if (needs_validate(elem)) {
              if (elem.tagName.toLowerCase() !== "select") {
                elem.value = elem.value.trim();
              }
              validate_field(elem) ? true : no_error = false;
            }
          }
          if (!no_error && e) {
            e.preventDefault();
          }
          resize_tooltips();
          return no_error;
        };
        addEvent(window, 'resize', resize_tooltips);
        addEvent(window, 'scroll', resize_tooltips);
        window._old_serialize = null;
        if (typeof serialize !== 'undefined') window._old_serialize = window.serialize;
        _load_script("//d3rxaij56vjege.cloudfront.net/form-serialize/0.3/serialize.min.js", function() {
          window._form_serialize = window.serialize;
          if (window._old_serialize) window.serialize = window._old_serialize;
        });
        var form_submit = function(e) {
          e.preventDefault();
          if (validate_form()) {
            // use this trick to get the submit button & disable it using plain javascript
            document.querySelector('#_form_190_submit').disabled = true;
            var serialized = form_serialize(document.getElementById('_form_190'));
            var err = form_to_submit.querySelector('._form_error');
            err ? err.parentNode.removeChild(err) : false;
            _load_script('https://neurosaber46413.activehosted.com/proc.php?' + serialized + '&jsonp=true');
          }
          return false;
        };
        addEvent(form_to_submit, 'submit', form_submit);
      })();
    </script>
  </div>
</form>

Text Content

Pular para o conteúdo
Instituto NeuroSaber
Menu
 * Quem Somos
   * Sobre Nós
   * Nossa História
   * Na Mídia
   * NeuroEscola
   * Pós-Graduação
   * Agenda
   * Neuromeeting
 * Artigos
   * Todos
   * Autismo
 * Cursos
 * Livros
 * Trabalhe Conosco
 * Fale Conosco
 * Solicitações
 * Área do Aluno

Fechar menu

Área do Aluno

Search for:Search Button
 * Quem SomosMostrar submenu
   * Sobre Nós
   * Nossa História
   * Na Mídia
   * NeuroEscola
   * Pós-Graduação
   * Agenda
   * Neuromeeting
 * ArtigosMostrar submenu
   * Todos
   * Autismo
 * Cursos
 * Livros
 * Trabalhe Conosco
 * Fale Conosco
 * Solicitações
 * Área do Aluno




INSTITUTO NEUROSABER

CONHEÇA NOSSOS CURSOS

Bem-vindo ao Instituto NeuroSaber, somos um Instituto que busca compartilhar
conhecimento para:

Profissionais da Educação
Professores, pedagogos e demais profissionais que atuam com crianças dentro do
ambiente escolar

Profissionais da Saúde
Psicólogos, médicos, fonoaudiólogos e outros profissionais que trabalham com
desenvolvimento infantil.

Familiares
Mães, pais e outros cuidadores buscam na NeuroSaber aprender mais sobre
desenvolvimento infantil e transtornos.




ARTIGOS


05 ATIVIDADES DIVERTIDAS DE NUMERACIA


05 ATIVIDADES PARA DESENVOLVER A CONSCIÊNCIA FONOLÓGICA NA ALFABETIZAÇÃO

Ver Todos


DEPOIMENTOS




CURSOS

 * Anteriores
 * Seguinte


TESOURANDO

Estimule a coordenação motora fina de crianças com dificuldades por meio da
aplicação de atividades de recorte + videoaula.
Leia mais


TDAH NA ESCOLA: DA TEORIA À PRÁTICA

Neste curso você terá acesso a um programa inédito e exclusivo, com aulas online
e com atividades práticas prontas para aplicação, além de conhecimento teórico
Leia mais


PEPI: PROGRAMA ESPECIALIZADO EM PSICOMOTRICIDADE INFANTIL

Aprenda a otimizar o potencial cognitivo das crianças estimulando as habilidades
psicomotoras SEM Queimar etapas ou Atrasar o Desenvolvimento da Criança.
Leia mais
VER TODOS OS CURSOS


FAÇA PARTE DA NOSSA COMUNIDADE. INSCREVA-SE E RECEBA NOSSAS NOVIDADES POR
E-MAIL:

OK


 * Cursos
 * Sobre Nós
 * Nossa História
 * Na Mídia
 * Agenda
 * Neuromeeting
 * Artigos
 * Livros
 * Fale Conosco
 * Trabalhe Conosco


ENCONTRE A GENTE NAS REDES SOCIAIS

 * Facebook
 * Instagram
 * Linkedin

© Instituto Neurosaber de Ensino - EIRELI 2015 - 2019 CNPJ: 21.922.412/0001-59

Av. Ayrton Senna da Silva, 600, Sala 902/903, Londrina - Paraná, CEP: 86050-460,
Brasil

Telefone: (43) 3361-6750


Política de Privacidade e Termos de Uso

Utilizamos cookies para permitir que o nosso website funcione corretamente para
que seja gerado conteúdos personalizados em redes sociais e anúncios, bem como
analisar o nosso tráfego. Também compartilhamos informações com os parceiros de
redes sociais, de publicidade e de analítica sobre o seu uso do nosso website.
A Política de Privacidade e os Termos de Uso complementam este aviso, além dos
direitos dos titulares descritos no Aviso de Privacidade , cujos os dizeres o
usuário está de acordo ao navegar por este site.
ACEITAR
Manage consent
Fechar

PRIVACY OVERVIEW

This website uses cookies to improve your experience while you navigate through
the website. Out of these, the cookies that are categorized as necessary are
stored on your browser as they are essential for the working of basic
functionalities of the ...
Necessary
Necessary
Sempre ativado

Necessary cookies are absolutely essential for the website to function properly.
These cookies ensure basic functionalities and security features of the website,
anonymously.

CookieDuraçãoDescriçãocookielawinfo-checbox-analytics11 monthsThis cookie is set
by GDPR Cookie Consent plugin. The cookie is used to store the user consent for
the cookies in the category "Analytics".cookielawinfo-checbox-functional11
monthsThe cookie is set by GDPR cookie consent to record the user consent for
the cookies in the category "Functional".cookielawinfo-checbox-others11
monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to
store the user consent for the cookies in the category
"Other.cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR
Cookie Consent plugin. The cookies is used to store the user consent for the
cookies in the category "Necessary".cookielawinfo-checkbox-performance11
monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to
store the user consent for the cookies in the category
"Performance".viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie
Consent plugin and is used to store whether or not user has consented to the use
of cookies. It does not store any personal data.



Functional
Functional

Functional cookies help to perform certain functionalities like sharing the
content of the website on social media platforms, collect feedbacks, and other
third-party features.

Performance
Performance

Performance cookies are used to understand and analyze the key performance
indexes of the website which helps in delivering a better user experience for
the visitors.

Analytics
Analytics

Analytical cookies are used to understand how visitors interact with the
website. These cookies help provide information on metrics the number of
visitors, bounce rate, traffic source, etc.

Advertisement
Advertisement

Advertisement cookies are used to provide visitors with relevant ads and
marketing campaigns. These cookies track visitors across websites and collect
information to provide customized ads.

Others
Others

Other uncategorized cookies are those that are being analyzed and have not been
classified into a category as yet.

SALVAR E ACEITAR