body {
  background: linear-gradient(to left, #1A4855, #628E75);
  color: #F9F9F9;
  font-family: 'Poppins';
  width: 75%;
  margin: auto;

}

h4 {
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

h1 {
  font-weight: 900;
  font-size: 68px;
  text-transform: uppercase;
  width: 9ch;
  line-height: 74px;
  margin: 0;
}

.cabecalho {
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.redes-sociais {
  justify-content: space-around;
  gap: 40px;
  display: flex;
}

#img-logo {
  width: 130px;
  height: 60px;
}

.conteudo-principal {
  padding: 70px 0;
  display: flex;
  justify-content: space-between;
}

.campo-textos p {
  font-size: 16px;
  font-weight: 400;
  width: 42ch;
  margin: 30px 0;
}

#img-principal {
  width: 500px;
  transition: 2s;
}

#img-principal:hover {
  width:535px;
  transition: 2s;
}


@media screen and (max-width: 1050px) {
  .conteudo-principal {
    display: block;
  }
  .campo-textos {
    margin-top: 220px;
  }

  #img-principal {
    max-width: 360px;
    width: 80%;
    margin: 50px auto;
    position: absolute;
    top: 150px;
  }
}

@media screen and (max-width:700px) {
  body {
    width: 75%;
  }

  #img-logo {
    width: 42%;
    height: auto;
  }

  .campo-textos {
    margin-top: 125px;
  }

  #img-principal {
    max-width: 360px;
    width: 80%;
    margin: auto;
    position: absolute;
    top: 100px;
  }

  .redes-sociais {
    gap: 15px;
  }
  h4 {
    font-size: 18px;
    letter-spacing: normal;
    margin: 0;
    font-weight: 600;
  }
  h1 {
    font-size: 50px;
    width: 9ch;
    line-height: 50px;
  }
  .campo-textos p {
    font-size: 14px;
    width: 100%;
    margin: 10px 0;
  }
  
}