/* PRI STORE — mobile-first, rápido, sin frameworks */
:root {
  --bg: #0e0f13; --card: #181a21; --line: #262a35;
  --txt: #e8eaf0; --dim: #9aa1b0;
  --brand: #ff4655; --brand2: #ffb02e; --ok: #2ecc71; --yape: #742284;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--txt); font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
a { color: var(--brand2); text-decoration: none; }
.wrap { max-width: 720px; margin: 0 auto; padding: 0 16px; }

header.site { position: sticky; top: 0; z-index: 10; background: rgba(14,15,19,.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(6px); }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; }
.logo { font-weight: 800; font-size: 1.15rem; color: var(--txt); }
.logo span { color: var(--brand); }
nav.main { display: flex; gap: 14px; font-size: .85rem; overflow-x: auto; padding: 8px 16px; border-bottom: 1px solid var(--line); white-space: nowrap; }
nav.main a { color: var(--dim); }
nav.main a.on, nav.main a:hover { color: var(--txt); }

.hero { padding: 36px 0 22px; text-align: center; }
.hero h1 { font-size: 1.65rem; line-height: 1.25; margin-bottom: 10px; }
.hero p.sub { color: var(--dim); max-width: 34rem; margin: 0 auto 18px; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 6px; }
.badge { font-size: .78rem; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; color: var(--dim); }

.btn { display: inline-block; padding: 13px 22px; border-radius: 12px; font-weight: 700; text-align: center; }
.btn-wa { background: #25d366; color: #062812; }
.btn-wa:active { transform: scale(.98); }
.btn-ghost { border: 1px solid var(--line); color: var(--txt); }

section { padding: 26px 0; }
h2 { font-size: 1.25rem; margin-bottom: 12px; }
h3 { font-size: 1.02rem; margin: 16px 0 6px; }
p + p { margin-top: 10px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.card + .card { margin-top: 12px; }
ul.clean { list-style: none; }
ul.clean li { padding: 7px 0 7px 26px; position: relative; }
ul.clean li::before { content: "✅"; position: absolute; left: 0; }
ol.steps { counter-reset: p; list-style: none; }
ol.steps li { counter-increment: p; padding: 10px 0 10px 40px; position: relative; }
ol.steps li::before { content: counter(p); position: absolute; left: 0; top: 8px; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .85rem; }

table.precios { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.precios th, table.precios td { padding: 11px 8px; text-align: left; border-bottom: 1px solid var(--line); }
table.precios th { color: var(--dim); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.price { font-weight: 800; color: var(--brand2); white-space: nowrap; }
.tag-promo { font-size: .72rem; background: rgba(255,70,85,.15); color: var(--brand); border-radius: 6px; padding: 2px 7px; margin-left: 6px; }
.mini { font-size: .8rem; color: var(--dim); }
tr .btn-wa { padding: 8px 12px; font-size: .82rem; border-radius: 9px; }

details { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; background: var(--card); }
details summary { padding: 13px 16px; cursor: pointer; font-weight: 600; }
details div { padding: 0 16px 14px; color: var(--dim); }

.cta-fixed { position: fixed; right: 14px; bottom: 14px; z-index: 20; box-shadow: 0 6px 20px rgba(0,0,0,.45); border-radius: 14px; }
footer.site { border-top: 1px solid var(--line); padding: 26px 0 90px; color: var(--dim); font-size: .85rem; }
footer.site a { color: var(--dim); text-decoration: underline; }
.grid2 { display: grid; gap: 12px; }
@media (min-width: 640px) { .grid2 { grid-template-columns: 1fr 1fr; } .hero h1 { font-size: 2rem; } }
