body {
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #1f1f1f 0%, #3a2a25 40%, #5c3b2b 100%);
  margin: 0;
  padding: 0;
  color: #f1e7e2;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 3em;
  color: #f5c1a0;
  margin-bottom: 25px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

header img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* ===== SEÇÕES ===== */
.sinopse, .autor {
  max-width: 850px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 2px 25px rgba(0,0,0,0.4);
}

/* ===== TÍTULOS ===== */
.sinopse h2, .autor h3 {
  color: #f5c1a0;
  text-align: center;
  margin-bottom: 25px;
}

/* ===== AUTOR ===== */
.autor {
  text-align: center; /* ✅ Centraliza todo o conteúdo */
}

.autor img {
  display: block;
  margin: 0 auto 25px auto; /* ✅ Centraliza a imagem */
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* ===== CHAMADA PARA AÇÃO ===== */
.cta {
  text-align: center;
  margin: 70px auto;
}

button, a.btn {
  background: #f5c1a0;
  color: #2b1a14;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2em;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  font-weight: bold;
  box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

button:hover, a.btn:hover {
  background: #e89b6c;
  transform: scale(1.05);
}

/* ===== RODAPÉ ===== */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(0,0,0,0.6);
  color: #d5b9a4;
  font-size: 0.95em;
  border-top: 1px solid rgba(255,255,255,0.1);
}

  
