.cabecalho {
  max-width: 100vw;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 10px 40px;
  background-color: white;
}

.cabecalho .logo {
  width: 70px;
  color: #0084a7;
}

.cabecalho .btn-burguer {
  margin-right: 17px;
  z-index: 2;
  cursor: pointer;
  color: #0084a7;
  background-color: white;
  border: none;
  transition: 0.3s all ease-in-out;
}

.cabecalho .btn-burguer.ativo {
  z-index: 3;
  position: fixed;
  right: 44px;
  background-color: #0084a7;
  color: white;
}

.cabecalho .btn-burguer:hover {
  opacity: 60%;
}

.cabecalho #burguer {
  position: relative;
  display: block;
  font-size: 50px;
  visibility: hidden;
}

.cabecalho .menu {
  margin: 0 auto;
  transition: 0.3s all ease-in-out;
}

.cabecalho .menu .itens {
  display: flex;
  gap: 100px;
}

.cabecalho .menu .itens .item {
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.cabecalho .menu .itens .item:hover {
  opacity: 60%;
  transform: scale(1.1);
}

.cabecalho .menu .itens .item .btn-relate {
  cursor: pointer;
  border: none;
  background-color: white;
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  color: #0084a7;
}

.cabecalho .menu .itens .item a {
  color: #0084a7;
}

.cabecalho .menu.ativo {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background-color: #0084a7;
  color: white;
  z-index: 2;
  overflow: hidden;
  border: 4px solid #dfecef;
  border-right: none;
  border-radius: 7px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cabecalho .menu.ativo .itens {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 240px;
  border-top: 2px solid #fff;
  margin-top: 97.5px;
  gap: 10px;
}

.cabecalho .menu.ativo .itens .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  max-height: 90px;
  width: 225px;
  list-style: none;
  transition: 0.3s all ease-in-out;
}

.cabecalho .menu.ativo .itens .item:hover {
  border-bottom: 2px solid #fff;
  transform: none;
}

.cabecalho .menu.ativo .itens {
  justify-content: flex-start;
}

.cabecalho .menu.ativo .itens .item a {
  color: white;
  font-size: 20px;
}
.cabecalho .menu.ativo .itens .item .btn-relate {
  text-align: center;
  font-size: 20px;
  background-color: #0084a7;
  display: block;
  color: white;
  margin: 0 auto;
}
