.atendimento-section {
  background-color: #fff;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.atendimento-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.atendimento-container::before,
.atendimento-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.atendimento-container::before {
  left: 0;
  background: linear-gradient(to right, var(--light-color), transparent);
}

.atendimento-container::after {
  right: 0;
  background: linear-gradient(to left, var(--light-color), transparent);
}

.atendimento-card {
  margin: 0 20px;
}

.text-content {
  align-content: center;
  margin-left: 10px;
}

.atendimento-content {
  display: flex;
}

.text-content h5 {
  font-weight: 400;
  font-size: 1.1rem;
}

.text-content h5,
.text-content p {
  margin-bottom: 0;
}

.text-content p {
  font-size: 0.9rem;
  color: var(--gray-color);
}

.atendimento-track {
  display: flex;
  width: max-content;
  animation: scroll-loop 40s linear infinite;
}

.atendimento-track:hover {
  animation-play-state: paused;
}

.atendimento-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  flex: 0 0 auto;
  width: 300px;
  transition: transform 0.3s ease;
}

.atendimento-item:hover {
  transform: scale(0.95);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-wrapper img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.info-content h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.info-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin: 3px 0 0 0;
}

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

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