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 {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#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;
}

#package-description {
  max-height: 70vh !important;
  overflow-y: auto !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--primary-rgb, 68, 238, 142), 0.2) transparent;
}

#package-description * {
  max-height: none !important;
}

#package-description::-webkit-scrollbar {
  width: 6px;
}

#package-description::-webkit-scrollbar-track {
  background: transparent;
}

#package-description::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.2);
  border-radius: 3px;
}

#package-description::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.4);
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%);
}

.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%;
  }
}

.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 */

/* ========================================== */
/* ESTILOS XANDYN SHOP - NAVBAR */
/* ========================================== */
:root {
  --white-alpha-10: rgba(255, 255, 255, 0.1);
  --white-alpha-20: rgba(255, 255, 255, 0.2);
}

#top-announce {
  background: linear-gradient(90deg, var(--primary), hsl(var(--primary) / 0.7), var(--primary));
  background-size: 250% 100%;
  animation: gradient-pulse 6s ease infinite;
}

@keyframes gradient-pulse {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.navbar-inner {
  position: relative;
  padding: 0.75rem 1.5rem;
  background: rgba(var(--background), 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--white-alpha-10);
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.verified-badge {
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 3px var(--primary));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 7px var(--primary));
  }
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s;
}

.nav-icon-btn:hover {
  background-color: var(--white-alpha-10);
}

/* Estilos do Menu Mobile Overlay */
#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

body.menu-open #mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--background));
  max-height: 100vh;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .mobile-menu-panel {
  transform: translateX(0);
}

/* Header do Menu Hamburger */
.hamburger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid hsl(var(--primary) / 0.2);
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 68, 238, 142), 0.05), transparent);
}

.hamburger-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  transition: all 0.2s ease;
}

.hamburger-close-btn:hover {
  background: hsl(var(--primary) / 0.2);
  transform: rotate(90deg);
}

/* Conteúdo do Menu */
.hamburger-content {
  height: calc(100vh - 73px);
  overflow-y: auto;
  padding: 1rem;
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--primary)) transparent;
}

.hamburger-content::-webkit-scrollbar {
  width: 4px;
}

.hamburger-content::-webkit-scrollbar-track {
  background: transparent;
}

.hamburger-content::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 10px;
}

/* User Section */
.hamburger-user-section {
  margin-bottom: 1.5rem;
}

/* Navigation */
.hamburger-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hamburger-nav-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.04);
  border: 1px solid rgba(var(--primary-rgb, 68, 238, 142), 0.15);
  border-radius: 0.75rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgb(var(--foreground));
  transition: all 0.2s ease;
  position: relative;
  text-align: left;
  will-change: transform;
}

.hamburger-nav-item:hover {
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.08);
  border-color: rgba(var(--primary-rgb, 68, 238, 142), 0.3);
  transform: translateX(4px);
}

.hamburger-nav-item:active {
  transform: translateX(2px);
}

.hamburger-nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.1);
  border: 1px solid rgba(var(--primary-rgb, 68, 238, 142), 0.2);
  border-radius: 0.625rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hamburger-nav-item:hover .hamburger-nav-icon {
  transform: scale(1.05);
}

/* Quick Actions */
.hamburger-quick-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--primary) / 0.1);
}

.hamburger-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.04);
  border: 1px solid rgba(var(--primary-rgb, 68, 238, 142), 0.15);
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.2s ease;
  will-change: transform;
}

.hamburger-quick-action:hover {
  background: rgba(var(--primary-rgb, 68, 238, 142), 0.08);
  border-color: rgba(var(--primary-rgb, 68, 238, 142), 0.3);
  transform: translateY(-2px);
}

.hamburger-quick-action:active {
  transform: translateY(0);
}

.hamburger-quick-action i {
  color: rgb(var(--foreground));
  transition: transform 0.2s ease;
}

.hamburger-quick-action:hover i {
  transform: scale(1.1);
}

/* Support Panel (Deslizante) */
.support-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--background));
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10;
}

.support-panel.support-panel-active {
  transform: translateX(0);
}

/* Responsivo */
@media (max-width: 640px) {
  .hamburger-header {
    padding: 1rem 0.875rem;
  }

  .hamburger-content {
    padding: 0.875rem;
  }

  .hamburger-nav-item {
    padding: 0.75rem 0.875rem;
    font-size: 0.875rem;
  }

  .hamburger-nav-icon {
    width: 36px;
    height: 36px;
  }
}

