/* =========================================
   TECH STACK BADGES - Animated Scroll
   ========================================= */

.tech-stack-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 2rem 0;
}

.tech-stack-scroll {
  display: flex;
  gap: 1rem;
  animation: scroll-left 60s linear infinite;
  width: max-content;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.tech-badge i {
  font-size: 1.25rem;
}

.tech-badge:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pausar animação no hover */
.tech-stack-container:hover .tech-stack-scroll {
  animation-play-state: paused;
}

/* Gradient fade nas bordas - REMOVIDO */
.tech-stack-container::before,
.tech-stack-container::after {
  display: none;
}