:root {
  --bg: #020817;
  --bg-2: #07122b;
  --card: rgba(11, 24, 55, 0.92);
  --card-soft: rgba(15, 31, 70, 0.75);
  --line: rgba(99, 168, 255, 0.18);
  --line-strong: rgba(247, 208, 109, 0.45);
  --text: #f5f7ff;
  --muted: #b8c4df;
  --blue-1: #7ec8ff;
  --blue-2: #4a8fff;
  --blue-3: #102448;
  --gold: #f7d06d;
  --gold-2: #ffbf1f;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  --radius: 26px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 10%, rgba(52, 119, 255, 0.26), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(0, 172, 255, 0.18), transparent 25%),
    linear-gradient(90deg, rgba(124, 179, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(124, 179, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #020816 0%, #04102a 100%);
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(4, 10, 26, 0.82);
  border-bottom: 1px solid rgba(126, 200, 255, 0.09);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-copy strong {
  line-height: 1;
}

.brand-copy span {
  margin-top: 4px;
}

.brand-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: #021128;
  box-shadow: 0 10px 30px rgba(74, 143, 255, 0.32);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.brand span,
.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d8e3f8;
  font-weight: 500;
}

.nav-links a {
  opacity: 0.92;
  transition: 0.2s ease;
}

.nav-links a:hover { color: var(--blue-1); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #041326;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  box-shadow: 0 14px 34px rgba(74, 143, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.09);
}

.btn.large, .btn-lg {
  min-height: 62px;
  padding-inline: 34px;
  font-size: 1.05rem;
}

.hero { padding: 74px 0 34px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(126, 200, 255, 0.2);
  color: #dce8ff;
  background: rgba(20, 43, 86, 0.56);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.eyebrow.center { margin-bottom: 18px; }
.eyebrow.gold {
  color: #ffecb0;
  border-color: rgba(247, 208, 109, 0.3);
  background: rgba(71, 54, 18, 0.34);
}

.hero-copy h1,
.reserve-copy h1 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 760px;
}

.hero-copy h1 span { color: var(--blue-1); }

.hero-copy p,
.reserve-copy > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.13rem;
  max-width: 720px;
}

.hero-points,
.trust-items,
.reserve-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points { margin-top: 24px; }

.hero-points span,
.trust-items span,
.reserve-benefits .glass-card {
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(17, 34, 72, 0.75);
  border: 1px solid var(--line);
  color: #e2edff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.price-ps5 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 18px;
  width: fit-content;
  max-width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(126, 200, 255, 0.16);
  background: rgba(9, 24, 55, 0.65);
  box-shadow: var(--shadow);
}

.ps5-mini {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(126, 200, 255, 0.18), transparent 68%);
}

.price-note {
  display: grid;
  gap: 4px;
  color: var(--muted);
}

.price-kicker {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-note strong {
  color: var(--blue-1);
  font-size: 2rem;
  line-height: 1;
}

.price-note small {
  color: #d8e5ff;
  font-size: 0.95rem;
}

.hero-card-wrap {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 470px;
  background: linear-gradient(180deg, rgba(12, 28, 64, 0.94), rgba(8, 20, 47, 0.94));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce8ff;
  font-weight: 700;
}

.tag.active {
  color: #061325;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  border-color: transparent;
}

.hero-card-item,
.info-card,
.step-card,
.security-card,
.callout,
.game-card,
.faq-list details,
.package-card,
.reserve-form-card,
.reserve-note,
.summary-panel,
.glass-card {
  background: var(--card-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card-item {
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  box-shadow: none;
}

.hero-card-item + .hero-card-item { margin-top: 12px; }

.hero-card-item h3,
.info-card h3,
.step-card h3,
.security-card h3,
.game-body h3,
.footer h3,
.package-card h3,
.form-block h3,
.summary-panel h3,
.reserve-note h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.hero-card-item p,
.info-card p,
.step-card p,
.security-card p,
.game-body p,
.footer p,
.footer li,
.faq-list p,
.section-title p,
.package-card p,
.reserve-note li,
.summary-panel p,
.glass-card p,
.form-top p {
  color: var(--muted);
}

.trust-strip { padding-bottom: 30px; }
.trust-items { justify-content: center; }

.section { padding: 72px 0; }

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.section-title h2,
.security-card.big h2,
.callout h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-title p {
  margin-top: 16px;
  font-size: 1.12rem;
}

.cards-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three,
.package-grid { grid-template-columns: repeat(3, 1fr); }

.info-card,
.step-card,
.security-card { padding: 24px; }

.icon-box,
.step-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(126, 200, 255, 0.26), rgba(74, 143, 255, 0.22));
  border: 1px solid rgba(126, 200, 255, 0.2);
  margin-bottom: 18px;
}

.step-number {
  font-weight: 900;
  color: #071428;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
}

.packages-section .section-title { max-width: 900px; }

.package-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at top, rgba(255, 191, 31, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(15, 25, 53, 0.96), rgba(9, 18, 43, 0.98));
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(247, 208, 109, 0.1);
}

.package-card.featured {
  border-color: rgba(247, 208, 109, 0.45);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(247, 208, 109, 0.18),
    0 0 26px rgba(247, 208, 109, 0.15);
  transform: translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #ffd34c, #ffbb17);
  color: #14110a;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.package-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ffecb0;
  background: rgba(247, 208, 109, 0.12);
  border: 1px solid rgba(247, 208, 109, 0.25);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.package-top p { margin-top: 8px; }
.package-prices {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.price-row span { color: #dfe9ff; font-weight: 600; }
.price-row strong {
  color: var(--gold-2);
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.package-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: #dce7ff;
}

.package-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  margin-right: 10px;
}

.btn-package {
  width: 100%;
  margin-top: 22px;
  background: linear-gradient(135deg, #ffd24a, #ffbf1f);
  color: #14110a;
  box-shadow: 0 14px 30px rgba(255, 191, 31, 0.18);
}

.games-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.games-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 10px;
  scrollbar-width: none;
  cursor: grab;
}

.games-carousel::-webkit-scrollbar { display: none; }
.games-carousel.dragging { cursor: grabbing; user-select: none; }

.carousel-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(126, 200, 255, 0.18);
  background: rgba(8, 19, 47, 0.9);
  color: #e8f2ff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.game-card {
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover { transform: translateY(-4px); }

.game-cover {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: white;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.68)),
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 35%);
}

.game-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.game-cover.gta::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #82bb5d, #1f3516 70%);
}
.game-cover.fc::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #56d2ff, #0a1733 72%);
}
.game-cover.gow::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #d18b6c, #2a1209 72%);
}
.game-cover.spider::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #ff5252, #3d0612 72%);
}
.game-cover.mk::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #f0d54f, #241f09 72%);
}
.game-cover.plus::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #78caff, #0a1731 72%);
}

.cover-badge,
.cover-title,
.game-cover::after {
  position: relative;
  z-index: 1;
}

.cover-badge {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cover-title {
  font-size: 2rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.game-body { padding: 20px; }

.mini-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(126, 200, 255, 0.12);
  border: 1px solid rgba(126, 200, 255, 0.15);
  color: #dfeeff;
  font-size: 0.82rem;
  font-weight: 800;
}

.games-note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 20px;
}

.security-card { padding: 28px; }
.security-card.big .eyebrow { margin-bottom: 20px; }

.bullet-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.bullet-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: #dce7ff;
}

.security-side { display: grid; gap: 18px; }

.callout {
  padding: 42px 28px;
  text-align: center;
}

