/* Fuente y colores base */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0b0b0b;
  color: #f8f9fa;
}

.text-purple {
  color: #a855f7;
}

/* Botones */
.btn.glow {
  box-shadow: 0 0 15px #198754;
  transition: all 0.3s ease;
}

.btn.glow:hover {
  box-shadow: 0 0 25px #a855f7, 0 0 45px #198754;
  transform: scale(1.05);
}

/* Íconos neon */
img[alt^="Seguridad"],
img[alt^="Rapidez"],
img[alt^="Cotización"],
img[alt^="Atención"],
img[alt^="Acreditación"] {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px #198754);
}

img[alt^="Seguridad"]:hover,
img[alt^="Rapidez"]:hover,
img[alt^="Cotización"]:hover,
img[alt^="Atención"]:hover,
img[alt^="Acreditación"]:hover {
  filter: drop-shadow(0 0 20px #a855f7);
  transform: scale(1.1);
}

/* Encabezado */
.navbar-brand span {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Footer */
footer a {
  text-decoration: none;
  color: #198754;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #a855f7;
  text-decoration: underline;
}

/* Animación de entrada suave */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

main, section {
  animation: fadeIn 1s ease forwards;
}
