 
/* ============================
   STRUCTURE PAGE GUIDE
============================ */
.guide-section {  
            padding-left: 30px;
            border-radius: 25px;
            border: 1px solid ;
            max-width: 95%; 
            margin: auto;           
            margin-top: 10px;  
            margin-bottom: 10px;
            color: #000;               
            box-sizing: border-box; /*aligne verticalement les cotés des sections*/
            

  
}

.titre-page {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.intro {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Bloc explication */
.bloc-explication {
  background: #CCEFFF; /* Bleu pastel */
  padding: 20px;
  border-left: 4px solid #0077FF; /* Bleu azur profond */
  margin: 25px 0;
  line-height: 1.6;
}

/* Sous-titres */
.sous-titre {
  font-size: 1.4rem;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Étapes */
.etapes {
  margin: 20px 0;
  padding-left: 20px;
}

.etapes li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Astuce */
.astuce {
  background: #CCEFFF; /* Bleu pastel */
  border-left: 4px solid #0077FF; /* Bleu azur profond */
  padding: 15px;
  margin: 25px 0;
  font-style: italic;
}

/* Avertissement */
.avertissement {
  background: #ffe5e5;
  border-left: 4px solid #d32f2f;
  padding: 15px;
  margin: 25px 0;
  font-weight: bold;
}

/* CTA */
.cta-centre {
  text-align: center;
  margin-top: 40px;
}

.btn-orange {
  display: inline-block;
  padding: 12px 24px;  
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  border: solid 1px;
  font-weight: bold;
  background: linear-gradient(
    to bottom,
    #0077FF, /* Bleu azur profond */
    #3399FF, /* Bleu azur */
    #66BFFF, /* Bleu ciel */
    #99D8FF, /* Bleu très clair */
    #CCEFFF, /* Bleu pastel */
    #FFFFFF  50%/* Blanc */
                            );


    max-width: 100%;
    width: fit-content;
    white-space: normal; /* autorise le retour à la ligne */
    word-wrap: break-word;

}


.btn-orange:hover{
        color: red;
        transform: scale(1.03);
    }
/* Responsive */
@media (max-width: 768px) {
  .guide-section { padding: 25px 15px; }
  .titre-page { font-size: 1.8rem; }
  .intro { font-size: 1rem; }
  .btn-orange { padding: 12px 20px; }
}

 /* Debut clignotement*/
.turbocad-section{

    border-radius: 25px;
  border: 1px solid;
  max-width: 95%;
  margin: 0 auto;
  margin-top: 10px;
  padding: 40px 20px;
  color: #000;
  box-sizing:border-box;



    
}
 

.accent2 {
    display: inline-block;
    animation: pulseGlow 3s ease-in-out infinite;
    color: #0077FF; /* Bleu azur profond */
    font-weight: 700;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(102, 191, 255, 0.0); /* Bleu ciel */
    }
    50% {
        transform: scale(1.06);
        text-shadow: 
            0 0 8px rgba(102, 191, 255, 0.6),  /* Bleu ciel */
            0 0 16px rgba(102, 191, 255, 0.4),
            0 0 24px rgba(102, 191, 255, 0.2);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(102, 191, 255, 0.0);
    }
}

 /*fin clignotement */








