/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.cta-final{
    position:relative;
    padding:150px 0;
    overflow:hidden;
    background:linear-gradient(135deg,#1f2d27 0%,#30443c 100%);
}

.cta-final::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at top right,
        rgba(255,255,255,.08),
        transparent 35%);

    pointer-events:none;

}

.cta-final .container{

    width:min(1400px,92%);

    margin:0 auto;

    position:relative;

    z-index:2;

}

/* ==========================================================================
   GRID
   ========================================================================== */

.cta-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:90px;

    align-items:center;

}

/* ==========================================================================
   CONTEÚDO
   ========================================================================== */

.cta-content{

    max-width:650px;

}

.cta-final .section-subtitle{

    display:inline-block;

    margin-bottom:18px;

    color:#d8c6a4;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

}

.cta-final .section-title{

    margin-bottom:28px;

    color:#ffffff;

    font-size:clamp(2.6rem,5vw,4.5rem);

    line-height:1.1;

    font-weight:300;

}

.cta-description{

    margin-bottom:42px;

    color:rgba(255,255,255,.82);

    font-size:1.08rem;

    line-height:2;

}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */

.cta-benefits{

    display:grid;

    gap:18px;

    margin:0 0 45px;

    padding:0;

    list-style:none;

}

.cta-benefits li{

    display:flex;

    align-items:center;

    gap:16px;

    opacity:0;

    transform:translateX(-20px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}

.cta-benefits li.is-visible{

    opacity:1;

    transform:none;

}

.cta-benefits svg{

    width:22px;

    height:22px;

    flex-shrink:0;

    fill:none;

    stroke:#d8c6a4;

    stroke-width:2;

    stroke-linecap:round;

    stroke-linejoin:round;

}

.cta-benefits span{

    color:#ffffff;

    line-height:1.7;

}

/* ==========================================================================
   BOTÕES
   ========================================================================== */

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================================================================
   IMAGEM
   ========================================================================== */

.cta-image{

    position:relative;

}

.cta-image picture{

    display:block;

    overflow:hidden;

    border-radius:30px;

    box-shadow:0 35px 80px rgba(0,0,0,.30);

}

.cta-image img{

    display:block;

    width:100%;

    height:auto;

    object-fit:cover;

}

/* ==========================================================================
   CARD FLUTUANTE
   ========================================================================== */

.cta-floating-card{

    position:absolute;

    left:-35px;

    bottom:35px;

    width:250px;

    padding:26px;

    background:#ffffff;

    border-radius:22px;

    box-shadow:0 18px 45px rgba(0,0,0,.20);

}

.cta-floating-card strong{

    display:block;

    margin-bottom:8px;

    color:#1f2d27;

    font-size:1.4rem;

    font-weight:500;

}

.cta-floating-card span{

    color:#666;

    line-height:1.7;

}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */

.cta-content,
.cta-image{

    opacity:0;

    transform:translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.cta-content.is-visible,
.cta-image.is-visible{

    opacity:1;

    transform:none;

}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width:1200px){

    .cta-wrapper{

        gap:60px;

    }

}

@media (max-width:991px){

    .cta-final{

        padding:100px 0;

    }

    .cta-wrapper{

        grid-template-columns:1fr;

        gap:70px;

    }

    .cta-content{

        order:2;

        max-width:100%;

    }

    .cta-image{

        order:1;

    }

    .cta-floating-card{

        left:20px;

        bottom:-20px;

    }

}

@media (max-width:768px){

    .cta-buttons{

        flex-direction:column;

    }

    .cta-buttons .btn{

        width:100%;

    }

    .cta-floating-card{

        display:none;

    }

}

@media (max-width:480px){

    .cta-final{

        padding:80px 0;

    }

    .cta-final .section-title{

        font-size:2.2rem;

    }

}