.um-stream-access{
  --stream-red:#d32f2f;
  --stream-green:#19b45a;
  --stream-amber:#ff9800;
  appearance:none;
  border:1px solid rgba(211,47,47,.16);
  background:rgba(255,255,255,.92);
  color:#7c1d24;
  border-radius:999px;
  padding:10px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.um-stream-access:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.um-stream-access__text{
  white-space:nowrap;
  line-height:1;
}

.um-stream-access__meta{
  font-size:12px;
  font-weight:600;
  color:#6b7280;
  white-space:nowrap;
}

.um-stream-access__dot,
.um-stream-badge__dot,
.um-stream-offbox__dot{
  width:12px;
  height:12px;
  min-width:12px;
  border-radius:50%;
  display:inline-block;
}

/* OFF / ENDED */
.um-stream-access.is-off .um-stream-access__dot,
.um-stream-access.is-ended .um-stream-access__dot,
.um-stream-offbox__dot{
  background:var(--stream-red);
  box-shadow:0 0 0 4px rgba(211,47,47,.12);
}

/* COUNTDOWN */
.um-stream-access.is-countdown .um-stream-access__dot,
.um-stream-badge.is-countdown .um-stream-badge__dot{
  background:var(--stream-amber);
  box-shadow:0 0 0 4px rgba(255,152,0,.12);
}

/* LIVE */
.um-stream-access.is-live,
.um-stream-badge.is-live{
  color:#0f6a38;
  border-color:rgba(28,140,78,.24);
  background:rgba(240,255,247,.98);
}

.um-stream-access.is-live .um-stream-access__dot,
.um-stream-badge.is-live .um-stream-badge__dot{
  background:var(--stream-green);
  animation:umStreamPulse 1.25s ease-in-out infinite;
}

.um-stream-modal[hidden]{
  display:none !important;
}

.um-stream-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  overflow:hidden;
}

.um-stream-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(12,16,24,.42);
  backdrop-filter:blur(10px) saturate(120%);
  -webkit-backdrop-filter:blur(10px) saturate(120%);
}

.um-stream-modal__dialog{
  position:relative;
  width:min(96vw, 1500px);
  height:min(92dvh, 920px);
  margin:0 auto;
  border-radius:28px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.38);
  overflow:hidden;
  box-shadow:
    0 28px 70px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  z-index:1;
  display:grid;
  grid-template-rows:auto 1fr auto;
}

/* HEADER */
.um-stream-modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 16px 9px;
  background:linear-gradient(180deg, rgba(255,255,255,.42) 0%, rgba(255,248,248,.28) 100%);
  border-bottom:1px solid rgba(255,255,255,.30);
  min-height:64px;
}

.um-stream-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.um-stream-brand__logo{
  width:48px;
  height:48px;
  min-width:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.um-stream-brand__logo--svg svg{
  display:block;
  width:100%;
  height:100%;
}

.um-stream-brand__text{
  min-width:0;
}

.um-stream-title{
  margin:0;
  color:#243047;
  font-size:20px;
  line-height:1.03;
  font-weight:800;
  letter-spacing:-.02em;
}

.um-stream-header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.um-stream-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(211,47,47,.12);
  color:#7c1d24;
  white-space:nowrap;
  font-weight:800;
  font-size:13px;
  max-width:100%;
}

.um-stream-modal__close{
  appearance:none;
  position:static;
  flex-shrink:0;
  width:40px;
  height:40px;
  border:0;
  border-radius:999px;
  background:#d32f2f;
  color:#fff;
  font-size:25px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(211,47,47,.22);
}

/* BODY */
.um-stream-modal__body{
  padding:8px 12px 8px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:0;
  background:rgba(255,255,255,.20);
}

.um-stream-copy{
  margin:0;
  font-size:13px;
  line-height:1.35;
  color:#445063;
  flex:0 0 auto;
  padding:0 4px;
  text-shadow:0 1px 0 rgba(255,255,255,.18);
}

.um-stream-panel{
  min-height:0;
  flex:1 1 auto;
}

.um-stream-panel[hidden]{
  display:none !important;
}

