/* === HERO PREMIUM GLASS === */
.hero-premium {
  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;
}

/* === MAIN HERO GLASS === */
.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;
}

/* === LEFT CONTENT === */
.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;
}

/* === BUTTONS === */
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
  /* Removido margin-bottom já que não há stats */
  flex-wrap: wrap;
}

.btn-primary-glass {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: rgba(99, 102, 241, 1);
  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);
  animation: buttonEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.btn-secondary-glass {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  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);
  opacity: 0;
  transform: translateY(20px);
  animation: buttonEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.btn-primary-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.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-primary-glass:hover::before {
  opacity: 1;
}

.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;
  /* Aumentado para acomodar todas as categorias */
  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 === */
.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;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.5);
}

/* === CATEGORY BUTTONS === */
.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-button:active {
  transform: translateX(4px) scale(0.98);
}

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

/* === EXTERNAL FLOATING ELEMENTS - APENAS ESQUERDA === */
.external-floating-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -120px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 5;
}

.floating-message {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.floating-message:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(26px) scale(1.05);
}

.message-1 {
  animation: floatingMessageEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.message-2 {
  animation: floatingMessageEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
}

.message-icon {
  font-size: 1rem;
}

/* === SUPPORT COUNTER CONTAINER === */
.support-counter-container {
  position: absolute;
  left: 50px;
  top: 25%;
  width: 220px; /* Width maior */
  transform: translateY(-50%);
  z-index: -5;
  animation: slideFromCenterToLeft  2s ease-out forwards;
}

@keyframes slideFromCenterToLeft {
  0% {
    left: 25%; /* Começa no centro */
    transform: translateX(-50%) translateY(-50%); /* Centraliza */
    opacity: 0;
  }
  100% {
    left: 50px; /* Termina na esquerda */
    transform: translateY(-50%); /* Remove o translateX */
    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;
  opacity: 1; /* Igual ao final da animação */
  transition: all 0.3s ease;
}


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

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

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


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



/* === CLIENTS COUNTER CONTAINER === */
.clients-counter-container {
  position: absolute;
  right: 50px;
  top: 25%;
  transform: translateY(-50%);
  z-index: -5;
  animation: slideFromCenterToRight 2s ease-out forwards;
}

/* Animação específica para entrar da direita */
@keyframes slideFromCenterToRight {
  0% {
    right: 25%; /* Começa no centro */
    transform: translateX(50%) translateY(-50%); /* Centraliza */
    opacity: 0;
    z-index: -5;
  }
  100% {
    right: 50px; /* Termina na direita */
    transform: translateY(-50%); /* Remove o translateX */
    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;
  opacity: 1; /* Igual ao final da animação */
  transition: all 0.3s ease;
}
.clients-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 {
  font-size: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

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

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

/* === 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;
}

/* === 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; /* Espaçamento entre categorias */
}

.products-section > div:last-child {
  margin-bottom: 0; /* Remove margem da última categoria */
}

.section-title-glass {
  margin-bottom: 2rem;
}

.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: 0.875rem 1.25rem;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* === ANIMAÇÕES ESPECIAIS === */
@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 floatingMessageEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes clientsCounterEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@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);
  }
}

/* === RESPONSIVIDADE === */
@media (max-width: 1400px) {
  .external-floating-left {
    left: -100px;
  }

  .clients-counter-container {
    right: -130px;
  }
}

@media (max-width: 1200px) {

  .external-floating-left,
  .clients-counter-container {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-premium {
    min-height: 70vh;
  }
}

@media (max-width: 768px) {
  .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;
  }

  .hero-premium {
    min-height: 65vh;
  }

  .floating-card-main {
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .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;
  }
}

/* === SCROLL SUAVE GLOBAL === */
html {
  scroll-behavior: smooth;
}

/* === MELHORAR DESTAQUE DA SEÇÃO === */
[data-category-id] {
  scroll-margin-top: 120px; /* Compensa header fixo */
  transition: all 0.3s ease;
}

/* === ANIMAÇÃO DE DESTAQUE === */
.section-highlight {
  background: rgba(99, 102, 241, 0.08) !important;
  border-radius: 12px !important;
  padding: 1rem !important;
  transform: scale(1.02) !important;
}

/* === RESPONSIVIDADE DO SCROLL === */
@media (max-width: 768px) {
  [data-category-id] {
    scroll-margin-top: 80px;
  }
}






/* 🔧 RESET PRIMEIRO - Remove limitações */
@media (min-width: 769px) {
  a[href*="/products/"].group {
    height: auto !important;
    max-height: none !important;
    min-height: 340px !important; /* SUA ALTURA DESEJADA */
  }
}

/* 📐 ALINHAMENTO INTERNO COMPACTO - BOTÃO FIXO EMBAIXO */
@media (min-width: 769px) {
  /* Container principal do card */
  a[href*="/products/"].group {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Seção do conteúdo (abaixo da imagem) */
  a[href*="/products/"] .p-3.border-t-2 {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.25rem !important;
    flex: 1 !important; /* Ocupa todo espaço disponível */
    min-height: 0 !important; /* Para funcionar o flex corretamente */
  }

  /* Container dos elementos superiores (tudo menos o botão) */
  a[href*="/products/"] .p-3.border-t-2 > *:not(button) {
    margin-bottom: 0.75rem !important;
  }

  /* Título com altura fixa */
  a[href*="/products/"] h4.line-clamp-2 {
    height: 2.6em !important;
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 0.75rem !important;
    flex-shrink: 0 !important; /* Não encolhe */
  }

  /* Seção de preços compacta */
  a[href*="/products/"] .my-2\.5 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
    gap: 0.5rem !important;
    flex-shrink: 0 !important; /* Não encolhe */
  }

  /* Preço antigo + badge próximos */
  a[href*="/products/"] .my-2\.5 > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.4rem !important;
    margin-bottom: 0 !important;
  }

  /* Linha do preço antigo + desconto */
  a[href*="/products/"] .my-2\.5 > div:first-child > div:first-child {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    justify-content: center !important;
  }

  /* Preço atual */
  a[href*="/products/"] .font-semibold {
    text-align: center !important;
    margin: 0 !important;
  }

  /* Texto PIX */
  a[href*="/products/"] .text-center {
    text-align: center !important;
    margin: 0 !important;
  }

  /* Ícones de pagamento */
  a[href*="/products/"] .my-2\.5 .flex.items-center.justify-between {
    justify-content: center !important;
    gap: 1rem !important;
    margin: 0.5rem 0 0 0 !important;
    padding: 0.5rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  /* 🎯 BOTÃO FIXO NA PARTE DE BAIXO */
  a[href*="/products/"] button.bg-primary {
    margin-top: auto !important; /* Empurra para baixo */
    margin-bottom: 0 !important;
    align-self: stretch !important;
    flex-shrink: 0 !important; /* Não encolhe */
  }

  /* Remover margin-bottom do último elemento antes do botão */
  a[href*="/products/"] .p-3.border-t-2 > *:nth-last-child(2) {
    margin-bottom: 0 !important;
  }
}
