/* ============================================================
   EXPERIENCIA — funnel interactivo tipo Copy Film's
   (molde para el evento presencial de Ariel Díaz)
   Réplica 1:1 de la UI/UX: landing → llamada → quiz →
   intro → video → lockscreen iOS → chat WhatsApp → gate.
   El CONTENIDO (audios/videos/textos) es placeholder editable.
   ============================================================ */

/* ---- WhatsApp / iOS tokens propios de esta experiencia ---- */
:root {
  --wa-teal:      #128c7e;          /* acento burbuja de audio */
  --wa-teal-soft: rgba(18, 140, 126, 0.33);
  --wa-green:     #25d366;          /* estados "en línea" */
  --wa-header:    #1f2c34;          /* barra superior chat oscuro */
  --wa-bg:        #0b141a;          /* fondo chat oscuro */
  --wa-bubble:    #202c33;          /* burbuja recibida */
  --wa-enc:       rgba(28, 43, 35, 0.8);
}

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

/* ============ Marco mobile-first, todo a pantalla completa ============ */
.exp {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  background: var(--black);
  color: var(--fg);
  font-family: var(--font-body);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.exp__brand {
  position: absolute;
  top: 18px; left: 0; right: 0;
  text-align: center;
  z-index: 5;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  pointer-events: none;
}
.exp__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
}
.exp__bg--dim { opacity: .35; }
.exp__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.8) 85%);
  z-index: 1;
}

/* botón "continuar" de emergencia (por si falta el media local) */
.exp__skip {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 20;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 7px 12px;
  cursor: pointer;
}
.exp__skip:hover { color: #fff; }

/* ============ LANDING (inicio) ============ */
.landing {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 26px 60px;
  gap: 26px;
}
.landing__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 7.5vw, 40px);
  line-height: 1.15;
  max-width: 18ch;
  margin: 0;
}
.landing__title em { font-style: italic; color: var(--red-bright); }
.landing__volume {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.landing__volume .ic {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
}
.landing__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 26px;
  text-decoration: none;
  border: 1px solid var(--red-border);
  animation: ctaPulse 2.4s var(--ease) infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(127,29,29,.5); }
  50%     { box-shadow: 0 0 0 14px rgba(127,29,29,0); }
}
.landing__secondary {
  background: none; border: none;
  color: var(--fg-faint);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============ CALL (llamada entrante) ============ */
.call {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 96px 26px 64px;
  text-align: center;
}
.call__id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8vh;
}
.call__ava {
  width: 118px; height: 118px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  background: linear-gradient(135deg, var(--red), #1a0606);
}
.call__handle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 4px 0 0;
}
.call__name {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0;
}
.call__status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin: 6px 0 0;
}
.call__status--timer { color: var(--wa-green); }
.call__answer {
  width: 78px; height: 78px;
  border-radius: 999px;
  background: var(--wa-green);
  border: none;
  display: grid; place-items: center;
  cursor: pointer;
  color: #fff;
  animation: ringPulse 1.4s ease infinite;
  transition: transform .12s;
}
.call__answer:active { transform: scale(.9); }
.call__answer svg { width: 34px; height: 34px; }
@keyframes ringPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  50%     { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
}
.call__answer.is-hidden { display: none; }

/* ============ QUIZ (verificación de acceso) ============ */
.quiz {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 24px 60px;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.quiz__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 6px 12px;
  margin-bottom: 24px;
}
.quiz__badge .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }
.quiz__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 5.5vw, 28px);
  line-height: 1.25;
  margin: 0 0 28px;
}
.quiz__opts { display: flex; flex-direction: column; gap: 12px; }
.quiz__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 16px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .1s;
}
.quiz__opt:hover { border-color: var(--gold-dark); }
.quiz__opt:active { transform: scale(.99); }
.quiz__opt.is-sel { border-color: var(--red-bright); background: rgba(127,29,29,.25); }
.quiz__opt[disabled] { opacity: .5; cursor: default; }
.quiz__opt .letter {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
}

/* ============ AUDIO intro / PAYASO (tap para reproducir) ============ */
.tap {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 90px 26px;
  text-align: center;
}
.tap__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  animation: cardPulse 2s ease infinite;
}
@keyframes cardPulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.04);} }
.tap__top {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.tap__play {
  width: 96px; height: 96px;
  border-radius: 999px;
  background: var(--red);
  border: 1px solid var(--red-border);
  display: grid; place-items: center;
  color: #fff;
}
.tap__play svg { width: 40px; height: 40px; }
.tap__hint {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .04em;
}
.tap__status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wa-green);
}
.exp__video-hidden { display: none; }

