@import 'bootstrap.min.css';

body {
    font-family: 'Lora', serif;
    font-size: 15px;
}

#fundoFade {
    position: fixed;
    left: 0; right: 0;
    top: 0; bottom: 0;
    height: 100vh;
    background: #000;
    z-index: 9999;
}
#blackFundo {
    position: fixed;
    left: 0; right: 0;
    top: 0; bottom: 0;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 150;
    display: none;
}

a { 
    color: #000;
	text-decoration: none;
}
a:hover, a:focus {
    color: #3baf0a;
	text-decoration: none;
}

/* Cabeçalho */
header {
    border-top: solid 5px #3eb80a;

    background: -moz-linear-gradient(top, #fdfdfd, #e0e0e0) repeat-X;
    background: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#e0e0e0)) repeat-X;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd, endColorstr=#e0e0e0)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fdfdfd, endColorstr=#e0e0e0); 

    padding: 15px 0px;
}
header .logo img {
	float: left;
	width: auto;
}
header nav ul {
	float: right;
    margin-top: 5px;
}
header nav ul li {
	display: inline-block;
	margin-left: 30px;
}
header nav ul li a {
    font-size: 20px;
    text-transform: uppercase;
	font-weight: bolder;
	padding: 5px 0px;
}
header nav ul li a:hover,
.__menuSuperiorATIVO {
    color: #3baf0a;
}

#control-nav:checked ~ .control-nav-close {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
#control-nav:checked ~ nav {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}


/* Rodapé */
footer       { background: #000; color: #fff; padding: 25px 0px 20px 0px; }
footer a     { color: #fff; }
footer ul li b { margin-bottom: 15px !important; display: block; color: #76ca53;  }
.__copyright { float: left;  text-align: left;  font-size: 13px; color: #fff; }
.__develop   { float: right; text-align: right; font-size: 13px; }

/* Página Home */
#pagina-home {
    background: url(../img/banner-home.jpg) no-repeat center top;
    background-size: cover !important;
    padding: 200px 0px 100px 0px;
}
#pagina-home h1 {
    font-size: 50px;
    font-weight: bolder;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}
#pagina-home .call-to-action {
    margin-top: 100px;
    overflow: hidden;
}
#pagina-home .call-to-action b {
    display: block;
    background: #000;
    padding: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
}
#pagina-home .box:hover > a b {
    background: #333;
}

/* Página Empresa */
#pagina-empresa {
    background: url(../img/banner-empresa.jpg) no-repeat center top;
    background-size: cover !important;
    padding: 100px 0px;
}
#pagina-empresa h1 {
    font-size: 50px;
    font-weight: bolder;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}
.textos-institucionais li .box {
    background: #000;
    color: #3baf0a;
    padding: 20px;
    min-height: 160px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Página Produtos & Serviços */
#pagina-produtos {
    background: url(../img/banner-produtos.jpg) no-repeat center top;
    background-size: cover !important;
    padding: 100px 0px;
}
#pagina-produtos h1 {
    font-size: 50px;
    font-weight: bolder;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}
.lista-produtos-servicos .row {
    margin-top: 30px;
    margin-bottom: 30px;
}
.lista-produtos-servicos h3 {
    margin-top: 0;
}
.lista-produtos-servicos img {
    border: solid 2px #3baf0a;
}

/* Página Contato */
#pagina-contato {
    background: url(../img/banner-contato.jpg) no-repeat center top;
    background-size: cover !important;
    padding: 130px 0px;
}
#pagina-contato h1 {
    font-size: 50px;
    font-weight: bolder;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}
form input[type="submit"] {
    border: none !important;
    color: #fff;
    background: #3baf0a;
    font-weight: bold;
    padding: 10px 35px;
    border-radius: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
}
form input[type="submit"]:hover {
    background: #25410c;
}
form input[type="text"] {
    border: solid 1px #3baf0a;
    border-radius: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
}
form textarea {
    border: solid 1px #3baf0a !important;
    border-radius: 0px !important;
    margin-top: 5px;
    margin-bottom: 5px;

}