.header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 20px;
  background-color: var(--blue-light);
}

.header > div {
        width: min(1150px, 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}

.nav {
  display: none;
}

.wrapper-list {
  display: flex;
  gap: 35px;
}

.wrapper-list > li > a {
    color: var(--blue-darkest);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    transition: all 400ms ease-in-out;
}

.wrapper-list > li > a:hover {
        color: var(--blue-abyss);
    text-decoration: underline;
}

.logo-icon {
  width: min(100px, 100%);
}

.menu-button {
  display: flex;
  flex-direction: column;
  width: 35px;
  height: 30px;
  border: 0;
  gap: 6px;
  background-color: transparent;
}

.menu-button > div {
    background-color: var(--blue-angel);
    height: 5px;
    width: 100%;
    border-radius: var(--rounded-lg);
    transition: all 500ms;
}

.menu-button-active div:first-child {
  transform: translate(0, 11px) rotate(-45deg);
}

.menu-button-active div:nth-child(2) {
  opacity: 0;
}

.menu-button-active div:last-child {
  transform: translate(0, -11px) rotate(45deg);
}

@media (width >= 64rem) {
  .menu-button {
    display: none;
  }

  .header {
    justify-content: space-evenly;
  }

  .nav {
    display: block;
  }
}

/* ASIDE */
.background-aside {
  position: fixed;
  top: 100px;
  min-height: 100dvh;
  z-index: 5;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  transition: all 300ms ease-in-out;
  pointer-events: none;

  @media (width >= 64rem) {
    display: none;
  }
}

.background-aside-closed {
  opacity: 0;
}

.closed-menu-aside {
  transform: translate(100%);
}

.menu-aside {
  display: flex;
  position: fixed;
  flex-direction: column;
  top: 100px;
  right: 0;
  height: calc(100dvh - 90px);
  z-index: 8;
  width: min(500px, 100% - 40px);
  background-color: var(--white);
  gap: 20px;
  padding: 20px 30px;
  transition: all 300ms ease-in-out;
  overflow: auto;

  @media (width >= 64rem) {
    display: none;
  }

  & > img {
    width: min(400px, 100%);
    align-self: center;
  }

  & > hr {
    color: var(--blue-sapphire);
  }

  & > h2 {
    color: var(--blue-darkest);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
  }
}

.menu-aside-nav > ul {
  display: flex;
  flex-direction: column;

  & li {
    list-style: none;
  }

  & a {
    display: block;
    border-radius: var(--rounded-lg);
    padding: 10px 20px;
    width: 100%;
    color: var(--blue-darkest);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    transition: all 300ms ease-in-out;
  }

  & a:hover {
    background-color: var(--blue-electric);
    color: var(--blue-abyss);
  }
}

.menu-aside-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px;

  & a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--blue-darkest);
  }
}
