* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  padding: 20px 100px 0px 100px;
}

#logo {
  width: 80px;
}

#conteudo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#textos {
  width: 600px;
}

#textos h2 {
  color: #333;
  font-size: 60px;
  font-weight: bold;
}

#textos h2 span {
  color: #017143;
  font-size: 70px;
  font-weight: 900;
}

#textos p {
  font-size: 16px;
}

#textos button {
  background-color: #017143;
  color: white;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-top: 20px;
  transition: .5s;
}

#textos button:hover {
  background-color: #018950;
}

#img {
  width: 600px;
  display: flex;
  justify-content: flex-end;
  margin-top: 250px;
}

nav {
  display: flex;
  justify-content: center;
}

.botao-menu {
  width: 60px;
  cursor: pointer;
  transition: .5s;
}

.botao-menu:hover {
  transform: translateY(-30px);
}

#imagem-copo {
  width: 340px;
}

#circulo {
  background-color: #017143;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: circle(600px at right 800px);
  z-index: -1;
  transition: .5s;
}