input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open,
body.menu-sidebar-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#menu-sidebar[data-state="open"] {
  animation: fade-in 0.35s forwards;
}

#menu-sidebar[data-state="closed"] {
  animation: fade-out 0.35s forwards;
}

#menu-sidebar[data-state="open"] .menu-sidebar-panel {
  animation: slide-in-left 0.35s forwards;
}

#menu-sidebar[data-state="closed"] .menu-sidebar-panel {
  animation: slide-out-left 0.35s forwards;
}

.menu-sidebar {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
}

.menu-sidebar-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.menu-sidebar-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  max-width: 92vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    165deg,
    rgba(12, 20, 32, 0.98) 0%,
    rgba(8, 12, 22, 0.99) 55%,
    rgba(24, 32, 10, 0.25) 100%
  );
  border-right: 3px solid #a8c41f;
  border-radius: 0 1.75rem 1.75rem 0;
  box-shadow:
    4px 0 32px rgba(168, 196, 31, 0.35),
    12px 0 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

@media (min-width: 768px) {
  .menu-sidebar-panel {
    width: min(38vw, 460px);
    min-width: 380px;
  }
}

.menu-sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(168, 196, 31, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-sidebar-close:hover {
  color: #fff;
  border-color: #a8c41f;
  box-shadow: 0 0 14px rgba(168, 196, 31, 0.45);
}

.menu-sidebar-brand {
  display: flex;
  justify-content: center;
  padding: 2rem 1.75rem 1.25rem;
  flex-shrink: 0;
}

.menu-sidebar-logo-link {
  display: inline-flex;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.menu-sidebar-logo-link:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 14px rgba(168, 196, 31, 0.65));
}

.menu-sidebar-logo-img {
  height: 4.5rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .menu-sidebar-logo-img {
    height: 5.5rem;
    max-width: 280px;
  }
}

.menu-sidebar-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.menu-sidebar-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  padding: 0 1.5rem 1.25rem;
  flex-shrink: 0;
}

.menu-sidebar-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 5.5rem;
  padding: 1rem 0.75rem;
  border-radius: 1rem;
  background: rgba(168, 196, 31, 0.1);
  border: 1px solid rgba(168, 196, 31, 0.28);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-sidebar-tile:hover {
  background: rgba(168, 196, 31, 0.2);
  border-color: rgba(168, 196, 31, 0.55);
  box-shadow: 0 0 16px rgba(168, 196, 31, 0.25);
  transform: translateY(-2px);
}

.menu-sidebar-tile-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #a8c41f;
  stroke-width: 2;
}

.menu-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0 1.5rem 1.25rem;
  flex-shrink: 0;
}

.menu-sidebar-action {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.menu-sidebar-action:hover {
  transform: translateX(4px);
  opacity: 0.95;
}

.menu-sidebar-action-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  background-color: #fff;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.menu-sidebar-action-lucide {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.menu-sidebar-action-label {
  flex: 1;
}

.menu-sidebar-action--whatsapp {
  background: linear-gradient(90deg, #25d366 0%, #0d3d1f 100%);
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.35);
}

.menu-sidebar-action--instagram {
  background: linear-gradient(90deg, #f09433 0%, #bc1888 50%, #2a1540 100%);
  box-shadow: 0 0 14px rgba(188, 24, 136, 0.3);
}

.menu-sidebar-action--discord {
  background: linear-gradient(90deg, #5865f2 0%, #1a1035 100%);
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.35);
}

.menu-sidebar-action--policy {
  background: linear-gradient(90deg, #1a1a1a 0%, rgba(168, 196, 31, 0.45) 100%);
  border: 1px solid rgba(168, 196, 31, 0.35);
  box-shadow: 0 0 12px rgba(168, 196, 31, 0.2);
}

.menu-sidebar-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0 1.5rem;
  border-top: 1px solid rgba(168, 196, 31, 0.2);
}

.menu-sidebar-section-title {
  padding: 1rem 1.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8c41f;
}

.menu-sidebar-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-sidebar-cat-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.menu-sidebar-cat-link:hover {
  background: rgba(168, 196, 31, 0.12);
}

.menu-sidebar-cat-link--sub {
  padding-left: 2.25rem;
  font-size: 0.8125rem;
  opacity: 0.88;
}

.menu-sidebar-cat-thumb {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 1px solid rgba(168, 196, 31, 0.4);
}

.menu-sidebar-cat-thumb--placeholder {
  display: block;
  background: linear-gradient(135deg, rgba(168, 196, 31, 0.4), rgba(168, 196, 31, 0.12));
}

.glass-btn-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem;
  border: none;
  background: transparent;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.glass-btn-dots:hover {
  opacity: 0.85;
  transform: scale(1.06);
}

.glass-btn-dots svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 2.25;
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

/* Site bloosh (amarelo fluorescente — grande e difuso) */
.site-bloosh {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.95;
}

.site-bloosh--1 {
  width: min(95vw, 62rem);
  height: min(95vw, 62rem);
  top: -25%;
  right: -18%;
  left: auto;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.32) 0%, rgba(200, 230, 32, 0.12) 45%, transparent 70%);
}

