.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  
  opacity: 0;                /* invisível inicialmente */
  transform: translateX(-50px); /* deslocado para a esquerda */
}

/* quando a classe .visible for adicionada, anima */
.card.visible {
  animation: slideFadeIn 0.6s forwards;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00C6FF;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
