body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background-color: #000;
  overflow: hidden;
}

.background-shape {
  background: rgb(0, 0, 0) url("../imagens/creative.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.noise {
  background-image: url("../imagens/noise.png");
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.title {
  font-size: 70px;
  color: #fff;
  line-height: 67px;
  position: absolute;
  left: 250px;
  top: 420px;
  z-index: 3;
}

.subtitle-box {
  border: 2px solid #fff;
  border-radius: 25px;
  position: absolute;
  left: 656px;
  top: 740px;
  width: 304px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.subtitle-box span {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.contact-box {
  border: 2px solid #fff;
  border-radius: 25px;
  position: absolute;
  left: 1560px;
  top: 740px;
  width: 224px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

.contact-box a {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.description {
  font-size: 20px;
  color: #fff;
  position: absolute;
  left: 245px;
  top: 824px;
  z-index: 3;
}

.address {
  font-size: 20px;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 1487px;
  top: 829px;
  z-index: 3;
  width: 400px;
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

/* Tablet */
@media (max-width: 1199px) {
  .title {
    font-size: 50px;
    line-height: 55px;
    left: 100px;
    top: 250px;
  }

  .subtitle-box {
    left: 100px;
    top: 500px;
    width: 260px;
    height: 45px;
  }

  .contact-box {
    left: auto;
    right: 100px;
    top: 500px;
  }

  .description {
    left: 100px;
    top: 580px;
    font-size: 18px;
    max-width: 80%;
  }

  .address {
    left: auto;
    right: 50px;
    top: 560px;
    font-size: 16px;
    width: 300px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .title {
    font-size: 36px;
    line-height: 40px;
    position: relative;
    left: auto;
    top: auto;
    margin: 100px 20px 20px;
    text-align: center;
  }

  .subtitle-box,
  .contact-box {
    position: relative;
    left: auto;
    top: auto;
    margin: 15px auto;
    width: 80%;
    max-width: 300px;
  }

  .subtitle-box span,
  .contact-box a {
    font-size: 18px;
  }

  .description {
    position: relative;
    left: auto;
    top: auto;
    margin: 20px auto;
    text-align: center;
    font-size: 16px;
    max-width: 90%;
  }

  .address {
    position: relative;
    left: auto;
    top: auto;
    margin: 20px auto 50px;
    font-size: 14px;
    width: 90%;
    text-align: center;
  }
}
