/* ========================================
   CTA FINAL
======================================== */

.about-cta{
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--color-heading) 0%,
        var(--color-heading-light) 100%
    );

    position: relative;
    overflow: hidden;
}

/* EFECTO DECORATIVO */

.about-cta::before{
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(255,255,255,0.03);

    top: -180px;
    right: -120px;
}

.about-cta::after{
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(37,99,235,0.08);

    bottom: -120px;
    left: -80px;
}

/* CONTENT */

.about-cta-content{
    position: relative;
    z-index: 2;

    text-align: center;

    max-width: 900px;

    margin: auto;
}

/* BADGE */

.about-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;
}

/* TITLE */

.about-cta-content h2{
    font-size: var(--h2-size);
    font-weight: var(--heading-weight);

    line-height: 1.2;

    color: var(--color-white);

    margin-bottom: 25px;
}

/* TEXT */

.about-cta-content p{
    font-size: 20px;
    line-height: 1.9;

    color: rgba(255,255,255,0.75);

    max-width: 760px;

    margin: auto auto 45px;
}

/* BUTTONS */

.about-cta-buttons{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* BOTÓN PRINCIPAL */

.btn-primary-atdi{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 18px;

    background: var(--color-primary);
    color: white;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: .35s ease;
}

.btn-primary-atdi:hover{
    background: var(--color-primary-dark);

    transform: translateY(-4px);

    color: white;
    text-decoration: none;
}

/* BOTÓN SECUNDARIO */

.btn-secondary-atdi{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.20);

    color: white;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: .35s ease;
}

.btn-secondary-atdi:hover{
    background: rgba(255,255,255,0.08);

    color: white;

    text-decoration: none;

    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:768px){

    .about-cta{
        padding: 90px 0;
    }

    .about-cta-content h2{
        font-size: 36px;
    }

    .about-cta-content p{
        font-size: 17px;
    }

    .about-cta-buttons{
        flex-direction: column;
    }

    .btn-primary-atdi,
    .btn-secondary-atdi{
        width: 100%;
    }

}