.container-hero {
  align-items: center;
  height: 94vh;
  position: relative;
}

.hero-content {
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 8%;
  right: 0;
  animation: imagem 6s ease-in-out infinite;
}

.hero-btn {
  margin-top: 3rem;
}

.pc-1 {
  display: none;
}

.pc-2 {
  display: block;
}

@keyframes imagem {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 1100px) {
  .pc-1 {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }

  .pc-2 {
    display: none;
  }

  .container-hero {
    flex-direction: column;
    align-items: normal;
  }

  .hero-image {
    position: relative;
    width: 70%;
    margin-top: 5vh;
  }

  .hero-content {
    margin-top: 5vh;
  }
}

@media screen and (max-width: 700px) {
  .hero-image {
    position: relative;
    width: 90%;
    margin-top: 5vh;
  }

  .hero-content {
    margin-top: 10vh;
  }

  .font-size-title {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 554px) {
  .hero-image {
    position: relative;
    width: 90%;
    margin-top: 10vh;
  }

  .hero-content {
    margin-top: 10vh;
  }

  .font-size-title {
    font-size: 2rem;
    width: 350px;
  }
}

@media screen and (max-width: 384px) {
  .font-size-title {
    width: 250px;
  }
}

@media screen and (max-width: 374px) {
  .btn {
    color: #eeeeee;
    text-decoration: none;
    background-color: #ff3e00;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 328px) {
  .btn {
    color: #eeeeee;
    text-decoration: none;
    background-color: #ff3e00;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 282px) {
  .btn {
    color: #eeeeee;
    text-decoration: none;
    background-color: #ff3e00;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.6rem;
  }
  .font-size-title {
    font-size: 1.8rem;
  }
}
