:root {
  --bg: #fff8ef;
  --card: #ffffff;
  --text: #1f1a17;
  --muted: #6b635c;
  --primary: #c43a1f;
  --primary-2: #e85a2a;
  --accent: #f6c343;
  --danger: #d92d20;
  --secondary: #fdf0d8;
  --ring: rgba(0,0,0,.06);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }

.urgency-bar {
  position: sticky; top: 0; z-index: 50;
  background: var(--danger); color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.urgency-inner {
  max-width: 768px; margin: 0 auto;
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  text-align: center; flex-wrap: wrap;
}
.urgency-time { font-size: 1.25rem; font-weight: 800; letter-spacing: .1em; font-variant-numeric: tabular-nums; }
.urgency-sep { display: none; width: 1px; height: 24px; background: rgba(255,255,255,.4); }
@media (min-width: 480px) { .urgency-sep { display: block; } }
.urgency-text { font-weight: 600; font-size: .95rem; }

.container { max-width: 768px; margin: 0 auto; padding: 24px 12px; }

.card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  border: 1px solid var(--ring);
  overflow: hidden;
}

.hero { margin-bottom: 24px; }

.offer { padding: 28px 22px; text-align: center; margin-bottom: 24px; }
.offer h1, .offer h2 {
  margin: 0 0 6px; font-weight: 900;
  font-size: 1.6rem; line-height: 1.2;
}
@media (min-width: 640px) { .offer h1, .offer h2 { font-size: 1.9rem; } }
.offer h1 span { display: block; color: var(--primary); margin-top: 4px; }
.lead { color: var(--muted); margin: 8px 0 0; }
.hl { color: var(--danger); }

.prices { margin-top: 18px; display: flex; align-items: flex-end; justify-content: center; gap: 12px; }
.prices .old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.prices .new { font-size: 3rem; font-weight: 900; color: var(--danger); line-height: 1; }

.badge {
  display: inline-block; margin-top: 12px;
  background: var(--primary-2); color: #fff;
  padding: 7px 16px; border-radius: 999px;
  font-weight: 700; font-size: .9rem;
  box-shadow: 0 4px 10px rgba(232,90,42,.35);
}

.benefits {
  list-style: none; padding: 0; margin: 22px auto 0;
  max-width: 360px; text-align: left;
}
.benefits li { display: flex; gap: 8px; padding: 4px 0; font-size: .98rem; }

.btn-cta {
  display: inline-block; margin-top: 22px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: #fff; text-decoration: none;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 800; font-size: 1.1rem; text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(196,58,31,.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(196,58,31,.5); }
.btn-cta:active { transform: translateY(0); }

.note { margin-top: 12px; font-size: .8rem; color: var(--muted); }

.seals {
  margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  font-size: .8rem;
}
.seals span { background: var(--secondary); padding: 6px 12px; border-radius: 8px; font-weight: 600; }

.banners { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }

.final { margin-top: 8px; margin-bottom: 32px; }

footer {
  text-align: center; font-size: .78rem; color: var(--muted);
  padding: 8px 12px 24px;
}
