/* Menu mobile */
@media screen and (max-width: 768px) {
    body {
      overflow-x: hidden;
    }
    #header-desktop, #site-logo, #main-menu, .btn-call-top {
        display: none;
    }
    .mobile-menu-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--preto);
        height: 14vh;
      }
    .nav-list {
      list-style: none;
      display: flex;
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: var(--preto);
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
      z-index: 1;
    }
    .nav-list a {
        color: var(--branco);
        text-decoration: none;
        transition: 0.3s;
      }
    .nav-list a:hover {
        opacity: 0.7;
      }
    .nav-list li {
      letter-spacing: 3px;
      margin-left: 0;
      opacity: 0;
    }
    .logo {
        width: 70%;
        margin-left: 0 !important;
      }
      
    .mobile-menu {
      display: block;
      margin-left: 0;
      z-index: 2;
      cursor: pointer;
    }
    .mobile-menu div {
        width: 32px;
        height: 2px;
        background: var(--branco);
        margin: 8px;
        transition: 0.3s;
      }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }
  
