.contato{
    width: 100%;
    position: relative;
    background-color: var(--verde);
}
.contato .container{
    gap: 50px;
    justify-content: space-between;
    padding: 100px 0;
}
.contato .container .text{
    width: 425px;
    flex-direction: column;
    gap: 20px;
}
.contato .container .text h2{
    font-size: 52px;
}
.contato .container .text p{
    align-items: center;
    color: #ffffffcf;
}
.contato .container .text .infos{
	width: 100%;
	gap: 25px;
	margin-top: 10px;
}
.contato .container .text .infos a{
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #ffffffcf;
	transition: ease .3s;
}
.contato .container .text .infos a:hover{
	color: #Fff;
	font-weight: 700;
	transition: ease .3s;
}
.contato .container .text .infos a img,
.contato .container .text .infos a i{
	margin-right: 15px;
    color: #fff;
}
.contato .container .form{
    width: 552px;
    height: fit-content;
    flex-direction: column;
}
.contato .container .form .botoes{
	display: flex;
	width: 100%;
}
.contato .container .form .botoes button{
	width: 100%;
	padding: 20px;
	background-color: #3fa459;
	color: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	font-size: 16px;
	font-weight: 500;
}
.contato .container .form .botoes button.ativo{
	background-color: #fff;
	color: var(--verde);
}
.contato .container .clientes.ativado,
.contato .container .fornecedores.ativado,
.contato .container .trabalhe.ativado{
    display: flex;
    flex-wrap: wrap;
}
.contato .container form{
    display: none;
	width: 100%;
	gap: 15px;
	background-color: #fff;
	padding: 30px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.contato .container form p{
    color: var(--preto);
    font-weight: 500;
    margin-bottom: 10px;
}
.contato .container form input,
.contato .container form select{
    height: 56px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    padding: 0 15px;
    color: var(--preto);
    font-size: 14px;
    background-color: #fafafa;
}
.contato .container form textarea{
    width: 100%;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    padding: 15px;
    color: var(--preto);
    font-size: 14px;
    background-color: #fafafa;
}
.contato .container form input:nth-child(1){
    width: 100%;
}
.contato .container form input:nth-child(2){
    width: 34%;
}
.contato .container form input:nth-child(3){
    width: 62.9%;
}
.contato .container form input:nth-child(4){
    width: 100%;
}
.contato .container form input::placeholder,
.contato .container form textarea::placeholder,
.contato .container form select,
.contato .container form select option{
    font-weight: 500;
    font-size: 14px;
    color: var(--preto);
}
.contato .container form select{
    width: 100%;
}
.contato .file{
    width: 100%;
}
.file input[type="file"] {
    display: none;
}
.file label {
    display: flex;
    width: 100%;
    height: 56px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    padding: 0 15px;
    color: var(--preto);
    font-size: 14px;
    background-color: #fafafa;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: var(--preto);
    cursor: pointer;
}
.contato .container form .enviarBtn{
    background-color: var(--verde);
    padding: 17px 20px;
    border-radius: 8px;
    color: #fff;
    transition: ease .3s;
    margin-top: 10px;
}
.contato .container form .enviarBtn:hover{
    scale: 1.05;
    transition: ease .3s;
}	


.mapa{
    width: 100%;
}
.mapa .container{
    justify-content: center;
    gap: 50px;
}
.mapa .titulo{
    flex-direction: column;
    text-align: center;
    gap: 10px;
}
.mapa .titulo a{
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    display: flex;
    align-items: center;
    transition: ease .3s;
}
.mapa .titulo a:hover{
    color: var(--verde);
    transition: ease .3s;
}
.mapa .titulo a img{
    margin-right: 10px;
}
.mapa iframe{
    width: 100%;
    height: 400px;
    border-radius: 10px;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1440px){

}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){

}

@media screen and (max-width: 1155px){
	.contato .container .text{
        width: 342px;
    }
    .contato .container .text h2 {
        font-size: 42px;
    }
    .contato .container .form{
        width: 500px;
    }
    .contato .container form input:nth-child(4) {
        width: 62.5%;
    }
}

/* MOBILE */
@media screen and (max-width: 950px){
    .contato .container{
        justify-content: center;
    }
}

@media screen and (max-width: 800px){
    
}

@media screen and (max-width: 600px){
    .contato .container .text{
        width: 100%;
    }
    .contato .container .form{
        width: 100%;
    }

    .contato .container form input{
        width: 100%!important;
    }

    .mapa iframe{
        height: 500px;
    }
}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}