header {
  background-image: url('../img/bg-header.png');
  height: 100vh;
  position: relative;

}

header .logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
  
  position: absolute;
  margin-left: 215px;
  margin-top: 35px;
}

/* Main CTA */
.anuncio-central {
  position: absolute;
  transform: translate(50%, -50%);
  top: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header .main-title {
  color: #ffffff;
  font-size: 47px;
  font-weight: bold;
  
  margin-bottom: 35px;
}
header .sub-title {
  color: #ffffff;
  font-size: 14px;
  width: 80%;

  margin-bottom: 50px;
}

/* Form CTA */
.anuncio-central form {
  display: flex;
  justify-content: space-between;
  width: 110%;

}
.anuncio-central form input[type='text'] {
  width: 250px;
  height: 40px;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding-left: 1em;
  background-color: #979797;
  opacity: 0.7;
  font-size: 14px;
}
::placeholder {
  color: #ffffff;
  opacity: 1;
}

.anuncio-central form input[type='button'] {
  width: 140px;
  height: 42px;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding-left: 1em;

  background-image: linear-gradient(to right, #FE985B, #FE4FA7);
}

