@charset "utf-8";

section#promocoes{
    float: left;
    width: 100%;
    background-color: #0060a7;
    padding: 40px 0;
    margin-top: 30px;
}

section#promocoes h1{
    display: inline-block;
    width: 90%;
    font-size: 30px;
    color: #fff;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 20px;
}

section#promocoes figure{
    display: inline-block;
    width: 90%;
    max-width: 488px;
    margin: 30px 10px 0 10px;
}

section#promocoes figure img{
    width: 100%;
	-webkit-transition:.4s;
	-moz-transition:.4s;
	-o-transition:.4s;
	transition:.4s;
}

section#promocoes figure:hover img{
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -o-transform: scale(0.95);
}

section#promocoes figure figcaption a{
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    margin-top: 10px;
	-webkit-transition:.4s;
	-moz-transition:.4s;
	-o-transition:.4s;
	transition:.4s;
}

section#promocoes figure figcaption a:hover{
    background-color: #fff;
    color: #0060a7;
}

section#promocoes article{
    display: inline-block;
    width: 90%;
}

section#promocoes article p{
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    color: #fff;
    text-align: justify;
    line-height: normal;
    font-size: 18px;
}

section#promocoes article #botao{
    display: inline-block;
    padding: 10px 30px;
    background-color: #cc0007;
    border-radius: 15px;
    margin-top: 40px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
	-webkit-transition:.4s;
	-moz-transition:.4s;
	-o-transition:.4s;
	transition:.4s;
}

section#promocoes article #botao:hover{
    background-color: #ff3138;
}

div#modal-plano{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, .5);
    z-index: 99999999;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

div#modal-plano form{
    display: inline-block;
    position: relative;
    width: 90%;
    max-width: 500px;
    padding: 50px 0;
    background-color: #fff;
    margin-top: 5%;
}

div#modal-plano form input#check-form{
    display: inline-block;
}

div#modal-plano form label{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 30px;
    font-family: 'Panton Black', sans-serif;
}

div#modal-plano form p{
    display: inline-block;
    width: 90%;
    text-align: left;
    font-family: 'gogoposterpunchregular', sans-serif;
    font-size: 25px;
    color: #194681;
    margin-bottom: 10px;
}

div#modal-plano form input, div#modal-plano form select{
    display: inline-block;
    width: 90%;
    height: 30px;
    background-color: #fff;
    margin-top: 10px;
    text-indent: 5px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

div#modal-plano form input#assinar{
    width: 180px;
    height: 35px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    background-color: #194681;
    color: #fff;
    font-size: 18px;
    text-indent: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

div#modal-plano form input#assinar:hover{
    width: 200px;
}

div#modal-plano form span.aviso{
    display: inline-block;
    width: 90%;
    margin-top: 10px;
}

div#modal-plano form ::-webkit-input-placeholder{
    color: #000;
}

div#modal-plano form ::-moz-input-placeholder{
    color: #000;
}

#check-form{
    display: none;
}

#check-form:checked ~ div#modal-plano{
    opacity: 1;
    visibility: visible;
}

@media screen and (min-width: 768px){
    div#modal-plano form{
        margin-top: 3%;
    }

    div#modal-plano form label{
        font-size: 35px;
    }

    div#modal-plano form .m1{
        width: 43%;
        float: left;
        margin-left: 5%;
    }

    div#modal-plano form .m2{
        width: 43%;
        float: right;
        margin-right: 5%;
    }
}

@media screen and (min-width: 1024px){
    section#promocoes{
        background: url(../imagens/bg-promocoes.png) center top no-repeat;
        background-color: #0060ab;
    }

    section#promocoes h1{
        font-size: 40px;
    }
}