/* Geo Popup (estilo pizzaria) */
.geo-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.55);
  display:flex; align-items:center; justify-content:center;
  z-index:9999; padding:18px;
}
.geo-hidden{display:none!important;}
.geo-modal{
  width:min(520px, 92vw);
  background:#fff; border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  padding:26px 22px 22px;
  text-align:center;
}
.geo-title{
  font-size:42px; line-height:1.05; font-weight:800; color:#555;
  margin:6px 0 14px;
}
.geo-subtitle{
  font-size:18px; color:#8a8a8a; margin:0 0 10px;
}
.geo-field{
  width:100%;
  display:block;
  font-size:18px;
  padding:14px 14px;
  border-radius:10px;
  border:2px solid #e6e6e6;
  outline:none;
  background:#fff;
}
.geo-field:focus{border-color:#cfcfcf;}
.geo-actions{margin-top:14px;}
.geo-btn{
  appearance:none; border:none;
  background:#138a2e; color:#fff;
  font-weight:800;
  padding:12px 20px;
  border-radius:6px;
  font-size:18px;
  min-width:160px;
  cursor:pointer;
}
.geo-btn:disabled{opacity:.45; cursor:not-allowed;}
.geo-note{margin-top:10px; color:#9b9b9b; font-size:14px;}
.geo-spinner{
  width:34px; height:34px;
  border:4px solid #d9d9d9;
  border-top-color:#2b6cb0;
  border-radius:50%;
  margin:18px auto 4px;
  animation:geoSpin 1s linear infinite;
}
@keyframes geoSpin{to{transform:rotate(360deg);}}
.geo-check{
  width:78px; height:78px; border-radius:50%;
  border:4px solid #cdeccc;
  display:flex; align-items:center; justify-content:center;
  margin:2px auto 14px;
}
.geo-check svg{width:48px; height:48px; fill:#79c36a;}
.geo-text{
  font-size:20px; color:#6f6f6f; line-height:1.35;
}
.geo-text strong{color:#444;}
/* responsivo */
@media (max-width:420px){
  .geo-title{font-size:34px;}
  .geo-modal{padding:22px 18px 18px;}
}