.contratar{
padding:80px 20px;
background:#f7f9fc;
}

.form-container{
max-width:900px;
margin:auto;
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.form-container h2{
margin-bottom:30px;
text-align:center;
color:var(--azul);
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

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

.campo label{
font-weight:600;
margin-bottom:5px;
font-size:14px;
}

.campo input,
.campo select{
padding:10px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
}

.cidade-box{
display:flex;
gap:8px;
}

.cidade-box button{
padding:10px 14px;
background:var(--laranja);
border:none;
color:white;
border-radius:8px;
cursor:pointer;
}

.btn-contratar{
margin-top:30px;
width:100%;
padding:14px;
background:linear-gradient(135deg,var(--laranja),var(--laranjaescuro));
color:white;
border:none;
border-radius:10px;
font-size:16px;
cursor:pointer;
}

/* MODAL */

.modal-cidade{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
align-items:center;
justify-content:center;
}

.modal-box{
background:white;
padding:30px;
border-radius:12px;
width:350px;
}

.modal-box ul{
list-style:none;
padding:0;
margin-top:15px;
}

.modal-box li{
padding:10px;
border-bottom:1px solid #eee;
cursor:pointer;
}

.modal-box li:hover{
background:#f3f3f3;
}