/* Leitura pública de capítulo (/capitulos/<id>) — inspirada no "modo foco": só o texto. */
.reading-hero { padding: 90px max(24px, calc((100vw - 900px) / 2)) 10px; text-align: center; background: #ede8dc; color: #16201f; }
.reading-hero .eyebrow { display: flex; justify-content: center; }
.reading-hero h1 { margin: 14px auto 0; font: 600 clamp(34px, 4.6vw, 54px) "Playfair Display", serif; }
.reading-mode-actions { margin: 22px 0 0; display: flex; align-items: center; justify-content: center; gap: 12px; }
.reading-listen-button {
  margin: 0;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(154, 97, 42, .3);
  border-radius: 999px;
  background: transparent;
  color: #9a612a;
  font: 600 11px "Manrope", sans-serif;
  letter-spacing: .03em;
  cursor: pointer;
}
.reading-listen-button:hover { background: rgba(154, 97, 42, .07); }
.reading-listen-button svg { width: 15px; height: 15px; stroke-width: 1.8; }

.reading-body { background: #ede8dc; padding: 30px max(24px, calc((100vw - 900px) / 2)) 110px; }
.reading-column { max-width: 720px; margin: 0 auto; }
.reading-paragraph { margin: 0 0 24px; color: #2b3532; font: 400 17px/1.85 Georgia, serif; }
.reading-dialogue { margin: 0 0 24px; padding-left: 18px; border-left: 2px solid #9a612a; color: #2b3532; font: 400 italic 17px/1.85 Georgia, serif; }
.reading-quotation { margin: 0 32px 24px; color: #2b3532; font: 400 italic 17px/1.85 Georgia, serif; }
.reading-verse { margin: 0 0 10px; text-align: center; color: #2b3532; font: 400 italic 16px/1.7 "Playfair Display", serif; }
.reading-verse-title { margin: 34px 0 16px; color: #9a612a; font: 600 12px "Manrope", sans-serif; letter-spacing: .1em; text-transform: uppercase; font-style: normal; }

.reading-nav { max-width: 720px; margin: 60px auto 0; padding-top: 24px; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 14px; border-top: 1px solid rgba(21, 46, 44, .12); }
.reading-nav a { color: #9a612a; font: 600 11px "Manrope", sans-serif; }
.reading-nav a:hover { text-decoration: underline; }
.reading-nav .reading-nav-index { color: #7a8480; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.reading-nav-previous { justify-self: start; }
.reading-nav-next { justify-self: end; text-align: right; }

/* Player fixo no rodapé, no estilo de apps de streaming, só com a faixa principal. */
.listen-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0d1c1b;
  color: #ece8df;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .25);
}
.listen-bar[hidden] { display: none; }
.listen-bar-play {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--copper-light);
  color: #14201e;
  cursor: pointer;
}
.listen-bar-play svg { width: 15px; height: 15px; }
.listen-bar-seek-actions, .listen-bar-volume { display: flex; align-items: center; gap: 4px; }
.listen-bar-icon-button {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8ba09c;
  cursor: pointer;
}
.listen-bar-icon-button:hover { background: rgba(255, 255, 255, .06); color: #ece8df; }
.listen-bar-icon-button:disabled { opacity: .3; cursor: default; }
.listen-bar-icon-button:disabled:hover { background: transparent; color: #8ba09c; }
.listen-bar-icon-button svg { width: 17px; height: 17px; stroke-width: 1.8; }
.listen-bar-icon-button small { position: absolute; font: 600 7px/1 "Manrope", sans-serif; color: currentColor; }
.listen-bar-info { width: 128px; min-width: 0; flex: 0 0 auto; }
.listen-bar-info strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 600 12px "Manrope", sans-serif; }
.listen-bar-info small { display: block; margin-top: 2px; color: #8ba09c; font-size: 9px; text-transform: uppercase; letter-spacing: .07em; }
.listen-bar-progress {
  --progress: 0%;
  flex: 1;
  height: 24px;
  margin: 0;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.listen-bar-progress::-webkit-slider-runnable-track { height: 3px; border-radius: 999px; background: linear-gradient(to right, var(--copper-light) 0 var(--progress), rgba(255, 255, 255, .12) var(--progress) 100%); }
.listen-bar-progress::-webkit-slider-thumb { width: 13px; height: 13px; margin-top: -5px; appearance: none; border: 2px solid #0d1c1b; border-radius: 50%; background: var(--copper-light); box-shadow: 0 0 0 1px rgba(241, 190, 121, .35); }
.listen-bar-progress::-moz-range-track { height: 3px; border: 0; border-radius: 999px; background: rgba(255, 255, 255, .12); }
.listen-bar-progress::-moz-range-progress { height: 3px; border-radius: 999px; background: var(--copper-light); }
.listen-bar-progress::-moz-range-thumb { width: 13px; height: 13px; border: 2px solid #0d1c1b; border-radius: 50%; background: var(--copper-light); box-shadow: 0 0 0 1px rgba(241, 190, 121, .35); }
.listen-bar-progress:focus-visible { outline: 1px solid var(--copper-light); outline-offset: 4px; }
.listen-bar-rate {
  position: relative;
  height: 32px;
  flex: 0 0 auto;
}
.listen-bar-rate-trigger {
  height: 32px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  color: #d7dedb;
  font: 600 10px "Manrope", sans-serif;
  cursor: pointer;
}
.listen-bar-rate-trigger:hover, .listen-bar-rate-trigger[aria-expanded="true"] { border-color: rgba(241, 190, 121, .45); background: rgba(241, 190, 121, .08); color: var(--copper-light); }
.listen-bar-rate-trigger > svg { width: 15px; height: 15px; flex: 0 0 auto; stroke-width: 1.8; }
.listen-bar-rate-trigger .listen-bar-rate-chevron { width: 12px; height: 12px; color: #718783; transition: transform .15s ease; }
.listen-bar-rate-trigger[aria-expanded="true"] .listen-bar-rate-chevron { transform: rotate(180deg); }
.listen-bar-rate-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 2;
  width: 112px;
  padding: 6px;
  border: 1px solid rgba(241, 190, 121, .18);
  border-radius: 6px;
  background: #142321;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
}
.listen-bar-rate-menu[hidden] { display: none; }
.listen-bar-rate-menu button {
  width: 100%;
  height: 32px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #a9b8b4;
  font: 600 11px "Manrope", sans-serif;
  cursor: pointer;
}
.listen-bar-rate-menu button:hover, .listen-bar-rate-menu button:focus-visible { outline: 0; background: rgba(255, 255, 255, .06); color: #eef2ef; }
.listen-bar-rate-menu button[aria-selected="true"] { background: rgba(154, 97, 42, .22); color: #f1be79; }
.listen-bar-rate-menu button svg { width: 13px; height: 13px; opacity: 0; }
.listen-bar-rate-menu button[aria-selected="true"] svg { opacity: 1; }
.listen-bar-volume { gap: 6px; }
.listen-bar-volume > input {
  width: 76px;
  height: 24px;
  margin: 0;
  accent-color: var(--copper-light);
  cursor: pointer;
}
.listen-bar-close {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #8ba09c;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.listen-bar-close:hover { color: #ece8df; }

@media (max-width: 560px) {
  .listen-bar-info small { display: none; }
}
