/* =========================================================================
   Home Turista — layout mobile da página inicial (Claude Design, jul/2026)
   Substitui a Home antiga na faixa mobile. O desktop ainda usa
   desktop-responsive.css e será reajustado em uma segunda rodada.
   ========================================================================= */

/* ---- Relógio / faixa "agora" -------------------------------------------- */
.lc-clock {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fffdf5;
  border: 1.5px solid #e9ddba;
}
.lc-clock-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #2fa05c;
  animation: lcpulse 1.9s ease-in-out infinite;
}
.lc-clock-label {
  font: 800 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #1d3557;
  white-space: nowrap;
}
@keyframes lcpulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}

/* ---- Abas de período ----------------------------------------------------- */
.lc-period-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 10px 0;
}
.lc-period-tab {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 32px;
  padding: 6px 4px;
  border-radius: 999px;
  border-width: 1.5px;
  border-style: solid;
  cursor: pointer;
  transition: transform .12s ease;
}
.lc-period-tab:active { transform: scale(.96); }
.lc-period-tab-name {
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.lc-badge-now {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 5px;
  color: #fdf8ec;
  font: 800 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.lc-next-period {
  font: 700 10px/1.3 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #8a7f68;
}

/* ---- Cartões do "Agora em Lençóis" -------------------------------------- */
.lc-agora-card {
  display: flex;
  align-items: stretch;
  height: 104px;
  background: #fffdf5;
  border: 1.5px solid #e9ddba;
  border-radius: 12px;
  overflow: hidden;
}
.lc-agora-thumb {
  width: 104px;
  flex: none;
  background: #12233a;
  display: block;
}
.lc-agora-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  flex: 1;
  min-width: 0;
  padding: 10px 4px 10px 12px;
  color: #1d3557;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.lc-agora-body > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
/* O titulo pode ocupar duas linhas: nome de casa e de evento em Lencois
   costuma ser longo, e cortar em "Museu Sincora - v..." nao ajuda ninguem. */
.lc-agora-body > strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-agora-kicker {
  font: 800 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.lc-agora-title {
  font: 16px/1.15 'Bevan', Georgia, serif;
  color: #1d3557;
}
.lc-agora-detail {
  font: italic 12px/1.35 Georgia, serif;
  color: #756e61;
}
.lc-agora-price {
  font: 800 10.5px/1.3 -apple-system, 'Segoe UI', sans-serif;
  color: #b5860b;
}
.lc-agora-save {
  width: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1.5px solid #f0e6cd;
  cursor: pointer;
  font: 700 17px/1 -apple-system, 'Segoe UI', sans-serif;
  transition: transform .12s ease;
}
.lc-agora-save:active { transform: scale(.95); }

.lc-agora-vazio {
  padding: 14px;
  border: 1.5px dashed #d8cdb0;
  border-radius: 12px;
  font: italic 12.5px/1.5 Georgia, serif;
  color: #756e61;
}

/* ---- Destaque do dia ----------------------------------------------------- */
.lc-destaque-card {
  display: flex;
  align-items: stretch;
  height: 124px;
  background: #1e93d6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(29, 53, 87, .28);
}
.lc-destaque-thumb {
  position: relative;
  width: 124px;
  flex: none;
  background: #12233a;
  display: block;
}
.lc-destaque-flag {
  position: absolute;
  bottom: 7px;
  left: 7px;
  padding: 3px 7px;
  border-radius: 4px;
  background: #2fa05c;
  color: #fdf8ec;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.lc-destaque-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  color: #fdf8ec;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.lc-destaque-body > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.lc-destaque-body > strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-destaque-kicker {
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #cfe6f7;
}
.lc-destaque-title { font: 21px/1.25 'Bevan', Georgia, serif; color: #fdf8ec; }
.lc-destaque-detail { font: italic 12px/1.35 Georgia, serif; color: #e6eff7; }
.lc-destaque-price {
  font: 800 11px/1.3 -apple-system, 'Segoe UI', sans-serif;
  color: #f5b91e;
}

/* ---- Meu roteiro --------------------------------------------------------- */
.lc-roteiro {
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f5e6b7;
  box-shadow: inset 0 -4px 0 #f5b91e;
}
.lc-roteiro strong {
  display: block;
  font: 16px/1.15 'Bevan', Georgia, serif;
  color: #1d3557;
}
.lc-roteiro small {
  display: block;
  margin: 3px 0 11px 0;
  font: italic 12.5px/1.45 Georgia, serif;
  color: #756e61;
}
.lc-roteiro-acoes { display: grid; gap: 8px; }
.lc-roteiro-acoes button {
  min-height: 44px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font: 800 11.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.lc-roteiro-secundario {
  border: 1.5px solid #1d3557;
  background: transparent;
  color: #1d3557;
}
.lc-roteiro-secundario:active { background: #1d3557; color: #fdf8ec; }
.lc-roteiro-primario {
  border: 0;
  background: #1d3557;
  color: #fdf8ec;
}
.lc-roteiro-primario:active { background: #12233a; }

.lc-roteiro-lista {
  margin: 11px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.lc-roteiro-lista li {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 12.5px/1.35 -apple-system, 'Segoe UI', sans-serif;
  color: #1d3557;
}
.lc-roteiro-lista li span:first-child { color: #2fa05c; font-weight: 800; }

/* ---- Nossa Arte (carrossel) ---------------------------------------------- */
.lc-radio-teaser {
  flex: 0 0 auto;
  width: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 13px;
  border-radius: 12px;
  background: #1c4d33;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.lc-radio-teaser span:first-child {
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #9ed7b0;
}
.lc-radio-teaser strong { font: 17px/1.1 'Bevan', Georgia, serif; color: #fdf8ec; }
.lc-radio-teaser small {
  font: italic 11.5px/1.4 Georgia, serif;
  color: #d8ead9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/* ---- "Falta alguém aqui" ------------------------------------------------- */
.lc-convite {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px;
  border: 2px dashed #d8cdb0;
  border-radius: 14px;
}
.lc-convite > span:first-child {
  font: 800 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8a7f68;
}
.lc-convite strong { font: 17px/1.2 'Bevan', Georgia, serif; color: #1d3557; }
.lc-convite p { margin: 0 0 4px 0; font: italic 12.5px/1.5 Georgia, serif; color: #756e61; }
.lc-convite button {
  align-self: flex-start;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1.5px solid #1d3557;
  background: transparent;
  color: #1d3557;
  cursor: pointer;
  font: 800 11px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.lc-convite button:active { background: #1d3557; color: #fdf8ec; }

/* ---- Mini player da Rádio Lençóis (radio-widget.js) ---------------------- */
#lc-radio-dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  /* Colado na barra de navegacao: a altura real dela e medida em tempo de
     execucao, porque muda com a area segura do aparelho. */
  bottom: var(--lc-altura-nav, calc(62px + env(safe-area-inset-bottom)));
  z-index: 44;
  width: 100%;
  max-width: 430px;
  /* Translucido: a cidade continua aparecendo por tras do player. */
  background: rgba(23, 59, 43, .78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: #fdf8ec;
  box-shadow: 0 -6px 18px rgba(16, 39, 25, .28);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* Nada separa o player da barra: nem linha, nem sombra, nem folga. */
#lc-radio-dock .lc-dock-bar { margin-bottom: 0; }
#lc-radio-dock .lc-dock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px 6px 12px;
}
#lc-radio-dock .lc-dock-art {
  position: relative;
  width: 38px;
  height: 38px;
  flex: none;
  overflow: hidden;
  background: #0f2a1d;
}
#lc-radio-dock .lc-dock-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#lc-radio-dock .lc-dock-copy { min-width: 0; flex: 1; }
#lc-radio-dock .lc-dock-copy strong,
#lc-radio-dock .lc-dock-copy span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#lc-radio-dock .lc-dock-copy strong { font: 600 13px/1.25 inherit; }
#lc-radio-dock .lc-dock-copy span { font: 11.5px/1.3 inherit; color: #a9c7b3; }
#lc-radio-dock button,
#lc-radio-dock a {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fdf8ec;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease;
}
#lc-radio-dock button:active,
#lc-radio-dock a:active { transform: scale(.9); }
#lc-radio-dock a { color: #a9c7b3; }
#lc-radio-dock .lc-dock-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(253, 248, 236, .18);
}
#lc-radio-dock .lc-dock-bar > span {
  display: block;
  height: 2px;
  width: 0;
  background: #f5b91e;
  transition: width .25s linear;
}

/* No desktop o dock volta a ser um cartão flutuante no canto, já que a barra
   inferior de navegação não existe nessa faixa. */
@media (min-width: 900px) {
  #lc-radio-dock {
    left: auto;
    right: 18px;
    transform: none;
    bottom: 18px;
    width: min(360px, calc(100vw - 36px));
    border-radius: 16px;
    overflow: hidden;
  }
}

/* ---- Dock: titulo abre a tela cheia ------------------------------------- */
#lc-radio-dock .lc-dock-abrir {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
#lc-radio-dock .lc-dock-abrir:active { opacity: .7; transform: none; }
#lc-radio-dock a.lc-dock-ir {
  width: auto;
  height: auto;
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f5b91e;
  color: #12233a;
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
}
#lc-radio-dock a.lc-dock-ir:active { background: #ffd363; text-decoration: none; }
/* Estando na propria radio o atalho nao serve para nada. A radio virou tela do
   mesmo documento, entao quem responde e a tela do momento (.lc-radio-tela so
   existe no DOM enquanto ela esta aberta), nao a URL com que a pagina carregou.
   Onde :has() nao existir o botao apenas continua visivel — nada quebra. */
body:has(.lc-radio-tela) #lc-radio-dock a.lc-dock-ir { display: none; }

/* ---- Tela cheia "Tocando agora" ----------------------------------------- */
#lc-radio-tela {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 60;
  width: 100%;
  max-width: 430px;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #173b2b;
  color: #fdf8ec;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  animation: lcsobe 260ms ease-out;
}
#lc-radio-tela[hidden] { display: none; }
@keyframes lcsobe { from { transform: translate(-50%, 24px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

#lc-radio-tela .lc-tela-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 14px 6px 14px;
}
#lc-radio-tela .lc-tela-topo > span {
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ed7b0;
}
#lc-radio-tela .lc-tela-topo button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fdf8ec;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}
#lc-radio-tela .lc-tela-topo button:active { transform: scale(.9); }

#lc-radio-tela .lc-tela-corpo {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 6px 20px 18px 20px;
  scrollbar-width: none;
}
#lc-radio-tela .lc-tela-corpo::-webkit-scrollbar { display: none; }
#lc-radio-tela .lc-tela-capa {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0f2a1d;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
#lc-radio-tela .lc-tela-capa img { width: 100%; height: 100%; object-fit: cover; display: block; }
#lc-radio-tela h2 {
  margin: 16px 0 2px 0;
  font: 26px/1.14 'Bevan', Georgia, serif;
  color: #fdf8ec;
}
#lc-radio-tela .lc-tela-artista { margin: 0 0 16px 0; font: 14px/1.4 inherit; color: #a9c7b3; }
#lc-radio-tela h3 {
  margin: 0 0 7px 0;
  font: 800 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9ed7b0;
}
#lc-radio-tela .lc-tela-letra {
  margin: 0 0 20px 0;
  white-space: pre-line;
  font: italic 15px/1.85 Georgia, serif;
  color: #e4f0e6;
}
#lc-radio-tela .lc-tela-artista-linha {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
#lc-radio-tela .lc-tela-avatar {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: #0f2a1d;
}
#lc-radio-tela .lc-tela-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
#lc-radio-tela .lc-tela-artista-linha strong {
  display: block;
  font: 17px/1.2 'Bevan', Georgia, serif;
  color: #fdf8ec;
}
#lc-radio-tela .lc-tela-artista-linha span span {
  display: block;
  margin-top: 3px;
  font: 12px/1.35 inherit;
  color: #a9c7b3;
}
#lc-radio-tela .lc-tela-bio { margin: 0 0 14px 0; font: 14px/1.65 Georgia, serif; color: #dbe9dd; }
#lc-radio-tela .lc-tela-perfil {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid #f5b91e;
  color: #f5b91e;
  font: 800 11px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-decoration: none;
}
#lc-radio-tela .lc-tela-perfil:active { background: #f5b91e; color: #12233a; text-decoration: none; }

#lc-radio-tela .lc-tela-controles {
  padding: 0 20px calc(20px + env(safe-area-inset-bottom)) 20px;
  background: #173b2b;
}
#lc-radio-tela .lc-tela-barra-linha {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
}
#lc-radio-tela .lc-tela-barra-linha > span:first-child,
#lc-radio-tela .lc-tela-barra-linha > span:last-child {
  flex: none;
  font: 700 10px/1 ui-monospace, Menlo, monospace;
  color: #8fb69d;
}
#lc-radio-tela .lc-tela-barra {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(253, 248, 236, .2);
}
#lc-radio-tela .lc-tela-barra > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 2px;
  background: #f5b91e;
}
#lc-radio-tela .lc-tela-botoes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 6px;
}
#lc-radio-tela .lc-tela-botoes button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fdf8ec;
  cursor: pointer;
}
#lc-radio-tela .lc-tela-botoes button:active { transform: scale(.9); }
#lc-radio-tela .lc-tela-botoes .lc-tela-play {
  width: 64px;
  height: 64px;
  background: #f5b91e;
  color: #12233a;
  font-size: 23px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}
