/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F3E5D8;
  color: #3B2A25;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  z-index: 1000;
}

header .logo img {
  height: 70px;
}
  

.logo img {
  height: 60px;
}

/* NAV */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #3B2A25;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #6B4F3A;
}

/* MENU */
.menu {
  padding: 80px 20px;
  text-align: center;
}

.menu h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8em;
}

.sub {
  color: #6B4F3A;
  margin-bottom: 30px;
}

/* CATEGORIAS */
.categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.categorias button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #3B2A25;
  background: transparent;
  color: #3B2A25;
  cursor: pointer;
  transition: 0.3s;
}

.categorias button.active,
.categorias button:hover {
  background: #3B2A25;
  color: #fff;
}

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

/* CARD */
.produto {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  position: relative;

  /* profundidade suave */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  /* transição premium */
  transition: all 0.35s ease;
}

/* HOVER MAIS SOFISTICADO */
.produto:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* IMAGEM / LOGO */
.produto img {
  width: 100%;
  height: 140px;
  object-fit: contain; /* melhor pro logo */
  margin-bottom: 10px;
  opacity: 0.95;
}

/* TÍTULO */
.produto h3 {
  font-size: 1.2em;
  color: #3B2A25;
  margin-bottom: 6px;
  font-weight: 600;
}

/* DESCRIÇÃO */
.produto p {
  font-size: 0.9em;
  color: #6B4F3A;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* PREÇO */
.preco {
  font-size: 1.15em;
  font-weight: 600;
  color: #3B2A25;
}

/* TAG INDISPONÍVEL (mais clean) */
.tag-indisponivel {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #3B2A25;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7em;
  letter-spacing: 0.5px;
}

/* CARD INDISPONÍVEL */
.produto.indisponivel {
  background-color: #f3f0ec;
}

.produto.indisponivel img {
  filter: grayscale(80%) brightness(0.9);
}

.produto::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none;
}

/* INFO */
.info {
  padding: 15px;
}

.info h3 {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.info p {
  font-size: 0.9em;
  color: #6B4F3A;
  margin-bottom: 10px;
}

.info span {
  font-weight: 600;
}

/* BOTÃO IFOOD */
.btn-ifood {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: #ea1d2c;
  color: #fff;

  padding: 14px 18px;
  border-radius: 999px;

  text-decoration: none;
  font-size: 0.9em;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.btn-ifood:hover {
  transform: scale(1.1);
}

/* FOOTER */
footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  background: #3B2A25;
  color: #fff;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .menu h1 {
    font-size: 2em;
  }
}