.ajustes-finais-section {
  background-color: #121212;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  min-height: auto;
}

.card {
  background-color: #1c1c1c;
  width: 30%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 20px 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 80px rgba(0, 0, 0, 0.8);
}

.card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .ajustes-finais-section {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .card {
    width: 30%;
    margin-bottom: 0;
  }

  .card h2 {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .card h2 {
    font-size: 0.63rem;
  }
}
