    /*import*/
    @import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend:wght@100..900&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

    :root {
        /*theme COLOR*/
        --theme-menu-text-color: #000;
        --theme-menu-bg-color: #000;
        /*NAVBAR COLORS*/
        --ob-nav-text-color: #000;
        --ob-nav-bg-color: #fff;
        /*Fonts*/
        --theme-font-family: "Roboto", sans-serif;
        /* Nueva gama de colores basada en #CB2024 */
        --theme-primary-50: #F9E2E3;
        --theme-primary-100: #F0B3B4;
        --theme-primary-200: #E78586;
        --theme-primary-300: #DE5657;
        --theme-primary-400: #D73437;
        --theme-primary-500: #CB2024;
        /* Color principal */
        --theme-primary-600: #B91C20;
        --theme-primary-700: #A5191C;
        --theme-primary-800: #921518;
        --theme-primary-900: #6D0F11;
        --theme-primary-A100: #FFC3C4;
        --theme-primary-A200: #FF8A8B;
        --theme-primary-A400: #FF5152;
        --theme-primary-A700: #FF3738;

        /* Colores de contraste */
        --theme-primary-contrast-50: #212121;
        --theme-primary-contrast-100: #212121;
        --theme-primary-contrast-200: #212121;
        --theme-primary-contrast-300: #ffffff;
        --theme-primary-contrast-400: #ffffff;
        --theme-primary-contrast-500: #ffffff;
        /* Contraste para color principal */
        --theme-primary-contrast-600: #ffffff;
        --theme-primary-contrast-700: #ffffff;
        --theme-primary-contrast-800: #ffffff;
        --theme-primary-contrast-900: #ffffff;
        --theme-primary-contrast-A100: #212121;
        --theme-primary-contrast-A200: #212121;
        --theme-primary-contrast-A400: #212121;
        --theme-primary-contrast-A700: #212121;
    }

    /*==============================================================
    INDEX
    1) Integration description event - WAH
================================================================*/

    /*---------------------------------------------
   1) Integration description event - WAH
---------------------------------------------*/
    .custom-contact-block {
        width: 100%;
        text-align: left;
    }

    /*Titles*/
    .title-custom-contact {
        font-weight: 700;
        line-height: 1.3;
        font-size: 1.2rem;
        font-family: "adineuePRO-Bold", sans-serif !important;
    }

    /*CTA container*/
    .contact-cta-box {
        display: flex;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /*Grey module (icon + text)*/
    .contact-module-text {
        display: flex;
        align-items: stretch;
        gap: 12px;
        flex: 1;
    }

    /*Icon box*/
    .icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f1f1f1;
        border-radius: 3px;
        padding: 8px;
        flex-shrink: 0;
    }

    /*Icon*/
    .cta-icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    /*Text box*/
    .text-box {
        display: flex;
        align-items: center;
        background-color: #f1f1f1;
        border-radius: 3px;
        padding: 7px 12px;
        flex: 1;
    }

    /*Text*/
    .text-box p {
        margin: 0;
        line-height: 1.5;
    }

    /*CTA button*/
    .cta-call-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #CC1424;
        color: #fff;
        border-radius: 3px;
        padding: 12px 16px;
        text-decoration: none;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .cta-call-button:hover {
        background-color: #D54248;
    }

    /*CTA icon*/
    .cta-icon-cta {
        width: 16px;
        height: 16px;
    }

    .contact-cta-box .text-box,
    .contact-cta-box .icon-box {
        background-color: #FAE3E5;
    }

    /*Links*/
    .contact-link {
        color: #CC1424;
    }

    /*Mobile*/
    @media (max-width: 768px) {
        .contact-cta-box {
            flex-direction: column;
        }

        .cta-call-button {
            width: 100%;
            justify-content: center;
        }
    }