/* === RESET E BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 25%, #16213e  50%, #1a1a2e 75%, #0c0c0c 100%);
  background-attachment: fixed;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === VARIÁVEIS CSS === */

/* === HERO PREMIUM GLASS === */
.hero-premium {
  margin-bottom: -150px;
  position: relative;
  min-height: 75vh;
  padding: 2rem 0 1rem;
  overflow: visible;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.hero-glass-main {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-glass-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.hero-glass-main:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text-section {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-main-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

.highlight-text {
  background: linear-gradient(135deg, #10b981, #06d6a0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.btn-primary-glass, .btn-secondary-glass {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.875rem 1.75rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  border: none;
}

.btn-primary-glass {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: rgba(99, 102, 241, 1);
  animation: buttonEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.btn-secondary-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  animation: buttonEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.btn-primary-glass:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.4);
  transform: translateY(-2px) scale(1.02);
  color: #6366f1;
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* === RIGHT VISUAL === */
.hero-visual-section {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.floating-card-main {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.25rem;
  position: relative;
  animation: cardFloat 6s ease-in-out infinite;
  max-height: 400px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.card-dots {
  display: flex;
  gap: 0.5rem;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.card-dots span:first-child { background: #ef4444; }
.card-dots span:nth-child(2) { background: #f59e0b; }
.card-dots span:last-child { background: #10b981; }

.card-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
}

.categories-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.categories-scroll::-webkit-scrollbar {
  width: 4px;
}

.categories-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.categories-scroll::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 2px;
}

.category-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-20px);
  animation: categorySlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.category-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateX(4px);
}

.category-icon-small {
  width: 36px;
  height: 36px;
  background: rgba(99, 102, 241, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.category-info {
  flex: 1;
}

.category-info h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.category-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin: 0.1rem 0 0;
}

.category-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.category-button:hover .category-arrow {
  color: rgba(99, 102, 241, 0.8);
  transform: translateX(2px);
}

/* === FEATURES GLASS GRID === */
.features-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(40px);
  animation: featuresEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.feature-glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* .feature-glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
} */

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
}

.feature-icon.lightning {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.feature-icon.shield {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.feature-icon.medal {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.feature-icon.support {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
}

.feature-glass-card h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-glass-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}
/* === SUPPORT COUNTER CONTAINER === */
.support-counter-container {
  position: absolute;
  top: 25%;
  /* Não definir left aqui - deixar apenas a animação controlar */
  transform: translateY(-50%);
  z-index: -5;
  width: 220px;
  opacity: 0; /* Invisível inicialmente */
  animation: slideFromCenterToLeft 2s ease-out 1.2s forwards;
}

@keyframes slideFromCenterToLeft {
  0% {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 50px;
    transform: translateY(-50%);
    opacity: 1;
  }
}

.support-counter-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  transition: all 0.3s ease;
}

/* === CLIENTS COUNTER CONTAINER === */
.clients-counter-container {
  position: absolute;
  top: 25%;
  /* Não definir right aqui - deixar apenas a animação controlar */
  transform: translateY(-50%);
  z-index: -5;
  width: 220px;
  opacity: 0; /* Invisível inicialmente */
  animation: slideFromCenterToRight 2s ease-out 1s forwards;
}

@keyframes slideFromCenterToRight {
  0% {
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    opacity: 0;
  }
  100% {
    right: 50px;
    transform: translateY(-50%);
    opacity: 1;
  }
}

.clients-counter-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  transition: all 0.3s ease;
}

.clients-counter-glass:hover,
.support-counter-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.clients-icon,
.support-icon {
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.clients-info,
.support-info {
  display: flex;
  flex-direction: column;
}

.clients-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  background: linear-gradient(135deg, #10b981, #06d6a0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clients-label,
.support-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* === BACKGROUND EFFECTS === */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
  bottom: 25%;
  right: 15%;
  animation-delay: 2s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4), transparent);
  top: 55%;
  left: 50%;
  animation-delay: 4s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

/* === PRODUCTS SECTION === */
.products-section {
  padding: 3rem 0;
}

.products-section > div {
  margin-bottom: 4rem;
}

.products-section > div:last-child {
  margin-bottom: 0;
}

#category-section {
  padding: 2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

#category-section:last-child {
  margin-bottom: -80px;
}

#category-section::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

#category-section:last-child::after {
  display: none;
}

.section-title-glass {
  margin-bottom: 2.5rem;
  display: block;
}

.title-content {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.title-content:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.title-icon {
  font-size: 1.25rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === GRID SYSTEM === */
.grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}



/* === PRODUTOS PREMIUM (ESTRUTURA REAL) - VERSÃO FINAL === */
a[href*="/products/"].group {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  color: inherit !important;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  opacity: 0;
  transform: translateY(20px);
  height: auto !important;
  min-height: 320px !important;
}

/* a[href*="/products/"].group:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
} */

/* === CONTAINER DA IMAGEM === */
a[href*="/products/"] .relative {
  position: relative !important;
  width: 100% !important;
  height: 160px !important;
  overflow: hidden !important;
  border-radius: 12px 12px 0 0 !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

/* === IMAGEM OTIMIZADA === */
a[href*="/products/"] img.w-full.aspect-video {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 12px 12px 0 0 !important;
  margin: 0 !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}
/* 
a[href*="/products/"]:hover img.w-full.aspect-video {
  transform: scale(1.03) !important;
} */

/* === OVERLAY DE ESGOTADO === */
a[href*="/products/"] .absolute.bg-black\/70 {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  border-radius: 12px 12px 0 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  z-index: 5 !important;
}

/* === CONTEÚDO DO PRODUTO === */
a[href*="/products/"] .p-3.border-t-2 {
  padding: 1rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  flex: 1 !important;
  background: transparent !important;
}

/* === TÍTULO DO PRODUTO === */
a[href*="/products/"] h4.line-clamp-2 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin: 0 0 0.5rem 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.6em !important;
}

/* === CONTAINER DE PREÇOS REORGANIZADO === */
a[href*="/products/"] .my-2\.5 {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  margin: 0 !important;
}

/* === LINHA DE PREÇO ANTIGO + DESCONTO === */
a[href*="/products/"] .my-2\.5 > div:first-child {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}

/* === PREÇO ANTIGO === */
a[href*="/products/"] del.text-muted-foreground {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.875rem !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

/* === BADGE DE DESCONTO (AO LADO DO PREÇO ANTIGO) === */
a[href*="/products/"] .bg-primary\/10.text-primary {
  background: rgba(16, 185, 129, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: rgba(16, 185, 129, 1) !important;
  padding: 0.2rem 0.5rem !important;
  border-radius: 12px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
}
/* 
a[href*="/products/"]:hover .bg-primary\/10.text-primary {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  transform: scale(1.05) !important;
} */

/* === PREÇO ATUAL === */
a[href*="/products/"] .font-semibold {
  color: rgba(16, 185, 129, 1) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* === SEÇÃO INFERIOR (PIX + ÍCONES) === */
a[href*="/products/"] .my-2\.5 .flex.items-center.justify-between {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 0.5rem !important;
}

/* === MÉTODO DE PAGAMENTO === */
a[href*="/products/"] .text-muted-foreground {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.8rem !important;
  margin: 0 !important;
  text-align: center !important;
}
/* === ÍCONES DE PAGAMENTO === */
a[href*="/products/"] .flex.items-center.gap-2 {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  flex-shrink: 0 !important;
}

/* === CONTAINER DO PIX === */
a[href*="/products/"] .bg-\[#32bcad26\] {
  width: 28px !important;
  height: 28px !important;
  background: rgba(16, 185, 129, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  border-radius: 6px !important;
  padding: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

/* a[href*="/products/"] .bg-\[#32bcad26\]:hover {
  background: rgba(16, 185, 129, 0.2) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  transform: scale(1.1) !important;
} */

/* === IMAGEM DO PIX === */
a[href*="/products/"] .bg-\[#32bcad26\] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: brightness(0) saturate(100%) invert(84%) sepia(11%) saturate(6333%) hue-rotate(119deg) brightness(96%) contrast(86%) !important;
}

/* === ÍCONE DE ENTREGA AUTOMÁTICA === */
a[href*="/products/"] .bg-primary\/20.border.border-primary {
  width: 28px !important;
  height: 28px !important;
  background: rgba(99, 102, 241, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(99, 102, 241, 0.25) !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(99, 102, 241, 0.9) !important;
  transition: all 0.3s ease !important;
}

/* a[href*="/products/"]:hover .bg-primary\/20.border.border-primary {
  background: rgba(99, 102, 241, 0.2) !important;
  border-color: rgba(99, 102, 241, 0.4) !important;
  transform: scale(1.1) !important;
} */

/* === BOTÃO COMPRAR AGORA === */
a[href*="/products/"] button.bg-primary {
  width: 100% !important;
  background: rgba(16, 185, 129, 0.15) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: rgba(16, 185, 129, 1) !important;
  padding: 0.75rem 1rem !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  margin-top: auto !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
  overflow: hidden !important;
}

/* a[href*="/products/"] button.bg-primary:hover {
  background: rgba(16, 185, 129, 0.25) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  transform: translateY(-1px) !important;
  color: rgba(16, 185, 129, 1) !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
} */

/* === ÍCONES DO LUCIDE === */
a[href*="/products/"] [data-lucide="trending-down"] {
  color: rgba(16, 185, 129, 1) !important;
  width: 12px !important;
  height: 12px !important;
}

a[href*="/products/"] [data-lucide="circle-x"] {
  color: rgba(255, 255, 255, 0.9) !important;
  width: 18px !important;
  height: 18px !important;
}

a[href*="/products/"] [data-lucide="zap"] {
  color: rgba(99, 102, 241, 0.9) !important;
  width: 14px !important;
  height: 14px !important;
}

a[href*="/products/"] [data-lucide="shopping-cart"] {
  color: rgba(16, 185, 129, 1) !important;
  width: 16px !important;
  height: 16px !important;
}

/* === EFEITO SHIMMER NO HOVER === */
/* a[href*="/products/"].group::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transform: translateX(-100%) translateY(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

a[href*="/products/"].group:hover::after {
  transform: translateX(0) translateY(0);
} */

/* === ANIMAÇÕES === */
@keyframes heroEntrance {
  0% { opacity: 0; transform: translateY(50px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px) translateY(30px); }
  100% { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px) translateY(30px); }
  100% { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes buttonEntrance {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes featuresEntrance {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes categorySlideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateX(50px) translateY(-50%); }
  100% { opacity: 1; transform: translateX(0) translateY(-50%); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px) translateY(-50%); }
  100% { opacity: 1; transform: translateX(0) translateY(-50%); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

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

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-20px) translateX(15px); }
  66% { transform: translateY(15px) translateX(-15px); }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes productSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVIDADE MOBILE === */
@media (max-width: 768px) {
  a[href*="/products/"].group {
    min-height: 300px !important;
  }
  
  a[href*="/products/"] .relative {
    height: 140px !important;
  }
  
  a[href*="/products/"] img.w-full.aspect-video {
    height: 140px !important;
  }
  
  a[href*="/products/"] .p-3.border-t-2 {
    padding: 0.875rem !important;
  }
  
  a[href*="/products/"] h4.line-clamp-2 {
    font-size: 0.9rem !important;
    min-height: 2.4em !important;
  }
  
  a[href*="/products/"] .font-semibold {
    font-size: 1.25rem !important;
  }
  
  a[href*="/products/"] .bg-\[#32bcad26\],
  a[href*="/products/"] .bg-primary\/20.border.border-primary {
    width: 26px !important;
    height: 26px !important;
  }
  
  a[href*="/products/"] button.bg-primary {
    padding: 0.7rem 0.875rem !important;
    font-size: 0.8rem !important;
  }
  
  .grid {
    gap: 1rem !important;
  }
  
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-premium {
      margin-bottom: -50px;
    min-height: 65vh;
  }
  
 
  .hero-glass-main {
    padding: 2rem 1.5rem;
  }
  
  .hero-main-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary-glass,
  .btn-secondary-glass {
    width: 100%;
    justify-content: center;
  }
  
  .features-glass-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card-main {
    max-height: 350px;
  }
  
  .products-section > div {
    margin-bottom: 3rem;
  }
  
  #category-section {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
  
  .section-title-glass {
    margin-bottom: 2rem;
  }
  
  .title-content {
    padding: 0.875rem 1.25rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  a[href*="/products/"].group {
    min-height: 280px !important;
  }
  
  a[href*="/products/"] .relative {
    height: 120px !important;
  }
  
  a[href*="/products/"] img.w-full.aspect-video {
    height: 120px !important;
  }
  
  a[href*="/products/"] .p-3.border-t-2 {
    padding: 0.75rem !important;
  }
  
  a[href*="/products/"] h4.line-clamp-2 {
    font-size: 0.85rem !important;
    min-height: 2.2em !important;
  }
  
  a[href*="/products/"] .font-semibold {
    font-size: 1.15rem !important;
  }
  
  a[href*="/products/"] .bg-primary\/10.text-primary {
    padding: 0.15rem 0.4rem !important;
    font-size: 0.65rem !important;
  }
  
  a[href*="/products/"] .bg-\[#32bcad26\],
  a[href*="/products/"] .bg-primary\/20.border.border-primary {
    width: 24px !important;
    height: 24px !important;
  }
  
  a[href*="/products/"] button.bg-primary {
    padding: 0.65rem 0.75rem !important;
    font-size: 0.75rem !important;
  }
  
  .grid {
    gap: 0.75rem !important;
  }
  
  .hero-container {
    padding: 0 1rem;
  }
  
  .hero-glass-main {
    padding: 1.5rem 1rem;
  }
  
  .hero-main-title {
    font-size: 1.9rem;
  }
  
  .feature-glass-card {
    padding: 1.5rem;
  }
  
  .floating-card-main {
    max-height: 320px;
  }
  
  .products-section > div {
    margin-bottom: 2.5rem;
  }
  
  #category-section {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* === RESPONSIVIDADE DESKTOP === */
@media (max-width: 1400px) {
  .clients-counter-container { right: 30px; }
  .support-counter-container { left: 30px; }
}

@media (max-width: 1200px) {
  .clients-counter-container,
  .support-counter-container {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-premium {
    min-height: 70vh;
  }
}

/* === OTIMIZAÇÕES DE PERFORMANCE === */
a[href*="/products/"].group {
  will-change: transform, opacity !important;
  transform: translateZ(0) !important;
  backface-visibility: hidden !important;
}

/* === FALLBACK PARA NAVEGADORES SEM SUPORTE === */
@supports not (backdrop-filter: blur(1px)) {
  .hero-glass-main,
  .feature-glass-card,
  a[href*="/products/"] {
    background: rgba(255, 255, 255, 0.15) !important;
  }
  
  .clients-counter-glass,
  .support-counter-glass {
    background: rgba(255, 255, 255, 0.12) !important;
  }
}

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

/* === SELEÇÃO CUSTOMIZADA === */
a[href*="/products/"]:focus,
.category-button:focus,
.btn-primary-glass:focus,
.btn-secondary-glass:focus {
  outline: 2px solid rgba(99, 102, 241, 0.5) !important;
  outline-offset: 2px !important;
}


.why-choose-us-section {
  padding: 4rem 0 3rem;
  position: relative;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.03) 0%, 
    rgba(139, 92, 246, 0.02) 50%, 
    rgba(16, 185, 129, 0.03) 100%
  );
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.why-choose-title-container {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: titleEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.why-choose-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.store-name-highlight {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
  position: relative;
}

.store-name-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
  border-radius: 2px;
  animation: gradientShift 3s ease-in-out infinite;
}

.why-choose-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* === FEATURES GRID REPOSICIONADO === */
.why-choose-us-section .features-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: featuresEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.why-choose-us-section .feature-glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.why-choose-us-section .feature-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.why-choose-us-section .feature-glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-us-section .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.why-choose-us-section .feature-glass-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-choose-us-section .feature-glass-card h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.why-choose-us-section .feature-glass-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

/* === ANIMAÇÕES === */
@keyframes titleEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 3rem 0 2rem;
  }
  
  .why-choose-title-container {
    margin-bottom: 2rem;
  }
  
  .why-choose-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .why-choose-subtitle {
    font-size: 1rem;
  }
  
  .why-choose-us-section .features-glass-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .why-choose-us-section .feature-glass-card {
    padding: 1.5rem;
  }
  
  .why-choose-us-section .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .why-choose-us-section .feature-glass-card h3 {
    font-size: 1.125rem;
  }
  
  .why-choose-us-section .feature-glass-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us-section {
    padding: 2.5rem 0 1.5rem;
  }
  
  .why-choose-title {
    font-size: 1.75rem;
  }
  
  .why-choose-subtitle {
    font-size: 0.95rem;
  }
  
  .why-choose-us-section .feature-glass-card {
    padding: 1.25rem;
  }
}

/* === REMOVER CONTAINER DA LOGO === */
.logo-container {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.brand-logo {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  object-fit: cover !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.brand-link:hover .brand-logo {
  transform: scale(1.05) rotate(2deg) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

@media (min-width: 1024px) {
  #products-list a {
    min-width: 250px !important;
    max-width: 300px !important;
  }

  #products-list {
    grid-template-columns: repeat(5, 1fr) !important; /* Força 5 colunas */
    gap: 0.7rem !important;
  }
}

/* === REMOVER ANIMAÇÕES PESADAS === */

/* Remover backdrop-filter em dispositivos móveis */
@media (max-width: 768px) {
  .hero-glass-main,
  .feature-glass-card,
  .bg-card,
  .premium-navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(20, 20, 30, 0.9) !important;
  }
}

/* === ANIMAÇÕES SIMPLIFICADAS === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* === PRODUTOS OTIMIZADOS === */
a[href*="/products/"] {
  will-change: auto !important; /* Remover will-change */
  animation: none !important; /* Remover animações automáticas */
}

a[href*="/products/"]:hover {
  transform: translateY(-2px) !important; /* Hover mais simples */
}

/* === COUNTERS SIMPLIFICADOS === */
.clients-counter-container,
.support-counter-container {
  animation: slideUp 1s ease-out forwards !important; /* Animação mais simples */
}

/* === DISABLE HEAVY EFFECTS === */
.btn-shimmer,
.hover-glow,
.shimmer-effect {
  display: none !important; /* Remover efeitos pesados */
}

/* === OTIMIZAÇÕES DE PERFORMANCE === */
* {
  will-change: auto !important; /* Remover will-change desnecessários */
}

.hero-glass-main::before,
.feature-glass-card::before,
.bg-card::before {
  display: none !important; /* Remover pseudo-elementos desnecessários */
}

/* === SIMPLIFICAR GRADIENTES === */

/* === MOBILE FIRST === */
@media (max-width: 768px) {
  .clients-counter-container,
  .support-counter-container,
  .navbar-bg-effects,
  .hero-bg-effects {
    display: none !important; /* Ocultar elementos decorativos no mobile */
  }
  
  .premium-navbar {
    padding: 0.5rem 0 !important;
  }
  
  .hero-premium {
    min-height: 60vh !important; /* Reduzir altura no mobile */
  }
}


/* === PRODUCT CARDS - ALINHAMENTO DESKTOP === */
