:root{
  --bg:#F8FAFC;
  --card:#FFFFFF;
  --text:#0B1220;
  --muted:#566074;
  --line:#E6EAF2;
  --brand:#0B2A5B; /* azul profundo */
  --brand2:#081F45;
  --focus: rgba(11,42,91,.15);
  --radius:16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.card{
  width:100%;
  max-width:720px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: 0 14px 40px rgba(12, 20, 33, .06);
  overflow:hidden;
}

.top{
  padding:18px 22px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
}

.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
}

.content{
  padding:26px 22px 22px;
}

.h1{
  font-size:28px;
  line-height:1.15;
  margin:0 0 8px;
  letter-spacing:-0.3px;
}

.p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:14.5px;
  line-height:1.5;
}

.progress{
  height:8px;
  background:#EEF2F8;
  border-radius:999px;
  overflow:hidden;
  margin:14px 0 22px;
}

.progress > div{
  height:100%;
  width:0%;
  background:var(--brand);
  border-radius:999px;
  transition: width .25s ease;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

@media (max-width:640px){
  .grid{grid-template-columns:1fr;}
}

.field label{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin:0 0 6px;
}

.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  font-size:14.5px;
  outline:none;
  background:#fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.input:focus, select:focus, textarea:focus{
  border-color: rgba(11,42,91,.35);
  box-shadow: 0 0 0 6px var(--focus);
}

textarea{min-height:110px; resize:vertical;}

.actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  justify-content:flex-end;
}

.btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:12px 14px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
}

.btn-primary{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}

.btn-primary:hover{background:var(--brand2); border-color:var(--brand2);}
.btn:disabled{opacity:.55; cursor:not-allowed;}

.step{display:none;}
.step.active{display:block;}

.small{
  font-size:12px;
  color:var(--muted);
  margin-top:8px;
}