/* Seletor de versões da landing (V1 / V2 / V3) — fixo no canto inferior esquerdo */
.ver-switch {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 27, 77, .94);
  border-radius: 999px;
  padding: 6px 8px 6px 14px;
  box-shadow: 0 10px 28px rgba(16, 27, 77, .35);
  font-family: 'Nunito Sans', -apple-system, sans-serif;
}
.ver-switch__label {
  color: rgba(251, 247, 239, .65);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 4px;
}
.ver-switch a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border-radius: 999px;
  color: #FBF7EF;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .15s;
}
.ver-switch a:hover { background: rgba(251, 247, 239, .16); color: #FBF7EF; }
.ver-switch a.cur { background: #FF6655; color: #fff; pointer-events: none; }
@media (max-width: 480px) {
  .ver-switch { bottom: 14px; left: 14px; padding: 5px 6px 5px 12px; }
  .ver-switch__label { display: none; }
}