.site-bloosh--2 {
  width: min(75vw, 48rem);
  height: min(75vw, 48rem);
  top: -15%;
  left: -22%;
  background: radial-gradient(circle, rgba(200, 230, 32, 0.26) 0%, rgba(168, 196, 31, 0.1) 50%, transparent 72%);
}

.site-bloosh--3 {
  width: min(85vw, 54rem);
  height: min(85vw, 54rem);
  top: 35%;
  right: -25%;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.2) 0%, rgba(168, 196, 31, 0.08) 55%, transparent 75%);
}

.site-bloosh--4 {
  width: min(70vw, 44rem);
  height: min(70vw, 44rem);
  bottom: -20%;
  left: 10%;
  background: radial-gradient(circle, rgba(168, 196, 31, 0.22) 0%, rgba(200, 230, 32, 0.08) 50%, transparent 72%);
}

@media (min-width: 1024px) {
  .site-bloosh {
    filter: blur(140px);
  }

  .site-bloosh--1 {
    width: 72rem;
    height: 72rem;
    top: -30%;
    right: -22%;
  }

  .site-bloosh--2 {
    width: 56rem;
    height: 56rem;
  }

  .site-bloosh--3 {
    width: 64rem;
    height: 64rem;
  }

  .site-bloosh--4 {
    width: 52rem;
    height: 52rem;
  }
}

/* Reviews section */
.reviews-section {
  border-top: 1px solid rgba(204, 255, 0, 0.15);
}

.reviews-bloosh {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.reviews-bloosh--a {
  width: min(80vw, 50rem);
  height: min(80vw, 50rem);
  top: -20%;
  right: -15%;
  left: auto;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.35) 0%, transparent 68%);
}

.reviews-bloosh--b {
  width: min(70vw, 44rem);
  height: min(70vw, 44rem);
  top: 20%;
  left: -20%;
  background: radial-gradient(circle, rgba(200, 230, 32, 0.28) 0%, transparent 70%);
}

.reviews-bloosh--c {
  width: min(60vw, 38rem);
  height: min(60vw, 38rem);
  bottom: -15%;
  left: 25%;
  background: radial-gradient(circle, rgba(168, 196, 31, 0.24) 0%, transparent 72%);
}

.reviews-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-section-title {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}

.reviews-section-star {
  width: 2.5rem;
  height: 2.5rem;
  color: #ccff00;
  fill: #ccff00;
  filter: drop-shadow(0 0 12px rgba(204, 255, 0, 0.8));
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .reviews-section-star {
    width: 3.25rem;
    height: 3.25rem;
  }
}

/* ── Carrossel de reviews (CSS puro, sem Keen Slider) ── */

/* Linha externa: setas + viewport */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Viewport: janela com perspectiva 3D para o coverflow */
.reviews-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  /* Altura fixa para o coverflow não cortar os cards verticalmente */
  height: 340px;
  position: relative;
}

/* Track: posicionamento absoluto, centralizado, sem translateX */
.reviews-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cada slide: posição absoluta no centro, a JS move via transform */
.reviews-slide {
  position: absolute;
  width: 260px;
  cursor: pointer;
  transition:
    transform  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity    0.45s ease,
    z-index    0s;
}

