/* ============================================================
   CRM JEWELERS — Sorteo Argentina · Landing única
   Fondo BLANCO · detalles DORADOS · urgencia ROJA
   Tipografía: Anton (display bold) + Montserrat (texto)
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f4ef;
  --ink: #16130e;
  --ink-soft: #4d463b;
  --muted: #8c8577;
  --line: #e8e2d6;
  --gold: #b8912f;
  --gold-2: #d4af37;
  --gold-3: #9c7618;
  --gold-soft: #f4ecd6;
  --red: #e11207;
  --red-2: #b30d04;
  --red-soft: #fdeceb;
  --ok: #1f9d57;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(40, 30, 10, .12);
  --shadow-sm: 0 6px 20px rgba(40, 30, 10, .08);
  --font-display: "Anton", Impact, sans-serif;
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { width: min(1080px, 92vw); margin: 0 auto; }

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: .01em; text-transform: uppercase; line-height: .98; }

.eyebrow {
  font-family: var(--font-head); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-3); font-weight: 800;
}
.red-text { color: var(--red); }
.gold-text { color: var(--gold-3); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em;
  padding: 1rem 2rem; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease; white-space: nowrap;
}
.btn-gold { background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #241a05; box-shadow: 0 10px 26px rgba(184, 145, 47, .35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(184, 145, 47, .45); }
.btn-red { background: linear-gradient(120deg, var(--red), var(--red-2)); color: #fff; box-shadow: 0 10px 26px rgba(225, 18, 7, .30); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(225, 18, 7, .42); }
.btn-block { width: 100%; }
.btn-lg { font-size: 1.12rem; padding: 1.15rem 2.4rem; }

/* ---------- Barra de urgencia (roja) ---------- */
.urgency-bar {
  background: linear-gradient(90deg, var(--red-2), var(--red)); color: #fff; text-align: center;
  padding: .6rem 1rem; font-size: .82rem; font-weight: 700; letter-spacing: .03em;
  display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap;
}
.urgency-bar b { font-variant-numeric: tabular-nums; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: pulse 1.3s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .02em; line-height: 1; color: var(--ink); text-transform: uppercase; }
.brand-name span { display: block; font-family: var(--font-head); font-size: .54rem; font-weight: 700; letter-spacing: .3em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

/* ---------- Hero ---------- */
.hero { padding: 1.8rem 0 2.6rem; text-align: center; }
.hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.4rem, 7vw, 5rem); line-height: .95; letter-spacing: .005em; margin: 1.4rem 0 .3rem; }
.hero h1 .amt { color: var(--gold-3); }
.hero .lead { font-family: var(--font-head); color: var(--ink-soft); font-size: 1.08rem; font-weight: 600; max-width: 42ch; margin: .6rem auto 1.4rem; }

/* VSL video (lo primero que se ve) */
.hero-video { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.hero-video video { width: 100%; display: block; }
.unmute {
  position: absolute; bottom: 14px; right: 14px; z-index: 3; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,0,0,.72); color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  padding: .5rem 1rem; font-family: var(--font-head); font-weight: 700; font-size: .82rem; cursor: pointer; backdrop-filter: blur(4px);
  transition: background .2s;
}
.unmute:hover { background: rgba(0,0,0,.9); }
.unmute svg { width: 18px; height: 18px; }
.unmute.hidden { display: none; }

/* Countdown (rojo) */
.countdown-label { font-family: var(--font-head); font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; color: var(--red); font-weight: 800; margin-bottom: .7rem; }
.countdown { display: flex; gap: .7rem; justify-content: center; margin-bottom: 1.4rem; }
.cd-box { background: var(--red-soft); border: 1px solid rgba(225,18,7,.2); border-radius: 12px; padding: .65rem .3rem; min-width: 68px; text-align: center; }
.cd-box b { font-family: var(--font-display); font-size: 2.1rem; color: var(--red); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-box small { font-family: var(--font-head); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red-2); font-weight: 700; }

.ticket-pill { display: inline-flex; align-items: baseline; gap: .5rem; background: var(--gold-soft); border-radius: 999px; padding: .55rem 1.4rem; margin-bottom: 1.4rem; }
.ticket-pill b { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-3); }
.ticket-pill span { font-family: var(--font-head); color: var(--ink-soft); font-size: .88rem; font-weight: 600; }

/* ---------- Organizador ---------- */
.organizer { padding: 1.8rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.organizer-inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; text-align: left; }
.organizer img.av { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.organizer .who .top { display: flex; align-items: center; gap: .5rem; }
.organizer .who .handle { font-family: var(--font-head); font-weight: 800; color: var(--ink); }
.badge-pro { background: var(--gold-3); color: #fff; font-size: .62rem; font-weight: 800; padding: 2px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.verified { color: #1a8cff; }
.organizer .rating { font-family: var(--font-head); font-size: .84rem; color: var(--muted); font-weight: 600; }
.organizer .rating .stars { color: var(--gold-2); letter-spacing: 1px; }
.socials { display: flex; gap: .5rem; }
.social-link { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: .18s; background: #fff; }
.social-link:hover { border-color: var(--gold); color: var(--gold-3); background: var(--gold-soft); transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; }

/* ---------- Secciones ---------- */
section { padding: 3rem 0; }
.section-soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 48ch; margin: 0 auto 2.2rem; }
.section-head h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 4.2vw, 2.5rem); margin: .5rem 0; line-height: 1.12; letter-spacing: -.01em; }
.section-head p { font-family: var(--font-head); color: var(--ink-soft); font-weight: 500; }

