:root {
  --bg: #fdf7f6;
  --card: #ffffff;
  --card-hover: #fdf1f1;
  --text: #4a3a3d;
  --muted: #a3898d;
  --rose: #e8a6ab;
  --rose-deep: #d67e87;
  --ring: rgba(214, 126, 135, 0.30);
  --border: rgba(214, 126, 135, 0.18);
  --radius: 16px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 50% -10%, rgba(232, 166, 171, 0.28), transparent 60%),
    radial-gradient(800px 460px at 100% 5%, rgba(232, 166, 171, 0.14), transparent 55%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 30px 18px 48px;
}

.page {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ── Hero ── */
.hero { text-align: center; padding-top: 4px; }

.logo-wrap {
  width: 168px;
  height: 168px;
  margin: 0 auto 14px;
  border-radius: 28px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 16px 44px -18px var(--ring);
  border: 1px solid var(--border);
}

.logo {
  width: 88%;
  height: auto;
  display: block;
}

.tagline {
  margin-top: 2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.subtag {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

/* ── Oferta ── */
.offer {
  background: linear-gradient(135deg, rgba(232, 166, 171, 0.20), rgba(232, 166, 171, 0.10));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text);
}

.offer .code {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: 8px;
  background: rgba(214, 126, 135, 0.12);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--rose-deep);
}

/* ── Links ── */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px -12px var(--ring);
  transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.link:hover { background: var(--card-hover); border-color: var(--rose); }
.link:active { transform: scale(0.985); }

.link.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  border: none;
  box-shadow: 0 14px 30px -12px var(--ring);
  font-weight: 800;
}

.link.primary:hover {
  filter: brightness(1.03);
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
}

/* ── Footer ── */
.foot {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .link { transition: none; }
}
