@charset "utf-8";

/*
verde escuro: #155C30
verde claro: #d0de91
bege: #f1e9bd
cinza claro: #f8f8ee
*/

body { margin: 0; padding: 0; font-family: sans-serif; }
h1,h2,h3,h4,h5,h6 { font-family: 'Quicksand', sans-serif; color: #155C30; }
* { box-sizing: border-box; font-family: inherit; outline: none; color: inherit; }

.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.between { justify-content: space-between; }
.align-center { align-items: center; }

.container { width: 95%; max-width: 990px; }

.bg-verde-escuro { background-color: #155C30; }
.bg-beje { background-color: #f1e9bd; }
.bg-linear { background-image: linear-gradient(to right, #f8f8ee, #d0de91); }
.box-shadow { box-shadow: 0 0 15px #000; }

.palcosite { margin: 25px auto; background: #fff; overflow: hidden; }

.topo { padding: 10px; }
.logotipo { max-width: 100%; height: auto; }
.mainmenu { list-style: none; margin: 0; padding: 0; flex: 1; max-width: 100%; }
.mainmenu li { flex-grow: 1; text-align: center; }
.mainmenu a { display: block; padding: 15px; color: #155C30; transition: all 200ms; text-decoration: none; border-radius: 2px; }
.mainmenu a:hover { color: #fff; background: #155C30; }

.responsivo { display: none; }
.responsivo .btn-resp { border: 1px solid #ccc; background: #fff; border-radius: 5px; padding: 10px; cursor: pointer; }
.responsivo .abre-menu { margin-top: 10px; }

.banner { padding: 10px; }
.banner .fotos { max-height: 390px; overflow: hidden; }
.banner .imagem { position: relative; }
.banner .imagem h2 { position: absolute; z-index: 2; text-shadow: 1px 1px #999, -1px -1px #999, 1px -1px #999, -1px 1px #999, 2px 2px 2px #000; color: #fff; bottom: 0; left: 10px; max-width: 500px; }
.banner .imagem img { position: relative; z-index: 1; max-width: 100%; height: auto; display: block; }

.utilitarios { padding: 0 40px; border-bottom: 5px solid #000; border-top: 1px solid #155C30; }
.utilitarios .bt-util.responsivo { display: none; }
.utilitarios .bt-util { flex: 1 200px; display: block; padding: 25px; font-size: .9em; text-decoration: none; text-align: left; cursor: pointer; background: transparent; border: none; }
.utilitarios .bt-util:hover { background: #f8f8ee; }

.conteudo { font-size: 12px; text-align: justify; }
.lateral { max-width: 350px; padding: 20px; }
.lateral .bt-link { padding: 5px; display: inline-block; background: #eee; border: 1px solid #ccc; color: #333; text-decoration: none; }
.textos { flex: 1; padding: 20px; }

.bt-mais-not { display: inline-block; padding: 7px; font-weight: bold; font-size: 12px; background: #155C30; color: #fff; border-radius: 5px; text-decoration: none; }

.acesso-rapido { padding: 20px; font-size: .8em; }
.acesso-rapido .bt-acesso { text-decoration: none; border-radius: 3px; padding: 10px; flex: 1 200px; }
.acesso-rapido .bt-acesso i { background: #fff; border-radius: 3px; padding: 5px; margin-right: 10px; }
.acesso-rapido .bt-acesso * { margin: 0; }
.acesso-rapido .bt-acesso:hover { background: #f8f8ee; }

.divisao-share { border-top: 1px solid #ccc; width: 150px; margin: 25px 0 10px; }
.copy { background: #000; color: #f1e9bd; padding: 20px 40px; font-size: .75em; text-align: center; }

/* FORMULARIO DE CONTATO */

.divformulario { font-family: sans-serif; }
.divformulario *:not(.fa) { font-family: inherit; }

#formcontato { width: 100%; }
#formcontato input, #formcontato textarea { width: 100%; resize: none; padding: 10px; margin: 2px 0; border: 1px solid #d0de91; color: #999; }
#formcontato input:focus, #formcontato textarea:focus { color: #333; }
#formcontato button { background: #EBEBEB; padding: 10px 20px; margin: 2px 0; color: #666; border: 1px solid #ccc; border-radius: 3px; cursor: pointer; }
#formcontato button:hover { background: #f5f5f5; }

#result { padding: 15px; margin: 20px 0; display: none; border-radius: 3px; color: #333; background-color: #eee; border: 2px solid #ddd; }
#result.error { color: #a94442; background-color: #f2dede; border-color: #ebccd1; }
#result.success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; }

@media screen and (max-width: 944px) {
    .utilitarios .bt-util { flex: 1 300px; }
}
@media screen and (max-width: 768px) {
    .responsivo { display: block !important; width: 100%; }
    .mainmenu.flex { display: block; }
    .mainmenu { position: fixed; z-index: 2000; top: 0; right: -290px; border-left: 1px solid #ccc; background: #fff; padding: 10px; width: 290px; height: 100%; overflow: auto; }
    .responsivo .btn-resp { width: 100%; }
    .banner .imagem h2 { display: none; }
    
    .lateral { width: 100%; max-width: none; }
    .textos { flex: auto; width: 100%; }
    .links-util.flex { display: none; }
}