.feature-section {
  padding: 4rem 1rem;
  background-color: #1B1919;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  color: #fff
  flex-shrink: 0;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  font-size: 18px;
  text-align: center;
  color: #fff;
}

/* Responsividade */
@media (max-width: 1024px) {
  .feature-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .feature-text {
    font-size: 0.95rem;
  }

  .icon-wrapper {
    width: 32px;
    height: 32px;
  }

  .feature-item {
    gap: 0.75rem;
  }
}