/* ========================================== */
/* NOVA LÓGICA DE PAINÉIS DESLIZANTES - REMOVIDA */
/* ========================================== */

/* ========================================== */
/* ESTILOS XANDYN SHOP - BANNER 3D */
/* ========================================== */
#category-select {
  color-scheme: dark;
}

#category-select option {
  background-color: rgb(var(--background));
  color: rgb(var(--foreground));
  padding: 8px 12px;
}

#category-select option:hover,
#category-select option:focus,
#category-select option:checked {
  background-color: rgb(var(--primary) / 0.2);
  color: rgb(var(--foreground));
}

/* --- ESTILOS DO BANNER 3D (BOAPLAY) --- */
.boaplay-hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding-top: 2rem;
}

.boaplay-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 340px;
  margin: 0 auto;
  perspective: 1200px;
}

.boaplay-carousel-track {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.boaplay-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), filter 0.6s ease, opacity 0.6s ease;
  user-select: none;
  background: rgba(255, 255, 255, 0.05);
}

.boaplay-carousel-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.boaplay-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  pointer-events: none;
  transition: transform 0.3s ease-in-out;
}

.boaplay-carousel-slide:hover img {
  transform: scale(1.05);
}

/* Estados dos Slides para o efeito 3D */
.slide-active {
  transform: translateX(0) translateZ(0) rotateY(0);
  filter: blur(0px);
  opacity: 1;
  z-index: 10;
}

.slide-prev {
  transform: translateX(-55%) translateZ(-250px) rotateY(35deg);
  filter: blur(4px);
  opacity: 0.6;
  z-index: 5;
}

.slide-next {
  transform: translateX(55%) translateZ(-250px) rotateY(-35deg);
  filter: blur(4px);
  opacity: 0.6;
  z-index: 5;
}

.slide-hidden {
  transform: translateX(0) translateZ(-500px) rotateY(0);
  filter: blur(8px);
  opacity: 0;
  z-index: 1;
}

/* Setas de Navegação */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 20;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.arrow.left {
  left: -25px;
}

.arrow.right {
  right: -25px;
}

/* Pontos de Navegação */
.boaplay-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

.boaplay-carousel-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.boaplay-carousel-dot.active {
  background-color: hsl(var(--primary));
  transform: scale(1.3);
}

/* ========================================== */
/* ESTILOS DOS BOTÕES ANIMADOS (NEON) */
/* ========================================== */
.container-botoes {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  position: relative;
  z-index: 10;
}

.buttons-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.button {
  --primary: #06b6d4;
  --neutral-1: #22d3ee;
  --neutral-2: #0891b2;
  --radius: 14px;
  cursor: pointer;
  border-radius: var(--radius);
  text-shadow: 0 0 5px rgba(6, 182, 212, 0.9), 0 0 10px rgba(34, 211, 238, 0.7);
  border: none;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.9), 0 0 20px rgba(34, 211, 238, 0.8), inset 0 0 10px rgba(6, 182, 212, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .3s ease;
  min-width: 200px;
  padding: 20px;
  height: 58px;
  font-family: "Galano Grotesque", Poppins, Montserrat, sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 0;
  color: #000;
  background-color: #000;
  z-index: 2;
  overflow: hidden;
  animation: neonGlow 3s ease-in-out infinite;
}

