/* =========================================
   SEÇÃO 11 — CTA FINAL
========================================= */

.final-cta-section {
    position: relative;

    min-height: 550px;

    display: flex;
    align-items: center;

    overflow: hidden;

    /* padding: 120px 0; */

    color: #ffffff;
    /* text-shadow: 3px 3px 3px rgba(0, 0, 0, .2); */
}


/* =========================================
   IMAGEM DE FUNDO
========================================= */

.final-cta-background {
    position: absolute;

    inset: 0;

    background-image:
        url('../img/arte-cta.webp');

    background-size: cover;
    background-position: center;

    transform: scale(1.02);

    z-index: 0;
}


/* =========================================
   OVERLAY
========================================= */

.final-cta-overlay {
    position: absolute;

    inset: 0;

    /*
     * O overlay escurece a imagem e cria
     * contraste para o texto.
     */

    /* background:
        linear-gradient(
            135deg,
            rgba(0, 134, 121, .88)  0%,
            rgba(2, 190, 178, .78) 45%,
            rgba(15, 27, 38, .90) 100%
        ); */

     background:
        linear-gradient(
            135deg,
            rgba(15, 27, 38, .88)  0%,
            rgba(15, 27, 38, .78) 45%,
            rgba(15, 27, 38, .90) 100%
        );

    z-index: 1;
}


/* =========================================
   BRILHO
========================================= */

.final-cta-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(0, 255, 240, .15);

    filter: blur(100px);

    pointer-events: none;

    z-index: 2;
}


/* =========================================
   CONTEÚDO
========================================= */

.final-cta-section .container {
    position: relative;

    z-index: 3;
}


.final-cta-content {
    max-width: 950px;

    margin: 0 auto;
}


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

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;

    color: #00fff0;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;
}


/* =========================================
   TÍTULO
========================================= */

.final-cta-title {
    max-width: 950px;

    margin: 0 auto;

    color: #ffffff;

    /* font-size: clamp(38px, 5vw, 64px); */

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -0.035em;
}


/* =========================================
   SUBTÍTULO
========================================= */

.final-cta-subtitle {
    max-width: 650px;

    margin: 28px auto 0;

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

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   BOTÕES
========================================= */

.final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 18px;

    margin-top: 38px;
}


/* CTA PRINCIPAL */

.final-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 0 30px;

    border: 0;

    background: #00fff0;

    color: #0f1b26;

    font-size: 15px;
    font-weight: 700;

    border-radius: 8px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .15);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.final-cta-primary:hover {
    background: #ffffff;

    color: #0f1b26;

    transform: translateY(-3px);

    box-shadow:
        0 16px 40px rgba(0, 0, 0, .22);
}


.final-cta-primary i {
    font-size: 17px;

    transition:
        transform .3s ease;
}


.final-cta-primary:hover i {
    transform: translateX(4px);
}


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

.final-cta-whatsapp {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    opacity: .90;

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.final-cta-whatsapp:hover {
    color: #ffffff;

    opacity: 1;

    transform: translateY(-2px);
}


.final-cta-whatsapp i {
    color: #00fff0;

    font-size: 18px;
}


/* =========================================
   CONFIANÇA
========================================= */

.final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 30px;

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

    font-size: 11px;
}


.final-cta-trust i {
    color: #00fff0;

    font-size: 13px;
}


/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 767.98px) {

    .final-cta-section {
        min-height: 540px;

        padding: 90px 0;
    }

    .final-cta-title {
        font-size: 38px;
    }

    .final-cta-subtitle {
        margin-top: 22px;

        font-size: 16px;
    }

    .final-cta-actions {
        margin-top: 32px;
    }

}


@media (max-width: 575.98px) {

    .final-cta-section {
        padding: 75px 20px;
    }

    .final-cta-title {
        font-size: 34px;
    }

    .final-cta-subtitle {
        font-size: 15px;
    }

    .final-cta-primary {
        width: 100%;

        padding: 0 20px;
    }

    .final-cta-trust {
        flex-wrap: wrap;
    }

}