/* ==========================================================================
   Geografía Bíblica — De Génesis a Apocalipsis
   Landing page (clon) — estilos
   ========================================================================== */

:root {
  --bg:          #0c0b0a;
  --bg-2:        #100e0c;
  --card:        #16130f;
  --card-2:      #1b1712;
  --line:        rgba(255, 255, 255, 0.07);
  --line-gold:   rgba(201, 162, 75, 0.28);
  --gold:        #c9a24b;
  --gold-light:  #e4c97e;
  --gold-soft:   #b8924180;
  --text:        #f4f0e7;
  --text-2:      #cbc6ba;
  --muted:       #8f8a7e;
  --green:       #3fcf8e;
  --green-dim:   #2e7d55;
  --green-bg:    rgba(63, 207, 142, 0.08);
  --red:         #e06666;

  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --col: 480px;         /* ancho de la columna de contenido (diseño mobile) */
  --radius: 16px;
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 88px; /* espacio para la barra fija inferior */
}

/* Columna central que emula la vista mobile de la página original */
.page {
  max-width: var(--col);
  margin: 0 auto;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

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

/* -------------------------------------------------------------------------- */
/* Tipografía / utilidades                                                    */
/* -------------------------------------------------------------------------- */
.serif { font-family: var(--serif); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.dash::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.18; }

.section { padding: 56px 22px; }
.section.tight { padding: 40px 22px; }

.text-gold  { color: var(--gold-light); }
.text-muted { color: var(--muted); }
.center     { text-align: center; }

.lead {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.7;
}

/* Divisor sutil entre secciones */
.rule { height: 1px; background: var(--line); border: 0; }

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 11, 10, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 22px;
  text-align: center;
}
.brand { font-family: var(--serif); font-size: 21px; font-weight: 700; letter-spacing: 0.01em; }
.brand-sub { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 12px; margin-top: 2px; }

/* -------------------------------------------------------------------------- */
/* Botones                                                                    */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #241c08;
  box-shadow: 0 10px 30px -10px rgba(201, 162, 75, 0.5);
}

/* -------------------------------------------------------------------------- */
/* Iconos SVG                                                                 */
/* -------------------------------------------------------------------------- */
svg.icn { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
svg.icn-fill { fill: currentColor; stroke: none; }
.ico svg { width: 22px; height: 22px; }
.bonus-ico svg { width: 23px; height: 23px; }
.check svg { width: 16px; height: 16px; vertical-align: -2px; }
.chev svg { width: 20px; height: 20px; }
.qico svg { width: 30px; height: 30px; }
.trust-row svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 3px; color: var(--gold); }
.chip svg { width: 16px; height: 16px; vertical-align: -3px; }
.g-chip svg { width: 17px; height: 17px; flex: 0 0 auto; }

/* Wrapper <a> del botón de checkout (regla InitiateCheckout en button.btn-compra) */
.checkout-link { display: block; text-decoration: none; }
.checkout-link .btn { width: 100%; }
button.btn { font-family: var(--sans); line-height: 1.2; }
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(63, 207, 142, 0.28);
  border-radius: 12px;
  padding: 13px 16px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Placeholders de imagen (reemplazables por assets reales)                   */
/* -------------------------------------------------------------------------- */
.imgph {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #14120f;
}
.imgph > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.imgph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 1;
}

