/* ==========================================================================
   HOME - FINAL CTA
   ========================================================================== */


/* ==========================================================================
   SECTION
   ========================================================================== */




/* ==========================================================================
   CTA BOX
   ========================================================================== */

.home-final-cta__box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    width: 100%;

    padding: 42px 46px;

    background: #002EBE;

    border-radius: 10px;

    overflow: hidden;
}


/*
|--------------------------------------------------------------------------
| Decorative background
|--------------------------------------------------------------------------
*/

.home-final-cta__box::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -90px;

    width: 300px;
    height: 300px;

    border: 55px solid rgba(255, 255, 255, .05);
    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================================
   CONTENT
   ========================================================================== */

.home-final-cta__content {
    position: relative;

    z-index: 2;

    max-width: 650px;
}


/* ==========================================================================
   EYEBROW
   ========================================================================== */

.home-final-cta__eyebrow {
    margin: 0 0 9px;

    color: #FFFFFF;

    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    opacity: .8;
}


/* ==========================================================================
   TITLE
   ========================================================================== */

.home-final-cta__content h2 {
    margin: 0 0 12px;

    color: #FFFFFF;

    font-family: "Raleway", sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.25;

    text-transform: none;
}


/* ==========================================================================
   TEXT
   ========================================================================== */

.home-final-cta__text {
    max-width: 600px;

    margin: 0;

    color: rgba(255, 255, 255, .84);

    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}


/* ==========================================================================
   ACTION
   ========================================================================== */

.home-final-cta__action {
    position: relative;

    z-index: 2;

    flex: 0 0 auto;

    min-width: 245px;

    text-align: center;
}


/* ==========================================================================
   WHATSAPP BUTTON
   ========================================================================== */

.home-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 20px;

    background: #25D366;

    border: 1px solid #25D366;
    border-radius: 7px;

    color: #FFFFFF;

    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.home-final-cta__button .fa {
    margin-right: 9px;

    font-size: 19px;
}


.home-final-cta__button:hover,
.home-final-cta__button:focus {
    background: #20BD5A;

    border-color: #20BD5A;

    color: #FFFFFF;

    text-decoration: none;

    transform: translateY(-2px);
}


/* ==========================================================================
   NOTE
   ========================================================================== */

.home-final-cta__note {
    max-width: 245px;

    margin: 9px auto 0;

    color: rgba(255, 255, 255, .68);

    font-family: "Open Sans", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media only screen
and (min-width: 768px)
and (max-width: 991px) {

    .home-final-cta {
        padding: 60px 0;
    }


    .home-final-cta__box {
        gap: 32px;

        padding: 36px;
    }


    .home-final-cta__content h2 {
        font-size: 27px;
    }


    .home-final-cta__action {
        min-width: 220px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media screen and (max-width: 767px) {

    .home-final-cta {
        padding: 48px 0;
    }


    .home-final-cta__box {
        display: block;

        padding: 30px 22px;

        border-radius: 8px;
    }


    .home-final-cta__box::before {
        top: auto;
        right: -100px;
        bottom: -140px;

        width: 270px;
        height: 270px;
    }


    .home-final-cta__content {
        max-width: none;
    }


    .home-final-cta__eyebrow {
        font-size: 10px;
    }


    .home-final-cta__content h2 {
        margin-bottom: 10px;

        font-size: 25px;
        line-height: 1.3;
    }


    .home-final-cta__text {
        font-size: 13px;
        line-height: 1.65;
    }


    .home-final-cta__action {
        min-width: 0;

        margin-top: 23px;

        text-align: left;
    }


    .home-final-cta__button {
        width: 100%;

        min-height: 48px;
    }


    .home-final-cta__note {
        max-width: none;

        margin-top: 9px;

        text-align: center;
    }

}