.solucoes-cta {
    position: relative;
    background: #232522;
    padding: 52px 0 68px;
    overflow: hidden;
}

.solucoes-cta__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(0, 128, 255, 0.24) 1.2px, transparent 1.2px),
        linear-gradient(rgba(0, 128, 255, 0.24) 1.2px, transparent 1.2px),
        linear-gradient(45deg, transparent calc(50% - 1px), rgba(0, 128, 255, 0.24) 50%, transparent calc(50% + 1px));
    background-size: 320px 100%, 100% 320px, 45% 100%;
    background-position: 100% 0, 0 100%, 78% 0;
}

.solucoes-cta__container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 54px;
}

.solucoes-cta__title {
    margin: 0 0 34px;
    width: min(100%, 336px);
    color: #0080ff;
    font-size: 42px;
    font-weight: 300;
    line-height: 42px;
}

.solucoes-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.solucoes-cta__btn {
    min-height: 55px;
    border-radius: 12px;
    padding: 0 22px;
    min-width: 198px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16.31px;
    line-height: 5.17px;
}

.solucoes-cta__btn--primary {
    background: #0080ff;
    color: #fff;
}

.solucoes-cta__btn--outline {
    background: transparent;
    border: 1px solid #afafaf;
    color: #fff;
}

@media (max-width: 768px) {
    .solucoes-cta {
        padding: 40px 0 52px;
    }

    .solucoes-cta__container {
        padding: 0 20px;
    }

    .solucoes-cta__title {
        font-size: 36px;
        line-height: 38px;
    }

    .solucoes-cta__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}