body {
  position: relative;
  overflow-x: hidden;
}

/* Fondo oscuro detrás del popup */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;      /* Oculto al inicio */
  justify-content: center;
  align-items: center;
  z-index: 9999;       /* MÁS ALTO QUE TODO */
}

/* Caja del popup */
.popup {
  background: #ffffff;
  padding: 25px 20px;
  width: 320px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
  font-family: 'Baloo 2', sans-serif;
}

/* Texto del mensaje */
.popup h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

/* Botón */
.popup button {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  background: #ff7f50;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.popup button:hover {
  background: #ff6a33;
}
