/* store.css - segunda parte do tema (hero, home, nav, cards) */

/* ==================== */
/* HERO BANNER          */
/* ==================== */
/* Modelo Kingdom: frame cinematográfico + imagem em object-cover (fundo), com fade
   suave nas laterais/base. No celular a arte aparece inteira (altura natural). */
.home-hero {
  position: relative;
  margin-top: -5.25rem;
  margin-bottom: 0.75rem;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  user-select: none;
  background: #0d0f14;
}

@media (min-width: 768px) {
  .home-hero {
    margin-top: -8rem;
  }
}

.home-hero-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #09090b;
}

/* Desktop: frame na proporção da arte (2880×1089, igual Kingdom). */
@media (min-width: 640px) {
  .home-hero-frame {
    aspect-ratio: 2880 / 1089;
    min-height: 19rem;
  }
}

@media (min-width: 768px) {
  .home-hero-frame {
    min-height: 22rem;
  }
}

@media (min-width: 1024px) {
  .home-hero-frame {
    min-height: 24rem;
  }
}

.home-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* No desktop a foto vira fundo do frame (cover), igual Kingdom. */
@media (min-width: 640px) {
  .home-hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }
}

/* A própria arte some de baixo pra cima (transparência), estilo Kingdom. */
.home-hero-img {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.88) 70%,
    rgba(0, 0, 0, 0.45) 84%,
    rgba(0, 0, 0, 0.12) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.88) 70%,
    rgba(0, 0, 0, 0.45) 84%,
    rgba(0, 0, 0, 0.12) 94%,
    transparent 100%
  );
}

/* Blur suave na base: a foto “derrete” no fundo da loja. */
.home-hero-blur {
  pointer-events: none;
  position: absolute;
  inset-x: 0;
  bottom: 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(
    to bottom,
    rgb(var(--background) / 0) 0%,
    rgb(var(--background) / 0.22) 45%,
    rgb(var(--background) / 0.72) 78%,
    rgb(var(--background)) 100%
  );
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 28%,
    #000 70%,
    #000 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 28%,
    #000 70%,
    #000 100%
  );
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .home-hero-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient(
      to bottom,
      rgb(var(--background) / 0) 0%,
      rgb(var(--background) / 0.12) 40%,
      rgb(var(--background) / 0.55) 75%,
      rgb(var(--background) / 0.92) 100%
    );
  }
}

.home-hero-fade {
  pointer-events: none;
  position: absolute;
  inset-x: 0;
  bottom: 0;
  z-index: 2;
  height: clamp(4rem, 22%, 9rem);
  background: linear-gradient(
    to bottom,
    rgb(var(--background) / 0) 0%,
    rgb(var(--background) / 0.28) 48%,
    rgb(var(--background) / 0.82) 82%,
    rgb(var(--background)) 100%
  );
}

@media (min-width: 640px) {
  .home-hero-blur {
    height: 42%;
  }

  .home-hero-fade {
    height: clamp(5.5rem, 24%, 10rem);
  }
}

/* Laterais + emenda com o fundo da loja (estilo Kingdom). */
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgb(var(--background) / 0.58) 0%,
      rgb(var(--background) / 0.16) 13%,
      transparent 30%,
      rgb(var(--background) / 0.06) 78%,
      rgb(var(--background) / 0.58) 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 55%,
      rgb(var(--background) / 0.45) 82%,
      rgb(var(--background)) 100%
    );
}

@media (min-width: 768px) {
  .home-hero::after {
    background:
      linear-gradient(
        90deg,
        rgb(var(--background) / 0.28) 0%,
        rgb(var(--background) / 0.08) 14%,
        transparent 32%,
        rgb(var(--background) / 0.04) 78%,
        rgb(var(--background) / 0.28) 100%
      ),
      linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgb(var(--background) / 0.35) 84%,
        rgb(var(--background)) 100%
      );
  }
}

/* ==================== */
/* DESTAQUE DA HOME (carrossel de capas + painel grande) */
/* ==================== */
/* Em cima, uma fileira de pôsteres que se arrasta para o lado. Embaixo, um painel grande
   que mostra o jogo escolhido. A capa ativa cresce e ganha borda; o painel acompanha.
   Os pôsteres saem dos PRODUTOS da categoria configurada no topo da home — nada aqui e
   nenhuma imagem e chumbada no tema. */
.fc {
  position: relative;
}

/* ---- posters em cima; painel + lema no meio da telinha ---- */
.fc-topo {
  display: block;
}

.fc-carrossel {
  min-width: 0;
}

.fc-stage-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 1024px) {
  .fc-stage-row {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 22rem);
    gap: 1.75rem;
    align-items: center;
    margin-top: 1rem;
  }
}

.fc-lema {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 0;
  padding: 0.35rem 0.25rem 0.15rem;
}

