.servicios-wrapper {
  background-color: #00000052;
  color: white;
  padding: 10px 10px;
  text-align: center;
}

.titulo-servicios {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
}

.titulo-servicios::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00f0ff, #00ff88);
  margin: 10px auto 0;
  border-radius: 2px;
}

.servicios-contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.servicio-tarjeta {
  background-color: #0a0a0a;
  border: 1px solid #1f1f1f;
  width: 300px;
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.servicio-tarjeta:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.icono-servicio {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00f0ff;
  text-shadow: 0 0 8px #00f0ff;
}

.servicio-tarjeta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.servicio-tarjeta p {
  font-size: 1rem;
  opacity: 0.8;
}
