﻿/* Spotlight banner (do ZIP Kingdom Store) */
:root {
  --spotlight-autoplay-ms: 3000ms;
  --platform-steam-rgb: 69, 209, 255;
  --platform-steam-solid: #45d1ff;
  --platform-steam-deep: #12aed8;
  --platform-steam-border: rgba(var(--platform-steam-rgb), 0.36);
  --platform-steam-border-strong: rgba(var(--platform-steam-rgb), 0.78);
  --platform-steam-glow: rgba(var(--platform-steam-rgb), 0.28);
  --platform-steam-bg-soft: rgba(var(--platform-steam-rgb), 0.08);
  --platform-ps-rgb: 0, 112, 204;
  --platform-ps-solid: #0070cc;
  --platform-ps-deep: #004891;
  --platform-ps-border: rgba(var(--platform-ps-rgb), 0.38);
  --platform-ps-border-strong: rgba(var(--platform-ps-rgb), 0.8);
  --platform-ps-glow: rgba(var(--platform-ps-rgb), 0.26);
  --platform-ps-bg-soft: rgba(var(--platform-ps-rgb), 0.1);
  --platform-xbox-rgb: 96, 190, 96;
  --platform-xbox-solid: #60be60;
  --platform-xbox-deep: #107c10;
  --platform-xbox-border: rgba(var(--platform-xbox-rgb), 0.44);
  --platform-xbox-border-strong: rgba(var(--platform-xbox-rgb), 0.82);
  --platform-xbox-glow: rgba(var(--platform-xbox-rgb), 0.24);
  --platform-xbox-bg-soft: rgba(var(--platform-xbox-rgb), 0.1);
  --platform-accounts-rgb: 245, 184, 49;
  --platform-accounts-solid: #f5b831;
  --platform-accounts-deep: #c9921a;
  --platform-accounts-border: rgba(var(--platform-accounts-rgb), 0.42);
  --platform-accounts-border-strong: rgba(var(--platform-accounts-rgb), 0.82);
  --platform-accounts-glow: rgba(var(--platform-accounts-rgb), 0.28);
  --platform-accounts-bg-soft: rgba(var(--platform-accounts-rgb), 0.1);
}
.home-steam-spotlight {
  width: 100%;
  margin-top: 0.85rem;
  margin-bottom: 0.85rem;
}

.home-cat-spotlight.reveal-fade-up {
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .home-steam-spotlight {
    margin-top: 1.15rem;
    margin-bottom: 1.25rem;
  }
}

.home-steam-spotlight__shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(var(--platform-steam-rgb), 0.48);
  background: #070b12;
  box-shadow:
    0 0 0 1px rgba(var(--platform-steam-rgb), 0.1),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 56px rgba(var(--platform-steam-rgb), 0.12);
}

.home-steam-spotlight__stage {
  position: relative;
  min-height: clamp(20rem, 48vw, 30rem);
  isolation: isolate;
}

.home-steam-spotlight__hero {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050608;
}

.home-steam-spotlight__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 16% 36%;
  transform: scale(1.03);
  transition: opacity 0.35s ease, transform 0.6s ease;
}

@media (min-width: 768px) {
  .home-steam-spotlight__hero-img {
    object-position: 10% 32%;
  }
}

.home-steam-spotlight__hero.is-loading .home-steam-spotlight__hero-img {
  opacity: 0.35;
}

.home-steam-spotlight__hero-img.is-swapping {
  opacity: 1;
}

.home-steam-spotlight__hero-fade {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: #050608;
  opacity: 0;
  transition: opacity 0.52s ease-in-out;
  will-change: opacity;
}

.home-steam-spotlight__hero-fade--active {
  opacity: 1;
}

.home-steam-spotlight__hero-img.is-placeholder {
  opacity: 0;
}

.home-steam-spotlight__hero.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, #0a1018 0%, #111a28 45%, #0a1018 90%);
  background-size: 200% 100%;
  animation: home-steam-shimmer 1.2s ease-in-out infinite;
  pointer-events: none;
}

.home-steam-spotlight__loading-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  transform: translate(-50%, -50%);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 10, 18, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.home-steam-spotlight__hero:not(.is-loading) .home-steam-spotlight__loading-label {
  display: none;
}

.home-steam-spotlight__panel.is-bootstrapping .home-steam-spotlight__desc:empty {
  min-height: 2.75rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  animation: home-steam-shimmer 1.2s ease-in-out infinite;
}