/* COUNTDOWN */
.um-stream-countdown{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.um-stream-timebox{
  background:#fff7f7;
  border:1px solid rgba(211,47,47,.12);
  border-radius:18px;
  padding:16px 12px;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.um-stream-timebox strong{
  display:block;
  font-size:34px;
  line-height:1;
  color:#1f2937;
  margin-bottom:8px;
}

.um-stream-timebox span{
  display:block;
  font-size:12px;
  color:#6b7280;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}

/* PLAYER */
.um-stream-player-wrap{
  background:#000;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(0,0,0,.16);
  width:100%;
  height:100%;
  min-height:320px;
  max-height:calc(92dvh - 170px);
}

.um-stream-player{
  display:block;
  width:100%;
  height:100%;
  border:0;
}

/* OFF */
.um-stream-panel--off{
  display:flex;
  justify-content:center;
  align-items:flex-start;
}

.um-stream-offbox{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:18px;
  background:#fff6f6;
  color:#7c1d24;
  border:1px solid rgba(211,47,47,.10);
  font-weight:700;
  margin:0 auto;
  width:fit-content;
  max-width:100%;
  justify-content:center;
}

/* CHIP / BOTÓN DEL MEDIO */
.um-stream-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:fit-content;
  margin:0 auto 4px;
  padding:10px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  border:1px solid rgba(121,202,233,.70);
  background:rgba(121,202,233,.18);
  color:#25647E;
  box-shadow:0 10px 22px rgba(15,23,42,.08);
  transition:transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
}

.um-stream-chip[hidden],
.um-stream-chip:empty{
  display:none !important;
}

.um-stream-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(15,23,42,.12);
  background:rgba(121,202,233,.24);
}

.um-stream-root.is-live .um-stream-chip{
  border-color:rgba(34,197,94,.35);
  background:rgba(34,197,94,.10);
  color:#166534;
}

.um-stream-root.is-off .um-stream-chip,
.um-stream-root.is-ended .um-stream-chip{
  border-color:rgba(211,47,47,.28);
  background:rgba(211,47,47,.08);
  color:#9f1239;
}

/* FOOTER: SOLO LOS DOS BOTONES DE ABAJO */
.um-stream-modal__footer{
  padding:12px 18px 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
  border-top:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.34);
  min-height:72px;
  overflow:visible;
}

.um-stream-modal__footer > .um-stream-pill{
  --pill-bg: rgba(56,60,68,.62);
  --pill-border: rgba(255,255,255,.20);
  --pill-text: #f8fafc;
  --pill-shadow: 0 16px 32px rgba(0,0,0,.18);

  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:320px;
  max-width:320px;
  min-width:0;
  min-height:54px;
  padding:0 18px 0 42px;
  border-radius:999px;
  text-decoration:none;
  color:var(--pill-text);
  font-weight:800;
  font-size:14px;
  line-height:1.1;
  text-align:center;
  letter-spacing:-0.02em;
  overflow:visible;

  background:
    linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 38%, rgba(255,255,255,.02) 100%),
    var(--pill-bg);
  border:1px solid var(--pill-border);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(255,255,255,.04),
    0 8px 18px rgba(0,0,0,.10),
    var(--pill-shadow);
  backdrop-filter:blur(18px) saturate(135%);
  -webkit-backdrop-filter:blur(18px) saturate(135%);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    filter .18s ease,
    background .18s ease;
}

.um-stream-modal__footer > .um-stream-pill::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.07) 34%, rgba(255,255,255,0) 100%);
  opacity:.92;
}

.um-stream-modal__footer > .um-stream-pill::after{
  content:"";
  position:absolute;
  left:16px;
  top:50%;
  width:16px;
  height:16px;
  border-radius:999px;
  transform:translateY(-50%) scale(1);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.10),
    0 5px 14px rgba(0,0,0,.15),
    0 0 0 0 rgba(255,255,255,0);
  animation:umStreamPillPulse 2.4s ease-in-out infinite;
  transform-origin:center;
  will-change:transform, box-shadow;
}

.um-stream-modal__footer > .um-stream-pill:hover,
.um-stream-modal__footer > .um-stream-pill:focus-visible{
  transform:translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 -1px 0 rgba(255,255,255,.05),
    0 20px 38px rgba(0,0,0,.20);
  filter:brightness(1.03);
}

.um-stream-modal__footer > .um-stream-pill:focus-visible{
  outline:none;
  border-color:rgba(255,255,255,.42);
}

