
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

section {
  box-sizing: border-box;
  min-height: 100vh;
  max-width: 100vw;
  padding: 20px;
}

.divLogo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.divLogo .hazo {
  width: 160px;
}

.divLogo .lettering {
  width: 160px;
}

.powered {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: bold;
  gap: 5px;
  justify-content: center;
}

.powered img {
  height: 80px;
}

/******************************************************************************* 
* Section 1 
*******************************************************************************/
.section1 {
  align-items: center;
  background-image: url("../../dist/img/home/image7.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.section1 .section1Content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 100px;
}

.section1 h1 {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 20px 0;
  text-align: center;
}

.section1 button {
  background-color: #5f47e6;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  padding: 10px;
}

/******************************************************************************* 
* Section 2
*******************************************************************************/
.section2 {
  background-color: yellowgreen;
  background-image: url("../../dist/img/home/image3.jpg");
  background-size: cover;
  display: grid;
  grid-template-rows: 33% 33% 33%;
}

.section2 .section2Content {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

.section2 .section2Content h1 {
  border: 1px solid white;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  margin: 10px;
  padding: 10px;
}

.section2 .section2Content h1 span {
  color: #5f47e6;
}

.section2 .divLogo {
  align-items: flex-end;
  margin-right: 40px;
}

/******************************************************************************* 
* Section 3
*******************************************************************************/
.section3 {
  background-image: url("../../dist/img/home/image9.jpg");
  background-size: cover;
  color: white;
  display: grid;
  font-family: "Montserrat", sans-serif;
  grid-template-columns: 3fr;
  grid-template-rows: 3fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section3 .firstRow {
  display: grid;
  grid-area: 1 / 1 / 2 / 2;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section3 .firstRow .firstColumn {
  align-items: flex-end;
  display: flex;
  grid-area: 1 / 1 / 2 / 2;
  justify-content: center;
}

.section3 .firstRow .firstColumn h1 {
  font-size: 36px;
  font-weight: 500;
}

.section3 .firstRow .firstColumn span {
  color: #ffc000;
}

.section3 .firstRow .secondColumn {
  display: flex;
  flex-direction: column;
  grid-area: 1 / 2 / 2 / 3;
  justify-content: flex-end;
  margin: 15px;
}

.section3 .secondRow {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section3 .secondRow .firstColumn {
  align-items: center;
  display: flex;
  justify-content: center;
  grid-area: 1 / 1 / 2 / 2;
}

.section3 .secondRow .firstColumn p {
  -webkit-box-shadow: 0px 0px 0px 10px rgba(95, 71, 230, 1);
  -moz-box-shadow: 0px 0px 0px 10px rgba(95, 71, 230, 1);
  background-color: #5f47e6;
  border: 1px solid white;
  box-shadow: 0px 0px 0px 10px rgba(95, 71, 230, 1);
  color: white;
  font-size: 36px;
  font-weight: 500;
  margin: 10px;
  padding: 20px;
}

.section3 .secondRow .secondColumn {
  grid-area: 1 / 2 / 2 / 3;
}

.section3 .secondRow .secondColumn .hazo {
  width: 120px;
}

.section3 .secondRow .secondColumn .lettering {
  width: 120px;
}

/******************************************************************************* 
* Section 4
*******************************************************************************/
.section4 {
  background-image: url("../../dist/img/home/image1.jpg");
  background-size: cover;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 4fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.section4 .firstRow {
  align-items: center;
  display: flex;
  flex-direction: column;
  grid-area: 1 / 1 / 2 / 2;
  text-align: end;
}

.section4 .firstRow p,
.section4 .firstRow span {
  color: #5f47e6;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  width: 100%;
}

.section4 .firstRow .author {
  text-align: end;
}

.section4 .secondRow {
  grid-area: 2 / 1 / 3 / 2;
}

.section4 .secondRow .divLogo {
  align-items: flex-end;
  margin-right: 30px;
}

/******************************************************************************* 
* Section 5
*******************************************************************************/
.section5 {
  background-image: url("../../dist/img/home/hazo_planos.png");
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section5 button {
  background-color: #5f47e6;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  padding: 10px;
}

.section5 p {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin-top: 35vh;
}

.section5 span {
  color: #5f47e6;
}

/******************************************************************************* 
* Section 6
*******************************************************************************/
.section6 {
  align-items: center;
  background-color: black;
  background-image: url("../../dist/img/home/image2.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.section6 .divLogo,
.section6 .hazo {
  width: 120px;
}

.section6 button {
  background-color: #5f47e6;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  padding: 10px;
  margin-top: 20px;
}

.section6 .firstRow {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
}

.section6 .firstRow .firstColumn {
  align-items: end;
  color: #5f47e6;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 500;
  grid-area: 1 / 1 / 2 / 2;
  text-align: center;
}

.section6 .firstRow .firstColumn h1 {
  margin: 0;
}

.section6 .firstRow .secondColumn {
  grid-area: 1 / 2 / 2 / 3;
}

.section6 .firstRow .secondColumn img {
  width: 100%;
}

.section6 .secondRow {
  display: grid;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  grid-template-columns: 5fr 1fr 5fr;
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 0px;
}

.section6 .secondRow div {
  align-items: center;
  display: flex;
}

.section6 .secondRow .column1 {
  font-weight: bold;
  grid-area: 1 / 1 / 2 / 2;
  justify-content: flex-end;
  text-align: end;
}

.section6 .secondRow .column2 {
  grid-area: 1 / 2 / 2 / 3;
  justify-content: flex-start;
  text-align: left;
}

.section6 .secondRow .column3 {
  font-weight: bold;
  grid-area: 1 / 3 / 2 / 4;
}

.section6 .secondRow .column4 {
  grid-area: 2 / 1 / 3 / 2;
  justify-content: flex-end;
  text-align: end;
}

.section6 .secondRow .column5 {
  grid-area: 2 / 2 / 3 / 3;
  justify-content: center;
  text-align: center;
}

.section6 .secondRow .column6 {
  grid-area: 2 / 3 / 3 / 4;
  justify-content: flex-start;
  text-align: left;
}

.section6 .secondRow .column7 {
  grid-area: 3 / 1 / 4 / 2;
  justify-content: flex-end;
  text-align: end;
}

.section6 .secondRow .column8 {
  grid-area: 3 / 2 / 4 / 3;
  justify-content: center;
  text-align: center;
}

.section6 .secondRow .column9 {
  grid-area: 3 / 3 / 4 / 4;
  justify-content: flex-start;
  text-align: left;
}

.section6 .secondRow .column10 {
  grid-area: 4 / 1 / 5 / 2;
  justify-content: flex-end;
  text-align: end;
}

.section6 .secondRow .column11 {
  grid-area: 4 / 2 / 5 / 3;
  justify-content: center;
  text-align: center;
}

.section6 .secondRow .column12 {
  grid-area: 4 / 3 / 5 / 4;
  justify-content: flex-start;
  text-align: left;
}

/******************************************************************************* 
* Section 7
*******************************************************************************/
/* .section7 {
  align-items: center;
  background-color: black;
  background-image: url("../../dist/img/home/image2.png");
  background-size: cover;
  color: white;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  justify-content: center;
}

.section7 .sectionContent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 0px;
  width: 80%;
}

.section7 div {
  align-items: center;
  display: flex;
  justify-content: center;
}

.section7 div span {
  color: #c00000;
  font-size: 26px;
  font-weight: 500;
}

.section7 .column1 {
  grid-area: 1 / 1 / 2 / 3;
  align-items: flex-end;
}

.section7 .column2 {
  grid-area: 2 / 1 / 3 / 2;
}

.section7 .column3 {
  grid-area: 2 / 2 / 3 / 3;
}

.section7 .column4 {
  border: 1px solid white;
  font-weight: 500;
  grid-area: 3 / 1 / 4 / 2;
  height: 167px;
}

.section7 .column5 {
  border: 1px solid white;
  font-weight: 500;
  grid-area: 3 / 2 / 4 / 3;
  height: 167px;
}

.section7 .column5 ul {
  grid-area: 3 / 2 / 4 / 3;
  list-style-type: none;
}

.section7 .column6 {
  grid-area: 4 / 1 / 5 / 3;
}

.section7 .column6 s {
  font-size: 30px !important;
} */
/******************************************************************************* 
* Section 8
*******************************************************************************/
.section8 {
  background-color: black;
  background-image: url("../../dist/img/home/image2.png");
  background-size: cover;
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.section8 .column1 {
  align-items: center;
  display: flex;
  grid-area: 1 / 1 / 2 / 2;
  justify-content: center;
}

.section8 .column2 {
  color: white;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  grid-area: 1 / 2 / 2 / 3;
  justify-content: center;
  text-align: center;
}

.section8 .column2 h3 {
  margin: 0;
}

.section8 .column2 button {
  background-color: #5f47e6;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  padding: 10px;
  width: fit-content;
}

/******************************************************************************* 
* Section 9
*******************************************************************************/
.section9 {
  align-items: center;
  background-color: black;
  background-image: url("../../dist/img/home/image2.png");
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
}

.section9 .section9Content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.section9 .section9Content .number {
  font-size: 250px;
  font-weight: bold;
  margin: 0;
}

.section9 button {
  background-color: #5f47e6;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  width: fit-content;
}

.section9 .section9Content .hazo,
.section9 .section9Content .lettering {
  width: 120px;
}

.section9 .section9Content {
  align-items: center;
  display: flex;
  justify-content: center;
}

.section9 .section9Content .textArea {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  max-width: 360px;
}

.section9 .section9Content .textArea img {
  width: 200px;
}

.section9 .section9Content .textArea h2,
.section9 .section9Content .textArea p {
  margin: 0;
}

.section9 .section9Content .textArea p {
  color: #b7aaaa;
}

.section9 .avatarArea {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section9 .avatarArea p {
  margin: 0;
}

.section9 .avatar {
  width: 120px;
}

/******************************************************************************* 
* Section 10
*******************************************************************************/
.section10 {
  align-items: center;
  background-color: black;
  background-image: url("../../dist/img/home/image2.png");
  background-size: cover;
  color: white;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  gap: 20px;
  justify-content: center;
}

.section10 .section10Content {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.section10 .section10Content .number {
  font-size: 250px;
  font-weight: bold;
  margin: 0;
}

.section10 .section10Content .chat {
  max-width: 500px;
  width: 100%;
}

.section10 .section10Content .avatarArea {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section10 .section10Content .avatarArea p {
  margin: 0;
}

.section10 .section10Content .avatar {
  width: 120px;
}

.section10 .section10TextArea {
  display: flex;
  flex-wrap: wrap;
  font-family: "Montserrat", sans-serif;
  gap: 20px;
  justify-content: center;
}

.section10 .section10TextArea .textBox {
  background-color: #5f47e6;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  justify-content: center;
  padding: 20px;
  margin: 0 20px;
  max-width: 35%;
  min-width: 250px;
}

.section10 .section10TextArea .textBox p {
  color: #b7aaaa;
  margin: 0;
}

.section10 .section10TextArea .textBox strong {
  color: white;
}

.section10 .section10TextArea .plus {
  align-items: center;
  display: flex;
  font-size: 40px;
  font-weight: bold;
  justify-content: center;
  min-width: 100px;
}

/******************************************************************************* 
* Section 11
*******************************************************************************/
.section11 {
  align-items: center;
  background-color: black;
  background-image: url("../../dist/img/home/image2.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  gap: 20px;
  justify-content: center;
}

.section11 .section11Content1 {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1000px) {
  .section11 .section11Content1 {
    flex-wrap: wrap;
  }
}

.section11 .section11Content1 .section11Div1 {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.section11 .section11Content1 .section11Div1 .box1 {
  align-items: center;
  background-color: #5f47e6;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 400px;
  padding: 20px 10px;
  width: 100%;
}

.section11 .section11Content1 .section11Div1 .box1 .title {
  display: flex;
  gap: 10px;
}

.section11 .section11Content1 .section11Div1 .box1 .title h1 {
  margin: 0;
}

.section11 .section11Content1 .section11Div1 .box1 .title p {
  font-size: 66px;
  font-weight: bold;
  line-height: 59px;
  margin: 0;
}

.section11 .section11Content1 .section11Div1 .box1 .textArea {
  color: #b7aaaa;
  display: flex;
  justify-content: space-between;
}

.section11 .section11Content1 .section11Div1 .box1 .textArea p {
  margin: 0;
}

.section11 .section11Content1 .section11Div1 .box1 .textArea .divLogo img {
  width: 80px;
}

.section11 .section11Content1 .section11Div1 .box2 {
  background-color: #5f47e6;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin: 0;
  max-width: 400px;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.section11 .section11Content1 .section11Div2 {
  height: 400px;
  left: 0px;
  top: 50px;
  width: 100%;
}

.section11 .section11Content2 button {
  background-color: white;
  border: none;
  border-radius: 10px;
  color: #5f47e6;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  padding: 10px;
  text-wrap: nowrap;
  width: fit-content;
}

/******************************************************************************* 
* Section 12
*******************************************************************************/
.section12 {
  align-items: center;
  background-color: #5f47e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
}

.section12 p {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.section12 span {
  background-color: white;
  border-radius: 5px;
  color: #5f47e6;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  padding: 5px;
}

.section12 button {
  background-color: white;
  border: none;
  border-radius: 10px;
  color: #5f47e6;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 500;
  padding: 10px;
  width: fit-content;
}

.section12 .hazo,
.section12 .lettering {
  width: 200px;
}

.section12 .powered {
  align-self: flex-end;
  margin: auto 20px 20px 0;
  font-size: 12px;
}
