/* simular/assets/sim.css (ou onde você estiver usando) */

/* ✅ ESSENCIAL: hidden SEMPRE tem que esconder */
[hidden]{ display:none !important; }

/* assets/sim/sim.css */

.simHero{
  background:#e9edf1;
  min-height: calc(100vh - 74px);
}

.simHero__bar{
  background:#0f2f3f;
  padding:38px 0;
}
.simHero__title{
  margin:0;
  color:#fff;
  text-align:center;
  font-size:26px;
  font-weight:900;
}

.simWrap{
  display:flex;
  justify-content:center;
  padding:32px 0 60px;
}

.simCard{
  width:min(820px, calc(100% - 48px));
  background:#fff;
  border-radius:14px;
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  padding:26px;
}

.steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:22px;
}
.step{
  width:28px;
  height:28px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  background:#dbe4ea;
  color:#0f2f3f;
}
.step.is-active{
  background:#0f2f3f;
  color:#fff;
}
.line{
  height:2px;
  width:70px;
  background:#dbe4ea;
}

.panel{ display:none; }
.panel.is-active{ display:block; }

.panel h2{
  margin:0 0 12px;
  text-align:center;
  color:#0f2f3f;
  font-size:18px;
  font-weight:900;
}

.panel select,
.panel input{
  width:320px;
  max-width:100%;
  margin: 0 auto;
  display:block;
  padding:12px 12px;
  border:1px solid #cfd8df;
  border-radius:6px;
  outline:none;
}

.panel input + input{
  margin-top:10px;
}

.actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.btnPrimary{
  border:0;
  background:#0f2f3f;
  color:#fff;
  font-weight:900;
  padding:12px 18px;
  border-radius:4px;
  cursor:pointer;
  min-width:180px;
  text-align:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btnPrimary:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.btnGhost{
  border:1px solid #0f2f3f;
  background:transparent;
  color:#0f2f3f;
  font-weight:900;
  padding:12px 18px;
  border-radius:4px;
  cursor:pointer;
  min-width:180px;
}

.radioRow{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:6px;
}
.radio{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color:#0f2f3f;
}

.btnLink2{
  margin:14px auto 0;
  display:block;
  border:0;
  background:transparent;
  color:#1b6aa6;
  font-weight:900;
  cursor:pointer;
}
.btnLink2:hover{ text-decoration:underline; }

.thanks{
  text-align:center;
  color:#3a4a55;
  font-weight:700;
  line-height:1.6;
}

/* MODAL */
.modalOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.40);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  padding:18px;
}

.modal{
  width:min(880px, calc(100% - 24px));
  background:#fff;
  border-radius:12px;
  box-shadow:0 22px 60px rgba(0,0,0,.25);
  overflow:hidden;
}

.modal__head{
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #e6ebef;
}
.modal__head h3{
  margin:0;
  font-weight:900;
  color:#0f2f3f;
}
.modal__close{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:26px;
  line-height:1;
  padding:0 6px;
}

.modal__body{
  padding:18px;
  color:#243b47;
  line-height:1.55;
}
.modal__body ul{ margin:10px 0 0 18px; }
.modal__body ul ul{ margin-top:8px; }

.modal__footer{
  padding:14px 18px;
  border-top:1px solid #e6ebef;
  display:flex;
  justify-content:flex-end;
}
/* ====== HOME: botão "Iniciar simulação" do jeito largo ====== */
.btnPrimary--wide{
  width: min(520px, 100%);
  height: 44px;
  border-radius: 4px;
}

/* ====== Step 4: Sim/Não como "select" ====== */
.docsSelect{
  width: 320px;
  max-width: 100%;
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.docsOption{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border: 1px solid #cfd8df;
  border-radius: 6px;
  font-weight: 900;
  color: #0f2f3f;
  background: #fff;
  cursor: pointer;
  user-select: none;
}

.docsOption input{
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.docsOption:has(input:checked){
  border-color: #0f2f3f;
  box-shadow: 0 0 0 2px rgba(15,47,63,.10);
  background: #f3f6f8;
}
/* botão largo igual referência */
.btnPrimary--wide{
  min-width: 340px;
  height: 42px;
  border-radius: 4px;
}
/* checkbox + texto juntinhos */
.consentRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  color:#0f2f3f;
}
.consentRow input{
  width:auto;
  margin:0;
}
.consentRow span{
  margin:0;
}
/* checkbox + texto bem juntos */
.consentRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:14px;
  font-weight:900;
  color:#0f2f3f;
}
.consentRow input{
  margin:0;
}
