@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
* {
  padding: 0;
  border: 0;
  margin: 0;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #252B42;
}

button.button {
  padding: 15px 25px;
  border-radius: 25px;
  background-color: #23A6F0;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #23A6F0;
  transition: 0.2s ease-in background-color;
}
button.button:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #fff;
}

div.bg {
  height: 100vh;
  width: 100%;
  z-index: -1;
  background-size: cover;
  position: absolute;
}
div.bg div.filter {
  height: 100%;
}

div#bg1 {
  background: url("../imgs/onePage/bg1.png") no-repeat center;
}
div#bg1 div.filter {
  background: linear-gradient(89.85deg, #000000 0.13%, #000000 0.14%, rgba(0, 0, 0, 0) 99.56%);
}

div#bg2 {
  height: 95vh;
  background: url("../imgs/onePage/bg2.png") no-repeat right;
}
div#bg2 div.filter {
  background: linear-gradient(89.83deg, #FFFFFF 14.24%, #FFFFFF 14.25%, rgba(255, 255, 255, 0) 99.55%);
}

nav#menu {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}
nav#menu h1#logoText {
  font-size: 1.6em;
}
nav#menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
nav#menu ul li > a {
  color: #fff;
  text-decoration: none;
}

div#seta {
  width: 100%;
}
div#seta a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  padding-bottom: 30px;
  position: absolute;
  transform: translatey(-150px);
}
div#seta a svg {
  height: 40px;
  animation: ocilar 3s infinite;
  opacity: 80%;
}

section#section1 {
  height: 100vh;
  margin: 0 auto;
  margin-left: 15%;
  display: grid;
  align-items: flex-start;
}
section#section1 article#mainTextBox {
  align-self: center;
  transform: translateY(-30%);
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  padding-left: 25px;
  box-sizing: border-box;
}
section#section1 article#mainTextBox h1#mainTitle {
  font-size: 3.5em;
}
section#section1 article#mainTextBox p#mainText {
  font-size: 1.3em;
}
section#section1 article#mainTextBox section#buttonBox {
  display: flex;
  gap: 25px;
}
section#section1 article#mainTextBox section#buttonBox button#negativeButton {
  border: 2px solid #fff;
  background-color: rgba(0, 0, 0, 0);
}

section#section2 {
  max-width: 1100px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 15px;
}
section#section2 div.att {
  min-width: 275px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
section#section2 div.att p {
  text-align: center;
}

section#section3 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 150px;
  padding: 0 30px;
  padding-bottom: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  scroll-behavior: smooth;
}
section#section3 h1.title {
  font-size: 2.5em;
}
section#section3 p {
  text-align: center;
}
section#section3 div.carrosselBox {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 100px;
}
section#section3 div.carrosselBox section.carrossel {
  display: flex;
  gap: 20px;
  transition: 0.5s;
}
section#section3 div.carrosselBox section.carrossel img {
  aspect-ratio: 1/1.3;
  width: 20%;
  border-radius: 5px;
}

section#section4 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 200px;
  padding: 0 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
section#section4 h1.title {
  font-size: 2.5em;
}
section#section4 p {
  text-align: center;
}

section#section5 {
  max-width: 1300px;
  height: 95vh;
  margin: 0 auto;
  margin-left: 15%;
  padding: 0px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#section5 h1#titleContate {
  font-size: 3em;
  color: #000000;
}
section#section5 p {
  color: #000000;
  font-weight: bold;
}
section#section5 form#gridForm {
  margin-top: 50px;
  width: -moz-min-content;
  width: min-content;
  display: grid;
  grid-template-columns: 300px 300px;
  grid-template-rows: 50px 125px 50px;
  gap: 25px 10px;
}
section#section5 form#gridForm input[type=text], section#section5 form#gridForm input[type=email], section#section5 form#gridForm textarea {
  padding-left: 15px;
  color: #000000;
  border-radius: 5px;
  border: solid 1px #E6E6E6;
  font-weight: 600;
  box-sizing: border-box;
}
section#section5 form#gridForm input#nameForm {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 300px;
  height: 50px;
}
section#section5 form#gridForm input#emailForm {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 300px;
  height: 50px;
}
section#section5 form#gridForm textarea#contentForm {
  grid-column: 1/3;
  resize: none;
  padding: 15px;
  width: 100%;
}
section#section5 form#gridForm input[type=submit] {
  background-color: #23A6F0;
  font-weight: 600;
  border-radius: 5px;
  width: 200px;
  min-height: 50px;
  cursor: pointer;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer section#icons {
  display: flex;
  justify-content: center;
}
footer section#icons div.iconBox {
  padding: 30px 10px;
}
footer section#icons div.iconBox svg {
  width: 30px;
  height: 30px;
}
footer p#copyright {
  font-size: 0.7em;
  margin-bottom: 10px;
}
footer nav {
  margin-bottom: 30px;
}
footer nav ul {
  display: flex;
  list-style: none;
}
footer nav ul li {
  margin: 0 20px;
}

@media only screen and (min-width: 601px) and (max-width: 900px) {
  nav#menu {
    display: flex !important;
    justify-content: space-between !important;
  }
  section#section5 {
    display: flex !important;
    align-items: center !important;
    margin-left: 0 !important;
  }
  section#section5 form#gridForm input[type=submit] {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    grid-column: 1/3;
  }
}
@media only screen and (max-width: 650px) {
  nav#menu {
    display: flex !important;
    justify-content: center;
  }
  nav#menu ul {
    display: none !important;
  }
  div#seta > a {
    transform: translateY(-140px) !important;
  }
  div#seta > a svg {
    height: 20px;
  }
  section#section1 {
    margin: 0 !important;
    justify-content: center !important;
  }
  section#section1 article#mainTextBox {
    transform: translateY(-10%) !important;
    align-items: center;
    text-align: center;
  }
  section#section1 article#mainTextBox h1#mainTitle {
    font-size: 2.2em !important;
  }
  section#section1 article#mainTextBox p#mainText {
    font-size: 1em !important;
  }
  section#section1 article#mainTextBox section#buttonBox {
    flex-direction: column;
  }
  section#section2 {
    flex-direction: column;
    gap: 100px 20px !important;
  }
  section#section3 {
    margin-top: 80px !important;
  }
  section#section3 img {
    width: 40% !important;
  }
  section#section5 {
    margin-left: 0px !important;
    height: 95vh !important;
  }
  section#section5 form#gridForm {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    position: relative;
  }
  section#section5 form#gridForm input, section#section5 form#gridForm textarea {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  section#section5 form#gridForm input[type=submit] {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  footer div.iconBox {
    padding-bottom: 15px !important;
  }
  footer nav {
    display: none !important;
  }
}
@keyframes ocilar {
  0% {
    transform: translatey(0%);
  }
  50% {
    transform: translatey(33%);
  }
  100% {
    transform: translatey(0%);
  }
}/*# sourceMappingURL=onePage.css.map */
