.initial_container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: var(--cinza-escuro);
	padding: 5vh 0vw;
}

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

.initial_left > h1 {
	text-align: center;
	color: var(--white);
	font-size: 5.5em;
	font-weight: 400;
	margin-bottom: .5em;
	position: relative;
	z-index: 2;
}

.initial_left > a button {
	font-weight: 200;
	color: var(--white);
	background-color: var(--vermelho-vinho);
	padding: 20px 40px;
	border-radius: 16px;
	font-size: 1.5em;
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.initial_right > img {
	width: 70%;
	position: relative;
	z-index: 2;
}

@media (max-width: 1000px) {
	.initial_right img { 
		display: none; 
	}
	.initial_container {
		display: block;
	}
	.initial_left > h1 {
		font-size: 4em;
	}
	.initial_left > a button {
		padding: 15px 20px;
		border-radius: 16px;
		font-size: 1.2em;
	}
	.initial_left, .initial_right {
		width: 100%;
	}
}

@media (max-width: 428px) {
	.initial_left > a {
		width: 70%;
	}
}