<!doctype html><html lang="pt-PT"><head><script defer="defer" src="/js/chunk-vendors.562878be.js"></script><script defer="defer" src="/js/app.c65d133c.js"></script><link href="/css/app.e3befe08.css" rel="stylesheet"></head><head><meta charset="UTF-8"/><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="viewport" content="width=device-width,initial-scale=1"/><link rel="icon" href="/favicon.ico" type="image/x-icon"/><link rel="stylesheet" href="https://www.apquimica.pt/assets/slick/slick.css"><link rel="stylesheet" href="https://www.apquimica.pt/assets/slick/slick-theme.css"><link rel="stylesheet" href="https://www.apquimica.pt/assets/fontawesome/all.css"><link rel="stylesheet" href="https://www.apquimica.pt/css/styles.css"><link rel="stylesheet" href="https://www.apquimica.pt/css/template.css"><link rel="stylesheet" href="https://www.apquimica.pt/css/hp.css"><link rel="stylesheet" href="https://www.apquimica.pt/css/fonts.css"><title>APQuímica – Autodiagnostico</title><link rel="stylesheet" href="/css/hp.css"/><link rel="stylesheet" href="/css/styles.css"/><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"/><link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet"><body><header id="navbar"><div class="upper"><a href="https://www.apquimica.pt/pt"><img src="/uploads/logotipo/logo.svg?13:46:55" title="APQuímica Logtipo" alt="APQuímica Logtipo" class="img-fluid"></a></div></header><section class="template"><div class="page-title"><h4>RNCIQ PT 2050</h4><h2 class="d-inline-flex">Ferramenta de Autodiagnóstico</h2></div><div class="content"><div class="container"><div id="app"></div></div></div></section></body></head></html><script>// Class name that will be added to the navbar element in the "scrolled" state
  const SCROLLED_STATE_CLASS = "header-sm"
  // The id of navigation bar HTML element
  const NAVBAR_ID = "navbar"
  
  // Get the navigation bar element
  const navbar = document.getElementById(NAVBAR_ID)
  
  // OnScroll event handler
  const onScroll = () => {
  
    // Get scroll value
    const scroll = document.documentElement.scrollTop
  
    // If scroll value is more than 0 - means the page is scrolled, add or remove class based on that
    if (scroll > 0) {
      navbar.classList.add(SCROLLED_STATE_CLASS);
    } else {
      navbar.classList.remove(SCROLLED_STATE_CLASS)
    }
  }
  
  // Use the function
  window.addEventListener('scroll', onScroll)</script>