@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(217, 217, 217, 0.862745098);
  background-image: url(../imagens/background-image.jpg);
  background-attachment: fixed;
}

main {
  width: 100%;
  background-color: rgba(217, 217, 217, 0.862745098);
}

h1, h2, h3 {
  font-family: "Playfair Display", sans-serif;
}

p {
  font-family: "Times New Roman", Times, serif;
}

.botao-de-contato {
  background-color: #1E3D32;
  font-size: 1.2rem;
  color: white;
  border: none;
  font-weight: bold;
  text-shadow: 0px 0px -3px rgba(0, 0, 0, 0.156);
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.178);
  transition: transform 0.6s ease;
  cursor: pointer;
}
.botao-de-contato:hover {
  background-color: #1f4738;
  transform: scale(1.02);
}

@media (min-width: 1024px) {
  main {
    margin: auto;
    width: 1024px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.326);
  }
}
.home {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
}
.home__logo {
  width: 65%;
}
.home__title {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  padding-inline: 3vw;
  text-align: center;
}
.home__text {
  line-height: 1.8rem;
  font-size: 1.3rem;
  text-align: center;
  padding-inline: 5vw;
}
.home__button {
  padding-inline: 20vw;
  padding-block: 2vh;
  margin-bottom: 5vh;
}

@media (min-width: 768px) {
  .home__logo {
    width: 50%;
  }
  .home__title {
    font-size: 2.5rem;
  }
  .home__text {
    font-size: 1.8rem;
  }
  .home__button {
    padding-inline: 30vw;
    padding-block: 3vh;
  }
}
@media (min-width: 1024px) {
  .home__logo {
    width: 15%;
  }
  .home__text {
    width: 1000px;
    font-size: 1.5rem;
  }
  .home__button {
    padding-inline: 5vw;
  }
}
.sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sobre__title {
  text-align: center;
  font-size: 2rem;
  margin: 10px 0px 30px;
}
.sobre__container {
  background-color: rgba(255, 255, 255, 0.703);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.366);
}
.sobre__img {
  width: 100%;
  justify-self: start;
  border-radius: 10px 10px 0px 0px;
}
.sobre__name {
  margin: 15px 10px 20px 10px;
  font-size: 1.7rem;
  text-align: center;
}
.sobre__text {
  font-size: 1.3rem;
  line-height: 2rem;
  margin: 0.3rem 10px;
  text-indent: 1.5rem;
  text-align: left;
}
.sobre__button {
  display: block;
  margin: 30px auto 30px auto;
  padding: 15px;
  width: 80%;
}

@media (min-width: 768px) {
  .sobre__title {
    font-size: 2.5rem;
    margin: 30px 0px 50px 0px;
  }
  .sobre__container {
    width: 80%;
  }
  .sobre__name {
    font-size: 2.2rem;
  }
  .sobre__text {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .sobre__container {
    width: 65%;
    padding-inline: 25px;
  }
  .sobre__img {
    width: 30%;
    border-radius: 15px;
    margin-top: 30px;
  }
  .sobre__button {
    width: 45%;
    margin: 50px;
  }
}
.servicos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servicos__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.servicos__title {
  text-align: center;
  font-size: 2rem;
  padding-top: 20px;
  margin-top: 30px;
}
.servicos__text {
  margin-bottom: 30px;
  font-size: 1rem;
}
.servicos__card {
  width: 90%;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.401);
  margin-block: 10px;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.756);
}
.servicos__card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}
.servicos__card-text {
  font-size: 1.2rem;
  line-height: 1.4rem;
}

@media (min-width: 768px) {
  .servicos__card {
    width: 75%;
  }
  .servicos__title {
    font-size: 2.5rem;
  }
  .servicos__text {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .servicos__container {
    max-width: 1000px;
    margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .servicos__card {
    width: 30%;
    height: 250px;
    transition: transform 0.5s ease;
  }
  .servicos__card:hover {
    transform: scale(1.02);
    background-color: white;
  }
  .servicos__card-title {
    margin-bottom: 30px;
  }
}
.contato {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  padding-bottom: 50px;
}
.contato__container {
  width: 100%;
}
.contato__title {
  font-size: 2rem;
  text-align: center;
  margin: 30px;
}
.contato__text {
  margin: 15px 30px;
  font-size: 1.4rem;
}
.contato__img {
  width: 30px;
  margin-right: 20px;
}
.contato__link {
  text-decoration: none;
  color: black;
}
.contato__link:hover {
  text-decoration: underline;
  cursor: pointer;
}
.contato__logo {
  width: 200px;
}

@media (min-width: 768px) {
  .contato {
    flex-direction: row;
    justify-content: space-around;
  }
  .contato__container {
    width: 60%;
  }
  .contato__title {
    font-size: 2.3rem;
  }
  .contato__text {
    font-size: 1.6rem;
  }
  .contato__logo {
    width: 35%;
  }
}
@media (min-width: 1024px) {
  .contato {
    justify-content: space-evenly;
  }
  .contato__logo {
    width: 350px;
  }
}
.footer {
  background-color: #333333;
  padding-block: 20px;
  color: white;
  text-align: center;
}
.footer__text {
  margin-bottom: 20px;
}
.footer__link {
  color: white;
  text-decoration: none;
  font-weight: 800;
}
.footer__link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
