/*===============Reset====================*/
*{
	padding: 0px;
	margin: 0px;
	font-size: 100%;
	border:none;
	outline: none;
	font-weight: 300;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}
html{
	scroll-behavior: smooth;
}
body{
	background-color: #f5f5f5;
}
a{
	text-decoration: none !important;
	color: #000;
}
ul{
	list-style: none;
}
img{
	max-width: 100%;
}
/*====================Animações================*/
[data-anima]{
	opacity: 0;
	transition: 0.5s
}
[data-anima="esquerda"]{
	transform: translate3d(-50px,0,0);
}
[data-anima="direita"]{
	transform: translate3d(50px,0,0);
}
[data-anima="centro"]{
	transform: translate3d(0,50px,0);
}
[data-anima].animacao{
	opacity: 1;
	transform: translate3d(0,0,0);
}
/*===================CSS communs==============*/
.titulos{
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 5%;
}
.subTitulos{
	font-weight: 600;
	margin-bottom: 3%;
}
.titulosBrancos{
	font-size: 1.5em;
	font-weight: 700;
	margin-top: 5%;
	margin-bottom: 5%;
	color: #fff;
}
.subTitulosBrancos{
	font-weight: 600;
	margin-bottom: 3%;
	color: #fff;
}
.sectionColor{
	background-color: #F0F8FF;
}
.sectionColorWhite{
	background-color: #fff;
}
.sectionColorDark{
	background-color: #2F4F4F;
}
.sectionColorGrey{
	background-color: #f5f5f5;
}
.flex{
	display: flex;
}
.justificar{
    text-align: justify;
}
.alignRight{
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 2%;
    margin-right: 4%;
}
.alignLeft{
    text-align: left;
}
.espaco{
    margin-bottom: 10%;
}
.colordarkciano{
    color: #008B8B;
}
.colordarkciano:hover{
    color: #2F4F4F;
}
.colorgrey{
    color: #4F4F4F;
}
.colorgrey:hover{
    color: #2E8B57;
}
.colorgreyduo{
    color: #363636;
}
.colorgreyoitenta{
    color: #808080;
}
/*================WhastApp=================*/
.whats{
	width: 70px;
	height: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 99999;
}
.whats a{
	text-align: center;
	line-height: 70px;
	color: #fff;
	font-size: 2.5em;
	padding: 5px 12px 5px 12px;
	background-color: #34af23;
	opacity: 80%;
	border-radius: 50%;
	z-index: 99999;
}
.whats a:hover{
	opacity: 1;
	background-color: #2F4F4F;
}
.whatsLarge{
	display: none;
	width: 180px;
	height: 70px;
	position: fixed;
	right: 0;
	top: 80px;
	text-align: left;
	background-color: #34af23;
	opacity: 90%;
	border-radius: 5%;
	z-index: 9999;
}
.whatsLarge a{
	display: flex;
	text-align: left;
	line-height: 15px;
	color: #fff;
}
.whatsLarge a:hover{
	text-decoration: none;
}
.whatsLarge p{
	margin-left: 10px;
	text-align: left;
	line-height: 20px;
	color: #fff;
	font-size: 1.1em;
	margin-top: 12px;
}
.iconeWhats{
	margin-left: 10px;
	font-size: 2.5em;
	margin-top: 12px;
}
/*===================Form=====================*/
.formDados{
	display: block !important;
}
.btn-primary{
	background-color: #1b3506 !important;
	border-color: #1b3506 !important;
}
.corpoForm{
	font-weight: 600;
	margin-bottom: 5%;
}
.rodapeForm{
	font-size: 0.8em;
	color: #FF6347;
}
/*===================Cabeçalho================*/
.cabecalho{
	display: flex;
	width: 100%;
	height: 80px;
	float: left;
	padding: 1% 1%;
	position: fixed;
	z-index: 9999;
	background: #1B2606;
	justify-content: space-between;
}
.logo{
	width: 56px;
	height: 56px;
	float: left;
	background: url(../Imagens/Logo.png) center center/56px no-repeat;
	font-size: 0;
}
.telefonesCabecalho{
	display: none;
	width: 12%;
	color: #fff;
	float: right;
	margin-right: 2%;
	white-space: nowrap;
	text-align: right;
	line-height: 25px;
}
.iconeCabecalho{
	float: left;
	margin-right: 5%;
	color: #b0bc79;
}
.iconeCabecalhoWhats{
	float: left;
	margin-right: 5%;
	color: #b0bc79;
	font-size: 1.2em;
}
.btn-menu{
	width: 56px;
	height: 56px;
	border-radius: 50%;
	float: right;
	text-align: center;
	cursor: pointer;
	margin: 1% 2%;
}
.entrarContato{
	padding: 0 1% 0 1%;
	width: 50%;
	margin-top: 20px;
	text-align: center;
}
.entrarContato a{
	color: #fff;
	white-space: nowrap;
	width: 100%;
	height: 100%;
	padding: 2%;
	text-decoration: none;
	border: 1px solid #fff;
	position: static;
	letter-spacing: 0.02em;
}
.entrarContato a:hover{
	background-color: #006400;
	border: 0;
	cursor: pointer;
}
/*=====================Menu===================*/
.menu{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: rgba(0,0,0,0.9);
	top: 0px;
	left: 0px;
}
.btn-close{
	font-size: 2em;
	color: #fff;
	float: right;
	cursor: pointer;
	margin: 2% 3% 0 0;
}
.menu ul{
	width: 100%; 
	float: left;
	text-align: center;
}
.menu li{
	padding: 1.5%;
}
.menu li a{
	font-size: 2em;
	color: #fff;
	padding: 1.5% 3%;
}
.menu li a:hover{
	border: 1px solid #8FBC8F;
	text-decoration: none;
}
.btn-agendarMenu{
	font-size: 2em;
	color: #fff;
	padding: 1.5% 3%;
	background-color: #8FBC8F;
	outline: none !important;
	box-shadow: none !important;
}
.btn-agendarMenu:hover{
	background-color: #2F4F4F;
	outline: none !important;
	box-shadow: none !important;
}
/*=====================Banner======================*/
.bannerServicos{
	width: 100%;
	height: 300px;
	float: left;
	text-align: center;
	padding: 30px 20px 30px 20px;
	margin-top: 60px;
	background: url(../Imagens/BackgroundListras.jpg) no-repeat;
	background-size: cover;
}
.titleServices{
	width: 100%;
}
.titleServices h2{
	width: 100%;
	font-size: 5.0em;
	color: #fff;
	line-height: 250px;
	font-weight: 900;
	text-align: center;
}
/*================Posts=====================*/
.post{
	background-color: #fff;
	width: 96%;
	float: left;
	text-align: center;
	padding: 1%;
	margin:2%;
}
.postcontent{
    width: 100%;
}
.search{
    width: 100%;
    float:left;
    display: flex;
}
.inicio{
    display: none;
}
.pesquisar{
    margin-top: 5%;
    width: 96%;
    float:right;
    margin:2%;
}
.divisoria{
  content: ' ';
  display: block;
  float: left;
  width: 100%;
  height: 2px;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%); 
  background: linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%); 
}
.categorias{
    display: none;
}
.pagination > li > a{
    color: #008B8B;
}
/*================Agende seu horario===========*/
.reservar{
	width: 100%;
	float: left;
	padding: 3% 4%;
	text-align: center;
	background-color: #2F4F4F;
	margin-bottom: 5%;
}
.reservar h2{
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 5%;
	color: #fff;
}
.btn-reservar{
	width: 100%;
	font-size: 1.5em;
	text-align: left;
	line-height: 100%;
	cursor: pointer;
	padding: 4%;
	border-radius: 10px;
	background-color: #fff;
	color: #000;
}
.btn-reservar:hover{
	background-color: #1B2606;
	color: #fff;
}
.iconeReservar{
	float: right;
}
/*================Newsletter===============*/
.newsletter{
	width: 100%;
	float: left;
	text-align: center;
	padding: 3% 4%;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
}
.newsletter h2{
	font-size: 1.5em;
	color: #000;
	font-weight: 700;
}
.newsletter h3{
	color: #000;
}
.newsletter form{
	margin-top: 2%;
}
.newsletter input{
	width: 100%;
	background-color: #DCDCDC;
	color: #000;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 5%;
	border-radius: 5px;
}
.newsletter button{
	width: 100%;
	background-color: #808080;
	color: #000800;
	padding: 5%;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 2%;
}
.newsletter button:hover{
	background-color: #3CB371;
}
/*=================Social nets============*/
.social-icons{
	width: 100%;
	float: left;
	text-align: center;
	padding: 3% 4%;
}
.social-icons p{
	margin-bottom: 3%;
	font-weight: 700;
	font-size: 1.2em;
}
.social-icons a{
	font-size: 2.5em;
	color: rgb(0,0,0);
	margin-right: 3%;
}
.social-icons a:last-child{
	margin-right: 0;
}
.social-icons a:hover{
	color: #b0bc79;
}
/*=================Rodapé===================*/
.splitRodape{
	width: 100%;
	float: left;
	margin: 5% 0 8% 0;
}
.splitRodapeNoticias{
	width: 100%;
	float: left;
	margin: 5% 0 8% 0;
}
.iconeRodape{
	float: left;
	margin-top: 1%;
	margin-right: 5%;
	color: #b0bc79;
}
.rodape{
	width: 100%;
	float: left;
	padding: 3% 4%;
	background-color: #1b3506;
}
.centralizar{
	text-align: center;
}
.enderecoCorpo{
	width: 100%;
	margin-left: 9%;
}
.telefones{
	margin-top: 25px;
}
.rodape img{
	width: 50%;
	margin-bottom: 5%;
}
.contatos{
	width: 100%;
	text-align: left;
}
.contatos p, .contatos a{
	margin-bottom: 15px;
	color: #DCDCDC;
}
.horarioAtendimento{
	width: 100%;
	text-align: left;
}
.horarioAtendimento p, .horarioAtendimento a{
	margin-bottom: 15px;
	color: #DCDCDC;
}
.email{
	color: #fff;
	font-weight: 700;
	letter-spacing: 1px;
}
.horarios{
	margin-left: 5%;
}
.noticia{
	border-radius: 7px;
	margin-bottom: 3%;
	text-align: left;
	border: 1px solid #1b3506;
}
.noticia img{
	width: 150px;
	margin: 2%;
}
.noticia p{
	margin-top: 2%;
	color: #DCDCDC;
}
.noticia:hover{
	border: 1px solid #fff;
}
.noticia a{
	text-decoration: none;
	color: #000;
}
.noticia a:hover{
	text-decoration: none;
	color: #000;
}
.direitos{
	width: 100%;
	float: left;
	background-color: #1b3506;
}
.topo{
	width: 100%;
	text-align: right;
	float: right;
	margin-right: 2%;
}
.topo img{
	width: 30px;
	height: 30px;
}
.copyrigth{
	width: 100%;
	float: left;
	padding: 3% 4%;
	text-align: center;
	margin-top: 50%;
	margin-bottom: 0;
	color: rgba(255,255,255,0.7);
}
/*===================Mobile First==================*/
/*===================Small devices- smartphones==============*/
@media screen and (min-width: 575px){
.logo{
	width: 160px;
	background: url(../Imagens/LogoEQUILIBRIO_PLENO_branco.png) center center/160px no-repeat;
	padding-top: 7%;
}
}
/*===================Small devices- small tablets==============*/
@media screen and (min-width: 690px){
.newsletter input{
	width: 69%;
	padding: 3%;
	margin-right: 1%;
}
.newsletter button{
	width: 29%;
	padding: 3%;
	margin-top: 0;
}
.newsletter h2{
	font-size: 1.8em;
}
.newsletter h3{
	font-size: 1.2em;
}
.splitRodape{
	width: 48%;
	margin-right: 2%;
	margin-bottom: 0;
}
.splitRodapeNoticias{
	margin-top: 0;
}
}
/*===================Medium Devices- tablets==============*/
@media screen and (min-width: 875px){
.btn-menu{
	margin: 0;
}
.bannerServicos{
	height: 400px;
	padding: 70px 20px 70px 20px;
}
.titleServices h2{
	font-size: 6.0em;
}
.newsletter input{
	width: 60%;
	padding: 2%;
	float: none;
	margin-right: 1%;
}
.newsletter button{
	width: 30%;
	padding: 2%;
	float: none;
}
.reservar{
	margin-bottom: 1%;
}
.reservar button{
	width: 50%;
	padding: 3%;
}
.rodape{
	padding-bottom: 0;
}
.copyrigth{
	padding: 0px;
	margin-top: 0;
}
}
/*==================Transitions devices====================*/
@media screen and (min-width: 1010px){
.splitRodape{
	width: 31%;
	text-align: center;
	margin-right: 2%;
	margin-bottom: 0;
	margin-top: 0;
}
.splitRodapeNoticias{
	width: 31%;
	margin-top: 0;
}
.horarioAtendimento {
	margin-left: 6%;
}
}
/*==================Transitions devices 2====================*/
@media screen and (min-width: 1090px){
.whats{
	display: none;
}
.whatsLarge{
	display: block;
	font-size: 0.8em;
}
.whatsLarge p{
	text-align: center;
	margin-left: 10%;
}
.whatsLarge:hover{
	opacity: 1;
	background-color: #2F4F4F;
}
.whatsLarge a:hover{
	text-decoration: none;
}
.iconeWhats{
	font-size: 3.1em;
}
.search{
    justify-content: space-between;
}
.search2{
    justify-content: flex-end;
}
.three{
    display: flex;
    justify-content: flex-start;
    width:50%;
    padding-left: 6%;
}
.inicio{
    display: block;
    margin-top: 8%;
    float:left;
    margin-right:5px;
}
.pesquisar{
    width: 30%;
    margin-top: 5%;
    float:right;
    margin:2%;
}
.pagina{
    display: flex;
    float: left;
}
.postagens{
    width: 100%;
    margin-left: 5%;
}
.post{
    display: flex;
    width: 96%;
}
.categorias{
    display: block;
    width: 34%;
    height: 100%;
    background-color: #fff;
    padding: 1%;
    margin-top: 1.1%;
    margin-right: 2%;
}
.horarioAtendimento {
	margin-left: 11%;
}
}
/*==================Transitions devices 3====================*/
@media screen and (min-width: 1190px){
.entrarContato{
	display: none;
}
.telefonesCabecalho{
	display: block;
	line-height: 20px;
}
.btn-menu{
	display: none;
}
.btn-close{
	display: none;
}
.menu{
	width: auto;
	margin-right: 1%;
	margin-top: 15px;
	background-color: transparent;
	display: block !important;
	position: static;
}
.menu li{
	padding: 0;
	float: left;
}
.menu li a{
	color: #fff;
	font-size: 1em;
	padding: 15px;
}
.menu li a:hover{
	text-decoration: none;
	border: none;
	color: #00FF7F;
}
.btn-agendarMenu{
	font-size: 1em;
	margin-top: -28px;
	height: 80px;
	color: #fff;
	padding: 1.5% 3%;
	white-space: nowrap;
	background-color: #8FBC8F;
}
.btn-agendarMenu:hover{
	background-color: #006400;
}
}
/*==================Widescreen====================*/
@media screen and (min-width: 1290px){
.centralizar img{
	width: 30%;
}
.horarioAtendimento {
	margin-left: 15%;
}
}