@charset "utf-8";

section#sobre{
    float: left;
    width: 100%;
    background-color: #0060a7;
    padding: 40px 0;
    margin-top: 30px;
}

section#sobre h1{
    display: inline-block;
    width: 90%;
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

section#sobre h1 strong{
    font-size: 35px;
}

section#sobre article, section#equipe article{
    display: inline-block;
    width: 100%;
    max-width: 700px;
}

section#sobre article p{
    display: inline-block;
    width: 90%;
    color: #fff;
    line-height: normal;
    text-align: justify;
    margin-top: 20px;
}

section#equipe{
    float: left;
    width: 100%;
    padding: 50px 0;
    background-color: #f9f9f9;
}

section#equipe h1{
    display: inline-block;
    margin-top: 30px;
    width: 90%;
    font-size: 25px;
    color: #0060a7;
    font-weight: 700;
}

section#equipe article p{
    display: inline-block;
    width: 90%;
    color: #0060a7;
    line-height: normal;
    text-align: justify;
    margin-top: 20px;
}

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: 30px 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 ::-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){
    section#sobre{
        background: url(../imagens/bg-sobre.jpg) center top no-repeat;
    }
}