@media (min-width: 1024px) {
  .fc-lema {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
}

.fc-lema-eyebrow {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 1024px) {
  .fc-lema-eyebrow {
    font-size: 1.4rem;
  }
}

/* O nome da loja vem da própria loja (store.name). */
.fc-lema-marca {
  margin: 0.4rem 0 0;
  font-size: clamp(2.4rem, 9vw, 3.15rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: hsl(var(--primary));
  text-transform: uppercase;
  font-family: Geist, sans-serif;
}

@media (min-width: 1024px) {
  .fc-lema-marca {
    font-size: clamp(2.75rem, 4.4vw, 3.65rem);
  }
}

.fc-lema-sub {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  max-width: 22rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .fc-lema-sub {
    font-size: 1rem;
    max-width: 19rem;
  }
}

/* Caixa de contato no celular; no desktop fica transparente. */
.fc-lema-box {
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: #141820;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .fc-lema-box {
    margin-top: 0.65rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
}

@media (max-width: 1023px) {
  .fc-lema-sub {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    text-align: left;
    max-width: none;
  }
}

/* ---- barra de contato (sem WhatsApp) ---- */
.fc-lema-contatos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0;
  width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 1024px) {
  .fc-lema-contatos {
    gap: 0;
    margin-top: 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: #141820;
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
}

.fc-lema-contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.85rem 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

@media (min-width: 1024px) {
  .fc-lema-contato {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0.95rem 0.85rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    text-align: left;
  }
}

.fc-lema-contato + .fc-lema-contato {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .fc-lema-contato + .fc-lema-contato {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
}

.fc-lema-contato:hover,
.fc-lema-contato:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  transform: translateY(-1px);
}

.fc-lema-contato-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
}

.fc-lema-contato-icone svg {
  width: 100%;
  height: 100%;
}

.fc-lema-contato-icone--discord {
  color: #5865f2;
}

.fc-lema-contato-icone--instagram {
  color: hsl(var(--primary));
}

.fc-lema-contato-text {
  min-width: 0;
}

.fc-lema-contato-titulo {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.fc-lema-contato-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.58);
}

@media (prefers-reduced-motion: reduce) {
  .fc-lema-contato {
    transition: background-color 0.25s ease;
  }

  .fc-lema-contato:hover,
  .fc-lema-contato:focus-visible {
    transform: none;
  }
}

/* ---- faixa de selos ---- */
.fc-faixa {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.75rem;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: #141820;
}

@media (min-width: 640px) {
  .fc-faixa {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 0.9rem;
    border-radius: 0.85rem;
  }
}

.fc-faixa-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.65rem 0.7rem;
  color: inherit;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .fc-faixa-item {
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
  }

  .fc-faixa-item + .fc-faixa-item {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }
}

@media (max-width: 639px) {
  .fc-faixa-item:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }

  .fc-faixa-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
}

.fc-faixa-item:hover,
.fc-faixa-item:focus-visible {
  background: rgba(3, 53, 252, 0.1);
  outline: none;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(3, 53, 252, 0.45);
  z-index: 1;
}

.fc-faixa-item:hover .fc-faixa-icone,
.fc-faixa-item:focus-visible .fc-faixa-icone {
  color: #0335fc;
  transform: scale(1.12);
}

.fc-faixa-icone {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #0335fc;
  transition:
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) {
  .fc-faixa-icone {
    width: 1.35rem;
    height: 1.35rem;
  }
}

.fc-faixa-text {
  min-width: 0;
}

.fc-faixa-num {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .fc-faixa-num {
    font-size: 1.15rem;
  }
}

.fc-faixa-txt {
  display: block;
  margin: 0.12rem 0 0;
  font-size: 0.7rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.58);
}