.um-stream-modal__footer > .um-stream-pill .um-stream-pill__label{
  position:relative;
  z-index:2;
  display:block;
  width:100%;
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos{
  --pill-bg: linear-gradient(135deg, rgba(60,64,72,.72) 0%, rgba(83,88,97,.58) 100%);
  --pill-border: rgba(255,255,255,.18);
  --pill-text: #f8fafc;
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos::after{
  background:radial-gradient(circle at 30% 30%, #ff9a9a 0%, #D32F2F 72%);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda{
  --pill-bg: linear-gradient(135deg, rgba(68,72,80,.72) 0%, rgba(92,98,108,.58) 100%);
  --pill-border: rgba(255,255,255,.18);
  --pill-text: #f8fafc;
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda::after{
  background:radial-gradient(circle at 30% 30%, #ff9a9a 0%, #D32F2F 72%);
}

/* MINI PREVIEW CON IMAGEN REAL */
.um-stream-modal__footer > .um-stream-pill .um-stream-pill__preview{
  position:absolute;
  top:calc(50% - 55px);
  width:260px;
  padding:10px;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.10) 100%),
    rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:
    0 18px 42px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(18px) saturate(145%);
  -webkit-backdrop-filter:blur(18px) saturate(145%);
  opacity:0;
  visibility:hidden;
  pointer-events:auto;
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
  z-index:30;
}

/* TURNOS abre hacia la izquierda */
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview{
  left:auto;
  right:calc(100% + 14px);
  bottom:auto;
  transform:translateY(-50%) translateX(8px) scale(.96);
}

/* TIENDA abre hacia la derecha */
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview{
  left:calc(100% + 14px);
  right:auto;
  bottom:auto;
  transform:translateY(-50%) translateX(-8px) scale(.96);
}

/* puente invisible horizontal */
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:100%;
  width:18px;
  background:transparent;
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  right:100%;
  width:18px;
  background:transparent;
}

/* flecha lateral */
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview::after{
  content:"";
  position:absolute;
  right:-6px;
  top:calc(50% + 46px);
  width:12px;
  height:12px;
  transform:translateY(-50%) rotate(45deg);
  background:rgba(255,255,255,.14);
  border-top:1px solid rgba(255,255,255,.18);
  border-right:1px solid rgba(255,255,255,.18);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview::after{
  content:"";
  position:absolute;
  left:-6px;
  top:calc(50% + 46px);
  width:12px;
  height:12px;
  transform:translateY(-50%) rotate(45deg);
  background:rgba(255,255,255,.14);
  border-left:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos:hover .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos:focus-visible .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview:hover{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0) scale(1);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda:hover .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda:focus-visible .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview:hover{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0) scale(1);
}

.um-stream-pill__preview-shot{
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 8px 20px rgba(0,0,0,.14);
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  overflow:hidden;
}

.um-stream-pill__preview-shot--turnos{
  background-image:url('/stream/assets/img/stream/preview-turnos.webp?v=2');
}

.um-stream-pill__preview-shot--tienda{
  background-image:url('/stream/assets/img/stream/preview-tienda.webp?v=2');
}

.um-stream-pill__preview-caption{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  line-height:1;
  letter-spacing:.01em;
  background:rgba(255,255,255,.72);
  color:#1f2937;
  box-shadow:0 6px 16px rgba(0,0,0,.10);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview-caption,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview-caption{
  color:#2f3640;
}

@keyframes umStreamPillPulse{
  0%{
    transform:translateY(-50%) scale(1);
    box-shadow:
      0 0 0 4px rgba(255,255,255,.10),
      0 5px 14px rgba(0,0,0,.15),
      0 0 0 0 rgba(255,255,255,0);
  }
  30%{
    transform:translateY(-50%) scale(1.12);
    box-shadow:
      0 0 0 4px rgba(255,255,255,.11),
      0 6px 15px rgba(0,0,0,.16),
      0 0 0 7px rgba(255,255,255,.08);
  }
  60%{
    transform:translateY(-50%) scale(1);
    box-shadow:
      0 0 0 4px rgba(255,255,255,.10),
      0 5px 14px rgba(0,0,0,.15),
      0 0 0 12px rgba(255,255,255,0);
  }
  100%{
    transform:translateY(-50%) scale(1);
    box-shadow:
      0 0 0 4px rgba(255,255,255,.10),
      0 5px 14px rgba(0,0,0,.15),
      0 0 0 0 rgba(255,255,255,0);
  }
}

/* OFF STAGE · PROFESIONALES */
.um-stream-offstage{
  width:100%;
  max-width:760px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  padding:6px 0 16px;
}

.um-stream-offgallery{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 280px));
  justify-content:center;
  gap:26px;
}

.um-stream-offcard{
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.um-stream-offcard__media{
  position:relative;
  width:100%;
  aspect-ratio:4 / 5;
  border-radius:26px;
  overflow:hidden;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.30);
  box-shadow:
    0 18px 36px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.um-stream-offcard__media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}

.um-stream-offcard__media::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 30%, rgba(0,0,0,.06) 100%);
  z-index:1;
}

