.title-cards {
  padding: 4rem 8%;
  background: linear-gradient(135deg, #111, #1a1a1a);
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.title-cards h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  flex: 1 1 250px;
  max-width: 300px;
  background: rgba(37, 37, 37, 0.85);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
  border-radius: 16px;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.card-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  padding: 0 10px;
}