* {
    padding: 0;
    margin: 0;
    border: 0;
    font-family:'Roboto', sans-serif;
}
a {
    color: #313131;
}
a:hover {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}
.link-claro a{
color: #fff;
}
.texto-claro p{
    color:#fff;
}
/** logo **/
 section.logo {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #d7d7d7;
    background: #fff;
}
section.logo h1 {
    display: block;
    margin: 0 auto;
    width: 400px;
}
/** MENU **/
 section.menu {
    display: block;
    float: left;
    width: 100%;
    /* border-bottom: 1px solid #d7d7d7; */
    background: #305232;
}
nav {
    display: block;
    float: left;
    position: relative;
    top: -2px;
    width: 100%;
}
nav ul.list-auto {
    display: block;
    margin: 0 auto;
    width: 750px;
}
nav ul.list-auto li {
    float: left;
    display: inline;
    position: relative;
}
nav ul.list-auto li a {
    padding: 20px;
    float: left;
    font-size: 16px;
    font-family:'Roboto Slab', serif;
    color: #fff;
    border-top: 3px solid transparent;
}
nav ul.list-auto li a:hover {
    color: #73ca8e;
    text-decoration: none;
    border-top: 3px solid #73ca8e;
}
input#control-nav {
    visibility: hidden;
    position: absolute;
    display: block;
    left: -9999px;
    opacity: 0;
}
label.control-nav, label.control-nav-close {
    display: none;
}
@media screen and (max-width: 767px) {
    label.control-nav, label.control-nav-close {
        display: inline-block;
    }
    header nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 91%;
        border-left: 1px solid #ccc;
        background: #252525;
        overflow-x: auto;
        z-index: 2;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
    header ul.list-auto {
        padding: 0;
    }
    header ul.list-auto li {
        width: 100%;
        border: solid #000;
        border-width: 0 0 1px;
    }
    header li a {
        padding: 15px 10px;
    }
    header li a:hover {
        background-color: #000;
    }
    .control-nav {
        /* label icon */
        position: fixed;
        right: 20px;
        top: 20px;
        display: block;
        width: 30px;
        padding: 5px 0;
        border: solid #000;
        border-width: 3px 0;
        z-index: 2;
        cursor: pointer;
    }
    .control-nav:before {
        content:"";
        display: block;
        height: 3px;
        background: #000;
    }
    .control-nav-close {
        position: fixed;
        /* label layer */
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        z-index: 1;
        background: rgba(0, 0, 0, 0.4);
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        -webkit-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
        transform: translate(100%, 0);
    }
    /* checked nav */
    input#control-nav {
        display: block;
    }
    input#control-nav:focus ~ .control-nav {
        border-color: #000;
        box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.3);
    }
    input#control-nav:focus ~ .control-nav:before {
        background: #000;
    }
    input#control-nav:checked ~ nav, input#control-nav:checked ~ .control-nav-close {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    nav ul.list-auto li a {
        width: 100%;
    }
}
/** BANNER **/
 section.banner {
    display: block;
    float: left;
    width: 100%;
}
/** SEJA BEM VINDO **/
 section.bem-vindo {
    display: block;
    float: left;
    width: 100%;
    background: #002f4a;
    padding: 30px 0;
}
section.bem-vindo h2 {
    display: block;
    float: left;
    width: 100%;
    color: #fff;
    font-family:'Roboto Slab', serif;
    font-size: 30px;
}
section.bem-vindo p {
    display: block;
    float: left;
    width: 100%;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}