.um-stream-offcard__media::after{
  content:"";
  position:absolute;
  top:-14%;
  left:-46%;
  width:30%;
  height:128%;
  pointer-events:none;
  z-index:2;
  transform:skewX(-18deg);
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.08) 20%, rgba(255,255,255,.34) 50%, rgba(255,255,255,.08) 80%, rgba(255,255,255,0) 100%);
  filter:blur(2px);
  opacity:.9;
  animation:umStreamOffSweep 6s ease-in-out infinite;
}

.um-stream-offcard:nth-child(2) .um-stream-offcard__media::after{
  animation-delay:1.6s;
}

.um-stream-offcard__name{
  display:block;
  text-align:center;
  font-family:"Montserrat","Avenir Next","Poppins","Segoe UI",Arial,sans-serif;
  font-style:normal;
  font-weight:800;
  font-size:18px;
  line-height:1.1;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#4b5563;
  white-space:nowrap;
  text-shadow:
    0 1px 0 rgba(255,255,255,.45),
    0 8px 18px rgba(139,38,53,.08);
}

@keyframes umStreamOffSweep{
  0%{ left:-46%; opacity:0; }
  10%{ opacity:.68; }
  45%{ left:118%; opacity:.82; }
  56%{ left:118%; opacity:0; }
  100%{ left:118%; opacity:0; }
}

@media (max-width: 980px){
  .um-stream-offgallery{
    grid-template-columns:repeat(2, minmax(220px, 1fr));
    gap:22px;
  }

  .um-stream-offcard__name{
    font-size:16px;
    letter-spacing:.03em;
  }
}

