/* ── PAGE OVERLAY ─────────────────────────── */
#page-overlay {
  position: fixed; inset: 0; z-index: 400;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #050810;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(157,104,240,.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(79,116,247,.08), transparent 40%);
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transform: translateY(28px) scale(.985);
  transition: all .55s cubic-bezier(.16,1,.3,1);
}
#page-overlay.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.po-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.1); border-radius: 999px;
  padding: 8px 20px; cursor: pointer;
  transition: all .25s; background: none;
}
.po-back-btn:hover { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.po-card {
  background: rgba(10,10,18,.8); border: 1px solid rgba(255,255,255,.05);
  border-radius: 18px; padding: 2rem; transition: border-color .25s;
}
.po-card:hover { border-color: rgba(79,116,247,.35); }
.po-card.purple:hover { border-color: rgba(157,104,240,.35); }
.po-input {
  width: 100%; background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  padding: 14px 16px; color: #fff; font-size: 14px;
  font-family: inherit; outline: none; transition: border-color .2s;
  box-sizing: border-box;
}
.po-input:focus { border-color: var(--dotsi-blue); }
.po-label { display: block; font-size: 12px; font-weight: 500;
            color: rgba(255,255,255,.45); margin-bottom: 8px; }
.po-submit {
  width: 100%; background: linear-gradient(90deg, var(--dotsi-blue), var(--dotsi-purple));
  border: none; border-radius: 10px; padding: 16px;
  color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all .25s;
}
.po-submit:hover { box-shadow: 0 0 30px rgba(157,104,240,.4); transform: scale(1.015); }
.po-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── VPS SLIDER THUMB ─────────────────────── */
input[type=range]#vps-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: #4f74f7; cursor: pointer;
  box-shadow: 0 0 8px rgba(79,116,247,0.6); border: 2px solid #fff;
}
input[type=range]#vps-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #4f74f7; cursor: pointer;
  box-shadow: 0 0 8px rgba(79,116,247,0.6); border: 2px solid #fff;
}

/* ── PARTICLES INSTANCES ──────────────────── */
/* pointer-events NÃO desativados — canvas precisa de receber eventos de rato */
.particles-instance { position: absolute; inset: 0; overflow: hidden; }

/* ── SHINE SWEEP — card "Recomendado" ────────
   EDIT: duração (6s) e opacidade (via-white/10) no HTML do card */
@keyframes shine-sweep {
  0%   { transform: translateX(-150%) skewX(-20deg); }
  20%  { transform: translateX(300%)  skewX(-20deg); }
  100% { transform: translateX(300%)  skewX(-20deg); }
}
.animate-shine { animation: shine-sweep 6s ease-in-out infinite; }

/* ── GOOGLE MAPS INFOWINDOW ───────────────── */
.gm-style-iw-c { background: #0d1117 !important; padding: 0 !important; border-radius: 10px !important; box-shadow: 0 4px 24px rgba(0,0,0,.7) !important; }
.gm-style-iw-d { overflow: hidden !important; }
.gm-style-iw-tc::after { background: #0d1117 !important; }
.gm-style-iw button.gm-ui-hover-effect { filter: invert(1) !important; }
