/* RESET / BASE */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5efe6;
  color: #3b2a1a;
}

a {
  color: #3b2a1a;
  text-decoration: none;
  font-weight: 600;
}

/* ===== CABEÇALHO ===== */
.site-header {
  background: linear-gradient(180deg, #e8d8c3, #f5efe6);
  padding: 50px 20px 40px;
  text-align: center;
}

.site-header img {
  max-width: 280px;
  margin-bottom: 20px;
}

.site-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin: 10px 0;
}

.site-header p {
  font-size: 1.1rem;
  color: #5a3e2b;
}

/* ===== TÍTULO DE PÁGINA ===== */
.page-title {
  text-align: center;
  margin: 40px 0 15px;
}

.page-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  letter-spacing: 2px;
  position: relative;
}

.page-title h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #4b2e1e;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== CONTEÚDO ===== */
section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* CARDS */
.info,
.info-bottom {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.info {
  grid-template-columns: repeat(3, 1fr);
}

.info-bottom {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fffaf3;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.card h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  color: #4b2e1e;
}

.btn {
  display: inline-block;
  background: #4b2e1e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  margin-top: 12px;
}

/* ===== CARDÁPIO ===== */
.category {
  background: #fffaf3;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.category h3 {
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid #d6bfa3;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.item {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}

.price {
  font-weight: 600;
}

.desc {
  font-size: 0.9rem;
  color: #5a3e2b;
  margin-bottom: 8px;
}

/* ===== AVISO ===== */
.notice {
  background: #e8d8c3;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}
/* ===== FAIXA INSTITUCIONAL FULL WIDTH ===== */
.highlight {
  width: 100%;
  background: #4b2e1e;
  color: #fff;
  margin-top: 70px;
}

/* CONTEÚDO INTERNO CENTRALIZADO */
.highlight-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.highlight-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0 0 10px;
}

.highlight-content p {
  margin: 0;
  font-size: 1rem;
}

/* AJUSTE MOBILE */
@media (max-width: 600px) {
  .highlight-content {
    padding: 30px 16px;
  }

  .highlight-content h2 {
    font-size: 1.6rem;
  }
}
/* BOTÃO FLUTUANTE WHATSAPP – PADRÃO GLOBAL */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;

  background: #4b2e1e;
  color: #fff;

  padding: 14px 20px;
  border-radius: 30px;

  text-decoration: none;
  font-weight: 600;

  z-index: 9999; /* 🔑 ESSENCIAL */
}

/* AJUSTE MOBILE */
@media (max-width: 600px) {
  .whatsapp {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

/* ===== RODAPÉ ===== */
.site-footer {
  text-align: center;
  padding: 25px 15px;
  font-size: 0.9rem;
  color: #6b4b3e;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .info,
  .info-bottom {
    grid-template-columns: 1fr;
  }
}