*{
	box-sizing: border-box;
}

body{
	margin: 0;
}

.navbar{
	display: flex;
	flex-flow: row wrap;
	height: 150px;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	background: white;
}

.logo{
	max-width: 60%;
	flex:20%;
	margin-left: 10%;
	text-align: left;
}

.menu{
	flex: 70%;
	text-align: right;
	padding: 30px;
}

.menu a{
	color: #180F4A;
	text-decoration: none;
	font-size: 20px;
	padding: 20px 16px;
}

.menu a:hover{
	color: dodgerblue;
	border-top: 4px solid #180F4A;
}

#botao{
	background: #180F4A;
	padding: 10px 25px;
	color: white;
	border-radius: 5px;
	margin-right: 10%;
	margin-left: 5%;
}

#botao:hover{
	border: none;
	background: dodgerblue;
}

.header{
	display: flex;
	flex-flow: row wrap;
	height: auto;
	background: white;
	justify-content: center;
	align-items: center;
	padding-top: 150px;
}

.headline{
	flex: 40%;
	margin-left: 10%;
}

.headline h2{
	font-family: Garamond;
	font-weight: 900;
	font-size: 20px;
	color: #180F4A;
	padding: 0;
	margin: 0;
}

.headline p{
	text-align: left;
}

.contact-btn{
	display: inline-block;
	background: #180F4A;
	padding: 20px;
	color: white;
	text-transform: uppercase;
	border-radius: 5px;
	text-decoration: none;
}

.contact-btn:hover{
	background: dodgerblue;
}

.img-headline{
	flex: 40%;
	margin-right: 10%;
	text-align: center;
}

section{
	display: inline-block;
	margin-top: 80px;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
	padding: 5%;
}

section h2{
	width: 100%;
	font-size: 50px;
	margin: 0;
	font-family: Garamond;
	font-weight: bold;
	color: #180F4A;
}

.servicos{
	display: inline-block;
	margin-top: 5%;
}

.card{
	display: inline-block;
	width: 30%;
	padding: 20px;
	margin: 1%;
	border: 1px solid #180F4A;
	border-radius: 10px;
	cursor: pointer;
}

.texto-oculto{
	display: none;
}

.texto-oculto li{
	text-align: left;
	padding: 10px;
	font-family: cursive;
	font-size: 16;
}

.card:hover{
	background: #153C5C;
	color: White;
	padding: 60px 60px 60px 10px;
}

.card:hover img{
	display: none;
}

.card:hover .card-text{
	display: none;
}

.card:hover .texto-oculto{
	display: block;
}

footer{
	margin-top: 100px;
	height: 120px;
	background-image:linear-gradient(180deg, #153C5C, #1D5380);
	text-align: center;
	border-top: 5px solid #180F4A;
}

.whatsapp{
	position: fixed;
	bottom: 15px;
	right: 15px;
	height: 60px;
}