#lc-radio-tela .lc-tela-botoes button[disabled] { opacity: .35; cursor: default; }
#lc-radio-tela .lc-tela-botoes button[disabled]:active { transform: none; }

/* ---- Clipe da semana ----------------------------------------------------- */
.lc-clipe-card {
  background: #12233a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(29, 53, 87, .28);
}
.lc-clipe-video {
  aspect-ratio: 16 / 9;
  background: #0b1727;
  line-height: 0;
}
.lc-clipe-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lc-clipe-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 13px 15px 15px 15px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.lc-clipe-kicker {
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #f5b91e;
}
.lc-clipe-title { font: 20px/1.25 'Bevan', Georgia, serif; color: #fdf8ec; }
.lc-clipe-artist {
  font: 700 12px/1.3 -apple-system, 'Segoe UI', sans-serif;
  color: #7fd4a0;
}
.lc-clipe-desc { font: italic 12.5px/1.45 Georgia, serif; color: #c3cbd6; }
.lc-clipe-cta {
  margin-top: 5px;
  font: 700 10.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #6cc0f0;
}

/* No desktop o clipe fica ao lado do texto, para nao virar uma tela de cinema
   no meio da Home. Esta regra mora aqui, e nao no desktop-responsive.css,
   porque aquele arquivo carrega ANTES deste — la ela perderia para a base. */
@media (min-width: 900px) {
  .lc-clipe-section { padding: 26px 0 5px !important; }
  .lc-clipe-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: stretch;
    border-radius: 18px;
  }
  .lc-clipe-body { justify-content: center; padding: 22px 26px; }
  .lc-clipe-title { font-size: 25px; }
  .lc-clipe-desc { font-size: 13.5px; }
}

/* ---- Home v3: carrossel de destaque e de galeria ------------------------- */
.lc-carrossel {
  position: relative;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  background: #12233a;
  box-shadow: 0 4px 14px rgba(106, 42, 18, .28);
  touch-action: pan-y;
}
.lc-carrossel-abrir {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.lc-carrossel-abrir:active { opacity: .92; }
.lc-carrossel-trilho {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.lc-carrossel-quadro {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.lc-carrossel-quadro img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lc-carrossel-selo {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fdf8ec;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.lc-carrossel-legenda {
  position: absolute;
  inset: auto 0 0 0;
  /* Folga lateral suficiente para o texto nunca correr por baixo das setas. */
  padding: 38px 52px 13px 52px;
  background: linear-gradient(to top, rgba(12, 20, 34, .9), rgba(12, 20, 34, 0));
  color: #fdf8ec;
}
.lc-carrossel-kicker {
  display: block;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #f2cfbe;
}
.lc-carrossel-titulo {
  display: block;
  margin-top: 4px;
  font: 19px/1.15 'Bevan', Georgia, serif;
  color: #fdf8ec;
}
.lc-carrossel-detalhe {
  /* Descricao de casa costuma ser longa; duas linhas bastam no cartao e o
     resto o visitante le na ficha. */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
  font: italic 11.5px/1.35 Georgia, serif;
  color: #e3e9f1;
}
.lc-carrossel-titulo {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-carrossel-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 20, 34, .42);
  backdrop-filter: blur(3px);
  color: #fdf8ec;
  cursor: pointer;
  font: 700 15px/1 -apple-system, 'Segoe UI', sans-serif;
}
.lc-carrossel-seta:active { background: rgba(181, 80, 42, .9); }
.lc-carrossel-anterior { left: 9px; }
.lc-carrossel-proximo { right: 9px; }

.lc-pontos { display: flex; justify-content: center; gap: 7px; margin-top: 9px; }
.lc-pontos button {
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width .25s ease;
}

/* ---- Ficha em folha (bottom sheet) --------------------------------------- */
.lc-ficha-fundo {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.lc-ficha-cortina {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(12, 20, 34, .55);
  backdrop-filter: blur(3px);
}
.lc-ficha {
  position: relative;
  width: 100%;
  max-width: 430px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 18px 18px 0 0;
  background: #fdf8ec;
  box-shadow: 0 -10px 34px rgba(12, 20, 34, .35);
  animation: lcsobe 260ms ease-out;
}
.lc-ficha-capa {
  position: relative;
  display: block;
  height: 172px;
  overflow: hidden;
  background: #12233a;
}
.lc-ficha-capa img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lc-ficha-fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(12, 20, 34, .6);
  color: #fdf8ec;
  font: 700 15px/1 -apple-system, 'Segoe UI', sans-serif;
}
.lc-ficha-selo {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fdf8ec;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.lc-ficha-kicker {
  display: block;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #b5502a;
}
.lc-ficha-titulo {
  display: block;
  margin-top: 5px;
  font: 22px/1.15 'Bevan', Georgia, serif;
  color: #1d3557;
}
.lc-ficha-texto {
  margin: 9px 0 0 0;
  font: italic 13.5px/1.55 Georgia, serif;
  color: #6b6252;
}
.lc-ficha-linhas { display: grid; gap: 8px; margin-top: 14px; }
.lc-ficha-linhas > span { display: flex; align-items: baseline; gap: 10px; }
.lc-ficha-rotulo {
  flex: none;
  width: 62px;
  font: 800 8.5px/1.4 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a7f68;
}
.lc-ficha-valor { flex: 1; min-width: 0; font: 13px/1.45 Georgia, serif; color: #1d3557; }
.lc-ficha-primario {
  min-height: 46px;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  background: #1d3557;
  color: #fdf8ec;
  cursor: pointer;
  font: 800 11.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.lc-ficha-secundario {
  min-height: 44px;
  padding: 12px;
  border: 1.5px solid #d8cdb0;
  border-radius: 10px;
  background: transparent;
  color: #756e61;
  cursor: pointer;
  font: 800 11px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ---- Promoções ----------------------------------------------------------- */
/* Um cartao so: a foto, o selo do tipo flutuando e a vantagem em destaque. */
.lc-promo-card {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #fffdf5;
  color: #1d3557;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 0 #e9ddba, 0 6px 16px -12px rgba(18, 35, 58, .5);
}
.lc-promo-card:active { transform: scale(.985); background: #f9f2de; }
.lc-promo-foto {
  position: relative;
  width: 104px;
  flex: none;
  align-self: stretch;
  min-height: 104px;
  overflow: hidden;
  border-radius: 14px 0 0 14px;
  background: #12233a;
}
.lc-promo-foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-promo-selo {
  position: absolute;
  top: -11px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px 5px 6px;
  border-radius: 999px;
  background: #e63b2e;
  color: #fdf8ec;
  box-shadow: 0 2px 6px rgba(18, 35, 58, .25);
}
.lc-promo-marca {
  width: 14px;
  height: 14px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(253, 248, 236, .22);
  font: 700 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
}
.lc-promo-tipo {
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .9px;
  text-transform: uppercase;
  white-space: nowrap;
}
.lc-promo-corpo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
}
/* A casa vira etiqueta; quem ganha o olho e a promocao em si. */
.lc-promo-nome {
  display: block;
  padding-right: 82px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #8a7f68;
}
.lc-promo-detalhe {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font: 17px/1.25 'Bevan', Georgia, serif;
  color: #1d3557;
  text-wrap: pretty;
}
.lc-promo-rodape { display: flex; align-items: center; gap: 7px; margin-top: 1px; }
.lc-promo-vantagem {
  padding: 3px 7px;
  border-radius: 4px;
  background: #fdf0c8;
  font: 800 10px/1.3 -apple-system, 'Segoe UI', sans-serif;
  color: #8a6206;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lc-promo-ver {
  flex: none;
  font: 700 10px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #b5502a;
}

/* ---- Dicas do nativo ----------------------------------------------------- */
.lc-dica {
  display: flex;
  align-items: stretch;
  min-height: 96px;
  overflow: hidden;
  border: 1.5px solid #e9ddba;
  border-radius: 12px;
  background: #fffdf5;
}
.lc-dica-foto { position: relative; width: 88px; flex: none; background: #12233a; }
.lc-dica-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-dica-corpo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
}
.lc-dica-tipo {
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #2fa05c;
}
.lc-dica-titulo { font: 15px/1.25 'Bevan', Georgia, serif; color: #1d3557; }
.lc-dica-detalhe {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font: italic 12px/1.4 Georgia, serif;
  color: #756e61;
}

/* ---- Agenda completa ----------------------------------------------------- */
.lc-agenda-item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid #e9ddba;
  border-radius: 12px;
  background: #fffdf5;
  color: #1d3557;
  text-align: left;
  cursor: pointer;
}
.lc-agenda-item:active { background: #f7efd9; }
.lc-agenda-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 44px;
  height: 48px;
  border-radius: 9px;
  background: #f2ead2;
}
.lc-agenda-data strong { font: 17px/1 'Bevan', Georgia, serif; color: #1d3557; }
.lc-agenda-data span {
  margin-top: 2px;
  font: 800 8px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #8a7f68;
}
.lc-agenda-corpo { flex: 1; min-width: 0; }
.lc-agenda-corpo > * {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lc-agenda-tipo {
  font: 700 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #8a7f68;
}
.lc-agenda-titulo { margin-top: 4px; font: 15px/1.2 'Bevan', Georgia, serif; color: #1d3557; }
.lc-agenda-detalhe { margin-top: 2px; font: italic 11.5px/1.35 Georgia, serif; color: #756e61; }
.lc-agenda-seta { flex: none; font: 700 15px/1 -apple-system, 'Segoe UI', sans-serif; color: #b5502a; }
.lc-agenda-todos {
  width: 100%;
  margin-top: 10px;
  min-height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: #1d3557;
  color: #fdf8ec;
  cursor: pointer;
  font: 800 11.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .3px;
  text-transform: uppercase;
}

/* ---- Barra de navegação translúcida -------------------------------------- */
/* O conteúdo passa por baixo em vez de bater numa faixa sólida. */
/* Mesma pele do player: rodape vira um bloco so. */
.lc-mobile-nav {
  background: rgba(23, 59, 43, .78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-top: 0;
  box-shadow: none;
}
/* Onde o navegador não sabe desfocar, a faixa fica opaca o bastante para o
   texto continuar legível — translucidez nunca pode custar leitura. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lc-mobile-nav { background: rgba(23, 59, 43, .96); }
  #lc-radio-dock { background: rgba(23, 59, 43, .96); }
}

/* ---- Cabeçalho translúcido ----------------------------------------------- */
/* A cidade continua aparecendo por trás do topo enquanto a página rola.
   Valores iguais aos do Claude Design: .82 de opacidade, desfoque de 14px e
   saturação 1.4 nos dois prefixos. */
.lc-vidro {
  background: rgba(253, 248, 236, .86);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lc-vidro { background: rgba(253, 248, 236, .96); }
}
/* O topo fica congelado enquanto a página rola — em todas as telas. */
.lc-topo {
  position: sticky;
  top: 0;
  z-index: 45;
}

/* ---- Galeria ------------------------------------------------------------- */
.lc-artista-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.lc-artistas-grade { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 10px; }
.lc-artista-card { align-items: center; text-align: center; }
.lc-artista-retrato {
  position: relative;
  width: 84px;
  height: 84px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: #12233a;
  box-shadow: 0 3px 10px rgba(29, 53, 87, .18);
}
.lc-artista-retrato img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-artista-vazio,
.lc-obra-vazia {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 10px;
  text-align: center;
  background: repeating-linear-gradient(135deg, #f0e6cd, #f0e6cd 12px, #e9ddba 12px, #e9ddba 24px);
  color: #8a7f68;
  font: 700 10px/1.35 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.lc-artista-nome { display: block; font: 13.5px/1.2 'Bevan', Georgia, serif; color: #1d3557; }
.lc-artista-linha { display: block; margin-top: 3px; font: italic 11px/1.35 Georgia, serif; color: #756e61; }

.lc-artista-hero {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  background: #12233a;
}
/* O corte alto mantem o rosto do artista no quadro. */
.lc-artista-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 5%; display: block; }
.lc-artista-veu {
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(180deg, rgba(18, 35, 58, 0), rgba(18, 35, 58, .92));
  pointer-events: none;
}
.lc-artista-legenda { position: absolute; left: 16px; right: 16px; bottom: 14px; pointer-events: none; }
.lc-artista-genero {
  display: block;
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5b91e;
}
.lc-artista-titulo { display: block; margin-top: 6px; font: 27px/1.1 'Bevan', Georgia, serif; color: #fdf8ec; }
.lc-artista-meta { display: block; margin-top: 5px; font: italic 13px/1.4 Georgia, serif; color: #dbe9dd; }

.lc-artista-acao,
.lc-artista-seguir {
  min-height: 46px;
  border-radius: 10px;
  cursor: pointer;
  font: 800 11.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.lc-artista-acao { flex: 1; border: 0; background: #173b2b; color: #fdf8ec; }
.lc-artista-acao:active { background: #0f2a1d; }
.lc-artista-seguir { flex: none; padding: 0 16px; border: 1.5px solid #1d3557; }
.lc-artista-seguir:active { transform: scale(.98); }

.lc-colecao-meta {
  display: block;
  font: 800 9px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b5860b;
}
.lc-colecao-titulo { margin: 7px 0 0 0; font: 22px/1.12 'Bevan', Georgia, serif; color: #1d3557; }
.lc-colecao-texto { margin: 9px 0 0 0; font: italic 13.5px/1.65 Georgia, serif; color: #6b6252; }

/* Cada peca ganha sua moldura, como numa parede de galeria. */
.lc-obras-grade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
  margin-top: 16px;
}
.lc-obra {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.lc-obra:active { transform: scale(.985); }
.lc-obra-moldura {
  display: block;
  width: 100%;
  padding: 7px;
  background: #fffdf5;
  border: 3px solid #26303c;
  box-shadow: 0 1px 0 #e0d4b2, 0 12px 22px rgba(29, 53, 87, .16);
}
.lc-obra-tela { position: relative; display: block; width: 100%; background: #efe5cc; }
.lc-obra-tela img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-obra-titulo { display: block; font: 14.5px/1.2 'Bevan', Georgia, serif; color: #1d3557; }
.lc-obra-ficha { display: block; margin-top: 4px; font: italic 11.5px/1.4 Georgia, serif; color: #756e61; }

/* Visor da obra: a peça ocupa a tela, o resto sai da frente. */
.lc-visor {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  background: #0f1720;
  color: #fdf8ec;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.lc-visor-topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 6px 12px;
}
.lc-visor-topo > span {
  font: 700 10px/1 ui-monospace, Menlo, monospace;
  letter-spacing: 1px;
  color: #9aa8b6;
}
.lc-visor-topo button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(253, 248, 236, .1);
  color: #fdf8ec;
  font: 700 15px/1 inherit;
  cursor: pointer;
}
.lc-visor-palco {
  position: relative;
  flex: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 8px 12px;
}
.lc-visor-palco img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.lc-visor-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(253, 248, 236, .12);
  color: #fdf8ec;
  font: 700 16px/1 inherit;
  cursor: pointer;
}
.lc-visor-anterior { left: 10px; }
.lc-visor-proxima { right: 10px; }
.lc-visor-ficha {
  padding: 14px 18px calc(20px + env(safe-area-inset-bottom)) 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px solid rgba(253, 248, 236, .12);
}
.lc-visor-ficha strong { font: 21px/1.15 'Bevan', Georgia, serif; color: #fdf8ec; }
.lc-visor-artista { font: 12px/1.4 inherit; color: #9ed7b0; }
.lc-visor-linha { font: 11.5px/1.4 ui-monospace, Menlo, monospace; color: #9aa8b6; }
.lc-visor-ficha p { margin: 4px 0 0 0; font: italic 14px/1.6 Georgia, serif; color: #dfe6ef; }

/* ---- Galeria: a obra na moldura ------------------------------------------ */
/* A peça é apresentada como quadro na parede: moldura dourada, friso escuro e
   passe-partout claro. A obra aparece inteira, no formato que ela tem. */
.lc-quadro-trilho {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.lc-quadro-vao {
  flex: 0 0 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 6px;
}
.lc-quadro-moldura {
  display: block;
  max-width: 100%;
  max-height: 100%;
  padding: 7px;
  background: linear-gradient(135deg, #c99a34, #8a5a2b 38%, #e6c069 62%, #8a5a2b);
  box-shadow: 0 14px 26px rgba(29, 53, 87, .22), inset 0 0 0 1px rgba(255, 255, 255, .35);
}
.lc-quadro-friso { display: block; padding: 4px; background: #12233a; }
.lc-quadro-passe {
  display: block;
  padding: 11px;
  background: #fffdf5;
  box-shadow: inset 0 0 0 1px #e0d4b2, inset 0 2px 7px rgba(29, 53, 87, .12);
}
.lc-quadro-seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 20, 34, .42);
  backdrop-filter: blur(3px);
  color: #fdf8ec;
  cursor: pointer;
  font: 700 15px/1 -apple-system, 'Segoe UI', sans-serif;
}
.lc-quadro-seta:active { background: rgba(181, 80, 42, .9); }
.lc-quadro-anterior { left: 0; }
.lc-quadro-proxima { right: 0; }

.lc-quadro-legenda {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.lc-quadro-legenda:active { opacity: .7; }
.lc-quadro-kicker {
  display: block;
  font: 800 8px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b5502a;
}
.lc-quadro-titulo,
.lc-quadro-artista {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lc-quadro-titulo { margin-top: 3px; font: 17px/1.15 'Bevan', Georgia, serif; color: #1d3557; }
.lc-quadro-artista { margin-top: 2px; font: italic 11.5px/1.35 Georgia, serif; color: #756e61; }

/* ---- Galeria: filtro de classificação ------------------------------------ */
.lc-classificacao {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 46px;
  padding: 11px 13px;
  border: 1.5px solid #1d3557;
  border-radius: 11px;
  background: #fffdf5;
  color: #1d3557;
  cursor: pointer;
  text-align: left;
}
.lc-classificacao:active { background: #f5efdc; }
.lc-classificacao-rotulo {
  display: block;
  font: 800 8px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a7f68;
}
.lc-classificacao-valor {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 14px/1.15 'Bevan', Georgia, serif;
}
.lc-classificacao-seta { flex: none; font: 700 11px/1 -apple-system, 'Segoe UI', sans-serif; color: #8a7f68; }
.lc-classificacao-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  padding: 5px;
  border: 1.5px solid #1d3557;
  border-radius: 11px;
  background: #fffdf5;
  box-shadow: 0 14px 28px rgba(29, 53, 87, .2);
}
.lc-classificacao-menu button {
  display: block;
  min-height: 42px;
  padding: 11px;
  border: 0;
  border-radius: 8px;
  color: #1d3557;
  cursor: pointer;
  text-align: left;
  font: 13px/1.2 'Bevan', Georgia, serif;
}
.lc-classificacao-menu button:active { background: #f5efdc; }

/* ---- Cartaz de evento ----------------------------------------------------
   Cartaz nao pode ser recortado: ele carrega a programacao inteira. Entra
   emoldurado sobre a propria imagem borrada e amplia em tela cheia no toque. */
.lc-cartaz-abrir {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.lc-cartaz-abrir:active { opacity: .9; }
.lc-cartaz-moldura {
  display: block;
  height: 100%;
  padding: 6px;
  border-radius: 4px;
  background: linear-gradient(160deg, #fbf3e2, #e7d3ac);
  box-shadow: 0 12px 30px -8px rgba(12, 20, 34, .6), inset 0 0 0 1px rgba(120, 84, 40, .45);
}
.lc-cartaz-dica {
  position: absolute;
  bottom: 10px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(12, 20, 34, .6);
  color: #fdf8ec;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
  pointer-events: none;
}
.lc-cartaz-fundo {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 14, 24, .94);
  animation: lc-cartaz-surge 160ms ease-out;
}
@keyframes lc-cartaz-surge { from { opacity: 0; } to { opacity: 1; } }
/* O palco respeita a largura do app: o cartaz nao vaza pra fora da moldura. */
.lc-cartaz-palco {
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lc-cartaz-cortina {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-out;
}
.lc-cartaz-moldura-cheia {
  position: relative;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 7px;
  box-shadow: 0 18px 44px -10px rgba(0, 0, 0, .7), inset 0 0 0 1px rgba(120, 84, 40, .45);
  pointer-events: none;
}
.lc-cartaz-fechar {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(253, 248, 236, .16);
  color: #fdf8ec;
  font: 700 16px/1 -apple-system, 'Segoe UI', sans-serif;
}
.lc-cartaz-fechar:active { background: rgba(253, 248, 236, .3); }

/* Compartilhar da ficha: contorno verde, mesma altura dos outros botoes. */
.lc-ficha-compartilhar {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px;
  border: 1.5px solid #2fa05c;
  border-radius: 10px;
  background: transparent;
  color: #1f7a45;
  cursor: pointer;
  font: 800 11px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.lc-ficha-compartilhar:active { background: #2fa05c; color: #fdf8ec; }

/* ---- Destaque (carrossel da home) ---------------------------------------
   A legenda saiu de cima da imagem e virou cartao branco embaixo: sobre um
   cartaz, texto sobreposto tapava justamente a programacao. */
.lc-destaque { position: relative; margin-top: 16px; }
.lc-destaque-selo {
  position: absolute;
  top: -11px;
  right: 10px;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(18, 35, 58, .28);
  font: 800 11px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .9px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fdf8ec;
}
.lc-destaque-palco {
  position: relative;
  height: 250px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  background: #12233a;
  touch-action: pan-y;
}
.lc-destaque-abrir {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.lc-destaque-abrir:active { opacity: .92; }
.lc-destaque-trilho {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.lc-destaque-quadro { position: relative; flex: 0 0 100%; height: 100%; overflow: hidden; }
.lc-destaque-quadro img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lc-destaque-cartaz {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
}
.lc-cartaz-moldura-capa {
  padding: 5px;
  box-shadow: 0 10px 26px -6px rgba(12, 20, 34, .6), inset 0 0 0 1px rgba(120, 84, 40, .45);
}
.lc-destaque-legenda {
  display: block;
  width: 100%;
  padding: 13px 14px 14px;
  border: 0;
  border-radius: 0 0 14px 14px;
  background: #fffdf5;
  color: #1d3557;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 14px -8px rgba(106, 42, 18, .4);
}
.lc-destaque-legenda:active { background: #f9f2de; }
.lc-destaque-kicker {
  display: block;
  font: 800 8.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #b5502a;
}
.lc-destaque-titulo {
  display: block;
  margin-top: 5px;
  font: 20px/1.15 'Bevan', Georgia, serif;
  color: #1d3557;
  text-wrap: pretty;
}
.lc-destaque-detalhe {
  display: block;
  margin-top: 4px;
  font: italic 12.5px/1.4 Georgia, serif;
  color: #756e61;
  text-wrap: pretty;
}
.lc-destaque-rodape { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.lc-destaque-preco {
  padding: 3px 7px;
  border-radius: 4px;
  background: #fdf0c8;
  font: 800 10px/1.3 -apple-system, 'Segoe UI', sans-serif;
  color: #8a6206;
}
.lc-destaque-toque {
  font: 700 9.5px/1 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #a09781;
}

/* Sem logo nem arte cadastrados, a vaga da imagem mostra a inicial da casa —
   melhor um monograma honesto do que uma foto que nao e a marca. */
.lc-promo-inicial {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font: 30px/1 'Bevan', Georgia, serif;
  color: #f5b91e;
  background: #12233a;
}

/* Evento ainda sem cartaz: em vez de um retangulo escuro vazio, a vaga leva a
   cor do proprio evento e o tipo dele, ate a curadoria subir a imagem. */
.lc-destaque-semfoto {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  color: #fdf8ec;
  font: 800 13px/1.3 -apple-system, 'Segoe UI', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(12, 20, 34, .25);
}

/* Pontos do Destaque sobre a propria imagem. Fora dela, eles comiam uma faixa
   da primeira dobra so para dizer em que slide a pessoa esta. */
.lc-pontos-sobre {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9px;
  z-index: 4;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}
.lc-pontos-sobre button {
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(12, 20, 34, .45);
}

/* A altura do palco nao muda de um slide para o outro: a moldura ocupa o
   espaco disponivel e a imagem se ajusta dentro dela, nunca o contrario. */
.lc-destaque-palco { height: 250px; min-height: 250px; max-height: 250px; }
.lc-destaque-cartaz { padding: 11px 11px 22px; }

/* Busca da rádio: o realce de foco pertence à pílula inteira, e não ao
   <input> retangular por dentro dela. */
.lc-radio-busca:focus-within { box-shadow: 0 0 0 3px rgba(30,147,214,.16); }
.lc-radio-busca input { outline: none; }
