/* Contenedor del popup */
#aletheia-popup {
  display: none;
  position: fixed;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  padding: 20px;
  z-index: 99999;
  width: 360px;
  max-width: 92%;
  font-family: Arial, sans-serif;
}

/* Botón principal centrado */
.aletheia-subscribe-wrap .aletheia-btn,
#aletheia-submit {
  display: inline-block;
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
  margin: 10px auto;
}

.aletheia-subscribe-wrap { text-align: center; }

/* “X” visible de cerrar */
#aletheia-popup .aletheia-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

/* Formulario */
#aletheia-popup h3 {
  margin-top: 10px;
  text-align: center;
}
#aletheia-form {
  margin-top: 10px;
}
#aletheia-form .field {
  margin-bottom: 12px;
}
#aletheia-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}
#aletheia-form input[type="text"],
#aletheia-form input[type="email"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Consentimiento y enlace política */
#aletheia-consent-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
#aletheia-consent-wrap a {
  color: #000;
  text-decoration: underline;
}

/* Mensaje */
#aletheia-message {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}