/* ============================================================
   Alkimia · exit-offer.css — oferta de salida al volver de Hotmart
   ============================================================ */

.xo-lock { overflow: hidden; }

.xo-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.xo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.xo-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bottle);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 32px 24px 28px;
  text-align: center;
  transform: translateY(12px) scale(.98);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.xo-overlay.is-open .xo-card { transform: translateY(0) scale(1); }
@media (min-width: 600px) {
  .xo-card { padding: 40px 36px 32px; }
}

.xo-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--moss);
  border-radius: 50%;
  color: var(--sage);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.xo-close:hover { border-color: var(--gold); color: var(--gold); }

.xo-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (min-width: 600px) {
  .xo-kicker { font-size: 11px; }
}

.xo-title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(24px, 6vw, 30px);
  line-height: 1.1;
  color: var(--bone);
  margin: 14px 0 12px;
}
.xo-title em {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.xo-lede {
  font-family: var(--serif-body);
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--bone) 82%, transparent);
  margin: 0 0 22px;
}

.xo-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.xo-old {
  font-family: var(--serif-display);
  font-size: 16px;
  color: var(--sage);
  opacity: 0.75;
  text-decoration-thickness: 1px;
}
.xo-new {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 34px;
  color: var(--gold);
}

.xo-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-top: 1px solid var(--moss);
  border-bottom: 1px solid var(--moss);
}
.xo-timer-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}
.xo-timer-n {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 20px;
  color: var(--bone);
  min-width: 3.5ch;
}

.xo-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.xo-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0;
}
