/* ============================================================
   oferta.css — LATRICOLOR · /oferta landing page
   Aggressive Colombian conversion-funnel aesthetic.
   Standalone, mobile-first. Self-contained: redefines the brand
   tokens so the page never downloads the full styles.css (~146KB).

   Two defining traits of this redesign:
   1. The "tunnel" — full-bleed colored bands butting edge-to-edge
      with zero white gaps, alternating crema/red/yellow/blue/ink,
      interlocked by pure-CSS diagonal (clip-path) dividers.
   2. Horizontal 3-column price block with product images, tight
      even at 390px, with a dominant middle "MÁS VENDIDO" card.
   ============================================================ */

:root {
  /* ===== Stadium palette (mirrors styles.css) ===== */
  --crema:       #F5EFE0;
  --bg-warm:     #E8E0CF;
  --bg-deep:     #DCD2BD;
  --ink:         #1A1A1A;
  --ink-soft:    #2A2A28;
  --muted:       #8A867E;

  --yellow:      #FFD300;
  --yellow-warm: #FFE552;
  --yellow-deep: #D9B400;
  --blue:        #0033A0;
  --blue-light:  #3B6FE0;
  --blue-deep:   #001D5C;
  --red:         #E63946;
  --red-deep:    #A8141C;
  --green:       #1f8a3b;
  --wa:          #25D366;
  --wa-deep:     #1FB855;

  --shadow-hard: 5px 5px 0 var(--ink);
  --shadow-soft: 3px 3px 0 var(--ink);
  --shadow-mini: 2px 2px 0 var(--ink);
  --border:      3px solid var(--ink);
  --border-thin: 2px solid var(--ink);

  --bar-h:       38px;
  --maxw:        720px;          /* mobile-first: narrow, even on desktop */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ink);        /* tunnel: never flash white between bands */
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: var(--bar-h);
  padding-bottom: 72px;          /* room for the sticky bottom CTA (mobile) */
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 0.95; letter-spacing: 0.5px; }

.anton  { font-family: 'Anton', 'Inter', sans-serif; text-transform: uppercase; }
.bebas  { font-family: 'Bebas Neue', 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

/* ============================================================
   THE TUNNEL — seamless full-bleed bands, zero gaps
   Sections stack edge-to-edge (no margins). Big centered Anton
   headers. Diagonal dividers interlock consecutive bands.
   ============================================================ */
.section        { position: relative; padding: 46px 0; margin: 0; }
.section--tight { position: relative; padding: 26px 0; margin: 0; }

/* Centered, bold tunnel-style section headers everywhere */
.section-title, .cb-title, .fc-title, .section-kicker, .section-subtitle { text-align: center; }

/* Clean straight full-bleed bands, no angled cuts. The colour change
   alone separates sections — what most high-converting Colombian LPs
   actually do. (Previous clip-path "slant" dividers produced awkward
   colored wedges and were removed.) */

/* ============================================================
   STICKY TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--bar-h);
  z-index: 200;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-align: center;
  padding: 0 10px;
  border-bottom: 2px solid var(--yellow);
}
.topbar .tb-main { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar .tb-days {
  background: var(--red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
}

/* ============================================================
   STICKY BOTTOM WHATSAPP CTA (CRO) — visible the whole scroll
   Full-width green bar on mobile; small floating pill on desktop.
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  background: var(--wa);
  color: #fff;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 19px;
  text-decoration: none;
  border-top: 3px solid var(--ink);
  box-shadow: 0 -4px 14px rgba(0,0,0,0.28);
}
.sticky-cta:active { background: var(--wa-deep); }

@media (min-width: 760px) {
  /* desktop: shrink to a floating pill bottom-right */
  .sticky-cta {
    left: auto; right: 24px; bottom: 24px;
    height: auto;
    width: auto;
    padding: 14px 22px;
    font-size: 17px;
    border: 3px solid var(--ink);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
  }
}

