/** Shopify CDN: Minification failed

Line 677:1 Expected "}" to go with "{"

**/
/* =========================================================
   VIDALABS — PRECIO DE LECTOR
   Popup + cinta promocional
   ========================================================= */

:root {
  --vl-promo-blue-1: #022054;
  --vl-promo-blue-2: #0e3a75;
  --vl-promo-teal: #2faf90;
  --vl-promo-lime: #b7d94c;
  --vl-promo-mint: #d3fa99;
  --vl-promo-blue-light: #f5faff;
  --vl-promo-gray: #f5f3ef;

  --vl-promo-text: #022054;
  --vl-promo-white: #ffffff;

  --vl-promo-radius: 22px;
  --vl-promo-shadow:
    0 24px 70px rgba(2, 32, 84, 0.22),
    0 4px 18px rgba(2, 32, 84, 0.08);

  --vl-promo-font:
    "Satoshi",
    var(--font-body-family, Arial, sans-serif);

  --vl-promo-accent-font:
    "Bebas Neue",
    "Satoshi",
    var(--font-heading-family, Arial, sans-serif);
}


/* =========================================================
   MODAL
   ========================================================= */

.vl-reader-promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(2, 32, 84, 0.58);

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);

  animation: vlPromoOverlayIn 0.22s ease-out both;
}

.vl-reader-promo-modal {
  position: relative;

  width: min(100%, 520px);
  overflow: hidden;

  border: 1px solid rgba(14, 58, 117, 0.12);
  border-radius: var(--vl-promo-radius);

  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(47, 175, 144, 0.13),
      transparent 33%
    ),
    var(--vl-promo-blue-light);

  box-shadow: var(--vl-promo-shadow);

  color: var(--vl-promo-text);
  font-family: var(--vl-promo-font);

  animation: vlPromoModalIn 0.28s cubic-bezier(.2, .75, .25, 1) both;
}

/* Línea de identidad superior */
.vl-reader-promo-modal::before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;

  background: linear-gradient(
    90deg,
    var(--vl-promo-teal) 0%,
    var(--vl-promo-teal) 56%,
    var(--vl-promo-lime) 100%
  );
}

.vl-reader-promo-inner {
  padding: 38px 42px 40px;
  text-align: center;
}


/* =========================================================
   BOTÓN CERRAR
   ========================================================= */

.vl-reader-promo-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(2, 32, 84, 0.06);
  color: var(--vl-promo-blue-1);

  font-family: inherit;
  font-size: 24px;
  line-height: 1;

  cursor: pointer;

  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

.vl-reader-promo-close:hover {
  background: rgba(2, 32, 84, 0.11);
  transform: rotate(3deg);
}


/* =========================================================
   POPUP — CONTENIDO
   ========================================================= */

.vl-reader-promo-title {
  max-width: 410px;

  margin: 0 auto 17px;

  color: var(--vl-promo-blue-1);

  font-family: var(--vl-promo-font);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-align: center;
}

.vl-reader-promo-copy {
  margin: 0;

  color: rgba(2, 32, 84, 0.82);

  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}


/* =========================================================
   CÓDIGO
   ========================================================= */

.vl-reader-promo-code-area {
  margin: 26px 0 23px;
}

.vl-reader-promo-code-label {
  display: block;

  margin-bottom: 7px;

  color: var(--vl-promo-blue-2);

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vl-reader-promo-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 156px;
  padding: 11px 22px;

  border: 1px dashed rgba(2, 32, 84, 0.34);
  border-radius: 10px;

  background: var(--vl-promo-mint);
  color: var(--vl-promo-blue-1);

  font-family: var(--vl-promo-accent-font);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}


/* =========================================================
   GARANTÍA / FIRMA
   ========================================================= */

.vl-reader-promo-guarantee {
  margin: 0 0 25px;

  color: rgba(2, 32, 84, 0.76);

  font-size: 15px;
  line-height: 1.5;
}

.vl-reader-promo-signature {
  margin: 0 0 28px;

  color: var(--vl-promo-blue-1);

  font-size: 15px;
  line-height: 1.25;
}

.vl-reader-promo-signature strong {
  display: block;

  margin-bottom: 3px;

  font-size: 16px;
  font-weight: 700;
}

.vl-reader-promo-signature span {
  color: rgba(2, 32, 84, 0.62);

  font-size: 13px;
}


/* =========================================================
   CTA
   ========================================================= */

.vl-reader-promo-activate {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 54px;
  padding: 15px 24px;

  border: 0;
  border-radius: 12px;

  background: var(--vl-promo-blue-1);
  color: #fff;

  box-shadow: 0 9px 24px rgba(2, 32, 84, 0.17);

  font-family: var(--vl-promo-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;

  cursor: pointer;

  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.vl-reader-promo-activate:hover {
  background: var(--vl-promo-blue-2);

  box-shadow: 0 12px 28px rgba(2, 32, 84, 0.23);

  transform: translateY(-1px);
}

.vl-reader-promo-activate:active {
  transform: translateY(0);
}

.vl-reader-promo-activate:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}


/* =========================================================
   CINTA SUPERIOR
   ========================================================= */

.vl-reader-promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 2147482000;

  width: 100%;

  background: var(--vl-promo-blue-1);
  color: #fff;

  font-family: var(--vl-promo-font);

  box-shadow: 0 4px 14px rgba(2, 32, 84, 0.13);

  animation: vlPromoBarIn 0.25s ease-out both;
}

