.servizi-section {
  padding: 50px 10%;
  text-align: center;
  background-color: #f9f9f9;
}

.servizi-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #333;
  font-weight: 600;
}

.cards-container.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.card {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  width: 100%;
  max-width: 400px;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.card .icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ff7f50;
}

.card h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.card .link {
  display: inline-block;
  margin-top: 15px;
  color: #ff7f50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.card .link:hover {
  color: #e06c3d;
}

/* Mobile */
@media (max-width: 768px) {
  .servizi-section {
    padding: 40px 5%;
  }

  .card {
    width: 100%;
  }
}
.card.highlight {
  background: linear-gradient(135deg, #ffe5b4, #ffd700); /* sfumatura calda e accogliente */
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5); /* effetto “sollevato” */
  border: 2px solid #ffbf00;
  transform: scale(1.03); /* leggero ingrandimento */
  transition: transform 0.3s, box-shadow 0.3s;
}

.card.highlight:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}
.card.highlight .icon {
  display: inline-block;
  animation: sparkle 1.5s infinite alternate;
}

@keyframes sparkle {
  0% { transform: scale(1); }
  50% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1); }
}
