/* ========================================
   CTA FINAL SOFTWARE
======================================== */

.cta-final{
    padding: 40px 0;
    background: linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 100%
    );

    position: relative;
    overflow: hidden;
}

/* EFECTOS DECORATIVOS */

.cta-final::before{
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(255,255,255,0.03);

    top: -180px;
    right: -120px;
}

.cta-final::after{
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(37,99,235,0.08);

    bottom: -120px;
    left: -80px;
}

/* CONTENEDOR */

.cta-container{
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 900px;

    margin: auto;
    padding: 0 20px;
}

/* BADGE */

.cta-badge{
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(255,255,255,0.10);

    color: #93c5fd;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

/* TITULO */

.cta-container h2{
    font-size: var(--h2-size);
    font-weight: var(--heading-weight);

    line-height: 1.2;

    color: var(--color-white);

    margin-bottom: 25px;
}

/* TEXTO */

.cta-container p{
    font-size: 20px;
    line-height: 1.9;

    color: rgba(255,255,255,0.75);

    max-width: 760px;

    margin: auto auto 45px;
}

/* BOTONES */

.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* BOTON PRINCIPAL */

.cta-btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 18px;

    background: #2563eb;
    color: white;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: .35s ease;
}

.cta-btn-primary:hover{
    background: #1d4ed8;

    transform: translateY(-4px);

    color: white;
    text-decoration: none;

    box-shadow: 0 15px 35px rgba(37,99,235,0.35);
}

/* RESPONSIVE */

@media(max-width:768px){

    .cta-final{
        padding: 90px 0;
    }

    .cta-container h2{
        font-size: 36px;
    }

    .cta-container p{
        font-size: 17px;
    }

    .cta-btn-primary{
        width: 100%;
    }

}