@media (max-width: 720px){
  .um-stream-offstage{
    gap:16px;
  }

  .um-stream-offgallery{
    grid-template-columns:minmax(0, 1fr);
    max-width:340px;
    gap:18px;
  }

  .um-stream-offcard__name{
    font-size:17px;
    white-space:normal;
    text-align:center;
  }
}
@media (max-width: 768px){
  .um-stream-modal{
    padding:10px;
    align-items:flex-start;
  }

  .um-stream-modal__dialog{
    width:calc(100vw - 20px);
    height:calc(100dvh - 20px);
    max-height:calc(100dvh - 20px);
    border-radius:24px;
  }

  .um-stream-modal__header{
    padding:10px 12px 8px;
    min-height:56px;
    gap:10px;
  }

  .um-stream-brand{
    gap:10px;
  }

  .um-stream-brand__logo{
    width:42px;
    height:42px;
    min-width:42px;
  }

  .um-stream-title{
    font-size:17px;
    line-height:1.05;
  }

  .um-stream-header-actions{
    gap:8px;
  }

  .um-stream-badge{
    padding:7px 10px;
    font-size:12px;
    max-width:48vw;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .um-stream-modal__close{
    width:38px;
    height:38px;
    font-size:23px;
  }

  .um-stream-modal__body{
    padding:8px 8px 10px;
    gap:10px;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
  }

  .um-stream-copy{
    font-size:12px;
    line-height:1.3;
    padding:0 2px;
  }

  .um-stream-chip{
    max-width:100%;
    font-size:12px;
    padding:9px 14px;
    text-align:center;
  }

  .um-stream-countdown{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
  }

  .um-stream-timebox{
    padding:12px 10px;
    border-radius:16px;
  }

  .um-stream-timebox strong{
    font-size:28px;
    margin-bottom:6px;
  }

  .um-stream-timebox span{
    font-size:11px;
  }

  .um-stream-player-wrap{
    min-height:220px;
    max-height:none;
    border-radius:18px;
  }

  .um-stream-offstage{
    max-width:100%;
    gap:14px;
    padding:4px 0 10px;
  }

  .um-stream-offbox{
    width:100%;
    max-width:100%;
    padding:12px 14px;
    font-size:13px;
    line-height:1.25;
    text-align:left;
  }

  .um-stream-offgallery{
    grid-template-columns:minmax(0,1fr);
    max-width:320px;
    gap:16px;
  }

  .um-stream-offcard{
    gap:8px;
  }

  .um-stream-offcard__media{
    border-radius:22px;
    aspect-ratio:4 / 4.9;
  }

  .um-stream-offcard__name{
    font-size:15px;
    line-height:1.15;
    white-space:normal;
    text-align:center;
  }

  .um-stream-modal__footer{
    padding:10px 10px 12px;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
    min-height:auto;
  }

  .um-stream-modal__footer > .um-stream-pill{
    width:100%;
    max-width:100%;
    min-height:50px;
    padding:0 16px 0 40px;
    font-size:13px;
  }

  .um-stream-modal__footer > .um-stream-pill .um-stream-pill__preview{
    display:none;
  }
}

@media (max-width: 480px){
  .um-stream-modal{
    padding:8px;
  }

  .um-stream-modal__dialog{
    width:calc(100vw - 16px);
    height:calc(100dvh - 16px);
    max-height:calc(100dvh - 16px);
    border-radius:22px;
  }

  .um-stream-modal__header{
    padding:9px 10px 8px;
  }

  .um-stream-brand__logo{
    width:40px;
    height:40px;
    min-width:40px;
  }

  .um-stream-title{
    font-size:16px;
  }

  .um-stream-badge{
    font-size:11px;
    padding:6px 9px;
    max-width:44vw;
  }

  .um-stream-offbox{
    font-size:12px;
    padding:11px 12px;
  }

  .um-stream-offgallery{
    max-width:280px;
  }

  .um-stream-offcard__name{
    font-size:14px;
  }

  .um-stream-modal__footer > .um-stream-pill{
    min-height:48px;
    font-size:12px;
  }
}
@media (max-width: 1180px) and (min-width: 769px){
  .um-stream-modal__footer > .um-stream-pill .um-stream-pill__preview{
    width:220px;
  }
}
/* =========================================================
   BOTONES FOOTER · versión más chica + glass grafito sutil
   pegar al final del CSS
   ========================================================= */

.um-stream-modal__footer{
  padding:10px 16px 14px;
  gap:10px;
  min-height:auto;
  background:rgba(255,255,255,.18);
  border-top:1px solid rgba(255,255,255,.22);
}

/* botón base */
.um-stream-modal__footer > .um-stream-pill{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:290px;
  max-width:290px;
  min-width:0;
  min-height:46px;
  padding:0 16px 0 36px;
  border-radius:999px;
  text-decoration:none;
  overflow:visible;

  background:
    linear-gradient(180deg, rgba(78,82,90,.42) 0%, rgba(54,58,66,.34) 100%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.10),
    0 10px 22px rgba(15,23,42,.14);
  backdrop-filter:blur(16px) saturate(120%);
  -webkit-backdrop-filter:blur(16px) saturate(120%);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease;
}

/* brillo superior mucho más suave */
.um-stream-modal__footer > .um-stream-pill::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 65%);
  opacity:.8;
}

