.menu-nav{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.menu-nav img{
    /* width: 45px; */
    height: 45px;
}

#seta{
    width: 35px;
    height: 35px;
}
.menu-lista {
      list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: rgb(25, 53, 74);
    padding: 10px;
    width: max-content;
    border-radius: 8px;
    padding-left: 50px;
    padding-right: 30px;
    text-align: right;
}

.menu-lista li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 700;
  /* font-weight: 600; */
  display: flex;
  align-items: center;
}

.seta {
  margin-left: 5px;
  font-size: 12px;
  color: rgb(255, 122, 4);
}

.menu-icon {
  display: none;
  font-size: 28px;
  color: rgb(25, 53, 74);
  cursor: pointer;
}

/* Input hidden */
#menu-toggle {
  display: none;
}

#logoMobile{
  display: none;
}

/* RESPONSIVO - MOBILE */
@media (max-width: 768px) {
  #logoMobile{
    display: flex;
  }
  #logoDesktop{
    display: none;
  }
  .menu-lista {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    background-color: #1e3b51;
    padding: 15px;
    border-radius: 10px;
  }

  #menu-toggle:checked + .menu-icon + .menu-lista {
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }

  .menu-icon {
    display: block;
    text-align: right;
  }
}