/* ---------- Resumen ---------- */
.summary { max-width: 660px; margin: 0 auto; }
.summary p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 1rem; }
.summary .highlight { color: var(--ink); font-weight: 700; }
.summary .signoff { font-family: var(--font-head); font-weight: 800; color: var(--ink); }

/* ---------- Premio ---------- */
.prize-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: start; }
.prize-list { list-style: none; margin-bottom: 1.2rem; }
.prize-list li { display: flex; gap: .7rem; padding: .5rem 0; border-bottom: 1px solid var(--line); align-items: flex-start; font-size: 1rem; }
.prize-list li:last-child { border-bottom: none; }
.prize-list .check { color: var(--gold-3); flex: 0 0 auto; font-weight: 800; }
.prize-cond { list-style: none; margin-top: 1rem; }
.prize-cond li { display: flex; gap: .6rem; padding: .4rem 0; color: var(--ink-soft); font-size: .88rem; }
.prize-cond li::before { content: "👉"; flex: 0 0 auto; }
.prize-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.note-75 { margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--red-soft); border-left: 3px solid var(--red); border-radius: 8px; font-size: .92rem; color: var(--ink); }
.note-75 b { color: var(--red-2); }

.meta-grid { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.meta-grid .k { font-family: var(--font-head); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.meta-grid .v { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--ink); }

/* ---------- Galería ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Ganadores ---------- */
.winners-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold-soft); color: var(--gold-3); font-family: var(--font-head); font-weight: 800; font-size: .82rem; padding: .4rem 1rem; border-radius: 999px; margin-bottom: .6rem; }
.winners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.winners-grid img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Reserva / pago ---------- */
.reserve-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: start; }
.reserve-grid > *, .prize-grid > *, .gallery > *, .testi-grid > * { min-width: 0; }
.pay-card, .steps { min-width: 0; }
.steps { display: grid; gap: .9rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); color: #241a05; background: linear-gradient(135deg, var(--gold-2), var(--gold)); }
.step h4 { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; margin-bottom: .1rem; }
.step p { font-size: .9rem; color: var(--ink-soft); }

.pay-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.pay-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; margin-bottom: .2rem; }
.pay-card .hint { color: var(--ink-soft); font-size: .86rem; margin-bottom: 1.3rem; }

