* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 100%;
  position: relative;
}

header .logo {
  position: absolute;
  left: 20px;
}

header img {
  height: 70px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 40px 0;
  gap: 50px;
}

.imagem img {
  max-width: 350px;
  border-radius: 6px;
}

.descricao {
  max-width: 400px;
}

.descricao h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.descricao h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.descricao p {
  font-size: 16px;
  line-height: 1.6;
}

.voltar-container {
  margin: 40px 0;
}

.btn {
  display: inline-block;
  padding: 12px 40px;
  border: 2px solid #006633;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #006633;
  color: #fff;
}
