body {
  font-family: 'Montserrat', sans-serif;
}

.font-display {
  font-family: 'Cinzel', 'Copperplate', serif;
}

/* Marca d'água da mandala do lótus — elemento de assinatura visual da marca */
.mandala-watermark {
  position: relative;
}
.mandala-watermark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  background-image: url('../img/logo.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 480px auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.mandala-watermark > * {
  position: relative;
  z-index: 1;
}

/* Cartão translúcido usado no badge do cupom */
.glass-card {
  background: rgba(244, 239, 232, 0.9);
  border: 1px solid rgba(139, 94, 52, 0.15);
}

/* CTA principal — leva pro site */
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #8B5E34, #C68A46);
  color: #FFFFFF;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(139, 94, 52, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(139, 94, 52, 0.45);
}
.btn-primary:active {
  transform: scale(0.98);
}

/* Pílulas de contato rápido no hero — WhatsApp, Instagram, Facebook */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 4px 14px rgba(74, 55, 40, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pill-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(74, 55, 40, 0.28);
}
.pill-btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 14px rgba(74, 55, 40, 0.18);
}
.pill-btn-whatsapp {
  background: #A7B18C;
  color: #3D3A2E;
}
.pill-btn-outline {
  background: rgba(244, 239, 232, 0.9);
  color: #4A3728;
  border: 1px solid rgba(244, 239, 232, 0.5);
}

/* Scroll-reveal (ativado pelo script.js) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
