  .menu-btn {
    font-size: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  
  .mobile-nav {
    position: fixed;
    top: 55px; /* altura do header */
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF9EF;
    color: black;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    z-index: 999;
  }

  .mobile-nav.active {
    display: flex;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .mobile-nav li {
    margin: 1.5rem 0;
  }

  .mobile-nav a {
    font-size: 24px;
    color: black;
    text-decoration: none;
    transition: 0.3s;
  }

  /* Desktop x Mobile */
  @media (max-width: 700px) {
    .desktop-nav {
      display: none;
    }
    .menu-btn {
      display: block;
    }
  }

  @media (min-width: 700px) {
    .menu-btn {
      display: none;
    }
    .mobile-nav {
      display: none !important;
    }
  }