/* punto rojo sutil */
.um-stream-modal__footer > .um-stream-pill::after{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  width:12px;
  height:12px;
  border-radius:999px;
  transform:translateY(-50%);
  background:radial-gradient(circle at 30% 30%, #ff7a7a 0%, #D32F2F 72%);
  box-shadow:
    0 0 0 5px rgba(211,47,47,.08),
    0 4px 10px rgba(0,0,0,.14);
  animation:none;
}

/* hover apenas perceptible */
.um-stream-modal__footer > .um-stream-pill:hover,
.um-stream-modal__footer > .um-stream-pill:focus-visible{
  transform:translateY(-1px);
  background:
    linear-gradient(180deg, rgba(84,88,96,.48) 0%, rgba(58,62,70,.38) 100%);
  border-color:rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    0 14px 28px rgba(15,23,42,.16);
}

.um-stream-modal__footer > .um-stream-pill:focus-visible{
  outline:none;
}

/* texto más fino y menos pesado */
.um-stream-modal__footer > .um-stream-pill .um-stream-pill__label{
  position:relative;
  z-index:2;
  display:block;
  width:100%;
  text-align:center;
  font-family:Inter, "Avenir Next", "Segoe UI", sans-serif;
  font-size:13px;
  line-height:1.1;
  font-weight:600;
  letter-spacing:-0.01em;
  color:rgba(255,255,255,.92);
  text-shadow:0 1px 0 rgba(0,0,0,.10);
}

/* misma familia para ambos, sin diferencias exageradas */
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda{
  --pill-bg:unset;
  --pill-border:unset;
  --pill-text:unset;
}

/* preview alineado al centro del botón */
.um-stream-modal__footer > .um-stream-pill .um-stream-pill__preview{
  top:50%;
  width:240px;
  padding:9px;
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.10) 100%),
    rgba(45,49,57,.46);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 16px 34px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview{
  right:calc(100% + 12px);
  transform:translateY(-50%) translateX(8px) scale(.97);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview{
  left:calc(100% + 12px);
  transform:translateY(-50%) translateX(-8px) scale(.97);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview::after{
  top:50%;
  right:-6px;
  width:10px;
  height:10px;
  transform:translateY(-50%) rotate(45deg);
  background:rgba(58,62,70,.88);
  border-top:1px solid rgba(255,255,255,.14);
  border-right:1px solid rgba(255,255,255,.14);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview::after{
  top:50%;
  left:-6px;
  width:10px;
  height:10px;
  transform:translateY(-50%) rotate(45deg);
  background:rgba(58,62,70,.88);
  border-left:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos:hover .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos:focus-visible .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--turnos .um-stream-pill__preview:hover{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0) scale(1);
}

.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda:hover .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda:focus-visible .um-stream-pill__preview,
.um-stream-modal__footer > .um-stream-pill.um-stream-pill--tienda .um-stream-pill__preview:hover{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0) scale(1);
}

.um-stream-pill__preview-caption{
  background:rgba(255,255,255,.78);
  color:#27303b;
  font-size:11px;
  font-weight:700;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

/* responsive */
@media (max-width: 768px){
  .um-stream-modal__footer{
    padding:10px 10px 12px;
    gap:9px;
  }

  .um-stream-modal__footer > .um-stream-pill{
    width:100%;
    max-width:100%;
    min-height:44px;
    padding:0 14px 0 34px;
  }

  .um-stream-modal__footer > .um-stream-pill::after{
    left:13px;
    width:11px;
    height:11px;
    box-shadow:
      0 0 0 4px rgba(211,47,47,.08),
      0 3px 8px rgba(0,0,0,.12);
  }

  .um-stream-modal__footer > .um-stream-pill .um-stream-pill__label{
    font-size:12px;
  }

  .um-stream-modal__footer > .um-stream-pill .um-stream-pill__preview{
    display:none;
  }
}
/* quitar preview de los botones */
.um-stream-modal__footer > .um-stream-pill .um-stream-pill__preview{
  display:none !important;
}
/* =========================================================
   HEADER RICO · clima + redes
   ========================================================= */
.um-stream-modal__header--rich{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) auto auto;
  align-items:center;
  gap:18px;
  padding:12px 18px 11px;
  min-height:86px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,.18) 100%),
    linear-gradient(90deg, rgba(20,24,34,.24) 0%, rgba(20,24,34,.08) 100%);
  border-bottom:1px solid rgba(255,255,255,.22);
}

.um-stream-topbar__brand{
  min-width:0;
}

.um-stream-topbar__brand .um-stream-brand{
  gap:12px;
}

.um-stream-topbar__eyebrow{
  display:block;
  margin:0 0 4px;
  font-size:10px;
  line-height:1;
  letter-spacing:.18em;
  font-weight:800;
  color:rgba(36,48,71,.62);
}

.um-stream-topbar__brand .um-stream-badge{
  margin-top:8px;
  width:fit-content;
  max-width:100%;
}

