/* ============================================
   Général
   ============================================ */


.separator {
    width: 106px;
    background: white;
    position: relative;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 7px;
}

.separator::after {
    content: '';
    display: block;
    border-radius: 99rem;
    background: white;
    height: 7px;
    width: 7px;
    left: 20px;
    position: relative;
}

/* ============================================
   BLOC IMAGE / TEXTE (BALLS)
   ============================================ */

.bloc-imtx-balls {
    background-color: #87C0BB;
    position: relative;

    ul li::marker {
        color: #ffffff;
    }
}

.imtx-2 .bloc-imtx-balls__decoration {
    top: 30px;
    left: 50px;
    right: initial;

    img {
        width: 250px;
    }
}

.imtx-3 .bloc-imtx-balls__decoration {
    top: 60px;

    img {
        max-width: 250px !important;
    }
}

@media (max-width: 992px) {
    .imtx-3 img {
        object-fit: contain !important;
        background: #fffcf4;
    }

}

.bloc-imtx-balls .container-fluid {
    padding: 0;
}

.bloc-imtx-balls .row {
    margin: 0;
    align-items: stretch;
}

/* === Image === */
.bloc-imtx-balls__image-col {
    padding: 0;
}

.bloc-imtx-balls__image-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.bloc-imtx-balls__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Contenu === */
.bloc-imtx-balls__content-col {
    padding: 50px 80px;
    display: flex;
    align-items: center;
}

.bloc-imtx-balls__content {
    width: 100%;
    max-width: 726px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* === Section texte === */
.bloc-imtx-balls__text-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bloc-imtx-balls__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 37px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}



.bloc-imtx-balls__exergue {
    border-radius: 10px;
    padding: 20px;
    border: 1px solid white;
    width: fit-content;

    p {
        color: white;

        &:last-of-type {
            margin-bottom: 0;
        }
    }
}

.bloc-imtx-balls__accroche {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #ffffff;
    margin: 0;
}

.bloc-imtx-balls__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;

    * {
        color: white !important;
    }
}

.bloc-imtx-balls__desc p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.bloc-imtx-balls__desc p:last-child {
    margin-bottom: 0;
}

.bloc-imtx-balls__desc strong,
.bloc-imtx-balls__desc b {
    font-weight: 700;
}

