/*==================================================
                    CTA
==================================================*/


#cta{

    position:relative;

    min-height:450px;

    background-image:url('../../img/cta/img-cta-luxmoda.png');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}


/*==================================================
                OVERLAY
==================================================*/


.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(97,53,54,0.45);

}



/*==================================================
                CONTENIDO
==================================================*/


.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:750px;

    margin:auto;

    padding:60px 20px;

}



/*==================================================
                SUBTITULO
==================================================*/


.cta-content span{

    display:block;

    color:var(--color-complementario);

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:20px;

}



/*==================================================
                TITULO
==================================================*/


.cta-content h2{

    color:#fff;

    font-size:42px;

    line-height:1.2;

    font-weight:700;

    margin-bottom:20px;

}



/*==================================================
                DESCRIPCIÓN
==================================================*/


.cta-content p{

    color:#fff;

    font-size:18px;

    line-height:1.6;

    margin-bottom:35px;

}



/*==================================================
                BOTÓN
==================================================*/


.cta-content .btn-principal{

    display:inline-block;

    background:var(--color-terciario);

    color:#fff;

    padding:14px 35px;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    border-radius:4px;

}



/*==================================================
                RESPONSIVE
==================================================*/


@media(max-width:768px){


    #cta{

        min-height:400px;

    }


    .cta-content h2{

        font-size:32px;

    }


    .cta-content p{

        font-size:16px;

    }


}