/* Gear UP — vitrine de vendas (tema fogo / noite) */

:root {
  --bg-deep: #070708;
  --bg: #0c0c0f;
  --surface: #131318;
  --surface-2: #1a1a22;
  --text: #e8e8ed;
  --muted: #9898a8;
  --fire: #ff6b00;
  --fire-2: #ff9500;
  --fire-glow: rgba(255, 107, 0, 0.35);
  --accent-blue: #7ec8e3;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 107, 0, 0.16), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(126, 200, 227, 0.13), transparent 42%),
    linear-gradient(rgba(5, 7, 14, 0.82), rgba(5, 7, 14, 0.92)),
    url("assets/gear-up-logo.png");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-attachment: fixed;
  overflow-x: hidden;
}

body.checkout-page {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 107, 0, 0.2), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(126, 200, 227, 0.16), transparent 42%),
    linear-gradient(rgba(5, 7, 14, 0.78), rgba(5, 7, 14, 0.88)),
    url("assets/gear-up-logo.png");
}

body.checkout-page::before {
  content: "";
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.fire-glow {
  position: fixed;
  inset: -40% -20% auto;
  height: 70vh;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    var(--fire-glow),
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(180deg, rgba(7, 7, 8, 0.95), rgba(7, 7, 8, 0.75));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.brand__logo {
  border-radius: 10px;
  box-shadow: 0 0 24px var(--fire-glow);
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav .nav__link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav .nav__link:hover {
  color: var(--text);
}

.nav .nav__link--active {
  color: var(--fire-2);
}

.nav .nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--fire-2));
  border-radius: 2px;
}

.nav__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 0, 0.45);
  color: var(--fire-2) !important;
  background: rgba(255, 107, 0, 0.08);
}

.nav__cta:hover {
  background: rgba(255, 107, 0, 0.18);
  color: #fff !important;
}

.nav__discord {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__discord-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 0.2s, background 0.2s;
}

.nav__discord-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__discord-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.nav__discord-avatar {
  border-radius: 50%;
  object-fit: cover;
}

.nav__discord-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__discord-out {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
}

.nav__discord-out:hover {
  color: var(--text);
}

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-blue);
  margin: 0 0 0.75rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--fire {
  background: linear-gradient(90deg, #fff 0%, var(--fire-2) 45%, var(--fire) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px var(--fire-glow);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__lead strong {
  color: var(--text);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  color: #0a0a0b;
  background: linear-gradient(135deg, var(--fire-2), var(--fire));
  box-shadow: 0 4px 28px var(--fire-glow);
}

.btn--primary:hover {
  box-shadow: 0 6px 36px rgba(255, 107, 0, 0.5);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--surface);
}

.btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: 1.05rem;
}

.hero__art {
  display: flex;
  justify-content: center;
}

.hero__frame {
  position: relative;
  border-radius: 20px;
  padding: 0.5rem;
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.2), transparent 40%, rgba(126, 200, 227, 0.08));
  box-shadow: 0 0 0 1px var(--border), 0 24px 80px rgba(0, 0, 0, 0.55);
}

.hero__image {
  display: block;
  width: min(100%, 420px);
  height: auto;
  border-radius: 16px;
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section--shop {
  background: linear-gradient(180deg, transparent, rgba(255, 107, 0, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.section__intro {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 42rem;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-2px);
}

.feature__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.products {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-card__badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--fire-2);
  margin-bottom: 0.75rem;
}

.product-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.product-card__desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--fire-2);
  margin-bottom: 0.75rem;
}

.product-card__note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.product-card .btn {
  width: 100%;
}

/* Sempre um botão em cima do outro (largura total do card) — não usar row em nenhum breakpoint */
.product-card__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.6rem;
  margin-top: 0.35rem;
  width: 100%;
  box-sizing: border-box;
}

.product-card__actions .btn {
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  flex-shrink: 0;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  box-sizing: border-box;
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
}

.product-card__actions--vip {
  margin-top: 0.65rem;
}

.product-card--vip .product-card__actions {
  flex-direction: column;
  align-items: stretch;
}

/* Imagem opcional (Carros, Pacotes, etc.) — definir image em data-*.js */
.product-card--has-media .product-card__media {
  margin: -0.15rem -0.15rem 0.75rem;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(126, 200, 227, 0.25);
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.28);
}

.product-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section--cta {
  padding-bottom: 4rem;
}

.cta-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  max-width: 640px;
  margin: 0 auto;
}