/* === Chiffres clés === */
.bloc-imtx-balls__keys {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bloc-imtx-balls__key-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bloc-imtx-balls__key-separator {
    width: 1px;
    height: 80px;
    background: white;
    flex-shrink: 0;
}

.bloc-imtx-balls__key-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bloc-imtx-balls__key-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

.bloc-imtx-balls__key-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

/* === Décoration === */
.bloc-imtx-balls__decoration {
    position: absolute;
    top: 130px;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.bloc-imtx-balls__decoration-img {
    max-width: 200px;
    height: auto;

}

/* === Alignement quand image à droite === */
.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__content-col {
    display: flex;
    justify-content: flex-end;

    .separator {
        left: -20px;
    }
}

.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__text-section {
    align-items: flex-end;
}

.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__title {
    text-align: right;
}

.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__accroche {
    text-align: right;
}

.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__desc *,
.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__exergue * {
    text-align: right !important;
}

.bloc-imtx-balls .row.flex-row-reverse .bloc-imtx-balls__exergue {
    align-self: flex-end;
}

/* === Responsive === */
@media (max-width: 1280px) {
    .bloc-imtx-balls__key-number {
        font-size: 32px;
    }

}

/* Tablette */
@media (max-width: 991px) {
    .bloc-imtx-balls__content-col {
        padding: 40px 50px;
    }

    .bloc-imtx-balls__content {
        gap: 40px;
    }

    .bloc-imtx-balls__title {
        font-size: 28px;
        line-height: 32px;
    }

    .bloc-imtx-balls__accroche {
        font-size: 18px;
        line-height: 22px;
    }


    .bloc-imtx-balls__decoration {
        right: 2%;
        max-width: 150px;
    }

    .bloc-imtx-balls__image-wrapper {
        height: 370px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bloc-imtx-balls .row {
        flex-direction: column !important;
    }

    .bloc-imtx-balls__image-wrapper {
        min-height: 300px;
    }

    .bloc-imtx-balls__content-col {
        padding: 30px 20px;
    }

    .bloc-imtx-balls__content {
        gap: 30px;
    }

    .bloc-imtx-balls__title {
        font-size: 24px;
        line-height: 28px;
    }

    .bloc-imtx-balls__accroche {
        font-size: 16px;
        line-height: 20px;
    }





    .bloc-imtx-balls__keys {
        gap: 20px;
    }

    .bloc-imtx-balls__key-separator {
        height: 60px;
    }





    .bloc-imtx-balls__decoration {
        display: none;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .bloc-imtx-balls__content-col {
        padding: 20px 15px;
    }

    .bloc-imtx-balls__title {
        font-size: 20px;
        line-height: 24px;
    }

    .bloc-imtx-balls__separator {
        width: 80px;
        height: 5px;
    }

    .bloc-imtx-balls__key-number {
        font-size: 28px;
    }
}


/* ============================================
   BLOC POINTS CLÉS (BALLS)
   ============================================ */

.block-points-cles {
    padding: 50px 0;

    @media (min-width: 1280px) {
        padding: 100px 0;
    }
}

/* Header du bloc */
.block-points-cles__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.block-points-cles__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 37px;
    color: #87C0BB;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
}

.block-points-cles__separator {
    width: 106px;
    height: 7px;
    background: #87C0BB;
    position: relative;
}

.block-points-cles__separator::after {

    background: #87C0BB;

}

.block-points-cles__accroche {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 0;
}

.block-points-cles__description {
    text-align: center;
    margin-bottom: 50px;
}

.block-points-cles__description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Grille des points */
.block-points-cles__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Gestion dynamique des colonnes pour 5 items */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.block-points-cles__col {
    display: flex;
    justify-content: center;
}

.block-points-cles__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
    max-width: 250px;
}

/* Icône */
.block-points-cles__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.block-points-cles__icon img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* Texte */
.block-points-cles__text {
    text-align: center;
}

.block-points-cles__item-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #87C0BB;
    margin: 0 0 20px 0;
    padding: 0;
}

.block-points-cles__item-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #000000;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .block-points-cles__title {
        font-size: 28px;
        line-height: 32px;
    }

    .block-points-cles__accroche {
        font-size: 18px;
        line-height: 22px;
    }

    /* .block-points-cles__grid {
        gap: 40px;
    } */

    .block-points-cles__item {
        gap: 30px;
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .block-points-cles {
        padding: 30px 0;
    }

    .block-points-cles__title {
        font-size: 24px;
        line-height: 28px;
    }

    .block-points-cles__separator {
        width: 80px;
        height: 5px;
    }

    .block-points-cles__separator::after {
        width: 5px;
        height: 5px;
        left: 15px;
    }

    .block-points-cles__accroche {
        font-size: 16px;
        line-height: 20px;
    }

    .block-points-cles__description {
        margin-bottom: 30px;
    }

    /* .block-points-cles__description p {
        font-size: 14px;
    } */

    .block-points-cles__grid {
        gap: 30px;
    }

    .block-points-cles__item {
        gap: 25px;
    }

    .block-points-cles__icon {
        height: 50px;
        width: 50px;
    }

    /* .block-points-cles__item-title {
        font-size: 14px;
    } */

    /* .block-points-cles__item-desc {
        font-size: 14px;
    } */
}

/* ============================================
   BLOC BANNIÈRE (BALLS)
   ============================================ */

