#single-livro {
  padding-bottom: 80px;
  padding-top: 30px;
}

#single-livro h2 {
  font-size: 30px;
  color:#032A64;
  font-weight: bold;
  text-align: left;
}

#single-livro .buttons a{
  display: inline-block; /* <<< isso resolve */
  width: auto;  
  padding: 12px 20px;
  margin-top: 25px;
  max-width: 140px;
  background: #0072BC;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-family: Open Sans;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: all 0.3s ease;
}
/* HOVER */
#single-livro .buttons a:hover {
  background: #008ce9;              /* cor um pouco mais clara */
  transform: scale(1.03);           /* aumenta levemente */
  box-shadow: 0 6px 20px rgba(0, 114, 188, 0.4);  /* brilho */
}