.callout p {
  margin: 16px auto 24px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-wrap { max-width: 980px; }

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details { padding: 0 22px; }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
  font-size: 1.08rem;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p { padding-bottom: 22px; }

.footer {
  padding-top: 18px;
  border-top: 1px solid rgba(126, 200, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  padding: 30px 0;
}

.footer-brand { margin-bottom: 16px; }

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(126, 200, 255, 0.08);
  padding: 18px 0 34px;
}

/* RESERVA */
.reserve-page-body { min-height: 100vh; }
.reserve-main { padding-top: 36px; }

.reserve-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.reserve-copy h1 {
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  max-width: 680px;
}

.reserve-benefits {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.glass-card { padding: 18px; }

.reserve-note,
.reserve-form-card {
  padding: 24px;
}

.reserve-note {
  margin-top: 20px;
}

.reserve-note ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.reserve-note li::before {
  content: '•';
  color: var(--blue-1);
  margin-right: 8px;
}

.form-top { margin-bottom: 22px; }
.section-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(126, 200, 255, 0.12);
  border: 1px solid rgba(126, 200, 255, 0.16);
  color: #e6f0ff;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.reserve-form,
.form-grid,
.checks {
  display: grid;
  gap: 16px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-weight: 700;
  color: #e8f0ff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(126, 200, 255, 0.16);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(126, 200, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(74, 143, 255, 0.14);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8fa2c8;
}

.form-block {
  display: grid;
  gap: 16px;
  padding: 0 0 8px;
}

.summary-panel {
  padding: 18px;
  background: rgba(8, 19, 47, 0.94);
}

.summary-panel ul {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  color: #dce7ff;
}

.summary-panel li strong {
  color: #fff2c4;
  font-weight: 800;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.check-item input {
  margin-top: 4px;
  accent-color: #6cc4ff;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* RESPONSIVO */
@media (max-width: 1080px) {
  .hero-grid,
  .security-grid,
  .cards-grid.four,
  .cards-grid.three,
  .package-grid,
  .footer-grid,
  .reserve-layout {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.96rem;
  }

  .games-carousel {
    grid-auto-columns: minmax(250px, 290px);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-cta { display: none; }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

  .nav-links.open { display: flex; }

  .hero,
  .reserve-main { padding-top: 38px; }

  .hero-grid,
  .security-grid,
  .cards-grid.four,
  .cards-grid.three,
  .package-grid,
  .footer-grid,
  .reserve-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 3rem;
  }

  .section { padding: 56px 0; }

  .section-title h2,
  .security-card.big h2,
  .callout h2 {
    font-size: 2.25rem;
  }

  .carousel-arrow { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }

  .brand strong { font-size: 0.98rem; }
  .brand span { letter-spacing: 0.16em; font-size: 0.76rem; }

  .hero-copy h1,
  .reserve-copy h1 { font-size: 2.45rem; }

  .hero-copy p,
  .reserve-copy > p,
  .section-title p,
  .callout p { font-size: 1rem; }

  .hero-actions,
  .form-actions { flex-direction: column; }

  .btn,
  .btn.large,
  .btn-lg { width: 100%; }

  .hero-points,
  .trust-items,
  .social-links {
    gap: 10px;
  }

  .hero-points span,
  .trust-items span {
    width: 100%;
    text-align: center;
  }

  .hero-card,
  .info-card,
  .step-card,
  .security-card,
  .callout,
  .faq-list details,
  .package-card,
  .reserve-form-card,
  .reserve-note,
  .summary-panel {
    border-radius: 22px;
  }

  .game-cover {
    min-height: 330px;
  }

  .cover-title { font-size: 1.75rem; }

  .section-title h2,
  .security-card.big h2,
  .callout h2 {
    font-size: 1.9rem;
  }

  .price-ps5 {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid { grid-template-columns: 1fr; }
}


.brand-logo-wrap {
  overflow: hidden;
  position: relative;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.brand-logo-wrap.has-image .brand-logo-image {
  display: block;
}

.brand-logo-wrap.has-image .brand-logo-fallback {
  display: none;
}

.brand-logo-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.premium-hero-product {
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(126, 200, 255, 0.18);
  background: linear-gradient(180deg, rgba(10, 21, 52, 0.9), rgba(7, 18, 43, 0.78));
  max-width: 520px;
}

.ps5-real-wrap {
  width: 132px;
  min-width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 30%, rgba(126, 200, 255, 0.16), rgba(74, 143, 255, 0.03));
  border: 1px solid rgba(126, 200, 255, 0.16);
}

.ps5-real-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: none;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.35));
}

.ps5-real-wrap.has-image .ps5-real-image {
  display: block;
}

.ps5-real-wrap.has-image .ps5-svg-fallback {
  display: none;
}

.ps5-svg-fallback {
  width: 100%;
  max-width: 110px;
}

.premium-price-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.premium-price-note strong {
  font-size: 2rem;
}

.premium-price-note small {
  color: var(--muted);
}

.games-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.games-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 16px;
  scrollbar-width: none;
  cursor: grab;
}

.games-carousel::-webkit-scrollbar {
  display: none;
}

.games-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.lux-game-card {
  scroll-snap-align: start;
}

.lux-cover {
  position: relative;
  min-height: 460px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(247, 208, 109, 0.24);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  background: linear-gradient(145deg, rgba(8, 17, 42, 0.98), rgba(2, 8, 23, 0.98));
}

.lux-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 128, 0.12), transparent 40%);
  z-index: 0;
}

.official-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}

.lux-cover.has-image .official-cover {
  display: block;
}

.lux-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 1;
}

.lux-cover.has-image .lux-fallback {
  display: none;
}

.cover-gta { background: linear-gradient(135deg, #50763b, #131b11); }
.cover-fc { background: linear-gradient(135deg, #174d7c, #08121f); }
.cover-gow { background: linear-gradient(135deg, #805741, #1f110d); }
.cover-spider { background: linear-gradient(135deg, #9f2033, #20040a); }
.cover-mk { background: linear-gradient(135deg, #73661f, #171506); }
.cover-plus { background: linear-gradient(135deg, #2155bb, #081121); }

.lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,8,23,0.08) 0%, rgba(2,8,23,0.16) 36%, rgba(2,8,23,0.9) 100%);
  z-index: 2;
}

.lux-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 208, 109, 0.12);
  border: 1px solid rgba(247, 208, 109, 0.3);
  color: #ffe8a8;
  font-weight: 800;
  font-size: 0.8rem;
}

.lux-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 22px;
}

.lux-caption h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.lux-caption p {
  color: #d8e2f8;
}

.carousel-arrow {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(247, 208, 109, 0.28);
  background: rgba(8, 19, 47, 0.92);
  color: #ffe8a8;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex: 0 0 auto;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  background: rgba(15, 31, 70, 0.96);
}

@media (max-width: 920px) {
  .games-carousel-shell {
    gap: 8px;
  }

  .carousel-arrow {
    display: none;
  }

  .games-carousel {
    grid-auto-columns: minmax(240px, 84vw);
  }
}

@media (max-width: 720px) {
  .premium-hero-product {
    flex-direction: column;
    align-items: flex-start;
  }

  .ps5-real-wrap {
    width: 112px;
    min-width: 112px;
    height: 112px;
  }

  .lux-cover {
    min-height: 400px;
  }
}


/* Ajustes finos v3 */
.nav-links.open {
  display: flex;
}

@media (max-width: 820px) {
  .nav-links.open {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0 4px;
  }

  .carousel-arrow {
    display: none;
  }

  .section-title p {
    max-width: 92%;
    margin-inline: auto;
  }
}

.ps5-real-wrap {
  width: 132px;
  height: 132px;
  border-radius: 26px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(19,37,78,0.95), rgba(8,20,47,0.95));
  border: 1px solid rgba(126, 200, 255, 0.16);
  display: grid;
  place-items: center;
}

.ps5-real-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.ps5-svg-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 10px;
}

 .brand-logo-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
}

.brand-logo-image {
  width: 42px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-logo-wrap.has-image .brand-logo-fallback,
.ps5-real-wrap.has-image .ps5-svg-fallback,
.lux-cover.has-image .lux-fallback {
  display: none;
}

.brand-logo-wrap:not(.has-image) .brand-logo-image,
.ps5-real-wrap:not(.has-image) .ps5-real-image,
.lux-cover:not(.has-image) .official-cover {
  display: none;
}

.official-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-cover {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16,31,67,0.92), rgba(6,14,34,0.98));
  border: 1px solid rgba(247,208,109,0.22);
  box-shadow: 0 18px 40px rgba(0,0,0,0.34);
}

.lux-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 34%);
  pointer-events: none;
}

.lux-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.88) 100%);
}

.lux-caption, .lux-chip, .lux-fallback {
  position: relative;
  z-index: 2;
}

@media (max-width: 560px) {
  .lux-cover {
    min-height: 400px;
  }
}


/* ===== Pacote cards online + logo premium ===== */

.premium-brand-mark {
  background: linear-gradient(145deg, rgba(20,34,74,0.98), rgba(7,16,39,0.98));
  border: 1px solid rgba(126, 200, 255, 0.2);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand-copy strong {
  font-size: 1.12rem;
  letter-spacing: 0.06em;
}

.brand-copy span {
  letter-spacing: 0.28em;
}

.brand-monogram {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #f4f8ff;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  text-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.brand-monogram::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 25%, rgba(126, 200, 255, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  z-index: 0;
}

.brand-monogram::after {
  content: 'JP';
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff, #9ecaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.games-heading {
  display: grid;
  gap: 8px;
}

.netflix-shell {
  gap: 18px;
  align-items: stretch;
}

.netflix-carousel {
  grid-auto-columns: minmax(240px, 270px);
  gap: 20px;
  padding: 8px 2px 16px;
}

.netflix-card {
  scroll-snap-align: start;
}

.netflix-poster {
  min-height: 380px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  background: #071225 !important;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.netflix-card:hover .netflix-poster {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 58px rgba(0,0,0,0.42);
  border-color: rgba(126, 200, 255, 0.2) !important;
}

.netflix-poster::before {
  display: none !important;
}

.netflix-poster .official-cover {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.netflix-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,10,24,0.04) 0%, rgba(4,10,24,0.16) 38%, rgba(4,10,24,0.92) 100%) !important;
}

