.boxCorretora {
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin: 2rem 0;
}

.corretoraImg {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.corretoraImg img {
	width: 75%;
	border-radius: 10px;
	border: 2px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.corretoraTxt {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.corretoraTxt h2 {
	font-family: var(--titulo-font);
	justify-content: center;
	font-size: 1.8rem;
}

.corretoraTxt p {
	font-family: var(--paragrafo-font);
	font-size: 1rem;
	padding: 1rem;
	line-height: 1.5;
}

.corretoraTxt button {
	padding: .5rem;
	font-family: var(--paragrafo-font);
	font-size: 1.25rem;
	border: 2px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	color: var(--azul-escuro);
	background-color: #fff;
	margin-top: 1rem;
}

.container {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	width: 80%;
	margin: 50px auto;
	align-items: center;
}

.sidebar {
	display: flex;
	flex-direction: column;
}

.sidebar button {
	background-color: var(--azul-secundario);
	font-family: var(--titulo-font);
	color: white;
	border-radius: 10px;
	border: 2px solid #ccc;
	padding: 15px;
	text-align: left;
	cursor: pointer;
	margin: 5px 0;
	font-size: 1.1rem;
	transition: background 0.3s;
}

.sidebar button.active {
	background-color: var(--azul-escuro);
}

.sidebar button:hover {
	background-color: var(--azul-escuro);
}

.content {
	background-color: #fff;
	color: var(--azul-escuro);
	padding: 20px;
	border-radius: 10px;
	border: 2px solid #ccc;
	display: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content.active {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}



.paragrafo_servicos {
	font-family: var(--paragrafo-font);
	font-size: 1rem;
	margin-bottom: 1rem;
	line-height: 1.8rem;
	color: black;
}

@media (max-width: 720px) {

	.container {
		display: flex;
		flex-direction: column;
	}

	.sidebar {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.boxCorretora {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.corretoraTxt p {
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.corretoraTxt {
		width: 75%;
	}

	.corretoraImg img {
		width: 85%;
		margin-top: 2rem;
	}

}

@media (max-width: 420px) {

	.corretoraImg {
		width: 90%;
	}

	.corretoraImg img {
		width: 100%;
		margin-top: 4rem;
	}

}