/*
  MENU v 1.1;
  05/2023;
  João Diogo Pereira;
*/

.site-header{
  box-shadow: 0 4px 21px 3px rgba(0, 0, 0, 0.25);
  background-color: #fff;
}

.site-header .logo-header h1{
  margin: 0;
  line-height: 0;
}

.site-header .logo-header img {
  max-width: 300px;
  width: 100%; 
  height: auto;
}

.menu-lang{
  list-style-type: none;
}

.menu-lang li a{
  display: inline-block;
  color: var(--purple);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  width: 100%;
  padding: .5rem 0;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease-in-out;
}

.menu-lang li.current-menu-item a, .menu-lang li a:hover{
  color: var(--purple); 
  text-decoration-color: var(--purple);
}

@media only screen and (max-width: 767px) {
  .site-header .logo-header img {
    max-width: 225px;
  } 
}