/* Card base: fundo escuro azulado, borda sutil */
.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 1rem;
  background: rgba(8, 14, 28, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  user-select: none;
}

/* Card central: borda e brilho neon amarelo */
.review-card--center {
  border-color: rgba(204, 255, 0, 0.6);
  box-shadow:
    0 0 28px rgba(204, 255, 0, 0.35),
    0 0 56px rgba(168, 196, 31, 0.18),
    inset 0 0 20px rgba(204, 255, 0, 0.06);
}

.review-card-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.35);
  color: #ccff00;
  margin-bottom: 0.75rem;
}

.review-card-avatar svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Nome acima do texto no card central (conforme imagem) */
.review-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  order: -1; /* Aparece antes do texto */
}

.review-card-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  /* Limita a 4 linhas para manter altura uniforme */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.6rem;
  border-radius: 0.35rem;
  background: rgba(204, 255, 0, 0.15);
  border: 1px solid rgba(204, 255, 0, 0.4);
  color: #ccff00;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-card-stars {
  display: flex;
  gap: 0.2rem;
}

.review-star-icon {
  width: 1rem;
  height: 1rem;
  color: #facc15;
  fill: #facc15;
}

/* Botões de seta */
.reviews-nav-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: rgba(10, 14, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(204, 255, 0, 0.35);
  color: #ccff00;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  z-index: 20;
}

.reviews-nav-btn:hover {
  background: rgba(204, 255, 0, 0.12);
  border-color: rgba(204, 255, 0, 0.7);
  box-shadow: 0 0 18px rgba(204, 255, 0, 0.45);
  transform: scale(1.08);
}

.reviews-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2.5;
}

@media (max-width: 639px) {
  .reviews-nav-btn { display: none; }
  .reviews-viewport { height: 300px; }
  .reviews-slide { width: 220px; }
}

.footer-bg {
  height: 300px;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(204, 255, 0, 0.12), transparent 70%);
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

/* ── Navbar estilo Pandora Keys ── */

/* Wrapper que agrupa announce + navbar juntos no topo */
.prism-navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.prism-navbar-offset {
  height: 5rem;
  pointer-events: none;
}

/* Override: o header agora não é mais sticky individualmente */
.prism-navbar {
  position: static !important;
  z-index: auto !important;
}

.prism-navbar--announce {
  /* announce banner already pushes it down */
}

/* Logo text */
.prism-navbar-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
  font-family: 'Exo 2', 'Geist', sans-serif;
}

/* Search input inside navbar */
.prism-search-input {
  transition: all 0.2s ease;
  padding-left: 2.25rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(204, 255, 0, 0.15);
  border-radius: 9999px;
  height: 2.5rem;
  font-size: 0.875rem;
  outline: none;
  appearance: none;
}

.prism-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.prism-search-input:focus {
  border-color: rgba(204, 255, 0, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(204, 255, 0, 0.08);
}

/* Icon button (mobile search toggle) */
.prism-navbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius, 0.6rem);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.prism-navbar-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Ghost button — Entrar */
.prism-navbar-action--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius, 0.6rem);
  background: transparent;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 640px) {
  .prism-navbar-action--ghost {
    width: auto;
    padding: 0 1rem;
  }
}

.prism-navbar-action--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(204, 255, 0, 0.35);
}

/* Primary button — Carrinho */
.prism-navbar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: var(--radius, 0.6rem);
  border: none;
  background: #ccff00;
  color: #000 !important;
  font-weight: 700;
  font-size: 0.8125rem;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .prism-navbar-action {
    width: auto;
    padding: 0 1rem;
  }
}

.prism-navbar-action:hover {
  opacity: 0.9;
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(204, 255, 0, 0.35);
}

/* Support dropdown button */
.prism-navbar-action-soft,
.glass-btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: var(--radius, 0.6rem);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 640px) {
  .prism-navbar-action-soft,
  .glass-btn-support {
    width: auto;
    padding: 0 0.875rem;
  }
}

.prism-navbar-action-soft:hover,
.glass-btn-support:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(204, 255, 0, 0.3);
}

