/* Botão do menu hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 50%;
    height: 25px;
    cursor: pointer;
    z-index: 1100;
    align-content: center;
    padding-left: 122px;
    
    
  }
  
  .menu-toggle span {
    height: 3px;
    width: 35px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
  }

  .logo-headermobile{
    width: 50%;
  }
  
  /* Menu drop-down */
  .mobile-menu {
    position: fixed;
    top: 72px; /* Abaixo do header */
    left: 0;
    width: 100%;
    max-height: 0;
    background-image: linear-gradient(to left, #524233, rgb(81, 79, 79));
    overflow: hidden;
    transition: max-heigh 0.4s ease, padding 0.3s ease;
    z-index: 1000;
    padding: 0 20px;
  }
  
  .mobile-menu.open {
    max-height: 500px;
    padding: 20px;
  }
  
  /* Lista de links do menu */
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mobile-menu ul li {
    margin: 20px 0;
  }
  
  .mobile-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    display: block;
    padding: 2px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;

  }

  .mobile-menu ul li a:hover {
    background-color: #524233; /* cor do gradiente */
    color: white;
  }



  
  
  /* Cabeçalho fixo */
  .header2 {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    padding: 15px 15px;
    position: fixed;
    top: 0;
    height: 6%;
    width: 100%;
    background-image: linear-gradient(to right, #524233, rgb(81, 79, 79));
    transition: background-image 0.3s ease;
    z-index: 1050;
  }

  .left-space{
    width: 10%;
  }



  /* MENU FIXO */
  .header2.transparent {
    background-image: linear-gradient(
      to right,
      rgba(82, 66, 51, 0.9),
      rgba(81, 79, 79, 0.9)
    );
  }

    /* MENU DOWN */
  .mobile-menu {
    background-image: linear-gradient(
      to right,
      rgba(82, 66, 51, 0.9),
      rgba(81, 79, 79, 0.9)
    );
  }
  
  .header2 h1 {
    color: #fff;
    font-size: 20px;
    margin: 0;
  }

  .logomarca1{
    height: 169px;
    width: 490%;
}

.logomarca1 {
    margin-top: 5px;
    margin-left: 0; 
    height: 65px;
    width: 220px;  
    padding-left: 50px; 

}
  
  /* Só mostra no mobile */
  @media (max-width: 1276px) {
    .menu-toggle {
      display: flex;
    }
  
    .header2 {
      display: flex;
    }
  }
  
  /* Esconde no desktop */
  @media (min-width: 1276px) {
    .header2,
    .menu-toggle,
    .mobile-menu {
      display: none;
    }
  }
  