@charset "utf-8";
/* CSS Document */
/*RESET*/
*{
	margin: 0;
	padding: 0;
	font-size: 100%;
    border: none;
    outline: none;
    box-sizing: inherit; /*Quando usar o padding não altera o tamanho */
  font-weight: 300;
	font-family: 'Palanquin Dark', sans-serif;
}
a{text-decoration: none;}
ul{ list-style: none;}

/*CABEÇALHO*/
.cabecalho{
	background-image: url(../img/sitee.png);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}

.logo{ /*Logo do cabeçalho*/
   width: 400px;
    height: 400px;
		float: left;
		top: 0;
    background: url(../img/../img/logo.png) -70% -70%/400px no-repeat;
    font-size: 0;
}
.hbottom{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.titulo{
	width: 50%;
	padding-left: 2%;
	text-align: center;
}
.titulo h2{
	margin-bottom: 2%;
	font-size: 2.5em;
	width: 100%;
}
.titulo h3{
	margin: 2%;
	width: 80%;
	margin-left: 10%;
	font-size: 1.5em;
}
.atendimento{
	text-align: center;
	color: #fff;
	width: 30%;
	margin-bottom: 2%;
	background-color: rgba(93,143,144,.7);
}
.atendimento h3{
	padding: 3%;
	font-size: 1.4em;
}
.atendimento p{ margin: 2%; }
.atend{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
p .dia{
	width: 60%;
	margin-left: 5%;
	margin-right: 30%;
	text-align: left;
}
p .horario{
	width: 30%;
	text-align: right;
}
.telefones{
	display: flex;
	flex-wrap: wrap;
	margin: 3%;
	justify-content: center;
}
.tel,.cel{margin: 3%;}
/*Butãos mobile*/
.btn-menu,.btnclose{
	display: none;
}
.linhag{
	width: 90%;
	height: 2px;
	margin-left: 5%;
	background-color: aqua;
}
.linha{
	width: 90%;
	height: 1px;
	margin-left: 5%;
	background-color: black;
}
/*Menu*/
.menu{
    		top: 0;
    		left: 0;
 				width: auto;
        height: 56px;
        line-height: 56px;
        float: right;
        display: block;
        position: static;
    }
    .menu li{
        padding: 0;
        float: left;
    }
    .menu li a{
        color: #130400;
        font-size: 1.2em;
        padding: 10px;
    }
    .menu li a:hover{
        border: none;
        color: #da6709; 
    }

/*SOBRE*/
.sobre{
	text-align: center;
	justify-content: center;
	background-color: #fff;
}
.sobre h2{
	margin: 2%;
	margin-bottom: 1%;
	font-size: 2.0em;
}

.sobre p{
	padding: 2%;
	padding-top: 0;
	width: 60%;
	margin-left: 20%;
	font-size: 1.5em;
}

.convenios{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.tconvenios{
	text-align: center;
	color: #130400;
	 margin: 2%;
	font-size: 2.0em;
}
.convenios img{
	width: 25%;
	height: 50%;
	margin: 2%;
}

/*SLIDER*/
.gallery-container {
  width: 70%;
  position: relative;
	margin: 0 15%;
  background: #333;
}
 .texto_galeria{
	text-align: center;
	color: #130400;
	 margin: 2%;
	font-size: 2.0em;
}
/* escodendo imagens*/
.slide {
  display: none;
}

/* botãos proximo e antigo */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0,0,0,0.1);
}

/* posição do botão proximo para a direita */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* ao passar o mouse terá um plano de fundo */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
/*Imagem do slide*/
.imgslide {
  width: 100%;
	height: 50%;
}

/* numeros de fotos(1/3 etc) */
.numero {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .numero {
    top: 15px;
  }
	.gallery-container{
		width: 100%;
		margin: 0;
	}
	.tconvenios{
		font-size: 1.5em;
	}
}

 /*Animação de opacidade*/
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade { /*Animação de opacidade*/
  from {opacity: .4}
  to {opacity: 1}
}

/*RODAPE*/
footer{
	background-color: rgb(116, 175,212);
	color: #fff;
	display: flex;
	flex-wrap: wrap;
}
.copy{
	font-size: 1.5em;
	width: 100%;
	color: #fff;
	background-color: rgb(100,147,177);
	text-align: center;
}
.copy a{
	color: #fff;
}
.copy a:hover{
	text-decoration: underline;
}
.inf{
	float: left;
	width: 50%;
	margin-left: 2%;
}
.inf h3{
	font-size: 1.5em;
	margin: 4% 2%;
}
.inf h4{
	font-size: 1.0em;
	margin: 3%;
}
.inf a{
	font-size: 1.5em;
    color: rgba(255, 255, 255, 0.7);
    margin: 3%;
		text-align: center
}

.inf a:hover{ color: rgba(255, 255, 255, 1.0); }
.comochegar{
	width: 45%;
}
.comochegar h3{
	font-size: 1.5em;
	margin: 2%;
}
iframe{
	width: 100%;
	height: 80%;
}

/*ANCORA*/
.ancora{
	position: fixed;
	padding: 0 1%;
	bottom: 0;
	right: 0;
	opacity: 0.7;
	margin-right: 0.6%;
	font-size: 2.0em;
}
.ancora:hover{
	opacity: 1.0;
}
.fa-arrow-up{
	color: red;
}

@media screen and (max-width : 950px){
	.logo{
		width: 220px;
		height: 250px;
		background-position: 0% -60%;
		background-size: 250px;
	}
	.menu a{
		font-size: 1.0em;
		padding-right: 1%;
	}
	.titulo h2{
		font-size: 2.0em;
	}
	.titulo h3{
		font-size: 1.0em;
	}
	.atendimento{
		width: 35%;
	}
	.sobre p{
		width: 60%;
		margin-left: 20%;
	}

	.copy{
		font-size: 1.0em
	}
}
@media screen and (max-width : 700px){
	.btn-menu{  /*Botão do menu*/
		width: 56px;
		height: 56px;
		margin: 2%;
		float: right;
		display: block;
		text-align: center;
		color: #fff;
		border-radius: 56px;
		cursor: pointer;
		background: linear-gradient(to right, #ce2e3c, rgb(243, 146, 0));
	}

	nav.menu{
		display: none;
		width: 100%;
		height: 100%;
		position: fixed;
		background-color: rgba(0, 0, 0, 0.9);
		top: 0;
		left: 0;
	}

	.btnclose{ /*Botão de fechar o menu*/
	color: #fff;
	display: block;
    float: right;
    cursor: pointer;
    margin: 2% 3% 0 0;
}
.btnclose i{
	font-size: 1.5em;
}
	.menu li{ padding: 1.5%;width: 100%; }
	.menu li a{
		font-size: 1.5em;
		color: #fff;
		padding: 1.5%; 
	}
	.menu li a:hover{
		text-decoration: #ce2e3c;
	}
	.titulo{
		width: 100%;
	}
	.atendimento{
		width: 60%;
	}
	.sobre p{
		width: 90%;
		margin-left: 5%;
	}
	.inf{
		width: 90%;
		text-align: center;
		margin-right: 5%; 
		float:none; 
	}
	.comochegar{
		text-align: center;
		width: 80%;
		margin-left: 10%;
	}
	iframe{
		height: 70%;
	}
}
@media screen and (max-width : 480px){
	.atendimento{
		width: 90%;
		margin-left: 5%;
	}
	.sobre p{
		width: 90%;
		margin-left: 5%;
	}
	.sobre p{
		font-size: 1.2em;
	}
}
.copy{
	font-size: 1.1em;
}
.copy i{
	display: none;
}