.menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 7777;
  width: 100%;
  height: 100px;
  padding: 20px;
}

.logo-fixxinvest {
  width: 150px;
}

.logo-fixxinvest img {
  width: 100%;
  height: auto;
}

.siteHeader {
  width: 100%;
  background-color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 1.25em;
  border-bottom: 1px solid #999;
  position: relative;
  z-index: 500;
}

.siteNavToggle {
  position: relative;
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all .3s ease;
}

.siteNavToggle::before,
.siteNavToggle::after {
  content: '';
  height: 2px;
  width: 100%;
  background-color: white;
  transition: transform 0.15s ease;
}

.siteNavToggle__bar {
  width: 100%;
  height: 2px;
  background-color: white;
  display: block;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.siteNavToggle.is-active {
  justify-content: center;
}

.siteNavToggle.is-active .siteNavToggle__bar {
  opacity: 0;
  transform: translateX(-100%);
}

.siteNavToggle.is-active::before,
.siteNavToggle.is-active::after {
  position: absolute;
  transform-origin: 50% 50%;
  margin-top: -1px;
}

.siteNavToggle.is-active::before {
  transform: rotate(45deg);
  top: 50%;
}

.siteNavToggle.is-active::after {
  transform: rotate(-45deg);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #09171d;
  z-index: 400; 
  display: none;
  transition: all 2s ease;
}

.is-activeMenu .overlay {
  display: block;
}

.navLinks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 450;
  display: none;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.is-activeMenu .navLinks {
  display: flex;
  opacity: 1;
}

.navLinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navLinks li {
  margin: 1em 0;
}

.navLinks a {
  color: white;
  font-size: 60px;
  text-decoration: none;
}

.link-small{
  display: flex;
  align-items: center;
  gap: 5px;
}

.navLinks .link-small a{
  font-size: 20px;
}

.external-link-img {
  width: 15px;
}

.external-link-img > img{
  width: 100%;
  height: auto;
}

/*Celulares e alguns tablets*/
@media (min-width: 320px) and (max-width: 499px) {
  .navLinks a {
    font-size: 20px;
  }

  .navLinks{
    padding: 0px 60px;
  }

  .card-expertise{
    flex-direction: column;
  }

  .menu {
    background-color: #09171d;
    height: 80px;
  }

  .logo-fixxinvest{
    width: 100px;
  }
}