.home-steam-spotlight__price-skeleton {
  display: inline-block;
  min-width: 5.5rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes home-steam-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.home-steam-spotlight__hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(
      90deg,
      rgba(6, 10, 18, 0) 0%,
      rgba(6, 10, 18, 0.02) 34%,
      rgba(6, 10, 18, 0.12) 44%,
      rgba(8, 14, 24, 0.78) 56%,
      rgba(8, 14, 24, 0.96) 66%,
      #0a121c 100%
    );
}

@media (max-width: 767px) {
  .home-steam-spotlight__hero-scrim {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 42%, rgba(8, 14, 24, 0.92) 78%, #0a121c 100%),
      linear-gradient(90deg, rgba(6, 10, 18, 0.12) 0%, rgba(6, 10, 18, 0.45) 100%);
  }
}

.home-steam-spotlight__panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(20rem, 48vw, 30rem);
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  margin-left: auto;
  padding: 1.25rem 1.15rem 2.15rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .home-steam-spotlight__panel {
    width: min(42%, 25rem);
    padding: 2rem 2.25rem 2rem 1.65rem;
  }
}

@media (max-width: 767px) {
  .home-steam-spotlight__panel {
    justify-content: flex-end;
    padding-bottom: 2.45rem;
  }
}

.home-steam-spotlight__side-arrow {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid rgba(var(--platform-steam-rgb), 0.85);
  background: rgba(8, 8, 11, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (min-width: 640px) {
  .home-steam-spotlight__side-arrow {
    display: inline-flex;
  }
}

.home-steam-spotlight__side-arrow--prev {
  left: 0.85rem;
}

.home-steam-spotlight__side-arrow--next {
  right: 0.85rem;
}

.home-steam-spotlight__side-arrow:hover {
  border-color: var(--platform-steam-solid);
  background: rgba(var(--platform-steam-rgb), 0.22);
  box-shadow: 0 0 26px var(--platform-steam-glow);
  transform: translateY(-50%) scale(1.05);
}

.home-steam-spotlight__badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--platform-steam-rgb), 0.62);
  background: rgba(var(--platform-steam-rgb), 0.2);
  padding: 0.32rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ef0ff;
}

.home-steam-spotlight__badge-icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.95;
}

.home-steam-spotlight__title {
  margin: 0;
  font-family: 'Kanit', sans-serif;
  font-size: clamp(1.5rem, 2.9vw, 2.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.home-steam-spotlight__desc {
  margin: 0;
  max-width: 28rem;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.home-steam-spotlight__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.home-steam-spotlight__price-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-steam-spotlight__price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.home-steam-spotlight__price {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 900;
  color: var(--platform-steam-solid);
  text-shadow: 0 0 24px var(--platform-steam-glow);
}

.home-steam-spotlight__compare {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.home-steam-spotlight__discount {
  display: inline-flex;
  align-items: center;
  border-radius: 0.45rem;
  background: rgba(var(--platform-steam-rgb), 0.24);
  padding: 0.22rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #9ef0ff;
}

.home-steam-spotlight__cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(var(--platform-steam-rgb), 0.62);
  background: rgba(var(--platform-steam-rgb), 0.22);
  padding: 0.7rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
}

.home-steam-spotlight__cta:hover {
  transform: translateY(-1px);
}

.home-cat-spotlight--steam .home-steam-spotlight__cta:hover {
  background: rgba(var(--platform-steam-rgb), 0.36);
  border-color: var(--platform-steam-border-strong);
  box-shadow: 0 0 28px var(--platform-steam-glow);
}

.home-steam-spotlight__dots-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.65rem;
  z-index: 18;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .home-steam-spotlight__dots-wrap {
    right: 42%;
    bottom: 0.85rem;
    justify-content: center;
  }
}

.home-steam-spotlight__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  pointer-events: auto;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(6, 10, 18, 0.52);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--platform-steam-rgb), 0.14);
}

