/* Fonte suave e mágica */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

body {
  font-family: 'Playfair Display', serif;
  background-color: #fdfcf9;
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  color: #2e2e2e;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Cabeçalho com presença lunar */
header {
  text-align: center;
  padding: 40px 20px 20px;
  background-color: #f6f2eb;
  border-bottom: 1px solid #dcd6cf;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #3c3c3c;
}

.manifesto {
  font-style: italic;
  color: #6a5e55;
  font-size: 1.2em;
  margin-top: 10px;
}

/* Imagem de capa */
.capa-grimorio {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 40px auto 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(80, 70, 60, 0.1);
}

/* Seção de poemas */
.poemas {
  padding: 40px 20px;
  text-align: center;
}

.poemas h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #4a3f3f;
}

.poemas ul {
  list-style: none;
  padding: 0;
}

.poemas li {
  margin: 10px 0;
}

.poemas a {
  text-decoration: none;
  color: #5c4d4d;
  font-weight: bold;
  transition: color 0.3s ease;
}

.poemas a:hover {
  color: #8c6e6e;
}

/* Rodapé com assinatura */
footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: #7a6a5f;
  border-top: 1px solid #eae4dc;
}

