/* Vitrina demo — landings de cliente (sonrisa, meridian, etc.) */
.ds-page { background: #0c1118; color: #e8e8e8; }
.ds-page .panel { background: #fffcf6; color: #15241e; }
.meridian-page .ds-showcase { border-top: 1px solid var(--mer-line, rgba(255,255,255,0.1)); }
.ds-hero-cine {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
  color: #f4f1ea;
  background: #0c1118;
}
.ds-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ds-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.ds-hero-cine::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(12, 17, 24, 0.92) 0%, rgba(12, 17, 24, 0.5) 60%, rgba(12, 17, 24, 0.8) 100%);
}
.ds-hero-inner { position: relative; z-index: 2; }
.ds-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3d8f85;
  margin-bottom: 8px;
}
.ds-muted { color: #9aa8b8; max-width: 42rem; line-height: 1.55; }
.ds-showcase { padding: 48px 0; border-top: 1px solid rgba(255,255,255,0.08); background: #0c1118; color: #f4f1ea; }
.ds-showcase h2 { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 10px; }
.ds-video-wrap {
  margin: 22px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 16 / 9;
  max-height: 420px;
  background: #141c27;
}
.ds-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ds-video-fallback {
  background-size: cover;
  background-position: center;
  animation: ds-kenburns 18s ease-in-out infinite alternate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}
@keyframes ds-kenburns {
  from { background-size: 100% auto; }
  to { background-size: 112% auto; }
}
.ds-video-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(12, 17, 24, 0.75);
  padding: 6px 10px;
  border-radius: 8px;
}
.ds-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  margin-top: 8px;
}
.ds-mosaic figure { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.ds-mosaic-main { grid-row: span 2; }
.ds-mosaic img { width: 100%; height: 100%; min-height: 140px; object-fit: cover; display: block; }
.ds-mosaic-main img { min-height: 300px; }
@media (max-width: 900px) {
  .ds-mosaic { grid-template-columns: 1fr; }
  .ds-mosaic-main { grid-row: auto; }
}
