:root{

	--azul: #0D5382;
	--anil:#0097A2;
	--cinza:#6D6E71;
}



*{
	padding: 0;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
}

a{
	text-decoration: none;
	color: inherit;
}

body{
	background-color: #F5FBFC;
}

.conversion > *{
	pointer-events: none;
}

.safe{
	max-width: 1000px;
	margin:0 auto;
}

.top-header{
	background-color: white;
	padding: 10px 0px;
}

.top-header a *{
	vertical-align: middle;
	
}

.top-header a{
	color: var(--anil);
	margin-right: 20px;
}

.main-header{
	background-color: var(--azul);
	padding: 10px 0px;
}

.main-header > div{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

nav{
	display: flex;
	color: white;
	justify-content: space-between;
	align-items: baseline;
}

nav p{
	margin-right: 8px;
	cursor: pointer;
	position: relative;
}

nav p:after{
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	background-color: white;
	left: 0;
	bottom: -5px;
	transition: width 0.5s;
}

nav p:hover:after{
	width: 100%;
}

nav .cta{
	border:50px;
	background-color: white;
	color: var(--azul);
	font-weight: bold;
	padding: 10px 25px;
	border-radius: 5px;
	border-bottom-left-radius: 20px;
}

nav button{
	display: none;
}

.hamb-con{
	border-radius: 10px;
	border: 1px solid white;
	width: 40px;
	height: 40px;
	cursor:pointer;
	padding: 8px;
	
	flex-direction: column;
	box-sizing: border-box;
	justify-content: space-between;
	display: none;
}

.hamb-con p{
	width: 100%;
	height: 2px;
	background-color: white;
}

.main-header button{
	display: none;
}

.hero-con{
	overflow: hidden;
}

.hero {
	max-width: 1000px;
	margin: 0 auto;
	height:auto;
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero > img{
	width: 100vw;

}

.hero-inner{
		position: absolute;
		left: 0;
		padding: 10px;
		color: white;
	}

.hero-inner h1{
	font-size: 30px;
}


.hero-inner > a{
	background-color: white;
	font-size: 15px;
	border: 1px solid white;
	border-radius: 10px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	color: var(--anil);
	max-width: 250px;
}

.hero-inner > a img{
	margin-right: 10px;
}

.difs-con{
	position: relative;
	top: -20px;
	z-index: 2;
	display: flex;
	justify-content: space-around;
}

.dif{
	border-radius:10px;
	justify-content: center;
	flex-direction: column;
	padding: 15px 20px;
	text-align: center;
	background-color: white;
	width: 200px;
	height: 175px;
	overflow: hidden;
	background-image: url("images/Logo_favicon.png");
	background-size: 100px;
	background-repeat: no-repeat;
	background-position: -8px 121px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dif hr{
	border: 1px solid var(--anil);
}

.dif h1{
	color: var(--azul);
	text-align: center;
	font-size: 21px;
}

.dif img{
	margin:0 auto;
	margin-top: 20px;
	display: block;
	text-align: center;
}

.services-con{
	display: flex;
	margin-top: 30px;
	align-items: center;
	justify-content: center;
}

.servicos{
	max-width: 477px;
	width: 100%;
	padding: 15px 15px;
	overflow: hidden;
	border-radius: 10px;
	background-image: url("images/bg_servicos.jpg");
}

.servs-tag{
	background-color: var(--anil);
	color: white;
	border-radius: 5px;
	padding: 5px 10px;
	display: inline-block;
}

.servs-car{
	margin-top: 20px;
	padding-right: 100px;
}

.servs-car h1{
	color: white;
}

.servs-car hr{
	width: 50px;
	height: 3px;
	background-color: white;
}

.servs-car p{
	margin-top: 15px;
	color: white;
}

.servs-car button{
	padding: 10px 20px;
	color: white;
	background-color: transparent;
	cursor:pointer;
	margin-top: 10px;
	border: 1px solid white;
	border-radius: 10px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s;
}

.servs-car button:hover{
	background-color: white;
	color: var(--azul);
}

.grand-cta{
	max-width: 477px;
	position: relative;
	z-index: 2;
	left:-30px;
	width: 100%;
	height: 185px;
	border-radius: 10px;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("images/bg_grand_cta.jpg");
}

.grand-cta > img{
	height: 260px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}

.grand-cta div{
	padding: 20px 210px 10px 25px;
	font-size: 25px;
	color: white;
}

.grand-cta div a{
	font-size: 15px;
	border: 1px solid white;
	border-radius: 10px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 10px;
	display: flex;
	cursor: pointer;
}

.grand-cta div a:hover{
	background-color: white;
	color: var(--azul);
}

.grand-cta div a >*{
	pointer-events: none;
}

.grand-cta div img{
	margin-right: 10px;
}

.especs-con{
	margin: 0 auto;
	margin-top: 40px;
	display: flex;
	align-items: flex-start;
}

.especs-panel{
	background-color: var(--anil);
	padding: 20px 90px 20px 20px;
	display: inline-block;
	border-radius: 10px;
	border-bottom-left-radius: 25px;
	color: white;
	position: relative;
	left: 115px;
}

.especs-panel > p{
	margin-top: 20px;
}

.especs-panel > a{ 
	background-color: white;
	font-size: 15px;
	border: 1px solid white;
	border-radius: 10px;
	border-bottom-left-radius: 20px;
	transition: all 0.5s;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	cursor: pointer;
	color: var(--anil);
}

.especs-list{
 	margin-top: 20px;
 	display: flex;
 	flex-wrap: wrap;
 	position: relative;
 	left: -20px;
 	justify-content: center;
}

.espec{
 	vertical-align: inherit;
 	padding: 15px 25px;
 	background-color: white;
 	border-radius: 10px;
 	border-bottom-left-radius:24px;
 	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 	color: var(--azul);
 	margin-bottom: 15px;
 	margin-right: 15px;
 	width: 190px;
 	text-align: center;
 	transition: all 0.5s;
}

.espec:hover{
 	background-color: var(--azul);
 	color: white;
}

.espec:hover img{
 	filter: brightness(0) invert(1);
}

.espec:last-of-type{
 	background-color:#BCBEC0 ;
 	color: white;
 	font-weight:bold;
}

 .exames-con{
 	margin-left: 24vw;
 	margin-top: 40px;
 	display: flex;
 	justify-content: flex-end;
 }

 .exames-title{
  	width: 300px;
  	margin-right: 40px;
  }

 .exames-title h1{
 	color: var(--azul);
 	margin-bottom: 10px;
 }

 .exames-title p{
 	color: var(--cinza);
 }

 .exames-car{
 	border-top-left-radius: 10px;
 	border-bottom-left-radius: 10px;
 	background-color: var(--anil);
 	padding: 20px;
 }

 .exames-wrapper{
 	position: relative;
 	left:-50px;
 	display: flex;
 }

 .exame{
 	background-color: white;
 	padding: 25px 20px 25px 30px;
 	border-radius: 10px;
 	width: 200px;
 	position: relative;
 	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
 	vertical-align: middle;
 	margin-right: 15px;
 }

  .exame h2{
  	color: var(--azul);
  	position: relative;
  }

.exame h2:after{
	content:"";
	background-image: url("images/double_stamp.png");
	background-size: cover;
	width: 50px;
	height: 50px;
	position: absolute;
	top: -26px;
}

.exame h2:before{
	content:"";
	background-image: url("images/single_stamp.png");
	background-size: cover;
	width: 27px;
	height: 27px;
	position: absolute;
	top: 18px;
	left: -22px;
}

.exame > p{
	margin-top: 20px;
	color: var(--cinza);
}

.exames-cta{
	background-color: var(--azul);
	border-radius: 7px;
	border-bottom-left-radius: 20px;
	padding: 10px 15px;
	display: flex;
	color: white;
	margin-top: 20px;
	align-items: center;
	justify-content: space-between;
}

.exames-cta img{
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}

.unidades-con{
	margin-top: 35px;
}

.unidades{
	padding: 10px 0px;
	/*
	background-color: var(--anil);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	*/
}

.unidades-con h1{
	text-align:center;
	font-style:italic;
	font-size: 60px;
	color: var(--cinza);
}

.unids-car{
	display: flex;
	margin-left: 20px;
}

.unidade{
	display: flex;
	align-items: center;
	margin-right: 15px;
}

.unidade > img{
	border-radius: 10px;
	overflow: hidden;
	margin-right: 30px;
	width: 400px;
	height: auto;
	z-index: 4;
	cursor: pointer;
	position: relative;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.unidade h2{
	font-style: italic;
	font-size: 32px;
	color: var(--azul);
	margin-bottom: 10px;
}

.unidade-info {
	display: none;
}

.unidade-info div{
	display: flex;
	margin-top: 15px;
}

.unidade-info a, .unidade-info p{
	color: var(--azul);

}


.about-con{
	margin-top: 70px;
}

.about-text h1{
	font-style: italic;
	position: relative;
	font-size: 70px;
	color: var(--azul);
}

.about-text h1:after{
	content:"";
	background-image: url("images/double_stamp.png");
	background-size: cover;
	width: 70px;
	height: 70px;
	position: absolute;
	top: -26px;
	left: 190px;
}

.floating-elements{
	position: fixed;
	z-index:9;
	bottom:50px;
	right: 27px;
	text-align: right;
	bottom:90px;
	
}

.wpp-floating{
  cursor: pointer;
  /*box-shadow:0px 5px 15px -3px #00000078;*/
  box-shadow:0 0 0 0 rgba(122, 237, 148, 0.29);
  overflow: hidden;
  border-radius: 100%;
  width:57px;
  height: 57px;
  display: block;
  pointer-events: initial;
  animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
}

.wpp-floating img{
	display: block;
	margin:-2px -3px;
}

@keyframes pulso{
	100%{
		box-shadow:0 0 0 45px rgba(232, 76, 61, 0);
	}
}

footer{
	background-color:var(--azul);
	padding: 10px 0px;
	color: white;
	margin-top: 20px;
	text-align: center;
}

@media only screen and (max-width:1000px){


	.safe{

	}

	header{
		    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    right: 0;
	}

	.main-header{
		padding: 0px 5px;
	}

	.hamb-con{
		display: flex;
	}

	.main-header button{
		display: initial;
	}

	nav{
		display: none;
		position: fixed;
		top: 0;
		background-color: white;
		height: 100vh;
		z-index: 10;
		text-align: center;
		width: 100%;
		padding: 0px 20px;
		box-sizing: border-box;

	}

	nav button{
		display: initial;
		margin-top: 20px;
		border-radius: 5px;
		padding: 10px 25px;
		background-color:#e74c3c;
		color: white;
		border: none;
		cursor: pointer;
	}

	nav p{
		color: var(--azul);
		margin: 10px 0px;
		display: block;
		border-radius: 5px;
		background-color: transparent;
		border-radius: 10px;
		border:1px solid var(--azul);
		color: var(--azul);
		padding: 10px 20px;

	}

	nav .cta{
		margin-top: 20px;
    	display: inline-block;
    	color: white;
    	background-color: var(--azul);
	}

	.hero-con{
		margin-top: 115px;
	}

	.hero{
		height: 200px;
		overflow: hidden;
	}

	.hero > img{
		width: initial;
		height: 100%;
	}

	
	.difs-con{
		flex-direction: column;
		align-items: center;
	}

	.dif{
		margin-bottom: 20px;
	}

	.services-con{
		flex-direction: column;
		padding: 0px 5px;
	}

	.servicos{
		box-sizing: border-box;
	}

	.grand-cta{
		left: initial;
		height: initial;
	}

	.grand-cta img{
		display: NONE;
	}

	.grand-cta div{
		padding: 20px 25px;
	}

	.especs-con{
		padding: 0px 5px;
		display: flex;
		flex-direction: column;
	}

	.especs-panel{
		left: 0;
		padding: 20px;
	}

	.especs-list{
		left: 0px;
	}

	.exames-con{
		flex-direction: column;
		margin-left: 0px;
		padding: 0px 5px;
	}

	.exames-car{
		border-radius: 10px;
		position: relative;
		top: 81px;
	}

	.exame{
		margin:0 auto;
		margin-bottom: 20px;
		margin-right: auto;
		margin-left: auto;
	}

	.exames-wrapper{
		left: initial;
		top: -83px;
		flex-wrap: wrap;
		text-align: center;
		height: 600px;
	}

	.unidades-con{
		margin-top:165px ;
	}

	.unidades{
		padding: 0px 5px;
	}

	.unids-car{
		flex-direction: column;
		margin-left: 0px;
	}

	.unidade {
		margin-right: 0px;
		margin-bottom: 15px;
		flex-direction: column;
	}

	.unidade > img{
		margin-right: 0px;
		width: 100%;
	}

}