.solucoes-container {
  max-width: 900px;
  margin: 1rem auto;
  padding: 30px;
  background-color: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

.solucoes-container h1 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #1e1e2f;
}

.solucoes-container h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1e1e2f;
}

.solucoes-lista {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}

.solucoes-lista li {
  margin-bottom: 10px;
  font-size: 16px;
}

.botao-link {
  display: inline-flex;
  width: 100px;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #1e1e2f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  float: right; /* posiciona à direita */
}

.botao-link:hover {
  background-color: #333;
}

.botao-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}