section.bem-vindo span {
    display: block;
    float: left;
    margin-bottom: 30px;
}
/** SERVIÇOS **/
 section.servicos {
    display: block;
    float: left;
    width: 100%;
    padding: 50px 0;
}
section.servicos h2 {
    display: block;
    float: left;
    width: 100%;
    color: #969696;
    font-family:'Roboto Slab', serif;
    font-size: 30px;
    margin-top: 0;
}
section.servicos span {
    display: block;
    margin-bottom: 60px;
    font-family:'Roboto Slab', serif;
}
section.servicos a {
    display: block;
    float: left;
    border: 2px solid #000;
    padding: 15px;
    margin: 15px 0;
    width: 100%;
}
section.servicos a.direito h3 {
    font-size: 24px;
    font-family:'Roboto Slab', serif;
    color: #313131;
    font-weight: 700;
    display: block;
    margin-top: 0;
    float: right;
    text-align: right;
    margin-bottom: 20px;
}
section.servicos a.esquerdo h3 {
    font-size: 24px;
    font-family:'Roboto Slab', serif;
    color: #313131;
    font-weight: 700;
    display: block;
    margin-top: 0;
    float: left;
    margin-bottom: 20px;
}
section.servicos a.direito h3 span {
    font-size: 24px;
    font-family:'Roboto Slab', serif;
    color: #969696;
    font-weight: 700;
    display: block;
    float: right;
    margin-left: 5px;
    margin-bottom: 0;
}
section.servicos a.esquerdo h3 span {
    font-size: 24px;
    font-family:'Roboto Slab', serif;
    color: #969696;
    font-weight: 700;
    display: block;
    float: right;
    margin-left: 5px;
    margin-bottom: 0;
}
section.servicos a.direito p {
    display: block;
    float: right;
    color: #313131;
    font-size: 16px;
    line-height: 20px;
    font-family:'Roboto', sans-serif;
    width: 100%;
    text-align: right;
}
section.servicos a.esquerdo p {
    display: block;
    float: right;
    color: #313131;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    font-family:'Roboto', sans-serif;
}
section.servicos a:hover {
    display: block;
    float: left;
    border: 2px solid #000;
    background: #e2e2e2;
    padding: 15px;
    margin: 15px 0;
}
section.servicos a:hover h3 span {
    color: #000;
}
@media screen and (max-width: 767px) {
    section.servicos a.esquerdo h3, section.servicos a.direito h3 {
        font-size: 20px;
        text-align: center;
        width: 100%;
    }
    section.servicos a.esquerdo h3 span, section.servicos a.direito h3 span {
        font-size: 20px;
        text-align: center;
        float: none;
        margin-left:0;
    }
    section.servicos a.esquerdo p, section.servicos a.direito p {
        text-align: center;
    }
}
/** NOTÍCIAS E LINKS ÚTEIS **/
 section.notlink {
    display: block;
    float: left;
    width: 100%;
    padding: 50px 0;
    background: url("../img/fundo-noticias-links.jpg") repeat-y center;
}
section.notlink h2 {
    display: block;
    float: left;
    width: 100%;
    color: #2d2d2d;
    font-family:'Roboto Slab', serif;
    font-size: 30px;
    margin-top: 0;
}
section.notlink span {
    display: block;
    float: left;
    margin-bottom: 30px;
    width: 100%;
}
section.notlink article.link {
    display: block;
    float:left;
    width: 100%;
    text-align: center;
    border: 1px solid #313131;
    margin: 5px 0;
}
section.notlink article.link h3 {
    color: #313131;
    font-size: 16px;
    margin: 0;
    padding: 10px 0;
}
section.notlink article.link:hover {
    border: 1px solid #969696;
}
section.notlink article.link:hover h3 {
    background: #969696;
    color: #fff;
}
/*bg quem somos*/
 section.quem {
    display: block;
    float: left;
    width: 100%;
    padding: 50px 0;
    background: url("../img/banner-quem-somos.jpg") repeat-y center;
    background-attachment: fixed;
    background-size: cover;
}



