main{
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.banner{
	width: 100%;
	position: relative;
}
.banner .container{
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	gap: 50px 30px;
	padding: 0 50px;
}	
.banner .container .texto{
	max-width: 450px;
	width: 100%;
	gap: 20px;
}
.banner .container .texto h2,
.banner .container .texto h2 span{
	font-size: 48px;
	font-weight: 800;
}
.banner .container .texto h2{
	color: var(--cor-3);
}
.banner .container .texto h2 span{
	color: var(--cor-2);
}
.banner .container .texto .infos{
	width: 100%;
	gap: 40px 0;
}
.banner .container .texto .infos .info-b{
	width: 100%;
	gap: 10px;
}
.banner .container .texto .infos .info-b h5{
	color: #584B42;
	font-size: 24px;
	font-weight: 600;
	font-family: var(--fonte-1);
}
.banner .container .texto .infos .info-b a{
	display: flex;
	align-items: center;
	gap: 15px;
	width: fit-content;
	color: #3D3D3D;
	font-size: 18px;
	transition: ease .3s
}
.banner .container .texto .infos .info-b a:hover{
	transform: scale(1.1);
	transition: ease .3s
}
.banner .container .texto .infos .info-b a .zap{
	filter: brightness(0) saturate(100%) invert(57%) sepia(18%) saturate(563%) hue-rotate(328deg) brightness(97%) contrast(88%);
}
.banner .container .texto .infos .info-b.tel{
	gap: 20px;
}
.banner .container .texto .infos .info-b.tel a:nth-child(3){
	margin-top: 10px;
}
.banner .container .texto .infos .info-b .redes{
	display: flex;
	gap: 10px;
}
.banner .container .texto .infos .info-b .redes a i{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 57px;
	height: 57px;
	border-radius: 5px;
	border: 1px solid #AD8072;
	color: #80574B;
	font-size: 35px;
}
.banner .container .formulario{
	max-width: 528px;
	width: 100%;
	gap: 20px;
}
.banner .container .formulario .inputs{
	width: 100%;
	gap: 20px;
}
.banner .container .formulario .inputs input{
	height: 40px;
	padding: 0 20px 0 40px;
	color: #797979;
	font-size: 14px;
	background-color: transparent;
	border: 1px solid #63554B;
	border-radius: 5px;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 10px 50%;
}
.banner .container .formulario .inputs textarea::placeholder,
.banner .container .formulario .inputs input::placeholder{
	color: #797979;
	font-size: 14px;
}
.banner .container .formulario .inputs input:nth-child(1){
	width: calc(100% - 50% - 10px);
	background-image: url(../imagens/contato/nome.png);
}
.banner .container .formulario .inputs input:nth-child(2){
	width: calc(100% - 50% - 10px);
	background-image: url(../imagens/contato/telefone.png);
}
.banner .container .formulario .inputs input:nth-child(3){
	width: 100%;
	background-image: url(../imagens/contato/empresa.png);
}
.banner .container .formulario .inputs input:nth-child(4){
	width: 100%;
	background-image: url(../imagens/contato/email.png);
	background-position: 15px 50%;
}
.banner .container .formulario .inputs textarea{
	width: 100%;
	height: 180px;
	padding: 20px;
	color: #797979;
	font-size: 14px;
	background-color: transparent;
	border: 1px solid #63554B;
	border-radius: 5px;
}
.banner .container .formulario .bottom{
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.banner .container .formulario .bottom .politicas{
	width: 100%;
	display: flex;
}
.banner .container .formulario .bottom .label {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.banner .container .formulario .bottom .label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.banner .container .formulario .bottom .label .checkmark {
	position: absolute;
	top: 8px;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: transparent;
	border: 1px solid #AD8072;
	border-radius: 5px;
}
.banner .container .formulario .bottom .label:hover input ~ .checkmark {
	background-color: #AD8072;
}
.banner .container .formulario .bottom .label input:checked ~ .checkmark {
	background-color: #AD8072;
}
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.banner .container .formulario .bottom .label input:checked ~ .checkmark:after {
	display: block;
}
.banner .container .formulario .bottom .label .checkmark:after {
	left: 7px;
    top: 3px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.banner .container .formulario .bottom .politicas p{
	max-width: 266px;
	width: 100%;
	font-size: 14px;
	color: #797979;
}
.banner .container .formulario .bottom .politicas p a{
	font-size: 14px;
	color: #9F6C5D;
	text-decoration: underline;
}
.banner .container .formulario .bottom .btn-enviar{
	max-width: 149px;
	width: 100%;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #AD8072;
	border-radius: 5px;
}
.banner .container .formulario .bottom .btn-enviar img{
	width: 44px;
	height: 44px;
	display: flex;
}
.banner .container .formulario .bottom .btn-enviar span{
	max-width: calc(100% - 44px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #80574B;
	font-size: 20px;
}


.mapa{
	width: 100%;
	border-radius: 20px;
}
.mapa .container,
.mapa iframe{
	max-width: 1200px;
	width: 100%;
	height: 384px;
	border-radius: 20px;
}



/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1458px){
	.banner .container{
        padding: 0;
    }
}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){
	
}

@media screen and (max-width: 1100px){
	
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .banner .container{
		flex-direction: column;
		align-items: center;
	}
}

@media screen and (max-width: 800px){
    
}

@media screen and (max-width: 600px){
	.banner .container .texto h2, 
	.banner .container .texto h2 span{
		font-size: 38px;
	}
	.banner .container .texto .infos .info-b h5{
		font-size: 20px;
	}
	.banner .container .texto .infos .info-b a{
		font-size: 16px;
	}
	.banner .container .texto .infos .info-b a img{
		width: 20px;
	}

	.banner .container .formulario .inputs input:nth-child(1),
	.banner .container .formulario .inputs input:nth-child(2){
		width: 100%;
	}
    .banner .container .formulario .bottom{
		flex-direction: column;
		align-items: center;
	}
	.banner .container .formulario .bottom .politicas{
		width: fit-content;
	}
}

@media screen and (max-width: 480px){

}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}