body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f26522; /* cor de fundo laranja */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.box.left img {
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.box.right {
  background: #ff6a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: #fff;
  max-width: 400px;
}

.box.right h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.box.right h1 {
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.box.right ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.box.right ul li {
  margin: 8px 0;
}

.cta {
  display: inline-block;
  background-color: #1db954; /* verde estilo botão */
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta:hover {
  background-color: #17a446;
}