/* Profile button */
.prism-navbar-profile #profile-button {
  color: #fff;
}

.prism-navbar-profile #profile-button .text-muted-foreground {
  color: rgba(255, 255, 255, 0.55);
}

/* Legacy compat — kept so other pages don't break */
.prism-navbar-search-panel { display: none; }
.prism-navbar-links { display: none; }
.prism-menu-btn { display: none; }

.prism-navbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.prism-navbar-link:hover {
  color: #ccff00;
}

.glass-search-input {
  appearance: none;
  border-radius: 9999px;
  border: 1px solid rgba(204, 255, 0, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.875rem;
  padding: 0 1rem;
}

.glass-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.glass-search-input:focus-visible {
  outline: none;
  border-color: rgba(204, 255, 0, 0.45);
  box-shadow: 0 0 12px rgba(204, 255, 0, 0.25);
}

/* Top donators shine */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}

.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Sidebar categories */
/* PÃ¡gina produto â€” layout Apex Storms, cores Prism (amarelo fluorescente) */

.package-page-root {
  --pkg-accent: #ccff00;
  --pkg-accent-soft: #a8c41f;
  --pkg-accent-dim: rgba(204, 255, 0, 0.12);
  --pkg-accent-border: rgba(204, 255, 0, 0.32);
  --pkg-accent-glow: rgba(204, 255, 0, 0.18);
  --pkg-panel: rgba(10, 10, 15, 0.78);
}

/* DescriÃ§Ã£o: esconde mÃ­dia atÃ© processar blocos [GALLERY] */
#package-description img,
#package-description iframe,
#package-description video {
  display: none !important;
}

.package-description--hydrating img,
.package-description--hydrating iframe,
.package-description--hydrating video {
  display: none !important;
}

#package-description.package-description--ready img[data-keep-in-description='true'],
#package-description.package-description--ready iframe[data-keep-in-description='true'] {
  display: initial !important;
}

#package-description.centralcart-content {
  color: rgb(206 208 214);
}

#package-description strong {
  font-weight: 600;
  color: #fff;
}

/* Grid Apex: mobile galeria â†’ compra â†’ desc | desktop galeria+desc | compra sticky */
.package-page-main-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    'gallery'
    'purchase'
    'desc';
}

.package-page-area-gallery {
  grid-area: gallery;
}

.package-page-area-purchase {
  grid-area: purchase;
}

.package-page-area-desc {
  grid-area: desc;
}

@media (min-width: 1024px) {
  .package-page-main-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    grid-template-areas:
      'gallery purchase'
      'desc purchase';
    align-items: start;
    gap: 2rem;
  }
}

/* PainÃ©is */
.package-panel {
  background: var(--pkg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--pkg-accent-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.55), 0 0 40px -16px var(--pkg-accent-glow);
}

.package-panel--gallery {
  padding: 1rem;
}

.package-gallery-viewer {
  min-height: 12rem;
}

#package-image-wrapper {
  min-height: 12rem;
  background: rgba(255, 255, 255, 0.04);
}

.package-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgb(9, 9, 11);
  background-size: cover;
  background-position: center 22%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-page-bg.is-visible {
  opacity: 1;
}

/* Galeria */
.package-gallery-viewer .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--pkg-accent-border);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, background 0.2s, transform 0.15s;
}

.package-gallery-viewer:hover .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}

.package-gallery-viewer .gallery-arrow:hover {
  background: var(--pkg-accent);
  color: #000;
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow-prev {
  left: 0.75rem;
}

.gallery-arrow-next {
  right: 0.75rem;
}

.gallery-progress-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-progress-bar {
  height: 100%;
  width: 0;
  background: var(--pkg-accent);
  transition: width 0.1s linear;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 5.5rem;
  height: 3.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0.55;
  transition: border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb.active {
  border-color: var(--pkg-accent);
  box-shadow: 0 0 12px var(--pkg-accent-glow);
  opacity: 1;
}

.gallery-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}

/* Painel compra */
.package-purchase-panel {
  background: var(--pkg-panel);
  border: 1px solid var(--pkg-accent-border);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.55), 0 0 40px -16px var(--pkg-accent-glow);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--pkg-accent-dim);
  border: 1px solid var(--pkg-accent-border);
  color: var(--pkg-accent);
}

