/*Menu*/
.container-menu {
  background-color: #013129;
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.hamburger {
  font-size: 2em;
  background: none;
  border: none;
  cursor: pointer;
  color: #00f953;
  transition: transform 0.2s ease-in-out;
  outline: none;
  box-shadow: none;
}

.hamburger:active {
  transform: scale(1.1);
}

.hamburger:focus {
  outline: none;
  box-shadow: none;
}

.menu-desktop {
  display: flex;
  gap: 2em;
  width: 50%;
}

.menu-desktop a {
  text-decoration: none;
  color: #e2e2e2;
}

.menu-desktop a:hover {
  color: #00f953;
}

.menu-desktop-icon {
  width: 40%;
  text-align: center;
}

.block-menu-icon-size {
  max-width: 40px;
}

@media (max-width: 768px) {
  .menu-mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    width: 40%;
  }

  .menu-desktop {
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    margin-top: 0;
  }

  .menu-desktop.active {
    max-height: 500px; /* ajuste conforme necessário */
    opacity: 1;
    margin-top: 1em;
  }

  .menu-desktop-icon {
    width: 40%;
    text-align: left;
     -webkit-tap-highlight-color: transparent;
  }

  .block-menu-icon-size {
    max-width: 40px;
  }

  .hamburger {
    -webkit-tap-highlight-color: transparent;
  }
}