.button-secondary {
  --primary: #F2F20A;
  --neutral-1: #F2F20A;
  --neutral-2: #D4D400;
  background: linear-gradient(135deg, #F2F20A 0%, #D4D400 100%);
  border-color: #F2F20A;
  color: #1A1A1A;
  text-shadow: 0 0 5px rgba(242, 242, 10, 0.9), 0 0 10px rgba(242, 242, 10, 0.7);
  box-shadow: 0 0 10px rgba(242, 242, 10, 0.9), 0 0 20px rgba(242, 242, 10, 0.8), inset 0 0 10px rgba(242, 242, 10, 0.6);
  animation: neonGlow-secondary 3s ease-in-out infinite;
}

.button-secondary:hover {
  background: linear-gradient(135deg, #FFFF3B 0%, #F2F20A 100%);
  box-shadow: 0 0 15px rgba(242, 242, 10, 1), 0 0 30px rgba(255, 255, 59, 0.9), inset 0 0 15px rgba(242, 242, 10, 0.7);
  transform: translateY(-3px);
  letter-spacing: .5px;
  color: #1A1A1A;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
}

.button-affiliate {
  --primary: #44EE8E;
  --neutral-1: #44EE8E;
  --neutral-2: #2BCF78;
  background: linear-gradient(135deg, #44EE8E 0%, #2BCF78 100%);
  border-color: #44EE8E;
  text-shadow: 0 0 5px rgba(68, 238, 142, 0.9), 0 0 10px rgba(68, 238, 142, 0.7);
  box-shadow: 0 0 10px rgba(68, 238, 142, 0.9), 0 0 20px rgba(68, 238, 142, 0.8), inset 0 0 10px rgba(68, 238, 142, 0.6);
  animation: neonGlow-affiliate 3s ease-in-out infinite;
}

.button-affiliate:hover {
  box-shadow: 0 0 15px rgba(68, 238, 142, 1), 0 0 30px rgba(68, 238, 142, 0.9), inset 0 0 15px rgba(68, 238, 142, 0.7);
  transform: translateY(-3px);
  letter-spacing: .5px;
  color: #000;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
}

.button-affiliate .outline::before {
  background: conic-gradient(from 180deg, transparent 60%, #44EE8E 80%, transparent 100%);
}

.button-affiliate:hover .outline {
  opacity: 1;
}

.button-affiliate:hover .outline::before {
  animation-play-state: running;
}

.button:hover {
  box-shadow: 0 0 15px rgba(6, 182, 212, 1), 0 0 30px rgba(34, 211, 238, 0.9), inset 0 0 15px rgba(6, 182, 212, 0.7);
  transform: translateY(-3px);
  letter-spacing: .5px;
  color: #000;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
}

.button:active {
  transform: scale(1);
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.3), 0 10px 3px -3px rgba(0, 0, 0, 0.2);
}

.button:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2.5px solid transparent;
  background: linear-gradient(var(--neutral-1), var(--neutral-2)) padding-box, linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)) border-box;
  z-index: 0;
  transition: all .4s ease;
}

.button:hover::after {
  transform: scale(1.05, 1.1);
  box-shadow: inset 0 -1px 3px 0 rgba(255, 255, 255, 1);
}

.button::before {
  content: "";
  inset: 7px 6px 6px 6px;
  position: absolute;
  background: linear-gradient(to top, var(--neutral-1), var(--neutral-2));
  border-radius: 30px;
  filter: blur(0.5px);
  z-index: 2;
}

.state p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.state .icon {
  position: absolute;
  left: 0;
  top: -4px;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state .icon svg {
  overflow: visible;
}

.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity .4s ease;
  inset: -2px -3.5px;
}

.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(from 180deg, transparent 60%, white 80%, transparent 100%);
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}

.button:hover .outline {
  opacity: 1;
}

.button:hover .outline::before {
  animation-play-state: running;
}

.state p span {
  display: block;
  opacity: 0;
  animation: slideDownText .8s ease forwards calc(var(--i) * 0.03s);
}

.button:hover p span {
  opacity: 1;
  animation: wave .5s ease forwards calc(var(--i) * 0.02s);
}

.button:focus p span {
  opacity: 1;
  animation: disapear .6s ease forwards calc(var(--i) * 0.03s);
}

.state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.state--sent {
  display: none;
}

.state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

.button:focus .state--default {
  position: absolute;
}

.button:focus .state--sent {
  display: flex;
}

.button:focus .state--sent span {
  opacity: 0;
  animation: slideDownText .8s ease forwards calc(var(--i) * 0.2s);
}

.button:focus .state--sent .icon svg {
  opacity: 0;
  animation: appear 1.2s ease forwards .8s;
}

.state--default .icon svg {
  animation: land .6s ease forwards;
}

.button:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}

.button:focus .state--default svg {
  animation: takeOff .8s linear forwards;
}

.button:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}

.state--default .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
}

.button:focus .state--default .icon:before {
  animation: contrail .8s linear forwards;
}