.vl-reader-promo-bar-inner {
  width: min(100% - 32px, 1180px);
  min-height: 46px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  text-align: center;
}

.vl-reader-promo-bar-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.vl-reader-promo-bar-separator {
  width: 1px;
  height: 20px;

  background: rgba(255, 255, 255, 0.25);
}

.vl-reader-promo-bar-code {
  appearance: none;

  display: inline-flex;
  align-items: center;

  padding: 5px 9px;

  border: 1px solid rgba(211, 250, 153, 0.5);
  border-radius: 6px;

  background: rgba(211, 250, 153, 0.1);
  color: var(--vl-promo-mint);

  font-family: var(--vl-promo-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;

  white-space: nowrap;
}

button.vl-reader-promo-bar-code {
  cursor: pointer;

  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}

button.vl-reader-promo-bar-code:hover {
  background: rgba(211, 250, 153, 0.18);
  border-color: var(--vl-promo-mint);
}

.vl-reader-promo-countdown {
  min-width: 72px;

  color: var(--vl-promo-lime);

  font-family: var(--vl-promo-accent-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.04em;

  font-variant-numeric: tabular-nums;
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

body.vl-reader-promo-modal-open {
  overflow: hidden;
}

.vl-reader-promo-close:focus-visible,
.vl-reader-promo-activate:focus-visible,
.vl-reader-promo-bar-code:focus-visible {
  outline: 3px solid var(--vl-promo-lime);
  outline-offset: 3px;
}


/* =========================================================
   ANIMACIONES
   ========================================================= */

@keyframes vlPromoOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes vlPromoModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vlPromoBarIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
  .vl-reader-promo-overlay {
    align-items: flex-end;

    padding: 12px;
  }

  .vl-reader-promo-modal {
    border-radius: 20px;
  }

  .vl-reader-promo-inner {
    padding: 30px 24px 27px;
  }

  .vl-reader-promo-close {
    top: 15px;
    right: 15px;

    width: 36px;
    height: 36px;
  }

  .vl-reader-promo-title {
    margin-right: 38px;

    font-size: 29px;
  }

  .vl-reader-promo-copy {
    font-size: 16px;
  }

  .vl-reader-promo-code-area {
    margin: 22px 0 20px;
  }

  .vl-reader-promo-guarantee {
    margin-bottom: 20px;
  }

  .vl-reader-promo-signature {
    margin-bottom: 23px;
  }

  .vl-reader-promo-bar-inner {
    width: calc(100% - 20px);
    min-height: 58px;

    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "text timer"
      "code timer";

    justify-content: stretch;

    column-gap: 10px;
    row-gap: 2px;

    padding: 7px 0;

    text-align: left;
  }

  .vl-reader-promo-bar-text {
    grid-area: text;

    font-size: 12px;
  }

  .vl-reader-promo-bar-separator {
    display: none;
  }

  .vl-reader-promo-bar-code {
    grid-area: code;

    justify-self: start;

    padding: 2px 0;

    border: 0;

    background: none;

    font-size: 12px;
  }

  button.vl-reader-promo-bar-code:hover {
    border: 0;
    background: none;
  }

  .vl-reader-promo-countdown {
    grid-area: timer;

    align-self: center;

    min-width: 78px;

    font-size: 20px;

    text-align: right;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .vl-reader-promo-overlay,
  .vl-reader-promo-modal,
  .vl-reader-promo-bar {
    animation: none;
  }

  .vl-reader-promo-close,
  .vl-reader-promo-activate,
  .vl-reader-promo-bar-code {
    transition: none;
  }
}

/* ========================================================

FIXES

=======================================================*/

.vl-reader-promo-copy {
  margin: 0 auto;

  color: rgba(2, 32, 84, 0.82);

  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  max-width: 390px;
}

.vl-reader-promo-code-area {
  margin: 26px 0 23px;
  text-align: center;
}

.vl-reader-promo-code-label {
  display: block;

  margin-bottom: 7px;

  color: var(--vl-promo-blue-2);

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.vl-reader-promo-guarantee {
  margin: 0 auto 25px;

  color: rgba(2, 32, 84, 0.76);

  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  max-width: 390px;
}

.vl-reader-promo-signature {
  margin: 0 0 28px;

  color: var(--vl-promo-blue-1);

  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

@media (max-width: 600px) {
  .vl-reader-promo-overlay {
    align-items: center;
    justify-content: center;

    padding: 16px;
  }

  body.vl-reader-promo-bar-visible {
  padding-top: 46px;
}

@media (max-width: 600px) {
  body.vl-reader-promo-bar-visible {
    padding-top: 58px;
  }
}