.cta-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.cta-card__text {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.cta-card__hint {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #050506;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.footer__ch {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer__corp {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.footer__game {
  font-weight: 700;
  font-size: 0.95rem;
}

.footer__copy {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: #5c5c6a;
}

.footer__meta {
  max-width: 1100px;
  margin: 0.5rem auto 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer__meta a {
  color: var(--accent, #f5b544);
  text-decoration: underline;
}

.footer__meta a:hover {
  text-decoration: none;
}

.help-checklist li {
  margin: 0.55rem 0;
}

/* —— Páginas de loja (VIP / Carros / Pacotes) —— */

.page-main {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.page-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1.25rem;
}

.page-head__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-blue);
  margin: 0 0 0.5rem;
}

.page-head__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.page-head__lead {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section--shop-page {
  padding-top: 0.5rem;
}

.section--home-split {
  padding-top: 0.5rem;
}

.home-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.home-sidebar {
  position: sticky;
  top: 90px;
}

.home-sidebar .section__title {
  font-size: clamp(1.6rem, 2.3vw, 2rem);
}

.home-sidebar .section__intro {
  margin-bottom: 1rem;
}

.home-featured-products {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.home-featured-products .product-card {
  padding: 0.95rem;
}

.home-featured-products .product-card__media {
  aspect-ratio: 16 / 9;
}

.home-featured-products .product-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.home-featured-products .product-card__price {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.home-main > .section {
  padding-left: 0;
  padding-right: 0;
}

/* VIP — um nicho (bloco) por tier */
.vip-sections {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

.vip-niche {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  overflow: hidden;
}

.vip-niche__inner {
  padding: 1.75rem 1.5rem 1.5rem;
}

.vip-niche__head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.vip-niche__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.45rem;
  line-height: 1.1;
}

.vip-niche__lead {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 44rem;
}

.vip-niche--diamante {
  background: linear-gradient(180deg, rgba(185, 242, 255, 0.07) 0%, var(--surface-2) 100%);
  border-color: rgba(185, 242, 255, 0.28);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.vip-niche--diamante .vip-niche__head {
  border-bottom-color: rgba(185, 242, 255, 0.22);
}

.vip-niche--diamante .vip-niche__title {
  color: #b9f2ff;
}

.vip-niche--gold {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.06) 0%, var(--surface-2) 100%);
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.vip-niche--gold .vip-niche__head {
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

.vip-niche--gold .vip-niche__title {
  color: #ffd54f;
}

.vip-niche--bronze {
  background: linear-gradient(180deg, rgba(205, 127, 50, 0.09) 0%, var(--surface-2) 100%);
  border-color: rgba(205, 127, 50, 0.32);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.vip-niche--bronze .vip-niche__head {
  border-bottom-color: rgba(205, 127, 50, 0.22);
}

.vip-niche--bronze .vip-niche__title {
  color: #e8a87c;
}

.vip-niche__products {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .vip-niche__products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .vip-niche__products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .vip-niche__products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }

  .vip-niche__products .product-card {
    padding: 1.1rem;
  }

  .vip-niche__products .product-card__vip-title {
    font-size: 1.05rem;
  }

  .vip-niche__products .product-card__price--vip {
    font-size: 1.45rem;
  }
}

/* VIP — card com imagem do tier + dialog de descrição */
.product-card--vip {
  min-height: 0;
}

.product-card__vip-trigger {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: calc(var(--radius) - 2px);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.product-card__vip-trigger:hover {
  background: rgba(255, 255, 255, 0.03);
}

.product-card__vip-trigger:focus-visible {
  outline: 2px solid var(--fire-2);
  outline-offset: 3px;
}

.product-card__vip-media {
  margin: -0.15rem -0.15rem 0.65rem;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.25);
}

.product-card__vip-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__vip-trigger-text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  width: 100%;
}

.product-card__vip-title {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
}

.product-card__price--vip {
  margin-bottom: 0;
}

.product-card__vip-hint {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/*
  <dialog> fechado precisa permanecer invisível. Uma regra só com .vip-detail-dialog
  { display: flex } vence a especificidade de dialog:not([open]) do user-agent e
  deixava TODOS os modais “abertos” na tela (empilhados).
*/
dialog.vip-detail-dialog:not([open]) {
  display: none !important;
}

dialog.vip-detail-dialog[open] {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

dialog.vip-detail-dialog::backdrop {
  background: transparent;
}

.vip-detail-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.vip-detail-dialog__surface {
  position: relative;
  z-index: 1;
  width: min(26rem, calc(100vw - 2rem));
  max-height: min(70vh, 32rem);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.vip-detail-dialog__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.vip-detail-dialog__close:hover {
  color: var(--fire-2);
  background: rgba(255, 107, 0, 0.12);
}

.vip-detail-dialog__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 2rem 0.75rem 0;
  line-height: 1.15;
  color: var(--fire-2);
}

.vip-detail-dialog__body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.vip-detail-dialog__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.9;
}

/* Simulação de compra (checkout demo) — mesmo padrão de visibilidade do <dialog> */
dialog.gear-demo-checkout:not([open]) {
  display: none !important;
}

dialog.gear-demo-checkout[open] {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gear-demo-checkout__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.gear-demo-checkout__surface {
  position: relative;
  z-index: 1;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(85vh, 28rem);
  overflow: auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.gear-demo-checkout__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gear-demo-checkout__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 2rem 0.5rem 0;
  color: var(--fire-2);
}

.gear-demo-checkout__hint {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.gear-demo-checkout__item {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e8e8ec;
}

.gear-demo-checkout__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.gear-demo-checkout__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: inherit;
  font: inherit;
  margin-bottom: 0.5rem;
}

.gear-demo-checkout__input:focus {
  outline: 2px solid rgba(255, 107, 0, 0.45);
  outline-offset: 1px;
}

.gear-demo-checkout__err {
  color: #ff8a80;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

.gear-demo-checkout__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.gear-demo-checkout__actions .btn {
  flex: 1;
  min-width: 7rem;
}

.gear-roblox-row {
  margin: 0.75rem 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.gear-roblox-searchline {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.5rem;
}

.gear-roblox-searchline .gear-demo-checkout__input {
  flex: 1;
  min-width: 10rem;
  margin-bottom: 0;
}

.gear-roblox-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
  padding: 0.5rem;
  border-radius: 8px;
  background: var(--surface-2);
}

.gear-roblox-avatar {
  border-radius: 50%;
  object-fit: cover;
}

.gear-roblox-uname {
  margin: 0;
  font-weight: 600;
}

.gear-roblox-confirm {
  width: 100%;
  margin-top: 0.35rem;
}

.section--tight {
  padding-top: 2rem;
}

.section--links {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.quick-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.quick-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.quick-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.quick-card__title {
  font-weight: 700;
  font-size: 1.1rem;
}

.quick-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-card__badge--vip {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd54f;
}

.product-card__badge--diamante {
  background: rgba(185, 242, 255, 0.12);
  color: #b9f2ff;
  box-shadow: 0 0 0 1px rgba(185, 242, 255, 0.2);
}

.product-card__badge--gold {
  background: rgba(255, 215, 0, 0.14);
  color: #ffd54f;
}

.product-card__badge--bronze {
  background: rgba(205, 127, 50, 0.18);
  color: #e8a87c;
}

.product-card__badge--car {
  background: rgba(126, 200, 227, 0.12);
  color: var(--accent-blue);
}

.product-card__badge--pack {
  background: rgba(87, 242, 135, 0.1);
  color: #7bed9f;
}

.product-card__badge--wheel {
  background: rgba(126, 200, 227, 0.14);
  color: #9ee0f5;
}

.product-card__badge--motor {
  background: rgba(255, 107, 0, 0.14);
  color: #ff9a5c;
}

.product-card__badge--money {
  background: rgba(255, 215, 0, 0.12);
  color: #ffe082;
}

.product-card__badge--xp {
  background: rgba(171, 140, 255, 0.14);
  color: #c4b5fd;
}

.product-card__badge--combo {
  background: rgba(87, 242, 135, 0.12);
  color: #69f0ae;
  box-shadow: 0 0 0 1px rgba(87, 242, 135, 0.2);
}

/* Pacotes — blocos por categoria (sem nova aba no menu) */
.shop-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}

.shop-block {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.shop-block__inner {
  padding: 1.5rem 1.35rem 1.35rem;
}

.shop-block__head {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.shop-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  letter-spacing: 0.05em;
  margin: 0 0 0.4rem;
  line-height: 1.1;
  color: var(--fire-2);
}

.shop-block__lead {
  margin: 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 46rem;
}

.shop-block__products {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .shop-block__products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .shop-block__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cta-card__hint code {
  font-size: 0.85em;
  padding: 0.15rem 0.45rem;
  background: var(--surface-2);
  border-radius: 4px;
  color: var(--fire-2);
}

@media (max-width: 720px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 0.35rem;
  }

  .home-split {
    grid-template-columns: 1fr;
  }

  .home-sidebar {
    position: static;
  }
}

.gear-cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
}

.gear-cart-items {
  display: grid;
  gap: 0.65rem;
  max-height: 260px;
  overflow: auto;
  margin-bottom: 0.75rem;
}

.gear-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: var(--surface-2);
}

.gear-cart-item__actions {
  display: inline-flex;
  gap: 0.3rem;
}

.gear-cart-item__actions .btn {
  min-width: 34px;
  padding: 0.3rem 0.5rem;
}

.gear-cart-coupon {
  margin-top: 0.4rem;
}

.nav-cart {
  position: relative;
}

.nav-cart__button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-cart__icon {
  font-size: 1rem;
}

.nav-cart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--fire-2);
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-cart.has-items .nav-cart__button {
  animation: cartPulse 1.2s ease-in-out infinite;
}

@keyframes cartPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.82; }
}

.nav-cart__preview {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem;
  z-index: 50;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  display: none;
}

.nav-cart:hover .nav-cart__preview,
.nav-cart:focus-within .nav-cart__preview {
  display: block;
}

.nav-cart.nav-cart--flash .nav-cart__preview {
  display: block !important;
}

.gear-cart-toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 95;
  max-width: min(420px, calc(100vw - 2rem));
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  background: rgba(14, 15, 22, 0.96);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gear-cart-toast.gear-cart-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.nav-cart__line {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.nav-cart__more,
.nav-cart__empty,
.nav-cart__total {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 94vw);
  height: 100%;
  background: #0e0f16;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -14px 0 30px rgba(0, 0, 0, 0.45);
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__head h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  color: #fff;
  font-size: 1.5rem;
}

.cart-drawer__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
}

.cart-drawer__items {
  padding: 0.9rem;
  overflow: auto;
  flex: 1;
}

.cart-drawer__line {
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #141624;
  padding: 0.55rem;
  margin-bottom: 0.55rem;
}

.cart-drawer__meta strong {
  display: block;
  font-size: 0.9rem;
}

.cart-drawer__meta small {
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-drawer__actions {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.cart-drawer__actions .btn {
  min-width: 28px;
  padding: 0.2rem 0.45rem;
}

.cart-drawer__foot {
  border-top: 1px solid var(--border);
  padding: 0.9rem;
}

.cart-drawer__total {
  margin: 0 0 0.7rem;
  font-weight: 700;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.checkout-left,
.checkout-right {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.checkout-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(20, 22, 36, 0.92), rgba(13, 14, 24, 0.92));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.checkout-card__title {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  color: var(--fire-2);
  letter-spacing: 0.03em;
}

.checkout-card--sticky {
  position: sticky;
  top: 90px;
}

.checkout-pay-list {
  display: grid;
  gap: 0.6rem;
}

.checkout-pay-option {
  width: 100%;
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #141728;
  color: #d7dae8;
  padding: 0.75rem 0.85rem;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.checkout-pay-option small {
  color: var(--muted);
  margin-left: 0.35rem;
}

.checkout-pay-option.is-active {
  border-color: rgba(126, 200, 227, 0.7);
  box-shadow: 0 0 0 1px rgba(126, 200, 227, 0.25);
}

.checkout-pay-option[data-pay="pix"].is-pix-discount {
  border-color: rgba(87, 242, 135, 0.75);
  background: linear-gradient(180deg, rgba(87, 242, 135, 0.16), rgba(21, 28, 33, 0.95));
  color: #dfffe9;
  box-shadow: 0 0 0 1px rgba(87, 242, 135, 0.28);
}

.checkout-pay-option[data-pay="pix"].is-pix-discount.is-active {
  border-color: rgba(87, 242, 135, 0.95);
  box-shadow: 0 0 0 2px rgba(87, 242, 135, 0.35);
}

.checkout-pay-option:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.checkout-contact-grid {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.checkout-discord-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.checkout-discord-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.checkout-discord-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.checkout-discord-meta strong {
  font-size: 0.95rem;
}

.checkout-discord-meta span {
  font-size: 0.8rem;
  color: var(--muted);
}

.checkout-note {
  margin: 0.2rem 0 0.7rem;
  color: var(--muted);
}

.checkout-note--muted {
  color: var(--muted);
}

.checkout-note--success {
  color: #39ff9f !important;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(57, 255, 159, 0.28);
}

.checkout-note--error {
  color: #ff8f8f;
  font-weight: 600;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.55rem;
}

.checkout-line__actions {
  display: inline-flex;
  gap: 0.3rem;
}

.checkout-line__actions .btn {
  min-width: 34px;
  padding: 0.3rem 0.5rem;
}

.checkout-card__total {
  margin: 0.7rem 0 0;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-total__line {
  display: block;
  margin-top: 0.2rem;
}

.checkout-total__line--coupon,
.checkout-total__line--pix {
  font-size: 0.95rem;
  color: #d5dbe8;
}

.checkout-total__line--coupon strong,
.checkout-total__line--pix strong {
  color: #7cffb4;
}

.checkout-total__line--final {
  margin-top: 0.35rem;
  font-size: 1.02rem;
}

.checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 1rem;
}

@media (max-width: 920px) {
  .checkout-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-card--sticky {
    position: static;
  }
}
