.sec-cta {
    background-image: url(../img/cta-mobile.jpg);
    padding: 8rem 2rem 8rem 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    margin-top: 2rem;
    margin-bottom: 0rem;
}

.sec-cta__contenido {
    padding: 3rem;
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.50);

    background: linear-gradient(112deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.10) 99.06%);

    backdrop-filter: blur(7.5px);
    text-align: center;
    max-width: 45rem;
}

.sec-cta__titulo {
    color: var(--color-blanco);
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);

}

.sec-cta__descripcion {
    color: var(--color-blanco);
    margin: 2rem auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);

}
.sec-cta__acciones{
    display: grid;
    gap: 1rem;
}
@media (min-width: 1024px) {

    .sec-cta {
        background-image: url(../img/cta.jpg);
        padding: 6rem 2rem 6rem 2rem;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: left;
    }
    .sec-cta__contenedor {
        display: flex;
        justify-content: end;
    }
    .sec-cta__titulo {
        font-size: 3.5rem;
    
    }
    .sec-cta__acciones{
        grid-template-columns: auto auto;
    }
    
}