/* Ficha de orçamento — design handoff 16-LANDING-CADASTRO. Hifi, valores literais. */

.corpo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 40px;
  align-items: start;
  padding: 44px 0 0;
}

.h1 {
  font-size: clamp(38px, 9vw, 60px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: #FFFFFF;
  max-width: 15ch;
  margin: 0;
}
.subtitulo {
  font-size: clamp(21px, 4.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--magenta);
  margin-top: 14px;
}
.paragrafo { font-size: 17px; line-height: 1.6; color: var(--texto-corpo); max-width: 44ch; margin: 24px 0 0; }
.nota { font-size: 12.5px; line-height: 1.5; color: var(--texto-secundario); margin-top: 8px; max-width: 44ch; }
.provas { margin-top: 36px; border-top: 1px solid var(--divisor); }
.prova { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--divisor); }
.prova-marcador { width: 10px; height: 10px; background: var(--magenta); flex: none; margin-top: 6px; }
.prova-texto { font-size: 14px; line-height: 1.6; color: var(--texto-lista); }
.prova-texto strong { color: #FFFFFF; font-weight: 600; }

.card { border: 1px solid var(--borda); background: var(--card); }
.card-header {
  display: flex; justify-content: space-between; gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid var(--borda); background: #000000; flex-wrap: wrap;
}
.card-titulo { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: #FFFFFF; }
#card-protocolo { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; font-variant-numeric: tabular-nums; color: var(--texto-secundario); }
#card-protocolo[data-pronto="true"] { color: var(--magenta); }
.card-body, .card-body-recibo { padding: 20px 18px 24px; }
.card-body-recibo { padding: 24px 18px 26px; }
.garantia { font-size: 13.5px; line-height: 1.6; color: var(--texto-secundario); margin-bottom: 22px; }

.linha { display: flex; gap: 14px; }
.linha-01 { padding: 0 0 20px; border-bottom: 1px solid var(--divisor); }
.linha-meio { padding: 20px 0; border-bottom: 1px solid var(--divisor); }
.linha-06 { padding: 20px 0 0; }

.calha { width: 26px; flex: none; padding-top: 2px; }
.calha-numero { font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--texto-desativado); }
.calha-numero[data-pronta="true"] { color: var(--magenta); }
.calha-quadrado { width: 10px; height: 10px; margin-top: 8px; background: var(--borda); }
.calha-quadrado[data-pronta="true"] { background: var(--magenta); }

.campo { flex: 1; min-width: 0; }
.rotulo { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--texto-secundario); margin-bottom: 7px; }
.rotulo-apertado { margin-bottom: 9px; }

.input {
  width: 100%; box-sizing: border-box; height: 48px; padding: 0 14px;
  font-size: 16px; font-family: inherit; color: #FFFFFF; background: #000000;
  border: 1px solid var(--borda); border-radius: 2px; outline: none;
}
.input::placeholder { color: var(--texto-desativado); }
.input:focus { outline: 2px solid var(--magenta); outline-offset: 1px; }
.input[data-erro="true"] { border-color: var(--erro); }

