.Header{
  background-color: var(--bege);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 14px;

  & .btn_reuniao{
    background-color: var(--azul_claro);
    color: var(--bege);
    display: none;
    width: fit-content;
    height: fit-content;
    border-radius: 10px;
    justify-content: center;
    align-content: center;
    padding: 15px 5% 15px 5%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    margin: 5% 0;
    font-family: 'NeueKabel';
  }
}
.conteudo-nav{
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo{
  margin-left: 2.5%;
}

.logo img{
  width: 120%;
}

.mainNav{
  display: flex;
  width: 40%;
  flex-direction: row;
  justify-content: center;
  margin-left: 10%;
}

.mainNav ul {
  display: flex;
  list-style: none;
  width: 100%;
  justify-content: space-between;
}

.mainNav a {
  text-decoration: none;
  color: #000;
  font-family: 'NeueKabel';
  font-size: clamp(1rem, 1.15vw, 1.5rem);
}

.mainNav a:hover{
  text-decoration: underline;
}

.headerActions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 40%;

  & .linksSociais{
    justify-self:end;
  }
}

.Tema{
  background: var(--azul_escuro);
  border: none;
  border-radius: 999px;
  padding: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  width: 70px;
}

.Dark{
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.Light{
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

html.dark-mode .Dark{
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

html.dark-mode .Light {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

.Tema img{
  width: 50%;
  height: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.linksSociais{
  display: flex;
  flex-direction: row;
  margin-right: 10%;
  gap: 1rem;
}

.linksSociais a img{
  width: 90%;
  align-items: center;
  padding: 16px 14px;
}

#check{
  display: none;
}

.mobile-menu {
  cursor: pointer;
  display: none;

}
.mobile-menu div{
  width: 32px;
  height: 3px;
  background-color:#092040;
  margin: 7px;
  border-radius: 25px;
  transition: .3s;
}

@media (max-width: 900px) {
  .Header{
    justify-content: space-between;
    z-index: 99;
    height: 78px;

    & .logo img{
      width: 90%;
    }
  }

  .conteudo-nav{
    top: 77.98px;
    right: 0;
    width: 100%;
    height: 0;
    background-color: var(--branco_azulado);
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    transition: .3s ease;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
    z-index: 3; 
  }

  #check:checked~.conteudo-nav{
    height: 450px;
  }

    #check:checked~.mobile-menu{
    & .line1{
      transform: rotate(-45deg) translate(-8px, 8px);
    }
    & .line2{
      opacity:0;
    }
    & .line3{
      transform: rotate(45deg) translate(-5px, -7px);
    }
  }

  .mobile-menu{
    display: block;

  }
  .CTA_header{
    display: block !important;
    align-self: center;
    
  }
  .mainNav {
    width: 90%;
    justify-self:baseline;

    & ul{
      flex-direction: column;
      margin-left: 7%;
      gap:15px;
      justify-content: normal;
      
    }
    & a{
      font-size: 2rem;
      font-family: "Novecento Sans";
    }
  }
  .headerActions {
    width: 100%;
    justify-content: end;
    
    top:77.98px;
    right: 0;
    background-color: var(--branco_azulado);

    & .linksSociais{
      margin-right: 0;

      & img{
        width: 90%;
      }
    }

    & .Tema{
      display: none;
    }
  }
}