.netflix-topline {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.netflix-topline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 28, 58, 0.7);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f1f5ff;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.netflix-caption {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 20px 18px 18px !important;
}

.netflix-caption small {
  display: block;
  color: rgba(228, 236, 255, 0.82);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.netflix-caption h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 10px 20px rgba(0,0,0,0.45);
}

@media (max-width: 920px) {
  .netflix-carousel {
    grid-auto-columns: minmax(220px, 72vw);
  }

  .netflix-poster {
    min-height: 350px !important;
  }
}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .netflix-carousel {
    grid-auto-columns: minmax(220px, 78vw);
    gap: 14px;
  }

  .netflix-poster {
    min-height: 330px !important;
  }

  .netflix-topline span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .netflix-caption {
    padding: 16px !important;
  }

  .netflix-caption h3 {
    font-size: 1.55rem;
  }
}


/* ===== Ajuste fino dos cards dos jogos ===== */
.netflix-poster {
  position: relative !important;
  display: block !important;
}

.netflix-topline {
  position: absolute !important;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 4;
}

.netflix-bottom-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  z-index: 3;
  background: linear-gradient(180deg, rgba(1,5,15,0) 0%, rgba(1,5,15,0.2) 20%, rgba(1,5,15,0.78) 70%, rgba(1,5,15,0.96) 100%);
  pointer-events: none;
}

.netflix-caption {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  z-index: 5 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  gap: 6px;
  padding: 0 18px 18px !important;
}

.netflix-caption small {
  margin: 0 !important;
  color: rgba(241, 246, 255, 0.9);
  text-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

.netflix-caption h3 {
  margin: 0 !important;
  text-shadow: 0 10px 22px rgba(0,0,0,0.65), 0 2px 8px rgba(0,0,0,0.55);
}

.psplus-poster {
  background: linear-gradient(145deg, #0b1736, #040b19) !important;
}

.psplus-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 8px;
  z-index: 1;
}

.psplus-tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(1.05) brightness(0.85);
}

.psplus-mark {
  position: absolute;
  inset: auto 16px 86px auto;
  z-index: 4;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

@media (max-width: 560px) {
  .netflix-topline {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .netflix-bottom-shadow {
    height: 42%;
  }

  .netflix-caption {
    padding: 0 14px 14px !important;
  }

  .netflix-caption small {
    font-size: 0.76rem;
  }

  .netflix-caption h3 {
    font-size: 1.42rem !important;
  }

  .psplus-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    inset: auto 14px 72px auto;
    font-size: 0.9rem;
  }
}


/* ===== Versão 1 - catálogo estilo PlayStation ===== */
.ps-catalog-section {
  padding-top: 82px;
}

.ps-catalog-top {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.ps-catalog-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.ps-catalog-switcher span,
.ps-catalog-switcher a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #dfe7fb;
  font-weight: 700;
}

.ps-catalog-switcher .is-active {
  background: #ffffff;
  color: #081325;
}

.ps-catalog-heading {
  max-width: 980px;
}

.ps-catalog-heading p {
  max-width: 860px;
  margin-inline: auto;
}


  margin-bottom: 30px;
}

.ps-shell {
  gap: 16px;
  align-items: stretch;
}

.ps-carousel {
  grid-auto-columns: minmax(280px, 330px);
  gap: 18px;
  padding: 10px 2px 18px;
}

.ps-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #101828;
  border: none;
  box-shadow: 0 12px 34px rgba(0,0,0,0.28);
}

.ps-arrow:hover {
  background: #f2f5ff;
}

.ps-game-card {
  scroll-snap-align: start;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(11, 22, 51, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ps-game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126,200,255,0.24);
  box-shadow: 0 24px 52px rgba(0,0,0,0.36);
}

.ps-card-media {
  position: relative;
  min-height: 314px;
  background: #0a142c;
  overflow: hidden;
}

.ps-card-media .official-cover {
  display: block !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 35%, rgba(0,0,0,0.16) 100%);
  pointer-events: none;
}

.ps-card-body {
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(10,18,40,0.96), rgba(7,14,32,0.98));
}

.ps-card-category {
  display: inline-block;
  margin-bottom: 10px;
  color: #69b7ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.ps-card-body h3 {
  font-size: 1.5rem;
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.ps-card-body p {
  color: #d7e0f4;
  font-size: 1rem;
  line-height: 1.5;
}

.psplus-catalog-media {
  min-height: 314px;
  background: linear-gradient(145deg, #0f1d44, #040b1a);
}

.psplus-collage-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 8px;
}

.psplus-collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(0.9) saturate(1.04);
}

.psplus-catalog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,10,24,0.02) 0%, rgba(4,10,24,0.14) 38%, rgba(4,10,24,0.82) 100%);
}

.psplus-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.ps-catalog-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.ps-catalog-cta .btn {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: #081325;
  border: none;
  font-weight: 800;
}

@media (max-width: 920px) {
  .ps-carousel {
    grid-auto-columns: minmax(250px, 72vw);
  }

  .ps-arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  .ps-catalog-section {
    padding-top: 68px;
  }

  .ps-catalog-switcher span,
.ps-catalog-switcher a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .ps-carousel {
    grid-auto-columns: minmax(255px, 84vw);
    gap: 14px;
  }

  .ps-card-media,
  .psplus-catalog-media {
    min-height: 282px;
  }

  .ps-card-body {
    padding: 16px 16px 20px;
  }

  .ps-card-body h3 {
    font-size: 1.32rem;
  }

  .ps-card-body p {
    font-size: 0.95rem;
  }

  .psplus-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .ps-catalog-cta .btn {
    width: 100%;
    max-width: 340px;
  }
}

.ps-card-media {
  aspect-ratio: 2 / 3;
  min-height: 0;
}

.ps-card-media .official-cover {
  background: linear-gradient(145deg, #101a3a, #060c1a);
}


/* ===== Ajustes finais pedidos ===== */
.brand-logo-wrap {
  position: relative;
  overflow: hidden;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-logo-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.brand-logo-wrap.has-image .brand-logo-fallback {
  display: none;
}

.brand-logo-wrap:not(.has-image) .brand-logo-image {
  display: none;
}

.brand-logo-wrap.has-image {
  padding: 0;
  background: linear-gradient(145deg, rgba(16,30,69,0.98), rgba(7,16,39,0.98));
}

.price-ps5.premium-hero-product {
  position: relative;
  gap: 22px;
  padding: 20px 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 20%, rgba(126,200,255,0.18), transparent 26%),
    linear-gradient(135deg, rgba(11,27,61,0.96), rgba(7,17,40,0.98));
  border: 1px solid rgba(126, 200, 255, 0.22);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}

.price-ps5.premium-hero-product::after {
  content: '';
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,200,255,0.24), transparent);
}

.ps5-real-wrap {
  width: 132px;
  height: 132px;
  flex-shrink: 0;
  border-radius: 26px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(16,33,74,0.98), rgba(9,18,43,0.98));
  border: 1px solid rgba(126,200,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.ps5-real-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  background: radial-gradient(circle at 25% 20%, rgba(126,200,255,0.16), transparent 38%);
}

.ps5-real-image,
.ps5-svg-fallback {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.ps5-real-image {
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.22));
}

.ps5-real-wrap.has-image .ps5-svg-fallback {
  display: none;
}

.ps5-real-wrap:not(.has-image) .ps5-real-image {
  display: none;
}

.premium-price-note strong {
  font-size: clamp(2rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
  color: #79c5ff;
}

.premium-price-note small {
  max-width: 280px;
  color: #dbe6fb;
}

.ps-game-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ps-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.ps-card-body::after {
  content: '';
  display: block;
  margin-top: auto;
  width: 100%;
  height: 16px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(74,143,255,0.08));
}

.ps-card-body p {
  margin-bottom: 0;
}

.interactive-package-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  cursor: pointer;
}

.interactive-package-card::after {
  content: '';
  position: absolute;
  inset: auto 22px 18px 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,208,109,0.16), transparent);
  pointer-events: none;
}

.interactive-package-card:hover,
.interactive-package-card.is-selected {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(247,208,109,0.42);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.4),
    0 0 0 1px rgba(247,208,109,0.16),
    0 0 30px rgba(247,208,109,0.12);
}

.interactive-package-card.is-selected {
  background:
    radial-gradient(circle at top, rgba(255, 191, 31, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(18, 31, 66, 0.98), rgba(9, 18, 43, 0.99));
}

.interactive-package-card.is-selected .package-pill {
  background: linear-gradient(135deg, rgba(247,208,109,0.2), rgba(255,191,31,0.12));
  border-color: rgba(247,208,109,0.36);
}

.interactive-package-card.is-selected .btn-package,
.interactive-package-card:hover .btn-package {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 191, 31, 0.22);
}

