:root {
  --bleu: #03295b;
  --rouge: #dd0101;
  --gris: #3a3a3a;
  --noir: #000;
  --ombre: #000000a1;
  --blanc: #efefef;

}
html{
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
/* Polices : chargées via Google Fonts (lien dans le HTML) – Montserrat 400/700, Roboto 400/700 */
.lazy-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .6s ease-out;
}

.lazy-bg.loaded {
  opacity: 1;
}
/* Styles globaux */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
h1{
    @media screen and (min-width: 768px) {
       font-size: 4rem; 
    }
}
h2{
    font-weight: 700;
    font-size: 1.8rem;
    @media screen and (min-width: 768px) {
        font-size: 2.2rem;
        font-weight: 900;
    }
}
h5{
    font-size: 1.1rem;
    text-decoration: underline;
}
h6{
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}
h1 span{
    font-weight: 900;
}
.text-center{
    text-align: center;
}
.center{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
button, .button {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 12px;
    background-color: var(--rouge);
    border: none;
    border-radius: 8px;
    box-shadow: 2px 2px 4px var(--ombre);
    color: var(--blanc);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    width:  auto;
}

button:hover, .button:hover {
    background-color: #920303;
}

button:active, .button:active {
    background-color: var(--rouge);
    box-shadow: inset 2px 2px 4px var(--ombre);
}

a.button {
    text-decoration: none;
}
.opablue {
  position: relative;
}
.opablue::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #03295bc8;
  z-index: 0.5;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 8vh;
    background-color: #FFF;
    color: var(--noir);
    padding: 0;

    position: fixed;      /* 🔥 au lieu de relative */
    top: 0;
    left: 0;
    width: 100%;          /* 🔥 pour garder la largeur */
    z-index: 1000;

    transition: top .3s ease; /* 🔥 animation fluide */
}
.logo {
    @media screen and (min-width: 768px){
      width: 20%;  
    }
    
}
.logo img {
    width: 30%;
    @media screen and (min-width: 768px){
        width: 100%;
        max-width: 150px;
        padding: 8px;
    }
}

/* Menu burger */
.burger {
    display: block;
    cursor: pointer;
    z-index: 101;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--bleu);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Animation burger → croix */
.burger-active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--rouge);
}

.burger-active .line2 {
    opacity: 0;
}

.burger-active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--rouge);
}

/* Liens de navigation */
.nav-links {
    position: fixed;
    top: 8vh;
    right: 0;
    height: 92vh;
    width: 60%;
    background-color: var(--bleu);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    padding: 2rem 3rem;
    z-index: 100;
    margin-top: 0;
}

.nav-links li {
    list-style: none;
    opacity: 0;
    margin: 1rem 0;
    animation: navLinkFade 0.5s forwards;
}

.nav-links a {
    color: var(--blanc);
    text-decoration: underline;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}
.nav-links a:hover{
    color: #b0b0b0;
}
/* Animation des liens */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Menu actif */
.nav-active {
    transform: translateX(0%);
}

/* Bouton pour mobile (dans le menu burger) */
.nav-button-mobile {
    display: none; /* Caché par défaut (desktop) */
    width: 80%;
    margin-top: 1rem;
}

/* Bouton pour desktop */
.nav-button-desktop {
    display: none; /* Caché par défaut (mobile) */
}

/* Media query pour tablettes (768px et +) */
@media screen and (min-width: 768px) {
    .nav-links {
        position: static;
        width: 60%; /* Réduction pour laisser de la place au bouton */
        height: auto;
        background-color: transparent;
        flex-direction: row;
        justify-content: space-around; /* Alignement à gauche pour laisser de la place au bouton */
        transform: none;
        padding: 0;
        margin-block-end: 0;
    }

    .nav-links li {
        opacity: 1;
        margin: 0 1rem;
    }

    .nav-links a {
        color: var(--noir);
        text-decoration: none;
    }

    .burger {
        display: none;
    }

    /* Affiche le bouton desktop */
    .nav-button-desktop {
        display: flex;
        justify-content: flex-end;
        margin-right: 1rem;
        width: 20%;
    }

    /* Cache le bouton mobile */
    .nav-button-mobile {
        display: none;
    }
}

/* Media query pour desktop (1024px et +) */
@media screen and (min-width: 1024px) {
    .nav-links {
        width: 50%; /* Ajustement pour laisser de la place au bouton */
    }
}

#page-active a{
    text-decoration: underline;
    color: #b0b0b0;
}