@media (min-width: 640px) {
  .fc-faixa-txt {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fc-faixa-item,
  .fc-faixa-icone {
    transition: none;
  }

  .fc-faixa-item:hover,
  .fc-faixa-item:focus-visible {
    transform: none;
  }

  .fc-faixa-item:hover .fc-faixa-icone,
  .fc-faixa-item:focus-visible .fc-faixa-icone {
    transform: none;
  }
}

/* ---- fileira de capas ---- */
.fc-rail-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.fc-rail {
  display: flex;
  /* `safe`: centraliza quando as capas cabem e volta a alinhar à esquerda quando elas
     estouram a largura. Sem o `safe`, o que sobra para a esquerda fica inalcançável — o
     scroll não chega lá, e a primeira capa some para sempre no celular. */
  justify-content: safe center;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.15rem;
  /* Sem `gap` de propósito: o respiro é margem DE CADA capa. Com gap, a capa ativa
     encolheria até zero e o espaço dela continuaria lá — um buraco no meio da fileira. */
}

.fc-rail::-webkit-scrollbar {
  display: none;
}

/* A capa: pôster em pé, como nos cards da loja. */
.fc-poster {
  flex: 0 0 auto;
  width: 5rem;      /* as quatro capas visíveis cabem na largura de um celular */
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(var(--background));
  box-shadow: 0 8px 20px -14px rgba(0, 0, 0, 0.9);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease, border-color 0.3s ease;
}

.fc-poster + .fc-poster {
  margin-left: 0.4rem;
}

@media (min-width: 640px) {
  .fc-poster {
    width: 6.5rem;
  }

  .fc-poster + .fc-poster {
    margin-left: 0.65rem;
  }
}

@media (min-width: 1024px) {
  .fc-poster {
    width: 8rem;
    border-radius: 0.85rem;
  }
}

.fc-poster:hover {
  border-color: hsl(var(--primary) / 0.45);
}

/* A capa do jogo que está no painel SOME da fileira — ele já está sendo mostrado ali
   embaixo, grande. Ela não some de estalo: encolhe e leva o próprio espaço junto, como se
   tivesse descido para o painel. Volta sozinha quando outro jogo assume. */
.fc-poster.is-active {
  width: 0;
  margin-left: 0;
  opacity: 0;
  border-width: 0;
  pointer-events: none;
}

/* A moldura da capa do destaque: imagem do painel CentralCart. */
.fc-poster .game-card-media {
  border-radius: inherit;
}

/* ---- setas ----
   No celular elas NÃO aparecem: as duas comiam uns 80px da largura, e a fileira ficava
   espremida em três capas cortadas. Sem elas, as quatro capas cabem inteiras na tela, e
   quem quiser ver as outras arrasta com o dedo. */
.fc-arrow {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgb(var(--foreground));
  transition: background-color 0.2s ease;
}

.fc-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 640px) {
  .fc-arrow {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ---- painel grande ---- */
.fc-stage {
  position: relative;
  display: block;
  margin-top: 0.75rem;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgb(var(--background));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.95);
}

@media (min-width: 1024px) {
  .fc-stage {
    margin-top: 1rem;
    aspect-ratio: 21 / 9;
  }
}

/* O clique "em qualquer lugar do painel": uma camada transparente cobrindo tudo. Fica por
   cima da arte e do vídeo, e por baixo do nome, do preço e dos dois botões — que hoje são
   links de verdade e por isso não podiam mais morar dentro de outro link. */
.fc-stage-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

/* A arte grande do jogo. Ela troca com um crossfade curto — sem susto. */
.fc-stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fc-stage-img.is-in {
  opacity: 1;
}

/* O trailer do jogo ativo, tocando por cima da arte: mudo, em loop, sem controles. Entra
   com um fade quando começa a rodar; se o jogo não tiver mp4, nem aparece. */
.fc-stage-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.fc-stage-video.is-in {
  opacity: 1;
}

/* O trailer a mão (YouTube), para o jogo que a Steam não tem vídeo. Mesma camada do
   <video>, mesmo fade — a diferença é que o quadro do YouTube é sempre 16/9, e o painel é
   21/9 no desktop. Então ele é esticado pela LARGURA (aspect-ratio dá a altura), e o que
   sobra em cima e embaixo é cortado pelo overflow do painel: enche tudo, sem tarja preta.
   O painel nunca é mais alto que 16/9, então não há o caso inverso. */
.fc-stage-yt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.fc-stage-yt.is-in {
  opacity: 1;
}

/* Escurece a base para o nome e o preço lerem sempre. */
.fc-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgb(var(--background) / 0.95) 0%,
    rgb(var(--background) / 0.6) 28%,
    rgb(var(--background) / 0.1) 55%,
    transparent 75%
  );
}

.fc-stage-info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(0.5rem);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* A faixa cobre a base do painel inteira: sem isto, clicar no vazio ao lado do nome não
     abriria o jogo. O clique atravessa a faixa e cai na camada de baixo — só os botões
     (logo abaixo) voltam a receber clique. */
  pointer-events: none;
}

.fc-stage-info a {
  pointer-events: auto;
}

.fc-stage-info.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .fc-stage-info {
    padding: 1.5rem;
  }
}

.fc-stage-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .fc-stage-title {
    font-size: 1.6rem;
  }
}

/* Subtítulo puxado da Steam (short_description) — estilo Overplay */
.fc-stage-desc {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fc-stage-desc[hidden] {
  display: none !important;
}

@media (min-width: 640px) {
  .fc-stage-desc {
    margin-top: 0.45rem;
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
}

.fc-stage-price {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0335fc;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .fc-stage-price {
    font-size: 1.35rem;
  }
}

/* Os dois botões do painel: ver detalhes e comprar. No celular ficam embaixo do nome. */
.fc-stage-acoes {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fc-stage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 2.25rem;
  padding: 0 0.9rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 640px) {
  .fc-stage-btn {
    height: 2.5rem;
    padding: 0 1.1rem;
    font-size: 0.875rem;
  }
}

.fc-stage-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgb(var(--foreground));
}

.fc-stage-btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.fc-stage-btn-primary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.fc-stage:hover .fc-stage-btn {
  transform: scale(1.04);
}

.fc-stage:hover .fc-stage-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
}

/* Celular / tablet estreito: nome em cima, botoes embaixo. */
@media (max-width: 767px) {
  .fc-stage-info {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .fc-stage-acoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .fc-stage-title {
    font-size: 1.15rem;
  }
}

/* Quem pediu menos movimento no sistema recebe menos movimento: sem crescer, sem deslizar.
   (O autoplay também é desligado, no script.) */
@media (prefers-reduced-motion: reduce) {
  .fc-poster,
  .fc-stage-img,
  .fc-stage-video,
  .fc-stage-info,
  .fc-stage-btn {
    transition: none;
  }

  .fc-stage-info {
    transform: none;
  }

  .fc-rail {
    scroll-behavior: auto;
  }
}

/* ==================== */
/* PRODUCT CARD SHINE   */
/* ==================== */
/* Brilho metálico que atravessa a capa no hover, junto com o lift/zoom do .game-card. */
.product-card-shine {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.group:hover .product-card-shine {
  opacity: 1;
}

.product-card-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 42%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.1) 58%,
    transparent 70%,
    transparent 100%
  );
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.group:hover .product-card-shine::after {
  left: 130%;
}