@media (max-width: 560px) {
  .price-ps5.premium-hero-product {
    padding: 16px;
    gap: 14px;
  }

  .ps5-real-wrap {
    width: 88px;
    height: 88px;
    border-radius: 22px;
  }

  .premium-price-note strong {
    font-size: 1.8rem;
  }

  .ps-card-body::after {
    height: 12px;
  }
}
/* ===== FIX FINAL LOGO TOPO ===== */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge,
.brand-logo-wrap,
.premium-brand-mark {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}

.brand-logo-wrap.has-image {
  background: linear-gradient(145deg, rgba(16,30,69,0.98), rgba(7,16,39,0.98)) !important;
}

.brand-logo-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  transform: scale(1.75) !important;
  transform-origin: center !important;
  border-radius: 0 !important;
}

.brand-logo-fallback {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
}

.brand-logo-wrap.has-image .brand-logo-fallback {
  display: none !important;
}

.brand-logo-wrap:not(.has-image) .brand-logo-image {
  display: none !important;
}
/* ===== FIX FINAL REAL DA LOGO DO TOPO ===== */

.brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

.brand-badge,
.brand-logo-wrap,
.premium-brand-mark {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, rgba(16,30,69,0.98), rgba(7,16,39,0.98)) !important;
  border: 1px solid rgba(126, 200, 255, 0.18) !important;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
  position: relative !important;
}

.brand-logo-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.05) translateX(-6px) !important;
  border-radius: 0 !important;
}

.brand-logo-wrap.has-image .brand-logo-image {
  display: block !important;
}

.brand-logo-wrap.has-image .brand-logo-fallback {
  display: none !important;
}

.brand-logo-fallback {
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
}

.brand-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.brand-copy strong {
  display: block !important;
  line-height: 1 !important;
  font-size: 1.08rem !important;
  letter-spacing: 0.03em !important;
  margin: 0 !important;
}

.brand-copy span {
  display: block !important;
  margin-top: 6px !important;
  line-height: 1 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.24em !important;
}

@media (max-width: 560px) {
  .brand-badge,
  .brand-logo-wrap,
  .premium-brand-mark {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .brand-copy strong {
    font-size: 0.98rem !important;
  }

  .brand-copy span {
    font-size: 0.74rem !important;
    letter-spacing: 0.18em !important;
  }
}
/* ===== PREMIUM NEON AZUL COMPLETA ===== */
:root {
  --neon: #57b8ff;
  --neon-2: #23e1ff;
  --neon-3: #8fdcff;
  --deep: #030712;
  --deep-2: #07111f;
  --glass: rgba(8, 20, 42, 0.56);
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(35, 110, 255, 0.22), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(22, 225, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #020611 0%, #030916 28%, #05101f 58%, #030713 100%);
}

.site-bg {
  z-index: -3;
  background:
    radial-gradient(circle at 12% 8%, rgba(76, 127, 255, 0.26), transparent 26%),
    radial-gradient(circle at 87% 12%, rgba(15, 200, 255, 0.18), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(10, 31, 74, 0.45), transparent 55%),
    linear-gradient(rgba(84, 160, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(84, 160, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #020611 0%, #040b18 45%, #020611 100%);
  background-size: auto, auto, auto, 48px 48px, 48px 48px, auto;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .18;
  background-image:
    radial-gradient(rgba(255,255,255,.5) .7px, transparent .9px);
  background-size: 10px 10px;
  mix-blend-mode: soft-light;
}

.premium-header {
  background: linear-gradient(180deg, rgba(4, 10, 26, 0.88), rgba(4, 10, 26, 0.72));
  border-bottom: 1px solid rgba(87, 184, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
}

.premium-brand-mark,
.brand-badge {
  position: relative;
  overflow: hidden;
}

.premium-brand-mark::after,
.brand-badge::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,255,255,.38) 55deg, transparent 110deg);
  animation: spinGlow 4.5s linear infinite;
  opacity: .7;
}

.premium-hero {
  position: relative;
  padding-top: 92px;
  padding-bottom: 48px;
}

.premium-hero::before,
.premium-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .7;
  pointer-events: none;
}

.premium-hero::before {
  width: 260px;
  height: 260px;
  left: 2%;
  top: 30px;
  background: rgba(50, 112, 255, 0.24);
}

.premium-hero::after {
  width: 340px;
  height: 340px;
  right: 4%;
  top: 10px;
  background: rgba(35, 225, 255, 0.14);
}

.premium-eyebrow,
.mini-glass,
.section-tag,
.hero-kicker-row .mini-glass {
  background: linear-gradient(180deg, rgba(10, 28, 56, .88), rgba(8, 20, 42, .66));
  border: 1px solid rgba(87, 184, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 10px 28px rgba(0,0,0,.18);
}

.hero-kicker-row,
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-kicker-row { margin-top: 18px; }
.hero-stats-row { margin-top: 24px; }

.mini-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #dff1ff;
  font-weight: 700;
}

.premium-hero-copy h1 em {
  color: var(--neon-3);
  font-style: normal;
  text-shadow: 0 0 24px rgba(95, 199, 255, .18);
}

.premium-hero-copy p,
.premium-title p,
.band-card p,
.preview-body p {
  color: #bfd0ee;
}

.stat-chip {
  min-width: 132px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(7, 17, 35, 0.92), rgba(10, 25, 52, 0.78));
  border: 1px solid rgba(87, 184, 255, 0.14);
  box-shadow: 0 16px 34px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
}

.stat-chip strong {
  display: block;
  font-size: 1.05rem;
  color: #f4f8ff;
}

.stat-chip small {
  display: block;
  margin-top: 3px;
  color: #89a9d4;
}

.hero-price-card {
  position: relative;
  overflow: hidden;
}

.hero-price-card::before,
.premium-callout::before,
.premium-package-card::before,
.premium-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(108, 208, 255, .48), transparent 30%, transparent 70%, rgba(108, 208, 255, .36));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.premium-console-stage {
  position: relative;
  box-shadow: 0 0 0 1px rgba(87, 184, 255, .18), inset 0 0 35px rgba(87, 184, 255, .05), 0 20px 50px rgba(0,0,0,.28);
}

.premium-console-stage::after {
  content: '';
  position: absolute;
  inset: auto 12px 8px 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(87,184,255,.45), transparent 65%);
  filter: blur(12px);
}

.premium-stage-wrap {
  align-items: stretch;
}

.hero-visual-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  padding-top: 12px;
}

.hero-video-mock {
  position: relative;
  min-height: 340px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(87, 184, 255, .16);
  background:
    radial-gradient(circle at 50% 15%, rgba(56, 120, 255, .22), transparent 28%),
    linear-gradient(145deg, rgba(12, 22, 46, .95), rgba(4, 10, 24, .98));
  box-shadow: 0 24px 70px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(119, 190, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 190, 255, .06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,1), rgba(0,0,0,.55));
}

.hero-video-topline,
.hero-video-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.hero-video-topline {
  top: 16px;
  font-size: .76rem;
  letter-spacing: .18em;
  color: #cfe7ff;
}

.hero-video-bottom {
  bottom: 16px;
  gap: 16px;
}

.hero-video-bottom strong {
  display: block;
  font-size: 1.05rem;
}

.hero-video-bottom small { color: #9ebae0; }

.live-dot {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #eaf7ff;
  border: 1px solid rgba(87, 184, 255, .18);
  background: rgba(8, 18, 36, .78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.live-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d8ff;
  box-shadow: 0 0 16px #35d8ff;
}

.hero-video-content {
  min-height: 340px;
  display: grid;
  place-items: center;
  position: relative;
}

.play-core {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #03101f;
  font-size: 1.7rem;
  font-weight: 900;
  background: linear-gradient(135deg, #7ee0ff, #4b8fff);
  box-shadow: 0 0 36px rgba(87,184,255,.34), 0 14px 34px rgba(0,0,0,.24);
}

.pulse-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(87,184,255,.18);
  box-shadow: 0 0 0 10px rgba(87,184,255,.03);
  animation: pulseRing 2.5s ease-out infinite;
}

.pulse-ring.delay { animation-delay: 1.25s; }

.hero-float-card {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(7, 16, 34, .8);
  border: 1px solid rgba(87, 184, 255, .16);
  box-shadow: 0 22px 45px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}

.hero-float-card span {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  letter-spacing: .14em;
  color: #86bee6;
}

.hero-float-card strong {
  color: #eef7ff;
  font-size: .96rem;
  line-height: 1.35;
}

.float-card-a {
  top: 54px;
  left: -18px;
  animation: floatingY 5.4s ease-in-out infinite;
}

.float-card-b {
  right: -12px;
  bottom: 112px;
  animation: floatingY 6.2s ease-in-out infinite reverse;
}

.premium-side-card {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(10, 21, 45, .9), rgba(7, 16, 35, .9));
  border-color: rgba(87,184,255,.14);
}

.neon-btn,
.neon-gold-btn,
.glass-btn {
  position: relative;
  overflow: hidden;
}

.neon-btn {
  color: #041326;
  background: linear-gradient(135deg, #7ee0ff, #4b8fff 52%, #74cfff);
  box-shadow: 0 18px 42px rgba(76, 140, 255, 0.28), 0 0 28px rgba(35,225,255,.1);
}

.neon-btn:hover {
  box-shadow: 0 22px 52px rgba(76, 140, 255, 0.34), 0 0 36px rgba(35,225,255,.18);
}

.glow-sweep::after,
.neon-gold-btn::after,
.glass-btn::after {
  content: '';
  position: absolute;
  top: -120%;
  bottom: -120%;
  width: 74px;
  left: -120px;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.42), transparent);
  animation: sweep 4.8s linear infinite;
}

