*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    color: #fff;
}

html{
    font-size: 100%;
}
body{
  /* #004e8d */
    background: #004e8d; 
    height: 100vh;
}
/* INICIO HEADER */
header{
  position: relative;
	padding: 0.8rem 10%;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	background: #004e8dda;
	justify-content: space-between;
}

/* LOGO */
header img{
  height: 8vh;
}
/* CONTATO - LGPD */
header .navbar a{
  font-size: 1.1rem;
  margin: 1rem;
  text-transform: uppercase;
}
/* ICONES DO CONTATO - LGDP */
header .navbar i{
  display: contents;
}
/* HOVER DO CONTATO - LGDP */

/* INICIO DOS CARDS */
.container .operacao{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  padding: 10px;
}

.container .card{
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border-radius: 10px;
  transition: 0.3s;
  padding: 10px;
  height: 240px;
  width: 190px;
  margin: 10px;
  background: #002849;
}
.container h2{
  margin: 10px;
  text-align: center;
  background: #002849;
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.7);
}
.container .card img{
  width: 160px;
  border-radius: 5px;
}
.container .card .text{
  padding: 5px 16px;
  font-size: 15px;
}
.container .text i{
  font-size: 12px;
  padding: 10px;
  transition: 1s;
}
.container .text i:hover{
  color: #0067bb;
}
.container .card:hover{
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
}

/* FOOTER  */
.footer{
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
  padding: 10px;
  background: #0067bb98;
}