/* ==================== */
/* PRODUCT PAGE CARDS   */
/* ==================== */
/* Na página de produto, escurece os cards bg-muted para melhorar o contraste.
   Redefinindo --muted só dentro do .package-wrapper, todo `bg-muted` (inclusive
   componentes renderizados, como feedbacks) fica mais escuro de uma vez.
   Ajuste o último número (alpha) para mais/menos escuro. */
.package-wrapper {
  --muted: 0 0 0 / 0.35;
}

/* Aumenta o desfoque (backdrop blur) dos cards na página de produto.
   Maior especificidade que o .backdrop-blur-sm do Tailwind, então vence sem
   !important. Ajuste o blur(...) para mais/menos desfoque. */
.package-wrapper .backdrop-blur-sm {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ==================== */
/* FUNDO DA PÁGINA DE PRODUTO */
/* ==================== */
/* A arte do jogo entra NITIDA no topo (sem desfoque) e vai derretendo no preto conforme
   a pagina desce — quando acaba, o fundo normal da loja ja tomou conta. Sao tres camadas:

     a foto ............. background-image, ancorada em cima (center 22%)
     ::before ........... escurece de baixo para cima, para o texto ter contraste
     mask-image ......... apaga a propria camada no fim, sem deixar emenda

   A altura NAO acompanha o conteudo: e presa a tela (85vh). Assim o efeito e o mesmo em
   todo produto, tenha ele descricao curta ou longa. */
.product-hero-area {
  position: relative;
  /* O fundo lá embaixo tem `transform: scale(1.02)` para esconder as bordas moles da
     máscara — e transform ENTRA na conta do scroll: sem este corte, a página do produto
     arrastava uns pixels para o lado no celular. `clip` (e não `hidden`) corta só na
     horizontal e não vira caixa de rolagem: o fundo continua subindo atrás da navbar. */
  overflow-x: clip;
}

.product-hero {
  position: absolute;
  top: -5rem;                    /* sobe atras da navbar flutuante */
  left: 0;
  right: 0;
  height: calc(5rem + 85vh);
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  user-select: none;

  background-image: var(--product-bg, none);
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;

  /* scale tira as bordas moles que a mascara deixaria nos cantos */
  transform: scale(1.02);
  transform-origin: center top;

  /* o coracao do efeito: a camada some no fim dela mesma */
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 min(74%, 100% - 5rem),
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 min(74%, 100% - 5rem),
    rgba(0, 0, 0, 0.35) 90%,
    transparent 100%
  );

  opacity: 0.85;
  transition: opacity 0.5s ease;
}

/* Enquanto a foto do jogo nao chegou, o fundo e so a capa: seguramos ela mais discreta
   para a troca nao dar um solavanco. */
.product-hero.is-loaded {
  opacity: 1;
}

/* Escurece de baixo para cima: em cima a arte aparece, embaixo vira o preto da loja. */
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgb(var(--background) / 0.92) 0%,
    rgb(var(--background) / 0.72) 12%,
    rgb(var(--background) / 0.45) 26%,
    rgb(var(--background) / 0.25) 42%,
    rgb(var(--background) / 0.12) 60%,
    rgb(var(--background) / 0.05) 78%,
    transparent 100%
  );
}

/* Vinheta de leve: fecha os cantos e da um brilho da cor da loja no alto. */
.product-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, hsl(var(--primary) / 0.14), transparent 60%),
    radial-gradient(90% 65% at 50% 105%, rgba(0, 0, 0, 0.25) 0%, transparent 55%),
    linear-gradient(90deg, rgb(var(--background) / 0.35) 0%, transparent 12%, transparent 88%, rgb(var(--background) / 0.35) 100%);
}

/* ==================== */
/* SOBRE O JOGO (estilo Apex: título + linha + GIF Steam + texto) */
/* ==================== */
.game-about {
  max-width: 100%;
}

/* No desktop TODAS as seções abaixo do topo ocupam só a coluna da galeria, com a
   borda direita alinhada numa linha reta — fino como na Apex, não a tela toda. */
@media (min-width: 1024px) {
  .package-lower > section,
  .package-lower > details {
    max-width: calc(100% - 400px - 1.5rem);
  }
}

.game-about.is-empty {
  display: none;
}

.game-about-head {
  margin-bottom: 1.15rem;
}

/* Título compacto, com ícone, como o painel da Apex */
.game-about-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: rgba(248, 250, 252, 0.98);
}

.game-about-title-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #3d6bff;
  flex-shrink: 0;
}

.game-about-rule {
  margin-top: 0.8rem;
  height: 1px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(3, 53, 252, 0.75) 0%, rgba(61, 107, 255, 0.35) 45%, rgba(255, 255, 255, 0.06) 100%);
}

.game-about-body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.92);
}

