header{
    position: fixed;
    display: flex;
    /* justify-content: center;
    align-items: center; */
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 8rem;
    padding: 2rem;
    background-color:var(--color-brand-secundary-30);
}
header .logo-header{
    width: 9rem;
    padding: 1rem;
}
header .manu-nav{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
header .manu-nav .menu{
    display: flex;
    position: absolute;
    top: 8rem;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    /* justify-content: center; */
    align-items: start;
    margin: 0rem;
    padding: 2.4rem;
    gap: 2rem;
    background-color: var(--color-brand-secundary-30);
    z-index: 200;
    transform: translateX(3000px);
    transition: all .5s ease-in;
    & li{
        width: 100%;
    }
}
header .manu-nav .menu.show-menu{
  transform: translateX(0);
  transition: all .5s ease-in;
}
header .manu-nav .menu li a{
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    cursor: pointer;
    padding: 2rem;
    color: var(--color-primary-60);
    width: 100%;
    transition: all .3s ease-in;
}
header .manu-nav .menu li a:hover{
    background-color: var(--color-link-10);
    color: var(--color-brand-secundary-30);
    font-weight: 600;
}
header .manu-nav .menu .drop-links{
    display: none;
}
header .manu-nav .menu .dropdown-menu:hover .drop-links{
    display: flex;
}
header .manu-nav .btn-link{
    margin: 0;
    border: solid 0.1rem var(--color-primary-60);
}
header .manu-nav .toggle-menu{
    position: relative;
    width: 4rem;
    height: 4rem;
    margin-left: 1rem;
}
header .manu-nav .toggle-menu .icon-aberto, .icon-fechado {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: all .3s ease-in;
}
header .manu-nav .toggle-menu .show-icon{
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(180deg);
}
header .icon-fechado .icon-aberto, .fi{
    font-size: 4rem;
    color: var(--color-link-10);
}