*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: #0a192f; /* Azul oscuro */
      color: #ffffff; /* Texto blanco */
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-weight: 700;
      color: #ffffff;
    }

    a, button {
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease-in-out;
    }

    /* --- Hero Section --- */
    .infomantenimiento-hero {
      background: #0a192f;
      text-align: center;
      padding: 5rem 2rem;
    }

    .infomantenimiento-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .infomantenimiento-hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .infomantenimiento-btn {
      background: #0bb9f3;
      color: #111827;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: bold;
      font-size: 1.1rem;
      display: inline-block;
    }

    .infomantenimiento-btn:hover {
      background: #fddf4700;
      transform: scale(1.05);
      color:azure;
      border: 2px solid #0bb9f3;
    }

    /* --- Secciones --- */
    .infomantenimiento-section {
      max-width: 1200px;
      margin: auto;
      padding: 4rem 2rem;
    }

    .infomantenimiento-section h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .infomantenimiento-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .infomantenimiento-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 
    0 4px 12px rgba(246, 245, 245, 0.3),   /* blanco suave */
    0 6px 18px rgba(243, 22, 247, 0.25),   /* rosa */
    0 8px 24px rgba(59, 160, 238, 0.25);   /* azul */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.infomantenimiento-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 6px 16px rgba(246, 245, 245, 0.4),   /* blanco más intenso */
    0 10px 22px rgba(243, 22, 247, 0.35),  /* rosa más intenso */
    0 12px 28px rgba(59, 160, 238, 0.35);  /* azul más intenso */
}

    .infomantenimiento-card h3 {
      margin-bottom: 1rem;
      color: #f316f7;
    }

    /* --- Oferta --- */
    .infomantenimiento-oferta {
  background: #1e3b8a00;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  color: #fff;
  border: 2px solid #ff00ff; /* Borde rosa inicial */
  box-shadow: 
    0 0 10px #fff,        /* sombra blanca */
    0 0 20px #ff00ff,     /* neón rosa */
    0 0 40px #00ffff;     /* neón azul */
  animation: neonGlow 2s infinite alternate;
}

/* Animación del resplandor */
@keyframes neonGlow {
  0% {
    box-shadow: 
      0 0 10px #fff,
      0 0 20px #ff00ff,
      0 0 40px #00ffff;
    border-color: #ff00ff;
  }
  100% {
    box-shadow: 
      0 0 20px #fff,
      0 0 40px #00ffff,
      0 0 80px #ff00ff;
    border-color: #00ffff;
  }
}

    .infomantenimiento-oferta h2 {
      margin-bottom: 1rem;
    }

    .infomantenimiento-oferta p {
      margin-bottom: 1.5rem;
    }

    /* --- CTA --- */
    .infomantenimiento-cta {
      text-align: center;
      margin-top: 6rem;
      margin-bottom: 4rem;
    }

    .infomantenimiento-cta p {
      margin-bottom: 2rem;
    }

    .infomantenimiento-cta .infomantenimiento-btn {
      background: #25d366; /* Verde WhatsApp */
      color: white;
    }

    .infomantenimiento-cta .infomantenimiento-btn:hover {
      background: #1ebe57;
    }
/* Efecto especial para la palabra GRATIS */
.gratis-efecto {
  font-size: 1.2em; /* un poco más grande */
  font-weight: bold;
  background: linear-gradient(100deg, #00f, #fff, #ff00aa, #00f);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moverGradiente 6s ease infinite;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.226);
}

@keyframes moverGradiente {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
    footer.infomantenimiento-footer {
      background: #111827;
      color: #9ca3af;
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
    }

    