.hero-tech {
  background: #0a0f1e;
  padding: 88px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(151,243,181,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151,243,181,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-tech::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 64px;
  background: #f8f9fa;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.tech-card {
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.tech-card:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

.compare-col {
  border-radius: 20px;
  padding: 28px 24px;
  flex: 1;
}
.compare-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
}
.compare-row:last-child { border-bottom: none; }

/* Previne FOUC no hero antes do GSAP ocultar os elementos */
#tech-hero-text,
#tech-hero-chips { opacity: 0; }

.spec-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
