body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0a0f1c;
  color: #e6f0ff;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(8, 16, 36, 0.85);
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header .logo img {
    height: 120px;
    transform: translateY(28px); /* metade pra fora */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4da6ff;
}

.menu {
  padding: 60px 20px;
  text-align: center;
}

.menu h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

/* Botões de categorias */
.categorias {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.categorias button {
  background: transparent;
  border: 2px solid #e6f0ff;
  color: #e6f0ff;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.3s ease;
}

.categorias button:hover,
.categorias button.active {
  background: #e6f0ff;
  color: #0a0f1c;
}

/* Produtos */
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.produto {
  background-color: #10182e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.6);
}

.produto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.produto h3 {
  margin: 15px 0 5px;
  font-size: 1.3em;
  color: #e6f0ff;
}

.produto p {
  font-size: 1em;
  color: #cfd9e6;
  margin-bottom: 12px;
  padding: 0 10px;
}

.preco {
  font-size: 1.1em;
  font-weight: bold;
  color: #4da6ff;
  margin-bottom: 20px;
  display: block;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000814;
  color: #fff;
  font-size: 0.9em;
  margin-top: 40px;
}

.produto {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: 0.3s;
}

.produto.indisponivel {
  background-color: #1c1c1c !important; /* Fundo mais escuro, porém sem opacidade */
  pointer-events: none;
  position: relative;
  color: #ddd; /* texto mais claro */
}

.produto.indisponivel img {
  filter: grayscale(70%) brightness(0.8); /* escurece e deixa em escala de cinza */
}

.tag-indisponivel {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e63946;
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: bold;
  z-index: 10;
}
