.navbar {
    list-style: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-bottom: 42px;
    display: flex;
    flex-direction: column;
    background-color: #3b4d2e;
    align-items: center;
    transition: transform 0.3s;
    transform: translateY(-83%);
    position: fixed;
    z-index: 3;
    width: 100%;
  }

  .toggle-menu {
    width: 40px;
    position: fixed;
    top: 0.5rem;
    right: 1.5rem;
    cursor: pointer;
    filter: invert(1);
    z-index: 4;
  }

  .logo {
    padding: 0%;
    height: 50px;
    width: 50px;
    margin-bottom: -20px;
  }

  .navbar-show {
    transform: translateY(0);
  }
  
  .navbar-item {
    padding: 1em;
    
  }
  
  .navbar-link {
    color: #f4f1eb;
    text-transform: uppercase;
    text-decoration: none;
    padding-top: -300px;
  }
  
  .whatsapp-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 9999;
  }
  
  .whatsapp-container img {
    width: 100px;
    height: 100px;
  }
  

@media screen and (min-width: 768px) {
    .navbar {
        flex-direction: row;
        transform: translateY(0);        
        padding-bottom: 0px;
      }

      .toggle-menu {
        display: none;
      }

      .logo {
        display: flex;
        padding: 0%;
        height: 100px;
        width: 100px;
        margin-bottom: 0px;
      }

     
}