@media (min-width: 640px) {
  .game-about-body {
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

.game-about-body > p {
  margin: 0 0 1rem;
}

.game-about-body > p:last-child {
  margin-bottom: 0;
}

/* GIF / microtrailer da Steam dentro da descrição */
.game-about-gif {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 1.25rem;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 0.35rem;
  background: #050a14;
  border: 2px solid #0335fc;
  box-shadow:
    0 0 0 1px rgba(3, 53, 252, 0.35),
    0 0 24px -8px rgba(3, 53, 252, 0.55);
}

.game-about-gif video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* GIFs animados da descrição da Steam: proporção nativa, mesma moldura */
.game-about-gif--img {
  aspect-ratio: auto;
  margin: 1.25rem 0 0;
  line-height: 0;
}

.game-about-gif--img img,
.game-about-gif--img video {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

[data-steam-desc-gifs] {
  margin-top: 0.25rem;
}

.game-about-gif__toggle {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.35rem;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.game-about-gif__toggle:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.65);
}

.game-about-gif__toggle svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* ===== Descrição rica da Steam (texto + legendas + mídias no lugar certo) ===== */
/* Compacta, como a Apex: coluna limitada, letra menor, legendas em negrito. */
.game-about-body--rich {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.92);
}

@media (min-width: 640px) {
  .game-about-body--rich {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

.game-about-body--rich h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.98);
}

.game-about-body--rich h3:first-child {
  margin-top: 0;
}

.game-about-body--rich p {
  margin: 0 0 0.85rem;
}

.game-about-body--rich p:last-child {
  margin-bottom: 0;
}

.game-about-body--rich strong {
  color: rgba(248, 250, 252, 0.98);
}

.game-about-body--rich ul,
.game-about-body--rich ol {
  margin: 0.6rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.game-about-body--rich li {
  margin: 0.25rem 0;
}

/* Mídia da descrição: proporção nativa, discreta e compacta */
.game-about-media {
  display: block;
  margin: 1.1rem 0;
  line-height: 0;
  border-radius: 0.55rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050a14;
}

.game-about-media img,
.game-about-media video {
  display: block;
  width: 100%;
  height: auto;
}

/* Resumo curto do catálogo quando a descrição do painel está vazia */
.game-about-summary {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.96);
}

@media (min-width: 640px) {
  .game-about-summary {
    font-size: 1.15rem;
    line-height: 1.68;
  }
}

/* ==================== */
/* PAINÉIS ESCUROS      */
/* ==================== */
.cc-panel {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 45%, rgba(0, 0, 0, 0.3));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    0 18px 40px -24px rgba(0, 0, 0, 0.9);
}

/* Glow discreto só no painel de compra. */
.cc-panel-buy {
  border-color: hsl(var(--primary) / 0.22);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px hsl(var(--primary) / 0.06),
    0 24px 50px -28px hsl(var(--primary) / 0.35);
}

.cc-panel-hover {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-panel-hover:hover {
  border-color: hsl(var(--primary) / 0.35);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
    0 20px 45px -25px hsl(var(--primary) / 0.4);
}

.feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.2);
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--radius) - 0.25rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--radius) - 0.25rem);
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.15);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

/* O package.js esconde #package-sales com .hidden ao trocar de variação — e
   `display: inline-flex` acima venceria o `.hidden` do Tailwind. */
.badge-soft.hidden,
.badge-glow.hidden {
  display: none;
}

.btn-buy {
  box-shadow: 0 10px 30px -12px hsl(var(--primary) / 0.8);
}

/* ==================== */
/* CHECKOUT PREMIUM     */
/* ==================== */
/* Fundo limpo — sem blob/brilho (sujava a página com “mancha” azul). */
.checkout-page {
  position: relative;
  background: transparent;
}

.checkout-header {
  margin-bottom: 1.75rem;
}

.checkout-header__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fafafa;
}

.checkout-header__subtitle {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: rgb(var(--muted-foreground));
}

.checkout-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}

.checkout-stepper__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgb(var(--muted-foreground));
  font-size: 0.8rem;
  font-weight: 500;
}

.checkout-stepper__num {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
}

.checkout-stepper__item.is-active {
  border-color: hsl(var(--primary) / 0.55);
  background: hsl(var(--primary));
  color: #fff;
  box-shadow: 0 8px 22px -12px hsl(var(--primary) / 0.85);
}

.checkout-stepper__item.is-active .checkout-stepper__num {
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.checkout-breadcrumb {
  margin-top: 0.85rem;
}

.checkout-grid {
  display: grid;
  gap: 1.5rem;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem;
    align-items: start;
  }

  .checkout-main {
    gap: 1.25rem;
  }
}

.checkout-card,
.checkout-summary__card {
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.75);
}

.checkout-card__head,
.checkout-summary__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-summary__head {
  justify-content: space-between;
}

.checkout-summary__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.checkout-card__head-text {
  min-width: 0;
}

.checkout-card__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  border: 1px solid hsl(var(--primary) / 0.28);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.checkout-card__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.checkout-card__sub {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: rgb(var(--muted-foreground));
  line-height: 1.3;
}

.checkout-card__body,
.checkout-summary__body {
  padding: 1.15rem;
}