.bloc-banniere-balls {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.bloc-banniere-balls__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bloc-banniere-balls__bg-image {
    @media (min-width: 768px) {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 767px) {
        width: 1000px;
        height: 140%;
        object-fit: cover;
        object-position: left;
    }
}

.bloc-banniere-balls .container-fluid {
    position: relative;
    z-index: 2;
}

.bloc-banniere-balls__content {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Logo SVG */
.bloc-banniere-balls__logo {
    width: 100%;
    max-width: 400px;
}

.bloc-banniere-balls__logo-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Titre principal */
.bloc-banniere-balls__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 65px;
    line-height: normal;
    color: #87C0BB;
    font-weight: 800;
    margin: 0;
    text-transform: initial;

    @media (max-width: 767px) {
        color: black !important;
        /* text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3); */
    }
}

/* Accroche */
.bloc-banniere-balls__accroche {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    line-height: normal;
    color: #000000;
    font-weight: 800;
    margin: 0;
    text-align: left !important;

}

/* Responsive */
@media (max-width: 991px) {
    .bloc-banniere-balls {
        min-height: 700px;
        padding: 80px 0;
    }

    .bloc-banniere-balls__logo {
        max-width: 250px;
    }

    .bloc-banniere-balls__title {
        font-size: 32px;
    }

    .bloc-banniere-balls__accroche {
        font-size: 16px;
    }

    .bloc-banniere-balls__content {
        gap: 20px;
    }
}

/* ============================================
   BLOC CONTACT (BALLS)
   ============================================ */

.bloc-contact-balls {
    background-color: #87C0BB;
    position: relative;
    padding: 100px 0;
}

.bloc-contact-balls input[type="checkbox"] {
    border: none;
    margin-right: 10px !important;
}

.bloc-contact-balls .wpcf7-acceptance label {
    display: flex !important;
}

.bloc-contact-balls .container {
    position: relative;
    z-index: 2;
}

/* === Colonne gauche - Texte === */
.bloc-contact-balls .content-left {
    display: flex;
    flex-direction: column;
}

.bloc-contact-balls .text-wrapper {
    padding-right: 50px;
}

.bloc-contact-balls .title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 37px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bloc-contact-balls .title-underline {
    width: 106px;
    height: 7px;
    background-color: #FFFFFF;
    position: relative;
    margin-bottom: 15px;
}



.bloc-contact-balls .accroche {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.bloc-contact-balls .description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
}

.bloc-contact-balls .description p {
    color: #FFFFFF;
    font-size: 16px;
}

/* === Colonne droite - Formulaire === */
.bloc-contact-balls .content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bloc-contact-balls .form-wrapper {
    padding-left: 50px;
}

/* Styles du formulaire Contact Form 7 */
.bloc-contact-balls .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bloc-contact-balls .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.bloc-contact-balls .wpcf7-form label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
}

.bloc-contact-balls .wpcf7-form input[type="text"],
.bloc-contact-balls .wpcf7-form input[type="email"],
.bloc-contact-balls .wpcf7-form textarea {
    width: 100%;
    background-color: #FFFFFF;
    border: none;
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333333;
}

.bloc-contact-balls .wpcf7-form input[type="text"]::placeholder,
.bloc-contact-balls .wpcf7-form input[type="email"]::placeholder,
.bloc-contact-balls .wpcf7-form textarea::placeholder {
    color: #B9B9B9;
    font-style: italic;
}

.bloc-contact-balls .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox RGPD */
.bloc-contact-balls .wpcf7-form .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bloc-contact-balls .wpcf7-form input[type="checkbox"] {
    width: 15px;
    height: 15px;
    min-width: 15px;
    background-color: #FFFFFF;
    margin: 0;
    flex-shrink: 0;
}

.bloc-contact-balls .wpcf7-form .wpcf7-list-item-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.4;
}

