   @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
   
   :root {
      --cor-primaria: #e0ccc5;
      --cor-secundaria: #f9f5f2;
      --cor-destaque: #000000;
      --cor-texto: #252525;
      --cor-fundo: #ffffff;
    }
   
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;
    }

    body {
  margin: 0;
  font-family: 'Montserrant', sans-serif;
  background-color: #f8f4f0;
}

.lux-header {
  position: static !important;
  background-color: #f3e9e3;
  padding: 20px 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  animation: fadeInDown 1s ease;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 60px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Menu elegante */
.lux-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}

.lux-menu a {
  text-decoration: none;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #2c2c2c;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.lux-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #a67c52;
  transition: width 0.3s ease;
  z-index: 10;
}

.lux-menu a:hover {
  color: #a67c52;
  z-index: 10;
}

.lux-menu a:hover::after {
  width: 100%;
  z-index: 10;
}

/* Botão destaque */
.lux-btn {
  background-color: #a67c52;
  color: white !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.lux-btn:hover {
  background-color: #7a5735;
}

/* Animação suave ao carregar */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    .menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  display: none;
}

    .menu-links {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 0;
    }

    .menu-links li a {
      color: var(--cor-destaque);
      text-decoration: none;
      font-weight: bold;
    }
    
    footer {
      background-color: var(--cor-primaria);
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    

    @media (max-width: 768px) {
       .menu-toggle {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1100;
  }

  .lux-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #f3e9e3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .lux-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .lux-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .lux-menu a {
    font-size: 1.1rem;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    max-height: 50px;
  }
    }
