/* ========
    MAIN
======== */
.titulo-cardapio {
  margin-bottom: var(--space-lg);
  text-align: center;
  font-family: "DM Serif Display", serif;
}



.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.product-card img {
  max-height: clamp(20rem, 10vw, 30rem);
  object-fit: cover;
}

.product-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-info p {
  font-size: clamp(0.85rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  color: #555;
}

.btn-whatsapp {
  margin-top: auto;
  text-align: center;
  padding: 0.7rem;
  background-color: #25d366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.25s ease;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
}

/* ========
    MAIN
======== */
