#popup-analitica {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  width: 100%;
  max-width: 520px;       /* Tamanho fixo no desktop */
  max-height: 90vh;
  padding: 0;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

/* Responsivo: reduz o tamanho em telas pequenas */
@media (max-width: 600px) {
  .popup-content {
    max-width: 90%;
  }
}
