/* Estilo do botão de CTA ajustado ao tamanho do texto */
.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: #B28C4C;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background: #FADC84;
  color: #000;
}

.cta-button-white {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.cta-button-white:hover {
  background: #FADC84;
  color: #000;
}