/* Promociones (pages/promociones.html) — tema .page-blue definido en index.css */

.promo-header {
  padding-bottom: 0;
}

.analab-container {
  --analab-green: #2ab45c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 32px 60px;
  color: var(--page-text);
  text-align: center;
}

/* Cupón tipo ticket: borde punteado + muescas circulares a los lados,
   como si fuera recortable, para que se lea como un cupón real y no como
   un bloque de texto más. */
.coupon {
  position: relative;
  width: 100%;
  padding: 32px 28px 28px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}

.coupon-divider {
  position: relative;
  width: 100%;
}

.coupon-notch {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  background-color: var(--page-surface);
  border-radius: 50%;
  transform: translateY(-50%);
}

.coupon-notch--left {
  left: -42px;
}

.coupon-notch--right {
  right: -42px;
}

.analab-logo {
  width: clamp(90px, 28vw, 140px);
  margin-bottom: 24px;
}

.analab-container h2 {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(32px, 9vw, 48px);
  color: var(--page-text);
  width: 100%;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.analab-tagline {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(16px, 4.5vw, 22px);
  color: var(--analab-green);
  width: 100%;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 20px;
}

.analab-desc {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(16px, 4.2vw, 20px);
  color: var(--page-text);
  width: 100%;
  line-height: 1.35;
  margin-top: 20px;
}

.line-white {
  width: 80%;
  height: 2px;
  margin: 20px auto 0;
  background-color: var(--page-text);
}

.price {
  font-family: var(--font-brand);
  font-weight: 900;
  font-size: clamp(26px, 7vw, 34px);
  margin-top: 20px;
  color: var(--page-text);
  background-color: var(--analab-green);
  padding: 12px 32px;
  border-radius: 999px;
  line-height: 1;
}

.price-regular,
.price-terms {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(13px, 3.4vw, 15px);
  text-align: center;
  color: var(--page-text);
  width: 100%;
  line-height: 1.3;
}

.price-regular {
  margin-top: 16px;
  opacity: 0.75;
}

.price-regular span {
  text-decoration: line-through;
}

.coupon-redeem {
  display: inline-block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--page-text);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 4px;
  margin-top: 14px;
}

.price-terms {
  margin-top: 24px;
  opacity: 0.8;
  padding: 0 12px;
}
