body {
	background-image: url(../imagens/bg_topo.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
.bg_rodape {
	background-image: url(../imagens/bg_rodape_degrade.jpg);
	background-position: bottom center; 
	background-repeat: repeat-x;
}
.bg_rodape_conteudo {
	background-image: url(../imagens/bg_rodape.jpg);
	background-position: center;
	background-repeat: no-repeat;
}
form {
	margin: 0;
}
img {
	border: 0;
}
input, select, textarea {
	font-size: 12px;
	color: #0A3F89;
	border: 1px solid #666666;
	width: 300px;
}
.bt_enviar {
	color: #FFFFFF;
	border: 1px solid #0E720E;
	background-color: #0E720E;
	font-weight: bold;
	height: 25px;
}
a {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: underline;
}
h1 {
	font-size: 28px;
	letter-spacing: -1px;
	text-shadow: 2px 2px 2px #FFF;
	font-weight: normal;
	margin: 0;
}
h2 {
	font-size: 26px;
	letter-spacing: -1px;
	text-shadow: 1px 1px 1px #FFF;
	margin: 0;
	font-weight: normal;
}
h3 {
	font-size: 22px;
	letter-spacing: -1px;
	text-shadow: 1px 1px 1px #FFF;
	margin: 0;
	font-weight: normal;
}
h4 {
	font-size: 11px;
	font-weight: normal;
	margin: 0;
}
.texto_espacamento {
	line-height: 18px;
}
.laranja {
	color: #FF6600;
}
.verde {
	color: #08AA08;
}
.verde_escuro {
	color: #0A4B0A;
}
.branco {
	color: #FFFFFF;
}
.brd_rigth_cinza {
	border-right: 1px;
	border-right-color: #999999;
	border-right-style: dashed;
}
.brd_left_verde {
	border-left: 1px;
	border-left-color: #0A4B0A;
	border-left-style: solid;
}
.brd_left_cinza {
	border-left: 1px;
	border-left-color: #999999;
	border-left-style: solid;
}
.brd_verde {
	border: solid 1px #0E720E;
}
.brd_foto {
	border: solid 1px #E4F8C0;
	padding: 5px;
}

#instafeed{
	display: flex;
	margin: 0 300px;
}

#instafeed .insta-img-container img{
	width: 100%;
	object-fit: cover;
	height: 100%;
}

#instafeed .insta-img-container img:hover{
	transform: scale(1.1);
	transition: 0.8s;
}

@media(max-width:767px){
	#instafeed{
		display: grid;
		grid-template-columns: repeat(3, 1fr)
	}

	#instafeed .insta-img-container img:hover{
		transform: scale(1.0);
	}
}

#barra-instagram h2 {
	text-align: center;
    margin-top: 30px;
	margin-bottom: 15px;
	color: #ff6621;
}

#menu_novo ul{
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

#menu_novo li {
    display: grid;
}

#menu_novo li a {
    background: linear-gradient(0deg, rgba(221,243,206,1) 0%, rgba(221,243,206,1) 49%, rgba(247,252,244,1) 100%);
    padding: 10px 15px;
    margin-left: 10px;
    color: #ff6600;
    font-size: 20px;
    border-radius: 2px;
}

#menu_novo span.span-top {
    color: #2c832c;
    text-transform: uppercase;
    font-size: 8px;
    font-weight: bold;
    padding-left: 12px;
    padding-bottom: 5px;
}

section#menu_novo {
    margin-top: 70px;
}

#menu_novo li a:hover {
    text-decoration: none;
    /* background: linear-gradient(0deg, rgba(44,131,44,1) 0%, rgba(44,131,44,1) 49%, rgba(247,252,244,1) 100%); */
    color: #ebeb26;
    transition: 0.8s;
}

#menu_novo li a{
  position: relative;
  z-index: 0;
}

span.span-inner {
    z-index: 2;
}

#menu_novo li a::before, #menu_novo li a::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background: linear-gradient(0deg, rgba(44,131,44,1) 0%, rgba(44,131,44,1) 49%, rgba(247,252,244,1) 100%); /* onhover background color */
	z-index: -3;
	transform: translate3D(0, 100%,0); /* move elements above button so they don't appear initially */
	transition: all .5s;
  }
  
  #menu_novo li a::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background: white; /* onhover background color */
	z-index: -2;
	transform: translate3D(0, 100%,0); /* move elements above button so they don't appear initially */
	transition: all .5s;
  }
  
  
  #menu_novo li a:hover::before{
	transform: translate3D(0, 0%,0); /* move elements above button so they don't appear initially */
	transition: all .5s;
  }