.product-discount-badge {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 0.4rem;
  background: var(--pkg-accent);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
}

.product-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-quickfacts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-quickfacts__item svg {
  color: var(--pkg-accent);
  flex-shrink: 0;
}

.product-quickfacts__item--ok svg {
  color: #4ade80;
}

.product-variant-selector__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.product-variant-selector__select {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.9rem;
}

.product-variant-selector__select:focus {
  outline: none;
  border-color: var(--pkg-accent-border);
  box-shadow: 0 0 0 2px var(--pkg-accent-dim);
}

.product-buy-btn,
.product-buy-btn.btn-primary {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  color: #0a0a0a !important;
  background: linear-gradient(180deg, #ccff00 0%, #a8c41f 100%) !important;
  border: 1px solid rgba(204, 255, 0, 0.5);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.15s;
}

.product-buy-btn:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 0 22px var(--pkg-accent-glow);
  transform: translateY(-1px);
}

.product-buy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s, border-color 0.2s;
}

.product-cart-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Requisitos */
.requirements-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.requirements-chevron {
  transition: transform 0.3s;
}

.requirements-toggle-btn[aria-expanded='true'] .requirements-chevron {
  transform: rotate(180deg);
}

.requirements-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.requirements-content-wrap.is-open,
.requirements-content-wrap.open {
  max-height: 40rem;
}

.requirements-content-inner {
  padding-top: 1rem;
}

.package-security-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--pkg-accent-dim);
  border: 1px solid var(--pkg-accent-border);
  color: var(--pkg-accent);
}

/* BenefÃ­cios strip */
.package-benefits-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .package-benefits-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .package-benefits-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.package-benefits-strip__card {
  padding: 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(204, 255, 0, 0.12);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.package-benefits-strip__card svg {
  color: var(--pkg-accent);
  margin: 0 auto 0.5rem;
}

.package-benefits-strip__card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem;
}

.package-benefits-strip__card p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.45;
}

/* FAQ */
.package-faq-item {
  border-radius: 0.8rem;
  border: 1px solid var(--pkg-accent-border);
  background: rgba(12, 13, 18, 0.85);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.package-faq-item.is-open,
.package-faq-item[data-open='true'] {
  box-shadow: 0 0 24px var(--pkg-accent-glow);
}

.package-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border: none;
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.package-faq-item.is-open .package-faq-question,
.package-faq-item[data-open='true'] .package-faq-question {
  color: var(--pkg-accent);
}

.package-faq-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s, color 0.2s;
}

.package-faq-item.is-open .package-faq-icon,
.package-faq-item[data-open='true'] .package-faq-icon {
  transform: rotate(180deg);
  color: var(--pkg-accent);
}

.package-faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.package-faq-item.is-open .package-faq-answer-wrapper,
.package-faq-item[data-open='true'] .package-faq-answer-wrapper {
  max-height: 16rem;
}

.package-faq-answer {
  padding: 0 1.15rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* Feature heroes */
.package-feature-hero {
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 14, 0.5);
  backdrop-filter: blur(12px);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.package-feature-hero:hover {
  transform: translateY(-3px);
}

.package-feature-hero--yellow {
  border-color: var(--pkg-accent-border);
}

.package-feature-hero--yellow:hover {
  box-shadow: 0 0 32px var(--pkg-accent-glow);
}

.package-feature-hero--yellow svg {
  color: var(--pkg-accent);
}

.package-feature-hero--green {
  border-color: rgba(34, 197, 94, 0.35);
}

.package-feature-hero--green svg {
  color: #4ade80;
}

.package-feature-hero h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.package-feature-hero p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

#package-image-lightbox.is-open {
  display: flex !important;
}


/* package.css sync */
/* PÃ¡gina produto â€” layout Apex Storms, cores Prism (amarelo fluorescente) */

.package-page-root {
  --pkg-accent: #ccff00;
  --pkg-accent-soft: #a8c41f;
  --pkg-accent-dim: rgba(204, 255, 0, 0.12);
  --pkg-accent-border: rgba(204, 255, 0, 0.32);
  --pkg-accent-glow: rgba(204, 255, 0, 0.18);
  --pkg-panel: rgba(10, 10, 15, 0.78);
}

