/* OVERLAY */

.dj-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  backdrop-filter: blur(3px);
}


/* CAJA */

.dj-popup-box {
  background: #eaecf0;
  color: #1f2937;
  max-width: 450px;
  width: 100%;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}


/* CERRAR */

.dj-popup-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #6b6aa6;
  transition: 0.2s;
}

.dj-popup-close:hover {
  transform: scale(1.1);
}


/* TITULO */

.dj-popup-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #374151;
}


/* TEXTOS */

.dj-popup .subtitle {
  font-size: 20px;
  margin-bottom: 25px;
  color: #6b7280;
}

.dj-popup .text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #374151;
}

.dj-popup .note {
  font-style: italic;
  margin-bottom: 30px;
  color: #6b7280;
}


/* BOTON PRINCIPAL */

.dj-popup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  background: linear-gradient(
    135deg,
    #7c7bc0 0%,
    #6b6aa6 35%,
    #5a5aa0 70%,
    #4e4e92 100%
  );
  min-width: 100%;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;

  box-shadow:
    0 10px 20px rgba(91, 90, 160, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);

  transition: all .25s ease;
}


/* ICONO */

.dj-btn-icon {
  width: 18px;
  height: 18px;
  display: block;         
  flex-shrink: 0;
  transform: translateY(1px); /* micro ajuste visual */
}



/* BRILLO SUPERIOR */

.dj-popup-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.25),
    rgba(255,255,255,0) 40%
  );
  pointer-events: none;
}


/* HOVER */

.dj-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(91, 90, 160, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);
}


/* CLICK */

.dj-popup-btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 12px rgba(91, 90, 160, 0.35),
    inset 0 2px 4px rgba(0,0,0,0.2);
}


/* MOBILE */

@media (max-width: 600px) {

  .dj-popup-box {
    padding: 30px 20px;
  }

  .dj-popup-box h2 {
    font-size: 24px;
  }

  .dj-popup .subtitle {
    font-size: 18px;
  }

}
