@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #a731c2;
  --purple-light: #f3e6f7;
  --text: #1a1a1a;
  --text-muted: #888;
  --border: #e8e8e8;
  --bg: #fafafa;
}

html, body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem 1.5rem;
}

.page {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Logo */
.logo-section {
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease 0.1s both;
}

.logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

/* Brand */
.text-section {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease 0.2s both;
}

.brand {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.tagline {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}

/* Card */
.card {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  background: #fff;
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s ease 0.3s both;
}

.badge {
  display: inline-block;
  background: var(--purple-light);
  color: var(--purple);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* CTA line */
.cta-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 300;
  animation: fadeIn 0.6s ease 0.35s both;
}

/* Actions */
.actions {
  width: 100%;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease 0.4s both;
}

.btn-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  animation: fadeIn 0.6s ease 0.4s both, btnPulse 3s ease-in-out 1.5s infinite;
}

.btn-wa:active {
  opacity: 0.85;
  transform: scale(0.98);
  animation: none;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167, 49, 194, 0); }
  50% { box-shadow: 0 0 0 8px rgba(167, 49, 194, 0.12); }
}

/* Stores section */
.stores-section {
  width: 100%;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease 0.5s both;
}

.stores-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.stores-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.store-chip svg {
  color: var(--purple);
  flex-shrink: 0;
}

.store-chip:active {
  border-color: var(--purple);
  color: var(--purple);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ccc;
  animation: fadeIn 0.6s ease 0.6s both;
}

/* Thin top accent line */
.page::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.6s ease 0s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 360px) {
  .brand { font-size: 1.3rem; }
}