.glass-btn {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-color: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}

.neon-gold-btn {
  background: linear-gradient(135deg, #ffe28d, #ffbf1f 55%, #ffd768);
  color: #18130a;
  box-shadow: 0 16px 34px rgba(255,191,31,.18);
}

.premium-trust-strip {
  padding-top: 6px;
}

.premium-trust-items span,
.band-card,
.premium-info-card,
.premium-step-card,
.premium-security-card,
.premium-faq-list details,
.premium-footer .social-links a,
.premium-glass-card,
.premium-reserve-note,
.premium-summary-panel,
.preview-screen {
  background: linear-gradient(180deg, rgba(8, 18, 36, .86), rgba(9, 22, 45, .72));
  border-color: rgba(87,184,255,.14);
}

.premium-highlight-band {
  padding-top: 8px;
}

.premium-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.band-card {
  padding: 24px;
  border-radius: 26px;
  box-shadow: 0 20px 46px rgba(0,0,0,.22);
}

.band-card small {
  display: block;
  margin-bottom: 10px;
  color: #7bc8ff;
  font-weight: 800;
  letter-spacing: .14em;
}

.band-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.premium-game-card,
.premium-package-card,
.premium-callout,
.premium-form-card {
  backdrop-filter: blur(16px);
}

.premium-package-card {
  background:
    radial-gradient(circle at top, rgba(35,225,255,0.09), transparent 30%),
    radial-gradient(circle at bottom right, rgba(76,140,255,.12), transparent 26%),
    linear-gradient(180deg, rgba(9,18,40,.95), rgba(7,15,32,.96));
}

.premium-package-card.is-selected,
.premium-package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0,0,0,.34), 0 0 0 1px rgba(87,184,255,.15), 0 0 30px rgba(35,225,255,.08);
}

.premium-security-card.big,
.premium-callout,
.premium-reserve-box {
  background:
    radial-gradient(circle at top, rgba(35,225,255,0.08), transparent 30%),
    linear-gradient(180deg, rgba(10,22,46,.93), rgba(7,16,34,.95));
}

.premium-callout {
  position: relative;
  overflow: hidden;
}

.premium-callout::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: radial-gradient(circle at center, rgba(87,184,255,.14), transparent 60%);
  pointer-events: none;
}

.premium-footer {
  background: linear-gradient(180deg, rgba(4,10,24,0), rgba(4,10,24,.35));
}

.premium-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
}

.premium-reserve-layout {
  align-items: start;
}

.premium-reserve-copy .reserve-benefits {
  gap: 14px;
}

.reserve-side-preview {
  margin-top: 24px;
}

.preview-screen {
  padding: 22px;
  border-radius: 26px;
  box-shadow: 0 20px 46px rgba(0,0,0,.2);
}

.preview-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.preview-body strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.premium-form-card {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(35,225,255,0.08), transparent 26%),
    linear-gradient(180deg, rgba(9,18,40,.95), rgba(7,15,32,.98));
}

.premium-form-card input,
.premium-form-card select,
.premium-form-card textarea {
  background: rgba(255,255,255,.04);
  border-color: rgba(87,184,255,.14);
}

.premium-form-card input:focus,
.premium-form-card select:focus,
.premium-form-card textarea:focus {
  border-color: rgba(87,184,255,.58);
  box-shadow: 0 0 0 4px rgba(35,225,255,.1), 0 0 18px rgba(87,184,255,.08);
}

.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.summary-list div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  color: #dce7ff;
}

@keyframes sweep {
  0% { left: -140px; }
  100% { left: calc(100% + 140px); }
}

@keyframes pulseRing {
  0% { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.16); opacity: 0; }
}

@keyframes floatingY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spinGlow {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .premium-band-grid { grid-template-columns: 1fr; }
  .float-card-a { left: 0; }
  .float-card-b { right: 0; }
}

@media (max-width: 860px) {
  .hero-visual-panel { max-width: 100%; }
  .hero-video-mock { min-height: 300px; }
  .hero-video-content { min-height: 300px; }
  .hero-float-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .premium-hero { padding-top: 48px; }
}

@media (max-width: 560px) {
  .hero-kicker-row,
  .hero-stats-row,
  .premium-band-grid,
  .preview-top {
    grid-template-columns: 1fr;
  }
  .hero-stats-row { gap: 10px; }
  .stat-chip { width: 100%; }
  .hero-video-topline,
  .hero-video-bottom {
    left: 12px;
    right: 12px;
  }
  .hero-video-topline {
    font-size: .68rem;
    letter-spacing: .11em;
    gap: 10px;
  }
  .hero-video-bottom { align-items: flex-end; }
  .live-dot { font-size: .74rem; padding: 8px 10px; }
  .play-core { width: 74px; height: 74px; font-size: 1.45rem; }
  .pulse-ring { width: 148px; height: 148px; }
}



/* ===== Correção limpa da home (sem duplicações) ===== */
.premium-hero-copy h1 {
  max-width: 760px;
}
.hero-points.compact-mobile-row,
.hero-stats-row.compact-mobile-row {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .hero-kicker-row {
    display: none !important;
  }

  .premium-hero-copy h1 {
    font-size: 2.9rem !important;
    line-height: 0.95;
    max-width: 100%;
  }

  .hero-points.compact-mobile-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-points.compact-mobile-row::-webkit-scrollbar {
    display: none;
  }

  .hero-points.compact-mobile-row span {
    width: auto !important;
    min-width: max-content;
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: 18px;
  }

  .hero-stats-row.compact-mobile-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
  }

  .hero-stats-row.compact-mobile-row::-webkit-scrollbar {
    display: none;
  }

  .hero-stats-row.compact-mobile-row .stat-chip {
    width: auto !important;
    min-width: 160px;
    flex: 0 0 auto;
  }

  .price-ps5.hero-price-card {
    margin-top: 20px;
  }

  .price-ps5.hero-price-card .ps5-real-wrap {
    width: 104px;
    min-width: 104px;
    height: 104px;
  }

  .price-ps5.hero-price-card .ps5-real-image {
    padding: 6px;
  }
}

@media (min-width: 561px) and (max-width: 860px) {
  .hero-kicker-row {
    gap: 10px;
  }

  .hero-kicker-row .mini-glass {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero-stats-row.compact-mobile-row .stat-chip {
    min-width: 120px;
  }
}


/* =========================
   FASE JOFEL - upgrade visual
   ========================= */
:root{
  --neon-blue: #58b8ff;
  --neon-blue-2: #2d7dff;
  --neon-cyan: #79f2ff;
  --neon-green: #52ffb1;
}

body::after{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 20% 12%, rgba(88,184,255,0.08), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(121,242,255,0.05), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(45,125,255,0.08), transparent 30%);
}

.modal-open{ overflow:hidden; }

.premium-header{
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 -1px 0 rgba(121, 242, 255, 0.05);
}

.neon-btn,
.btn-primary{
  position: relative;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(74, 143, 255, 0.28),
    0 0 0 1px rgba(121,242,255,.14),
    0 0 24px rgba(45,125,255,.18);
}

.glow-sweep::before{
  content:'';
  position:absolute;
  top:0;
  left:-120%;
  width:72%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform:skewX(-18deg);
  transition:left .65s ease;
}
.glow-sweep:hover::before{ left:130%; }

.hero-copy h1,
.section-title h2,
.callout h2{
  text-shadow: 0 0 28px rgba(88,184,255,.08);
}

.hero-proof-bar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.hero-proof-bar span,
.testimonial-bottom-bar span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(10, 26, 58, .72);
  border:1px solid rgba(88,184,255,.15);
  color:#eaf5ff;
  font-weight:700;
  box-shadow:0 8px 24px rgba(0,0,0,.18);
}