/** RODAPÉ **/
 section.rodape1 {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 0;
    background: #2d2d2d;
}
section.rodape1 h3 {
    display: block;
    float: left;
    width: 100%;
    color: #fff;
    font-family:'Roboto Slab', serif;
    font-size: 24px;
    margin-bottom: 20px;
}
section.rodape1 h3 small {
    font-family:'Roboto', serif;
    color: #fff;
    font-size: 14px;
}
section.rodape1 p {
    color: #fff;
}
section.rodape2 {
    display: block;
    float: left;
    width: 100%;
    padding: 10px 0;
    background: #000;
}
section.rodape2 p {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 0;
    color: #fff;
}
section.rodape2 p a {
    color: #fff;
    font-weight: 700;
}
/** BUSCA NO SITE **/
 .cse .gsc-control-cse, .gsc-control-cse {
    padding: 0 !important;
}
.gsc-control-cse {
    background: transparent !important;
    border: 1px solid transparent !important;
}
.cse form.gsc-search-box, form.gsc-search-box {
    padding: 0 !important;
}
.cse input.gsc-input, input.gsc-input {
    width: 100% !important;
}
input.gsc-input {
    padding: 10px 15px !important;
    border: 1px solid transparent !important;
}
.cse input.gsc-search-button, input.gsc-search-button {
    padding: 13px 15px !important;
    height: 44px !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    font-family:'Roboto', serif !important;
    font-style: italic !important;
    color: #969696 !important;
    font-weight: 500 !important;
}
input.gsc-search-button {
    background: #f89f79 !important;
    padding: 15px;
    border: 1px solid transparent !important;
    border-radius: 0;
    margin-left: 0 !important;
}
.cse table.gsc-search-box td.gsc-input, table.gsc-search-box td.gsc-input {
    padding-right: 0 !important;
}
/** TÍTULO INTERNAS **/
 section.titulo {
    display: block;
    float: left;
    width: 100%;
    padding: 30px 0;
}
section.titulo h2 {
    color: #404040;
    font-family:'Roboto Slab', serif;
    font-size: 30px;
}
section.cont {
    display: block;
    float: left;
    width: 100%;
}
section.cont p {
    font-size: 16px;
}
section.cont h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #888888;
    font-family:'Roboto Slab', serif;
    font-size: 20px;
}
section.cont h3 span {
    color: #000;
    font-family:'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 700;
}
section.cont article {
    display: block;
    flex: left;
    width: 100%;
    border: 1px solid #000;
    padding: 10px;
}
section.cont article:hover {
    display: block;
    flex: left;
    width: 100%;
    border: 1px solid #000;
    background: #404040;
    padding: 10px;
}
section.cont article h3 {
    margin-top: 0;
    margin-bottom: 0px;
    color: #313131;
    font-family:'Roboto Slab', serif;
    font-size: 20px;
    text-align: center;
    padding: 15px 0;
}
section.cont article:hover h3 {
    margin-top: 0;
    margin-bottom: 0px;
    color: #fff;
    font-family:'Roboto Slab', serif;
    font-size: 20px;
}
section.cont article:hover p {
    color: #fff;
}
/** CONTATO **/
 form input.field {
    display: block;
    float: left;
    width: 100%;
    padding: 15px;
    background: #eaeaea;
    margin-bottom:30px;
}
form textarea.msg {
    display: block;
    float: left;
    width: 100%;
    padding: 15px;
    background: #eaeaea;
    height: 150px;
    resize: none;
}
form input.button {
    display: block;
    font-family:'Roboto Slab', serif;
    float: left;
    width: 100%;
    padding: 15px;
    background: #272726;
    color: #fff;
    font-size: 18px;
    margin: 30px 0;
}
section.contato {
    display: block;
    float: left;
    width: 100%;
    padding: 80px 0;
    background: url(../img/contato.jpg) repeat-y;
    background-size: cover;
    background-attachment: fixed;
}
section.contato p {
    color: #fff;
    font-family:'Roboto Slab', serif;
    margin: 30px 0 0 0;
    font-size: 20px;
}
@media screen and (max-width: 800px) {
    section.servicos a.esquerdo h3 span {
        text-align: left;
        float: left;
    }
}
