@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

html, body{
	width: 100%;
	height: auto;
	overflow-x: hidden;
}




a{
	text-decoration: none;
}

header {
    background-color: #175c05;
    box-shadow: 0px 3px 10px #464646;



}





.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 8rem 0.1rem 8rem;
    
   
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 130px;
    height: auto;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
}

.nav-link{
    text-decoration: none;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 500;
}

.nav-link:hover{
	color: #32c932;
}



.agenda-button button {
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #32c932;
}

.agenda-button button a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
}



.endereco{
	display: flex;
	align-items: center;
	justify-content: center;
	background:#32c932 ;
	gap: 150px;
	padding: 0.5rem 2rem;
	width: 100%;
	position: fixed;
	z-index: 100;
	margin-bottom: 100px;
}

.info-mobile{
	display: none;

}
.info-top{
	width: 100%;
	height: auto;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 8px;

	
}




.info-top > i{
	color:#175c05 ;
	font-size: 20px;
}

.info-top > i:hover{
	color: #00ff1e;
}

.icons-social{
	width: 20%;
	height: auto;
	font-size: 25px;
	display: flex;
	align-items: center;
	gap: 8px;

}

.icons-social > a{
	background: #175c05;
	border-radius: 100%;
}

.icons-social > a > i{
	padding: 10px;
	color: #ffffff;
}

.icons-social > a:hover{
	background: #00ff1e ;
	font-size: 40px;
}





.btn-agendar > a{
	background: #175c05;
	padding: 10px 25px;
	color: #ffffff;
	border: none;
	border-radius: 20px;
	font-size: 20px;
}

.btn-agendar > a:hover{
	background: #00ff1e;
	color: #fff;
}


.banner-fixo{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 25px;
}


.banner-fixo-hero{
	width: 100%;
	height: auto;
}

.banner-fixo-hero img{
	width: 100%;
	height: 400px;
	object-position: center;
	object-fit: cover;


}



.secao-sobre{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	margin: 100px auto;
	
}

.info-sobre{
	margin-top: -50px;
	width: 700px;

}

.secao-sobre h3{
	font-size: 50px;
	font-weight: 800;
	color: #175c05 ;
	

}

.secao-sobre p{
	font-size: 20px;
	font-weight: 300;
	color: #000000 ;
	text-align: left;
	
	
	
}


.img-sobre{
	width: 300px;
	margin-right: 150px;
}

.secao-sobre img{
	width: 400px;
	height: 400px;
	border-radius: 12px;
	margin-top: -50px;
}

.btn-sobre{
	background: #175c05;
	border: none;
	border-radius: 20px;
	text-align: center;
	margin-top: 25px;
	padding: 10px;
	width: 250px;

}

.btn-sobre > a{
	color: #fff;
	font-size: 20px;

}

.btn-sobre:hover{
	background: #00ff1e;
	color: #fff;
}

.especialidades{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: #dbd7d7;
	padding: 30px;
	
	
}

.cards{
	background: #f7f7f7;
	padding: 20px;
	display: flex;
	flex-direction: column;
	


}

.cards h2{
	color: #175c05;
}




.card-esp{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	margin-bottom: -20px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.17);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.17);
	padding: 5px;
	border-bottom: 8px solid #32c932;
	width: 100%;



}

.card-esp .card-esp-header{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20%;
	margin-right: 20px;
}

.card-esp-header img{
	width: 80px;
	margin-left: 15px;
}

.card-esp-body{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin-left: 15px;
}

.card-esp-body h5{
	text-align: left;
	width: 100%;
	font-weight: 700;
	color: #175c05 ;
}

.card-esp-body p{
	text-align: left;


}

.sub-banner{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 70px auto;

}

.sub-banner img{
	width: 100%;
	height: 350px;
	position: absolute;
	object-position: center;
}

.sub-banner h4{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 50px;
	text-align: center;
	max-width: 1200px;
	color: #fff;
	font-weight: 800;
}

.depoimentos{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin:150px 0 50px 0;
}

.depoimentos h4{
	font-size: 50px;
	color: #175c05 ;
	font-weight: 900;

}

.depoimentos img{
	width: 100%;
	
}

.contatos{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	flex-direction: column;
	padding: 30px;

}

.contatos h4{
	font-size: 50px;
	color: #175c05 ;
	font-weight: 900;
	margin-bottom: 40px;
}

.contatos .info-contatos{
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-direction: column;

}

.contatos .info-contatos h6{
	font-size: 25px;
	text-align: left;
	width: 650px;
	margin-bottom: 30px;
}

.info-contatos span{
	text-align: left;
	font-size: 25px;
	color:  #175c05 ;
}

.info-contatos i{
	font-size: 25px;
	margin-right: 12px;
	color:  #175c05 ;
}

.info-contatos i:hover{
	color: #05e308;
	font-size: 30px;
}

.mapa{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.17);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.17);
	padding: 5px;
}

footer{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 100%;
	height: auto;
	background: #175c05 ;
	padding: 40px;
	


}

footer .f1{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	width: 100%;
	

}

footer .fi > h5{
	
	font-size: 25px;
}


footer .f1 a{
	color: white;
	background: #fff ;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;

}

footer .f1 a:hover{
	background: #fff ;
	font-size: 40px;
}


footer .f1 a > i{
	padding: 10px;
	display: flex;
	color:#00ff1e ;
	align-items: center;
	justify-content: center;
}

.icons-social-footer{

	width: 100%;
	height: auto;
	font-size: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

}

footer .f2{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 100%;
	

}

footer .f2 > span{
	font-size: 25px;
	font-weight: 700;
}

footer .f2 > h6{
	font-size: 16px;
	font-weight: 700;
}


footer .f3{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
	width: 100%;


}

footer .f3 > span{

	font-size: 16px;
	font-weight: 700;

}

footer .f3 > a> h4{
	font-size: 18px;
	font-weight: 700;
}

footer .f3 > a{
	color: #fff;
	font-size: 16px;
}
