.cta-grande{
    margin: 0 20px;
}

.contentCta{
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    margin: 10px;
    flex-direction: column;
    margin: 28px auto;
    position: relative;
    border-radius: 8px;
    height: 230px;
    justify-content: center;
    box-shadow: 0 0 5px 2px rgb(5, 88, 243);
    background-image: url('./assets//fundo.jpg');
    padding: 28px 32px
}

.contentCta::after{
    content: "";
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 1, 36, 0.411);
    backdrop-filter: blur(2px);
    position: absolute;
    z-index: 1;
    border-radius: 8px;
}

.title-cta-grande{
    color: rgb(255, 255, 255);
    z-index: 2;
    letter-spacing: 1.1px;
    font-size: 28px;
}

.text-cta{
    z-index: 2;
    color: white;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    max-width: 500px;
    letter-spacing: 2px;
}

.btn-cta{
    background-color: rgba(255, 255, 255, 0.322);
    z-index: 2;
    max-width: 200px;
    color: rgb(255, 255, 255);
    border: 1px solid blue;
    font-weight: bold;
    padding: 12px 8px;
    cursor: pointer;
    border: none;
    border: 1px solid white;
    border-radius: 6px;
    margin-top: 12px;
    transition: 0.5s ease background-color, box-shadow;
}

.btn-cta:hover{
    background-color: rgba(255, 0, 0, 0);
    box-shadow: 0 0 5px 2px rgb(255, 255, 255);
}

@media(max-width: 700px){

    .contentCta{
        height: auto;
    }

    .title-cta-grande{
        font-size: 22px;
    }

    .text-cta{
        font-size: 12px;
    }

    .btn-cta{

    }
}