.vehicle{
  margin-top:14px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(10,20,40,.08);
  box-shadow: 0 10px 35px rgba(10,20,40,.06);
  padding:14px;
}

.vehicle-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.vehicle-title{
  font-weight:900;
  font-size:14px;
  line-height:1.2;
}

.select-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:12px;
}

.select{
  flex: 1;
  min-width: 240px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.select label{
  font-size:12px;
  font-weight:900;
  color: rgba(10,20,40,.78);
}

.select select{
  height:46px;
  padding:0 12px;
  border-radius:14px;
  border:2px solid rgba(10,20,40,.10);
  outline:none;
  background:#fff;
  font-size:14px;
  font-weight:800;
}

.select select:focus{
  border-color: rgba(73,179,255,.55);
  box-shadow: 0 0 0 4px rgba(73,179,255,.16);
}

/* Factor oculto */
.factor.is-hidden{ display:none; }

/* ===== Mobile ===== */
@media (max-width: 640px){
  .vehicle{
    padding:12px;
    border-radius:18px;
  }

  .vehicle-top{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .vehicle-title{
    font-size:15px;
  }

  .select-row{
    margin-top:10px;
    width:100%;
  }

  .select{
    min-width: 100%;
    width:100%;
  }

  .select label{
    font-size:12px;
  }

  .select select{
    height:48px;
    border-radius:16px;
    font-size:15px;
  }
}