/* ============ PANTALLA (lockscreen iOS) ============ */
.lock {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 16px 40px;
}
.lock__clock {
  text-align: center;
  margin-top: 6vh;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.lock__date { font-size: 17px; margin: 0 0 2px; font-weight: 500; }
.lock__time { font-size: 74px; font-weight: 300; margin: 0; letter-spacing: -.02em; line-height: 1; }
.lock__notif {
  margin-top: auto;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(30,30,32,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  border: none;
  color: #fff;
  padding: 12px 14px;
  cursor: pointer;
  animation: notifIn .5s var(--ease);
}
@keyframes notifIn { from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:none;} }
.lock__notif-ic {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--wa-green);
  display: grid; place-items: center;
  color: #fff;
}
.lock__notif-ic svg { width: 24px; height: 24px; }
.lock__notif-body { flex: 1; min-width: 0; }
.lock__notif-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.7);
  margin-bottom: 2px;
}
.lock__notif-title { font-weight: 600; font-size: 15px; }
.lock__notif-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: rgba(255,255,255,.85);
}

/* ============ WHATS (chat de WhatsApp) ============ */
.wa {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(11,20,26,.94), rgba(11,20,26,.94)),
    url("../img/wa-pattern.png");
  background-size: 340px;
}
.wa__header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wa-header);
  padding: 12px 14px;
  padding-top: max(12px, env(safe-area-inset-top));
}
.wa__back { color: #fff; opacity: .85; display: grid; place-items: center; }
.wa__back svg { width: 22px; height: 22px; }
.wa__ava { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; background: var(--red); }
.wa__peer { flex: 1; min-width: 0; }
.wa__name { font-size: 16px; font-weight: 600; color: #fff; }
.wa__presence { font-size: 12px; color: var(--wa-green); }
.wa__presence.is-typing { color: rgba(255,255,255,.65); font-style: italic; }
.wa__brand {
  font-family: var(--font-display);
  font-size: 9px; letter-spacing: .2em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.wa__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa__enc {
  align-self: center;
  max-width: 300px;
  text-align: center;
  background: var(--wa-enc);
  color: #ffe08a;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 4px;
}
.wa__msg {
  align-self: flex-start;
  max-width: 84%;
  background: var(--wa-bubble);
  border-radius: 8px 8px 8px 2px;
  padding: 8px 10px 6px;
  animation: msgIn .35s var(--ease);
}
@keyframes msgIn { from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:none;} }
.wa__msg.is-hidden { display: none; }
.wa__audio { display: flex; align-items: center; gap: 10px; min-width: 210px; }
.wa__audio-play {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
}
.wa__audio-play svg { width: 24px; height: 24px; }
.wa__audio-play[disabled] { opacity: .5; cursor: default; }
.wa__wave { flex: 1; height: 26px; display: flex; align-items: center; gap: 2px; }
.wa__wave i {
  flex: 1;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  min-width: 2px;
}
.wa__audio-avatar {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--red);
  position: relative;
}
.wa__meta {
  display: flex; justify-content: flex-end; align-items: center; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.wa__inputbar {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa-header);
  padding: 8px 10px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}
.wa__input {
  flex: 1;
  background: #2a3942;
  border-radius: 20px;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  padding: 10px 14px;
}
.wa__inputbar .ic { color: rgba(255,255,255,.55); display: grid; place-items: center; }
.wa__inputbar .ic svg { width: 22px; height: 22px; }
.wa__mic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--wa-green);
  display: grid; place-items: center;
  color: #fff;
}
.wa__mic svg { width: 22px; height: 22px; }