/* Portada real del ebook (imagen generada) */
.ebook-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.85);
}
.ebook-mini img { width: 100%; border-radius: 10px; }
.imgph .cap {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
}
.imgph .cap .k { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.imgph .cap .t { font-family: var(--serif); font-weight: 700; font-size: 19px; }

/* Paletas tipo "paisaje" para los placeholders */
.ph-olive  { background: linear-gradient(160deg, #6f7d4a, #3c4a2c 55%, #23301c); }
.ph-sea    { background: linear-gradient(160deg, #a9c3c9, #4d7f88 45%, #2b4a52); }
.ph-desert { background: linear-gradient(160deg, #d9b98a, #a8814f 50%, #6b4e2c); }
.ph-city   { background: linear-gradient(160deg, #d8c39a, #a08a5f 50%, #5f5238); }
.ph-lake   { background: linear-gradient(160deg, #bcd0d8, #7c96a0 45%, #45525a); }
.ph-night  { background: linear-gradient(160deg, #2b3a55, #16233a 55%, #0d1626); }
.ph-sky    { background: linear-gradient(160deg, #c9d6e3, #8497ad 55%, #4a5a70); }

/* -------------------------------------------------------------------------- */
/* HERO                                                                       */
/* -------------------------------------------------------------------------- */
.hero { padding: 40px 22px 20px; }
.hero h1 { font-size: 34px; margin: 18px 0 20px; }
.hero .lead { max-width: 40ch; }

.book-card {
  position: relative;
  margin-top: 30px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 18px;
  background: radial-gradient(120% 90% at 50% 0%, rgba(201,162,75,0.06), transparent 60%), var(--card);
}
.book-badge {
  position: absolute;
  top: -12px; right: 16px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #241c08;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
  z-index: 3;
}

/* Mock de portada del ebook (CSS puro) */
.ebook {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)),
    repeating-linear-gradient(90deg, #5b3f27, #5b3f27 8px, #6a4a2e 8px, #6a4a2e 16px);
  display: grid; place-items: center;
  padding: 22px;
}
.ebook-inner {
  width: 74%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: linear-gradient(165deg, #17324a, #0e2135 55%, #0a1826);
  border: 1px solid rgba(201,162,75,0.5);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 16px; text-align: center;
}
.ebook-medallion {
  width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f0d79a, #b98b3f 60%, #6d5220);
  border: 2px solid var(--gold-light);
}
.ebook-inner .et { font-family: var(--serif); color: var(--gold-light); font-size: 15px; font-weight: 700; letter-spacing: 0.04em; line-height: 1.15; }
.ebook-inner .es { color: #d9c9a3; font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase; }

/* -------------------------------------------------------------------------- */
/* Stats                                                                      */
/* -------------------------------------------------------------------------- */
.stats { display: grid; gap: 30px; text-align: center; }
.stat .num { font-family: var(--serif); color: var(--gold-light); font-size: 40px; font-weight: 700; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 2px; }
.cta-sub { color: var(--muted); font-size: 13px; text-align: center; margin-top: 14px; }

/* -------------------------------------------------------------------------- */
/* Feature list                                                               */
/* -------------------------------------------------------------------------- */
.feat-list { display: grid; gap: 14px; }
.feat {
  display: flex; align-items: center; gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.feat.active { border-color: var(--line-gold); }
.feat.green { border-color: rgba(63,207,142,0.35); }
.feat .ico {
  flex: 0 0 auto;
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(201,162,75,0.08);
  color: var(--gold);
}
.feat.green .ico { background: var(--green-bg); color: var(--green); }
.feat p { font-size: 15px; color: var(--text); }

/* -------------------------------------------------------------------------- */
/* Galería (muestra del contenido)                                            */
/* -------------------------------------------------------------------------- */
.gallery { display: grid; gap: 16px; }
.gallery .imgph { aspect-ratio: 16 / 11; }
.gallery .tall  { aspect-ratio: 16 / 12; }
.gallery-note {
  display: grid; place-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px; color: var(--muted); font-size: 13px; text-align: center;
}
.gallery-note .ico { color: var(--gold); }

/* -------------------------------------------------------------------------- */
/* Cita bíblica                                                               */
/* -------------------------------------------------------------------------- */
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.quote.icon .qico { color: var(--gold); margin-bottom: 14px; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--text); line-height: 1.5; }
.quote .ref { color: var(--gold); font-size: 13px; margin-top: 16px; }

/* -------------------------------------------------------------------------- */
/* Cards numeradas (desafío / estructura)                                     */
/* -------------------------------------------------------------------------- */
.num-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.num-card .n { font-family: var(--serif); font-size: 40px; color: rgba(255,255,255,0.14); font-weight: 700; line-height: 1; }
.num-card h3 { font-size: 20px; margin: 14px 0 10px; }
.num-card p { color: var(--muted); font-size: 14.5px; }

.callout {
  border-left: 3px solid var(--gold);
  background: var(--card);
  border-radius: 8px;
  padding: 22px 20px;
}
.callout p { font-family: var(--serif); font-style: italic; color: var(--text-2); font-size: 15.5px; line-height: 1.6; }

/* Estructura del material */
.struct { display: grid; gap: 18px; }
.struct .num-card { position: relative; }
.struct .badge-img {
  position: absolute; top: 24px; right: 20px;
  font-size: 11px; font-weight: 700; color: var(--gold-light);
  background: rgba(201,162,75,0.12); border: 1px solid var(--line-gold);
  padding: 5px 10px; border-radius: 999px;
}
.struct ul { list-style: none; display: grid; gap: 12px; margin-top: 6px; }
.struct li { display: flex; gap: 12px; color: var(--text-2); font-size: 14.5px; }
.struct li::before { content: "•"; color: var(--gold); }

/* -------------------------------------------------------------------------- */
/* Carruseles                                                                 */
/* -------------------------------------------------------------------------- */
.carousel { overflow: hidden; }
.carousel-track {
  display: flex; gap: 16px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -ms-overflow-style: none; scrollbar-width: none;
  padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: center; flex: 0 0 82%; }

.solu-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 10; }
.solu-card .imgph { position: absolute; inset: 0; border-radius: 0; }
.solu-card .cap2 {
  position: absolute; left: 20px; bottom: 18px; z-index: 3;
  font-family: var(--serif); font-weight: 700; font-size: 20px; line-height: 1.15; text-transform: uppercase;
}

.carousel-ctrls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; }
.cbtn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card); color: var(--text);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.cbtn:hover { border-color: var(--line-gold); }
.dots { display: flex; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,0.2); transition: all 0.2s ease; }
.dot.active { width: 22px; background: var(--gold); }

/* Testimonios */
.testi-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
}
.testi-card blockquote { font-family: var(--serif); font-style: italic; color: var(--text-2); font-size: 16px; line-height: 1.55; }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  flex: 0 0 auto;
  background: #222;
}
.testi-author .name { font-weight: 600; font-size: 15px; }
.testi-author .loc  { color: var(--muted); font-size: 13px; }

/* -------------------------------------------------------------------------- */
/* Resumen / caja con borde dorado                                            */
/* -------------------------------------------------------------------------- */
.recap {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(201,162,75,0.05), transparent 60%), var(--card);
}
.recap h3 { text-align: center; font-size: 22px; margin-bottom: 22px; }
.recap ul { list-style: none; display: grid; gap: 18px; }
.recap li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check { color: var(--green); flex: 0 0 auto; }

/* -------------------------------------------------------------------------- */
/* Bonos                                                                      */
/* -------------------------------------------------------------------------- */
.bonus { display: grid; gap: 16px; }
.bonus-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.bonus-card.hot { border-color: var(--line-gold); }
.bonus-card.excl { border-color: rgba(63,207,142,0.4); }
.bonus-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(201,162,75,0.08); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 18px;
}
.bonus-card.excl .bonus-ico { background: var(--green-bg); color: var(--gold); }
.bonus-card h3 { font-size: 18px; margin-bottom: 8px; }
.bonus-card p { color: var(--muted); font-size: 14px; }
.bonus-price { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.bonus-price .was { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.bonus-price .free { color: var(--green); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; background: var(--green-bg); border: 1px solid rgba(63,207,142,0.3); padding: 4px 10px; border-radius: 6px; }
.tag {
  position: absolute; top: -11px; right: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.tag.gold  { background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: #241c08; }
.tag.green { background: var(--green); color: #05291a; }

.bonus-total {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.bonus-total .row { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--muted); }
.bonus-total .row .strike { text-decoration: line-through; }
.bonus-total .free-all { color: var(--green); font-weight: 700; font-family: var(--serif); font-size: 22px; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }

/* -------------------------------------------------------------------------- */
/* Inversión / comparación / pricing                                          */
/* -------------------------------------------------------------------------- */
.compare { display: grid; gap: 14px; margin-top: 6px; }
.compare-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px;
}
.compare-row .label { font-size: 15px; }
.compare-row .price { color: var(--red); text-decoration: line-through; font-weight: 600; }

.pricing {
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: radial-gradient(120% 70% at 50% 0%, rgba(201,162,75,0.06), transparent 60%), var(--card);
  text-align: center;
}
.pricing .ebook-mini { width: 120px; margin: 0 auto 18px; }
.pricing h3 { font-size: 22px; }
.pricing .subttl { color: var(--gold-light); font-family: var(--serif); font-size: 14px; margin-top: 2px; margin-bottom: 20px; }
.pricing ul { list-style: none; display: grid; gap: 16px; text-align: left; margin-bottom: 20px; }
.pricing li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--text-2); }
.pricing .once { color: var(--muted); font-size: 13px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 20px; }

/* Bloque de precio grande */
.big-price .was { color: var(--muted); text-decoration: line-through; font-size: 18px; }
.big-price .now { font-family: var(--serif); color: var(--gold-light); font-size: 46px; font-weight: 700; margin: 4px 0 22px; }

.trust-row { display: flex; justify-content: space-around; gap: 8px; margin-top: 18px; color: var(--muted); font-size: 12px; text-align: center; }

/* -------------------------------------------------------------------------- */
/* Garantía                                                                   */
/* -------------------------------------------------------------------------- */
.guarantee {
  border: 1px solid rgba(63,207,142,0.5);
  border-radius: 20px;
  padding: 40px 26px;
  text-align: center;
  background: radial-gradient(120% 60% at 50% 0%, rgba(63,207,142,0.06), transparent 60%);
}
.shield {
  width: 76px; height: 76px; border-radius: 50%;
  border: 2px solid var(--green);
  display: grid; place-items: center; margin: 0 auto 22px;
  color: var(--green);
}
.guarantee-seal {
  width: 150px; height: 150px;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border-radius: 32px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.6);
}
.guarantee .g-eyebrow { color: var(--muted); letter-spacing: 0.2em; font-size: 12px; text-transform: uppercase; }
.guarantee .g-days { font-family: var(--serif); color: var(--green); font-size: 34px; font-weight: 700; margin: 6px 0 18px; }
.guarantee p { color: var(--text-2); font-size: 15px; line-height: 1.7; max-width: 34ch; margin: 0 auto; }
.guarantee p b { color: var(--text); }
.guarantee .g-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; color: var(--green); font-weight: 700; font-size: 14px;
  background: var(--green-bg); border: 1px solid rgba(63,207,142,0.3);
  padding: 12px 20px; border-radius: 12px;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.faq { display: grid; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  color: var(--text); font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .chev { color: var(--gold); transition: transform 0.25s ease; flex: 0 0 auto; }
.faq-item.open .faq-q { color: var(--gold-light); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--muted); font-size: 14.5px; padding-bottom: 22px; line-height: 1.7; }

/* -------------------------------------------------------------------------- */
/* CTA final                                                                  */
/* -------------------------------------------------------------------------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 28px; margin-bottom: 16px; }
.final-cta .lead { max-width: 38ch; margin: 0 auto 30px; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 40px 22px 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
}
.site-footer .brand { font-size: 18px; color: var(--text); margin-bottom: 10px; }
.site-footer a { color: var(--gold); text-decoration: none; }

/* -------------------------------------------------------------------------- */
/* Barra fija inferior (checkout)                                             */
/* -------------------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: var(--col);
  background: rgba(12, 11, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  z-index: 50;
}
.sticky-bar .price-inline { text-align: center; margin-bottom: 8px; }
.sticky-bar .was { color: var(--muted); text-decoration: line-through; font-size: 14px; margin-right: 8px; }
.sticky-bar .now { font-family: var(--serif); color: var(--gold-light); font-weight: 700; font-size: 20px; }
.sticky-bar .btn { padding: 15px; }

/* -------------------------------------------------------------------------- */
/* Responsive: en pantallas anchas la columna queda centrada con marco        */
/* -------------------------------------------------------------------------- */
@media (min-width: 560px) {
  body { background: #060504; }
  .page {
    margin: 24px auto 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 40px 120px -40px rgba(0,0,0,0.9);
  }
  .site-header { border-radius: 22px 22px 0 0; }
}
