.visto-check{
  display:grid;
  grid-template-columns:18px minmax(0,1fr);
  align-items:start;
  gap:10px;
  margin:2px 0 14px;
  padding:12px;
  border:1px solid #dce7e1;
  border-radius:13px;
  background:#fff;
  color:#334155;
  cursor:pointer;
  transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.visto-check:hover{
  border-color:#cbd8d1;
  background:#fbfdfc;
}
.visto-check input{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}
.visto-box{
  width:18px;
  height:18px;
  margin-top:1px;
  border:1.6px solid #b8c6bf;
  border-radius:5px;
  background:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
  transition:border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.visto-copy{
  display:grid;
  gap:3px;
  min-width:0;
}
.visto-copy strong{
  color:#15251e;
  font-size:13px;
  font-weight:800;
  line-height:1.2;
}
.visto-copy span{
  color:#64748b;
  font-size:12px;
  line-height:1.35;
}
.visto-check input:checked+.visto-box{
  border-color:#0b7048;
  background:#0b7048;
  box-shadow:inset 0 0 0 4px #0b7048;
}
.visto-check input:focus-visible+.visto-box{
  outline:3px solid rgba(11,112,72,.14);
  outline-offset:2px;
}
.visto-check:has(input:checked){
  border-color:rgba(11,112,72,.28);
  background:#edf8f2;
  box-shadow:0 10px 22px rgba(11,112,72,.08);
}