.premium-highlight-band .band-card,
.neon-panel,
.preview-screen,
.premium-form-card,
.premium-reserve-note,
.premium-summary-panel{
  position:relative;
  overflow:hidden;
}
.premium-highlight-band .band-card::before,
.neon-panel::before,
.preview-screen::before,
.premium-form-card::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(121,242,255,.05), transparent 32%, transparent 70%, rgba(88,184,255,.04));
}
.premium-highlight-band .band-card:hover,
.testimonial-card:hover,
.premium-info-card:hover,
.premium-step-card:hover,
.premium-security-card:hover,
.premium-package-card:hover,
.ps-game-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 24px 50px rgba(0,0,0,.34),
    0 0 0 1px rgba(88,184,255,.12),
    0 0 26px rgba(45,125,255,.08);
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.testimonial-card{
  padding:28px 24px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(10, 20, 45, 0.98), rgba(6, 14, 34, 0.98));
  border:1px solid rgba(88,184,255,.14);
  transition:transform .25s ease, box-shadow .25s ease;
}
.featured-testimonial{
  border-color: rgba(82,255,177,.26);
  box-shadow:
    0 22px 48px rgba(0,0,0,.3),
    0 0 0 1px rgba(82,255,177,.08),
    0 0 32px rgba(82,255,177,.08);
}
.testimonial-stars{
  color:#7fffb9;
  letter-spacing:.16em;
  font-size:1rem;
  margin-bottom:16px;
}
.testimonial-card h3{
  font-size:2rem;
  line-height:1.02;
  margin-bottom:14px;
  letter-spacing:-.03em;
}
.testimonial-card p{
  color:#b9c9e8;
  margin-bottom:20px;
}
.testimonial-user{
  display:flex;
  align-items:center;
  gap:14px;
}
.testimonial-user span{
  display:block;
  color:#90a8d0;
  font-size:.92rem;
}
.avatar-ring{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#061428;
  background:linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  box-shadow:0 0 24px rgba(88,184,255,.3);
}
.testimonial-bottom-bar{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:20px;
}

.reserve-actions-stack{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:8px;
}

.contract-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:120;
}
.contract-modal.open{ display:flex; }
.contract-backdrop{
  position:absolute;
  inset:0;
  background:rgba(1, 5, 16, .76);
  backdrop-filter:blur(10px);
}
.contract-dialog{
  position:relative;
  width:min(700px, 100%);
  padding:26px 24px 22px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(12, 24, 52, 0.98), rgba(7, 16, 36, 0.98));
  border:1px solid rgba(88,184,255,.16);
  box-shadow:
    0 30px 80px rgba(0,0,0,.46),
    0 0 0 1px rgba(121,242,255,.08),
    0 0 36px rgba(45,125,255,.12);
}
.contract-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:1.5rem;
  cursor:pointer;
}
.contract-list{
  list-style:none;
  display:grid;
  gap:12px;
  margin-top:18px;
}
.contract-list li{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:#dfeaff;
}

.mobile-cta-bar{
  position:fixed;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:90;
  display:none;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:10px;
  border-radius:24px;
  background:rgba(4,10,26,.82);
  border:1px solid rgba(88,184,255,.16);
  backdrop-filter:blur(16px);
  box-shadow:0 20px 40px rgba(0,0,0,.3);
}
.mobile-cta-main,
.mobile-cta-alt{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  font-weight:800;
}
.mobile-cta-main{
  color:#041326;
  background:linear-gradient(135deg, var(--neon-cyan), var(--neon-blue-2));
}
.mobile-cta-alt{
  color:#eaf4ff;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:0 16px;
}

.selected-package-banner{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(10, 23, 50, 0.9), rgba(8, 18, 41, 0.9));
  border:1px solid rgba(88,184,255,.14);
}
.selected-package-banner strong{
  color:#fff;
  font-size:1rem;
}
.birth-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
}
.birth-grid input{
  width:100%;
  border:1px solid rgba(126, 200, 255, 0.16);
  background:rgba(255,255,255,0.035);
  color:var(--text);
  border-radius:16px;
  padding:15px 16px;
  outline:none;
}
.birth-grid input:focus{
  border-color: rgba(126, 200, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(74, 143, 255, 0.14);
}

.preview-screen{
  margin-top:22px;
  padding:20px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(10, 22, 48, .94), rgba(6, 15, 35, .96));
  border:1px solid rgba(88,184,255,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}
.preview-top{
  display:flex;
  gap:10px;
  margin-bottom:16px;
}
.preview-body strong{
  display:block;
  font-size:1.18rem;
  margin-bottom:8px;
}
.preview-body p{ color:#b8c4df; }

.mini-glass{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#e9f4ff;
  font-size:.8rem;
  font-weight:800;
}

.interactive-package-card{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.interactive-package-card.active,
.interactive-package-card.is-selected{
  border-color: rgba(247, 208, 109, 0.55);
  box-shadow:
    0 26px 50px rgba(0,0,0,.35),
    0 0 0 1px rgba(247,208,109,.15),
    0 0 30px rgba(247,208,109,.12);
}

.summary-panel ul li{
  padding:10px 12px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  border-radius:14px;
}
.summary-panel ul li strong{
  display:inline-block;
  min-width:110px;
}

@media (max-width: 980px){
  .testimonials-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  .mobile-cta-bar{ display:grid; }
  body{ padding-bottom:96px; }
  .reserve-page-body{ padding-bottom:22px; }
}

@media (max-width: 560px){
  .hero-proof-bar span,
  .testimonial-bottom-bar span{
    width:100%;
    text-align:center;
  }
  .reserve-actions-stack{
    flex-direction:column;
  }
  .birth-grid{
    grid-template-columns:1fr 1fr 1.2fr;
  }
  .testimonial-card h3{
    font-size:1.65rem;
  }
}

/* AJUSTE MOBILE COMPACTO - FASE JOFEL */
@media (max-width: 560px) {
  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em;
  }

  .section-title h2,
  .security-card.big h2,
  .callout h2 {
    font-size: 1.6rem !important;
    line-height: 1.12;
  }

  .hero-copy p,
  .reserve-copy > p,
  .section-title p,
  .callout p {
    font-size: 0.95rem !important;
  }

  .lux-cover {
    min-height: 320px !important;
  }

  .ps-card-body,
  .game-body,
  .hero-card,
  .info-card,
  .step-card,
  .security-card,
  .callout,
  .package-card,
  .reserve-form-card,
  .reserve-note,
  .summary-panel {
    padding: 18px !important;
  }

  .section {
    padding: 44px 0 !important;
  }

  .hero {
    padding: 34px 0 24px !important;
  }

  .premium-band-grid,
  .cards-grid,
  .package-grid,
  .footer-grid,
  .reserve-layout,
  .hero-grid {
    gap: 16px !important;
  }

  .hero-stats-row,
  .hero-proof-bar,
  .hero-points,
  .trust-items {
    gap: 8px !important;
  }

  .stat-chip,
  .hero-proof-bar span,
  .hero-points span,
  .trust-items span {
    padding: 10px 12px !important;
  }

  .ps-catalog-switcher {
    transform: scale(0.92);
    transform-origin: center;
  }
}
@media (max-width: 480px) {

  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 1.9rem !important;
    line-height: 1.2;
  }

  .hero-copy p,
  .reserve-copy p {
    font-size: 0.95rem;
  }

  .section {
    padding: 40px 0;
  }

  .game-cover {
    min-height: 260px;
  }

  .lux-cover {
    min-height: 320px;
  }

  .btn {
    min-height: 48px;
    font-size: 0.95rem;
  }

}.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}.brand-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(126, 200, 255, 0.15);
}html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

.site-bg,
.noise-layer,
.header,
main,
section,
.container {
  max-width: 100%;
}

@media (max-width: 768px) {
  .games-carousel-shell {
    display: block !important;
    overflow: hidden !important;
  }

  .games-carousel {
    display: grid !important;
    grid-auto-flow: row !important;
    grid-template-columns: 1fr !important;
    grid-auto-columns: unset !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
    scroll-snap-type: none !important;
    padding-inline: 0 !important;
    cursor: default !important;
  }

  .lux-game-card,
  .ps-game-card,
  .premium-game-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .carousel-arrow {
    display: none !important;
  }

  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 1.95rem !important;
    line-height: 1.08 !important;
  }

  .section-title h2,
  .security-card.big h2,
  .callout h2 {
    font-size: 1.65rem !important;
    line-height: 1.12 !important;
  }

  .hero-stats-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .lux-cover {
    min-height: 300px !important;
  }

  .premium-bottom-bar,
  .mobile-bottom-bar,
  .floating-cta,
  .bottom-cta {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: calc(100% - 20px) !important;
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 20px) !important;
    max-width: 100% !important;
  }

  .hero-copy,
  .premium-hero-copy,
  .section-title,
  .premium-title {
    overflow: hidden;
  }

  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 1.9rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    max-width: 100% !important;
    word-break: break-word;
  }

  .hero-copy p,
  .reserve-copy > p,
  .section-title p,
  .callout p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }

  .hero-points,
  .hero-stats-row,
  .hero-proof-bar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-points span,
  .hero-proof-bar span,
  .stat-chip {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-points span,
  .hero-proof-bar span {
    padding: 10px 14px !important;
    font-size: 0.95rem !important;
    text-align: center !important;
  }

  .stat-chip {
    padding: 14px 14px !important;
    border-radius: 18px !important;
  }

  .stat-chip strong {
    font-size: 1rem !important;
  }

  .stat-chip small {
    font-size: 0.84rem !important;
    line-height: 1.3 !important;
  }

  .hero-actions .btn,
  .btn,
  .btn.large,
  .btn-lg {
    width: 100% !important;
    min-height: 50px !important;
    font-size: 0.98rem !important;
  }

  .hero-card,
  .hero-card-item,
  .premium-side-card,
  .hero-video-mock,
  .hero-visual-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-card-item h3,
  .info-card h3,
  .step-card h3,
  .security-card h3,
  .package-card h3 {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
  }

  .hero-card-item p,
  .info-card p,
  .step-card p,
  .security-card p,
  .package-card p {
    font-size: 0.94rem !important;
  }

  .games-carousel {
    grid-auto-columns: 100% !important;
    gap: 14px !important;
  }

  .ps-game-card,
  .lux-game-card,
  .premium-game-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .lux-cover,
  .ps-card-media,
  .game-cover {
    min-height: 220px !important;
    max-height: 220px !important;
  }

  .official-cover {
    object-fit: cover !important;
  }

  .ps-card-body,
  .game-body,
  .lux-caption {
    padding: 14px !important;
  }

  .ps-card-body h3,
  .game-body h3,
  .lux-caption h3 {
    font-size: 1rem !important;
    line-height: 1.2 !important;
  }

  .ps-card-body p,
  .game-body p,
  .lux-caption p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }

  .premium-bottom-bar,
  .mobile-bottom-bar,
  .floating-cta,
  .bottom-cta {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    max-width: calc(100% - 20px) !important;
  }

  body {
    padding-bottom: 95px !important;
  }
}