.erro-msg { font-size: 13px; line-height: 1.5; color: var(--erro); margin-top: 7px; }
.erro-msg:empty { display: none; }
.ajuda { font-size: 12.5px; color: var(--texto-secundario); margin-top: 7px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 44px; padding: 10px 14px; font-size: 14px; font-weight: 600; font-family: inherit;
  border-radius: 2px; text-align: left; cursor: pointer; background: #000000;
  border: 1px solid var(--borda); color: var(--texto-corpo);
}
.chip[data-ativo="true"] { background: var(--magenta); border-color: var(--magenta); color: #000000; }
.chip-discreto { color: var(--texto-lista); }
.chip-discreto[data-ativo="true"] { background: #000000; border-color: var(--magenta); color: var(--magenta); }

.specs { margin-top: 14px; border-top: 1px solid var(--divisor); }
.spec { padding: 12px 0; border-bottom: 1px solid var(--divisor); }
.spec-titulo { font-size: 13px; font-weight: 700; color: #FFFFFF; }
.spec-texto { font-size: 12.5px; line-height: 1.55; color: var(--texto-secundario); margin-top: 3px; }

.foto-header { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 9px; }
.vale-vaga { font-size: 11px; font-weight: 700; color: var(--magenta); }
.opcional { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--texto-desativado); }

.foto-vazia {
  display: block; border: 1px dashed var(--magenta); border-radius: 2px; padding: 20px 14px;
  text-align: center; background: #000000; cursor: pointer;
}
.foto-vazia:hover { border-color: var(--magenta-hover); background: var(--hover); }
.foto-vazia-titulo { font-size: 14.5px; font-weight: 600; color: var(--magenta); margin: 8px 0 0; }
.foto-vazia-nota { font-size: 12.5px; color: var(--texto-secundario); line-height: 1.5; margin-top: 5px; }
.input-file { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

.foto-preenchida { display: flex; gap: 12px; align-items: center; border: 1px solid var(--borda); background: #000000; padding: 10px; }
.thumb { width: 64px; height: 64px; flex: none; border: 1px solid var(--divisor); background-size: cover; background-position: center; }
.foto-info { flex: 1; min-width: 0; }
.foto-nome { font-size: 13.5px; font-weight: 600; color: #FFFFFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.foto-peso { font-size: 12px; color: var(--texto-secundario); font-variant-numeric: tabular-nums; margin-top: 3px; }
.botao-trocar {
  min-width: 44px; height: 44px; background: transparent; border: 1px solid var(--borda);
  font-size: 12px; font-weight: 600; font-family: inherit; color: var(--texto-lista); cursor: pointer;
}
.botao-trocar:hover { border-color: var(--erro); color: var(--erro); }

.bloco-opcional { border-top: 1px solid var(--divisor); margin-top: 22px; padding-top: 18px; }

.aceite-label { display: flex; gap: 12px; align-items: flex-start; min-height: 44px; cursor: pointer; }
.checkbox { width: 22px; height: 22px; accent-color: var(--magenta); flex: none; margin: 2px 0 0; }
.aceite-texto { font-size: 13.5px; line-height: 1.6; color: var(--texto-lista); }
.aceite-texto span { color: var(--texto-secundario); }

.banner { border-left: 3px solid var(--erro); background: var(--banner-bg); padding: 14px 16px; margin-bottom: 22px; }
.banner-titulo { font-size: 14px; font-weight: 700; color: var(--erro); }
.banner-corpo { font-size: 13.5px; line-height: 1.6; color: var(--texto-lista); margin-top: 4px; }

.barra { position: sticky; bottom: 0; z-index: 20; background: #000000; border-top: 1px solid var(--borda); }
.barra-conteudo { max-width: 1080px; margin: 0 auto; padding: 12px 20px 14px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.progresso-bloco { flex: 1; min-width: 180px; }
.tracos { display: flex; gap: 6px; margin-bottom: 8px; }
.traco { width: 100%; height: 4px; background: var(--borda); }
.traco[data-aceso="true"] { background: var(--magenta); }
.contagem { font-size: 12px; font-weight: 600; color: var(--texto-secundario); font-variant-numeric: tabular-nums; }

.botao-primario {
  flex: 1; min-height: 52px; border: none; border-radius: 2px; background: var(--magenta); color: #000000;
  font-size: 16px; font-weight: 700; font-family: inherit; padding: 13px 16px 11px; cursor: pointer; position: relative;
}
.botao-primario:hover { background: var(--magenta-hover); }
.botao-primario:active { background: var(--magenta-active); }
.botao-primario:disabled { background: var(--magenta-active); cursor: default; }
.barra-progresso { height: 2px; background: rgba(0,0,0,0.25); margin-top: 8px; }
.barra-progresso-fill { height: 2px; background: #000000; transition: width 160ms cubic-bezier(0.2,0,0.2,1); width: 0%; }

.botao-secundario {
  flex: none; min-height: 52px; padding: 0 16px; border: 1px solid var(--borda); border-radius: 2px;
  background: transparent; color: var(--texto-corpo); font-size: 14px; font-weight: 600; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none;
}
.botao-secundario:hover { border-color: var(--magenta); color: var(--magenta); }

.selo {
  display: inline-flex; gap: 12px; align-items: center; border: 2px solid var(--magenta); padding: 10px 14px;
  transform: rotate(-1.4deg); margin-bottom: 26px;
}
.selo-texto { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--magenta); }
.card-body-recibo h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; color: #FFFFFF; margin: 0; }
.recibo { margin-top: 24px; border-top: 1px solid var(--divisor); }
.recibo-linha { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--divisor); }
.recibo-rotulo { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--texto-secundario); }
.recibo-valor { font-size: 13.5px; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; max-width: 60%; }
.fecho-paragrafo { font-size: 14px; line-height: 1.6; color: var(--texto-lista); margin-top: 22px; }

.cta-whats {
  display: flex; justify-content: center; align-items: center; gap: 10px; min-height: 52px; margin-top: 24px;
  border-radius: 2px; background: var(--magenta); color: #000000; font-size: 16px; font-weight: 700;
  padding: 0 16px; text-decoration: none;
}
.cta-whats:hover { background: var(--magenta-hover); }

.acao-terciaria {
  display: block; width: 100%; min-height: 48px; margin-top: 10px; background: transparent; border: none;
  color: var(--texto-secundario); font-size: 14px; font-weight: 600; font-family: inherit;
  text-decoration: underline; cursor: pointer;
}
.acao-terciaria:hover { color: #FFFFFF; }
