/* =========================================================
   POPUP DISCRETO — "Pronto estaremos en tu ciudad"
   Publigo México — esquina superior izquierda
   ========================================================= */

.pg-city-popup {
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  background-color: var(--bg-dark-alt, #0a1a3f);
  border: 1px solid rgba(255, 183, 3, 0.35);
  border-radius: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 998;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.pg-city-popup.pg-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pg-city-popup__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--bg-dark, #06122c);
  background-color: var(--primary-color, #ffb703);
}

.pg-city-popup__text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white, #fff);
}

.pg-city-popup__close {
  flex-shrink: 0;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-light, #c3d0f0);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem;
}

.pg-city-popup__close:hover {
  color: var(--primary-color, #ffb703);
}

@media (max-width: 420px) {
  .pg-city-popup {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    max-width: none;
  }
}
