:root {
  --bg: #0b1220;
  --card: #0f172a;
  --text: #e5e7eb;
  --muted: #a6adbb;
  --accent: #22c55e;
  --accent-2: #38bdf8;
  --ring: #3b82f6;
}
* { box-sizing: border-box; }
/* html, body { height: 100%; } */
body {
  margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 10% 10%, rgba(56,189,248,.08), transparent 60%),
			  radial-gradient(1000px 700px at 90% 20%, rgba(34,197,94,.08), transparent 60%),
			  var(--bg);
  color: var(--text);
  min-height: 100vh;
}
.wrap { max-width: 920px; margin: 0 auto; padding: 32px 16px 88px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  overflow: hidden;
}
header {
  padding: 28px 28px 10px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid rgba(148,163,184,.15);
  background: linear-gradient(180deg, rgba(59,130,246,.08), transparent);
}
header .badge { color: var(--accent-2); font-weight: 700; letter-spacing: .3px; }
header h1 { margin: 2px 0 0; font-size: clamp(24px, 4vw, 36px); line-height: 1.15; }

.content { padding: 22px 24px 28px; }
h2 { font-size: 1.15rem; margin: 22px 0 10px; color: #e9edf6; }
p { color: var(--text); margin: 10px 0; }
.muted { color: var(--muted); }
ul { margin: 8px 0 8px 0.1rem; display: grid; gap: 8px; }
li { line-height: 1.55; }
.bold { font-weight: 700; }
.section { padding: 10px 0 6px; border-top: 1px dashed rgba(148,163,184,.2); }
.lead { font-size: 1.05rem; }

.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 999px; font-weight: 700;
  text-decoration: none; color: #020617; background: var(--accent);
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  margin-top: 16px;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 14px 38px rgba(34,197,94,.45); }
.cta:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }

.foot { padding: 16px 24px 24px; border-top: 1px solid rgba(148,163,184,.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 6px 10px; border-radius: 999px; font-size: .875rem; color: #0a0f1c; background: rgba(148,163,184,.9); font-weight: 700; }
.chip.ok { background: rgba(56,189,248,.9); }
.chip.fast { background: rgba(34,197,94,.9); }
.chip.big { background: rgba(250,204,21,.9); }
.chip.PayPal { background: rgb(255, 209, 64); }

.divider { height: 1px; background: rgba(148,163,184,.15); margin: 14px 0; }
.tip { font-size: .95rem; color: var(--muted); }

#formulario input,
#formulario select,
#formulario textarea {
  width: 100%;
  padding-left: 8px;
  /* padding: 7px 10px; */
  font-size: 1rem;
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 10px;
  /* transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; */
  /* outline: none; */
  /* font-family: inherit; */
}

div.opciones div.opcion {
	margin: 5px 0px;
}

.PayPal {
	color: rgb(0, 48, 135);
}