/* Bolinha de autoplay â€” igual galeria da pÃ¡gina de produto */
.home-steam-spotlight__autoplay-ring {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.home-steam-spotlight__autoplay-ring--paused .home-steam-spotlight__autoplay-fill--running {
  animation-play-state: paused;
}

.home-steam-spotlight__autoplay-svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.home-steam-spotlight__autoplay-fill {
  stroke-dashoffset: 87.965;
}

.home-steam-spotlight__autoplay-fill--running {
  animation: home-spotlight-ring-progress var(--spotlight-autoplay-ms, 3000ms) linear forwards;
}

@media (prefers-reduced-motion: reduce) {
  .home-steam-spotlight__autoplay-fill--running,
  .home-steam-spotlight__dot.is-active.is-progressing::after {
    animation-duration: var(--spotlight-autoplay-ms, 3000ms) !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes home-spotlight-ring-progress {
  from {
    stroke-dashoffset: 87.965;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.home-cat-spotlight--playstation .home-steam-spotlight__autoplay-ring {
  color: var(--platform-ps-solid);
}

.home-cat-spotlight--xbox .home-steam-spotlight__autoplay-ring {
  color: var(--platform-xbox-solid);
}

.home-cat-spotlight--accounts .home-steam-spotlight__autoplay-ring {
  color: var(--platform-accounts-solid);
}

.home-steam-spotlight__dot {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: width 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-steam-spotlight__dot::before {
  content: '';
  position: absolute;
  inset: -0.5rem;
}

.home-steam-spotlight__dot.is-active {
  width: 1.65rem;
  background: var(--platform-steam-solid);
  box-shadow: 0 0 14px var(--platform-steam-glow);
}

.home-steam-spotlight__dot.is-active.is-progressing::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: rgba(255, 255, 255, 0.42);
  animation: home-spotlight-dot-progress var(--spotlight-autoplay-ms, 3000ms) linear forwards;
  pointer-events: none;
}

@keyframes home-spotlight-dot-progress {
  to {
    transform: scaleX(1);
  }
}

/* Destaques por plataforma â€” acentos via tokens */
.home-cat-spotlight--playstation .home-steam-spotlight__shell {
  border-color: var(--platform-ps-border);
  box-shadow:
    0 0 0 1px rgba(var(--platform-ps-rgb), 0.08),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(var(--platform-ps-rgb), 0.08);
}

.home-cat-spotlight--playstation .home-steam-spotlight__badge {
  border-color: rgba(var(--platform-ps-rgb), 0.45);
  background: var(--platform-ps-bg-soft);
  color: #b8d9f5;
}

.home-cat-spotlight--playstation .home-steam-spotlight__side-arrow {
  border-color: rgba(var(--platform-ps-rgb), 0.85);
}

.home-cat-spotlight--playstation .home-steam-spotlight__side-arrow:hover {
  border-color: rgba(var(--platform-ps-rgb), 0.85);
  background: rgba(var(--platform-ps-rgb), 0.18);
  box-shadow: 0 0 18px var(--platform-ps-glow);
}

.home-cat-spotlight--playstation .home-steam-spotlight__dot.is-active {
  background: var(--platform-ps-solid);
  box-shadow: 0 0 10px var(--platform-ps-glow);
}

.home-cat-spotlight--playstation .home-steam-spotlight__dots {
  border-color: rgba(var(--platform-ps-rgb), 0.16);
}

.home-cat-spotlight--playstation .home-steam-spotlight__cta {
  border-color: rgba(var(--platform-ps-rgb), 0.62);
  background: linear-gradient(135deg, var(--platform-ps-solid) 0%, var(--platform-ps-deep) 100%);
}

.home-cat-spotlight--playstation .home-steam-spotlight__cta:hover {
  border-color: var(--platform-ps-border-strong);
  background: linear-gradient(135deg, var(--platform-ps-solid) 0%, var(--platform-ps-deep) 100%);
  box-shadow: 0 0 28px var(--platform-ps-glow);
}

.home-cat-spotlight--xbox .home-steam-spotlight__shell {
  border-color: var(--platform-xbox-border);
  box-shadow:
    0 0 0 1px rgba(var(--platform-xbox-rgb), 0.08),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(var(--platform-xbox-rgb), 0.07);
}

.home-cat-spotlight--xbox .home-steam-spotlight__badge {
  border-color: rgba(var(--platform-xbox-rgb), 0.42);
  background: var(--platform-xbox-bg-soft);
  color: #c8e6c8;
}

.home-cat-spotlight--xbox .home-steam-spotlight__badge-icon--xbox {
  color: #e8f5e8;
}

.home-cat-spotlight--xbox .home-steam-spotlight__side-arrow {
  border-color: rgba(var(--platform-xbox-rgb), 0.85);
}

.home-cat-spotlight--xbox .home-steam-spotlight__side-arrow:hover {
  border-color: rgba(var(--platform-xbox-rgb), 0.85);
  background: rgba(var(--platform-xbox-rgb), 0.18);
  box-shadow: 0 0 18px var(--platform-xbox-glow);
}

.home-cat-spotlight--xbox .home-steam-spotlight__dot.is-active {
  background: var(--platform-xbox-deep);
  box-shadow: 0 0 10px var(--platform-xbox-glow);
}

.home-cat-spotlight--xbox .home-steam-spotlight__dots {
  border-color: rgba(var(--platform-xbox-rgb), 0.16);
}

.home-cat-spotlight--xbox .home-steam-spotlight__cta {
  border-color: rgba(var(--platform-xbox-rgb), 0.62);
  background: linear-gradient(135deg, var(--platform-xbox-deep) 0%, #0b5a0b 100%);
}

.home-cat-spotlight--xbox .home-steam-spotlight__cta:hover {
  border-color: var(--platform-xbox-border-strong);
  background: linear-gradient(135deg, var(--platform-xbox-deep) 0%, #0b5a0b 100%);
  box-shadow: 0 0 28px var(--platform-xbox-glow);
}

.home-cat-spotlight--accounts .home-steam-spotlight__shell {
  border-color: var(--platform-accounts-border);
  box-shadow:
    0 0 0 1px rgba(var(--platform-accounts-rgb), 0.08),
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(var(--platform-accounts-rgb), 0.08);
}

.home-cat-spotlight--accounts .home-steam-spotlight__badge {
  border-color: rgba(var(--platform-accounts-rgb), 0.45);
  background: var(--platform-accounts-bg-soft);
  color: #ffe9a8;
}

.home-cat-spotlight--accounts .home-steam-spotlight__side-arrow {
  border-color: rgba(var(--platform-accounts-rgb), 0.85);
}

.home-cat-spotlight--accounts .home-steam-spotlight__side-arrow:hover {
  border-color: rgba(var(--platform-accounts-rgb), 0.85);
  background: rgba(var(--platform-accounts-rgb), 0.18);
  box-shadow: 0 0 18px var(--platform-accounts-glow);
}

.home-cat-spotlight--accounts .home-steam-spotlight__dot.is-active {
  background: var(--platform-accounts-solid);
  box-shadow: 0 0 10px var(--platform-accounts-glow);
}

.home-cat-spotlight--accounts .home-steam-spotlight__dots {
  border-color: rgba(var(--platform-accounts-rgb), 0.16);
}

.home-cat-spotlight--accounts .home-steam-spotlight__cta {
  border-color: rgba(var(--platform-accounts-rgb), 0.62);
  background: linear-gradient(135deg, var(--platform-accounts-solid) 0%, var(--platform-accounts-deep) 100%);
}

.home-cat-spotlight--accounts .home-steam-spotlight__cta:hover {
  border-color: var(--platform-accounts-border-strong);
  box-shadow: 0 0 28px var(--platform-accounts-glow);
}

.home-cat-spotlight--playstation .home-steam-spotlight__hero-img,
.home-cat-spotlight--xbox .home-steam-spotlight__hero-img {
  object-position: 16% 38%;
}

@media (min-width: 768px) {
  .home-cat-spotlight--playstation .home-steam-spotlight__hero-img,
  .home-cat-spotlight--xbox .home-steam-spotlight__hero-img {
    object-position: 10% 34%;
  }
}

/* Spotlight — refinamentos mobile */
@media (max-width: 767px) {
  .home-steam-spotlight__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    line-height: 1.12;
  }
  .home-steam-spotlight__cta {
    width: 100%;
    min-height: 2.85rem;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    font-size: 0.95rem;
  }
  .home-steam-spotlight__dot::before { inset: -0.65rem; }
  .home-steam-spotlight__dots {
    gap: 0.55rem;
    padding: 0.5rem 0.85rem;
  }
}

.home-category-block .home-steam-spotlight {
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

/* —— Steam vitrine SeekKey — arte API, painel colado na borda —— */
.home-steam-spotlight--vitrine {
  --steam-vitrine-panel: #0b1220;
  --steam-vitrine-accent: hsl(var(--primary));
  --steam-vitrine-accent-ink: #041018;
  --steam-vitrine-radius: 0.75rem;
  --steam-vitrine-height: clamp(21rem, 38.5vw, 29rem);
  width: 100%;
  max-width: min(100%, 78rem);
  margin-inline: auto;
  padding-inline: clamp(0.1rem, 0.6vw, 0.45rem);
  padding-bottom: 2.35rem;
  box-sizing: border-box;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__shell {
  position: relative;
  overflow: visible;
  width: 100%;
  border-radius: var(--steam-vitrine-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--steam-vitrine-panel);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 40px rgba(0, 0, 0, 0.45);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--steam-vitrine-radius);
  min-height: 0;
  isolation: isolate;
  background: var(--steam-vitrine-panel);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero {
  position: relative !important;
  inset: auto !important;
  z-index: 0;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 14rem;
  overflow: hidden;
  background: #05070c;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-scrim {
  display: none !important;
}

/* Vitrine Steam: badge e CTA visíveis (layout = PlayStation) */
.home-steam-spotlight--vitrine .home-steam-spotlight__badge,
.home-steam-spotlight--vitrine .home-steam-spotlight__cta {
  display: inline-flex !important;
}

/* Subtitle: no line-clamp/overflow — avoids clipping descenders (g, y, p) */
.home-steam-spotlight--vitrine .home-steam-spotlight__desc {
  display: block !important;
  flex: 0 0 auto;
  margin: 0 0 0.55rem;
  padding-bottom: 0.2rem;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  line-height: 1.55;
  opacity: 0.88;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__cta {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
  opacity: 1 !important;
  visibility: visible !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-loading .home-steam-spotlight__hero-img {
  opacity: 1 !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero.is-loading::after {
  opacity: 0.55;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hero:not(.is-loading) .home-steam-spotlight__loading-label {
  display: none !important;
}

/* Painel: título → grade 2×2 → rodapé (Steam esq. | preço dir.) — cores Kingdom */
.home-steam-spotlight--vitrine .home-steam-spotlight__panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: none !important;
  min-width: 0;
  min-height: 0;
  margin: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.55rem;
  padding: 1.1rem 1rem 0.95rem;
  background: var(--steam-vitrine-panel);
  box-sizing: border-box;
  pointer-events: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__cta,
.home-steam-spotlight--vitrine .home-steam-spotlight__thumb,
.home-steam-spotlight--vitrine .home-steam-spotlight__price-row {
  pointer-events: auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__title {
  margin: 0;
  width: 100%;
  font-family: 'Kanit', 'Geist', sans-serif;
  font-size: clamp(1.12rem, 3.1vw, 1.4rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 0 auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 0.5rem;
  flex: 0 0 auto;
  width: 100%;
  min-height: 0;
  align-content: start;
  position: relative;
  z-index: 6;
  pointer-events: auto;
  margin: 0;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0;
  min-width: 0;
  aspect-ratio: 16 / 9 !important;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb.is-empty {
  opacity: 0.35;
  pointer-events: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb.is-active,
.home-steam-spotlight--vitrine .home-steam-spotlight__thumb:hover {
  border-color: hsl(var(--primary) / 0.85);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.3);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.04);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Rodapé: Steam à esquerda + stack de preço à direita (layout ref, cores brand) */
.home-steam-spotlight--vitrine .home-steam-spotlight__platform-foot {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.25rem;
  min-height: 2.35rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  opacity: 0.95;
  align-self: flex-end;
  margin-bottom: 0.1rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark-img {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  filter: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark svg {
  width: 1.75rem;
  height: 1.75rem;
  color: inherit;
  fill: currentColor;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price-group {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  text-align: right;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__compare {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  text-align: right;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  line-height: 1.05;
  color: hsl(var(--primary)) !important;
  text-shadow: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__discount {
  border-radius: 0.22rem;
  border: 0;
  background: hsl(var(--primary)) !important;
  color: #041018 !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.26rem 0.42rem;
  line-height: 1;
}

/* price-row = layout PS na vitrine Steam (badge + título + desc + preço + CTA) */
.home-steam-spotlight--vitrine .home-steam-spotlight__price-row {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  margin: 0.15rem 0 0.35rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__price-group {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__compare {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__price-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__price {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 1.65rem);
  font-weight: 800;
  color: hsl(var(--primary)) !important;
  text-shadow: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__discount {
  border-radius: 0.22rem;
  border: 0;
  background: hsl(var(--primary)) !important;
  color: #041018 !important;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.26rem 0.42rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__hit {
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: var(--steam-vitrine-radius);
  grid-column: 1 / -1;
  grid-row: 1;
  width: auto;
  height: auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow {
  display: none;
  z-index: 24;
  width: 2.5rem;
  height: 2.5rem;
  border-width: 1.5px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 12, 20, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--prev {
  left: -1.05rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--next {
  right: -1.05rem;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow:hover {
  border-color: hsl(var(--primary) / 0.7);
  background: rgba(14, 18, 28, 0.88);
  box-shadow: 0 0 20px hsl(var(--primary) / 0.18);
  transform: translateY(-50%) scale(1.05);
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dots-wrap {
  display: flex !important;
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  z-index: 8;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: auto;
  pointer-events: auto;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__autoplay-ring {
  display: none !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  padding: 0;
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dot.is-active {
  width: 1.3rem;
  background: hsl(var(--primary)) !important;
  box-shadow: 0 0 12px hsl(var(--primary) / 0.45) !important;
}

.home-steam-spotlight--vitrine .home-steam-spotlight__dot.is-active.is-progressing::after {
  display: none;
}

@media (min-width: 640px) {
  .home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow {
    display: inline-flex;
  }
}

/* Desktop: grid ~70/30 — arte flex + painel com thumbs 16:9 reais */
@media (min-width: 768px) {
  .home-steam-spotlight--vitrine {
    --steam-vitrine-height: clamp(22.5rem, 34.5vw, 30.5rem);
    max-width: min(100%, 66rem);
    padding-inline: clamp(1rem, 3.5vw, 2.25rem);
    padding-bottom: 2.4rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__stage {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(15.5rem, 31%);
    grid-template-rows: 100%;
    flex-direction: unset;
    align-items: stretch;
    height: var(--steam-vitrine-height);
    min-height: var(--steam-vitrine-height);
    max-height: var(--steam-vitrine-height);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__hero {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    aspect-ratio: auto !important;
    min-height: 100% !important;
    height: 100% !important;
    align-self: stretch;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__hero-img {
    object-fit: cover;
    object-position: center center;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__panel {
    grid-column: 2;
    grid-row: 1;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
    min-height: 100%;
    height: 100%;
    padding: 1.05rem 1rem 0.9rem;
    gap: 0.55rem;
    justify-content: flex-start;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__title {
    font-size: clamp(1.08rem, 1.35vw, 1.32rem);
    flex: 0 0 auto;
    -webkit-line-clamp: 2;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal {
    flex: 0 1 auto;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__compare {
    font-size: 0.92rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price {
    font-size: clamp(1.28rem, 1.7vw, 1.55rem);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__discount {
    font-size: 0.84rem;
    padding: 0.28rem 0.46rem;
  }

  /* Crítico: thumbs em 16:9 — NÃO preencher a altura do painel */
  .home-steam-spotlight--vitrine .home-steam-spotlight__thumbs {
    flex: 0 0 auto !important;
    gap: 0.45rem;
    align-content: start !important;
    grid-template-rows: auto auto !important;
    min-height: 0;
    width: 100%;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__thumb {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__platform-foot {
    display: none;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark-img,
  .home-steam-spotlight--vitrine .home-steam-spotlight__steam-mark svg {
    width: 1.9rem;
    height: 1.9rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__price-row {
    display: flex !important;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--prev {
    left: -1.15rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow--next {
    right: -1.15rem;
  }
}

@media (min-width: 1100px) {
  .home-steam-spotlight--vitrine {
    --steam-vitrine-height: clamp(24.5rem, 32.5vw, 33rem);
    max-width: min(100%, 72rem);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__stage {
    grid-template-columns: minmax(0, 1fr) minmax(16.5rem, 30%);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__panel {
    width: 100% !important;
    max-width: none !important;
    padding: 1.15rem 1.1rem 1rem;
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__title {
    font-size: clamp(1.15rem, 1.25vw, 1.4rem);
  }

  .home-steam-spotlight--vitrine .home-steam-spotlight__deal .home-steam-spotlight__price {
    font-size: clamp(1.4rem, 1.55vw, 1.7rem);
  }
}

.home-steam-spotlight--vitrine .home-steam-spotlight__shell {
  position: relative;
}
.home-steam-spotlight--vitrine .home-steam-spotlight__stage {
  position: relative;
  overflow: hidden;
}
.home-steam-spotlight--vitrine .home-steam-spotlight__side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.home-steam-spotlight--vitrine .home-steam-spotlight__dots-wrap {
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  top: auto;
  transform: translateX(-50%);
}

