/* LorenAI — loja de prompts e skills
   Paleta: fundo tinta azul-noite; três neons que também identificam as plataformas
   (azul = Claude Code, gelo = Gemini, verde = ChatGPT). */

:root {
  --ink: #030814;
  --ink-2: #071226;
  --ink-3: #0b1a35;
  --line: #142a4d;
  --line-2: #21406f;
  --text: #e4f1ff;
  --muted: #8ba5c7;
  --faint: #56709a;

  --blue: #2eb6ff;
  --ice: #bdebff;
  --green: #38f5a0;

  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", Menlo, Consolas, monospace;

  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  color-scheme: dark;
}

[data-plat="claude"]  { --pc: var(--blue); }
[data-plat="gemini"]  { --pc: var(--ice); }
[data-plat="chatgpt"] { --pc: var(--green); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 1rem/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, select { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0; font-weight: 700; }
p { margin: 0; }
code { font-family: var(--mono); font-size: .88em; color: var(--ice); background: var(--ink-3); padding: .1em .35em; border-radius: 4px; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--text); color: var(--ink); padding: 10px 14px; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 12px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: 0 22px;
  border-radius: 10px; border: 1px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; white-space: nowrap;
  transition: background-color .15s, border-color .15s, box-shadow .2s, color .15s;
}
.btn-primary { background: var(--blue); color: #021022; box-shadow: 0 0 0 0 rgba(46, 182, 255, 0); }
.btn-primary:hover { background: #5cc8ff; box-shadow: 0 0 28px rgba(46, 182, 255, .45); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); background: rgba(46, 182, 255, .08); }

.icon-btn {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 10px; border: 1px solid var(--line-2); background: transparent;
}
.icon-btn:hover { border-color: var(--blue); }
.icon-btn svg, .cart-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Topo ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: rgba(3, 8, 20, .78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 42, 77, .7);
}
.topbar-in { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; }
.brand-mark { font-family: var(--mono); font-weight: 700; color: var(--green); text-shadow: 0 0 12px rgba(56, 245, 160, .6); }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: .02em; line-height: 1; }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { text-decoration: none; color: var(--muted); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--text); }
.cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 12px 0 14px;
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 10px;
  font-weight: 600; font-size: .95rem;
}
.cart-btn:hover { border-color: var(--blue); }
.cart-count {
  min-width: 24px; height: 24px; padding: 0 6px; border-radius: 12px;
  display: inline-grid; place-items: center;
  background: var(--line); color: var(--muted); font-size: .8rem; font-weight: 600;
}
.cart-count.has { background: var(--green); color: #02140b; }
.cart-count.bump { animation: bump .45s ease; }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); box-shadow: 0 0 18px var(--green); } 100% { transform: scale(1); } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; min-height: min(90vh, 820px); display: flex; align-items: center; padding: 56px 0 72px; }
.hero-media { position: absolute; top: 0; right: 0; bottom: 0; width: min(74vw, 1320px); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 28%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(3, 8, 20, .88) 16%, rgba(3, 8, 20, .35) 40%, rgba(3, 8, 20, 0) 58%),
    linear-gradient(0deg, var(--ink) 0%, rgba(3, 8, 20, 0) 26%),
    linear-gradient(180deg, rgba(3, 8, 20, .55) 0%, rgba(3, 8, 20, 0) 18%);
}
.hero-in { position: relative; z-index: 1; }
.hero-copy { max-width: 640px; }
.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3.6rem, 7.4vw, 6.6rem); line-height: .9; letter-spacing: .003em;
  text-shadow: 0 0 30px rgba(46, 182, 255, .28);
}
.hero-title span { display: block; }
.hero-lead { margin-top: 22px; max-width: 34em; font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: #b9cce6; }

/* Barra de prompt: o elemento que gira entre as três plataformas */
.promptbar {
  margin-top: 30px;
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px 14px;
  padding: 14px 14px 14px 16px;
  background: rgba(7, 18, 38, .82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--pc) 55%, transparent);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .3), 0 0 38px color-mix(in srgb, var(--pc) 22%, transparent), inset 0 0 22px color-mix(in srgb, var(--pc) 7%, transparent);
  transition: border-color .5s, box-shadow .5s;
}
.pb-plat {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: var(--pc);
  padding: 4px 10px 4px 8px; border-radius: 999px;
  background: color-mix(in srgb, var(--pc) 12%, transparent);
  transition: color .5s, background-color .5s;
}
.pb-plat::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.pb-text {
  grid-column: 1 / -1; order: 2;
  font-family: var(--mono); font-size: .95rem; line-height: 1.5; color: var(--text);
  min-height: 3em;
}
.pb-caret { display: inline-block; width: .55em; height: 1.1em; margin-left: 2px; vertical-align: -.18em; background: var(--pc); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.pb-go {
  justify-self: end; order: 1;
  background: none; border: 0; padding: 4px 0; min-height: 32px;
  font-size: .85rem; font-weight: 600; color: var(--muted);
  text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 4px;
}
.pb-go:hover { color: var(--pc); text-decoration-color: currentColor; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- Legenda de plataformas ---------- */
.platforms { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.platforms-in { display: grid; grid-template-columns: repeat(3, 1fr); }
.plat-col { padding: 30px 28px 30px 0; position: relative; }
.plat-col + .plat-col { padding-left: 28px; border-left: 1px solid var(--line); }
.plat-col::before { content: ""; position: absolute; top: -1px; left: 0; width: 56px; height: 2px; background: var(--pc); box-shadow: 0 0 12px var(--pc); }
.plat-col + .plat-col::before { left: 28px; }
.plat-col h2 { font-family: var(--display); font-weight: 700; font-size: 1.9rem; line-height: 1; color: var(--pc); }
.plat-col p { margin-top: 10px; color: var(--muted); font-size: .95rem; max-width: 36ch; }
.plat-link {
  margin-top: 14px; padding: 0; background: none; border: 0; min-height: 32px;
  font-weight: 600; font-size: .92rem; color: var(--text);
  text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--pc) 60%, transparent); text-underline-offset: 5px;
}
.plat-link:hover { color: var(--pc); }

/* ---------- Cabeçalho de seção ---------- */
.sec-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 32px; margin-bottom: 32px; }
.sec-head h2, .combo h2, .about h2, .faq h2 {
  font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); line-height: .95; letter-spacing: .005em;
}
.sec-head p { color: var(--muted); max-width: 46ch; }

