.servicios-section {
  padding: 60px 20px;
  background: linear-gradient(145deg, #111, #1a1a1a);
  border-radius: 16px;
  box-shadow:
    0 0 15px var(--neon-red),
    0 0 40px rgba(255, 23, 68, 0.5);
  text-align: center;
  position: relative;
  z-index: 1;
  animation: argbGlowBrutal 3s ease-in-out infinite alternate;
}

.servicios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.servicio-card {
  background: #222;
  border-radius: 20px;
  width: 320px;
  padding: 30px 20px;
  box-shadow:
    0 0 10px rgba(255, 23, 68, 0.3),
    inset 0 0 12px rgba(255, 23, 68, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 23, 68, 0.2);
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 30px var(--neon-red),
    inset 0 0 18px var(--neon-red);
}

.servicio-icon {
  margin-bottom: 18px;
  filter: drop-shadow(0 0 8px var(--neon-red));
}

.servicio-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #fff;
}

.servicio-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.4;
}

/* Mantener títulos y botones intactos, no tocar */

/* Animación (reusa la que ya tienes) */
@keyframes argbGlowBrutal {
  0%, 100% {
    box-shadow:
      0 0 20px var(--neon-red),
      0 0 30px #00ffff,
      0 0 40px #ff0099,
      0 0 80px rgba(255, 23, 68, 0.4);
  }
  50% {
    box-shadow:
      0 0 40px var(--neon-red),
      0 0 60px #00ffff,
      0 0 80px #ff0099,
      0 0 100px rgba(255, 23, 68, 0.6);
  }
}
