body{
 font-family:arial, sans-serif;
 background-color: #f4f4f4;
 display:flex;
 min-height:100vh;
 margin:0px;
 justify-content:center;
 align-items:center;
}
.card{
	color: solid white;
	max-width: 500px;
	width: 100%;
	padding:24px;
	margin:10px;
	border-radius:12px;
	box-shadow:0 4px 15px rgba(0, 0, 0, 0.1);
	text-align:center;
}
.foto{
	border-radius: 50%;
	border-color:#4a90e2;
	margin-bottom: 20px;
	width:120px;
	height: 120px;
	object-fit:cover;
}
.nome{
	color:#333333;
	font-size:1.5rem;
	margin-bottom:4px;
}
.cargo{
	color:#4a90e2;
	text-decoration:bold;
	font-size:1.30rem;
	text-transform:uppercase;
	letter-spacing:0.05rem;
	margin-bottom:14px;
	}
.bio{
	color:#666666;
	font-size:1rem;
	line-height:1.5;
	margin-bottom:20px;
}
.links{
	display:flex;
	justify-content:center;
	gap:10px;
}
.botao{
	background:#4a90e2;
	color: #ffffff;
	transition:background-color 1s ease;
}
.botao:hover{
	background-color:#357abd;
}