/* ============================================================
   EXIT-INTENT MODAL (DESKTOP ONLY) — -10% email capture.
   Shown via JS only on desktop mouse-leave; hidden by default.
   ============================================================ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.6);
}
.exit-modal.open { display: flex; }
.exit-box {
  position: relative;
  background: var(--crema);
  color: var(--ink);
  border: var(--border);
  box-shadow: var(--shadow-hard);
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 28px 24px 24px;
  text-align: center;
}
.exit-box .exit-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--ink-soft);
}
.exit-box .exit-flag { font-size: 34px; }
.exit-box .exit-title { font-family: 'Anton', sans-serif; font-size: 34px; text-transform: uppercase; margin: 4px 0 8px; }
.exit-box .exit-sub { font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; }
.exit-box .exit-sub strong { color: var(--red-deep); }
.exit-form { display: flex; flex-direction: column; gap: 10px; }
.exit-form input {
  width: 100%; padding: 13px 14px; font-size: 16px;
  border: var(--border-thin); border-radius: 6px; font-family: inherit;
}
.exit-form .exit-submit { width: 100%; font-size: 18px; padding: 14px; }
.exit-status { font-size: 14px; font-weight: 700; margin-top: 12px; min-height: 1.2em; }
.exit-status strong { color: var(--red-deep); }
.exit-fine { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-hard);
  padding: 16px 26px;
  font-size: 20px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
  line-height: 1;
  text-align: center;
}
.cta:active { transform: translate(3px, 3px); box-shadow: var(--shadow-mini); }
.cta--giant { width: 100%; font-size: 24px; padding: 20px 22px; }
.cta--block { width: 100%; }
.cta--wa { background: var(--wa); color: #fff; }
.cta--small { font-size: 15px; padding: 11px 16px; box-shadow: var(--shadow-mini); }

.micro {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
}

/* ============================================================
   BLOCK 1 — HERO  (photo band — opens the tunnel)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--bar-h));
  display: flex;
  align-items: flex-end;
  /* Brand-gradient fallback so the hero is NEVER an empty black box while the
     photo downloads on slow Android — or if it fails entirely. Base layer is
     the JPG (universally decodable; old Android System WebView + the TikTok
     in-app browser can choke on WebP-in-background-image, where this previously
     fell back to a solid black --ink). WebP is layered on via image-set below
     for browsers that support it. */
  background-color: var(--blue);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.78) 100%),
    url('/images/hero/hero-moto.jpg'),
    linear-gradient(160deg, var(--blue) 0%, var(--red-deep) 55%, var(--yellow-deep) 115%);
  background-size: cover;
  background-position: center 28%;
  padding: 0 0 34px;
}
/* Prefer WebP (≈half the bytes) where image-set with type() is supported. */
@supports (background-image: image-set('x' type('image/webp'))) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.78) 100%),
      image-set(
        url('/images/hero/hero-moto.webp') type('image/webp'),
        url('/images/hero/hero-moto.jpg') type('image/jpeg')),
      linear-gradient(160deg, var(--blue) 0%, var(--red-deep) 55%, var(--yellow-deep) 115%);
  }
}
.hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; color: #fff; }