/* DescriÃ§Ã£o: esconde mÃ­dia atÃ© processar blocos [GALLERY] */
#package-description img,
#package-description iframe,
#package-description video {
  display: none !important;
}

.package-description--hydrating img,
.package-description--hydrating iframe,
.package-description--hydrating video {
  display: none !important;
}

#package-description.package-description--ready img[data-keep-in-description='true'],
#package-description.package-description--ready iframe[data-keep-in-description='true'] {
  display: initial !important;
}

#package-description.centralcart-content {
  color: rgb(206 208 214);
}

#package-description strong {
  font-weight: 600;
  color: #fff;
}

/* Grid Apex: mobile galeria â†’ compra â†’ desc | desktop galeria+desc | compra sticky */
.package-page-main-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    'gallery'
    'purchase'
    'desc';
}

.package-page-area-gallery {
  grid-area: gallery;
}

.package-page-area-purchase {
  grid-area: purchase;
}

.package-page-area-desc {
  grid-area: desc;
}

@media (min-width: 1024px) {
  .package-page-main-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    grid-template-areas:
      'gallery purchase'
      'desc purchase';
    align-items: start;
    gap: 2rem;
  }
}

/* PainÃ©is */
.package-panel {
  background: var(--pkg-panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--pkg-accent-border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.55), 0 0 40px -16px var(--pkg-accent-glow);
}

.package-panel--gallery {
  padding: 1rem;
}

.package-gallery-viewer {
  min-height: 12rem;
}

#package-image-wrapper {
  min-height: 12rem;
  background: rgba(255, 255, 255, 0.04);
}

.package-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: rgb(9, 9, 11);
  background-size: cover;
  background-position: center 22%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-page-bg.is-visible {
  opacity: 1;
}

/* Galeria */
.package-gallery-viewer .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--pkg-accent-border);
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, background 0.2s, transform 0.15s;
}

.package-gallery-viewer:hover .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}

.package-gallery-viewer .gallery-arrow:hover {
  background: var(--pkg-accent);
  color: #000;
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow-prev {
  left: 0.75rem;
}

.gallery-arrow-next {
  right: 0.75rem;
}

.gallery-progress-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-progress-bar {
  height: 100%;
  width: 0;
  background: var(--pkg-accent);
  transition: width 0.1s linear;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 5.5rem;
  height: 3.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0.55;
  transition: border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb.active {
  border-color: var(--pkg-accent);
  box-shadow: 0 0 12px var(--pkg-accent-glow);
  opacity: 1;
}

.gallery-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}

/* Painel compra */
.package-purchase-panel {
  background: var(--pkg-panel);
  border: 1px solid var(--pkg-accent-border);
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.55), 0 0 40px -16px var(--pkg-accent-glow);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--pkg-accent-dim);
  border: 1px solid var(--pkg-accent-border);
  color: var(--pkg-accent);
}

.product-discount-badge {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 0.4rem;
  background: var(--pkg-accent);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
}

.product-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-quickfacts__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-quickfacts__item svg {
  color: var(--pkg-accent);
  flex-shrink: 0;
}

.product-quickfacts__item--ok svg {
  color: #4ade80;
}

.product-variant-selector__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
}

.product-variant-selector__select {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.9rem;
}

.product-variant-selector__select:focus {
  outline: none;
  border-color: var(--pkg-accent-border);
  box-shadow: 0 0 0 2px var(--pkg-accent-dim);
}

.product-buy-btn,
.product-buy-btn.btn-primary {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3.25rem;
  border-radius: 0.75rem;
  font-weight: 700;
  color: #0a0a0a !important;
  background: linear-gradient(180deg, #ccff00 0%, #a8c41f 100%) !important;
  border: 1px solid rgba(204, 255, 0, 0.5);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.15s;
}

.product-buy-btn:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 0 22px var(--pkg-accent-glow);
  transform: translateY(-1px);
}

.product-buy-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s, border-color 0.2s;
}