/* ===== AJUSTE FINAL MOBILE JOFEL ===== */
.hero-points.premium-points.compact-mobile-row {
  display: none !important;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 18px) !important;
  }

  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 1.75rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    word-break: break-word !important;
  }

  .hero-copy p,
  .reserve-copy > p,
  .section-title p,
  .callout p {
    font-size: 0.92rem !important;
    line-height: 1.48 !important;
  }

  .hero-kicker-row {
    display: none !important;
  }

  .hero-stats-row.compact-mobile-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 10px !important;
    padding-bottom: 4px !important;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero-stats-row.compact-mobile-row::-webkit-scrollbar {
    display: none;
  }

  .hero-stats-row.compact-mobile-row .stat-chip {
    min-width: 138px !important;
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 12px 12px !important;
  }

  .hero-proof-bar {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-proof-bar span {
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 0.95rem !important;
    text-align: center !important;
  }

  .hero-actions .btn,
  .btn,
  .btn.large,
  .btn-lg {
    min-height: 48px !important;
    font-size: 0.96rem !important;
  }

  .games-carousel-shell {
    display: flex !important;
    overflow: visible !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .games-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-columns: none !important;
    grid-auto-columns: 82vw !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 0 2px 8px !important;
    cursor: grab !important;
    -webkit-overflow-scrolling: touch;
  }

  .games-carousel::-webkit-scrollbar {
    display: none;
  }

  .carousel-arrow {
    display: none !important;
  }

  .ps-game-card,
  .lux-game-card,
  .premium-game-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .lux-cover,
  .ps-card-media,
  .game-cover {
    min-height: 250px !important;
    max-height: 250px !important;
    border-radius: 22px !important;
  }

  .official-cover {
    object-fit: cover !important;
  }

  .ps-card-body,
  .game-body,
  .lux-caption {
    padding: 14px !important;
  }

  .ps-card-body h3,
  .game-body h3,
  .lux-caption h3 {
    font-size: 1rem !important;
    line-height: 1.2 !important;
  }

  .ps-card-body p,
  .game-body p,
  .lux-caption p {
    font-size: 0.88rem !important;
    line-height: 1.42 !important;
  }
}

@media (max-width: 480px) {
  .hero-copy h1,
  .reserve-copy h1 {
    font-size: 1.62rem !important;
  }

  .hero-stats-row.compact-mobile-row .stat-chip {
    min-width: 128px !important;
  }

  .games-carousel {
    grid-auto-columns: 86vw !important;
  }

  .lux-cover,
  .ps-card-media,
  .game-cover {
    min-height: 230px !important;
    max-height: 230px !important;
  }
}


/* FASE JOFEL - CARROSSEL PREMIUM + NOVA LOGO */
.brand-logo-wrap.has-image {
  background: rgba(7, 18, 43, 0.82) !important;
  border: 1px solid rgba(126, 200, 255, 0.22) !important;
  box-shadow: 0 10px 28px rgba(21, 95, 255, 0.22) !important;
}

.brand-logo-wrap.has-image .brand-logo-image {
  display: block !important;
  width: 82% !important;
  height: 82% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 12px rgba(74, 143, 255, 0.16));
}

.hero-price-card {
  display: none !important;
}

@media (max-width: 768px) {
  .games-carousel-shell {
    display: block !important;
    overflow: visible !important;
  }

  .games-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-columns: none !important;
    grid-auto-columns: 88vw !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding: 0 8px 12px 2px !important;
    cursor: grab !important;
    -webkit-overflow-scrolling: touch;
  }

  .ps-game-card,
  .lux-game-card,
  .premium-game-card {
    scroll-snap-align: start !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .lux-cover,
  .ps-card-media,
  .game-cover {
    min-height: 330px !important;
    max-height: 330px !important;
    border-radius: 24px !important;
  }

  .official-cover {
    object-fit: cover !important;
  }

  .ps-card-body,
  .game-body,
  .lux-caption {
    padding: 16px !important;
  }
}

@media (max-width: 480px) {
  .games-carousel {
    grid-auto-columns: 90vw !important;
    gap: 12px !important;
  }

  .lux-cover,
  .ps-card-media,
  .game-cover {
    min-height: 300px !important;
    max-height: 300px !important;
  }
}


/* MICROAJUSTE — SOMENTE CARDS DOS JOGOS NO MOBILE */
@media (max-width: 768px) {
  .games-section .container {
    width: calc(100% - 12px) !important;
  }

  .games-carousel-shell {
    display: block !important;
    overflow: visible !important;
    margin: 0 -2px !important;
  }

  .games-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-columns: none !important;
    grid-auto-columns: 76vw !important;
    gap: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 0 12px 0 !important;
    cursor: grab !important;
  }

  .games-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .carousel-arrow {
    display: none !important;
  }

  .ps-game-card,
  .lux-game-card,
  .premium-game-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    scroll-snap-align: start !important;
    overflow: hidden !important;
  }

  .ps-card-media,
  .lux-cover,
  .game-cover {
    min-height: 350px !important;
    max-height: 350px !important;
    height: 350px !important;
    border-radius: 24px !important;
  }

  .ps-card-media .official-cover,
  .lux-cover .official-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .ps-card-body,
  .game-body,
  .lux-caption {
    padding: 16px 16px 18px !important;
  }
}

@media (max-width: 480px) {
  .games-section .container {
    width: calc(100% - 8px) !important;
  }

  .games-carousel {
    grid-auto-columns: 78vw !important;
    gap: 12px !important;
    padding: 0 0 12px 0 !important;
  }

  .ps-card-media,
  .lux-cover,
  .game-cover {
    min-height: 330px !important;
    max-height: 330px !important;
    height: 330px !important;
  }
}


/* ===== Microajuste final: cards mobile estilo desktop ===== */
@media (max-width: 768px) {
  .games-section .container {
    width: min(100% - 22px, 1180px) !important;
  }

  .games-carousel-shell {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    padding-left: 14px !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  .games-carousel {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: 88vw !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 18px 12px 0 !important;
    cursor: grab !important;
  }

  .games-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .carousel-arrow {
    display: none !important;
  }

  .ps-game-card,
  .lux-game-card,
  .premium-game-card {
    width: 88vw !important;
    min-width: 88vw !important;
    max-width: 88vw !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
  }

  .ps-card-media,
  .lux-cover {
    width: 100% !important;
    min-height: 370px !important;
    max-height: 370px !important;
    height: 370px !important;
    aspect-ratio: auto !important;
    border-radius: 28px 28px 0 0 !important;
    overflow: hidden !important;
    background: #0a142c !important;
  }

  .ps-card-media .official-cover,
  .lux-cover .official-cover {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .ps-card-body {
    width: 100% !important;
    padding: 18px 18px 20px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
  }
}

@media (max-width: 480px) {
  .games-carousel-shell {
    padding-left: 12px !important;
  }

  .games-carousel {
    grid-auto-columns: 89vw !important;
    gap: 14px !important;
    padding-right: 14px !important;
  }

  .ps-game-card,
  .lux-game-card,
  .premium-game-card {
    width: 89vw !important;
    min-width: 89vw !important;
    max-width: 89vw !important;
  }

  .ps-card-media,
  .lux-cover {
    min-height: 355px !important;
    max-height: 355px !important;
    height: 355px !important;
  }
}


/* ===== Cards dos jogos estilo poster / streaming ===== */
.games-section .ps-game-card,
.games-section .lux-game-card,
.games-section .premium-game-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: linear-gradient(180deg, rgba(7,16,38,.96), rgba(5,12,28,.98)) !important;
  border: 1px solid rgba(126, 200, 255, 0.14) !important;
  box-shadow: 0 14px 38px rgba(0,0,0,.34), 0 0 0 1px rgba(126, 200, 255, 0.06), 0 0 24px rgba(74, 143, 255, 0.08) !important;
}

.games-section .ps-card-media,
.games-section .lux-cover {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 2 / 3 !important;
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  border-radius: 28px 28px 0 0 !important;
  overflow: hidden !important;
  background: #050b18 !important;
  border-bottom: 1px solid rgba(126, 200, 255, 0.10) !important;
}

.games-section .ps-card-media .official-cover,
.games-section .lux-cover .official-cover {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  transform: scale(1.001);
}

.games-section .ps-game-card:hover,
.games-section .lux-game-card:hover,
.games-section .premium-game-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.40), 0 0 0 1px rgba(126, 200, 255, 0.10), 0 0 30px rgba(74, 143, 255, 0.12) !important;
}

