/**
 * Estilos compartilhados para páginas de cifra
 * export/cifras/musica/
 */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-text-size-adjust: 100%;
}

.page {
  min-height: 100vh;
  padding: 0.1rem 0.5rem 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.header {
  position: relative;
  padding: 0.4rem 0 0.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 0.5rem;
}

.btn-back {
  position: absolute;
  left: 0;
  top: 0.35rem;
  padding: 0.35rem 0.6rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: #0d6efd;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.btn-back:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.header h1 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

.header .meta {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.2rem;
}

.header a {
  color: #0d6efd;
  text-decoration: none;
}

.header a:hover { text-decoration: underline; }

#cifra {
  display: block;
  margin: 0;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1;
  background: transparent;
  border: none;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-transform: uppercase;
}

#cifra b {
  color: #c00;
  font-weight: 700;
  font-size: 0.9em;
  text-transform: none;
}

/* Bloco de refrão em destaque */
#cifra .refrao {
  display: block;
  margin: 0.5rem 0;
  padding: 0.6rem 0.5rem;
  background: #faf9f8;
  border-left: 2px solid #b8860b;
  border-radius: 0 4px 4px 0;
}

/* Título de música em páginas de coleção (ex: marchinhas) */
#cifra .musica-titulo {
  display: block;
  margin: 1rem 0 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #f0f4f8;
  border-left: 3px solid #0d6efd;
  border-radius: 0 6px 6px 0;
  text-transform: none;
}

#cifra .musica-titulo:first-child {
  margin-top: 0;
}

/* Destaque em "[Nome] orou" — negrito nos personagens bíblicos */
#cifra .orou-destaque {
  font-weight: 700;
}

/* Separador visual entre músicas */
#cifra .musica-separador {
  display: block;
  height: 0;
  margin: 1rem 0 0;
  border: none;
  border-top: 1px dashed #ccc;
}

@media (min-width: 480px) {
  .page { padding: 0.75rem 1rem 1.25rem; }
  #cifra { font-size: 1rem; line-height: 1; }
}
