/* Preenchimento inteligente do formulário comercial */
.field-optional{
  margin-left:5px;
  color:#8b99aa;
  font-size:9px;
  font-weight:700;
  text-transform:lowercase;
}
.lookup-status{
  min-height:17px;
  display:flex;
  align-items:center;
  gap:6px;
  margin-top:1px;
  color:#7a8899;
  font-size:10px;
  font-weight:700;
  line-height:1.35;
}
.lookup-status:empty{min-height:0}
.lookup-status.is-loading{color:#58749a}
.lookup-status.is-loading::before{
  content:"";
  width:10px;height:10px;
  border:2px solid #d5e2f0;
  border-top-color:#4d85d6;
  border-radius:50%;
  animation:helpLookupSpin .7s linear infinite;
}
.lookup-status.is-success{color:#18794e}
.lookup-status.is-success::before{content:"✓";font-weight:950}
.lookup-status.is-error{color:#b5473d}
.lookup-status.is-info{color:#5e7189}

.company-location-confirm{
  grid-template-columns:42px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  padding:13px;
  border:1px solid #dbe8f7;
  border-radius:15px;
  background:#f5f9ff;
}
.company-location-confirm[hidden]{display:none!important}
.company-location-icon{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:12px;
  color:#2f6fbd;
  background:#e8f2ff;
}
.company-location-icon svg{width:19px;height:19px}
.company-location-copy{min-width:0}
.company-location-copy small{
  display:block;
  margin-bottom:3px;
  color:#6a83a4;
  font-size:8px;
  font-weight:900;
  letter-spacing:.1em
}
.company-location-copy strong{
  display:block;
  color:#1d2b3d;
  font-size:12px;
  line-height:1.35
}
.company-location-copy span{
  display:block;
  margin-top:3px;
  color:#68778a;
  font-size:10px;
  line-height:1.4
}
.company-location-actions{display:flex;gap:6px}
.location-choice{
  min-height:38px;
  padding:8px 12px;
  border:1px solid #cfdae8;
  border-radius:10px;
  background:#fff;
  color:#50647e;
  font:inherit;
  font-size:10px;
  font-weight:850;
  cursor:pointer
}
.location-choice.is-primary{
  color:#fff;
  border-color:#2f72cd;
  background:#2f72cd
}
.location-choice:focus-visible{outline:3px solid rgba(47,114,205,.2);outline-offset:2px}

@keyframes helpLookupSpin{to{transform:rotate(360deg)}}

@media(max-width:760px){
  .lead-company-row{grid-template-columns:1fr!important}
  .company-location-confirm{
    grid-template-columns:40px minmax(0,1fr);
    padding:12px;
  }
  .company-location-icon{width:40px;height:40px}
  .company-location-actions{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .location-choice{min-height:44px}
  .lookup-status{font-size:9.5px}
}

@media(prefers-reduced-motion:reduce){
  .lookup-status.is-loading::before{animation:none}
}

.manual-location-fallback[hidden]{display:none!important}
.manual-location-fallback>span{
  color:#8a98aa;
  font-size:9.5px;
  font-weight:650;
  line-height:1.45;
}
