:root {
  --blue:       #0057B8;
  --blue-light: #1A6FD4;
  --blue-dim:   #E8F0FB;
  --green:      #6CC24A;
  --green-dim:  #EDF7E6;
  --black:      #101010;
  --text:       #1E2530;
  --muted:      #5B6470;
  --border:     #E4E8EF;
  --surface:    #FFFFFF;
  --bg:         #F0F4FA;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,87,184,.10), 0 1px 4px rgba(0,0,0,.06);
}

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

html, body { height: 100%; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0,87,184,.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 110%, rgba(108,194,74,.08) 0%, transparent 60%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

/* ── main layout ─────────────────────────────────────────── */
.page-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 16px;
  width: 100%;
}

/* ── card ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  overflow: hidden;
  animation: rise .45s cubic-bezier(.22,.61,.36,1) both;
}

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

.card-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
}

.card-body {
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── logo ─────────────────────────────────────────────────── */
.logo {
  height: 96px;
  width: auto;
  margin-bottom: 20px;
}

/* ── status icon ──────────────────────────────────────────── */
.icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.icon-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--green-dim), var(--blue-dim), var(--green-dim));
  animation: spin 8s linear infinite;
  opacity: .7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.icon-bg {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg [data-lucide] {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  stroke-width: 1.75;
}

/* ── badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(0,87,184,.15);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.badge [data-lucide] {
  width: 11px;
  height: 11px;
  stroke: var(--blue);
  stroke-width: 2.2;
}

/* ── typography ───────────────────────────────────────────── */
h1 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.description {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 22px;
}

.description strong {
  color: var(--text);
  font-weight: 600;
}

/* ── divider ──────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}

/* ── CTA label ────────────────────────────────────────────── */
.cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ── buttons ──────────────────────────────────────────────── */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter .15s, transform .1s;
  letter-spacing: -.01em;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { filter: brightness(.93); transform: scale(.98); }

.btn [data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 10px rgba(108,194,74,.35);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.btn-email {
  background: var(--surface);
  color: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: 0 1px 4px rgba(0,87,184,.08);
}

.btn-email [data-lucide] { stroke: var(--blue); }

/* ── helper note ──────────────────────────────────────────── */
.helper {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  line-height: 1.5;
  align-items: flex-start;
}

.helper [data-lucide] {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  stroke-width: 2;
  flex-shrink: 0;
  display: block;
  margin-top: 2px;
}

/* ── footer ───────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 16px 16px 24px;
  animation: rise .55s .1s cubic-bezier(.22,.61,.36,1) both;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.footer-legal {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

.footer-phone [data-lucide] {
  width: 12px;
  height: 12px;
  stroke: var(--muted);
  stroke-width: 2;
}

/* ── desktop ──────────────────────────────────────────────── */
@media (min-width: 600px) {
  :root { --radius: 16px; }

  .page-wrap { padding: 32px 16px 24px; }

  .card { max-width: 480px; }

  .card-body { padding: 36px 36px 32px; }

  .logo { height: 120px; margin-bottom: 28px; }

  .icon-wrap { width: 72px; height: 72px; margin-bottom: 24px; }

  .icon-bg [data-lucide] { width: 32px; height: 32px; }

  h1 { font-size: 22px; margin-bottom: 12px; }

  .description { font-size: 15px; margin-bottom: 28px; max-width: 360px; }

  .divider { margin-bottom: 24px; }

  .cta-label { margin-bottom: 14px; }

  .btn { padding: 13px 20px; font-size: 14.5px; }
  .btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
  .btn:active { filter: brightness(.96); transform: translateY(0); }

  .helper { margin-top: 18px; font-size: 12.5px; }

  footer { padding: 20px 16px 28px; }

  .footer-tagline { font-size: 11.5px; }
  .footer-legal   { font-size: 12px; }
  .footer-phone   { font-size: 12.5px; }
}