/* ---------- Catálogo ---------- */
.catalog { padding: 88px 0 96px; }
.shop { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.filters { position: sticky; top: 88px; display: grid; gap: 28px; }
.filters fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.filters legend { padding: 0; margin-bottom: 10px; font-weight: 600; font-size: .95rem; }
.opts { display: grid; gap: 4px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt label {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px; border: 1px solid transparent;
  color: var(--muted); font-size: .95rem; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.opt label:hover { color: var(--text); background: var(--ink-2); }
.opt .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pc, var(--faint)); flex: none; }
.opt .n { margin-left: auto; font-size: .8rem; color: var(--faint); font-variant-numeric: tabular-nums; }
.opt input:checked + label { color: var(--text); background: var(--ink-3); border-color: var(--line-2); }
.opt input:checked + label .n { color: var(--muted); }
.opt input:focus-visible + label { outline: 2px solid var(--blue); outline-offset: 2px; }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; min-height: 44px; }
.results-count { color: var(--muted); font-size: .95rem; }
.sort { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted); }
.sort select {
  height: 40px; padding: 0 34px 0 12px; border-radius: 9px;
  background: var(--ink-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%238ba5c7' stroke-width='1.6'/%3E%3C/svg%3E") no-repeat right 12px center / 11px;
  border: 1px solid var(--line-2); color: var(--text); appearance: none; -webkit-appearance: none;
}

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 20px; }
.empty[hidden] { display: none; }
.empty { padding: 48px 24px; text-align: center; border: 1px dashed var(--line-2); border-radius: var(--radius); display: grid; gap: 16px; justify-items: center; color: var(--muted); }

