* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Form pesquisa */
.itens-menu-form-search form {
  margin: 0;
  margin-top: 10px;
}

.itens-menu-form-search form button[type='submit'] {
  background-color: #232526;
  color: #f9f9f9 !important;
  display: flex;
  align-items: center;
}

@media (max-width:947px) {
  .itens-menu-form-search form {
    display: flex;
    flex-direction: column !important;
  }
}

/* menu */
.logo img{
  width: 64px;
  height: 64px;
  margin-top: 7px;
  margin-left: 14px;
}

.nav-bar .logo a {
  color: #232526;
  font-size: 1em;
  font-weight: 500;
}

.nav-bar {
  background-color: #e9e9ed;
  position: fixed;
  width: 100%;
  height: auto;
  min-height: 100px;
  text-transform: capitalize;
  top: 0;
  left: 0;
  padding-right: 25px;
}

.nav-bar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
}

.nav-bar .max-width ul img,
.nav-bar .max-width ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar .menu {
  overflow: auto;
}

.nav-bar .menu li {
  list-style: none;
  display: inline-block;
}

.nav-bar .menu li a.active {
  color: #ccc;
}

.nav-bar .menu li a {
  display: flex;
  align-items: center;
  color: #f9f9f9;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-bar .menu li a:hover {
  color: #ccc;
  transition: all 0.3s ease;
}

.menu-btn {
  color: #e9e9ed;
  cursor: pointer;
  display: none;
  margin-right: 20px !important;
  background: url('../assets/img/icone/menu.png') no-repeat; 
  padding: 21px;
}

.btn.btn-categoria { 
  display: none !important;
}

.visibility {
visibility: hidden;
}

@media (max-width: 947px) {
  nav {
    padding-right: 0 !important;
  }

  .menu-btn {
      display: block;
      z-index: 999;
      margin-right: 15px;
  }

  #menu-icon.active::before {
      background: url('../assets/img/icone/fechar.png'); 
  }

  .nav-bar .menu {
      background-color: #e9e9ed;
      opacity: .9;
      position: fixed;
      height: 100vh;
      width: 100%;
      left: -100%;
      top: 0;
      text-align: center;
      padding-top: 80px;
      transition: all 0.3s ease;
      z-index: 999;
  }

  .nav-bar .btn {
    background: none;
    color: #232526 !important;
    font-size: 23px;
  }

  #menu-site.active {
      left: 0;
  }

  .nav-bar .menu li:last-child {
      margin-right: 0px;
  }

  .nav-bar .max-width ul img,
  .nav-bar .max-width ul {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
  }

  .nav-bar .menu li {
      display: block;
  }

  .nav-bar .menu li a {
    display: flex;
    align-items: center;
    margin: 5px auto;
  }  

  #pg-post {
    padding-top: 120px;
    margin-top: -120px;
  }

}

@media (max-width:894px) {
  .visibility {
    display: none;
  }
}

@media (max-width: 815px) {
  .logo {
    width: 200px;
    height: 80px;
  }
}

@media (max-width: 720px) {
  .btn.btn-categoria { 
    display: block !important;
  }
}
/*fim menu*/

/* Barra deprogresso */
#headerTop {
  width: 100%;
  position: fixed;
  top: 0;    
  display: grid;
  place-items: center;
  background-color: white;
}

div.progresso {
  width: 100%;
  height: 5px;
  margin-top: 0px;
  background: transparent;
}

div.progressoScroll {    
  width: 0%;
  height: 5px;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); 
} 
/* Fim barra deprogresso */