*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #f6b0ce;
	align-items: center;
	text-align: center;
	
}
h1 {
	color: #f6b0ce;
}
.container {
	max-width: 500px;
	margin: 10px auto;
	background-color: white;
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
	border-radius: 10px;
}
.link {
	display: flex;
	flex-direction: row;
	background: #5ebbd6;
	margin: 10px auto;
	padding: 5px;
	max-width: 280px;
	border-radius: 10px;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	transition: 0.3s;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.link:hover {
	background-color: #f6b0ce;
	color: white;
}
.avatar {
	width: 100%;
	max-width: 300px; /* tamanho máximo visível */
	height: auto;
	border-radius: 20%;
	margin: 0 auto 20px;
	display: block;
}

.imagem {
	display: flex;
	flex-direction: row;
}
.card{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}

p{
	color: #5ebbd6;
	padding: 0 5px;
}

.principal {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.topo{
		max-width: 500px;
	margin: 10px auto;
	background-color: white;
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
}
h2 {
	color:#5ebbd6;
	padding: 5px;
}

.map-container {
	max-width: 500px;
	margin: 10px auto;
	background-color: white;
	padding: 10px;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (max-width: 600px) {
	.container,
	.map-container {
		flex-direction: column;
	}

	h1 {
		font-size: 1.5rem;
	}
	.topo {
		max-width: 320px
	}
}

