:root {
  --bg: #0f172a;
  --card: #ffffff;
  --text: #172033;
  --muted: #667085;
  --line: #e5e7eb;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --soft: #ecfdf5;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at top, #1e3a8a, var(--bg));
  color: var(--text);
}
.wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.card {
  width: 100%;
  max-width: 560px;
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  color: var(--accent-dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
h1 {
  font-size: 30px;
  line-height: 1.12;
  margin: 20px 0 12px;
}
.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.status {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin: 18px 0 22px;
  color: #344054;
  background: #fafafa;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 0 6px rgba(245,158,11,.16);
}
.form { display: grid; gap: 10px; }
label { font-weight: 700; font-size: 14px; color: #344054; }
input {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  outline: none;
}
input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(15,118,110,.12); }
button, .whatsapp {
  border: 0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
button[type="submit"], .whatsapp { background: var(--accent); color: white; margin-top: 8px; }
button[type="submit"]:hover, .whatsapp:hover { background: var(--accent-dark); }
.secondary { background: #f3f4f6; color: #111827; }
.result {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #14532d;
  line-height: 1.5;
}
.hidden { display: none; }
.small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 20px 0 0;
}
.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 520px) {
  .card { padding: 24px; border-radius: 20px; }
  h1 { font-size: 25px; }
  .actions { grid-template-columns: 1fr; }
}