.um-stream-topbar__weather{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:0;
  min-width:auto;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.um-stream-weather__place{
  display:flex;
  flex-direction:column;
  line-height:1;
  text-align:right;
}

.um-stream-weather__place strong{
  font-size:15px;
  font-weight:900;
  letter-spacing:-.02em;
  color:#ffffff;
  text-shadow:0 1px 10px rgba(0,0,0,.16);
}

.um-stream-weather__place span{
  margin-top:4px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.10em;
  color:rgba(255,255,255,.82);
}

.um-stream-weather__icon{
  width:46px;
  height:46px;
  color:#ffffff;
  opacity:.96;
  filter:drop-shadow(0 6px 16px rgba(0,0,0,.16));
  flex-shrink:0;
}

.um-stream-weather__icon svg{
  display:block;
  width:100%;
  height:100%;
}

.um-stream-weather__temp{
  display:flex;
  flex-direction:column;
  line-height:1;
  text-align:left;
  min-width:90px;
}

.um-stream-weather__temp strong{
  font-size:20px;
  font-weight:800;
  color:#ffffff;
  letter-spacing:-.03em;
  text-shadow:0 1px 10px rgba(0,0,0,.16);
}

.um-stream-weather__temp span{
  margin-top:6px;
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.88);
  text-transform:lowercase;
}

.um-stream-topbar__right{
  display:flex;
  align-items:center;
  gap:10px;
  justify-self:end;
}

.um-stream-socials{
  display:flex;
  align-items:center;
  gap:16px;
}

.um-stream-socials{
  display:flex;
  align-items:center;
  gap:14px;
}

.um-stream-social{
  width:auto;
  height:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0 !important;
  border-radius:0;
  text-decoration:none;
  color:#5f6b80;
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  transition:transform .18s ease, opacity .18s ease, color .18s ease;
}

.um-stream-social::before,
.um-stream-social::after{
  content:none !important;
  display:none !important;
}

.um-stream-social:hover,
.um-stream-social:focus-visible{
  transform:translateY(-1px);
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  color:#4d5a70;
  opacity:.92;
  outline:none;
}

.um-stream-social svg{
  width:26px;
  height:26px;
  display:block;
}

.um-stream-social--whatsapp,
.um-stream-social--instagram,
.um-stream-social--facebook{
  color:#5f6b80;
}

.um-stream-modal__header--rich .um-stream-modal__close{
  width:42px;
  height:42px;
  font-size:24px;
  box-shadow:0 10px 22px rgba(211,47,47,.20);
}

/* responsive */
@media (max-width: 1180px){
  .um-stream-modal__header--rich{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
    gap:12px;
    padding:12px 14px;
  }

  .um-stream-topbar__brand{
    width:100%;
  }

  .um-stream-topbar__brand .um-stream-brand{
    justify-content:center;
  }

  .um-stream-topbar__brand .um-stream-badge{
    margin-left:auto;
    margin-right:auto;
  }

.um-stream-topbar__weather{
  min-width:0;
  width:auto;
  max-width:100%;
}

  .um-stream-topbar__right{
    justify-self:center;
  }
}

@media (max-width: 768px){
  .um-stream-modal__header--rich{
    padding:10px 10px 12px;
    gap:10px;
    min-height:auto;
  }

  .um-stream-topbar__brand .um-stream-brand{
    align-items:center;
  }

  .um-stream-topbar__eyebrow{
    font-size:9px;
  }

.um-stream-topbar__weather{
  width:auto;
  gap:10px;
  padding:0;
  border-radius:0;
}
  .um-stream-weather__place strong{
    font-size:13px;
  }

  .um-stream-weather__place span{
    font-size:10px;
  }

  .um-stream-weather__icon{
    width:38px;
    height:38px;
  }

  .um-stream-weather__temp strong{
    font-size:18px;
  }

  .um-stream-weather__temp span{
    font-size:11px;
  }

  .um-stream-topbar__right{
    width:100%;
    justify-content:center;
  }

.um-stream-socials{
  gap:12px;
}

.um-stream-social{
  width:auto;
  height:auto;
}

.um-stream-social svg{
  width:23px;
  height:23px;
}

  .um-stream-modal__header--rich .um-stream-modal__close{
    width:38px;
    height:38px;
    font-size:22px;
  }
}

@media (max-width: 480px){
  .um-stream-topbar__weather{
    display:grid;
    grid-template-columns:auto auto auto;
    align-items:center;
    justify-content:center;
  }

  .um-stream-weather__place{
    text-align:center;
  }

  .um-stream-weather__temp{
    text-align:center;
    min-width:auto;
  }
}