.bloc-contact-balls .wpcf7-form .wpcf7-list-item-label a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Bouton submit */
.bloc-contact-balls .wpcf7-form input[type="submit"] {
    background-color: #FFFFFF;
    color: #87C0BB;
    border: none;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.bloc-contact-balls .wpcf7-form input[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* === Décorations gauche === */
.bloc-contact-balls .deco-left {
    position: absolute;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.bloc-contact-balls .deco-left img {
    width: auto;
    height: auto;
    max-width: none;
}

/* === Décorations droite === */
.bloc-contact-balls .deco-right {
    position: absolute;
    right: 0;
    top: -150px;
    z-index: 1;
    width: 250px;
    height: 400px;
    pointer-events: none;
}



/* === Responsive === */

@media (max-width: 991px) {
    .bloc-contact-balls {
        padding: 40px 0;
    }

    .bloc-contact-balls .text-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .bloc-contact-balls .form-wrapper {
        padding-left: 0;
    }

    .bloc-contact-balls .title {
        font-size: 28px;
        line-height: 32px;
    }

    .bloc-contact-balls .accroche {
        font-size: 18px;
        line-height: 22px;
    }

    .bloc-contact-balls .deco-left {
        left: -120px;
    }

    .bloc-contact-balls .deco-right {
        right: -200px;
    }
}

@media (max-width: 767px) {
    .bloc-contact-balls {
        padding: 30px 0;
    }

    .bloc-contact-balls .title {
        font-size: 24px;
        line-height: 28px;
    }

    .bloc-contact-balls .accroche {
        font-size: 16px;
        line-height: 20px;
    }

    /* .bloc-contact-balls .description {
        font-size: 14px;
    } */

    .bloc-contact-balls .text-wrapper {
        margin-bottom: 30px;
    }

    .bloc-contact-balls .deco-left,
    .bloc-contact-balls .deco-right {
        opacity: 0.5;
    }

    .bloc-contact-balls .deco-left {
        left: -150px;
    }

    .bloc-contact-balls .deco-right {
        right: -250px;
        width: 300px;
    }
}

@media (max-width: 576px) {
    .bloc-contact-balls .title {
        font-size: 20px;
        line-height: 24px;
    }

    /* 
    .bloc-contact-balls .accroche {
        font-size: 14px;
        line-height: 18px;
    } */

    /* .bloc-contact-balls .description {
        font-size: 13px;
    } */
}

/* ============================================
   BLOC PRÉSENTATION (BALLS)
   ============================================ */

.bloc-presentation-balls {
    background-color: #87C0BB;
    padding: 0;
    overflow: hidden;
}

/* === Header === */
.bloc-presentation-balls__header {
    padding: 75px 0 35px;
    text-align: center;
    color: white;
}

.bloc-presentation-balls__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 55px;
    line-height: 1.2;
    color: white;
    margin: 0 auto 20px;
    max-width: 1020px;
    text-transform: initial;
}

.bloc-presentation-balls__desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: white;
    margin: 0 auto;
    max-width: 1020px;

    * {
        color: white !important;
        text-align: center !important;
    }
}

.bloc-presentation-balls__desc p {
    margin: 0;
}

/* === Produits === */
.bloc-presentation-balls__produits {
    position: relative;
    padding-bottom: 65px;
    background: linear-gradient(to bottom, #87C0BB 0%, #87C0BB 150px, white 150px, white 100%);
}

.bloc-presentation-balls__produits .row {
    display: flex;
    justify-content: center;
}

.bloc-presentation-balls__produits .row>div {
    flex: 0 0 auto;
    max-width: 350px;
}

.bloc-presentation-balls__produit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bloc-presentation-balls__produit-image {
    width: 289px;
    height: 245px;
    position: relative;
    overflow: hidden;
}

.bloc-presentation-balls__produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bloc-presentation-balls__produit-title-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bloc-presentation-balls__produit-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    min-height: 55px;
}

.bloc-presentation-balls__produit-label img {
    max-height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.bloc-presentation-balls__produit-desc {
    text-align: center;
    max-width: 300px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    /* font-size: 14px; */
    line-height: 1.5;
    color: #000;

    p:last-of-type {
        position: relative;
        display: inline-block;
    }

    &:has(p:nth-of-type(2)) {
        p:last-of-type {
            padding-top: 20px;

        }
    }
}

.bloc-presentation-balls__produit-desc p {
    margin: 0 0 10px;
    text-align: center;
}

/* .bloc-presentation-balls__produit-desc p:last-child {
    margin-bottom: 0;
} */

.bloc-presentation-balls__produit-desc strong,
.bloc-presentation-balls__produit-desc b {
    font-weight: 700;
}

/* === Buttons === */
.bloc-presentation-balls__buttons {
    padding: 30px 0 50px;
    background: white;
    text-align: center;
}

.bloc-presentation-balls__buttons .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bloc-presentation-balls__buttons .bouton {
    position: relative;
    padding-right: 50px;
}

.bloc-presentation-balls__buttons .bouton::after {
    content: '➔';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
}

.bloc-presentation-balls__buttons .bouton:hover::after {
    transform: translate(50px, -50%);
    opacity: 0;
}

.bloc-presentation-balls__buttons .bouton span {
    display: none;
}


/* === Responsive === */
@media (max-width: 1199px) {
    .bloc-presentation-balls__produits .row {
        gap: 20px;
    }

    .bloc-presentation-balls__produits .row>div {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .bloc-presentation-balls__title {
        font-size: 40px;
    }

    .bloc-presentation-balls__header {
        padding: 50px 20px 25px;
    }

    .bloc-presentation-balls__produits {
        /* padding-top: 100px; */
        padding-bottom: 40px;
        background: linear-gradient(to bottom, #87C0BB 0%, #87C0BB 100px, white 100px, white 100%);
    }

    .bloc-presentation-balls__produits .row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .bloc-presentation-balls__produits .row>div {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .bloc-presentation-balls__title {
        font-size: 32px;
    }

    .bloc-presentation-balls__desc {
        /* font-size: 14px; */
    }

    .bloc-presentation-balls__header {
        padding: 40px 20px 20px;
    }

    .bloc-presentation-balls__produits {
        /* padding-top: 80px; */
        padding-bottom: 30px;
        background: linear-gradient(to bottom, #87C0BB 0%, #87C0BB 80px, white 80px, white 100%);
    }

    .bloc-presentation-balls__produits .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .bloc-presentation-balls__produit-image {
        width: 240px;
        height: 200px;
    }

    .bloc-presentation-balls__buttons .bouton {
        /* font-size: 14px; */
        padding: 15px 20px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .bloc-banniere-balls {
        min-height: 500px;
        padding: 60px 0;
    }

    .bloc-banniere-balls__logo {
        max-width: 300px;
    }

    .bloc-banniere-balls__title {
        font-size: 40px;
    }

    .bloc-banniere-balls__accroche {
        font-size: 18px;
    }

    .bloc-banniere-balls__content {
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 575px) {
    .bloc-banniere-balls {
        min-height: 400px;
        padding: 40px 0;
    }

    .bloc-banniere-balls__logo {
        max-width: 250px;
    }

    .bloc-banniere-balls__title {
        font-size: 32px;
    }

    .bloc-banniere-balls__accroche {
        font-size: 16px;
    }

    .bloc-banniere-balls__content {
        gap: 20px;
    }
}

.balls .barre {
    justify-content: start !important;
    width: 250px;

    .encadre {
        margin-top: 25px !important;
    }

    p {
        /* color: black !important; */
        font-size: 16px;
        font-weight: 500;
    }

}

@media (min-width: 1024px) {
    .balls .barres__container .barre:nth-child(2) .image__container .background.horizontalized img {
        top: -60px;
    }
}

.div__content.horizontalized {
    align-items: center;
    flex-direction: row-reverse !important;

    p {
        color: white !important;
    }
}

div:not(.horizontalized) {
    .barres .barre {
        p {
            /* color: black !important; */
            font-size: 16px;
            font-weight: 500;
            order: 3;
        }

        h3 {
            order: 2;
        }

        .image__container {
            order: 1;
        }
    }
}

/* ============================================
   BLOC TITRE (BALLS)
   ============================================ */

.bloc-titre-balls {
    padding: 60px 0;

    .separator {
        background: #87C0BB;

        &::after {
            background: #87C0BB;
        }
    }
}

.bloc-titre-balls__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bloc-titre-balls__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 34px;
    line-height: 37px;
    color: #87C0BB;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.bloc-titre-balls__accroche {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: black;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .bloc-titre-balls {
        padding: 40px 0;
    }

    .bloc-titre-balls__title {
        font-size: 28px;
        line-height: 32px;
    }

    .bloc-titre-balls__accroche {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .bloc-titre-balls {
        padding: 30px 0;
    }

    .bloc-titre-balls__title {
        font-size: 24px;
        line-height: 28px;
    }

    .bloc-titre-balls__accroche {
        font-size: 16px;
        line-height: 20px;
    }
}

/* ============================================
   BLOC LIEN (BALLS)
   ============================================ */

.bloc-lien {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.bloc-lien__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    text-decoration: none;
    color: #87C0BB;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    width: max-content;
}

.bloc-lien__text {
    white-space: nowrap;
}

.bloc-lien__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16.32px;
    height: 16.33px;
    transition: transform 0.3s ease-in-out;
}

.bloc-lien__arrow svg {
    width: 100%;
    height: 100%;
}

.bloc-lien__cta:hover {
    color: #6aa8a3;
}

.bloc-lien__cta:hover .bloc-lien__arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .bloc-lien__cta {
        /* font-size: 14px; */
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .bloc-lien__cta {
        /* font-size: 13px; */
        padding: 12px;
    }
}


/* ============================================
   RESPONSIVE AJUSTEMENTS
   ============================================ */

@media (max-width: 1280px) {

    .bloc-imtx-balls__decoration,
    .deco-right,
    .deco-left {
        display: none;
    }

    .bloc-imtx-balls__content-col * {
        text-align: left !important;
    }

    .bloc-contact-balls * {
        text-align: left !important;
    }

    .bloc-banniere-balls__content {
        align-items: center !important;
        justify-content: center !important;

        p {
            text-align: center !important;
        }
    }

    .bloc-banniere-balls {
        position: relative;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 2;
            opacity: .4;
        }
    }

    .balls p,
    .balls strong,
    .balls b,
    .balls a,
    .balls li,
    .balls .description,
    .wpcf7-acceptance * {
        font-size: 14px !important;
        line-height: 20px !important;
    }

    .balls h2 {
        font-size: 22px !important;
    }

    .balls h3 {
        font-size: 18px !important;
    }
}

.balls {
    @media (min-width: 1200px) {
        .container {
            max-width: 1300px !important;
        }
    }

    @media (max-width: 1440px) {
        .barres__container.inner {
            max-width: 90% !important;
        }
    }
}


/* ============================================
   MODALE TÉLÉCHARGEMENT PDF
   ============================================ */

.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.pdf-modal-content {
    position: relative;
    background: #ffffff;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pdf-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10002;
}

.pdf-modal-close:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

.pdf-modal-body {
    padding: 40px 30px 30px;
}

.pdf-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 25px;
    text-align: center;
}

.pdf-modal-form {
    margin-top: 20px;
}

/* Styles pour le formulaire Contact Form 7 dans la modale */
.pdf-modal-form .wpcf7-form {
    margin: 0;
}

.pdf-modal-form .wpcf7-form p {
    margin-bottom: 15px;
}

.pdf-modal-form input[type="text"],
.pdf-modal-form input[type="email"],
.pdf-modal-form input[type="tel"],
.pdf-modal-form textarea,
.pdf-modal-form select {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.pdf-modal-form input[type="text"]:focus,
.pdf-modal-form input[type="email"]:focus,
.pdf-modal-form input[type="tel"]:focus,
.pdf-modal-form textarea:focus,
.pdf-modal-form select:focus {
    outline: none;
    border-color: #87C0BB;
}

.pdf-modal-form textarea {
    min-height: 100px;
    resize: vertical;
}

.pdf-modal-form input[type="submit"] {
    width: 100%;
    padding: 14px 30px;
    background: #87C0BB;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pdf-modal-form input[type="submit"]:hover {
    background: #6fa9a4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(135, 192, 187, 0.3);
}

.pdf-modal-form .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.pdf-modal-form .wpcf7-response-output {
    margin: 15px 0 0;
    padding: 12px 15px;
    border: none;
}

.pdf-modal-form .wpcf7-validation-errors {
    background: #fff3cd;
    color: #856404;
}

.pdf-modal-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
}

.pdf-modal-form .wpcf7-mail-sent-ng,
.pdf-modal-form .wpcf7-aborted {
    background: #f8d7da;
    color: #721c24;
}

/* Empêcher le scroll du body quand la modale est ouverte */
body.modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .pdf-modal-content {
        max-width: 95%;
    }

    .pdf-modal-body {
        padding: 30px 20px 20px;
    }

    .pdf-modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .pdf-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

.balls .bouton {
    z-index: 10;
}