.games-section .ps-card-body {
  padding: 16px 16px 18px !important;
  background: linear-gradient(180deg, rgba(6,15,36,.98), rgba(4,11,26,.98)) !important;
}

.games-section .ps-card-category {
  display: inline-block !important;
  color: #7ec8ff !important;
  font-weight: 800 !important;
  font-size: .88rem !important;
  margin-bottom: 8px !important;
}

.games-section .ps-card-body h3 {
  margin: 0 0 8px !important;
  font-size: 1rem !important;
  line-height: 1.08 !important;
  color: #f5f7ff !important;
}

.games-section .ps-card-body p {
  margin: 0 !important;
  color: #d8e2f8 !important;
  font-size: .88rem !important;
  line-height: 1.45 !important;
}

@media (max-width: 768px) {
  .games-section .games-carousel-shell {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    padding-left: 12px !important;
    padding-right: 0 !important;
    overflow: visible !important;
  }

  .games-section .games-carousel {
    grid-auto-columns: 76vw !important;
    gap: 14px !important;
    padding: 0 14px 12px 0 !important;
  }

  .games-section .ps-game-card,
  .games-section .lux-game-card,
  .games-section .premium-game-card {
    width: 76vw !important;
    min-width: 76vw !important;
    max-width: 76vw !important;
    border-radius: 26px !important;
  }

  .games-section .ps-card-media,
  .games-section .lux-cover {
    border-radius: 26px 26px 0 0 !important;
    aspect-ratio: 2 / 3 !important;
  }

  .games-section .ps-card-body {
    padding: 14px 14px 16px !important;
  }

  .games-section .ps-card-body h3 {
    font-size: .94rem !important;
  }

  .games-section .ps-card-body p {
    font-size: .82rem !important;
  }
}

@media (max-width: 480px) {
  .games-section .games-carousel {
    grid-auto-columns: 74vw !important;
    gap: 12px !important;
    padding-right: 12px !important;
  }

  .games-section .ps-game-card,
  .games-section .lux-game-card,
  .games-section .premium-game-card {
    width: 74vw !important;
    min-width: 74vw !important;
    max-width: 74vw !important;
  }
}


/* ===== TESTE: CARDS COM VÍDEO ===== */
.ps-card-media {
  position: relative;
  isolation: isolate;
}

.card-trailer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease, transform .45s ease;
  z-index: 2;
  pointer-events: none;
  transform: scale(1.04);
  background: #050b18;
}

.official-cover {
  z-index: 1;
  transition: opacity .35s ease, transform .45s ease, filter .35s ease !important;
}

.lux-game-card.video-active .card-trailer,
.lux-game-card:hover .card-trailer {
  opacity: 1;
  transform: scale(1);
}

.lux-game-card.video-active .official-cover,
.lux-game-card:hover .official-cover {
  opacity: .12;
  transform: scale(1.06);
  filter: blur(2px);
}

.ps-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2,8,23,.02) 0%, rgba(2,8,23,.05) 35%, rgba(2,8,23,.82) 100%);
  opacity: .96;
}

.lux-game-card.video-active,
.lux-game-card:hover {
  box-shadow:
    0 20px 60px rgba(0,0,0,.58),
    0 0 0 1px rgba(126, 200, 255, .16),
    0 0 28px rgba(74,143,255,.22);
}

.trailer-btn {
  margin-top: 12px;
  min-height: 44px;
  border-radius: 14px;
  font-size: .95rem;
}

.trailer-btn::before {
  content: "▶ ";
  font-weight: 900;
}

@media (max-width: 820px) {
  .card-trailer {
    opacity: 0;
  }

  .lux-game-card.video-active .card-trailer {
    opacity: 1;
  }

  .lux-game-card.video-active .official-cover {
    opacity: .1;
    filter: blur(2px);
  }
}



/* ===== JOFEL ULTRA TRAILERS ===== */
.ps-carousel {
  scroll-padding-inline: 18px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.ps-game-card {
  position: relative;
  transition: transform .32s ease, box-shadow .32s ease, filter .32s ease;
  will-change: transform;
}

.ps-game-card:hover {
  transform: translateY(-8px) scale(1.025);
}

.ps-game-card.is-previewing {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(126, 200, 255, 0.18),
    0 0 28px rgba(74, 143, 255, 0.22);
}

.ps-card-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.trailer-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .4s ease;
  transform: scale(1.02);
  background:
    radial-gradient(circle at 50% 15%, rgba(126, 200, 255, 0.12), transparent 35%),
    #020816;
}

.trailer-layer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.ps-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(126, 200, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(2,8,23,0.03) 0%, rgba(2,8,23,0.10) 38%, rgba(2,8,23,0.88) 100%);
  opacity: 1;
  transition: opacity .35s ease, backdrop-filter .35s ease;
}

.ps-game-card.is-previewing .trailer-layer {
  opacity: 1;
  transform: scale(1);
}

.ps-game-card.is-previewing .official-cover {
  opacity: .14 !important;
  transform: scale(1.08);
  filter: blur(7px) saturate(.92);
  transition: opacity .35s ease, transform .45s ease, filter .35s ease;
}

.ps-game-card.is-previewing .ps-card-media::after {
  opacity: .96;
  backdrop-filter: blur(2px);
}

.trailer-btn {
  position: relative;
  overflow: hidden;
}

.trailer-btn::before {
  content: "▶ ";
  font-weight: 900;
}

.trailer-btn.is-active::before {
  content: "✕ ";
}

.trailer-btn.is-active {
  box-shadow: 0 0 0 1px rgba(126, 200, 255, 0.18), 0 0 24px rgba(74,143,255,.24);
}

.ps-game-card .ps-card-category {
  position: relative;
  z-index: 6;
}

@media (min-width: 821px) {
  .ps-carousel {
    scroll-snap-type: x proximity;
  }
}

@media (max-width: 820px) {
  .ps-carousel {
    gap: 16px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 14px;
  }

  .ps-game-card {
    scroll-snap-align: start;
  }

  .ps-game-card.is-previewing {
    transform: translateY(-6px) scale(1.01);
  }
}


/* ===== AJUSTE DE GAMEPLAYS ===== */
.ps-card-media {
  aspect-ratio: 16 / 9;
  min-height: auto;
  border-radius: 24px;
}

.ps-card-media .official-cover,
.lux-cover .official-cover {
  object-fit: cover !important;
  object-position: center;
}

.trailer-layer {
  background: #000;
}

.trailer-layer iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ps-game-card.is-previewing .official-cover {
  opacity: .08 !important;
  transform: scale(1.02);
  filter: blur(1px) saturate(.98);
}

.ps-game-card.is-previewing .ps-card-media::after {
  opacity: .35;
  backdrop-filter: none;
}

.psplus-link-btn {
  text-decoration: none;
}


/* === LOGO JOFEL PLAY AJUSTADA === */
.brand {
  gap: 12px;
}

.brand-mark-jp {
  width: 52px;
  height: 42px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}

.brand-mark-jp .brand-logo-image,
.logo-jp {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(74, 143, 255, 0.28));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.brand-copy span {
  color: #dce6ff;
  letter-spacing: 0.24em;
}

.footer-mark-jp {
  width: 58px;
  height: 46px;
}

.footer-brand {
  align-items: center;
}

.footer-brand .brand-copy strong {
  font-size: 1.04rem;
}

.footer-brand .brand-copy span {
  color: #b8c4df;
}

@media (max-width: 560px) {
  .brand {
    gap: 10px;
  }

  .brand-mark-jp {
    width: 46px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy span {
    letter-spacing: 0.16em;
    font-size: 0.74rem;
  }

  .footer-mark-jp {
    width: 52px;
    height: 40px;
  }
}
