/* Combo /pack — extraído e adaptado do sistema Kaysto para a Pandora Store */
:root {
--pack-accent: #c084fc;
--pack-accent-strong: #e9d5ff;
--pack-ink: #0a0f18;
--pack-radius: 1.15rem;
}

.pack-band {
display: flex;
flex-direction: column;
gap: 0.85rem;
}
.pack-hero {
position: relative;
display: grid;
overflow: hidden;
padding: clamp(1.1rem, 2.4vw, 1.85rem);
border-radius: var(--pack-radius);
background: #0b0d13;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
text-decoration: none;
color: inherit;
}
.pack-hero-slides {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden;
}
.pack-hero-slides::after {
content: '';
position: absolute;
inset: 0;
background:
linear-gradient(90deg, rgba(6, 7, 11, 0.82) 0%, rgba(6, 7, 11, 0.62) 42%, rgba(6, 7, 11, 0.3) 75%, rgba(6, 7, 11, 0.42) 100%),
linear-gradient(0deg, rgba(6, 7, 11, 0.35) 0%, transparent 45%),
rgba(6, 7, 11, 0.18);
}
.pack-hero-bg {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transition: opacity 1.4s ease;
}
.pack-hero-bg--active { opacity: 1; }
.pack-hero__content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0.45rem;
max-width: 34rem;
}
.pack-hero__badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.28rem 0.7rem;
border-radius: 999px;
border: 1px solid rgba(168, 85, 247, 0.4);
background: rgba(168, 85, 247, 0.1);
color: var(--pack-accent-strong);
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.16em;
text-transform: uppercase;
}
.pack-hero__badge svg { width: 0.85rem; height: 0.85rem; }
.pack-hero__title {
margin: 0.1rem 0 0;
font-weight: 800;
line-height: 1.12;
letter-spacing: -0.01em;
font-size: clamp(1.3rem, 2.3vw, 1.85rem);
color: #fff;
}
.pack-hero__desc {
margin: 0;
max-width: 30rem;
font-size: 0.85rem;
line-height: 1.45;
color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 639px) {
.pack-hero__desc { display: none; }
}
.pack-hero__meter {
display: flex;
align-items: baseline;
flex-wrap: wrap;
gap: 0.5rem 0.8rem;
margin-top: 0.1rem;
}
.pack-hero__meter-price {
font-size: clamp(1.3rem, 2.6vw, 1.7rem);
font-weight: 800;
color: #fff;
line-height: 1;
}
.pack-hero__meter-price .pack-hero__price { color: var(--pack-accent); }
.pack-hero__meter-note {
font-size: 0.78rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.5);
}
.pack-hero__cta {
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 0.3rem;
padding: 0.62rem 1.3rem;
border-radius: 0.85rem;
background: var(--pack-accent);
color: var(--pack-ink);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
transition: filter 0.24s ease;
}
.pack-hero__cta svg { width: 1.05rem; height: 1.05rem; }
@media (hover: hover) { .pack-hero__cta:hover { filter: brightness(1.05); } }
.pack-hero__trust {
display: flex;
flex-wrap: wrap;
gap: 0.4rem 1.2rem;
margin-top: 0.35rem;
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.5);
}
.pack-hero__trust span { display: inline-flex; align-items: center; gap: 0.35rem; }
@media (max-width: 639px) {
.pack-hero__trust {
flex-wrap: nowrap;
gap: 0.6rem;
font-size: 0.62rem;
}
.pack-hero__trust span { gap: 0.22rem; white-space: nowrap; }
.pack-hero__trust svg { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }
}
.pack-hero__trust strong { color: #fff; font-weight: 700; }
.pack-hero__trust svg { width: 0.9rem; height: 0.9rem; }
.pack-hero__trust .i-star { color: #facc15; }
.pack-hero__trust .i-zap { color: var(--pack-accent); }
.pack-hero__trust .i-shield { color: #34d399; }

.pack-quick {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.7rem;
}
.pack-quick__btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
min-height: 2.6rem;
padding: 0.5rem 0.8rem;
border-radius: 0.7rem;
border: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.035);
color: #fff;
font-size: 0.78rem;
font-weight: 600;
text-decoration: none;
text-align: center;
transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.pack-quick__btn-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.55rem;
height: 1.55rem;
border-radius: 0.4rem;
background: rgba(255, 255, 255, 0.14);
border: 1px solid rgba(255, 255, 255, 0.22);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
color: inherit;
flex-shrink: 0;
}
.pack-quick__btn-icon svg { width: 0.9rem; height: 0.9rem; color: inherit; }
@media (hover: hover) {
.pack-quick__btn:hover { transform: scale(1.045); }
.pack-quick__btn:active { transform: scale(0.95); }
}
.pack-quick__btn--pontos {
border-color: #4ade80;
background: linear-gradient(135deg, #bbf7d0 0%, #34d399 100%);
color: #052e12;
}
.pack-quick__btn--pontos .pack-quick__btn-icon {
background: rgba(5, 46, 18, 0.16);
border-color: rgba(5, 46, 18, 0.24);
}
.pack-quick__btn--white {
border-color: #cfd3da;
background: linear-gradient(135deg, #ffffff 0%, #e4e5e9 55%, #b9bcc4 100%);
color: #0b0d12;
}
.pack-quick__btn--white .pack-quick__btn-icon {
background: rgba(10, 15, 24, 0.08);
border-color: rgba(10, 15, 24, 0.14);
}
.pack-quick__btn--solicite {
border-color: hsl(var(--primary));
background: linear-gradient(135deg, #bcdcff 0%, hsl(var(--primary)) 100%);
color: #05131f;
}
.pack-quick__btn--solicite .pack-quick__btn-icon {
background: rgba(5, 19, 31, 0.14);
border-color: rgba(5, 19, 31, 0.22);
}
@media (max-width: 560px) {
.pack-quick { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; }
.pack-quick__btn {
min-height: 1.9rem;
padding: 0.38rem 0.6rem;
gap: 0.35rem;
font-size: 0.68rem;
}
.pack-quick__btn-icon { width: 1.3rem; height: 1.3rem; }
.pack-quick__btn-icon svg { width: 0.75rem; height: 0.75rem; }
.pack-quick__btn--solicite { grid-column: 1 / -1; }
}

.combo-checkout-flag {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.6rem 0.8rem;
border-radius: 0.7rem;
border: 1px solid rgba(251, 141, 43, 0.35);
background: rgba(251, 141, 43, 0.1);
color: #fb8d2b;
font-size: 0.82rem;
font-weight: 600;
min-height: 2.5rem;
}
.combo-checkout-flag svg { width: 1rem; height: 1rem; }
.combo-checkout-flag[data-state="error"] {
border-color: rgba(248, 113, 113, 0.4);
background: rgba(248, 113, 113, 0.08);
color: #fca5a5;
}

.combo-checkout-flag[data-state="warn"] {
border-color: rgba(251, 146, 60, 0.45);
background: rgba(251, 146, 60, 0.1);
color: #fdba74;
}
.combo-checkout-flag[data-state="ok"] {
border-color: rgba(74, 222, 128, 0.4);
background: rgba(74, 222, 128, 0.1);
color: #4ade80;
}

.pack-band--hero { margin-top: 0.25rem; }
.pack-band--hero .pack-hero {
min-height: 0;
padding: clamp(1.3rem, 2.8vw, 2.1rem);
border-radius: 1.4rem;
}
.pack-band--hero .pack-hero__title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.pack-band--hero .pack-hero__desc { font-size: 0.88rem; max-width: 30rem; }
@media (max-width: 860px) {
.pack-band--hero .pack-hero { min-height: 0; }
}

.pk-sim { display: none; }
@media (min-width: 1000px) {
.pack-band--hero .pack-hero { grid-template-columns: minmax(0, 1fr) 344px; align-items: center; column-gap: 1.7rem; }
.pk-sim { display: block; position: relative; z-index: 3; justify-self: end; width: 344px; }
}
.pk-sim__win { position: relative; border-radius: 16px; overflow: hidden; background: linear-gradient(180deg, #12141a 0%, #0a0b0f 100%); border: 1px solid rgba(255,255,255,.09); box-shadow: 0 34px 80px -30px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.05); font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
.pk-sim__view { position: relative; min-height: 404px; padding: 0; }
.pk-sim__steps { display: flex; gap: 5px; justify-content: center; padding: .55rem 0 .8rem; }
.pk-sim__steps span { width: 22px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.12); transition: background .3s ease; }
.pk-sim__steps span.is-active { background: linear-gradient(90deg, #c084fc, #a855f7); }
.pk-sim__cursor { position: absolute; top: 0; left: 0; width: 26px; height: 26px; z-index: 30; pointer-events: none; transform: translate(80px, 90px); transition: transform .62s cubic-bezier(.45,.5,.15,1); opacity: 0; }
.pk-sim__cursor.is-on { opacity: 1; }
.pk-sim__cursor-tip { display: block; width: 100%; height: 100%; transform-origin: top left; transition: transform .12s ease; filter: drop-shadow(0 2px 3px rgba(0,0,0,.6)); }
.pk-sim__cursor-tip svg { width: 100%; height: 100%; display: block; }
.pk-sim__cursor.is-click .pk-sim__cursor-tip { transform: scale(.78); }
.pk-sim__cursor.is-click::after { content: ''; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(168,85,247,.9); animation: pkSimRipple .42s ease-out; }
@keyframes pkSimRipple { from { transform: scale(.3); opacity: .9; } to { transform: scale(2.3); opacity: 0; } }
.pk-sim-scr { position: absolute; inset: 0; padding: .9rem; display: flex; flex-direction: column; opacity: 0; transform: translateY(8px); animation: pkSimIn .35s ease forwards; }
@keyframes pkSimIn { to { opacity: 1; transform: none; } }
.pk-sim-head { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.pk-sim-h-title { font-size: .92rem; font-weight: 800; color: #fff; }
.pk-sim-h-count { margin-left: auto; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6); }
.pk-sim-h-count b { color: #c084fc; }
.pk-sim-chip { margin-left: auto; font-size: .58rem; font-weight: 800; letter-spacing: .06em; padding: .2rem .5rem; border-radius: 999px; color: #c084fc; background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.28); }
.pk-sim-bar { height: 5px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: .7rem; }
.pk-sim-bar span { display: block; height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, #c084fc, #a855f7); transition: width .45s cubic-bezier(.25,1,.5,1); }
.pk-sim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.pk-sim-tile { position: relative; border: 0; padding: 0; background: transparent; text-align: left; border-radius: 8px; transition: transform .2s ease; }
.pk-sim-tile-cover { display: block; aspect-ratio: 3 / 3.5; background-size: cover, cover; background-position: center; border-radius: 8px; border: 1px solid rgba(255,255,255,.08); }
.pk-sim-tile-name { display: block; font-size: .57rem; font-weight: 700; color: rgba(255,255,255,.82); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pk-sim-tile-price { display: block; font-size: .56rem; font-weight: 700; color: #c084fc; }
.pk-sim-check { position: absolute; top: 4px; right: 4px; width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center; color: #04140a; background: #22c55e; transform: scale(0); transition: transform .22s cubic-bezier(.34,1.5,.6,1); }
.pk-sim-check svg { width: 12px; height: 12px; }
.pk-sim-tile.is-sel { transform: translateY(-2px); }
.pk-sim-tile.is-sel .pk-sim-tile-cover { box-shadow: 0 0 0 2px #22c55e, 0 0 14px rgba(34,197,94,.55); }
.pk-sim-tile.is-sel .pk-sim-check { transform: scale(1); }
.pk-sim-foot { margin-top: auto; padding-top: .6rem; display: flex; align-items: baseline; gap: .5rem; }
.pk-sim-price { font-size: .9rem; font-weight: 800; color: #34d399; }
.pk-sim-price s { font-size: .7rem; color: rgba(255,255,255,.4); font-weight: 600; }
.pk-sim-list { display: flex; flex-direction: column; gap: 6px; }
.pk-sim-li { display: flex; align-items: center; gap: 8px; padding: 5px; border-radius: 9px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.pk-sim-li-cover { width: 30px; height: 38px; border-radius: 5px; background-size: cover, cover; background-position: center; flex: none; border: 1px solid rgba(255,255,255,.08); }
.pk-sim-li-name { font-size: .72rem; font-weight: 700; color: #fff; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pk-sim-li-price { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.55); }
.pk-sim-sum { margin-top: .7rem; padding: .6rem .7rem; border-radius: 11px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); }
.pk-sim-sum .row { display: flex; justify-content: space-between; align-items: center; font-size: .74rem; color: rgba(255,255,255,.6); }
.pk-sim-sum .row s { color: rgba(255,255,255,.4); }
.pk-sim-sum .row.big { margin-top: .35rem; font-size: .95rem; color: #fff; font-weight: 800; }
.pk-sim-sum .row.big b { color: #34d399; }
.pk-sim-save { margin-top: .4rem; font-size: .66rem; font-weight: 700; color: #34d399; text-align: center; }
.pk-sim-cta { margin-top: auto; margin-bottom: .35rem; display: flex; align-items: center; justify-content: center; gap: .4rem; height: 2.5rem; border: 0; border-radius: 11px; font-size: .8rem; font-weight: 800; color: #04121f; background: linear-gradient(120deg, #c084fc, #a855f7); transition: transform .15s ease, filter .2s ease; }
.pk-sim-cta svg { width: 16px; height: 16px; }
.pk-sim-cta.is-press { transform: scale(.96); filter: brightness(1.08); }
.pk-sim-lbl { font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); margin: .55rem 0 .28rem; }
.pk-sim-field { display: flex; align-items: center; min-height: 2.15rem; padding: 0 .6rem; border-radius: 9px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: #fff; }
.pk-sim-field .caret { width: 1.5px; height: 15px; background: #c084fc; margin-left: 1px; opacity: 0; flex: none; }
.pk-sim-field.is-typing .caret { opacity: 1; animation: pkSimCaret .8s steps(1) infinite; }
@keyframes pkSimCaret { 50% { opacity: 0; } }
.pk-sim-cpn { display: flex; align-items: center; gap: .55rem; padding: .5rem .6rem; border-radius: 10px; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.28); opacity: 0; transform: translateY(4px); transition: opacity .35s ease, transform .35s ease; }
.pk-sim-cpn.is-on { opacity: 1; transform: none; }
.pk-sim-cpn-ico { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; color: #04140a; background: #22c55e; }
.pk-sim-cpn-ico svg { width: 13px; height: 13px; }
.pk-sim-cpn-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.pk-sim-cpn-txt b { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .8rem; font-weight: 700; letter-spacing: .08em; color: #dcffe8; }
.pk-sim-cpn-txt small { font-size: .55rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: rgba(52,211,153,.85); }
.pk-sim-cpn-off { flex: none; font-size: .78rem; font-weight: 800; color: #34d399; }
.pk-sim-scr[data-scr="done"] { align-items: center; text-align: center; justify-content: center; }
.pk-sim-done-ico { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #04140a; background: linear-gradient(120deg, #c084fc, #34d399); box-shadow: 0 0 0 6px rgba(52,211,153,.14); animation: pkSimPop .4s cubic-bezier(.34,1.5,.6,1); }
.pk-sim-done-ico svg { width: 26px; height: 26px; }
@keyframes pkSimPop { from { transform: scale(0); } }
.pk-sim-done-title { margin-top: .7rem; font-size: 1.05rem; font-weight: 800; color: #fff; }
.pk-sim-done-sub { font-size: .72rem; color: rgba(255,255,255,.55); margin-top: .15rem; }
.pk-sim-code { position: relative; width: 100%; margin-top: .9rem; padding: .8rem .85rem; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, rgba(168,85,247,.14), rgba(168,85,247,.05) 55%, rgba(10,15,24,.4)); border: 1px solid rgba(168,85,247,.28); }
.pk-sim-code-top { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: .55rem; }
.pk-sim-code-top > span:first-child { display: inline-flex; align-items: center; gap: .32rem; font-size: .56rem; font-weight: 800; letter-spacing: .14em; color: rgba(190,214,255,.72); }
.pk-sim-code-top > span:first-child::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #c084fc; }
.pk-sim-code-badge { font-size: .52rem; font-weight: 800; letter-spacing: .1em; padding: .16rem .44rem; border-radius: 6px; color: #cfe4ff; background: rgba(168,85,247,.16); border: 1px solid rgba(168,85,247,.34); }
.pk-sim-code-row { position: relative; display: flex; align-items: center; gap: 8px; }
.pk-sim-code-val { flex: 1; font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace; font-size: 1.12rem; font-weight: 700; letter-spacing: .16em; color: #dcebff; text-align: left; }
.pk-sim-copy { flex: none; display: inline-flex; align-items: center; gap: .35rem; padding: .48rem .74rem; border: 0; border-radius: 10px; background: linear-gradient(120deg, #c084fc, #a855f7); color: #04121f; font-size: .7rem; font-weight: 800; transition: transform .15s ease, filter .2s ease, background .2s ease; }
.pk-sim-copy svg { width: 13px; height: 13px; }
.pk-sim-copy.is-copied { background: linear-gradient(120deg, #a855f7, #7c3aed); filter: brightness(1.05); }
.pk-sim-copy.is-press { transform: scale(.94); }
.pk-sim-done-note { margin-top: .8rem; font-size: .61rem; color: rgba(255,255,255,.4); }
@media (prefers-reduced-motion: reduce) {
.pk-sim__cursor, .pk-sim-bar span, .pk-sim-check, .pk-sim-cta, .pk-sim-tile { transition: none !important; }
}
.pkg-card {
  display: flex;
  flex-direction: column;
  height: auto;
  align-self: stretch;
  border-radius: 0.58rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #161617;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform-origin: center center;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) {
  position: relative;
  display: block;
  aspect-ratio: 600 / 900;
  overflow: hidden;
  background: #000;
  border: none;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0),
    0 0 0 1.5px rgba(168, 85, 247, 0),
    0 0 22px rgba(168, 85, 247, 0);
}

@media (hover: hover) {
  :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover {
    z-index: 8;
    transform: translate3d(0, -3px, 0) scale3d(1.05, 1.05, 1);
    border: none;
    box-shadow:
      0 0 0 2.5px #c084fc,
      0 0 0 3.5px rgba(168, 85, 247, 0.35),
      0 0 14px rgba(168, 85, 247, 0.75),
      0 0 32px rgba(168, 85, 247, 0.4),
      0 10px 28px rgba(0, 0, 0, 0.55);
  }

  :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover .pk-product-cover > img {
    transform: none;
  }

  .pkg-carousel-outer .pkg-carousel-track > .reveal-fade-up:hover,
  .pkg-carousel-outer .pkg-carousel-track .pkg-card:hover,
  .sol-abast-carousel-outer .pkg-carousel-track .pkg-card:hover {
    z-index: 12;
  }

  .pkg-carousel-outer .pkg-carousel-track > .reveal-fade-up > :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover,
  .pkg-carousel-outer .pkg-carousel-track > :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover,
  .sol-abast-carousel-outer .pkg-carousel-track > .reveal-fade-up > :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover,
  .sol-abast-carousel-outer .pkg-carousel-track > :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover {
    transform: translate3d(0, -3px, 0);
    box-shadow:
      inset 0 0 0 2.5px #c084fc,
      inset 0 0 0 4px rgba(168, 85, 247, 0.38),
      inset 0 0 22px rgba(168, 85, 247, 0.58),
      inset 0 -10px 32px rgba(168, 85, 247, 0.32);
  }
}
@media (prefers-reduced-motion: reduce) {
  .pkg-card { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
  .pkg-card:hover { transform: none; }
  :is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card):hover .pk-product-cover > img { transform: none; }
}
.pkg-card-cover-link {
  display: block;
  flex: none;
  text-decoration: none;
  color: inherit;
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-cover-link {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.pkg-card--oos .pkg-card-cover-link,
.pkg-card--oos .pk-product-cover {
  position: relative;
}
.pkg-card .pk-product-cover {
  overflow: hidden;
  border: none;
  border-radius: 0.75rem 0.75rem 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pk-product-cover {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: unset;
  border-radius: 0.58rem;
  border: none;
  background: #000;
  overflow: hidden;
  position: relative;
}


.pk-product-cover__platform {
  position: absolute;
  top: 0;
  left: 0;
  width: 4.25rem;
  height: 4.25rem;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.92) 50%, transparent 50%);
}

.pk-product-cover__steam {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

.pkg-card .pk-product-cover > img {
  border-radius: inherit;
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pk-product-cover > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: none;
}
.pkg-card-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: auto;
  overflow: visible;
  padding: 0.65rem 0.75rem 0.7rem;
}

:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-info {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: 3;
  flex: none;
  min-height: 0;
  padding: 2.25rem 0.75rem calc(0.7rem + 2px);
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgb(0, 0, 0) 0%,
    rgb(0, 0, 0) 14%,
    rgba(0, 0, 0, 0.94) 26%,
    rgba(0, 0, 0, 0.82) 32%,
    rgba(0, 0, 0, 0.48) 62%,
    transparent 100%
  );
}


.sol-abast-card.pkg-card .pkg-card-info {
  left: -3px;
  right: -3px;
  bottom: -3px;
  max-width: none;
  width: auto;
}


:is(.pkg-card:not(.sol-abast-card):not(.pkg-card--oos), .sol-abast-card.pkg-card) .pkg-card-info::before {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  height: calc(0.58rem + 3px);
  z-index: -1;
  pointer-events: none;
  border-radius: 0 0 0.58rem 0.58rem;
  background: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-info > * {
  pointer-events: auto;
}

.pkg-card-key-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  margin: 0 0 0.45rem;
  padding: 0.22rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.65);
  background: rgba(168, 85, 247, 0.08);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c084fc;
  line-height: 1.2;
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.35),
    0 0 22px rgba(168, 85, 247, 0.16);
}

:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-key-badge {
  position: relative;
  z-index: 1;
  gap: 0.25rem;
  width: fit-content;
  margin: 0.2rem 0 0.35rem;
  padding: 3px 9px;
  font-size: 0.62rem;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.2;
  color: #c084fc;
  background: rgba(8, 28, 56, 0.75);
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 9999px;
  box-shadow: none;
  text-shadow: none;
  overflow: visible;
}
.pkg-card-key-icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  color: #c084fc;
  filter:
    drop-shadow(0 0 4px rgba(168, 85, 247, 0.65))
    drop-shadow(0 0 10px rgba(168, 85, 247, 0.35));
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-key-icon {
  position: relative;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  color: inherit;
  filter: none;
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-key-badge > span {
  position: relative;
  z-index: 1;
}
.pkg-card-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fafafa;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.9375rem * 1.25 * 2);
}
.pkg-card:not(.sol-abast-card) .pkg-card-title,
.pkg-card:not(.sol-abast-card) .pkg-card-price {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-title {
  min-height: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}
.pkg-card-compare-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin-top: 0.35rem;
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-compare-row {
  position: relative;
  z-index: 4;
}
.pkg-card-compare {
  font-size: 0.75rem;
  font-weight: 500;
  color: #a1a1aa;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.55);
  text-decoration-thickness: 1.5px;
}
.pkg-card:not(.sol-abast-card) .pkg-card-compare {
  color: #a1a1aa;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}
.pkg-card-off {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.08rem 0.32rem;
  border-radius: 9999px;
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.14);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #86efac;
  white-space: nowrap;
}

:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-off {
  position: relative;
  z-index: 5;
  isolation: isolate;
  padding: 2px 7px;
  font-size: 0.5rem;
  background: rgba(74, 222, 128, 0.16);
  border: 1px solid rgba(74, 222, 128, 0.5);
  color: #86efac;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card).pkg-card--oos .pkg-card-off {
  z-index: 6;
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.6);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 0 14px rgba(74, 222, 128, 0.16);
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-off--muted {
  opacity: 1;
}
.pkg-card-off--muted { opacity: 0.65; }
.pkg-card-off-icon {
  width: 0.62rem;
  height: 0.62rem;
  flex-shrink: 0;
}
:is(.pkg-card:not(.sol-abast-card), .sol-abast-card.pkg-card) .pkg-card-off-icon {
  width: 0.58rem;
  height: 0.58rem;
  color: #86efac;
}
.pkg-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.25rem;
  flex-shrink: 0;
}
.pkg-card-price-block {
  flex: 1;
  min-width: 0;
}
.pkg-card-price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.pkg-card-pix {
  margin: 0.12rem 0 0;
  font-size: 0.6875rem;
  color: #a1a1aa;
}
.pkg-card:not(.sol-abast-card) .pkg-card-pix {
  color: #d4d4d8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}
.pkg-card-pix--reserve {
  visibility: hidden;
  min-height: 0.95rem;
  pointer-events: none;
}
.pkg-card-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  min-height: 2.85rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--primary));
  background: hsl(var(--primary));
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 16px hsl(var(--primary) / 0.4);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}
@media (hover: hover) {
  .pkg-card-cart:hover {
    border-color: hsl(var(--primary));
    background: hsl(var(--primary));
    color: #0f172a;
    filter: brightness(1.08);
    box-shadow: 0 0 20px hsl(var(--primary) / 0.5);
  }
}
.pkg-card-cart:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.65);
  outline-offset: 2px;
}
.pkg-card--compact .pkg-card-info { padding: 0.5rem 0.6rem 0.55rem; }
.pkg-card--compact:not(.sol-abast-card) .pkg-card-info {
  padding: 1.75rem 0.6rem 0.55rem;
}
.pkg-card--compact:not(.sol-abast-card) .pkg-card-title {
  min-height: 0;
}
.pkg-card--compact .pkg-card-price { font-size: 1.25rem; }
.pkg-card-oos-label {
  position: absolute;
  top: 1.15rem;
  bottom: auto;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

.pkg-card--oos img,
.sol-abast-card.pkg-card--oos img {
  filter: none !important;
  opacity: 0.45 !important;
}



.home-category-view-more-wrap.pk-cat-more-wrap,
.home-category-view-more-wrap.pk-more {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.pk-cat-more-wrap:has(.home-category-view-more.is-visible),
.pk-more.is-visible {
  display: flex;
}
.home-category-view-more-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.35), transparent);
}
.home-category-view-more {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.08);
  color: #e9d5ff;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.home-category-view-more.is-visible { display: inline-flex; }
.home-category-view-more__badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #c084fc;
}
.home-category-view-more svg { width: 1rem; height: 1rem; }
.combo-checkout-flag { margin: 0.75rem 0 0; }
.combo-checkout-flag[hidden] { display: none !important; }
.pk-home-combo {
  display: grid;
  grid-template-columns: minmax(11rem, 18rem) minmax(0, 28rem);
  align-items: center;
  column-gap: clamp(1.25rem, 4vw, 3.5rem);
  row-gap: 1rem;
  max-width: 62%;
}
.pk-home-combo__left,
.pk-home-combo__mid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pk-home-combo__promo {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  color: #111;
}
.pk-home-combo__promo [data-i18n="combo.home_promo_kicker"] {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.pk-home-combo__promo [data-i18n="combo.home_promo_rest"] {
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
}
.pk-home-combo__cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.5rem;
  height: 2.65rem;
  padding: 0 1.35rem;
  border-radius: 0.7rem;
  background: #7c3aed;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.pk-home-combo__lead {
  margin: 0;
  font-size: clamp(1.35rem, 3.1vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #111;
}
.pk-home-combo__sub {
  margin: 0.55rem 0 0;
  max-width: 22rem;
  font-size: clamp(0.82rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  color: #1f1f1f;
}
@media (max-width: 767px) {
  .pk-home-combo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    gap: 0.7rem;
  }
  .pk-home-combo__promo [data-i18n="combo.home_promo_kicker"] { font-size: 2.1rem; }
  .pk-home-combo__promo [data-i18n="combo.home_promo_rest"] { font-size: 1.15rem; }
  .pk-home-combo__cta { height: 2.3rem; min-width: 7.4rem; font-size: 0.9rem; margin-top: 0.7rem; }
  .pk-home-combo__lead { font-size: 1.2rem; }
  .pk-home-combo__sub { font-size: 0.78rem; max-width: 18rem; }
}
.pk-home-pack {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.15rem 1rem 0.4rem;
}
.pk-home-pack .pack-hero__title {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 800;
}
.pk-home-pack .pack-hero__desc {
  display: block;
  max-width: 34rem;
  color: rgba(255,255,255,0.72);
}
.pk-home-pack .pack-hero__desc strong { color: #fff; }
.pk-home-pack .pack-hero__cta {
  background: #c4b5fd;
  color: #1e1033;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
}
.pk-home-pack .pack-hero__badge i,
.pk-home-pack .pack-hero__badge svg { width: 0.85rem; height: 0.85rem; }
.pk-home-pack .pack-hero__trust .i-star { color: #facc15; }
@media (max-width: 639px) {
  .pk-home-pack {
    padding: 0.65rem 0.85rem 0.2rem;
  }
  .pk-home-pack .pack-hero {
    min-height: 0;
    padding: 1.05rem 1rem 1.15rem;
    border-radius: 1.2rem;
  }
  .pk-home-pack .pack-hero__content {
    max-width: 100%;
    gap: 0.38rem;
  }
  .pk-home-pack .pack-hero__desc {
    display: none !important;
  }
  .pk-home-pack .pack-hero__title {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
  .pk-home-pack .pack-hero__meter {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.2rem 0.45rem;
    margin: 0;
  }
  .pk-home-pack .pack-hero__meter-price {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
  .pk-home-pack .pack-hero__meter-note {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
  }
  .pk-home-pack .pack-hero__cta {
    margin-top: 0.45rem;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    background: #c4b5fd;
    color: #1e1033;
  }
  .pk-home-pack .pack-hero__trust {
    margin-top: 0.28rem;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    font-size: 0.68rem;
  }
}
.pk-home-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background:
    linear-gradient(120deg, rgba(168, 85, 247, 0.16), rgba(34, 197, 94, 0.08) 55%, rgba(0,0,0,0.2));
  text-decoration: none;
  color: inherit;
}
.pk-home-banner:hover { border-color: rgba(192, 132, 252, 0.7); }
.pk-home-banner__kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c084fc;
}
.pk-home-banner__title {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.pk-home-banner__sub {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
}
.pk-home-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 0.8rem;
  background: #a855f7;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .pk-home-banner { flex-direction: column; align-items: stretch; }
  .pk-home-banner__cta { justify-content: center; }
}

.home-proofs {
  width: 100%;
  padding: 0.15rem 0 1.1rem;
}
.home-proofs__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.85rem;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
}
.home-proofs__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.home-proofs__viewport::-webkit-scrollbar {
  display: none;
}
.home-proofs__row {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  overflow: visible;
  padding-right: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.home-proofs__row.is-dragging {
  cursor: grabbing;
}
.home-proofs__note {
  margin: 0.7rem 0 0;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}
.home-proofs__note a {
  color: #818cf8;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.home-proofs__note a:hover { color: #c4b5fd; }
.home-proofs__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 0 0 19.5rem;
  width: 19.5rem;
  min-width: 19.5rem;
  max-width: 19.5rem;
  margin: 0;
  padding: 0.9rem 0.95rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.05rem;
  background: rgba(12, 12, 18, 0.72);
  box-shadow: none;
  overflow: hidden;
}
.home-proofs__card:hover {
  border-color: rgba(192, 132, 252, 0.45);
  transform: none;
}
.home-proofs__top {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.home-proofs__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.home-proofs__who {
  min-width: 0;
  flex: 1;
}
.home-proofs__name {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-proofs__stars {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.12rem;
  color: #facc15;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.home-proofs__avatar--s { background: #7c3aed; }
.home-proofs__avatar--l { background: #2563eb; }
.home-proofs__avatar--n { background: #a855f7; }
.home-proofs__avatar--op { background: #c026d3; }
.home-proofs__avatar--b { background: #0d9488; }
.home-proofs__avatar--lk { background: #ea580c; }
.home-proofs__avatar--r { background: #e11d48; }
.home-proofs__badge {
  flex-shrink: 0;
  margin-top: 0.12rem;
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  background: #4ade80;
  color: #052e16;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
}
.home-proofs__text {
  margin: 0;
  min-height: 2.7em;
  max-height: 2.7em;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-proofs__media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #0b0814;
  aspect-ratio: 16 / 9;
}
.home-proofs__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  filter: brightness(0.92) contrast(0.92) saturate(0.94);
  pointer-events: none;
  -webkit-user-drag: none;
}
.home-proofs__zoom {
  position: absolute;
  top: 0.42rem;
  right: 0.42rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.72);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
}
.home-proofs__zoom:hover {
  background: rgba(168, 85, 247, 0.92);
}
.home-proofs__zoom i,
.home-proofs__zoom svg {
  width: 0.92rem;
  height: 0.92rem;
}
.home-proofs__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.05rem;
}
.home-proofs__game {
  min-width: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-proofs__foot span:last-child {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
}
.home-proofs-lb {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 1.5rem;
  overflow: hidden;
}
.home-proofs-lb.is-open { display: grid; }
.home-proofs-lb__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: zoom-out;
}
.home-proofs-lb__box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 92vw;
  max-width: 36rem;
  max-height: 88vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.2rem 1.25rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.1rem;
  background: rgba(10, 10, 14, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.home-proofs-lb__name {
  margin: 0 2.2rem 0.45rem 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.home-proofs-lb__text {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  white-space: normal;
}
.home-proofs-lb__media {
  overflow: hidden;
  width: 100%;
  border-radius: 0.7rem;
  background: #111;
}
.home-proofs-lb__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 42vh;
  object-fit: contain;
  object-position: center;
}
.home-proofs-lb__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #111318;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.home-proofs-lb__close:hover { background: #a855f7; }
@media (max-width: 639px) {
  .home-proofs { padding: 0.1rem 0 0.7rem; }
  .home-proofs__viewport { padding: 0.7rem; }
  .home-proofs__card {
    flex-basis: min(78vw, 19.5rem);
    width: min(78vw, 19.5rem);
    min-width: min(78vw, 19.5rem);
    max-width: min(78vw, 19.5rem);
  }
}
