/* =====================================================
   EXPERIENCE 2.0 — layout "estação de transmissão"
   Cada grupo de conteúdo é um canal. Componentes novos:
   stage-hero, channel-list, channel, h-scroll, flow-rows,
   contact-stage, spy-rail, site-footer.
   ===================================================== */

section[id],
.channel {
  scroll-margin-top: 72px;
}

/* ---------- HERO / PALCO ---------- */
.stage-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr;
  min-height: calc(100svh - 71px);
  padding: clamp(18px, 3vw, 34px) var(--pad) clamp(74px, 9vh, 110px);
  overflow: hidden;
}

.stage-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--metal-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stage-meta .live {
  color: var(--chrome);
}

.stage-meta .live::after {
  content: "●";
  margin-left: 8px;
  animation: live-blink 1.8s steps(2, end) infinite;
}

@keyframes live-blink {
  50% {
    opacity: 0.15;
  }
}

.stage-center {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  text-align: center;
}

.stage-center .poster-title {
  max-width: none;
  margin-top: 0;
  font-size: clamp(3.2rem, 13vw, 12.5rem);
  line-height: 0.9;
  white-space: nowrap;
}

/* Nome do artista — wordmark limpo em minúsculo */
.poster-title.artist-name {
  position: relative;
  font-family: var(--font-body);
  font-weight: 700;
  font-stretch: normal;
  letter-spacing: -0.02em;
}

.stage-center .poster-title.artist-name {
  font-size: clamp(2.6rem, 10vw, 9rem);
  line-height: 0.95;
}

/* quando o efeito de partículas está ativo, o texto real fica invisível
   (mas continua no DOM para leitores de tela) e as partículas o desenham */
.artist-name.is-particled {
  color: transparent;
}

.artist-name .name-particles {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* o canvas é maior que o texto (margem p/ os grãos); não deixar o reset
     de mídia (max-width:100%) encolher e esmagar o desenho */
  max-width: none;
  max-height: none;
  pointer-events: none;
}

.stage-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  max-width: 860px;
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stage-roles span + span::before {
  content: "/";
  margin: 0 14px;
  color: var(--metal-soft);
}

.stage-lede {
  max-width: 640px;
  margin-top: 0;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.stage-audio {
  margin: 22px auto 0;
  justify-self: center;
}

.stage-audio[open] {
  width: min(100%, 560px);
}

.stage-audio[open] .audio-frame {
  width: 100%;
}

/* ---------- GUIA DE CANAIS (home) ---------- */
.channel-intro {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(26px, 6vw, 80px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 118px) var(--pad) clamp(30px, 4vw, 52px);
}

.channel-intro p.support {
  max-width: 640px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px) var(--pad) clamp(22px, 3vw, 38px);
}

.list-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  max-width: none;
}

/* ---------- MOSAICO DE TRABALHOS (home) ---------- */
.work-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(220px, 24vw, 320px);
  gap: 14px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 6vw, 70px);
}

.mosaic-card {
  min-height: 0;
}

.mosaic-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-card strong {
  max-width: 16ch;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
}

.mosaic-featured strong {
  max-width: 14ch;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.mosaic-arrow {
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--chrome);
  font-size: 1.05rem;
  font-style: normal;
  transition: transform 320ms var(--ease-out), background 260ms ease, color 260ms ease;
}

.mosaic-card:hover .mosaic-arrow {
  background: var(--chrome);
  color: var(--bg-deep);
  transform: rotate(45deg);
}

.channel-list {
  border-top: 1px solid var(--line);
}

.channel-row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 64px;
  align-items: center;
  gap: 22px;
  padding: clamp(22px, 3.4vw, 38px) var(--pad);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
}

.channel-row::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--chrome);
  transform: translateY(101%);
  transition: transform 420ms var(--ease-out);
}

.channel-row:hover::after,
.channel-row:focus-visible::after {
  transform: none;
}

.channel-row:hover,
.channel-row:focus-visible {
  color: var(--bg-deep);
}

.ch-num {
  color: var(--metal-soft);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  transition: color 260ms ease;
}

.ch-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.ch-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.channel-row:hover .ch-num,
.channel-row:hover .ch-meta {
  color: var(--bg-deep);
}

.ch-arrow {
  justify-self: end;
  font-size: 1.7rem;
  line-height: 1;
  transition: transform 320ms var(--ease-out);
}

.channel-row:hover .ch-arrow {
  transform: rotate(-45deg);
}

.channel-preview {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: min(400px, 30vw);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
  background: #000;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 260ms ease;
  will-change: transform;
}

.channel-preview.is-on {
  opacity: 1;
}

.channel-preview img,
.channel-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06);
}

/* ---------- APRESENTAÇÃO (home) ---------- */
.about-tease {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) 1fr;
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 140px) var(--pad);
}

.about-tease figure {
  position: relative;
  padding: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.3);
}

.about-tease figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.06);
}