/* ============ TIKTOK · login pre-cargado ============ */
.ttlogin__top {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 16px;
  padding-top: max(16px, env(safe-area-inset-top));
}
.ttlogin__note { color: #fff; display: grid; place-items: center; }
.ttlogin__note svg { width: 22px; height: 22px; }
.ttlogin__title { font-size: 13px; color: rgba(255,255,255,.6); }
.ttlogin {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 22vh;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.ttlogin__label {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin: 0 0 12px;
}
.ttlogin__rule { height: 2px; background: rgba(255,255,255,.85); margin: 0 0 20px; }
.ttlogin__form { display: flex; flex-direction: column; gap: 12px; }
.ttlogin__field {
  display: flex; align-items: center;
  background: #262626;
  border: 1px solid #333;
}
.ttlogin__field input {
  flex: 1;
  background: none; border: none; outline: none;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 15px 14px;
}
.ttlogin__eye {
  background: none; border: none; color: var(--fg-muted);
  padding: 0 14px; cursor: pointer; display: grid; place-items: center;
}
.ttlogin__eye svg { width: 20px; height: 20px; }
.ttlogin__submit {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red-border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  margin-top: 6px;
}

/* ============ TIKTOK · feed / pager de videos ============ */
.ttfeed {
  position: relative;
  z-index: 2;
  flex: 1;
  overflow: hidden;
  background: #000;
}
.ttfeed__slide {
  position: absolute; inset: 0;
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.ttfeed__slide.is-active { transform: translateY(0); }
.ttfeed__slide.is-past { transform: translateY(-100%); }
.ttfeed__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #0a0a0f;
}
.ttfeed__progress {
  position: absolute; top: 40px; right: 8px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 6;
}
.ttfeed__progress span { display: flex; flex-direction: column; gap: 5px; }
.ttfeed__progress i {
  width: 3px; height: 16px; border-radius: 2px;
  background: rgba(255,255,255,.3);
}
.ttfeed__progress i.is-on { background: #fff; }
.ttfeed__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 22%, transparent 62%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
}
.ttfeed__brand {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.ttfeed__swipe {
  position: absolute; top: 14px; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  pointer-events: none;
}
.ttfeed__swipe-arrow { font-size: 18px; animation: swipeUp 1.6s ease infinite; }
@keyframes swipeUp { 0%,100%{transform:translateY(0);opacity:.5;} 50%{transform:translateY(-6px);opacity:1;} }
.ttfeed__rail {
  position: absolute; right: 10px; bottom: 96px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  color: #fff;
}
.ttfeed__ava-wrap { position: relative; margin-bottom: 4px; }
.ttfeed__ava {
  width: 46px; height: 46px; border-radius: 999px;
  object-fit: cover; border: 2px solid #fff; background: var(--red);
}
.ttfeed__ava-plus {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--red-bright); color: #fff;
  display: grid; place-items: center; font-size: 15px; line-height: 1;
}
.ttfeed__act {
  background: none; border: none; color: #fff; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.ttfeed__act svg { width: 34px; height: 34px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); }
.ttfeed__count { font-size: 12px; font-weight: 600; }
.ttfeed__caption {
  position: absolute; left: 14px; right: 76px; bottom: 84px;
  color: #fff;
}
.ttfeed__handle { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.ttfeed__text { margin: 0; font-size: 14px; line-height: 1.4; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.ttfeed__tabs {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-around;
  background: #000;
  padding: 8px 4px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}
.ttfeed__tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10px; color: rgba(255,255,255,.6);
}
.ttfeed__tab.is-active { color: #fff; }
.ttfeed__tab svg { width: 22px; height: 22px; }
.ttfeed__tab--add svg {
  width: 44px; height: 30px; color: #fff;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  border-radius: 8px; padding: 4px 6px;
}

/* ============ PAUSA (tiempo en pantalla) ============ */
.pausa {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 26px 60px;
  gap: 8px;
}
.pausa__kicker {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin: 0;
}
.pausa__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 8vw, 40px);
  margin: 2px 0 22px;
}
.pausa__stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin: 8px 0 26px;
}
.pausa__stat-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-muted);
}
.pausa__stat-num {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display);
}
.pausa__stat-num b { font-size: clamp(64px, 22vw, 110px); font-weight: 700; line-height: 1; color: #fff; }
.pausa__stat-num i { font-style: normal; font-size: 20px; color: var(--gold); letter-spacing: .08em; }
.pausa__stat-sub { font-size: 14px; color: var(--fg-muted); }
.pausa__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px; color: var(--fg);
  margin: 0;
}
.pausa__body {
  font-size: 15px; line-height: 1.5;
  color: var(--fg-muted);
  max-width: 30ch;
  margin: 8px 0 26px;
}
.pausa__cta {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red-border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 40px;
  cursor: pointer;
}

/* ============ CINE (intro cinematográfica) ============ */
.cine {
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 26px 56px;
  gap: 18px;
}
.cine__kicker {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}
.cine__vert {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 6.5vw, 30px);
  letter-spacing: .1em;
  line-height: 1.05;
  color: rgba(255,255,255,.9);
  margin: 6px 0;
}
.cine__vert span { animation: cineLetter .6s var(--ease) both; }
@keyframes cineLetter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cine__lines { margin-top: 12px; }
.cine__line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 6.5vw, 32px);
  line-height: 1.2;
  margin: 4px 0;
}
.cine__line--accent { color: var(--red-bright); font-style: italic; }
.cine__cta {
  margin-top: 20px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 44px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.cine__cta:hover { background: var(--red); border-color: var(--red-border); }
