.mask-campanha{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    visibility: hidden;
    text-align: center;
    background-color: rgba( 255, 255, 255, 0.5 );
}

.mask-campanha.-is-active{
    z-index: 150;
    visibility: visible;
}

.modal-campanha{
    position: relative;
    max-width: 600px;
    width: 95vw;
    background-color: #fff;
}

.admin-bar .modal-campanha{
    top: 46px;
}

.modal-campanha .fechar{
    position: absolute;
    top: 5px;
    right: 5px;
    height: 38px;
    width: 38px;
    padding: 3px;
    background-color: transparent;
    border: 0;
}

.modal-campanha .fechar:active{
    top: 3px;
    right: 3px;
    width: 42px;
    height: 42px;
}

.modal-campanha img{
    width: 100%;
}

.modal-campanha h2{
    padding: 0 15px;
    margin: 20px 0;
    font-family: "Georgia", serif;
    font-size: 22px;
    color: #1b9897;
    line-height: 1.4;
    text-transform: uppercase;
}

.modal-campanha h2:after{
    margin: 20px auto 0;
    display: block;
    width: 175px;
    height: 5px;
    background-color: #1b9897;
    content: '';
}

.modal-campanha .modal-content p{
    margin: 0;
    padding: 0 20px;
    font-family: "Montserrat-Regular", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #555;
}

.modal-campanha .cta{
    margin: 20px 0;
    display: inline-block;
    padding: 0 40px;
    font-family: "Montserrat-Bold", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    line-height: 48px;
    background-color: #1b9897;
}

@media( max-width: 360px ) {
    .modal-campanha h2{
        font-size: 1.8em;
        line-height: 1.5;
    }

    .modal-campanha .modal-content p{
        font-size: 1.4em;
    }
}

@media ( min-width: 660px ) {
    .modal-campanha h2{
        padding: 0 40px;
        font-size: 32px;
        line-height: 1.2;
    }

    .modal-campanha p{
        padding: 0px 50px;
        font-size: 18px;
    }
}

@media ( min-width: 1025px ) {
    .modal-campanha h2{
        padding: 0 40px;
        font-size: 35px;
        line-height: 45px;
    }

    .admin-bar .modal-campanha{
        top: 24px;
    }

}