/* Landing neutra para visitantes sem convite (card #83). */
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #1a1712;
  color: #897e6e;
  font-family: Georgia, 'Times New Roman', serif;
}
main { text-align: center; padding: 2rem; }
main p { font-size: 1.05rem; line-height: 1.7; }
/* versão inglesa empilhada (#84) — separada e mais esbatida que o pt */
main p.en { font-style: italic; opacity: 0.75; font-size: 0.95rem; }
main p.en:first-of-type { margin-top: 2.2rem; }

/* #152: recuperação de link por email — discreta, na mesma paleta. */
.recover-form { margin: 2rem auto 0; max-width: 24rem; }
.recover-form label { display: block; font-size: 0.95rem; margin-bottom: 0.6rem; }
.recover-row { display: flex; gap: 0.5rem; justify-content: center; }
.recover-row input {
  flex: 1; min-width: 0; padding: 0.55rem 0.7rem; font: inherit; font-size: 0.95rem;
  color: #e8dccd; background: #221e17; border: 1px solid rgba(200, 168, 104, 0.3);
  border-radius: 8px;
}
.recover-row input::placeholder { color: #6b6356; }
.recover-row input:focus { outline: none; border-color: rgba(200, 168, 104, 0.6); }
.recover-row button {
  padding: 0.55rem 1.1rem; font: inherit; font-size: 0.95rem; cursor: pointer;
  color: #e8dccd; background: rgba(200, 168, 104, 0.14);
  border: 1px solid rgba(200, 168, 104, 0.45); border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.recover-row button:hover { background: rgba(200, 168, 104, 0.24); color: #f5e9d2; }
.recover-msg { margin-top: 2rem; color: #b8a888; }
.recover-msg.en { color: #897e6e; }
