/* CORES
#354773 - principal
#2B74C9 - hover
#26C7FE - cor icone endereco/frase foto
*/

/* GERAL */
body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Archivo Narrow', sans-serif;
    color: #777;
}

[onClick] {
    cursor: pointer;
}

* {
    box-sizing: border-box;
    font-family: inherit;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
}

a {
    text-decoration: none;
    display: inline-block;
}


.botao,
button {
    padding: 10px 15px;
    text-transform: uppercase;
    background: #354773;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
}

.botao:hover,
button:hover {
    background: #2B74C9;
}

.botao-whatsapp {
    position: relative;
    z-index: 1000;

}

/* TITULOS */
.titulo {
    font-size: 32px;
    position: relative;
    text-align: left;
}

.titulo span {
    color: #26C7FE;
}

.titulo small {
    display: block;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: -1;
}

.textos .titulo:before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: -15px;
    width: 50px;
    height: 2px;
    background: #26C7FE;
}

/* TRANSITION */
.botao,
button,
#menu li a,
.utilitarios i,
.utilitarios p,
#programacoes .programacoes a:before,
.links_importantes li a,
#redes_sociais li,
#redes_sociais li a {
    transition: all 250ms;
}

/* PADRAO DOS FORMULÁRIOS */
form input,
form textarea {
    width: 100%;
    font-size: 14px;
    background: rgba(255, 255, 255, .85);
    margin: 2px;
    padding: 15px;
    border-radius: 2px;
    outline: none;
    border: 1px solid #ddd;
    resize: none;
}

form button {
    background: #777;
    padding: 15px;
    border: none;
    color: white;
    margin: 2px;
    cursor: pointer;
}

form button:hover {
    background: black;
}

form a.botao {
    padding: 15px;
    margin: 2px;
}

/* LARGURA DEFINIDA CORPO SITE */
.largura_site {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* FLEX */
.flex {
    display: flex;
}

.between {
    justify-content: space-between;
}

.centerv {
    align-items: center;
}

.centerh {
    justify-content: center;
}

.wrap {
    flex-wrap: wrap;
}

/* BANNER */
#banner {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#banner .fotos {
    width: 100%;
    height: 100%;
    position: relative;
}

#banner .fotos:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 69, 87, .45);
}

/* PAGINA INICIAL */
#inicial {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    color: white;
}

#topo {
    align-self: flex-start;
    position: relative;
    z-index: 20;
}

#topo #logo {
    margin: 20px 0;
}

#topo #logo img {
    width: 100%;
    height: auto;
    max-width: 300px;
    background: white;
    border-radius: 5px;
}

#topo .endereco {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    text-align: right;
}

#topo .endereco li {
    list-style: none;
    text-align: center;
    display: inline-block;
}

#topo .endereco li i {
    color: #26C7FE;
}

#topo .endereco li:not(:first-child) i {
    margin-left: 15px;
}

/* MENU */
#menu {
    margin: 0;
    padding: 10px 0;
    list-style: none;
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

#menu li {
    flex-grow: 1;
}

#menu li:not(.restrito) {
    margin-right: 5px;
}

#menu li a:not(.botao) {
    font: normal 15px "Archivo Narrow", sans-serif;
    display: block;
    text-align: center;
    padding: 10px 5px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

#menu li a:hover:not(.botao) {
    border-bottom: 2px solid rgba(255, 255, 255, .6)
}

#menu select {
    display: none;
    width: 100%;
    color: #777;
    border: 0;
    border-radius: 5px;
    text-transform: uppercase;
    padding: 10px;
}

#menu select option {
    padding: 2px 10px;
}

/* SLOGAN */
.slogan {
    align-self: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9999;
}

.slogan .titulo {
    width: 100%;
    font-size: 43px;
    text-align: center;
    color: white;
}

.slogan .titulo small {
    font-size: 26px;
}

#destaque {
    align-self: flex-end;
    width: 100%;
    padding: 5px 0;
    background: #354773;
    position: relative;
    z-index: 20;
}

/* JANELA MODAL */
@keyframes anima_janela {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

#modal {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
}

#modal .janela_modal {
    overflow: auto;
    max-height: 90%;
    position: relative;
    z-index: 998;
    background: whitesmoke;
    display: block;
    padding: 5px;
    margin: 20px;
    border-radius: 5px;
    animation: anima_janela 1s;
}

#modal .janela_modal>div {
    border: 1px solid #a6afbe;
    padding: 10px 25px;
}

#modal .close {
    position: absolute;
    z-index: 999;
    top: 20px;
    right: 20px;
}

/* AREA RESTRITA */
#restrito form>div {
    flex: 1 45%;
    margin: 5px;
}

