#hero {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
}

#container-hero {
  max-width: 550px;
}

#hero button {
  background-color: var(--Laranja-vip);
  margin: 40px 0;
  display: flex;
  gap: 5px;
  align-items: center;
}

#hero button:hover {
    background-color: var(--Laranja-escuro);
    transition: all 0.3s ease;
}

#hero button img{
    width: 17px;
    height: 17px;
}

#hero img {
  width: 100%;
  max-width: 400px;
  height: 100%;
}

@media (max-width: 768px) {
#container-hero {
    text-align: center;
    justify-content: center;
    align-content: center;
    
  }

  #container-hero button{
    margin-left: auto;
    margin-right: auto;
  }

}
