.home {
  display: flex;
}

.home .full-screen {
  padding: 50px 0;
  margin-top: 40px;
  justify-content: center;
}

.home .texto-home {
  position: relative;
  color: #222222;
  letter-spacing: 2px;
}

.redes-sociais {
  display: flex;
  gap: 20px;
}

.redes-sociais a:hover {
  transform: scale(1.3);
}

.home .texto-home,
.home .img-home {
  flex: 0 0 50%;
  /* ocupa 50% do tamanho e não faz grow nem shrink */
  max-width: 40%;
  padding: 5px;
}

.img-home:hover {
  transform: scale(1.04);
  transition: .2s ease;
}

@media(max-width: 900px) {
  .home .texto-home {
    flex: 0 0 1000%;
    max-width: 100%;
    text-align: center;
    height: 40vh;
    padding: 0 var(--mobile-padding);
  }

  .home .img-home {
    display: flex;
    justify-content: center;
  }

  .redes-sociais {
    display: flex;
    justify-content: center;
  }
}

.home .img-home .img-box {
  max-width: 450px;
  margin: auto;
  border-radius: 70%;
}

.home .img-home .img-box img {
  padding: 10px;
  border-radius: 30px;
  box-shadow: 0 10px 30px var(--imagem);
  transition: transform 0.3s ease;
  max-width: 310px;
}

.home .texto-home p {
  font-family: var(--fonte-secundaria);
  font-size: 2rem;
  margin: 30px 0px;
  color: var(--black);
}

.home .texto-home h1 {
  font-family: var(--fonte-secundaria);
  font-size: var(--fonte-gigante);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--black);
}

.home .texto-home h2 {
  font-family: var(--fonte-secundaria);
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 600;
  font-style: italic;
  color: #2a5066;
}

@media(max-width: 456px) {
  .home .texto-home {
    height: auto;
    margin-top: -40px;
    padding-bottom: 60px;
  }

  .home .texto-home h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}