/* Overlay del popup */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.popup-visible {
  display: flex;
}

html.popup-seen .popup-overlay {
  display: none !important;
}

/* Logo dentro del popup */
.popup-logo {
  width: 200px;
  height: auto;
  margin: 0 auto;
}

/* Caja del popup */
.popup-box {
  background: var(--bg-card);
  border: 2px solid var(--color-acento);
  border-radius: 16px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Título del popup */
.popup-box h2 {
  color: var(--color-acento2);
  font-size: var(--fs-h2);
}

/* Texto del popup */
.popup-box p {
  color: var(--color-texto);
  font-size: 1rem;
}

/* Botón Entrar */
#popup-close {
  padding: 0.75rem 2rem;
  background: var(--color-acento);
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  touch-action: manipulation;
}

#popup-close:hover {
  background: var(--color-acento2);
  transform: translateY(-2px);
}