.checkout-gateway {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 0.95rem;
  border-radius: calc(var(--radius) + 0.05rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-gateway:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.3);
}

.checkout-gateway[data-selected='true'] {
  border-color: hsl(var(--primary) / 0.7);
  background: hsl(var(--primary) / 0.08);
  box-shadow:
    0 0 0 1px hsl(var(--primary) / 0.25),
    0 12px 28px -18px hsl(var(--primary) / 0.7);
}

.checkout-gateway__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(var(--background));
  flex-shrink: 0;
}

.checkout-gateway__meta {
  min-width: 0;
}

.checkout-gateway__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
}

.checkout-gateway__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.checkout-gateway__hint {
  font-size: 0.75rem;
  color: rgb(var(--muted-foreground));
}

.checkout-gateway__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.14);
  color: hsl(var(--primary));
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.checkout-gateway__badge--soft {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  font-weight: 600;
}

.checkout-gateway__badge--amber {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  text-transform: none;
}

.checkout-input {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  border-radius: calc(var(--radius) + 0.05rem) !important;
  color: #fafafa !important;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-input:focus-visible {
  outline: none;
  border-color: hsl(var(--primary) / 0.55) !important;
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.18);
}

.checkout-input--icon {
  padding-left: 2.5rem !important;
}

.checkout-field {
  position: relative;
}

.checkout-field__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: rgb(var(--muted-foreground));
  pointer-events: none;
  z-index: 1;
}

.checkout-field__lock {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: rgb(var(--muted-foreground));
  pointer-events: none;
}

