.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-10212 .elementor-element.elementor-element-920bd37 > .elementor-widget-container{margin:50px 0px 0px 0px;}.elementor-10212 .elementor-element.elementor-element-920bd37{text-align:center;}.elementor-10212 .elementor-element.elementor-element-920bd37 .elementor-heading-title{font-family:"Exo", Sans-serif;font-size:40px;font-weight:600;color:var( --e-global-color-3eee9aa );}.elementor-10212 .elementor-element.elementor-element-0b5f91c{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-bc325d8 */:root {
    --bleu:  #06324d;
    --jaune: #fab720;
    --blanc: #ffffff;
    --gris:  #f0f2f5;
    --rayon: 12px;
  }
 
  .lpj-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* Grille principale : écarte les 2 blocs de 60px */
  .lpj-main-row {
    display: flex;
    gap: 60px; 
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Aligne verticalement le bouton et sa carte attenante */
  .lpj-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; /* Espace entre le bouton du haut et le document */
  }
 
  /* ---- BOUTONS DU HAUT ---- */
  .lpj-btn {
    padding: 16px 42px;
    border-radius: var(--rayon);
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: 3px solid var(--bleu);
    background: var(--bleu);
    color: var(--blanc);
    transition: all 0.3s ease-in-out !important;
    letter-spacing: .5px;
    width: 100%; /* S'adapte à la largeur de la carte */
    max-width: 340px;
    text-align: center;
  }
  .lpj-btn:hover {
    background: var(--jaune);
    color: var(--bleu) !important;
    border-color: var(--jaune);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
  }
 
  /* ---- MINIATURES ---- */
  .lpj-card {
    position: relative;
    width: 340px;
    height: 440px;
    border-radius: var(--rayon);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    cursor: pointer;
    background: var(--gris);
    flex-shrink: 0;
    transition: all 0.3s ease-in-out !important;
  }
  .lpj-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,.20);
  }
 
  /* Image miniature floutée */
  .lpj-card img.lpj-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: blur(4px) brightness(.75);
    transition: all 0.3s ease-in-out !important;
  }
  .lpj-card:hover img.lpj-thumb {
    filter: blur(3px) brightness(.65);
  }
 
  /* Overlay */
  .lpj-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  /* Bouton Voir plus */
  .lpj-voir-plus {
    background: var(--bleu);
    color: var(--blanc);
    border: 3px solid var(--blanc);
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: .5px;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: all 0.3s ease-in-out !important;
  }
  .lpj-card:hover .lpj-voir-plus {
    background: var(--jaune);
    color: var(--bleu);
    border-color: var(--jaune);
    transform: scale(1.05);
  }
 
  /* Label bas de carte */
  .lpj-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 18px;
    background: var(--bleu);
    color: var(--blanc);
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    letter-spacing: .4px;
  }
 
  /* ---- POPUP ---- */
  .lpj-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .lpj-modal.active { display: flex; }
 
  .lpj-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5,18,35,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: fadeIn .25s ease;
  }
 
  .lpj-modal-box {
    position: relative;
    z-index: 1;
    background: var(--blanc);
    border-radius: 16px;
    overflow: hidden;
    width: 90vw;
    max-width: 900px;
    height: 85vh;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    animation: slideUp .3s cubic-bezier(.22,.68,0,1.2);
  }
 
  .lpj-modal-header {
    background: var(--bleu);
    color: var(--blanc);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
  }
 
  .lpj-modal-close {
    background: none;
    border: none;
    color: var(--blanc);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: all 0.3s ease-in-out !important;
  }
  .lpj-modal-close:hover { transform: scale(1.2) rotate(90deg); }
 
  .lpj-modal-iframe {
    flex: 1;
    width: 100%;
    border: none;
    display: block;
  }
 
  @keyframes fadeIn  { from { opacity:0 } to { opacity:1 } }
  @keyframes slideUp { from { transform:translateY(40px);opacity:0 } to { transform:none;opacity:1 } }
 
  @media(max-width:768px){
    .lpj-main-row { gap: 40px; }
    .lpj-card { width: 90vw; height: 115vw; max-width: 340px; max-height: 440px; }
  }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-80e749d *//* --- DESIGN DE LA SECTION TEXTE --- */
  .lpj-text-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
  }

  /* Titre Principal H2 */
  .lpj-text-container h2.lpj-section-title {
    color: #06324d;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
  }
  .lpj-text-container h2.lpj-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #fab720;
    border-radius: 2px;
  }

  /* Sous-titres H3 */
  .lpj-text-container h3 {
    color: #06324d;
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  /* Paragraphe d'introduction */
  .lpj-intro-lead {
    font-size: 18px;
    color: #06324d;
    font-weight: 500;
    margin-bottom: 25px;
  }

  .lpj-text-container p {
    margin-bottom: 20px;
  }

  /* Encadré principal */
  .lpj-highlight-box {
    background-color: #f4f7f9;
    border-left: 4px solid #06324d;
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    margin: 35px 0;
  }
  .lpj-highlight-box h3 {
    margin-top: 0;
    color: #06324d;
  }

  .lpj-qa {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ccc;
  }
  .lpj-q {
    display: inline-block;
    background: #fab720;
    color: #06324d;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .lpj-a {
    margin-bottom: 0 !important;
  }

  /* Encadré Info Devis */
  .lpj-info-note {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff9e6;
    border: 1px solid #ffe699;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 30px 0;
  }
  .lpj-info-icon {
    font-size: 24px;
    color: #fab720;
    font-weight: bold;
  }
  .lpj-info-note p {
    margin: 0 !important;
    font-size: 15px;
    font-weight: 500;
    color: #5c4300;
  }

  /* Conclusion et remerciements */
  .lpj-outro {
    background: #f0f2f5;
    padding: 24px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
  }
  .lpj-outro p {
    margin: 0;
    font-weight: 600;
    color: #06324d;
  }
  .lpj-thanks {
    margin-top: 10px !important;
    color: #333333 !important;
    font-weight: 500 !important;
    font-style: italic;
  }

  /* Optimisation Mobile */
  @media (max-width: 600px) {
    .lpj-text-container {
      font-size: 15px;
    }
    .lpj-text-container h2.lpj-section-title {
      font-size: 26px;
    }
    .lpj-highlight-box {
      padding: 20px;
    }
  }/* End custom CSS */