/* Main Landing */
.landing-section-hero{
    width: 100%;
    height: 80vh;
    color: #FFF;
    display: flex;
    align-items: center;
    padding: 0 12px;
    position: relative;
}
/* Image LCP en HTML (chargement prioritaire), flou conservé */
.landing-section-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
    filter: blur(4px);
}
/* Voile noir */
.landing-section-hero::after{
    content: "";
    position: absolute;
    inset: 0;
    height: 80vh;
    background: rgba(0,0,0,0.45);
    z-index: 0;
}
.landing-section-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 90%;
  @media screen and (min-width: 768px) {
        display: flex;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

.landing-section-hero p{
     @media screen and (min-width: 768px) {
        margin: 0 0 40px 0;
     }
}


/* Landing section auto-école */
.landing-section-autoecole {
    width: 100%;
}
.landing-section-autoecole-content {
    padding-bottom: 20px;
}

.landing-section-autoecole-content-pres-lot {
    @media screen and (min-width: 768px) {
        display: flex;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.landing-section-autoecole-content-pres {
    padding: 0 20px 40px 20px;
    @media screen and (min-width: 768px) {
        width: 70%;
    }
}
.landing-section-autoecole-content-pres img{
    width: 100%;
    border-radius: 12px;
    @media screen and (min-width: 768px) {
        width: 100%;
        aspect-ratio: 1.8;
    }
}
.landing-section-autoecole-content-pres h4{
    font-size: 1.6rem;
    font-weight: 700;
    margin: 12px 0;
}

.landing-section-autoecole-content-pres-contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    height: 50px;
}
.landing-section-autoecole-content-pres-contact-info img{
    width: 30px;
    height: 30px;
}


/* Section  Landing Récup */
.landing-section-recup {
    position: relative;
    contain: content;
}
.landing-section-recup-bg {
    position: relative;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    @media screen and (min-width: 768px) {
        background-position: center center;
    }
}

.landing-section-recup-content {
    padding: 40px 20px;
    position: relative;
    contain: content;
    z-index: 10;
    color: var(--blanc);
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.landing-section-recup-content p{
    @media screen and (min-width: 768px) {
        width: 60%;
        position: relative;
        z-index: 10;
        padding-bottom: 20px;
    }
}
.landing-section-recup-content-img {
    display: none;
    @media screen and (min-width: 768px) {
    display: flex;
    position: absolute;
    width: 40%;
    right: 20px;
    top: 30%;
    z-index: 0;
    filter: brightness(0.6);
    }
    @media screen and (min-width: 1024px){
        width: 30%;
        top: 10%;
        aspect-ratio: 1.6;
    }
}

/* ========== Floutage "Bientôt disponible" pour récupération de points ========== */
.bientot-disponible-wrapper {
    position: relative;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

/* Overlay flouté qui couvre le contenu */
.bientot-disponible-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(10px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Contenu flouté */
.bientot-disponible-wrapper > * {
    filter: blur(10px);
    opacity: 0.4;
    pointer-events: none;
}

/* Message "Bientôt disponible" - NON flouté */
.bientot-disponible-wrapper::after {
    content: "Bientôt disponible";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(3, 41, 91, 0.95);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    filter: blur(0) !important;
}

/* Pour les liens dans la nav */
.nav-links .bientot-disponible-wrapper {
    position: relative;
}

.nav-links .bientot-disponible-wrapper a {
    pointer-events: none;
    cursor: not-allowed;
    filter: blur(10px);
    opacity: 0.4;
}

.nav-links .bientot-disponible-wrapper::after {
    content: "Bientôt disponible";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(3, 41, 91, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    filter: blur(0) !important;
}

/* Pour la section complète */
.landing-section-recup.bientot-disponible-wrapper {
    position: relative;
    overflow: hidden;
}

.landing-section-recup.bientot-disponible-wrapper > * {
    filter: blur(12px);
    opacity: 0.3;
    pointer-events: none;
}

.landing-section-recup.bientot-disponible-wrapper::after {
    content: "Bientôt disponible";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(3, 41, 91, 0.95);
    color: #fff;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    filter: blur(0) !important;
}

/* Pour les spans dans le texte */
span.bientot-disponible-wrapper {
    display: inline-block;
    position: relative;
    padding: 0.25rem 0.5rem;
}

span.bientot-disponible-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    filter: blur(10px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

span.bientot-disponible-wrapper::after {
    content: "Bientôt disponible";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(3, 41, 91, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    filter: blur(0) !important;
}

/* Pour les options du formulaire - wrapper séparé pour éviter l'héritage du blur */
.bientot-disponible-wrapper-form {
    position: relative;
    display: inline-block;
}

.bientot-disponible-wrapper-form .choice-item {
    filter: blur(10px);
    opacity: 0.4;
    pointer-events: none;
}

.bientot-disponible-wrapper-form .choice-item input[disabled] {
    cursor: not-allowed;
}

.bientot-disponible-wrapper-form::after {
    content: "Bientôt disponible";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(3, 41, 91, 0.95);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}   

/* Landing section histoire */
.landing-section-histoire-content{
    padding: 40px 20px;
    position: relative;
    contain: content;
    z-index: 10;
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.landing-section-histoire-content img{
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    @media screen and (min-width: 768px) {
        max-width: 500px;
    }
}
.landing-section-histoire-content p{
    @media screen and (min-width: 768px) {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }
}

/* Landing section equipe */
.landing-section-equipe {
    color: var(--blanc);
}
.landing-section-equip-bg {
    position: relative;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    @media screen and (min-width: 768px) {
        background-position: center center;
    }
}

.landing-section-equip-content {
        padding: 40px 20px;
    position: relative;
    contain: content;
    z-index: 10;
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.landing-section-equip-content-tache {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    @media screen and (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 2rem;
        justify-items: center;
    }
}
.landing-section-equip-content-indiv {
    text-align: center;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    @media screen and (min-width: 768px) {
        flex-direction: column;
        width: 70%;
    }
}
.landing-section-equip-content-indiv img {
    border-radius: 50%;       /* Toujours un cercle */
    width: 100px;             /* Largeur fixe */
    height: 100px;            /* Hauteur fixe pour forcer le carré */
    object-fit: cover;        /* L'image remplira le carré sans déformer */
    object-position: top;  /* Centrage de l'image dans le cercle */
}

.landing-section-equip-content-indiv-fonction {
    font-style: italic;
    font-size: 0.8rem;
    margin: 0;
}
.landing-section-equip-content-indiv-pres{
    text-align: left;
    font-size: 0.8rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Formulaire Landing */

form{
  max-width:800px;
  margin:20px auto 40px auto;
  padding:20px;
  background:#d1cfcf;
  border-radius:8px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  font-family:Arial;
}

.field-group{
  margin-bottom:15px;
}

label{
  font-weight:bold;
  display:block;
  margin-bottom:5px;
}

input, textarea{
  width:100%;
  padding:10px;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:16px;
  box-sizing:border-box;
}
input[type="radio"]{
  width:auto;
  flex:0 0 auto;
}
.choices{
  display:flex;
  flex-direction:column;   /* mobile = colonne */
  gap:10px;
  align-items:flex-start;   /* aligne bien tout à gauche */
  width:100%;
}

.choice-item{
  display:flex;
  align-items:center;       /* radio + texte alignés sur la même ligne */
  gap:8px;
  padding:10px;
  width:100%;               /* même largeur */
  box-sizing:border-box;
}

.choice-item input[type="radio"]{
  margin:0;                 /* évite le petit décalage du bouton radio */
}


/* 📱👉💻 Sur écrans plus larges → en ligne */
@media (min-width: 768px){
  .choices{
    flex-direction: row;
  }

  .choice-item{
    width: 33.33%;          /* même taille sur une ligne */
  }
}

.form-button{ 
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Messages de formulaire */
.form-message-success {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    font-size: 14px;
    line-height: 1.5;
}

.form-message-success strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    font-size: 14px;
    line-height: 1.5;
}

.form-message-error strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}




/* Before footer */
.section-before-footer {
    width: 100%;
    padding: 8px 20px;
    background-color: #d1cfcf;
    @media (min-width: 768px){
        display: flex;
        justify-content: center;
        gap: 20px;
    }
}
.section-before-footer-1erbloc{
    width: 100%;
    text-align: center;
        @media (min-width: 768px){
        display: flex;
        width: auto;
        align-items: center;
        }
}
.section-before-footer-logo{
    width: 100px;
    height: auto;
    margin: 0 auto;
    @media (min-width: 768px){
        margin: 0;

        }
}
.slogan {
    margin-top: 0;
    @media (min-width: 768px){
        text-align: left;
        margin: 0;
        }
}
.section-before-footer-2emebloc{
    @media (min-width: 768px){
        display: flex;
        width: auto;
        gap: 20px;
        }
}
.section-before-footer-2emebloc img{
    width: 40px;
    height: 40px;
}
.section-before-footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Footer after */
/* === Mobile first (par défaut pour petits écrans) === */

/* Footer after */
.section-after-footer{
    background-color: var(--bleu);
        @media (min-width: 768px){
        display: flex;
        align-items: center;
        padding: 8px;
        }
}

/* Liens du footer */
footer a{
    color: #fff;
}

/* Conteneur principal du footer */
.footer-container{
    width: 98%;
    margin: 8px auto 0 auto;
    display: flex;
    flex-direction: column; /* mobile first : tout empilé */
    align-items: center;

}

/* Conteneur gauche */
.footer-container-left{
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;

}

.footer-container-left p{
    display: flex;
    align-items: center;
    padding: 0;
}

.footer-container-left a{
    margin: 0 10px;
    cursor: pointer;
}

/* Conteneur centre */
.footer-container-center{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 3;
    padding-bottom: 4px;
}

/* Liens fichiers avec icônes */
.footer-container-center-fichiers {
    display: flex;
    align-items: center;
    justify-content: center; /* centre uniquement les liens texte */
    position: relative;
    margin-bottom: 8px; /* espace entre fichiers */
}

.footer-container-center-fichiers a img {
    width: 20px;
    margin-left: 4px;       /* petit espace entre texte et icône */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-container-center-fichiers a{
    margin-right: 12px;
}

/* Conteneur droit */
.footer-container-right{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 1;
        @media (min-width: 768px){
            align-items: flex-end
        }
    
}

.logo-footer{
    width: 40px;
}

.footer-container-right-logos a{
    text-decoration: none;
    cursor: alias;
    width: 20px;
}

.footer-container-right-mentions{
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-container-right-mentions img{
    width: 30px;
}

/* === Popups === */
.popup-container {
    position: fixed;
    z-index: 1200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative; /* nécessaire pour la croix */
}

.mentions-popup-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 80%;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative; /* nécessaire pour la croix */
}

.popup-content p{
    width: 98%;
    margin: 0 auto;
}

/* === CROIX QUI RESTE TOUJOURS ACCESSIBLE === */
.close {
    color: var(--rouge);
    font-size: 1.75rem;
    font-weight: bold;
    
    /* On enlève le float */
    float: none;

    /* On la fixe en haut même quand ça scrolle */
    position: sticky;
    top: 10px;
    right: 10px;

    /* Pour la placer à droite proprement */
    display: block;
    text-align: right;

    padding: 5px 10px;
    border-radius: 50%;
    z-index: 10;
}

.close:hover,
.close:focus {
    color: #920303;
    text-decoration: none;
    cursor: pointer;
}

/* === Styles pour écrans plus grands === */
@media (min-width: 401px) and (max-width: 1000px){
    .footer-container-right{
        flex-direction: row;
    }
}

@media (min-width: 1001px) {
    .footer-container{
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-container-left{
        width: 40%;
        justify-content: flex-start;
        order: 0;
    }

    .footer-container-center{
        width: 20%;
        justify-content: flex-end;
        order: 0;
    }

    .footer-container-right{
        width: 40%;
        justify-content: flex-end;
        order: 0;
    }

    .popup-content p{
        width: 60%;
    }
}

@media (min-width: 1441px) {
    .popup-content p{
        width: 98%;
    }
}




/* Autoecole Hero */
.autoecole-section-hero{
    width: 100%;
    height: 80vh;
    color: #FFF;
    display: flex;
    align-items: center;
    padding: 0 12px;
    position: relative;
}
/* Image LCP en HTML (chargement prioritaire), flou conservé */
.autoecole-section-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
    filter: blur(4px);
}
/* Voile bleu */
.autoecole-section-hero::after{
    content: "";
    position: absolute;
    inset: 0;
    height: 80vh;
    background: #03295bc8;
    z-index: 0;
}
.autoecole-section-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 90%;
  @media screen and (min-width: 768px) {
        display: flex;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}

.autoecole-section-hero p{
     @media screen and (min-width: 768px) {
        margin: 0 0 40px 0;
     }
}


/* Autoecole Centres */
.autoecole-section-noscentres {
    padding: 40px 20px;
}
.autoecole-section-noscentres-pres{
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-noscentres-pres h2 {
    margin-top: 0;
    text-align: center;
}
.autoecole-section-noscentres-pres p:last-child{
     @media screen and (min-width: 768px) {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.autoecole-section-noscentres-pres-label{
    width: 100px;
    float: left;
        @media screen and (min-width: 768px) {
        float: none;
    }
}
.autoecole-section-noscentres-activités {
    margin-top: 40px;
    @media screen and (min-width: 768px) {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    }
}
.autoecole-section-noscentres-activités-pres:first-child{
    margin-bottom: 40px;
}
.autoecole-section-noscentres-activités-pres {
    @media screen and (min-width: 768px) {
        display: flex;
        align-items: center;
        gap: 10%;
    }
}
.autoecole-section-noscentres-activités-pres-text {
    @media screen and (min-width: 768px) {
        width: 50%;
    }
}
.autoecole-section-noscentres-activités-pres-text h2{
    margin-top: 0;
}

.autoecole-section-noscentres-activités-pres-text-contact-bloc {
    background-color: #044aa5b8;
    display: flex;
    justify-content: space-between;
    padding: 8px 8px;
    margin: 0;
    color: var(--blanc);
}
.autoecole-section-noscentres-activités-pres-text-contact-bloc:first-child{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 1px solid var(--blanc);
}
.autoecole-section-noscentres-activités-pres-text-contact-bloc:last-child{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 12px;
}
.autoecole-section-noscentres-activités-pres-text-contact-bloc p{
    display: flex;
    align-items: center;
    margin: 0;
    text-decoration: underline;
}
.autoecole-section-noscentres-activités-pres-text-contact-bloc img{
    width: 30px;
}
.autoecole-section-noscentres-activités-pres-img {
    width: 100%;
    aspect-ratio: 16/9; /* conteneur 16/9 */
    overflow: hidden;    /* découpe tout ce qui dépasse */
    border-radius: 8px;  /* optionnel */
    position: relative;
    @media screen and (min-width: 768px) {
        width: 40%;
    }
}
.autoecole-section-noscentres-activités-pres-img img{
    width: 100%;
    height: 100%;
    object-fit: cover; /* remplit le conteneur sans déformer l'image */
    object-position: center; /* centre l'image */
    display: block;
        @media screen and (min-width: 768px) {
        display: flex;
        aspect-ratio: 16/9;
    }
}
.autoecole-section-noscentres-activités-pres-img-btn {
    width: 90%;
    display: flex;
    position: absolute;
    bottom: 10px; /* distance depuis le bas */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    gap: 8px;
}

.autoecole-section-noscentres-activités-pres-img-btn a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 12px;
    background-color: var(--rouge);
    border: none;
    border-radius: 8px;
    box-shadow: 2px 2px 4px var(--ombre);
    color: var(--blanc);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
    transition: background-color 0.3s ease;
}

.autoecole-section-noscentres-activités-pres-img-btn a:hover {
    background-color: #c41e1e;
}

.autoecole-section-noscentres-activités-pres-img-btn a.btn-bleu {
    background-color: var(--bleu);
}

.autoecole-section-noscentres-activités-pres-img-btn a.btn-bleu:hover {
    background-color: #044aa5;
}

.btn-bleu {
    background-color: var(--bleu);
}
.autoecole-section-noscentres-activités-separator {
    width: 60%;               /* 80% de la largeur du parent */
    height: 2px;               /* épaisseur du séparateur */
    background-color: var(--bleu); /* couleur du séparateur */
    margin: 30px auto;         /* centré horizontalement avec espace vertical */
    border-radius: 2px;        /* optionnel : bords légèrement arrondis */
}


/* AutoEcole Code */
.autoecole-section-code {
    position: relative;
    contain: content;
    color: var(--blanc);
}
.autoecole-section-code-bg {
    position: relative;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    @media screen and (min-width: 768px) {
        background-position: center center;
    }
}
.autoecole-section-code-content {
    padding: 40px 20px;
    position: relative;
    contain: content;
    z-index: 10;
    color: var(--blanc);
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-code-content p{
    @media screen and (min-width: 768px) {
        width: 40%;
    }
}
.autoecole-section-code-content-img {
    display: none;
    @media screen and (min-width: 768px) {
    display: flex;
    position: absolute;
    width: 30%;
    right: 60px;
    top: 10%;
    z-index: 0;
    filter: brightness(0.6);
    }
}  

/* Autoecole information */
.autoecole-section-informations-content {
        padding: 40px 20px;
        @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-informations-content h2{
    text-align: center;
}
.autoecole-section-informations-content button{
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/* Autoecole Resultats */
.autoecole-section-resultats h3 {
    text-decoration: underline;
}
.autoecole-section-resultats-content {
        position: relative;
        color: var(--blanc);
        padding: 40px 20px;
        @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-resultats-content h2{
    text-align: center;
}
.autoecole-section-resultats-list {
    display: flex;
    text-align: center;
    padding: 0;
}
.autoecole-section-resultats-list li{
    flex: 1;
    list-style: none;
}
.autoecole-section-resultats-list li span{
    font-size: 1.8rem;
    font-weight: 900;
}
.note {
}

/* Autoecole Financement */
.autoecole-section-financement {
}
.autoecole-section-financement-content {
        position: relative;
        color: var(--blanc);
        padding: 40px 20px;
        @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-financement-content-list {
}
.autoecole-section-financement-content-list-items a{
    color: var(--blanc);
    display: flex;
    align-items: center;
}
.autoecole-section-financement-content-list-items a img{
    width: 20px;
    margin-left: 12px;
}
.btn-link {
}
.autoecole-section-financement-cta {
}
.autoecole-section-financement-content-img {
    display: none;
}


/* Autoecole tarifs */
.autoecole-section-tarifs {
    padding: 0 20px 40px 20px;
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-tarifs h2{
    text-align: center;
}
.tarifs-intro{
    text-align: center;
    width: auto;
}

.autoecole-section-tarifs-content {
    width: 100%;
    margin: auto;
    display: flex;
    gap: 20px;
    flex-direction: column;

    @media screen and (min-width: 768px) {
        max-width: 90%;
        flex-wrap: wrap;
        flex-direction: row;
    }
}
.autoecole-section-tarifs-content-bloc{
    flex: 1;
}
.tarifs-intro {
    margin-bottom: 32px;
    opacity: 0.9;
}

.tarifs-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.tarifs-table thead {
    background-color: var(--bleu);
    color: var(--blanc);
}

.tarifs-table th,
.tarifs-table td {
    text-align: left;
    font-size: 0.7rem;
    @media screen and (min-width: 768px) {
       padding: 12px 14px;
       font-size: 1rem;
    }
}

.tarifs-table tbody tr:nth-child(even) {
    background-color: #f5f7fa;
}
.tarifs-table td:last-child{
    min-width: 40px;
    @media screen and (min-width: 768px) {
       min-width: 70px;
    }
}
.tarifs-note {
    background-color: rgba(0, 86, 160, 0.08);
    padding: 20px;
    border-radius: 8px;
}


/* Autoecole Avis */
.autoecole-section-noscentres-avis {
    margin: 30px 15px;
}

.autoecole-section-noscentres-avis-title {
    text-align: center;
}

.autoecole-section-noscentres-avis-avis{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.autoecole-section-noscentres-avis-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.autoecole-section-noscentres-avis-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.autoecole-section-noscentres-avis-author {
    font-weight: bold;
    color: var(--bleu);
    font-size: 1rem;
}

.autoecole-section-noscentres-avis-rating {
    color: #fbbc05;
    font-weight: bold;
}

.autoecole-section-noscentres-avis-item-text p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.autoecole-section-noscentres-avis-empty {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}


@media screen and (min-width: 768px) {
    .autoecole-section-noscentres-avis-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .autoecole-section-noscentres-avis-item {
        width: 30%;
        min-width: 250px;
    }
}


@media screen and (min-width: 1200px) {
    .autoecole-section-noscentres-avis-item {
        width: 28%;
    }
}

/* Autoecole Présentation Succursales */
.autoecole-section-presentation {
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.autoecole-section-presentation-content {
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

.autoecole-section-presentation-content h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bleu);
}

.autoecole-section-presentation-lot {
    display: flex;
    flex-direction: column;
    gap: 30px;
    @media screen and (min-width: 768px) {
        flex-direction: row;
        justify-content: space-around;
    }
}

.autoecole-section-presentation-bloc {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 100%;
    @media screen and (min-width: 768px) {
        max-width: 45%;
    }
}

.autoecole-section-presentation-bloc h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bleu);
    margin-bottom: 25px;
    text-align: center;
}

.autoecole-section-presentation-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.autoecole-section-presentation-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
    min-height: auto;
}

.autoecole-section-presentation-contact-info img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 2px;
}

.autoecole-section-presentation-contact-info p {
    margin: 0;
    line-height: 1.6;
    color: var(--noir);
}

.autoecole-section-presentation-contact-info a {
    color: var(--bleu);
    text-decoration: none;
    transition: color 0.3s ease;
}

.autoecole-section-presentation-contact-info a:hover {
    color: var(--rouge);
    text-decoration: underline;
}

.agrement-placeholder,
.horaires-placeholder {
    font-style: italic;
    color: var(--bleu);
    font-weight: 600;
}

/* Mise en évidence des présentations */
.autoecole-section-presentation-bloc.highlight {
    border: 3px solid var(--rouge);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
    transform: scale(1.02);
    transition: all 0.3s ease;
    animation: highlightPulse 2s ease-in-out;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(220, 20, 60, 0.6);
    }
    100% {
        box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
    }
}

/* Autoecole Label */
.autoecole-section-label {
    
}
.autoecole-section-label-content {
    position: relative;
    color: var(--blanc);
    padding: 40px 20px 40px 20px;
    @media screen and (min-width: 768px) {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}
.autoecole-section-label-content h2{
    text-align: center;
    margin-top: 40px;
}
.autoecole-section-label-content img{
    width: 100px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}









.recuperation-section-calendrier-content {
    position: relative;
    padding: 40px 20px 40px 20px;
}

@media screen and (min-width: 768px) {
    .recuperation-section-calendrier-content {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

.recuperation-section-calendrier-content h2 {
    color: #fff;
    margin-bottom: 25px;
}

/* Mobile : affichage en cartes (tout visible) */
.recuperation-stages-cards {
    display: block;
}
.recuperation-table-responsive {
    display: none;
}

.recuperation-stage-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.recuperation-stage-card-row {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.35;
}
.recuperation-stage-card-row:last-of-type {
    margin-bottom: 0;
}
.recuperation-stage-card-label {
    display: inline-block;
    font-weight: 700;
    color: var(--bleu);
    min-width: 6.5rem;
    margin-right: 0.25rem;
}
.recuperation-stage-card-action {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}
.recuperation-stages-cards-error {
    color: #fff;
    text-align: center;
    padding: 1rem;
}

/* Desktop : tableau, masquer les cartes */
@media screen and (min-width: 768px) {
    .recuperation-stages-cards {
        display: none;
    }
    .recuperation-table-responsive {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.recuperation-stages-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.recuperation-stages-table thead {
    background: #1e2f4f;
    color: #fff;
}

.recuperation-stages-table th,
.recuperation-stages-table td {
    padding: 14px;
    text-align: center;
    font-size: 0.95rem;
    white-space: nowrap;
}
.recuperation-stages-table th:nth-child(4),
.recuperation-stages-table td:nth-child(4),
.recuperation-stages-table th:nth-child(7),
.recuperation-stages-table td:nth-child(7) {
    white-space: normal;
    max-width: 140px;
}

.recuperation-stages-table tbody tr:nth-child(even) {
    background: #f4f6fa;
}

.recuperation-btn-reserver {
    display: inline-block;
    padding: 8px 14px;
    background: #e30613;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.recuperation-badge-complet {
    display: inline-block;
    padding: 6px 12px;
    background: #aaa;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: not-allowed;
}

/* ========== Page Récupération de points – Hero (aligné mockup) ========== */
.recuperation-section-hero {
    width: 100%;
    min-height: 50vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow-x: hidden;
    box-sizing: border-box;
}
/* Image LCP en HTML (chargement prioritaire), flou conservé */
.recuperation-section-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: blur(4px);
}
.recuperation-section-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 41, 91, 0.85);
    z-index: 0;
}
.recuperation-section-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.recuperation-section-hero-content h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.25;
    word-wrap: break-word;
    hyphens: auto;
}
.recuperation-section-hero-content p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-size: 0.95rem;
}
/* Mobile : éviter que le hero soit caché sous la nav fixe et trop serré */
@media screen and (max-width: 767px) {
    .recuperation-section-hero {
        padding: calc(8vh + 24px) 16px 40px;
        min-height: 40vh;
    }
    .recuperation-section-hero-content h1 {
        font-size: 1.35rem;
    }
    .recuperation-section-hero-content p {
        font-size: 0.9rem;
    }
}
@media screen and (min-width: 768px) {
    .recuperation-section-hero { min-height: 55vh; }
    .recuperation-section-hero-content h1 { font-size: 2.8rem; }
}

/* ========== Section Objectifs (grille 2x2 + image à droite) ========== */
.recuperation-section-objectifs {
    padding: 50px 20px;
    background: #f8f9fa;
}
.recuperation-section-objectifs-inner {
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .recuperation-section-objectifs-inner {
        display: flex;
        align-items: flex-start;
        gap: 3rem;
    }
    .recuperation-section-objectifs-content { flex: 1; }
    .recuperation-section-objectifs-img { width: 42%; flex-shrink: 0; }
}
.recuperation-section-objectifs h2 {
    color: var(--bleu);
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.recuperation-section-objectifs-content p {
    margin-bottom: 1rem;
    color: var(--gris);
}
.recuperation-objectifs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.recuperation-objectif-card {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}
.recuperation-objectif-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.recuperation-objectif-card p {
    margin: 0;
    font-size: 0.9rem;
}
.recuperation-section-objectifs-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}
@media screen and (max-width: 767px) {
    .recuperation-section-objectifs-img { margin-top: 2rem; }
}

/* ========== Section Modalités et Inscriptions (image gauche, contenu droite) ========== */
.recuperation-section-modalites {
    padding: 50px 20px;
    background: #fff;
}
.recuperation-section-modalites-inner {
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .recuperation-section-modalites-inner {
        display: flex;
        align-items: flex-start;
        gap: 3rem;
    }
    .recuperation-section-modalites-img { width: 40%; flex-shrink: 0; }
    .recuperation-section-modalites-content { flex: 1; }
}
.recuperation-section-modalites-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.recuperation-modalites-subtitle {
    color: var(--rouge) !important;
    margin-top: 0;
    margin-bottom: 1rem;
}
.recuperation-section-modalites-content p {
    margin-bottom: 1rem;
    color: var(--gris);
}
.recuperation-agrement,
.recuperation-conditions,
.recuperation-remboursement {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f4f6fa;
    border-radius: 8px;
    border-left: 4px solid var(--bleu);
}
.recuperation-agrement h3,
.recuperation-conditions h3,
.recuperation-remboursement h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--bleu);
}
.recuperation-agrement ul {
    margin: 0;
    padding-left: 1.25rem;
}
.recuperation-agrement li { margin-bottom: 0.25rem; }
.recuperation-section-modalites-content .button {
    margin-top: 1.5rem;
}

/* ========== Tableau stages : bouton vert S'inscrire ========== */
.recuperation-btn-inscrire {
    display: inline-block;
    padding: 8px 14px;
    background: #28a745;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}
.recuperation-btn-inscrire:hover {
    background: #218838;
    color: #fff;
}
.recuperation-lien-modalites {
    color: var(--bleu);
    text-decoration: underline;
}
.recuperation-lien-modalites:hover {
    color: var(--rouge);
}

/* ========== Tableau : colonnes nombreuses, responsive ========== */
@media screen and (max-width: 991px) {
    .recuperation-stages-table th,
    .recuperation-stages-table td {
        font-size: 0.75rem;
        padding: 8px 6px;
    }
    .recuperation-stages-table th:nth-child(4),
    .recuperation-stages-table td:nth-child(4),
    .recuperation-stages-table th:nth-child(7),
    .recuperation-stages-table td:nth-child(7) {
        max-width: 100px;
        font-size: 0.7rem;
    }
    .recuperation-btn-inscrire,
    .recuperation-badge-complet {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}
@media screen and (min-width: 992px) {
    .recuperation-stages-table th,
    .recuperation-stages-table td {
        font-size: 0.95rem;
        padding: 14px;
    }
    .recuperation-stages-table th:nth-child(4),
    .recuperation-stages-table td:nth-child(4),
    .recuperation-stages-table th:nth-child(7),
    .recuperation-stages-table td:nth-child(7) {
        max-width: none;
        white-space: normal;
    }
}

/* ========== Bloc NDA (organisme de formation) – section au-dessus du before-footer ========== */
.recuperation-section-nda {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1.25rem 20px;
    background-color: #e8eae9;
    text-align: center;
    overflow-x: hidden;
    margin: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.recuperation-section-nda .recuperation-nda {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    box-sizing: border-box;
}
.recuperation-section-nda .recuperation-nda p {
    margin: 0.25rem 0;
    color: var(--gris);
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.recuperation-section-nda .recuperation-nda-mention {
    font-style: italic;
    opacity: 0.95;
}
/* Mobile : bandeau bien centré et contenu dans l'écran */
@media screen and (max-width: 767px) {
    .recuperation-section-nda {
        padding: 1rem 16px;
    }
    .recuperation-section-nda .recuperation-nda {
        padding: 1rem 1rem;
        font-size: 0.85rem;
    }
}