/* Card de produto */
.card {
  display: flex; flex-direction: column;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s;
}
.card:hover { border-color: color-mix(in srgb, var(--pc) 45%, var(--line)); }
.card-thumb {
  display: block; width: 100%; padding: 0; border: 0; background: none; text-align: left;
  aspect-ratio: 4 / 3; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-thumb .file { height: 100%; }
.thumb-plats { position: absolute; left: 10px; bottom: 10px; display: flex; gap: 5px; }
.thumb-plats i {
  width: 22px; height: 6px; border-radius: 3px; background: var(--pc);
  box-shadow: 0 0 10px var(--pc);
}

/* Prévia de arquivo: o próprio produto é texto, então a "foto" é o começo do arquivo */
.file {
  display: flex; flex-direction: column;
  background:
    radial-gradient(120% 90% at 100% 0%, color-mix(in srgb, var(--pc) 16%, transparent), transparent 60%),
    #050d1c;
}
.file-tab {
  display: flex; align-items: center; gap: 8px; flex: none;
  padding: 9px 14px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: .72rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.file-tab span { overflow: hidden; text-overflow: ellipsis; }
.file-tab::before { content: ""; width: 8px; height: 10px; flex: none; border: 1.4px solid var(--pc); border-radius: 1.5px; }
.file pre {
  margin: 0; padding: 12px 14px; flex: 1; overflow: hidden;
  font-family: var(--mono); font-size: .7rem; line-height: 1.6; color: #97afcf; white-space: pre-wrap;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
          mask-image: linear-gradient(180deg, #000 55%, transparent 96%);
}
.file .h { color: var(--pc); font-weight: 700; }
.file .fm { color: var(--faint); }
.file .v { color: var(--ink); background: var(--ice); border-radius: 3px; padding: 0 2px; }

.card-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 600; color: var(--pc);
  padding: 2px 8px 2px 7px; border-radius: 999px;
  background: color-mix(in srgb, var(--pc) 11%, transparent);
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.card-title { margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: 1.75rem; line-height: 1; }
.card-title button { padding: 0; border: 0; background: none; text-align: left; font: inherit; line-height: inherit; }
.card-title button:hover { color: var(--pc); }
.card-kind { margin-top: 6px; font-size: .82rem; color: var(--faint); }
.card-desc { margin-top: 10px; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.specs li { font-size: .78rem; color: var(--text); padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line-2); }
.card-buy { margin-top: auto; padding-top: 16px; }
.price { font-weight: 600; font-size: 2rem; line-height: 1; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.price small { font-size: .5em; font-weight: 500; margin-right: 2px; vertical-align: .55em; }
.price sup { font-size: .45em; vertical-align: .9em; margin-left: 1px; }
.price-from { font-size: .85rem; color: var(--faint); }
.delivery { margin-top: 6px; font-size: .84rem; color: var(--green); }
.card-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 14px; }
.card-actions .btn { min-height: 44px; }
.add-btn { width: 44px; height: 44px; }
.add-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.add-btn[aria-pressed="true"] { border-color: var(--green); color: var(--green); background: rgba(56, 245, 160, .08); }

/* ---------- Combo ---------- */
.combo { padding: 96px 0; background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.combo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(46, 182, 255, .10), transparent 70%),
    radial-gradient(600px 300px at 100% 100%, rgba(56, 245, 160, .08), transparent 70%);
}
.combo-in { position: relative; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: start; }
.combo-lead { margin-top: 16px; color: var(--muted); max-width: 40ch; }
.combo-price { margin-top: 28px; }
.combo-from { color: var(--muted); }
.combo-from s, .combo-list s { color: var(--faint); text-decoration-thickness: 1.5px; }
.combo-now { font-family: var(--display); font-weight: 800; font-size: clamp(4rem, 8vw, 6rem); line-height: 1; margin-top: 4px; text-shadow: 0 0 34px rgba(56, 245, 160, .35); color: var(--green); }
.combo-save { margin-top: 6px; font-weight: 600; }
.combo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.combo-list table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.combo-list th, .combo-list td { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.combo-list thead th { font-size: .82rem; font-weight: 500; color: var(--faint); border-bottom-color: var(--line-2); }
.combo-list tbody th { font-weight: 500; }
.combo-list .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.combo-list tfoot th, .combo-list tfoot td { border-bottom: 0; padding-top: 16px; font-weight: 600; }
.dots { display: inline-flex; gap: 5px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--pc); }

/* ---------- Como funciona ---------- */
.steps { padding: 96px 0; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: passo; }
.steps-list li { counter-increment: passo; padding: 0 24px 0 0; position: relative; }
.steps-list li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.steps-list li::before {
  content: counter(passo);
  display: block; font-family: var(--display); font-weight: 800; font-size: 3.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.2px var(--blue);
  margin-bottom: 14px;
}
.steps-list h3 { font-size: 1.1rem; font-weight: 600; }
.steps-list p { margin-top: 8px; color: var(--muted); font-size: .95rem; }

/* ---------- Sobre ---------- */
.about { padding: 96px 0; border-top: 1px solid var(--line); }
.about-in { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 56px; align-items: center; }
.about-photo { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); max-width: 420px; }
.about-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(46, 182, 255, .25); border-radius: inherit; pointer-events: none; }
.about-lead { margin-top: 18px; color: #b9cce6; font-size: 1.08rem; max-width: 52ch; }
.profile { margin: 28px 0 0; display: grid; gap: 0; max-width: 560px; }
.profile div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.profile div:first-child { border-top: 1px solid var(--line); }
.profile dt { color: var(--faint); font-size: .9rem; }
.profile dd { margin: 0; }
.about-links { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.about-links a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: 9px; text-decoration: none; font-weight: 500; font-size: .95rem; }
.about-links a:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Dúvidas ---------- */
.faq { padding: 96px 0 104px; border-top: 1px solid var(--line); }
.faq-in { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 56px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-weight: 600; font-size: 1.05rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 10px; height: 10px; margin-top: -7px;
  border-right: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(45deg);
  transition: transform .2s;
}
.faq-list details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-list details p { padding: 0 0 20px; color: var(--muted); max-width: 64ch; }

/* ---------- Rodapé ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0 48px; background: var(--ink-2); }
.footer-in { display: grid; gap: 12px; color: var(--muted); font-size: .92rem; }
.footer a:not(.brand) { color: var(--text); }
.footer-legal { color: var(--faint); font-size: .82rem; max-width: 70ch; }

/* ---------- Modal de produto ---------- */
dialog { padding: 0; border: 0; color: var(--text); background: transparent; max-width: none; max-height: none; }
dialog::backdrop { background: rgba(1, 4, 12, .72); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal { width: min(980px, calc(100vw - 32px)); margin: auto; }
.modal-in {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden;
  max-height: calc(100dvh - 48px);
}
.modal-media { background: #050d1c; border-right: 1px solid var(--line); min-height: 100%; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-media .file { height: 100%; min-height: 420px; }
.modal-media .file pre { font-size: .8rem; -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%); mask-image: linear-gradient(180deg, #000 70%, transparent 100%); }
.modal-info { padding: 26px 28px 28px; overflow-y: auto; position: relative; }
.modal-info .icon-btn { position: absolute; top: 16px; right: 16px; }
.modal-info .chips { padding-right: 56px; }
.modal-info h2 { margin-top: 14px; font-family: var(--display); font-weight: 800; font-size: 2.6rem; line-height: .95; }
.modal-info .card-kind { margin-top: 8px; }
.modal-desc { margin-top: 16px; color: #b9cce6; }
.modal-info h3 { margin-top: 22px; font-size: .95rem; font-weight: 600; }
.includes { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.includes li { position: relative; padding-left: 22px; color: var(--muted); font-size: .95rem; }
.includes li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 5px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.modal-buy { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.modal-buy .card-actions { grid-template-columns: 1fr 1fr; }

/* ---------- Carrinho ---------- */
.drawer { margin: 0 0 0 auto; height: 100dvh; width: min(440px, 100vw); }
.drawer[open] { animation: slide-in .25s ease-out; }
@keyframes slide-in { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer-in { height: 100%; display: flex; flex-direction: column; background: var(--ink-2); border-left: 1px solid var(--line-2); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-family: var(--display); font-weight: 800; font-size: 2rem; line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item h3 { font-size: 1rem; font-weight: 600; }
.cart-item .card-kind { margin: 0; grid-column: 1; }
.cart-item .ci-price { grid-row: 1; grid-column: 2; font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }
.cart-item .ci-price.included { color: var(--faint); font-weight: 500; font-size: .85rem; }
.cart-item .ci-remove { grid-column: 2; justify-self: end; background: none; border: 0; padding: 4px 0; color: var(--muted); font-size: .85rem; text-decoration: underline; text-underline-offset: 3px; }
.cart-item .ci-remove:hover { color: var(--text); }
.cart-empty { padding: 40px 0; display: grid; gap: 16px; justify-items: start; color: var(--muted); }
.cart-note { margin-top: 14px; font-size: .88rem; color: var(--muted); }
.drawer-foot { padding: 18px 20px 22px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.drawer-foot:empty { display: none; }
.cart-total { display: flex; align-items: baseline; justify-content: space-between; font-weight: 600; }
.cart-total b { font-size: 1.7rem; font-variant-numeric: tabular-nums; }
.drawer-foot .btn { width: 100%; }
.drawer-foot small { color: var(--faint); font-size: .82rem; line-height: 1.45; }

/* ---------- Aviso ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 50; transform: translate(-50%, 20px);
  padding: 12px 18px; border-radius: 10px; background: var(--ink-3); border: 1px solid var(--green);
  color: var(--text); font-weight: 500; font-size: .95rem; box-shadow: 0 0 24px rgba(56, 245, 160, .25);
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; max-width: calc(100vw - 32px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .shop { grid-template-columns: 1fr; gap: 24px; }
  .filters { position: static; display: grid; gap: 12px; }
  .filters fieldset { display: flex; align-items: center; gap: 12px; min-width: 0; }
  .filters legend { float: left; margin: 0; font-size: .88rem; color: var(--faint); font-weight: 500; width: 76px; flex: none; }
  .opts { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding: 2px; min-width: 0; }
  .opts::-webkit-scrollbar { display: none; }
  .opt label { white-space: nowrap; border-color: var(--line); padding: 7px 12px; }
  .combo-in, .about-in, .faq-in { grid-template-columns: 1fr; gap: 36px; }
  .steps-list { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .steps-list li:nth-child(3) { padding-left: 0; border-left: 0; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .cart-btn { margin-left: auto; }
  .hero { display: block; min-height: 0; padding: 0 0 56px; }
  .hero-media { position: relative; width: 100%; aspect-ratio: 4 / 3.4; max-height: 62vh; }
  .hero-media img { object-position: 50% 22%; }
  .hero-media::after {
    background:
      linear-gradient(0deg, var(--ink) 0%, rgba(3, 8, 20, .6) 22%, rgba(3, 8, 20, 0) 50%),
      linear-gradient(180deg, rgba(3, 8, 20, .5) 0%, rgba(3, 8, 20, 0) 20%);
  }
  .hero-in { margin-top: -84px; }
  .platforms-in { grid-template-columns: 1fr; }
  .plat-col, .plat-col + .plat-col { padding: 24px 0; border-left: 0; }
  .plat-col + .plat-col { border-top: 1px solid var(--line); }
  .plat-col + .plat-col::before { left: 0; }
  .plat-col::before { top: -1px; }
  .catalog, .combo, .steps, .about, .faq { padding: 64px 0; }
  .modal-in { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-info { overflow: visible; }
  .modal-media { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
  .modal-media img { aspect-ratio: 4 / 3; height: auto; }
  .modal-media .file { min-height: 0; height: 220px; }
  .modal-buy { position: sticky; bottom: 0; margin: 24px -28px -28px; padding: 16px 28px 20px; background: var(--ink-2); box-shadow: 0 -12px 24px rgba(3, 8, 20, .7); }
  .modal-buy .delivery { display: none; }
  .about-photo { max-width: 300px; }
}

@media (max-width: 560px) {
  .cart-btn span:not(.cart-count) { display: none; }
  .cart-btn { padding: 0 10px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .pb-go { justify-self: start; order: 3; grid-column: 1 / -1; }
  .results-bar { flex-wrap: wrap; }
  .steps-list { grid-template-columns: 1fr; gap: 28px; }
  .steps-list li, .steps-list li + li { padding: 0; border-left: 0; }
  .profile div { grid-template-columns: 1fr; gap: 2px; }
  .modal { width: 100vw; margin: auto 0 0; }
  .modal-in { border-radius: 18px 18px 0 0; max-height: 92dvh; }
  .combo-list th:nth-child(2), .combo-list td:nth-child(2) { display: none; }
  .combo-list tfoot th { display: table-cell; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
