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

:root {
  --bg: #fdf8f3;
  --text: #1a1208;
  --muted: #8a7060;
  --accent: #e8622a;
  --warm: #f5a623;
  --border: #ecddd0;
  --wa: #25d366;
  --wa-dark: #128c4a;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(232,98,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(37,211,102,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.wrap {
  position: relative;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 52px;
}
.logo em { font-style: normal; color: var(--accent); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,98,42,0.10);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text);
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--wa);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.4s ease-in-out infinite;
  margin-bottom: 24px;
}
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  animation: none;
}
.wa-btn:active { transform: translateY(0); }

.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 36px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.10); }
}

.quiz-link {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s;
}
.quiz-link:hover { color: var(--accent); }

@media (max-width: 480px) {
  h1 { font-size: 34px; }
  .wa-btn { font-size: 15px; padding: 16px 28px; }
}