.checkout-discord {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  height: 2.75rem;
  border-radius: calc(var(--radius) + 0.05rem);
  border: 1px solid rgba(88, 101, 242, 0.45);
  background: #5865f2;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}

.checkout-discord:hover {
  background: #4752c4;
}

.checkout-summary {
  min-width: 0;
}

@media (min-width: 900px) {
  .checkout-summary {
    position: sticky;
    top: calc(1rem + 80px);
  }
}

.checkout-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.checkout-secure-badge__short {
  display: none;
}

.checkout-item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) auto;
  grid-template-areas:
    'thumb info price'
    'thumb controls controls';
  column-gap: 0.75rem;
  row-gap: 0.5rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: calc(var(--radius) + 0.05rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.checkout-item__thumb {
  grid-area: thumb;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(var(--background));
  object-fit: contain;
}

.checkout-item__info {
  grid-area: info;
  min-width: 0;
}

.checkout-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout-item__unit {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: rgb(var(--muted-foreground));
}

.checkout-item__line-price {
  grid-area: price;
  font-size: 0.95rem;
  font-weight: 700;
  color: hsl(var(--primary));
  white-space: nowrap;
  align-self: start;
  padding-top: 0.1rem;
}

.checkout-item__controls {
  grid-area: controls;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.checkout-item__qty-btn,
.checkout-item__remove {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.checkout-item__qty-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.checkout-item__qty {
  width: 2.35rem;
  height: 2.15rem;
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
}

.checkout-item__remove {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.25);
  margin-left: 0.15rem;
}

.checkout-item__remove:hover {
  background: rgba(248, 113, 113, 0.18);
}

.checkout-coupon {
  margin-top: 1rem;
  border-radius: calc(var(--radius) + 0.05rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.checkout-coupon__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  user-select: none;
}

.checkout-coupon__summary::-webkit-details-marker {
  display: none;
}

.checkout-coupon__summary-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.checkout-coupon__chevron {
  color: rgb(var(--muted-foreground));
  transition: transform 0.2s ease;
}

.checkout-coupon[open] .checkout-coupon__chevron {
  transform: rotate(180deg);
}

.checkout-coupon__panel {
  padding: 0 1rem 1rem;
}

.checkout-coupon__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 100%;
  padding: 0 1rem;
  border-radius: calc(var(--radius) + 0.05rem);
  border: 1px solid hsl(var(--primary) / 0.45);
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 20px -12px hsl(var(--primary) / 0.8);
}

.checkout-coupon__btn:hover {
  background: hsl(var(--primary) / 0.88);
}

.checkout-pricing {
  margin-top: 1rem;
  padding: 0.85rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-pricing__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.3rem 0;
}

.checkout-pricing__discount {
  color: #34d399;
}

.checkout-pricing__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.45rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  font-weight: 700;
}

.checkout-pricing__total .total-value {
  color: hsl(var(--primary));
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.checkout-terms {
  margin: 1.35rem 0 0;
  padding: 0;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  word-spacing: normal;
  color: rgba(255, 255, 255, 0.55);
}

.checkout-terms__link,
.checkout-terms a {
  color: hsl(var(--primary)) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: filter 0.15s ease;
}

.checkout-terms__link:hover,
.checkout-terms a:hover {
  filter: brightness(1.15);
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin-top: 0.9rem;
  list-style: none;
  padding: 0;
}

.checkout-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgb(var(--muted-foreground));
}

.checkout-trust li i {
  color: hsl(var(--primary));
}

.checkout-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.7rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1px solid hsl(var(--primary) / 0.85);
  background: linear-gradient(
    135deg,
    hsl(var(--primary)) 0%,
    hsl(var(--primary) / 0.82) 100%
  );
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow:
    0 14px 32px -14px hsl(var(--primary) / 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.checkout-pay:hover {
  filter: brightness(1.05);
  box-shadow:
    0 16px 36px -12px hsl(var(--primary) / 0.95),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.checkout-pay:active {
  transform: translateY(1px);
}

.checkout-pay:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.checkout-pay-note {
  margin-top: 0.65rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgb(var(--muted-foreground));
}

/* ---- Mobile ---- */
@media (max-width: 899px) {
  .checkout-page .container {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .checkout-header {
    text-align: center;
    margin-bottom: 1rem;
  }

  .checkout-header__title {
    font-size: 1.5rem;
  }

  .checkout-header__subtitle {
    font-size: 0.84rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .checkout-stepper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.85rem;
  }

  .checkout-stepper__item {
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.72rem;
    background: rgba(0, 0, 0, 0.28);
  }

  .checkout-stepper__num {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.68rem;
  }

  .checkout-stepper__item.is-active {
    background: rgba(0, 0, 0, 0.35);
    color: #fafafa;
    border-color: hsl(var(--primary) / 0.75);
    box-shadow: 0 0 0 1px hsl(var(--primary) / 0.2);
  }

  .checkout-stepper__item.is-active .checkout-stepper__num {
    background: hsl(var(--primary) / 0.18);
    color: hsl(var(--primary));
    box-shadow: 0 0 0 1.5px hsl(var(--primary) / 0.7);
  }

  .checkout-breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 0.6rem;
  }

  .checkout-breadcrumb ol {
    font-size: 0.75rem;
  }

  .checkout-grid {
    gap: 0.85rem;
  }

  .checkout-main {
    gap: 0.85rem;
  }

  .checkout-card,
  .checkout-summary__card {
    border-radius: 0.9rem;
    box-shadow: none;
  }

  .checkout-card__head,
  .checkout-summary__head {
    padding: 0.85rem 0.95rem;
    align-items: flex-start;
  }

  .checkout-card__body,
  .checkout-summary__body {
    padding: 0.9rem 0.95rem 1rem;
  }

  .checkout-gateway {
    min-height: 4rem;
    padding: 0.95rem 1rem;
    border-radius: 0.85rem;
  }

  .checkout-gateway[data-selected='true'] {
    border-width: 1.5px;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 1px hsl(var(--primary) / 0.2);
  }

  .checkout-gateway__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .checkout-input,
  .checkout-input.h-11 {
    height: 3rem !important;
    font-size: 1rem !important;
  }

  .checkout-discord {
    height: 3.15rem;
    font-size: 0.95rem;
  }

  .checkout-secure-badge__full {
    display: none;
  }

  .checkout-secure-badge__short {
    display: inline;
  }

  .checkout-summary__items {
    gap: 0.65rem !important;
  }

  .checkout-item {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
    column-gap: 0.75rem;
    row-gap: 0.55rem;
    padding: 0.85rem;
    border-radius: 0.85rem;
  }

  .checkout-item__thumb {
    width: 3.5rem;
    height: 3.5rem;
  }

  .checkout-item__name {
    font-size: 0.88rem;
  }

  .checkout-item__unit {
    font-size: 0.75rem;
  }

  .checkout-item__line-price {
    font-size: 1rem;
  }

  .checkout-item__qty-btn,
  .checkout-item__remove {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.6rem;
  }

  .checkout-item__qty {
    width: 2.75rem;
    height: 2.6rem;
    font-size: 1rem;
    border-radius: 0.6rem;
  }

  .checkout-coupon__summary {
    min-height: 3rem;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
  }

  .checkout-coupon__btn {
    min-width: 5.5rem;
    font-size: 0.9rem;
  }

  .checkout-coupon .flex.h-11 {
    height: 3rem;
  }

  .checkout-terms {
    margin-top: 1.4rem;
    font-size: 0.84rem;
  }

  .checkout-trust {
    justify-content: space-between;
    gap: 0.35rem;
    margin-top: 1rem;
  }

  .checkout-pay {
    height: 3.5rem;
    margin-top: 0.7rem;
    border-radius: 999px;
    font-size: 1.05rem;
    gap: 0.65rem;
  }

  .checkout-pay-note {
    margin-top: 0.55rem;
  }
}

/* ==================== */
/* CARRINHO (DRAWER)    */
/* ==================== */
#cart-drawer.cart-drawer {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.cart-drawer__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 28rem;
  height: 100%;
  max-height: 100dvh;
  padding: 0;
  background: #0f1218;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -18px 0 48px -24px rgba(0, 0, 0, 0.7);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.05rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.cart-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.cart-drawer__icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  border: 1px solid hsl(var(--primary) / 0.28);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.cart-drawer__title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cart-drawer__sub {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  color: rgb(var(--muted-foreground));
}

.cart-drawer__close {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgb(var(--muted-foreground));
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-drawer__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fafafa;
}

.cart-drawer__items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cart-drawer__footer {
  flex-shrink: 0;
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.cart-drawer__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  margin-bottom: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.cart-drawer__pricing p {
  font-size: 0.88rem;
  color: rgb(var(--muted-foreground));
}

.cart-drawer__pricing span {
  font-size: 1.15rem;
  font-weight: 700;
  color: hsl(var(--primary));
  letter-spacing: -0.02em;
}

.cart-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3.25rem;
  border-radius: 0.85rem;
  border: 1px solid hsl(var(--primary) / 0.85);
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary) / 0.82) 100%);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 14px 32px -14px hsl(var(--primary) / 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.cart-drawer__cta:hover {
  filter: brightness(1.05);
}

.cart-drawer__cta:active {
  transform: translateY(1px);
}

.cart-drawer__note {
  margin-top: 0.55rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgb(var(--muted-foreground));
}

/* Item do carrinho — mesma lógica estável do checkout */
.cart-item {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  grid-template-areas:
    'thumb info price'
    'thumb controls controls';
  column-gap: 0.75rem;
  row-gap: 0.55rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.cart-item__thumb {
  grid-area: thumb;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(var(--background));
  object-fit: contain;
}

.cart-item__info {
  grid-area: info;
  min-width: 0;
}

.cart-item__name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item__unit {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgb(var(--muted-foreground));
}

.cart-item__price {
  grid-area: price;
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--primary));
  white-space: nowrap;
  align-self: start;
  padding-top: 0.1rem;
}

