.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ACTIVO */
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* CAJA */
.popup-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  animation: popupIn 0.35s ease;
}

/* ICONO */
.popup-icon {
  color: #f4b400; /* amarillo Proturnos */
  margin-bottom: 12px;
}

/* TEXTOS */
.popup-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.popup-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* BOTON */
.popup-close {
  border: none;
  border-radius: 10px;
  padding: 8px 18px;
  font-weight: 600;
  background: #f1f1f1;
  cursor: pointer;
}

.popup-close:hover {
  background: #e6e6e6;
}

/* ANIMACION */
@keyframes popupIn {
  from {
    transform: translateY(10px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}