:root {
  --primary: #1e90ff;
  --primary-2: #0b5ed7;
  --bg: #060a12;
  --panel: #0d1420;
  --panel-2: #121b2b;
  --line: #1d2a40;
  --text: #eef5ff;
  --muted: #93a3bb;
  --green: #3ee08f;
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: "Lexend", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
input, textarea { font: inherit; color: inherit; }

.bg-glow {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 50% -120px, color-mix(in srgb, var(--primary) 35%, transparent), transparent 70%),
    radial-gradient(600px 400px at 100% 40%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 70%),
    radial-gradient(600px 400px at 0% 80%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 70%);
}
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* ---------- Topbar ---------- */
.topbar-wrap { position: sticky; top: 0; z-index: 40; padding: 12px 16px 0; }
.topbar {
  position: relative;
  max-width: 1248px; margin: 0 auto; height: 64px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px;
  padding: 0 20px;
  background: rgba(10, 16, 28, .78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.tb-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tb-right { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.icon-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; }
.icon-btn:hover { background: rgba(255,255,255,.06); }
.search {
  display: flex; align-items: center; gap: 8px; min-width: 0;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  border-radius: 10px; padding: 0 12px; height: 36px; width: 240px; max-width: 100%;
  color: var(--muted);
}
.search input { background: none; border: 0; outline: 0; width: 100%; font-size: 13px; color: var(--text); }
.search svg { width: 15px; height: 15px; }
.search-results {
  position: absolute; top: 70px; left: 0; width: min(460px, 100%);
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  max-height: 420px; overflow: auto; padding: 6px; box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.search-results a { display: flex; gap: 10px; align-items: center; padding: 8px; border-radius: 10px; font-size: 13px; }
.search-results a:hover { background: var(--panel-2); }
.search-results .sr-thumb { width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0; overflow: hidden; }
.search-results .sr-price { margin-left: auto; color: var(--primary); font-weight: 700; white-space: nowrap; }
.search-results .empty { padding: 14px; color: var(--muted); font-size: 13px; }

.logo { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 900; letter-spacing: .06em; font-size: 20px; text-transform: uppercase; position: relative; }
.logo-mark {
  width: 50px; height: 50px; display: grid; place-items: center; position: relative;
  font-size: 26px; font-weight: 900; color: #fff;
  background: linear-gradient(145deg, #0c1a2e, #0f2f5c);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: inset 0 0 0 3px #fff;
}
.logo-mark::before { content: ""; position: absolute; inset: 0; clip-path: inherit; border: 3px solid #fff; }
.logo-ring { position: absolute; width: 120px; height: 26px; border-radius: 50%; background: linear-gradient(90deg, var(--primary-2), var(--primary)); transform: rotate(-12deg); z-index: -1; filter: drop-shadow(0 0 12px color-mix(in srgb, var(--primary) 70%, transparent)); }
.logo-text { display: none; }
.logo.small .logo-mark { width: 38px; height: 38px; font-size: 19px; }
.logo.small .logo-ring { width: 80px; height: 18px; }
.logo.small .logo-text { display: inline; font-size: 15px; }

.btn-white { display: flex; align-items: center; gap: 6px; background: #fff; color: #0a1220; font-weight: 600; font-size: 13px; height: 36px; padding: 0 16px; border-radius: 10px; }
.btn-white svg { width: 14px; height: 14px; }
.cart-btn { position: relative; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 22%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent); color: var(--primary); }
.cart-count { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff; font-weight: 600; font-size: 14px; border-radius: 10px; height: 42px; padding: 0 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--primary) 35%, transparent);
  transition: filter .15s, transform .15s;
}
.btn-primary:hover { filter: brightness(1.12); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary[disabled] { opacity: .45; cursor: not-allowed; filter: grayscale(.6); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); background: rgba(255,255,255,.03); font-weight: 600; font-size: 14px; border-radius: 10px; height: 44px; padding: 0 18px; }
.btn-ghost:hover { background: rgba(255,255,255,.07); }
.block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero { margin-top: 12px; border-radius: 18px; overflow: hidden; position: relative; aspect-ratio: 1248 / 420; border: 1px solid var(--line); }
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-gen {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12), transparent 35%),
    repeating-linear-gradient(115deg, transparent 0 60px, rgba(255,255,255,.05) 60px 120px),
    linear-gradient(120deg, #0a2a5c, var(--primary) 50%, #0b3a82);
}
.hero-gen h1 { font-size: clamp(34px, 8vw, 110px); font-weight: 900; line-height: .9; text-transform: uppercase; letter-spacing: -.01em; color: #fff; text-shadow: 0 6px 0 rgba(0,0,0,.25), 0 0 40px rgba(255,255,255,.3); }
.hero-gen p { font-size: clamp(12px, 1.8vw, 18px); font-weight: 600; opacity: .9; }
.hero-coins { position: absolute; inset: 0; pointer-events: none; font-size: clamp(20px, 4vw, 44px); }
.hero-coins span { position: absolute; opacity: .9; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }

/* ---------- Titles ---------- */
.section-title { font-size: 22px; font-weight: 800; margin: 28px 0 14px; }
.cat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.cat-tile {
  position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: center; padding: 10px;
  background: linear-gradient(135deg, #082244, var(--primary-2) 60%, var(--primary));
  transition: transform .2s, box-shadow .2s;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 30px color-mix(in srgb, var(--primary) 30%, transparent); }
.cat-tile .ct-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -62%); font-size: clamp(34px, 6vw, 64px); filter: drop-shadow(0 6px 10px rgba(0,0,0,.4)); }
.cat-tile .ct-name { position: relative; font-weight: 900; font-size: clamp(13px, 2vw, 24px); text-transform: uppercase; text-align: center; line-height: 1; color: #fff; text-shadow: 0 3px 0 rgba(0,0,0,.45); }
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.cat-heading { display: flex; flex-direction: column; align-items: center; margin: 56px 0 26px; position: relative; }
.cat-heading h2 {
  font-size: clamp(26px, 5vw, 48px); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; text-align: center;
  background: linear-gradient(135deg, #fff, #fff 55%, color-mix(in srgb, var(--primary) 60%, #fff));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.divider { display: flex; align-items: center; gap: 10px; margin-top: 10px; opacity: .85; }
.divider i { width: 48px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, transparent, var(--primary)); }
.divider i:last-child { transform: scaleX(-1); }
.divider b { width: 8px; height: 8px; background: var(--primary); transform: rotate(45deg); }

.sub-heading { display: flex; align-items: center; gap: 14px; margin: 8px 0 22px; }
.sub-heading .line { flex: 1; height: 2px; border-radius: 2px; background: var(--primary); }
.sub-heading h3 {
  flex-shrink: 0; max-width: 80%; text-align: center;
  font-size: clamp(13px, 1.8vw, 19px); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 8px 22px; border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 50%, transparent);
}
.sub-block { margin-bottom: 56px; }

/* ---------- Product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.card {
  display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--primary) 55%, transparent); box-shadow: 0 16px 36px rgba(0,0,0,.45); }
.card.oos { opacity: .55; }
.card-img { position: relative; aspect-ratio: 1; overflow: hidden; }
.card-img .oos-tag { position: absolute; inset: auto 8px 8px 8px; background: rgba(0,0,0,.75); color: #ff6b8a; font-weight: 700; font-size: 11px; text-align: center; padding: 6px; border-radius: 8px; letter-spacing: .04em; }
.card-body { padding: 12px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.card-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 36px; }
.price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 6px; margin-top: auto; }
.old-row { display: flex; align-items: center; gap: 6px; min-height: 20px; }
.old { color: var(--muted); text-decoration: line-through; font-size: 12px; }
.off { font-size: 10.5px; font-weight: 700; color: var(--green); background: color-mix(in srgb, var(--green) 14%, transparent); border: 1px solid color-mix(in srgb, var(--green) 35%, transparent); border-radius: 6px; padding: 1px 6px; display: inline-flex; align-items: center; gap: 3px; }
.price { font-size: 19px; font-weight: 800; }
.pix-note { font-size: 11px; color: var(--muted); }
.pix-badge { width: 28px; height: 28px; border-radius: 7px; display: grid; place-items: center; background: color-mix(in srgb, #32bcad 18%, transparent); border: 1px solid color-mix(in srgb, #32bcad 40%, transparent); flex-shrink: 0; }
.pix-badge { color: #32bcad; }
.pix-badge svg { width: 15px; height: 15px; }
svg.pix-ico { stroke: none; }
.card .btn-primary { height: 38px; font-size: 13px; margin-top: 4px; }

/* Arte gerada do produto */
.art {
  width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 12px; text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.22), transparent 45%),
    repeating-linear-gradient(125deg, transparent 0 22px, rgba(255,255,255,.05) 22px 44px),
    linear-gradient(150deg, var(--a1, #5b0f8a), var(--a2, #1e90ff));
  overflow: hidden;
}
.art .art-emoji { font-size: clamp(40px, 6vw, 72px); line-height: 1; filter: drop-shadow(0 8px 10px rgba(0,0,0,.45)); }
.art .art-title { font-weight: 900; text-transform: uppercase; font-size: clamp(11px, 1.3vw, 15px); line-height: 1.05; color: #fff; text-shadow: 0 2px 0 rgba(0,0,0,.5); max-width: 95%; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.art .art-mark { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 800; letter-spacing: .12em; opacity: .75; text-transform: uppercase; }
.art.big .art-emoji { font-size: clamp(80px, 14vw, 160px); }
.art.big .art-title { font-size: clamp(18px, 2.6vw, 32px); }

/* ---------- Reviews / trust ---------- */
.stats { display: flex; align-items: center; gap: 16px; margin: 70px 0 20px; }
.stats h4 { font-size: 26px; font-weight: 900; }
.reviews { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 1fr); gap: 14px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
.review { scroll-snap-align: start; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.review .who { display: flex; align-items: center; gap: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 25%, transparent); font-weight: 700; font-size: 13px; }
.review small { color: var(--muted); font-size: 12px; }
.review p { font-size: 13px; line-height: 1.5; color: #d3e0f0; }
.review .prod { font-size: 12px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 10px; margin-top: auto; }
.stars { color: #ffc83d; letter-spacing: 2px; font-size: 13px; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 50px 0; }
.trust > div { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 20px; display: flex; gap: 14px; align-items: center; }
.trust .ti { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 18%, transparent); color: var(--primary); flex-shrink: 0; }
.trust .ti svg { width: 22px; height: 22px; }
.trust h5 { font-size: 15px; font-weight: 700; }
.trust p { font-size: 13px; color: var(--muted); margin-top: 2px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 70px 0; align-items: start; }
.eyebrow { color: var(--primary); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.two-col h4 { font-size: 30px; font-weight: 800; margin: 6px 0 10px; }
.two-col p { color: var(--muted); line-height: 1.65; font-size: 14.5px; margin-bottom: 12px; }
.faq-item { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 600; font-size: 14.5px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 20px; color: var(--primary); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .ans { padding: 0 18px 16px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.faq-item .ans p + p { margin-top: 8px; }
.mission { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), transparent); border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent); border-radius: 14px; padding: 18px; margin: 16px 0; }
.mission b { display: block; font-size: 12px; letter-spacing: .14em; color: var(--primary); margin-bottom: 6px; }

/* ---------- Product page ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); margin: 24px 0 16px; }
.crumbs a:hover { color: var(--text); }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pdp-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 1; position: sticky; top: 96px; }
.pdp h1 { font-size: 26px; font-weight: 800; line-height: 1.25; }
.chips { display: flex; gap: 8px; margin: 12px 0 18px; flex-wrap: wrap; }
.chip { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); }
.chip.ok { color: var(--green); }
.chip.bad { color: #ff6b8a; }
.price-box { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px; margin-bottom: 16px; }
.price-box .price { font-size: 32px; color: var(--primary); }
.variants { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.variant { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; }
.variant input { accent-color: var(--primary); width: 16px; height: 16px; }
.variant.sel { border-color: var(--primary); background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 30%, transparent), color-mix(in srgb, var(--primary) 8%, transparent)); }
.variant .vn { font-size: 13.5px; font-weight: 600; flex: 1; }
.variant .vp { font-weight: 700; white-space: nowrap; }
.pdp-actions { display: flex; flex-direction: column; gap: 10px; }
.pdp-actions .btn-primary { height: 48px; font-size: 15px; }
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.feat > div { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 8px; text-align: center; font-size: 12px; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.feat svg { color: var(--primary); }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-top: 16px; }
.panel h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.desc { white-space: pre-line; color: #cfdcee; font-size: 14px; line-height: 1.65; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--muted); }
.info-list li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 700; }
.pay-row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.related { margin-top: 60px; }

/* ---------- Drawer / side menu ---------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); z-index: 60; }
.drawer, .side-menu {
  position: fixed; top: 0; bottom: 0; z-index: 70; width: min(400px, 92vw); background: #0a0f19; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .28s ease;
}
.drawer { right: 0; transform: translateX(105%); }
.side-menu { left: 0; transform: translateX(-105%); border-left: 0; border-right: 1px solid var(--line); width: min(320px, 86vw); padding: 16px; gap: 16px; }
.drawer.open, .side-menu.open { transform: none; }
.drawer-head, .side-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-head { padding: 18px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 17px; }
.drawer-body { flex: 1; overflow: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.drawer-foot { padding: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.row-between { display: flex; justify-content: space-between; align-items: center; }
.ci { display: grid; grid-template-columns: 56px 1fr; gap: 12px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 10px; }
.ci .thumb { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; }
.ci .name { font-size: 12.5px; font-weight: 600; line-height: 1.3; }
.ci .var { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.ci .ctrl { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty button { width: 28px; height: 26px; }
.qty button:hover { background: rgba(255,255,255,.07); }
.qty span { min-width: 26px; text-align: center; font-size: 13px; }
.ci .rm { font-size: 11.5px; color: var(--muted); text-decoration: underline; }
.empty-cart { text-align: center; color: var(--muted); padding: 50px 10px; font-size: 14px; }
.side-menu nav { display: flex; flex-direction: column; gap: 2px; }
.side-menu nav a { padding: 12px; border-radius: 10px; font-weight: 600; font-size: 14.5px; }
.side-menu nav a:hover { background: var(--panel-2); }
.side-cats { display: flex; flex-direction: column; margin-left: 10px; border-left: 1px solid var(--line); padding-left: 6px; }
.side-cats a { font-weight: 500 !important; color: var(--muted); font-size: 13.5px !important; padding: 9px 12px !important; }
.side-social { margin-top: auto; display: flex; gap: 10px; }

/* ---------- Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; margin-top: 24px; align-items: start; }
.checkout h1 { font-size: 26px; font-weight: 800; margin-bottom: 4px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; }
.field small { color: var(--muted); font-size: 12px; }
.field input { height: 46px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel); padding: 0 14px; outline: 0; font-size: 14px; }
.field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 8px 0 18px; }
.check input { accent-color: var(--primary); margin-top: 2px; }
.check a { color: var(--primary); text-decoration: underline; }
.summary .ci { background: var(--panel-2); }
.summary-lines { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; font-size: 14px; }
.summary-lines .total { font-size: 20px; font-weight: 800; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.pix-box { text-align: center; }
.qr { background: #fff; padding: 14px; border-radius: 14px; width: 248px; height: 248px; margin: 18px auto; display: grid; place-items: center; }
.copy-field { display: flex; gap: 8px; margin: 10px 0 16px; }
.copy-field input { flex: 1; min-width: 0; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel-2); padding: 0 12px; font-size: 12px; color: var(--muted); }
.steps { text-align: left; counter-reset: s; list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.steps li { counter-increment: s; display: flex; gap: 10px; font-size: 13.5px; color: #cfdcee; line-height: 1.45; }
.steps li::before { content: counter(s); width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 25%, transparent); color: #fff; font-size: 12px; font-weight: 700; }
.warn { background: color-mix(in srgb, #ffb020 12%, transparent); border: 1px solid color-mix(in srgb, #ffb020 40%, transparent); color: #ffd48a; border-radius: 12px; padding: 12px 14px; font-size: 13px; line-height: 1.5; text-align: left; }
.order-code { font-family: ui-monospace, monospace; font-size: 18px; font-weight: 700; letter-spacing: .08em; color: var(--primary); }

/* ---------- Text pages ---------- */
.page { max-width: 860px; margin: 30px auto 0; }
.page h1 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.page h2 { font-size: 18px; margin: 26px 0 8px; }
.page p, .page li { color: var(--muted); line-height: 1.7; font-size: 14.5px; }
.page ul { padding-left: 20px; }

/* ---------- Footer ---------- */
.footer { margin-top: 90px; border-top: 1px solid var(--line); background: rgba(6,10,18,.7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding: 44px 16px; max-width: 1280px; margin: 0 auto; }
.footer p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin-top: 12px; }
.footer h6 { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { color: var(--muted); font-size: 13.5px; }
.footer ul a:hover { color: var(--text); }
.footer .copy { text-align: center; color: var(--muted); font-size: 12px; padding: 18px 16px 90px; border-top: 1px solid var(--line); }
.footer .logo { justify-content: flex-start; }
.soc { display: flex; gap: 8px; margin-top: 14px; }
.soc a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line); }
.soc a:hover { border-color: var(--primary); }
.soc svg, .float-social svg { stroke: none; fill: currentColor; }

.float-social { position: fixed; right: 16px; bottom: 18px; z-index: 50; display: flex; flex-direction: column; gap: 12px; }
.float-social a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.45); transition: transform .2s; }
.float-social a:hover { transform: scale(1.08); }
.float-social svg { width: 26px; height: 26px; }
.float-social .ig { background: radial-gradient(circle at 30% 110%, #fdcb52, #fd5949 35%, #d6249f 65%, #285aeb); }
.float-social .dc { background: #5865f2; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 90; background: var(--panel-2); border: 1px solid color-mix(in srgb, var(--primary) 50%, transparent); padding: 12px 18px; border-radius: 12px; font-size: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.5); }

.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 16px; }
.modal-card { position: relative; width: min(480px, 100%); max-height: 86vh; overflow: auto; background: #0a0f19; border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.modal-card h3 { font-size: 18px; margin-bottom: 14px; }
.confirm-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 16px; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); animation: fadeIn .2s ease; }
.confirm-box { background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px; padding: 24px; width: min(360px, 90vw); text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,.6); animation: slideUp .25s cubic-bezier(.3,1,.5,1); }
.confirm-box p { font-size: 15px; margin-bottom: 20px; line-height: 1.5; }
.confirm-btns { display: flex; gap: 10px; justify-content: center; }
.confirm-btns button { flex: 1; padding: 10px 0; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: transform .12s, opacity .12s; }
.confirm-btns button:active { transform: scale(.96); }
.confirm-btns .confirm-yes { background: var(--primary); color: #fff; }
.confirm-btns .confirm-no { background: var(--panel); color: var(--muted); border: 1px solid var(--line); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.order-row { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-bottom: 10px; font-size: 13px; }
.order-row .row-between { margin-bottom: 4px; }
.muted { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .pdp, .checkout, .two-col { grid-template-columns: 1fr; }
  .pdp-img { position: static; }
  .trust { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .topbar { padding: 0 10px; grid-template-columns: auto 1fr auto; }
  .search { display: none; }
  .search.mobile-open { display: flex; position: absolute; left: 10px; right: 10px; top: 72px; width: auto; background: var(--panel); height: 44px; }
  .logo-mark { width: 42px; height: 42px; font-size: 21px; }
  .logo-ring { width: 96px; height: 20px; }
  .btn-white span { display: none; }
  .btn-white { padding: 0 11px; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-body { padding: 10px; }
  .card-title { font-size: 12.5px; }
  .card .btn-primary { font-size: 12px; gap: 5px; padding: 0 8px; white-space: nowrap; }
  .card .btn-primary svg { width: 15px; height: 15px; }
  .tb-left { gap: 2px; }
  .search-results { top: 122px; left: 10px; right: 10px; width: auto; }
  .price { font-size: 16px; }
  .pix-badge { display: none; }
  .sub-heading { gap: 8px; }
  .two-col h4 { font-size: 24px; }
  .float-social a { width: 46px; height: 46px; }
  .float-social svg { width: 22px; height: 22px; }
}
@media (max-width: 720px) { .search-toggle { display: grid !important; } }
.search-toggle { display: none !important; }

/* miniaturas: só o ícone */
.sr-thumb .art-title, .sr-thumb .art-mark, .ci .thumb .art-title, .ci .thumb .art-mark { display: none; }
.sr-thumb .art, .ci .thumb .art { padding: 0; }
.sr-thumb .art-emoji, .ci .thumb .art-emoji { font-size: 22px; }

/* ---------- Checkout (estilo etapas + order bumps) ---------- */
.co-steps { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 22px 0 6px; font-size: 12.5px; color: var(--muted); }
.co-steps span.on { color: var(--primary); font-weight: 600; }
.co-steps span.done { color: var(--green); }
.co-steps i { font-style: normal; opacity: .5; }
.co-panel { margin: 0 !important; }
.co-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.co-panel hr { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.pay-opt { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel-2); }
.pay-opt.sel { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, var(--panel-2)); box-shadow: 0 0 0 1px var(--primary) inset; }
.pay-opt > span:nth-child(2) { display: flex; flex-direction: column; align-items: flex-start; flex: 1; font-size: 14px; }
.pay-opt input { accent-color: var(--primary); width: 16px; height: 16px; }
.pix-badge.big { width: 38px; height: 38px; border-radius: 10px; }
.pix-badge.big svg { width: 20px; height: 20px; }
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.co-grid .field { margin-bottom: 12px; }
.co-grid .field label { font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-error { background: color-mix(in srgb, #ff4d6d 12%, transparent); border: 1px solid color-mix(in srgb, #ff4d6d 45%, transparent); color: #ff9fb1; border-radius: 10px; padding: 10px 12px; font-size: 13px; margin-bottom: 12px; }
.co-pay { height: 52px !important; font-size: 15px !important; }
.co-pay .sep { opacity: .5; }
.bumps { display: flex; flex-direction: column; gap: 8px; border: 1px solid var(--line); border-radius: 12px; padding: 8px; background: rgba(255,255,255,.02); }
.bump { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; padding: 6px; border-radius: 10px; }
.bump:hover { background: var(--panel-2); }
.bump .thumb { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; display: block; }
.bump .thumb .art-title, .bump .thumb .art-mark { display: none; }
.bump .thumb .art { padding: 0; }
.bump .thumb .art-emoji { font-size: 20px; }
.bump-info { min-width: 0; }
.bump-info .name { font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bump-info .bp { color: var(--primary); font-size: 13px; }
.btn-primary.sm { height: 34px; font-size: 12.5px; padding: 0 12px; gap: 4px; white-space: nowrap; }
.btn-primary.sm svg { width: 14px; height: 14px; }
.coupon { display: flex; gap: 8px; margin-top: 18px; }
.coupon input { flex: 1; min-width: 0; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel-2); padding: 0 12px; outline: 0; font-size: 13.5px; text-transform: uppercase; }
.coupon input:focus { border-color: var(--primary); }
.coupon-msg { font-size: 12.5px; color: var(--green); min-height: 18px; margin-top: 6px; }
.co-trust { display: flex; justify-content: center; gap: 18px; margin-top: 18px; font-size: 12px; color: var(--muted); }
.co-trust span { display: flex; align-items: center; gap: 5px; }
.co-trust svg { width: 13px; height: 13px; color: var(--green); }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; display: inline-block; animation: spin .8s linear infinite; }
.spinner.big { width: 36px; height: 36px; border-width: 3px; margin: 60px auto; border-top-color: var(--primary); }
@keyframes spin { to { transform: rotate(360deg); } }
.waiting { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13.5px; color: #ffd48a; background: color-mix(in srgb, #ffb020 10%, transparent); border: 1px solid color-mix(in srgb, #ffb020 35%, transparent); border-radius: 10px; padding: 10px; }
.waiting .spinner { border-color: rgba(255,212,138,.3); border-top-color: #ffd48a; }
.qr img { width: 100%; height: 100%; object-fit: contain; }
.ok-badge { width: 72px; height: 72px; border-radius: 50%; margin: 6px auto 14px; display: grid; place-items: center; font-size: 34px; font-weight: 900; color: #060a12; background: var(--green); box-shadow: 0 0 40px color-mix(in srgb, var(--green) 45%, transparent); }
.ok-badge.bad { background: #ff6b8a; box-shadow: 0 0 40px rgba(255,107,138,.4); }
@media (max-width: 720px) { .co-grid { grid-template-columns: 1fr; } .co-trust { gap: 12px; } }

/* ================= CAPAS DOS PRODUTOS ================= */
.p-img { width: 100%; height: 100%; object-fit: cover; }
.art.cover { justify-content: flex-start; gap: 0; padding: 9% 7% 7%; background:
  radial-gradient(120% 80% at 50% 100%, rgba(0,0,0,.35), transparent 60%),
  linear-gradient(160deg, var(--a1), var(--a2)); container-type: inline-size; }
.cv-swirl { position: absolute; inset: -30%; background:
  conic-gradient(from 200deg at 50% 60%, transparent 0 20%, rgba(255,255,255,.14) 25%, transparent 32% 55%, rgba(255,255,255,.10) 60%, transparent 68%),
  repeating-radial-gradient(circle at 30% 120%, transparent 0 18px, rgba(255,255,255,.05) 18px 36px);
  animation: swirl 18s linear infinite; }
@keyframes swirl { to { transform: rotate(360deg); } }
.cv-title { position: relative; z-index: 2; text-align: center; line-height: .92; text-transform: uppercase; width: 100%; }
.cv-title span { display: block; font-weight: 900; color: #fff; font-size: 9.5cqi; letter-spacing: -.01em;
  -webkit-text-stroke: .5cqi #041226; paint-order: stroke fill; text-shadow: 0 1cqi 0 #041226; }
.cv-title strong { display: block; font-weight: 900; font-size: 15cqi; letter-spacing: -.02em; margin-top: 1cqi;
  background: linear-gradient(180deg, #fff 10%, #c6ecff 45%, #2aa8ff 90%); -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: .6cqi #041226; paint-order: stroke fill; filter: drop-shadow(0 1.2cqi 0 #041226) drop-shadow(0 0 3cqi rgba(90,200,255,.35));
  overflow-wrap: normal; }
.cv-icon { position: relative; z-index: 1; margin-top: auto; margin-bottom: 9cqi; display: grid; place-items: center; }
.cv-icon i { position: absolute; width: 58cqi; height: 58cqi; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.55), rgba(90,200,255,.18) 45%, transparent 70%); animation: glow 3s ease-in-out infinite; }
.cv-icon b { position: relative; font-size: 30cqi; line-height: 1; filter: drop-shadow(0 2cqi 2cqi rgba(0,0,0,.45)); animation: bob 3.2s ease-in-out infinite; }
@keyframes glow { 50% { transform: scale(1.12); opacity: .75; } }
@keyframes bob { 50% { transform: translateY(-3cqi) rotate(-4deg); } }
.cv-badges { position: absolute; left: 5cqi; top: 50%; z-index: 3; display: flex; flex-direction: column; gap: 1.6cqi; }
.cv-badges span { font-size: 4.2cqi; font-weight: 900; color: #fff; text-transform: uppercase; background: rgba(4,12,26,.72); border: .35cqi solid rgba(255,255,255,.25); padding: 1cqi 2.2cqi; border-radius: 1.6cqi; letter-spacing: .02em; white-space: nowrap; }
.cv-badges span:nth-child(2) { color: #ffd84d; }
.cv-logo { position: absolute; bottom: 4cqi; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 1.5cqi; font-size: 4cqi; font-weight: 900; letter-spacing: .12em; color: rgba(255,255,255,.9); text-shadow: 0 .4cqi 0 rgba(0,0,0,.4); }
.cv-logo em { font-style: normal; width: 7cqi; height: 7cqi; display: grid; place-items: center; font-size: 4.2cqi; background: #041226; color: #fff; clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%); }
.sr-thumb .cv-title, .sr-thumb .cv-badges, .sr-thumb .cv-logo, .ci .thumb .cv-title, .ci .thumb .cv-badges, .ci .thumb .cv-logo,
.bump .thumb .cv-title, .bump .thumb .cv-badges, .bump .thumb .cv-logo, .sp-thumb .cv-title, .sp-thumb .cv-badges, .sp-thumb .cv-logo { display: none; }
.sr-thumb .cv-icon, .ci .thumb .cv-icon, .bump .thumb .cv-icon, .sp-thumb .cv-icon { margin: auto; }
.sr-thumb .art.cover, .ci .thumb .art.cover, .bump .thumb .art.cover, .sp-thumb .art.cover { padding: 0; justify-content: center; }
.sr-thumb .cv-icon b, .ci .thumb .cv-icon b, .bump .thumb .cv-icon b, .sp-thumb .cv-icon b { font-size: 55cqi; }

/* ================= ANIMAÇÕES ================= */
.fx-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .55; }
.fx-canvas { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 200; pointer-events: none; }
.page-in { animation: pageIn .45s cubic-bezier(.2,.8,.2,1); }
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } }

/* cards: brilho seguindo o mouse + inclinação (fx.js) */
.card { position: relative; transform-style: preserve-3d; will-change: transform; transition: transform .25s ease, border-color .2s, box-shadow .25s; }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .25s;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.14), transparent 40%); }
.card:hover::after, .card.tilting::after { opacity: 1; }
.card.tilting { transition: transform .08s linear, border-color .2s, box-shadow .25s; box-shadow: 0 22px 44px rgba(0,0,0,.5), 0 0 0 1px color-mix(in srgb, var(--primary) 60%, transparent), 0 0 30px color-mix(in srgb, var(--primary) 25%, transparent); }
.card .card-img { overflow: hidden; }
.card:hover .card-img > * { transform: scale(1.06); }
.card .card-img > * { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.cat-tile .ct-icon { transition: transform .35s cubic-bezier(.3,1.6,.5,1); }
.cat-tile:hover .ct-icon { transform: translate(-50%, -70%) scale(1.15) rotate(-6deg); }

/* botões: faixa de brilho + ondinha */
.btn-primary, .btn-ghost, .btn-white, .cart-btn { position: relative; overflow: hidden; }
.btn-primary::before { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); pointer-events: none; }
.btn-primary:hover::before, .card:hover .btn-primary::before { animation: shine .8s ease; }
@keyframes shine { to { left: 130%; } }
.ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.35); transform: scale(0); animation: ripple .6s ease-out; pointer-events: none; }
@keyframes ripple { to { transform: scale(1); opacity: 0; } }
#buyNow:not([disabled]), .co-pay { animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow { 50% { box-shadow: 0 6px 34px color-mix(in srgb, var(--primary) 65%, transparent), 0 0 0 4px color-mix(in srgb, var(--primary) 18%, transparent); } }

/* carrinho */
.fly-ghost { position: fixed !important; z-index: 150; pointer-events: none; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.cart-btn.bump { animation: cartBump .5s cubic-bezier(.3,1.8,.5,1); }
@keyframes cartBump { 30% { transform: scale(1.3) rotate(-10deg); } 60% { transform: scale(.92) rotate(6deg); } }
.cart-count { animation: popIn .35s cubic-bezier(.3,1.8,.5,1); }
.pop { animation: popIn .35s cubic-bezier(.3,1.8,.5,1); }
@keyframes popIn { 0% { transform: scale(.6); } 60% { transform: scale(1.15); } }
.shake { animation: shake .4s; }
@keyframes shake { 20%, 60% { transform: translateX(-6px); } 40%, 80% { transform: translateX(6px); } }
.toast.show { animation: toastIn .35s cubic-bezier(.3,1.5,.5,1); }
@keyframes toastIn { from { transform: translate(-50%, 30px) scale(.9); opacity: 0; } }
.drawer, .side-menu { transition: transform .38s cubic-bezier(.2,.9,.2,1); }
.drawer.open .ci { animation: slideIn .35s both; }
.drawer.open .ci:nth-child(2) { animation-delay: .05s; } .drawer.open .ci:nth-child(3) { animation-delay: .1s; } .drawer.open .ci:nth-child(4) { animation-delay: .15s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } }
.overlay { animation: fadeIn .25s; }
@keyframes fadeIn { from { opacity: 0; } }

/* hero */
.hero-gen h1 { background: linear-gradient(100deg, #fff 30%, #d6f3ff 45%, #fff 60%); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 4s linear infinite; filter: drop-shadow(0 6px 0 rgba(0,0,0,.25)); text-shadow: none; }
@keyframes shimmer { from { background-position: 150% 0; } to { background-position: -100% 0; } }
.hero-coins span { animation: float 5s ease-in-out infinite; }
.hero-coins span:nth-child(2n) { animation-duration: 6.5s; animation-delay: -2s; }
.hero-coins span:nth-child(3n) { animation-duration: 4.2s; animation-delay: -1s; }
@keyframes float { 50% { transform: translateY(-16px) rotate(8deg); } }
.logo-ring { animation: ringSpin 6s ease-in-out infinite; }
@keyframes ringSpin { 50% { transform: rotate(-4deg) scaleX(1.06); } }
.logo-img { height: 48px; width: auto; }
.float-social a { animation: bob2 3s ease-in-out infinite; }
.float-social a:nth-child(2) { animation-delay: -1.5s; }
@keyframes bob2 { 50% { transform: translateY(-4px); } }
.sub-heading h3 { position: relative; overflow: hidden; }
.sub-heading h3::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.18), transparent 70%); transform: translateX(-100%); animation: sweep 5s ease-in-out infinite; }
@keyframes sweep { 60%, 100% { transform: translateX(100%); } }
.ok-badge { animation: popIn .6s cubic-bezier(.3,1.8,.5,1); }

/* faixa de aviso no topo */
.announce { background: linear-gradient(90deg, var(--primary-2), var(--primary)); overflow: hidden; white-space: nowrap; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; }
.announce-track { display: inline-flex; animation: marquee 22s linear infinite; }
.announce-track span { padding: 8px 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* notificação de compra real */
.sale-pop { position: fixed; left: 16px; bottom: 18px; z-index: 55; display: flex; gap: 12px; align-items: center; max-width: 330px; padding: 10px 14px 10px 10px; border-radius: 14px;
  background: rgba(13,20,32,.95); border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent); box-shadow: 0 14px 40px rgba(0,0,0,.5); font-size: 12.5px; line-height: 1.35;
  animation: saleIn .5s cubic-bezier(.3,1.4,.5,1); }
.sale-pop.out { animation: saleOut .5s forwards; }
@keyframes saleIn { from { transform: translateX(-120%); } }
@keyframes saleOut { to { transform: translateX(-120%); opacity: 0; } }
.sale-pop em { font-style: normal; color: var(--primary); font-weight: 600; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.sale-pop small { display: block; color: var(--green); font-size: 11px; margin-top: 2px; }
.sp-thumb { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sound-btn { color: var(--muted); }
.sound-btn:hover { color: var(--text); }
.delivery-box { background: color-mix(in srgb, var(--green) 8%, transparent); border: 1px solid color-mix(in srgb, var(--green) 35%, transparent); border-radius: 12px; padding: 14px; margin-bottom: 14px; text-align: left; }
.delivery-box pre { white-space: pre-wrap; font-family: ui-monospace, monospace; font-size: 13px; background: rgba(0,0,0,.3); padding: 12px; border-radius: 8px; color: #e8ffef; }

@media (max-width: 720px) { .sale-pop { right: 76px; max-width: none; bottom: 12px; left: 12px; } .sound-btn { display: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* banner em imagem: mostra inteiro, na proporção original */
.hero:has(> img) { aspect-ratio: auto; }
.hero > img { height: auto; display: block; }

/* desempenho: animações das capas só rodam no card em foco e na página do produto */
.cv-swirl, .cv-icon i, .cv-icon b { animation-play-state: paused; will-change: auto; }
.card:hover .cv-swirl, .card:hover .cv-icon i, .card:hover .cv-icon b,
.art.cover.big .cv-swirl, .art.cover.big .cv-icon i, .art.cover.big .cv-icon b { animation-play-state: running; }
.card { will-change: auto; }
.card.tilting { will-change: transform; }
.card-img { contain: paint; }

/* logo enviada pelo admin */
.logo-img { height: 46px; width: auto; max-width: 180px; object-fit: contain; filter: drop-shadow(0 4px 14px color-mix(in srgb, var(--primary) 45%, transparent)); }
.logo.small .logo-img { height: 36px; }
.logo:has(.logo-img) .logo-text { display: none; }
.cv-logo img { height: 7cqi; width: auto; max-width: 40cqi; object-fit: contain; filter: drop-shadow(0 .4cqi .6cqi rgba(0,0,0,.5)); }
.cat-tile:has(img) .ct-name { text-shadow: 0 3px 8px rgba(0,0,0,.8); }

/* vendas e notas reais acima do preço */
.proof { display: flex; flex-wrap: wrap; gap: 6px; min-height: 0; }
.proof:empty { display: none; }
.proof span { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 6px; }
.pf-sold { color: #ffb347; background: rgba(255,160,50,.1); border: 1px solid rgba(255,160,50,.3); }
.pf-rate { color: #ffc83d; background: rgba(255,200,61,.08); border: 1px solid rgba(255,200,61,.28); }
.pf-rate small { color: var(--muted); font-weight: 600; }
.proof.big { margin-bottom: 12px; }
.proof.big span { font-size: 13px; padding: 4px 10px; }
.rate-box { margin-top: 18px; text-align: left; border-top: 1px solid var(--line); padding-top: 16px; }
.rate-box textarea { width: 100%; border-radius: 10px; border: 1px solid var(--line); background: var(--panel-2); padding: 10px 12px; font-size: 13.5px; resize: vertical; outline: 0; margin-top: 8px; }
.rate-box textarea:focus { border-color: var(--primary); }
.stars-input { display: flex; gap: 4px; }
.stars-input button { font-size: 30px; line-height: 1; color: #3a4658; transition: transform .15s, color .15s; }
.stars-input button.on { color: #ffc83d; text-shadow: 0 0 12px rgba(255,200,61,.5); }
.stars-input button:hover { transform: scale(1.2); }

.activity-pop .ap-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; font-size: 26px; background: linear-gradient(145deg, rgba(255,140,40,.25), rgba(255,80,40,.08)); border: 1px solid rgba(255,150,60,.35); animation: glow 1.6s ease-in-out infinite; }
.activity-pop em { color: #ffb347 !important; }

/* avaliações na página do produto */
.reviews-block { margin-top: 56px; }
.rv-summary { display: flex; gap: 28px; align-items: center; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 16px; flex-wrap: wrap; }
.rv-avg { text-align: center; min-width: 120px; }
.rv-avg b { font-size: 42px; font-weight: 900; line-height: 1; }
.rv-avg .stars { font-size: 18px; margin: 4px 0; }
.rv-avg small { color: var(--muted); font-size: 12px; }
.rv-dist { flex: 1; min-width: 220px; display: flex; flex-direction: column; gap: 5px; }
.rv-dist div { display: grid; grid-template-columns: 30px 1fr 30px; gap: 8px; align-items: center; font-size: 12px; color: var(--muted); }
.rv-dist i { height: 8px; border-radius: 8px; background: var(--panel-2); overflow: hidden; }
.rv-dist em { display: block; height: 100%; background: linear-gradient(90deg, #ffb020, #ffc83d); border-radius: 8px; }
.rv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }

/* tela de agradecimento pós-compra */
.thanks { text-align: center; }
.thanks h1 { font-size: 26px; margin: 6px 0 8px; }
.thanks-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.thanks-sub .order-code { font-size: 14px; }
.mail-card { display: flex; gap: 14px; align-items: flex-start; text-align: left; padding: 16px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 18%, transparent), color-mix(in srgb, var(--primary) 4%, transparent));
  border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent); animation: popIn .5s cubic-bezier(.3,1.5,.5,1) .2s both; }
.mail-icon { font-size: 30px; line-height: 1; animation: bob 2.6s ease-in-out infinite; }
.mail-card b { font-size: 15.5px; }
.mail-card p { font-size: 14px; margin: 4px 0 6px; color: #d6e4f5; line-height: 1.5; }
.mail-card small { font-size: 12px; color: var(--muted); }
.thanks-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.thanks-steps div { font-size: 11.5px; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 10px 4px; border-radius: 10px; background: var(--panel-2); border: 1px solid var(--line); }
.thanks-steps span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 12px; background: var(--green); color: #04120a; }
.thanks-steps div.now { color: var(--text); border-color: var(--primary); }
.thanks-steps div.now span { background: var(--primary); color: #fff; animation: glow 1.6s ease-in-out infinite; }
.thanks-steps div.now ~ div span { background: var(--line); color: var(--muted); }

/* ---------- chat de suporte (assistente virtual) ---------- */
.chat-fab { position: fixed; right: 16px; bottom: 150px; z-index: 56; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-2)); box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 50%, transparent); transition: transform .2s; }
.chat-fab:hover { transform: scale(1.08); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab.open { transform: rotate(-8deg) scale(.95); }
.chat-dot { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%; background: #ff4d6d; border: 2px solid var(--bg); animation: glow 1.4s infinite; }
.chat-panel { position: fixed; right: 16px; bottom: 220px; z-index: 57; width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 250px)); display: flex; flex-direction: column;
  background: #0b1220; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,.6); overflow: hidden; animation: chatIn .3s cubic-bezier(.3,1.4,.5,1); }
@keyframes chatIn { from { opacity: 0; transform: translateY(20px) scale(.96); } }
.chat-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 30%, #0b1220), #0b1220); border-bottom: 1px solid var(--line); }
.chat-head .icon-btn { margin-left: auto; }
.chat-av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; background: color-mix(in srgb, var(--primary) 25%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 50%, transparent); }
.chat-head b { display: block; font-size: 14.5px; }
.chat-head small { font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.chat-head .on { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chat-body { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.msg { display: flex; gap: 8px; align-items: flex-end; max-width: 88%; animation: slideIn .25s both; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.m-av { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; background: var(--panel-2); flex-shrink: 0; }
.m-b { padding: 9px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; background: var(--panel-2); border: 1px solid var(--line); word-break: break-word; }
.msg.user .m-b { background: linear-gradient(145deg, var(--primary), var(--primary-2)); border-color: transparent; color: #fff; border-bottom-right-radius: 4px; }
.msg.assistant .m-b { border-bottom-left-radius: 4px; }
.m-b a { color: #7cc4ff; text-decoration: underline; }
.m-ck { display: block; text-align: right; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; letter-spacing: -1px; line-height: 1; }
.m-ck.read { color: #53bdeb; }
.typing .m-b { display: flex; gap: 4px; padding: 12px 14px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: tdot 1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes tdot { 30% { transform: translateY(-4px); opacity: 1; } 0%, 60%, 100% { opacity: .4; } }
.chat-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 14px 10px; }
.chat-quick button { font-size: 12px; padding: 6px 10px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent); background: color-mix(in srgb, var(--primary) 10%, transparent); color: #cfe6ff; }
.chat-quick button:hover { background: color-mix(in srgb, var(--primary) 25%, transparent); }
.chat-form { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line); }
.chat-form input { flex: 1; min-width: 0; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: var(--panel-2); padding: 0 12px; outline: 0; font-size: 14px; }
.chat-form input:focus { border-color: var(--primary); }
.chat-form .btn-primary { width: 42px; height: 42px; padding: 0; border-radius: 12px; }
.chat-note { font-size: 10.5px; color: var(--muted); text-align: center; padding: 0 10px 8px; }
.chat-note a { color: #7cc4ff; }
@media (max-width: 720px) {
  .chat-fab { bottom: 128px; width: 50px; height: 50px; }
  .chat-panel { right: 8px; left: 8px; width: auto; bottom: 8px; height: calc(100vh - 90px); }
}

/* ---------- atendimento por tickets ---------- */
.chat-fab { bottom: 18px !important; width: auto !important; padding: 0 18px 0 14px; gap: 8px; border-radius: 999px !important; display: flex !important; align-items: center; height: 54px !important; }
.chat-label { font-weight: 700; font-size: 14px; }
.chat-badge { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px; background: #ff4d6d; color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; border: 2px solid var(--bg); }
.chat-panel { bottom: 84px !important; height: min(580px, calc(100vh - 110px)) !important; }
.chat-av { font-weight: 800; font-size: 14px !important; }
.chat-head .on.wait { background: #ffc83d; animation: glow 1.2s infinite; }
.m-av.person { background: linear-gradient(145deg, var(--primary), var(--primary-2)); color: #fff; font-size: 10.5px; font-weight: 800; }
.m-who { display: block; font-size: 10.5px; color: var(--muted); margin: 0 0 3px 2px; }
.msg-sys { align-self: center; font-size: 11.5px; color: var(--muted); background: var(--panel-2); border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px; text-align: center; }
.msg-sys.wait { color: #ffd48a; border-color: rgba(255,200,61,.35); }
.chat-start { margin: auto 0; text-align: center; padding: 10px 6px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.cs-icon { font-size: 40px; }
.chat-start p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.chat-foot { display: flex; justify-content: space-between; align-items: center; padding: 0 12px 8px; font-size: 10.5px; color: var(--muted); }
.chat-foot button { font-size: 11px; color: #7cc4ff; text-decoration: underline; }
@media (max-width: 720px) { .chat-fab { bottom: 12px !important; height: 48px !important; } .chat-panel { bottom: 8px !important; height: calc(100vh - 80px) !important; } }

/* pedido mínimo + caixa surpresa */
.min-box { margin-top: 16px; padding: 12px; border-radius: 12px; background: rgba(255,176,32,.07); border: 1px solid rgba(255,176,32,.35); display: flex; flex-direction: column; gap: 10px; }
.min-head { font-size: 13px; color: #ffd48a; }
.min-bar { height: 7px; border-radius: 7px; background: var(--panel-2); overflow: hidden; }
.min-bar i { display: block; height: 100%; background: linear-gradient(90deg, #ffb020, #ffd84d); border-radius: 7px; transition: width .4s; }
.surprise-offer, .surprise-line { display: grid; grid-template-columns: 40px 1fr auto; gap: 10px; align-items: center; padding: 10px; border-radius: 12px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 22%, transparent), color-mix(in srgb, var(--primary) 6%, transparent)); border: 1px dashed color-mix(in srgb, var(--primary) 60%, transparent); }
.surprise-line { margin-top: 12px; grid-template-columns: 40px 1fr auto auto; border-style: solid; animation: popIn .4s cubic-bezier(.3,1.5,.5,1); }
.surprise-offer small, .surprise-line small { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.sb-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 22px; background: rgba(255,255,255,.06); animation: bob 2.4s ease-in-out infinite; }
.surprise-line .rm { font-size: 11.5px; color: var(--muted); text-decoration: underline; }
.co-pay[disabled] { animation: none; }
.cart-min { font-size: 12.5px; color: #ffd48a; background: rgba(255,176,32,.07); border: 1px solid rgba(255,176,32,.3); border-radius: 10px; padding: 8px 10px; }
.cart-min small { color: var(--muted); }