.about-tease figure figcaption {
  padding: 8px 2px 0;
  border-top: 0;
  color: var(--metal-soft);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.about-tease .support {
  max-width: 56ch;
  margin-top: 18px;
}

.about-tease .button {
  margin-top: 28px;
}

.data-chips {
  display: flex;
  margin-top: 30px;
  border: 1px solid var(--line);
}

.data-chips article {
  flex: 1;
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.data-chips article:last-child {
  border-right: 0;
}

.data-chips strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.data-chips span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- CANAIS (página de projetos) ---------- */
.channel {
  position: relative;
  padding: clamp(72px, 10vw, 150px) 0 clamp(60px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.channel-head {
  position: relative;
  isolation: isolate;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.ch-index {
  position: absolute;
  right: var(--pad);
  top: -0.28em;
  z-index: -1;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 16rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(238, 243, 245, 0.15);
  pointer-events: none;
  user-select: none;
}

.channel-head h2 {
  margin-top: 14px;
  text-wrap: balance;
}

.channel-head .support {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.channel-inner {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  width: min(100%, var(--max));
  margin: clamp(30px, 5vw, 60px) auto 0;
  padding: 0 var(--pad);
}

.channel-inner > .support {
  max-width: 720px;
  font-size: 1.05rem;
}

.feature-title {
  max-width: 14ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Eventos — shows individuais */
.event-show {
  display: grid;
  gap: clamp(24px, 3.6vw, 44px);
}

.event-show + .event-show {
  margin-top: clamp(44px, 6vw, 80px);
  padding-top: clamp(44px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.event-head {
  display: grid;
  gap: 12px;
}

#eventos-title {
  max-width: none;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}

.event-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.event-show h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.4rem);
  line-height: 1;
  text-wrap: balance;
}

.event-copy {
  column-count: 2;
  column-gap: clamp(32px, 4vw, 64px);
}

.event-copy p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  break-inside: avoid;
}

.event-credits {
  column-span: all;
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.credit-row {
  display: grid;
  grid-template-columns: minmax(120px, 168px) minmax(0, 1fr);
  gap: 4px 28px;
  align-items: baseline;
}

.credit-row dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.credit-row dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .credit-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* galerias */
.event-gallery {
  display: grid;
  gap: 14px;
}

.event-gallery.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-gallery.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.event-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-photos.cols-2 .event-shot img {
  aspect-ratio: 3 / 4;
}

.event-photos.cols-3 .event-shot img {
  aspect-ratio: 4 / 3;
}

.event-videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-video {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.event-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

/* a foto de destaque também abre no lightbox */
.event-show .wide-frame {
  cursor: pointer;
}

.event-media-credit {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.event-media-credit a {
  color: var(--soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(220, 228, 234, 0.4);
}

.event-media-credit a:hover {
  color: var(--ink);
}

@media (max-width: 720px) {
  .event-copy {
    column-count: 1;
  }

  .event-gallery.cols-2,
  .event-gallery.cols-3,
  .event-videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* alterna a direção dos cases de produção */
.channel .music-case:nth-of-type(even) {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
}

.channel .music-case:nth-of-type(even) .case-copy {
  order: 2;
}

.channel .music-case:nth-of-type(even) .case-media {
  order: 1;
}

.channel .music-case:nth-of-type(even) .case-embed {
  order: 3;
  grid-column: 1 / 2;
}

/* ---------- GALERIA HORIZONTAL (tecnologia) ---------- */
.h-scroll {
  position: relative;
}

.h-sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  height: 100svh;
  overflow: hidden;
}

.h-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  padding: 0 var(--pad);
  will-change: transform;
}

.h-card {
  position: relative;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.h-card video {
  display: block;
  width: auto;
  height: min(62vh, 560px);
  max-width: 80vw;
}

.h-card figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 9px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.6);
  color: var(--chrome);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.h-lead {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: min(340px, 74vw);
  min-height: min(62vh, 560px);
  padding: clamp(20px, 3vw, 34px);
  border: 1px dashed var(--line-strong);
  background: transparent;
}

.h-lead strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.h-lead span {
  color: var(--metal-soft);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- TRILHO ESPIÃO (scrollspy) ---------- */
.spy-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.spy-rail a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.spy-rail a::after {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width 300ms var(--ease-out);
}

.spy-rail a span {
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 260ms ease, transform 300ms var(--ease-out);
}

.spy-rail a:hover,
.spy-rail a.is-active {
  color: var(--chrome);
}

.spy-rail a:hover span,
.spy-rail a.is-active span {
  opacity: 1;
  transform: none;
}

.spy-rail a.is-active::after {
  width: 32px;
}

/* ---------- EDITORIAL (sobre) ---------- */
.bio-editorial {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) 1fr;
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
}

.bio-portrait {
  position: sticky;
  top: 100px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.3);
}

.bio-portrait img {
  border: 1px solid var(--line);
  filter: saturate(1.02) contrast(1.06);
}

.bio-portrait figcaption {
  padding: 8px 2px 0;
  border-top: 0;
  color: var(--metal-soft);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.bio-body {
  display: grid;
  gap: 18px;
}

.bio-body h2 {
  margin-bottom: 6px;
}

.bio-lead {
  color: var(--soft);
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  line-height: 1.6;
}

/* ---------- LINHAS DE FLUXO (trajetória, atuação, skills) ---------- */
.flow-rows {
  margin-top: clamp(26px, 4vw, 44px);
  border-top: 1px solid var(--line);
}

.flow-row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(170px, 310px) 1fr;
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(26px, 3.6vw, 40px) 12px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.flow-row::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(238, 243, 245, 0.035);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 380ms var(--ease-out);
}

.flow-row:hover::after {
  transform: none;
}

.fr-key {
  min-width: 0;
  color: transparent;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.3vw, 2.4rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--metal-soft);
  transition: color 320ms ease;
}

.flow-row:hover .fr-key {
  color: var(--chrome);
  -webkit-text-stroke: 1px var(--chrome);
}

.fr-body h3 {
  color: var(--ink);
  font-size: 1.3rem;
}

.fr-body p {
  max-width: 640px;
  margin-top: 10px;
}

/* ---------- CONTATO MEGA ---------- */
.contact-stage {
  width: 100%;
  padding: clamp(80px, 12vw, 170px) var(--pad) clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.contact-stage h2 {
  margin-top: 12px;
}

.fr-body p + p {
  margin-top: 10px;
}

.mail-mega {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 6.3vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: color 280ms ease;
}

.mail-mega:hover,
.mail-mega:focus-visible {
  color: var(--chrome);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(34px, 5vw, 60px);
  border: 1px solid var(--line);
}

.social-row a {
  position: relative;
  isolation: isolate;
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
}

.social-row a:last-child {
  border-right: 0;
}

.social-row a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--chrome);
  transform: translateY(101%);
  transition: transform 340ms var(--ease-out);
}

.social-row a::after {
  content: "↗";
  transition: transform 300ms var(--ease-out);
}

.social-row a:hover,
.social-row a:focus-visible {
  color: var(--bg-deep);
}

.social-row a:hover::before,
.social-row a:focus-visible::before {
  transform: none;
}

.social-row a:hover::after {
  transform: translate(3px, -3px);
}

/* ---------- RODAPÉ ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 26px;
  padding: 20px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--chrome);
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1240px) {
  .spy-rail {
    display: none;
  }
}

@media (max-width: 1100px) {
  .bio-editorial {
    grid-template-columns: 1fr;
  }

  .bio-portrait {
    position: static;
    max-width: 420px;
  }
}

@media (max-width: 1040px) {
  .about-tease,
  .channel-intro {
    grid-template-columns: 1fr;
  }

  .work-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(220px, 30vw, 300px);
  }

  .channel-row {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .ch-meta {
    display: none;
  }

  /* desfaz a alternância de lados dos cases em telas estreitas */
  .channel .music-case:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .channel .music-case:nth-of-type(even) .case-copy,
  .channel .music-case:nth-of-type(even) .case-media,
  .channel .music-case:nth-of-type(even) .case-embed {
    order: 0;
  }

  /* com o case empilhado, o painel de áudio não pode criar coluna implícita */
  .channel .music-case .case-embed,
  .channel .music-case:nth-of-type(even) .case-embed {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .stage-hero {
    padding-bottom: 84px;
  }

  .stage-center .poster-title {
    font-size: clamp(2.6rem, 15.5vw, 4.6rem);
  }

  .stage-roles {
    font-size: 0.66rem;
  }

  .stage-roles span + span::before {
    margin: 0 8px;
  }

  .work-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(240px, 62vw, 340px);
  }

  .mosaic-featured {
    grid-column: auto;
    grid-row: span 2;
  }

  .channel-row {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .ch-name {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fr-key {
    font-size: clamp(1.5rem, 6.4vw, 2rem);
  }

  .mail-mega {
    font-size: clamp(1.5rem, 8.6vw, 2.9rem);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .social-row a {
    flex-basis: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-row a:last-child {
    border-bottom: 0;
  }

  .data-chips {
    flex-direction: column;
  }

  .data-chips article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .data-chips article:last-child {
    border-bottom: 0;
  }

  .h-scroll {
    height: auto !important;
  }

  .h-sticky {
    position: static;
    height: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
  }

  .h-track {
    width: max-content;
    transform: none !important;
  }

  .h-card video {
    height: min(52vh, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .h-scroll {
    height: auto !important;
  }

  .h-sticky {
    position: static;
    height: auto;
    overflow-x: auto;
  }

  .h-track {
    transform: none !important;
    width: max-content;
  }

  .channel-preview {
    display: none;
  }

  .stage-meta .live::after {
    animation: none;
  }
}