.badge-urg {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 3px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-mini);
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: clamp(44px, 14vw, 72px);
  color: #fff;
  text-shadow: 3px 3px 0 var(--ink);
}
.hero .hero-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 6.5vw, 34px);
  color: var(--yellow);
  margin: 6px 0 16px;
  text-shadow: 2px 2px 0 var(--ink);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.price-line .old { font-size: 22px; color: #ddd; text-decoration: line-through; font-weight: 600; }
.price-line .now {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: var(--yellow);
  text-shadow: 2px 2px 0 var(--ink);
}
.price-line .save-tag {
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  padding: 4px 9px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* Secondary hero price line (variants B & C: emotion/trust leads, price
   is present but understated below the hook). */
.hero-price-mini {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(15px, 4.4vw, 19px);
  letter-spacing: 0.4px;
  color: #fff;
  margin-top: 12px;
}
.hero-price-mini .old { text-decoration: line-through; color: #cfcabd; margin-right: 4px; }
.hero-price-mini .now { color: var(--yellow); font-size: 1.25em; }

/* ============================================================
   VARIANT C — TRUST STRIP (stars + cities + verified badges)
   ============================================================ */
.trust-strip { background: var(--ink); color: #fff; text-align: center; }
.trust-strip .ts-stars { font-size: 18px; color: var(--yellow); letter-spacing: 2px; }
.trust-strip .ts-stars span { font-family: 'Bebas Neue', sans-serif; font-size: 15px; color: #fff; letter-spacing: 0.5px; margin-left: 6px; }
.trust-strip .ts-cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; margin: 10px 0; font-size: 13px; color: #d7d2c6; font-weight: 600; }
.trust-strip .ts-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.trust-strip .ts-badge { background: #ffffff14; border: 1px solid #ffffff33; color: #fff; font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 20px; }

/* ============================================================
   VARIANT C — WHATSAPP-CHAT-STYLE PROOF (illustrative)
   ============================================================ */
.wa-chat { max-width: 360px; margin: 22px auto 0; background: #ECE5DD; border: 2px solid var(--ink); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
.wa-chat-head { background: #075E54; color: #fff; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.5px; font-size: 15px; padding: 9px 14px; display: flex; align-items: center; gap: 8px; }
.wa-chat-head .wa-chat-dot { width: 9px; height: 9px; border-radius: 50%; background: #25D366; display: inline-block; }
.wa-chat-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; background-image: linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)); }
.wa-bubble { max-width: 82%; padding: 8px 11px; border-radius: 10px; font-size: 13.5px; line-height: 1.3; color: var(--ink); box-shadow: 0 1px 1px rgba(0,0,0,0.12); }
.wa-bubble.wa-in  { align-self: flex-start; background: #fff; border-top-left-radius: 2px; }
.wa-bubble.wa-out { align-self: flex-end; background: #DCF8C6; border-top-right-radius: 2px; }
.wa-chat-note { text-align: center; font-size: 11px; color: var(--muted); padding: 8px 10px; background: #ECE5DD; }

/* ============================================================
   BLOCK 2 / 12 — HORIZONTAL 3-COLUMN PRICE BLOCK
   Band: BLUE (white text). Price bands stay flat-topped so the
   tilted "MÁS VENDIDO" badge is never clipped.
   ============================================================ */
.pricegrid-wrap { background: var(--blue); color: #fff; padding-bottom: 0; }
.pricegrid-wrap .section-kicker {
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px;
  margin-bottom: 4px;
}
.pricegrid-wrap .section-title {
  font-family: 'Anton', sans-serif; color: #fff;
  font-size: clamp(28px, 8vw, 40px); margin-bottom: 22px; text-transform: uppercase;
}

/* 3 tight columns, even at 390px */
.pricegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  align-items: stretch;
  padding-bottom: 26px;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--crema);
  color: var(--ink);
  border: var(--border-thin);
  box-shadow: var(--shadow-mini);
  border-radius: 8px;
  padding: 10px 7px 12px;
  text-align: center;
}

.pc-imgwrap { position: relative; }
.pc-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--ink);
  background: #fff;
}
/* "×2" / "PACK" overlay badges on the product image */
.pc-badge {
  position: absolute;
  top: -7px; right: -7px;
  min-width: 26px;
  background: var(--red);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  line-height: 1;
  padding: 5px 6px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}
.pc-badge--pack {
  border-radius: 4px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 12px;
  padding: 4px 6px;
  transform: rotate(-8deg);
}
/* free-cap gift badge on the 2/3-body image */
.pc-badge--gift {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  padding: 4px 5px;
}

.pcard .pc-name  { font-family: 'Anton', sans-serif; font-size: 15px; text-transform: uppercase; margin-top: 8px; line-height: 1; }
.pcard .pc-old   { font-size: 11px; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.pcard .pc-now   { font-family: 'Anton', sans-serif; font-size: 23px; color: var(--blue); line-height: 1; margin: 2px 0 5px; }
.pcard .pc-tag   { font-size: 10px; font-weight: 700; color: var(--ink-soft); line-height: 1.15; margin-bottom: 8px; }
/* free-cap line ("+ 1 gorra gratis 🎁") */
.pcard .pc-gift  { font-size: 10px; font-weight: 800; color: var(--red-deep); line-height: 1.15; margin-bottom: 6px; }
.pcard .pc-save  { display: inline-block; background: var(--green); color: #fff; font-weight: 700; font-size: 9.5px; padding: 2px 6px; border-radius: 12px; line-height: 1.2; margin-bottom: 8px; }
.pcard .pc-extra { font-size: 9.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.2; margin-bottom: 8px; }
.pcard--hot .pc-gift { color: var(--red-deep); }

/* button pinned to the bottom so all 3 cards align */
.pricegrid .cta {
  margin-top: auto;
  width: 100%;
  font-size: 13px;
  padding: 9px 4px;
  border-width: 2px;
  box-shadow: var(--shadow-mini);
  border-radius: 5px;
}

/* dominant middle card */
.pcard--hot {
  background: #fff;
  border: 3px solid var(--yellow);
  box-shadow: var(--shadow-soft);
  transform: scale(1.04);
  margin-top: -4px;
  z-index: 2;
}
.pcard--hot .pc-now { color: var(--red-deep); font-size: 24px; }
.pcard--hot .cta { background: var(--red); color: #fff; }
.sticker {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  box-shadow: var(--shadow-mini);
  white-space: nowrap;
  z-index: 3;
}

/* full-bleed contrasting reassurance strip directly under the row */
.price-reassure {
  background: var(--ink);
  color: var(--yellow);
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(13px, 3.7vw, 17px);
  letter-spacing: 0.6px;
  padding: 13px 14px;
  margin: 0;
}

/* ============================================================
   PACK EL ONCE — separate premium "trophy" anchor section.
   Sits below the 1/2/3 block; its high struck price makes the
   $199.000 tier look reasonable. Band: CREMA (distinct from the
   ink reassurance strip above and the yellow trio below).
   ============================================================ */
.elonce-wrap { background: var(--crema); color: var(--ink); }
.elonce-wrap .section-kicker { color: var(--red-deep); font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; margin-bottom: 4px; }
.elonce-wrap .section-title  { font-family: 'Anton', sans-serif; font-size: clamp(28px, 8vw, 40px); margin-bottom: 18px; }
.elonce-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  color: #fff;
  border: 3px solid var(--yellow);
  border-radius: 12px;
  box-shadow: var(--shadow-hard);
  padding: 16px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}
.elonce-card .elonce-img { flex: 0 0 38%; }
.elonce-card .elonce-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; border: 2px solid var(--yellow); background: #fff; }
.elonce-card .elonce-body { flex: 1; }
.elonce-card .el-trophy { font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 0.5px; color: var(--yellow); }
.elonce-card .el-name   { font-family: 'Anton', sans-serif; font-size: 19px; line-height: 1; margin: 4px 0; }
.elonce-card .el-old    { font-size: 14px; color: #b9b3a6; text-decoration: line-through; font-weight: 600; }
.elonce-card .el-now    { font-family: 'Anton', sans-serif; font-size: 34px; color: var(--yellow); line-height: 1; }
.elonce-card .el-save   { display: inline-block; background: var(--green); color: #fff; font-weight: 700; font-size: 12px; padding: 3px 9px; border-radius: 20px; margin: 6px 0 10px; }
.elonce-card .cta { width: 100%; font-size: 15px; padding: 12px 8px; }

/* ============================================================
   BLOCK 3 — REASSURANCE TRIO  ·  band: YELLOW (ink text)
   ============================================================ */
.trio { background: var(--yellow); color: var(--ink); }
.trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: center; }
.trio-item .t-ico { font-size: 30px; }
.trio-item .t-head { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--red-deep); letter-spacing: 0.5px; margin-top: 4px; }
.trio-item .t-sub  { font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   BLOCK 4 / 15 — COUNTDOWN  ·  band: RED (white text)
   ============================================================ */
.countdown-block { background: var(--red); color: #fff; }
.countdown-block .cb-kicker { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; }
.countdown-block .cb-title  { font-family: 'Anton', sans-serif; font-size: clamp(26px, 7.5vw, 38px); margin: 6px 0 16px; text-transform: uppercase; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 18px;
  max-width: 420px;
}
.countdown .cd-unit {
  background: var(--ink);
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 10px 4px;
  flex: 1 1 0;
  min-width: 0;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
}
.countdown .cd-num { font-family: 'Anton', sans-serif; font-size: clamp(28px, 9vw, 44px); color: var(--yellow); line-height: 1; text-align: center; }
.countdown .cd-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #fff; text-align: center; }

.countdown-block .cb-note { font-size: 14px; font-weight: 600; margin-bottom: 18px; text-align: center; }

/* placeholder: real sales counter goes here once we have real numbers
   (see comment in oferta.html). Intentionally no fake "X% vendido" bar. */

/* ============================================================
   BLOCK 5 — BENEFITS  ·  band: CREMA (ink text)
   ============================================================ */
.benefits { background: var(--crema); color: var(--ink); }
.benefits .section-title { font-family: 'Anton', sans-serif; font-size: clamp(28px, 8vw, 40px); margin-bottom: 24px; }
.benefits .section-title em { color: var(--blue); font-style: normal; }
.ben-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ben-item {
  background: #fff;
  border: var(--border-thin);
  border-radius: 6px;
  box-shadow: var(--shadow-mini);
  padding: 16px 14px;
  text-align: center;
}
.ben-item .b-ico { font-size: 30px; }
.ben-item .b-txt { font-weight: 700; font-size: 14px; margin-top: 6px; }

/* ============================================================
   BLOCK 6 — THE 4 COLORS  ·  band: INK (light text)
   ============================================================ */
.colors { background: var(--ink); color: var(--crema); }
.colors .section-title { font-family: 'Anton', sans-serif; font-size: clamp(28px, 8vw, 40px); margin-bottom: 6px; color: #fff; }
.colors .section-subtitle { color: #cfc8ba; margin-bottom: 22px; font-weight: 600; }

/* compact 2×2 grid — small cards so the 4 ediciones fit ~one viewport */
.color-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.color-card {
  background: #fff;
  color: var(--ink);
  border: var(--border-thin);
  box-shadow: var(--shadow-mini);
  border-radius: 8px;
  overflow: hidden;
}
.color-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 18%; }
.color-card .cc-body { padding: 10px 12px 12px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.color-card .cc-name { font-family: 'Anton', sans-serif; font-size: 17px; text-transform: uppercase; line-height: 1; }
.color-card .cc-name .cc-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--ink); vertical-align: middle; margin-left: 4px; }
.color-card .cc-pedir {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 5px;
  padding: 5px 14px;
  box-shadow: var(--shadow-mini);
}
.color-card .cc-pedir:active { transform: translate(2px, 2px); box-shadow: none; }

/* ============================================================
   BLOCK 7 — STORYTELLING BAND  ·  photo (red-tinted, vs ink above)
   ============================================================ */
.story {
  position: relative;
  /* Brand-red base so this band reads as intentional (not a broken/empty box)
     while the stadium photo loads on slow Android, or if it ever fails. */
  background-color: var(--red-deep);
  background-image:
    linear-gradient(180deg, rgba(166,20,28,0.55), rgba(0,0,0,0.72)),
    url('/images/lifestyle/lifestyle-stadium.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.story p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 7vw, 38px);
  letter-spacing: 0.5px;
  line-height: 1.15;
  text-shadow: 2px 2px 0 var(--ink);
}
.story .story-punch { font-family: 'Anton', sans-serif; color: var(--yellow); margin-top: 14px; font-size: clamp(28px, 8.5vw, 46px); }

/* ============================================================
   BLOCK 8 — COMPARISON TABLE  ·  band: YELLOW (ink text)
   ============================================================ */
.compare { background: var(--yellow); color: var(--ink); }
.compare .section-title { font-family: 'Anton', sans-serif; font-size: clamp(26px, 7.5vw, 38px); margin-bottom: 22px; color: var(--ink); }
.cmp-table { border: var(--border); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); background: #fff; }
.cmp-head { display: grid; grid-template-columns: 1fr 1fr; }
.cmp-head > div { padding: 12px 10px; font-family: 'Anton', sans-serif; font-size: 15px; text-transform: uppercase; text-align: center; line-height: 1.05; }
.cmp-head .cmp-us  { background: var(--blue); color: #fff; }
.cmp-head .cmp-them{ background: var(--bg-deep); color: var(--ink-soft); }
.cmp-row { display: grid; grid-template-columns: 1fr 1fr; border-top: var(--border-thin); }
.cmp-row > div { padding: 12px 12px; font-size: 13.5px; font-weight: 600; }
.cmp-row .cmp-us  { border-right: var(--border-thin); color: var(--ink); }
.cmp-row .cmp-them{ color: var(--muted); }
.cmp-row .ic { font-weight: 700; margin-right: 5px; }
.cmp-row .ic-ok { color: var(--green); }
.cmp-row .ic-no { color: var(--red); }

/* ============================================================
   BLOCK 9 — TESTIMONIOS  ·  band: BLUE (white text)
   ============================================================ */
.testi { background: var(--blue); color: #fff; }
.testi .section-title { font-family: 'Anton', sans-serif; font-size: clamp(28px, 8vw, 40px); margin-bottom: 22px; color: #fff; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.testi-card {
  background: #fff;
  color: var(--ink);
  border: var(--border-thin);
  box-shadow: var(--shadow-soft);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.testi-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); flex-shrink: 0; }
.testi-card .tc-name { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 0.5px; }
.testi-card .tc-city { font-size: 12px; color: var(--muted); }
.testi-card .tc-stars { color: var(--yellow-deep); font-size: 15px; letter-spacing: 1px; }
.testi-card .tc-quote { font-size: 14px; margin: 6px 0; font-style: italic; }
.testi-card .tc-verified { display: inline-block; background: #e7f7ec; color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }

/* ============================================================
   BLOCK 10 — ANTES / DESPUÉS  ·  split: INK panel + photo panel
   ============================================================ */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; min-height: 230px; }
.ba-panel { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 16px; }
.ba-before { background: var(--ink); color: #cfc8ba; }
.ba-after  {
  color: #fff;
  background-color: var(--blue);   /* brand-blue base — never an empty box while the photo loads */
  background-image: linear-gradient(rgba(0,51,160,0.55), rgba(0,29,92,0.8)), url('/images/lifestyle/lifestyle-stadium.png');
  background-size: cover; background-position: center;
}
.ba-panel .ba-kick { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; opacity: 0.85; }
.ba-panel .ba-big  { font-family: 'Anton', sans-serif; font-size: clamp(26px, 8vw, 40px); margin-top: 6px; }
.ba-after .ba-big { color: var(--yellow); text-shadow: 2px 2px 0 var(--ink); }

/* ============================================================
   BLOCK 11 — DIVARTE UPSELL  ·  band: RED (white text)
   ============================================================ */
.divarte { background: var(--red); color: #fff; }
.divarte .section-kicker { font-family: 'Bebas Neue', sans-serif; color: var(--yellow); font-size: 20px; letter-spacing: 1px; }
.divarte .section-title { font-family: 'Anton', sans-serif; font-size: clamp(24px, 7vw, 34px); margin-bottom: 6px; color: #fff; }
.divarte .gift-flag { text-align: center; color: var(--yellow-warm); font-weight: 700; margin-bottom: 20px; }
.divarte-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.divarte-card { background: #fff; color: var(--ink); border: var(--border-thin); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-soft); }
.divarte-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.divarte-card .dv-body { padding: 12px; text-align: center; }
.divarte-card .dv-name { font-family: 'Anton', sans-serif; font-size: 19px; }
.divarte-card .dv-gift { font-size: 12px; color: var(--red-deep); font-weight: 700; margin-bottom: 10px; }

/* ============================================================
   BLOCK 13 — FAQ  ·  band: CREMA (ink text)
   ============================================================ */
.faq { background: var(--crema); color: var(--ink); }
.faq .section-title { font-family: 'Anton', sans-serif; font-size: clamp(28px, 8vw, 40px); margin-bottom: 22px; }
.faq-item { background: #fff; border: var(--border-thin); border-radius: 6px; margin-bottom: 10px; box-shadow: var(--shadow-mini); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 15px 16px; font-weight: 700; font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-ico { font-family: 'Anton', sans-serif; color: var(--blue); font-size: 22px; transition: transform 0.2s; }
.faq-item[open] .faq-ico { transform: rotate(45deg); }
.faq-item .faq-ans { padding: 0 16px 16px; font-size: 14px; color: var(--ink-soft); }

/* ============================================================
   BLOCK 14 — ALIADOS LOGÍSTICOS  ·  band: YELLOW (ink text)
   ============================================================ */
.aliados { background: var(--yellow); color: var(--ink); text-align: center; }
.aliados-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 22px; margin-bottom: 12px; }
.aliados-row span { font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 0.5px; color: var(--ink-soft); }
.aliados .ali-note { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.aliados .ali-note strong { color: var(--red-deep); }

/* ============================================================
   BLOCK 15 — FINAL CTA  ·  band: RED (white text)
   ============================================================ */
.finalcta { background: var(--red); color: #fff; text-align: center; }
.finalcta .fc-title { font-family: 'Anton', sans-serif; font-size: clamp(28px, 8vw, 42px); margin-bottom: 18px; text-transform: uppercase; }
.finalcta .micro { color: var(--yellow); margin-top: 14px; }

/* ============================================================
   FOOTER  ·  band: INK
   ============================================================ */
.foot { background: var(--ink); color: #fff; text-align: center; padding: 30px 18px; }
.foot .foot-logo { font-family: 'Anton', sans-serif; font-size: 26px; letter-spacing: 1px; }
.foot .foot-logo .t1 { color: var(--yellow); } .foot .foot-logo .t2 { color: var(--blue-light); } .foot .foot-logo .t3 { color: var(--red); }
.foot a { color: var(--yellow); text-decoration: none; font-weight: 600; }
.foot .foot-meta { font-size: 12px; color: #aaa; margin-top: 10px; }

/* ============================================================
   RESPONSIVE — tablet / desktop refinements
   Page stays a narrow single column even on desktop (mobile-first
   conversion machine). Price block is already 3-up at every width;
   here it just gets more room. Hero swaps to the wide desktop crop.
   ============================================================ */
@media (min-width: 600px) {
  .ben-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  /* roomier price cards on bigger screens */
  .pricegrid { gap: 12px; }
  .pcard { padding: 16px 12px 16px; }
  .pcard .pc-name { font-size: 19px; }
  .pcard .pc-now  { font-size: 30px; }
  .pcard--hot .pc-now { font-size: 32px; }
  .pcard .pc-tag, .pcard .pc-save, .pcard .pc-extra { font-size: 12px; }
  .pricegrid .cta { font-size: 16px; padding: 12px 6px; }
  .sticker { font-size: 13px; padding: 4px 11px; }
}

@media (min-width: 760px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.78) 100%),
      url('/images/hero/hero-desktop.jpg'),
      linear-gradient(160deg, var(--blue) 0%, var(--red-deep) 55%, var(--yellow-deep) 115%);
    background-position: center 35%;
  }
  @supports (background-image: image-set('x' type('image/webp'))) {
    .hero {
      background-image:
        linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.78) 100%),
        image-set(
          url('/images/hero/hero-desktop.webp') type('image/webp'),
          url('/images/hero/hero-desktop.jpg') type('image/jpeg')),
        linear-gradient(160deg, var(--blue) 0%, var(--red-deep) 55%, var(--yellow-deep) 115%);
    }
  }
  .color-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta { transition: none; }
}

/* ============================================================
   VARIANT FRAMING — page-level only (the checkout modal is shared).
   .story-intro = variant B emotional micro-story; .reassure-strip =
   variant C trust band under the hero. Variant A uses neither.
   ============================================================ */
.story-intro { background: var(--crema); color: var(--ink); text-align: center; }
.story-intro p { font-family: 'Bebas Neue', sans-serif; font-size: clamp(17px, 4.6vw, 22px); line-height: 1.3; letter-spacing: 0.3px; color: var(--ink-soft); margin: 0 auto 6px; max-width: 32ch; }
.story-intro .story-intro-punch { font-family: 'Anton', sans-serif; text-transform: uppercase; color: var(--red-deep); font-size: clamp(20px, 6vw, 28px); line-height: 1.05; margin-top: 10px; }

.reassure-strip { background: var(--yellow); color: var(--ink); padding: 12px 0; }
.reassure-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 16px; }
.reassure-strip span { font-size: 13px; font-weight: 800; }