.cupo-selector { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: .9rem; }
.cupo-selector .lbl { font-family: var(--font-head); font-size: .8rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.stepper { display: flex; align-items: center; gap: .7rem; }
.stepper button { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--gold-3); font-size: 1.3rem; cursor: pointer; transition: .15s; }
.stepper button:hover { border-color: var(--gold); background: var(--gold-soft); }
.stepper .count { font-family: var(--font-display); font-size: 1.7rem; min-width: 42px; text-align: center; }
.quick-cupos { display: flex; gap: .5rem; margin-bottom: 1.3rem; flex-wrap: wrap; }
.chip { flex: 1; min-width: 56px; text-align: center; padding: .5rem; border: 1px solid var(--line); border-radius: 8px; font-size: .84rem; color: var(--ink-soft); cursor: pointer; transition: .15s; background: #fff; font-family: var(--font-head); font-weight: 700; }
.chip:hover, .chip.active { border-color: var(--gold); color: var(--gold-3); background: var(--gold-soft); }

.total-line { display: flex; align-items: baseline; justify-content: space-between; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 1.3rem; }
.total-line .k { color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.total-line .v { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold-3); }

.data-rows { display: grid; gap: .7rem; }
.data-row { display: flex; align-items: center; justify-content: space-between; gap: .8rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .85rem 1rem; }
.data-row .field { min-width: 0; flex: 1 1 auto; }
.data-row .field .k { font-family: var(--font-head); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.data-row .field .v { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1rem; word-break: break-all; line-height: 1.25; }
.copy-btn { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .4rem; padding: .55rem .9rem; border-radius: 8px; border: 1px solid var(--gold); background: var(--gold-soft); color: var(--gold-3); font-family: var(--font-head); font-size: .8rem; font-weight: 800; cursor: pointer; transition: .15s; text-transform: uppercase; letter-spacing: .03em; }
.copy-btn svg { width: 15px; height: 15px; }
.copy-btn:hover { background: var(--gold); color: #fff; }
.copy-btn.copied { color: #fff; border-color: var(--ok); background: var(--ok); }

.after-pay { margin-top: 1rem; padding: .9rem 1rem; background: var(--red-soft); border-radius: 8px; font-size: .86rem; color: var(--ink); text-align: center; }
.after-pay b { color: var(--red-2); }

/* ---------- Umbral ---------- */
.progress-wrap { max-width: 620px; margin: 0 auto; }
.progress-top { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: .88rem; color: var(--ink-soft); margin-bottom: .5rem; font-weight: 700; }
.progress-bar { height: 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

/* ---------- Garantía ---------- */
.guarantee { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.g-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.g-card .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft); display: grid; place-items: center; margin-bottom: .9rem; }
.g-card .ico svg { width: 22px; height: 22px; color: var(--gold-3); }
.g-card h4 { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; margin-bottom: .3rem; }
.g-card p { color: var(--ink-soft); font-size: .88rem; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; background: var(--bg-soft); }
.final-cta h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: 1rem; line-height: 1; }
.final-cta p { font-family: var(--font-head); color: var(--ink-soft); font-weight: 600; max-width: 44ch; margin: 0 auto 1.8rem; }

/* ---------- Footer ---------- */
footer { padding: 2.4rem 0; border-top: 1px solid var(--line); background: #fff; }
.foot-inner { text-align: center; }
.foot-inner .brand { justify-content: center; margin-bottom: 1rem; }
.foot-inner .socials { justify-content: center; margin: 1rem 0; }
.disclaimer { max-width: 720px; margin: 1.2rem auto 0; font-size: .72rem; color: var(--muted); line-height: 1.5; }
.foot-copy { margin-top: 1rem; font-size: .78rem; color: var(--muted); }

/* ---------- Botón flotante (Participá ya) ---------- */
.fab {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 90; display: inline-flex; align-items: center; gap: .55rem;
  background: linear-gradient(120deg, var(--red), var(--red-2)); color: #fff;
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  font-size: .98rem; padding: .95rem 2rem; border-radius: 999px; border: 2px solid rgba(255,255,255,.25);
  box-shadow: 0 12px 30px rgba(225, 18, 7, .42); cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
  animation: fabPulse 2s infinite;
}
.fab svg { width: 19px; height: 19px; }
.fab:hover { transform: translateX(-50%) translateY(-3px); }
.fab.hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(160%); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(225, 18, 7, .42); }
  50% { box-shadow: 0 14px 44px rgba(225, 18, 7, .7); }
}
@media (max-width: 600px) {
  .fab { bottom: 14px; font-size: .92rem; padding: .9rem 1.7rem; width: calc(100% - 28px); justify-content: center; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(140%); background: var(--ink); color: #fff; padding: .8rem 1.4rem; border-radius: 999px; font-family: var(--font-head); font-size: .88rem; font-weight: 700; box-shadow: var(--shadow); z-index: 100; transition: transform .3s ease; display: flex; align-items: center; gap: .5rem; }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-2); }

/* ---------- Header socials ---------- */
.header-right { display: flex; align-items: center; gap: 1rem; }
.header-socials { display: flex; gap: .4rem; }
.header-socials .social-link { width: 36px; height: 36px; border-radius: 9px; }
.header-socials .social-link svg { width: 18px; height: 18px; }

/* ---------- VSL tap-to-unmute overlay ---------- */
.tap-audio { position: absolute; inset: 0; z-index: 4; cursor: pointer; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px; background: linear-gradient(to top, rgba(0,0,0,.28), transparent 45%); }
.tap-audio.hidden { display: none; }
.tap-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(0,0,0,.78); color: #fff; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: .6rem 1.2rem; font-family: var(--font-head); font-weight: 800; font-size: .9rem; box-shadow: 0 6px 20px rgba(0,0,0,.4); }
.tap-pill svg { width: 20px; height: 20px; }

/* ---------- Testimonios en video ---------- */
.testi-grid { display: grid; grid-template-columns: 340px 1fr; gap: 2rem; align-items: stretch; }
.testi-video { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; position: relative; }
.testi-video video { width: 100%; height: 100%; max-height: 560px; display: block; object-fit: cover; background: #000; }
.testi-video .tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .7rem; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.testi-texts { display: grid; gap: 1rem; align-content: center; }
.testi { padding: 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.testi .stars { color: var(--gold-2); letter-spacing: 2px; margin-bottom: .5rem; }
.testi p { color: var(--ink-soft); font-size: .95rem; }
.testi .who { margin-top: .8rem; display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: .86rem; color: var(--ink); }
.testi .who .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-2), var(--gold)); display: grid; place-items: center; color: #241a05; font-weight: 800; font-size: .82rem; }
.testi .who .verified-sm { color: #1a8cff; }
.testi .who .verified-sm svg { width: 14px; height: 14px; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .prize-grid, .reserve-grid, .gallery { grid-template-columns: minmax(0, 1fr); }
  .winners-grid { grid-template-columns: minmax(0, 1fr); }
  .guarantee { grid-template-columns: minmax(0, 1fr); }
  .prize-media { order: -1; }
  .testi-grid { grid-template-columns: minmax(0, 1fr); }
  .testi-video { max-width: 100%; margin: 0 auto; }
}
@media (max-width: 600px) {
  .header-right > .btn { display: none; } /* el hero ya tiene CTA */
  .brand-name { font-size: 1.1rem; }
  .header-socials .social-link { width: 34px; height: 34px; }
}
@media (min-width: 601px) and (max-width: 860px) {
  .winners-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantee { grid-template-columns: repeat(3, 1fr); }
}