.product-cart-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Requisitos */
.requirements-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.requirements-chevron {
  transition: transform 0.3s;
}

.requirements-toggle-btn[aria-expanded='true'] .requirements-chevron {
  transform: rotate(180deg);
}

.requirements-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.requirements-content-wrap.is-open,
.requirements-content-wrap.open {
  max-height: 40rem;
}

.requirements-content-inner {
  padding-top: 1rem;
}

.package-security-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--pkg-accent-dim);
  border: 1px solid var(--pkg-accent-border);
  color: var(--pkg-accent);
}

/* BenefÃ­cios strip */
.package-benefits-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .package-benefits-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .package-benefits-strip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.package-benefits-strip__card {
  padding: 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(204, 255, 0, 0.12);
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.package-benefits-strip__card svg {
  color: var(--pkg-accent);
  margin: 0 auto 0.5rem;
}

.package-benefits-strip__card h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem;
}

.package-benefits-strip__card p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.45;
}

/* FAQ */
.package-faq-item {
  border-radius: 0.8rem;
  border: 1px solid var(--pkg-accent-border);
  background: rgba(12, 13, 18, 0.85);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.package-faq-item.is-open,
.package-faq-item[data-open='true'] {
  box-shadow: 0 0 24px var(--pkg-accent-glow);
}

.package-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border: none;
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.package-faq-item.is-open .package-faq-question,
.package-faq-item[data-open='true'] .package-faq-question {
  color: var(--pkg-accent);
}

.package-faq-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s, color 0.2s;
}

.package-faq-item.is-open .package-faq-icon,
.package-faq-item[data-open='true'] .package-faq-icon {
  transform: rotate(180deg);
  color: var(--pkg-accent);
}

.package-faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.package-faq-item.is-open .package-faq-answer-wrapper,
.package-faq-item[data-open='true'] .package-faq-answer-wrapper {
  max-height: 16rem;
}

.package-faq-answer {
  padding: 0 1.15rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* Feature heroes */
.package-feature-hero {
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 14, 0.5);
  backdrop-filter: blur(12px);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.package-feature-hero:hover {
  transform: translateY(-3px);
}

.package-feature-hero--yellow {
  border-color: var(--pkg-accent-border);
}

.package-feature-hero--yellow:hover {
  box-shadow: 0 0 32px var(--pkg-accent-glow);
}

.package-feature-hero--yellow svg {
  color: var(--pkg-accent);
}

.package-feature-hero--green {
  border-color: rgba(34, 197, 94, 0.35);
}

.package-feature-hero--green svg {
  color: #4ade80;
}

.package-feature-hero h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

.package-feature-hero p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

#package-image-lightbox.is-open {
  display: flex !important;
}

/* â”€â”€ Hero / breadcrumb â”€â”€ */
.package-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
}

.package-hero-meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.package-hero-meta__chip--accent {
  color: #0a0a0a;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pkg-accent), var(--pkg-accent-soft));
  border-color: transparent;
  box-shadow: 0 0 18px var(--pkg-accent-glow);
}

.package-hero-meta__sep {
  color: rgba(255, 255, 255, 0.25);
}

/* Brilho nos painéis (sem CSS mask — compatível Chrome/Edge) */
.package-panel--accent {
  box-shadow:
    0 8px 32px -12px rgba(0, 0, 0, 0.55),
    0 0 40px -16px var(--pkg-accent-glow),
    inset 0 1px 0 rgba(204, 255, 0, 0.08);
}

.package-page-root {
  --pkg-accent: #ccff00;
  --pkg-accent-soft: #a8c41f;
  --pkg-accent-dim: rgba(204, 255, 0, 0.12);
  --pkg-accent-border: rgba(204, 255, 0, 0.32);
  --pkg-accent-glow: rgba(204, 255, 0, 0.18);
  --pkg-panel: rgba(10, 10, 15, 0.88);
}

#gallery-card.is-ready,
#gallery-card.gallery-loading {
  opacity: 1 !important;
}

.package-page-main-grid {
  display: grid !important;
}

.gallery-slide-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 8;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--pkg-accent);
  box-shadow: 0 0 12px var(--pkg-accent-glow);
}

