@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  flex-direction: row;
}

.logoHeader {
  display: flex;
  height: 50px;
  width: 50vw;
  justify-content: space-between;
  margin: 35px;
  margin-bottom: 0;
  margin-right: 0;
  align-items: center;
}
.logoHeader img {
  width: 245px;
  margin-bottom: 30px;
}

.cabeçalho {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50vw;
  margin-right: 30px;
}
.cabeçalho .botões {
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: space-around;
  align-items: center;
  gap: 33px;
}
.cabeçalho .botões ul {
  display: flex;
  width: 80%;
  justify-content: space-around;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}
.cabeçalho .botões ul a {
  color: #4B5563;
  text-decoration: none;
}
.cabeçalho .botões #btn1 {
  background-color: #16A34A;
  border: solid 1px #21C05C;
  border-radius: 6px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  width: 25%;
  height: 60px;
}
.cabeçalho .botões #btn1:hover {
  background-color: #21C05C;
  cursor: pointer;
}

hr {
  color: #B4AEAE;
  width: 90vw;
  margin-left: 35px;
  margin-right: 35px;
}

.part1 {
  background-color: aquamarine;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.textos {
  width: 40vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.textos .titulos {
  display: flex;
  flex-direction: column;
  height: 250px;
  gap: 15px;
}
.textos h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 62px;
}
.textos p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  color: #4B5563;
}

.botões2 {
  display: flex;
  align-items: center;
  gap: 45px;
  height: 100px;
  width: 40vw;
}
.botões2 #btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #16A34A;
  border: solid 1px #21C05C;
  border-radius: 6px;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  width: 230px;
  height: 62px;
}
.botões2 #btn3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: white;
  border: solid 1px #2563EB;
  border-radius: 6px;
  color: #2563EB;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  width: 230px;
  height: 62px;
}
.botões2 #btn2:hover {
  background-color: #21C05C;
  cursor: pointer;
}
.botões2 #btn3:hover {
  background-color: #eef3fc;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */