/* #wpadminbar{
  display: none;
} */

*{
	font-variant-ligatures: none !important;
  font-feature-settings: "liga" 0 !important;
}

body{
  overflow-x: hidden;
	font-variant-ligatures: none;
font-feature-settings: "liga" 0;
}

header,
header .menu,
header .redes{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  padding: 0;
}

header .menu{
  flex-flow: column;
}

header{
  background-color: #fff;
  gap: 2rem;
  flex-flow: row;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
  padding: 1rem;
  font-family: "Maven Pro", sans-serif;
}

.menu a{
  text-decoration: none;
  color: #307904 !important;
  padding: 0 .5rem;
  box-sizing: border-box;
  height: fit-content;
  border-bottom: 2px solid #F9F104;
  padding: 0 18px 5px 0 !important;
}

.menu a:hover{
  color: #55A623;
}

.site-navigation ul.menu li{
  align-items: center;
}

.site-navigation ul.menu li.menu-item-has-children{
  padding-inline-end: 0 !important;
}

.site-navigation ul.menu li.menu-item-has-children::after{
  color: #307904 !important;
}

.site-navigation-toggle-holder .site-navigation-toggle{
  color: #307904 !important;
}

.site-navigation-toggle-holder .site-navigation-toggle{
  background-color: transparent !important;
}

header > nav{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-flow: column;
  position: absolute;
  width: 100%;
  top: 64px;
  background-color: var(--azul-escuro);
  box-sizing: border-box;
  z-index: 2;
}

header > nav #menu-container{
  display: none;
}

header > nav #menu-container > a{
  display: none;
}

header > nav #menu-container.mostra{
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  background-color: #0E2132;
  border-radius: 25px;
}

header > nav #menu-container.mostra > div > ul > li > a{
  color: #fff;
}

header > nav #menu-container.mostra .menu{
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

header > nav #menu-container > div > ul{
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  list-style: none;
}

header > nav #menu-container > div > ul > li > a{
  text-decoration: none;
}

header .menu-item-has-children{
  position: relative;
}

header .menu-item-has-children > .sub-menu{
  /* display: block; */
  width: 20rem;
  /* padding:.5rem 1rem; */
  left: -1rem;
  /* display: flex; */
  flex-flow: column;
  gap: 1rem;
  border-radius: 20px;
  margin-left: 1rem;
}

.menu-item-has-children > .sub-menu > li > a{
  text-decoration: none;
  color: var(--branco);
}

#btn-menu{
  background: url('../images/menu.png') center no-repeat;
  width: 32px;
  height: 32px;
  background-size: cover;
  border: none;
}

@media screen and (min-width: 993px){
  header{
    flex-flow: row;
    padding: 1rem 0;
  }

  header .menu{
    flex-flow: row;
  }

  header > nav #menu-container{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 2rem;
  }

  header > nav #menu-container > a{
      display: block;
  }

  header .redes img{
    filter: none;
  }

  #btn-menu{
    display: none;
  }

  header .menu-item-has-children > .sub-menu{
    display: none;
  }

  header .menu-item-has-children:hover > .sub-menu{
    display: block;
    position: absolute;
    width: 20rem;
    padding: 1rem;
    left: -1rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;
    background-color: #fff;
    border-radius: 20px;
    margin-left: 0;
    margin-top: 0;
    z-index: 2;
  }

  .menu-item-has-children > .sub-menu > li > a{
    color: #307904;
    border-right: none ;
  }

  .menu-item-has-children > .sub-menu > li:hover > a{
    color: #55A623;
  }

  header > nav{
    position: unset;
    width: unset;
    background-color: unset;
    flex-flow: row;
    /* width: 100%; */
  }
  header > nav #menu-container > div > ul > li > ul > li{
    border-bottom: 1px solid var(--branco);
  }

}