.gallery-skeleton {
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 75%
  );
  background-size: 200% 100%;
  animation: pkg-shimmer 1.4s infinite;
}

@keyframes pkg-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

#gallery-card.is-ready {
  opacity: 1 !important;
}

#image-gallery.is-ready {
  opacity: 1 !important;
}

/* VariaÃ§Ãµes estilo card */
.variation-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.variation-option:hover {
  border-color: var(--pkg-accent-border);
  background: var(--pkg-accent-dim);
}

.variation-option[data-selected='true'] {
  border-color: var(--pkg-accent);
  background: var(--pkg-accent-dim);
  box-shadow: 0 0 16px var(--pkg-accent-glow);
}

.var-radio {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
  position: relative;
}

.variation-option[data-selected='true'] .var-radio {
  border-color: var(--pkg-accent);
}

.var-radio-dot {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--pkg-accent);
  opacity: 0;
  transition: opacity 0.2s;
}

.variation-option[data-selected='true'] .var-radio-dot {
  opacity: 1;
}

.package-section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.package-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  background: linear-gradient(90deg, #fff 0%, var(--pkg-accent) 55%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pkg-title-shine 6s linear infinite;
}

@keyframes pkg-title-shine {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.package-feature-hero {
  position: relative;
  overflow: hidden;
}

.package-feature-hero .feature-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  filter: blur(48px);
  transition: opacity 0.25s;
  z-index: 0;
}

.package-feature-hero--yellow .feature-card-glow {
  background: radial-gradient(circle, var(--pkg-accent-glow), transparent 70%);
}

.package-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.package-trust-row__item {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
}

.package-trust-row__item strong {
  display: block;
  font-size: 0.75rem;
  color: var(--pkg-accent);
  font-weight: 700;
}

html {
  scroll-behavior: auto !important;
}

/* Cards de produto (grid) */
.pkg-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(10, 10, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.pkg-card:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: rgba(204, 255, 0, 0.38);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(204, 255, 0, 0.14);
}

.pkg-card--slider:hover {
  transform: scale(1.02);
}

.pkg-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: rgba(0, 0, 0, 0.35);
}

.pkg-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-card__img {
  transform: scale(1.06);
}

.pkg-card__img--sold-out {
  filter: blur(4px);
  opacity: 0.65;
}

.pkg-card__sold-out {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .pkg-card__sold-out {
    font-size: 0.85rem;
  }
}

.pkg-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: #ccff00;
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(204, 255, 0, 0.35);
}

@media (min-width: 640px) {
  .pkg-card__badge {
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.25rem 0.55rem;
    font-size: 0.68rem;
  }
}

.pkg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 0.65rem 0.7rem 0.75rem;
}

@media (min-width: 640px) {
  .pkg-card__body {
    gap: 0.65rem;
    padding: 0.75rem 0.85rem 0.85rem;
  }
}

.pkg-card__title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

@media (min-width: 640px) {
  .pkg-card__title {
    font-size: 0.82rem;
  }
}

.pkg-card__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.pkg-card__compare {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  line-height: 1.2;
  margin: 0 0 0.1rem;
}

@media (min-width: 640px) {
  .pkg-card__compare {
    font-size: 0.68rem;
  }
}

.pkg-card__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 640px) {
  .pkg-card__price {
    font-size: 1.05rem;
  }
}

.pkg-card__pix-note {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.2;
  margin: 0.15rem 0 0;
}

@media (min-width: 640px) {
  .pkg-card__pix-note {
    font-size: 0.62rem;
  }
}

.pkg-card__pix-icon {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0.25rem;
  border-radius: 0.4rem;
  background: rgba(50, 188, 173, 0.15);
  border: 1px solid rgba(50, 188, 173, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .pkg-card__pix-icon {
    width: 1.85rem;
    height: 1.85rem;
  }
}

.pkg-card__pix-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pkg-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  background: #ccff00;
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .pkg-card__btn {
    padding: 0.62rem 0.75rem;
    font-size: 0.74rem;
  }
}

.pkg-card:hover .pkg-card__btn {
  background: #d4ff33;
  box-shadow: 0 4px 16px rgba(204, 255, 0, 0.35);
}