:root{
  --bg:#0b1220;
  --card:#111a2e;
  --stroke:rgba(255,255,255,.10);
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --accent:#4f8cff;
  --ok:#22c55e;
  --warn:#f59e0b;
  --err:#ef4444;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Arial,sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(79,140,255,.25), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(34,197,94,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

.wrap{
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.imagem{
  width: 100%;
}
.img{
  width: 30%;
}
.img2{
  width: 60%;
  float: right;
}
#whats {
  position: fixed;
  right: 20px;     /* distância da direita */
  bottom: 40px;    /* distância do fundo */
  width: 40%;     /* tamanho do ícone */
  z-index: 9999;   /* fica acima de tudo */
  cursor: pointer;
}

.card{
  width:min(820px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:20px;
  box-shadow: 0 16px 45px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
}

.top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

h1{
  font-size:22px;
  margin:0 0 4px;
}
.sub{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.badge{
  border:1px solid var(--stroke);
  padding:6px 10px;
  border-radius:999px;
  color:var(--muted);
  font-size:12px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

label{
  font-size:13px;
  color:var(--muted);
}

input, select, button{
  border-radius:12px;
  border:1px solid var(--stroke);
  background: rgba(17,26,46,.7);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}

input:focus, select:focus{
  border-color: rgba(79,140,255,.55);
  box-shadow: 0 0 0 4px rgba(79,140,255,.18);
}

select#cidade{
  height:auto;
  padding:8px;
}

.hint{
  color:rgba(233,238,252,.55);
  font-size:12px;
}

.actions{
  grid-column: 1 / -1;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:6px;
  width: 100%;
}

button{
  cursor:pointer;
  background: linear-gradient(180deg, rgba(79,140,255,.95), rgba(79,140,255,.75));
  border-color: rgba(79,140,255,.6);
  font-weight:700;
}

button:disabled{
  opacity:.65;
  cursor:not-allowed;
}

.status{
  font-size:13px;
  color:var(--muted);
}

.foot{
  margin-top:14px;
  color:rgba(233,238,252,.55);
  font-size:12px;
  border-top:1px solid var(--stroke);
  padding-top:12px;
}

.hidden{ display:none; }

@media (max-width: 780px){
  .grid{ grid-template-columns: 1fr; };
  .img{  width: 35%};
  #whats {
  position: fixed;
  right: 20px;     /* distância da direita */
  bottom: 40px;    /* distância do fundo */
  width: 40%;     /* tamanho do ícone */
  z-index: 9999;   /* fica acima de tudo */
  cursor: pointer;
}
}