.cart-item__controls {
  grid-area: controls;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-item__qty-btn,
.cart-item__remove {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fafafa;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cart-item__qty-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cart-item__qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart-item__qty {
  width: 2.75rem;
  height: 2.6rem;
  text-align: center;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(0, 0, 0, 0.28) !important;
  color: #fafafa !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0 !important;
  appearance: none;
}

.cart-item__remove {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.28);
  margin-left: 0.1rem;
}

.cart-item__remove:hover {
  background: rgba(248, 113, 113, 0.2);
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 0.35rem;
}

.cart-empty__icon {
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 0.65rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary) / 0.28);
  background: hsl(var(--primary) / 0.12);
  color: hsl(var(--primary));
}

.cart-empty__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.cart-empty__text {
  max-width: 16rem;
  font-size: 0.85rem;
  color: rgb(var(--muted-foreground));
  line-height: 1.4;
}

.cart-empty__btn {
  margin-top: 1rem;
  height: 2.85rem;
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-empty__btn:hover {
  background: rgba(255, 255, 255, 0.09);
}

@media (max-width: 640px) {
  .cart-drawer__panel {
    max-width: 100%;
    width: min(100%, 26rem);
  }

  .cart-drawer__cta {
    height: 3.5rem;
    font-size: 1.05rem;
  }

  .cart-item__qty-btn,
  .cart-item__remove {
    width: 2.75rem;
    height: 2.75rem;
  }

  .cart-item__qty {
    width: 2.9rem;
    height: 2.75rem;
  }

  .cart-drawer__close {
    width: 2.75rem;
    height: 2.75rem;
  }

  /* Checkout: botões ainda maiores e estáveis no toque */
  .checkout-item__qty-btn,
  .checkout-item__remove {
    width: 2.75rem;
    height: 2.75rem;
  }

  .checkout-item__qty {
    width: 2.9rem;
    height: 2.75rem;
  }

  .checkout-pay {
    height: 3.6rem;
    font-size: 1.08rem;
  }

  .checkout-discord {
    height: 3.25rem;
  }

  .checkout-input,
  .checkout-input.h-11 {
    height: 3.15rem !important;
  }
}

/* ==================== */
/* FOOTER PREMIUM       */
/* ==================== */
.site-footer {
  margin-top: auto;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0e14;
}

.site-footer__main {
  padding: 2.5rem 0 2rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.35fr 0.9fr 1.15fr;
    align-items: start;
  }
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fafafa;
  margin-bottom: 0.85rem;
}

.site-footer__logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer__logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__desc {
  max-width: 22rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 500;
}

.site-footer__email:hover {
  text-decoration: underline;
}

.site-footer__trust {
  margin-top: 1.35rem;
}

.site-footer__label {
  margin-bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer__badge i {
  color: hsl(var(--primary));
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-footer__links a i {
  color: hsl(var(--primary));
  opacity: 0.9;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__socials {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.site-footer__social:hover {
  border-color: hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.08);
}

.site-footer__social-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  flex-shrink: 0;
}

.site-footer__social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.site-footer__social-icon--discord {
  background: rgba(88, 101, 242, 0.18);
  color: #8b95f7;
}

.site-footer__social-icon--instagram {
  background: rgba(225, 48, 108, 0.16);
  color: #f472b6;
}

.site-footer__social-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.site-footer__social-text b {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__social-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__social-ext {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.28);
  padding: 1rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.site-footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.site-footer__cnpj {
  display: inline-block;
  margin-left: 0.35rem;
  opacity: 0.85;
}

.site-footer__pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.site-footer__pay-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
}

.site-footer__pay-item i {
  color: hsl(var(--primary));
}

.site-footer__pay-item--link {
  text-decoration: none;
}

.site-footer__pay-item--link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 767px) {
  .site-footer__main {
    padding: 2rem 0 1.5rem;
  }

  .site-footer__grid {
    gap: 1.75rem;
  }

  .site-footer__social {
    min-height: 3.85rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}