/* CONTEUDO TEXTOS */
.textos {
    padding: 50px 0 90px;
    text-align: justify;
    background: white;
}

.textos .blocos {
    flex: 1;
    margin: 10px 20px;
}

/* UTILITARIOS */
.utilitarios {
    flex: 1 45%;
    padding: 15px 10px 0;
    margin: 5px;
    border: 1px solid whitesmoke;
    text-align: center;
    background: #fcfcfc;
}

.utilitarios:hover i {
    color: #777;
}

.utilitarios:hover p {
    color: black;
}

.utilitarios:hover {
    border-color: #ddd;
}

.utilitarios i {
    color: #ddd;
}

/* FRASE DESTAQUE */
#frase {
    padding: 90px 0;
    background: url(imagens/frase.jpg) center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

#frase:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 69, 87, .55);
}

#frase .titulo {
    text-align: center;
    font-size: 37px;
    color: white;
}

/* #frase .titulo span { color: #26C7FE;} */
#frase .titulo small {
    margin: 0;
    font-size: 25px;
}

/* PROGRAMACOES */
#programacoes {
    border-top: 3px solid whitesmoke;
    background: #fcfcfc;
}

#programacoes .titulo {
    text-align: center;
}

#programacoes .titulo:before {
    content: none;
}

#programacoes .programacoes a {
    flex: 1;
    margin: 20px 15px;
    position: relative;
    text-align: left;
}

#programacoes .programacoes a:before {
    position: absolute;
    content: "";
    opacity: .3;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #26C7FE;
}

#programacoes .programacoes a:hover:before {
    width: 100%;
    opacity: 1;
}

#programacoes .programacoes i {
    margin-right: 5px;
}

#programacoes .programacoes small {
    display: block;
}

/* NOTICIAS */
#noticias {
    border-top: 3px solid whitesmoke;
}

#noticias_slide .botao {
    background: whitesmoke;
    text-transform: none;
    color: #777;
}

#noticias_slide .botao:hover {
    background: #777;
    color: white;
}

.owl-theme .owl-controls .owl-page span {
    width: 35px !important;
    height: 3px !important;
    margin: 20px 2px 40px !important;
    border-radius: 0 !important;
    background: #869791 !important;
    opacity: 0.5 !important;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    opacity: 1 !important;
}

/* RODAPE */
#rodape {
    padding-top: 50px;
    background: whitesmoke;
}

#rodape .titulo span {
    color: #354773;
}

#rodape .titulo small {
    font-weight: bold;
    text-transform: none;
    font-size: 70%;
    letter-spacing: normal;
}

#rodape .blocos {
    flex: 1;
    margin: 10px;
    text-align: justify;
}

.links_importantes li:not(:last-child) {
    margin-bottom: 10px;
}

.links_importantes li a:hover {
    color: black;
}

#rodape_faixa {
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    border-top: 3px solid #EAEAEA;
}

#redes_sociais {
    margin: 0;
    padding: 0;
    list-style: none;
}

#redes_sociais li {
    margin: 2px;
    background: white;
    border: 2px solid #EAEAEA;
}

#redes_sociais li:hover {
    background: #777;
    color: white;
}

#redes_sociais li a {
    display: block;
    padding: 15px 10px;
}

.certificado {
    background: url('imagens/banner03.png') center;
    background-size: cover;
}

@media screen and (max-width:1000px) {
    #topo {
        flex-direction: column;
    }

    #topo .endereco {
        text-align: center;
    }

    .slogan {
        align-items: end;
        padding-bottom: 100px;
    }

    .slogan .titulo {
        font-size: 31px;
    }

    .slogan .titulo small {
        font-size: 17px;
    }

    #rodape .blocos {
        flex: 1 100%;
    }

    #rodape .blocos.menor {
        flex: 1 45%;
    }
}

@media screen and (max-width:900px) {
    #menu li {
        display: none;
    }

    #menu select {
        display: block;
    }

    #restrito form>div {
        flex: 1 100%;
    }

    .textos .blocos {
        flex: 1 100%;
        margin: 10px;
    }


}

@media screen and (max-width:800px) {
    #programacoes .programacoes a {
        flex: 1 100%;
        text-align: center;
    }


}

@media screen and (max-width:500px) {
    #destaque>div {
        flex-direction: column;
    }

    #destaque>div * {
        margin: 0;
        padding: 0;
    }

    .utilitarios {
        flex: 1 100%;
    }

    #rodape .blocos.menor {
        flex: 1 100%;
    }

    .links_importantes {
        margin: 0;
    }

    .certificado {
        background: url('imagens/banner03-mobile.jpeg');
        background-position: center;
    }
}