:root {
  --fundo: #FBF7FA;
  --lilas: #9B7EBD;
  --lilas-claro: #EFE7F5;
  --rosa: #E8C7D8;
  --dourado: #C9A86A;
  --texto: #4A3B5C;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--fundo);
  color: var(--texto);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
}
.topo {
  background: linear-gradient(135deg, var(--lilas), var(--rosa));
  padding: 14px 56px;
  position: relative;
}
.menu-botao {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
  padding: 8px;
  cursor: pointer;
}
.menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(78vw, 300px);
  background: #fff;
  z-index: 30;
  transform: translateX(-105%);
  transition: transform 0.25s ease;
  box-shadow: 4px 0 18px rgba(74, 59, 92, 0.25);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu.aberto { transform: none; }
.menu-logo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: block;
  box-shadow: 0 2px 10px rgba(74, 59, 92, 0.25);
}
.menu a {
  display: block;
  padding: 14px 24px;
  font-size: 1.15rem;
  color: var(--texto);
  text-decoration: none;
  border-left: 5px solid transparent;
}
.menu a:hover, .menu a.ativo {
  background: var(--lilas-claro);
  border-left-color: var(--lilas);
  color: var(--lilas);
}
.menu-fundo {
  position: fixed;
  inset: 0;
  background: rgba(74, 59, 92, 0.45);
  z-index: 20;
}
.titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}
.logo-topo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(74, 59, 92, 0.35);
  background: #fff;
}
.titulo-texto { font-size: 1.35rem; letter-spacing: 0.5px; line-height: 1.2; }
.titulo-texto small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}
.versiculo-congresso {
  text-align: center;
  font-style: italic;
  color: var(--lilas);
  background: var(--lilas-claro);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 8px 0 20px;
}
.versiculo-congresso b {
  display: block;
  margin-top: 6px;
  font-style: normal;
  letter-spacing: 1px;
  color: var(--dourado);
}
.legenda-foto {
  text-align: center;
  color: var(--lilas);
  margin: 20px 0 8px;
  font-weight: normal;
}
.foto-congresso {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(74, 59, 92, 0.2);
}
.versiculo-topo {
  display: block;
  font-size: 0.66rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.35;
  opacity: 0.85;
  margin-top: 4px;
  max-width: 300px;
}
.ponto { color: var(--dourado); }
#app { max-width: 640px; margin: 0 auto; padding: 16px; }
.busca {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.1rem;
  border: 2px solid var(--rosa);
  border-radius: 999px;
  background: #fff;
  color: var(--texto);
  outline-color: var(--lilas);
  font-family: inherit;
}
.lista-hinos { list-style: none; padding: 0; margin: 16px 0; }
.lista-hinos li + li { margin-top: 10px; }
.lista-hinos a {
  display: block;
  background: #fff;
  border: 1px solid var(--lilas-claro);
  border-left: 5px solid var(--lilas);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}
.lista-hinos strong { display: block; font-size: 1.15rem; }
.lista-hinos span { color: var(--lilas); font-size: 0.95rem; }
.aviso { text-align: center; color: var(--lilas); padding: 24px 0; }
.botao, .botao-discreto, .botao-perigo {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  border-radius: 12px;
  border: 0;
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.botao { background: var(--lilas); color: #fff; }
.botao-discreto { background: transparent; color: var(--lilas); border: 2px dashed var(--rosa); }
.botao-perigo { background: #fff; color: #A33; border: 2px solid #E8B7B7; }
.video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--lilas-claro);
  margin: 12px 0;
}
.video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.letra {
  white-space: pre-wrap;
  font-size: 1.25rem;
  background: #fff;
  border: 1px solid var(--lilas-claro);
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0;
}
.letra u {
  color: var(--lilas);
  text-decoration: underline;
  text-decoration-color: var(--lilas);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.dica { display: block; color: var(--lilas); margin-top: 6px; font-size: 0.85rem; }

/* flores enfeitando as laterais em telas largas */
@media (min-width: 900px) {
  body::before, body::after {
    content: '';
    position: fixed;
    top: 96px;
    bottom: 0;
    width: 120px;
    background: url('../icones/flores.svg') repeat-y center top;
    pointer-events: none;
  }
  body::before { left: 12px; }
  body::after { right: 12px; transform: scaleX(-1); }
}

/* calendário de reuniões */
.calendario {
  background: #fff;
  border: 1px solid var(--lilas-claro);
  border-radius: 16px;
  padding: 14px;
  margin: 12px 0;
}
.cal-cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--lilas);
  font-size: 1.2rem;
}
.cal-seta {
  background: var(--lilas-claro);
  color: var(--lilas);
  border: 0;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  cursor: pointer;
}
.cal-grade {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dia-semana {
  text-align: center;
  color: var(--dourado);
  font-size: 0.85rem;
  font-weight: bold;
}
.cal-dia {
  min-height: 68px;
  border-radius: 10px;
  background: var(--fundo);
  border: 1px solid var(--lilas-claro);
  padding: 4px;
  font-size: 0.85rem;
}
.cal-dia b { color: var(--lilas); }
.cal-dia.vazio { background: transparent; border: 0; }
.cal-dia.hoje { border: 2px solid var(--dourado); background: #fff; }
.cal-evento {
  display: block;
  background: var(--lilas);
  color: #fff;
  border-radius: 6px;
  font-size: 0.7rem;
  line-height: 1.3;
  padding: 2px 4px;
  margin-top: 3px;
  overflow: hidden;
}
.cal-linha { margin: 8px 0; }
.cal-linha b { color: var(--lilas); }
.cal-excluir {
  background: transparent;
  border: 1px solid #E8B7B7;
  color: #A33;
  border-radius: 8px;
  font-size: 0.8rem;
  padding: 2px 8px;
  cursor: pointer;
  font-family: inherit;
}
@media (max-width: 480px) {
  .cal-dia { min-height: 52px; }
}

/* mural de avisos (post-its) */
.mural {
  background: linear-gradient(160deg, #F3EAF7, #F9EFF3);
  border: 1px solid var(--lilas-claro);
  border-radius: 16px;
  padding: 22px;
  margin: 12px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
}
.postit {
  position: relative;
  min-height: 140px;
  padding: 34px 14px 14px;
  border-radius: 3px;
  box-shadow: 3px 6px 12px rgba(74, 59, 92, 0.22);
  font-family: 'Segoe Print', 'Comic Sans MS', cursive;
  font-size: 0.98rem;
  line-height: 1.5;
}
.postit-1 { background: #FDF3E3; transform: rotate(-2deg); }
.postit-2 { background: #F6E3EE; transform: rotate(1.6deg); }
.postit-3 { background: #EDE4F7; transform: rotate(-1deg); }
.postit-4 { background: #E7F1E4; transform: rotate(2.2deg); }
.postit .pino {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.15rem;
}
.postit-texto { white-space: pre-wrap; word-wrap: break-word; }
.postit .quando {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--lilas);
  font-family: Georgia, serif;
  text-align: right;
}
.postit .tirar {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  color: #A33;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.campo { display: block; margin: 14px 0; }
.campo b { display: block; margin-bottom: 6px; }
.campo input, .campo textarea {
  width: 100%;
  padding: 12px;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--texto);
  border: 2px solid var(--lilas-claro);
  border-radius: 10px;
  background: #fff;
}
.campo textarea { min-height: 220px; }
.erro { color: #A33; background: #FBEAEA; border-radius: 10px; padding: 10px 14px; }
h2 { color: var(--lilas); font-weight: normal; margin-bottom: 4px; }
.cantor-hino { text-align: center; color: var(--lilas); margin-top: 0; }
