/* Tout le titre en blanc */
.titre-secu{
  color: #fff !important;
}

/* Le mot "sécurité" : fond animé + texte blanc */
.titre-secu .mot-securite{
  padding: 6px 16px;
  border-radius: 12px;
  font-weight: 700;

  background: linear-gradient(90deg, #a200ff, #ff4ecd, #4db7ff);
  background-size: 300% 300%;
  animation: gradientAnim 6s ease infinite;

  color: #fff !important;
  -webkit-text-fill-color: #fff !important;

  display: inline-block;
}

@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.titre-secu{
  color: #fff !important;
  font-size: 56px;   /* ← taille du texte */
  line-height: 1.2;  /* ← lisibilité */
}














