/* ========================================
   CTA SERVICIOS
======================================== */

.services-cta{
    padding: 120px 0;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

/* EFECTOS DECORATIVOS */

.services-cta::before{
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(37,99,235,0.10);

    top: -150px;
    right: -100px;
}

.services-cta::after{
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background: rgba(255,255,255,0.04);

    bottom: -100px;
    left: -80px;
}

/* CONTENIDO */

.services-cta-content{
    position: relative;
    z-index: 2;

    max-width: 900px;
    margin: auto;

    text-align: center;
}

/* BADGE */

.services-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;

    text-transform: uppercase;
    letter-spacing: 1px;

    margin-bottom: 25px;
}

/* TITULO */

.services-cta-content h2{
    color: var(--color-white);

    font-size: var(--h2-size);
    font-weight: var(--heading-weight);

    line-height: 1.2;

    margin-bottom: 25px;
}

/* TEXTO */

.services-cta-content p{
    color: rgba(255,255,255,0.75);

    font-size: 20px;
    line-height: 1.9;

    max-width: 760px;

    margin: auto auto 45px;
}

/* BOTON */

.services-cta-btn{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 38px;

    background: #2563eb;
    color: white;

    border-radius: 18px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition: all .35s ease;
}

.services-cta-btn: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){

    .services-cta{
        padding: 90px 0;
    }

    .services-cta-content h2{
        font-size: 36px;
    }

    .services-cta-content p{
        font-size: 17px;
    }

    .services-cta-btn{
        width: 100%;
    }

}