/* === MENU HORIZONTAL (herdado) === */
nav {
    display: flex;
    justify-content: center;
    background-color: #333;
    padding: 10px 0;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    text-align: center;
  }
  
  nav a:hover {
    background-color: #555;
  }
  
  /* === HEADER DA PÁGINA LIVRO === */
  header {
    text-align: center;
  }
  
  header h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #333;
    margin: 20px 0;
  }
  
  /* === CONTEÚDO PRINCIPAL DO LIVRO === */
  .conteudo-livro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
  }
  
  .conteudo-livro h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #444;
  }
  
  .conteudo-livro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }
  
  /* === RODAPÉ === */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #f2f2f2;
    color: #777;
    font-size: 14px;
    margin-top: 40px;
  }
  .botao-download {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.botao-download:hover {
    background-color: #555;
}