/* Keyframes para os botões */
@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.9), 0 0 20px rgba(34, 211, 238, 0.8), inset 0 0 10px rgba(6, 182, 212, 0.6);
  }
  50% {
    box-shadow: 0 0 15px rgba(6, 182, 212, 1), 0 0 30px rgba(34, 211, 238, 0.9), inset 0 0 15px rgba(6, 182, 212, 0.7);
  }
}

@keyframes neonGlow-secondary {
  0%, 100% {
    box-shadow: 0 0 10px rgba(242, 242, 10, 0.9), 0 0 20px rgba(242, 242, 10, 0.8), inset 0 0 10px rgba(242, 242, 10, 0.6);
  }
  50% {
    box-shadow: 0 0 15px rgba(242, 242, 10, 1), 0 0 30px rgba(255, 255, 59, 0.9), inset 0 0 15px rgba(242, 242, 10, 0.7);
  }
}

@keyframes neonGlow-affiliate {
  0%, 100% {
    box-shadow: 0 0 10px rgba(68, 238, 142, 0.9), 0 0 20px rgba(68, 238, 142, 0.8), inset 0 0 10px rgba(68, 238, 142, 0.6);
  }
  50% {
    box-shadow: 0 0 15px rgba(68, 238, 142, 1), 0 0 30px rgba(68, 238, 142, 0.9), inset 0 0 15px rgba(68, 238, 142, 0.7);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes wave {
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
    color: var(--primary);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@keyframes slideDownText {
  0% {
    opacity: 0;
    transform: translateY(-20px) translateX(5px) rotate(-90deg);
    color: var(--primary);
    filter: blur(5px);
  }
  30% {
    opacity: 1;
    transform: translateY(4px) translateX(0) rotate(0);
    filter: blur(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px) translateX(0) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes disapear {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(5px) translateY(20px);
    color: var(--primary);
    filter: blur(5px);
  }
}

@keyframes takeOff {
  0% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    transform: translateX(70px) rotate(45deg) scale(2);
  }
  100% {
    opacity: 0;
    transform: translateX(160px) rotate(45deg) scale(0);
  }
}

@keyframes land {
  0% {
    transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2);
    opacity: 0;
    filter: blur(3px);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes appear {
  0% {
    opacity: 0;
    transform: scale(4) rotate(-40deg);
    color: var(--primary);
    filter: blur(4px);
  }
  30% {
    opacity: 1;
    transform: scale(0.6);
    filter: blur(1px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contrail {
  0% {
    width: 0;
    opacity: 1;
  }
  8% {
    width: 15px;
  }
  60% {
    opacity: .7;
    width: 80px;
  }
  100% {
    opacity: 0;
    width: 160px;
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .boaplay-hero {
    margin-top: -10px !important;
    margin-bottom: 1rem;
  }

  .boaplay-carousel-wrapper {
    max-width: 100%;
    width: 100%;
    height: 160px;
    perspective: none;
    touch-action: pan-y;
    cursor: grab;
  }

  .boaplay-carousel-wrapper:active {
    cursor: grabbing;
  }

  .boaplay-carousel-slide {
    border-radius: 12px;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .boaplay-carousel-slide img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .arrow {
    display: none !important;
  }

  .slide-active {
    transform: translateX(0) translateZ(0) rotateY(0) !important;
    filter: blur(0px) !important;
    opacity: 1 !important;
    z-index: 10 !important;
  }

  .slide-prev, .slide-next, .slide-hidden {
    transform: translateX(0) translateZ(0) rotateY(0) !important;
    filter: blur(0px) !important;
    opacity: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .boaplay-carousel-dots {
    margin-top: 0.75rem;
  }

  .container-botoes {
    flex-direction: column;
    gap: 8px !important;
    margin-top: 0.5rem !important;
  }

  .buttons-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px !important;
  }

  .buttons-row .button,
  .buttons-row .button-secondary {
    min-width: 150px;
    width: 45%;
    max-width: 200px;
    margin-top: 0 !important;
    font-size: 13px !important;
    padding: 10px !important;
    height: 48px !important;
  }

  .button-affiliate {
    width: 90%;
    max-width: 300px;
    margin-top: 0 !important;
    font-size: 14px !important;
    padding: 12px !important;
    height: 48px !important;
  }
}

@media (max-width: 480px) {
  .boaplay-carousel-wrapper {
    width: 100%;
    height: 140px;
  }

  .buttons-row .button,
  .buttons-row .button-secondary {
    font-size: 12px !important;
    padding: 8px !important;
    min-width: 140px;
  }
}

/* ========================================== */
/* ESTILOS DO FOOTER */
/* ========================================== */
.footer-bg {
  width: 100%;
  height: 400px;
  background: radial-gradient(ellipse at center, hsl(var(--primary) / 0.15) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

/* ========================================== */
/* SEPARADORES DE SEÇÃO (DIVIDERS) */
/* ========================================== */
.section-divider {
  animation: divider-fade-in 0.8s ease-out;
}

.section-divider-badge {
  animation: badge-slide-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-divider-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(var(--primary-rgb, 68, 238, 142), 0.3);
}

@keyframes divider-fade-in {
  from {
    opacity: 0;
    transform: scaleX(0.8);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes badge-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========================================== */
/* BOTÃO FLUTUANTE WHATSAPP */
/* ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: whatsapp-pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(0, 0, 0, 0.85);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ========================================== */
/* NOTIFICAÇÕES DE COMPRA */
/* ========================================== */
.purchase-notification {
  pointer-events: auto;
  width: 320px;
  max-width: calc(100vw - 2rem);
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.purchase-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.purchase-notification.hide {
  opacity: 0;
  transform: translateX(-100%);
}

.purchase-notification-content {
  background: linear-gradient(135deg, rgba(var(--background-rgb, 9, 9, 11), 0.95), rgba(var(--background-rgb, 9, 9, 11), 0.98));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.purchase-notification-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--secondary)));
}

.purchase-notification-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.purchase-notification-text {
  flex: 1;
  min-width: 0;
}

.purchase-notification-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--foreground));
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.purchase-notification-product {
  font-size: 0.75rem;
  color: rgb(var(--muted-foreground));
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.purchase-notification-time {
  font-size: 0.7rem;
  color: hsl(var(--primary));
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.purchase-notification-time::before {
  content: '🔥';
  font-size: 0.75rem;
}

@keyframes notification-pulse {
  0%, 100% { 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  }
  50% { 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.15), 0 0 20px rgba(var(--primary-rgb, 99, 102, 241), 0.3);
  }
}

.purchase-notification-content {
  animation: notification-pulse 2s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 640px) {
  #purchase-notifications-container {
    left: 0.5rem;
    right: auto;
    bottom: 0.5rem;
  }

  .purchase-notification {
    width: 260px;
    max-width: calc(100vw - 1rem);
  }

  .purchase-notification-content {
    padding: 0.65rem;
    border-radius: 10px;
  }

  .purchase-notification-image {
    width: 40px;
    height: 40px;
    border-radius: 6px;
  }

  .purchase-notification-name {
    font-size: 0.75rem;
  }

  .purchase-notification-product {
    font-size: 0.7rem;
  }

  .purchase-notification-time {
    font-size: 0.65rem;
  }
}

/* ========================================== */
/* BARRA DE ANÚNCIOS ROLANTE (MARQUEE) */
/* ========================================== */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
  display: inline-flex;
}

/* Pausar animação ao passar o mouse */
.animate-marquee:hover {
  animation-play-state: paused;
}

/* ========================================== */
/* ANIMAÇÃO CARROSSEL DE AVALIAÇÕES */
/* ========================================== */
@keyframes marquee-reviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee-reviews {
  animation: marquee-reviews 40s linear infinite;
  will-change: transform;
}

.animate-marquee-reviews:hover {
  animation-play-state: paused;
}

/* ========================================== */
/* ANIMAÇÕES DOS DIVISORES DE SEÇÃO */
/* ========================================== */
@keyframes section-divider-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.2),
                0 0 30px rgba(var(--primary-rgb), 0.1);
  }
  50% {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.4),
                0 0 40px rgba(var(--primary-rgb), 0.2);
  }
}

@keyframes section-line-shimmer {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.section-divider:hover .section-divider-badge {
  animation: section-divider-glow 2s ease-in-out infinite;
}

/* Adiciona efeito de brilho nas linhas laterais */
.section-divider span.grow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(var(--primary-rgb), 0.6), 
    transparent
  );
  animation: section-line-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

/* Variáveis CSS para cores RGB (adicione ao :root se não existir) */
:root {
  --primary-rgb: 68, 238, 142;
}