@font-face {
  font-family: Graphik Thin;
  src: url('../fonts/GraphikThin.otf') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Graphik Light;
  src: url('../fonts/GraphikLight.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Graphik Extra Light;
  src: url('../fonts/GraphikExtralight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Red Hat Display Regular;
  src: url('../fonts/RedHatDisplay-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Red Hat Display Bold;
  src: url('../fonts/RedHatDisplay-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark-green: #10261c;
  --white: white;
  --container: 1200px;
  --dark-grey: #222;
  --medium-gray: #5f5f5f;
  --orange: #f7941e;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.body {
  clear: none;
  aspect-ratio: auto;
  background-color: var(--dark-green);
  color: var(--white);
  object-fit: fill;
  overflow: visible;
}

.container {
  width: 100%;
  max-width: var(--container);
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.container.container-hero {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  border-bottom-right-radius: 0;
  flex-flow: column;
  max-width: 100%;
  position: relative;
}

.container.container-projects {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 290px;
}

.container.container-contact {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  aspect-ratio: auto;
  background-image: url('../images/border-contact.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  padding-top: 56px;
  padding-bottom: 56px;
}

.container.container-about {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: center;
}

.container.container-footer {
  grid-row-gap: 32px;
  flex-direction: column;
}

.navbar {
  z-index: 1;
  background-color: #ddd0;
  background-image: linear-gradient(#10261c, #10261c00);
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 56px;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-item {
  color: var(--white);
  background-color: #2220;
  border-radius: 100px;
  padding: 0;
  font-family: Red Hat Display Regular, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.navmenu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.cta-nav {
  background-image: linear-gradient(90deg, #888282, #ededed);
  border-radius: 100px;
  width: auto;
  height: auto;
  padding: 1px;
  text-decoration: none;
  display: block;
}

.cta-nav:hover {
  background-image: linear-gradient(320deg, #888282, #ededed);
}

.div-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: #23513c;
  border-radius: 100px;
  padding: 10px 24px;
  transition: all .3s;
  display: flex;
}

.div-block:hover {
  background-color: var(--dark-green);
}

.hero {
  width: 100%;
  margin-top: 0;
  position: relative;
}

.border-hero {
  z-index: -1;
  display: none;
  position: absolute;
  top: 0;
  right: 16px;
}

.content-hero {
  z-index: 2;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 90%;
  max-width: none;
  margin-top: 96px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 56px;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.p {
  color: var(--white);
  text-transform: none;
  margin-bottom: 0;
  font-family: Graphik Light, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.p.p-localization {
  width: 95%;
  color: var(--white);
  text-transform: none;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 24px;
}

.p.p-about {
  text-align: center;
}

.p.footer-legal-text {
  border: 1px solid var(--white);
  border-radius: 5px;
  padding: 4px 24px;
  text-decoration: none;
  transition: all .3s;
}

.p.footer-legal-text:hover {
  background-color: var(--white);
  color: var(--dark-grey);
}

.p.p-cta {
  color: var(--dark-grey);
}

.p.p-projects {
  text-transform: none;
}

.p.p--hero {
  text-transform: uppercase;
  font-weight: 300;
}

.h1 {
  letter-spacing: 10px;
  text-indent: 0;
  text-transform: uppercase;
  column-count: auto;
  border-top: 1px #ffffff4d;
  border-bottom: 1px solid #ffffff4d;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 12px;
  padding-bottom: 8px;
  padding-left: 0;
  font-family: Graphik Thin, sans-serif;
  font-size: 4rem;
  font-weight: 100;
  line-height: 3rem;
}

.p-big {
  letter-spacing: 0;
  margin-bottom: 0;
  font-family: Graphik Light, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2rem;
}

.image-2 {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.image-3 {
  z-index: -2;
  opacity: 1;
  position: absolute;
  top: 166px;
  right: 0;
  transform: translate(0);
}

.localization {
  margin-top: 88px;
  position: relative;
}

.h2 {
  letter-spacing: 5px;
  text-transform: uppercase;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin: 0;
  font-family: Graphik Thin, sans-serif;
  font-size: 40px;
  font-weight: 100;
  line-height: 50px;
}

.localization-content {
  width: var(--container);
  background-image: url('../images/localization-border.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  height: auto;
  margin-top: 24px;
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
}

.projects {
  margin-top: 0;
  position: relative;
}

.bg-intro-projectss {
  z-index: -1;
  width: 100%;
  position: absolute;
  top: -72px;
}

.cards-container {
  grid-column-gap: 24px;
  justify-content: space-between;
  align-items: center;
  width: 33%;
  height: 642px;
  margin-top: 24px;
  display: flex;
}

.card {
  width: 100%;
  max-width: 100%;
}

.slider-cards {
  background-color: #ddd0;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 587px;
  max-width: 100%;
  height: 300px;
}

.slide-nav {
  display: none;
}

.mask {
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0;
  width: 100%;
  height: 300px;
}

.slide-card {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-card {
  object-fit: cover;
  width: 100%;
  max-width: 597px;
  height: 300px;
  position: relative;
}

.arrow-container {
  z-index: 2;
  border: 1px solid var(--medium-gray);
  background-color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-top: 0;
  margin-left: 0;
  display: flex;
  position: relative;
}

.left-arrow, .right-arrow {
  justify-content: center;
  align-items: center;
  height: 30%;
  display: flex;
}

.image-9 {
  transform: rotate(180deg);
}

.card-content {
  background-image: url('../images/bg-card-content.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  width: 100%;
  height: 342px;
  padding-left: 16px;
  display: inline-block;
}

.h3 {
  color: var(--white);
  letter-spacing: 4px;
  background-image: linear-gradient(90deg, #2f6b50, #0f6941);
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 4px 16px;
  font-family: Graphik Light, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 38px;
  display: inline-block;
}

.card-infos {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 100%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.cta-card {
  grid-column-gap: 8px;
  background-color: var(--white);
  width: 353px;
  height: 48px;
  color: var(--dark-grey);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.cta-card:hover {
  grid-column-gap: 24px;
}

.contact {
  margin-top: 88px;
  position: relative;
}

.form {
  width: 100%;
  max-width: 570px;
}

.text-field {
  width: 100%;
  height: 46px;
  color: var(--dark-grey);
  border-radius: 5px;
  margin-top: 4px;
  font-family: Red Hat Display Regular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.form-text-area {
  width: 100%;
  min-width: 100%;
  max-width: 570px;
  height: 90px;
  min-height: 90px;
  max-height: 90px;
  color: var(--dark-grey);
  border-radius: 5px;
  font-family: Red Hat Display Regular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.form-news {
  grid-column-gap: 16px;
  border-bottom: 1px solid var(--white);
  width: 100%;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  display: flex;
}

.p-small {
  margin-bottom: 0;
  font-family: Red Hat Display Regular, sans-serif;
  font-size: 13px;
  line-height: 19px;
}

.link {
  color: var(--white);
}

.submit-button {
  background-color: var(--orange);
  text-transform: uppercase;
  border-radius: 100px;
  width: 100%;
  height: 52px;
  margin-top: 16px;
  font-family: Red Hat Display Bold, sans-serif;
  font-size: 18px;
  line-height: 26px;
  transition: all .3s;
}

.submit-button:hover {
  background-color: var(--white);
  color: var(--dark-grey);
}

.div-block-3 {
  aspect-ratio: auto;
}

.image-10 {
  z-index: -1;
  opacity: .46;
  mix-blend-mode: lighten;
  position: absolute;
  top: -145px;
  right: -240px;
}

.about {
  margin-top: 80px;
  position: relative;
}

.image-12 {
  margin-bottom: 0;
  position: relative;
}

.h4 {
  letter-spacing: 10px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #888282, #ededed);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-family: Graphik Thin, sans-serif;
  font-size: 70px;
  font-weight: 100;
  line-height: 78px;
}

.image-14 {
  z-index: -1;
  width: 100%;
  max-width: none;
  display: block;
  position: absolute;
  inset: auto 0% -75%;
}

.footer {
  outline-offset: 0px;
  border-bottom: 1px #e4ebf3;
  outline: 0 #fff0;
  margin-top: 48px;
  margin-bottom: 40px;
  padding: 0;
  position: relative;
}

.overflow-x-normalize {
  display: block;
  overflow: hidden;
}

.image-16 {
  display: none;
}

.checkbox-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.cta--global {
  color: #1f2c4e;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow-wrap: break-word;
  background-color: #e5eee1;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
  display: flex;
}

.cta--hero {
  grid-column-gap: 10px;
  color: #fff;
  overflow-wrap: normal;
  background-color: #23513c;
  border: 1px solid #fff6;
  width: auto;
  padding: 13px 20px;
  font-weight: 400;
  transition: all .3s;
}

.cta--hero:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.p--cta {
  margin-bottom: 0;
  line-height: 1.1rem;
}

.bold-text-3 {
  text-transform: none;
  font-family: Graphik Light, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1rem;
}

.div-block-4 {
  border-radius: 0;
  width: 90%;
  margin: 20px auto;
}

.image-17 {
  border: .5px solid #fff;
  border-radius: 40px 0 40px 40px;
}

.mask-9 {
  border-radius: 0 20px 20px;
  height: 600px;
}

.lightbox-link-4 {
  z-index: 0;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff0;
  border: 1px #a01b19;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 14px 10px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 0;
  left: auto;
  right: auto;
}

.slider-v1-imagens-3 {
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 100%;
  height: auto;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.imagem-lazer-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
}

.p-legenda-24, .p-legenda-2 {
  z-index: 1;
  filter: drop-shadow(0 1px 5px #000000b3);
  color: #fff;
  letter-spacing: .5px;
  text-transform: none;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  inset: 5% 4% auto auto;
}

.img-slider-lazer-3 {
  width: 100%;
  max-width: 100%;
}

.right-arrow-10, .left-arrow-11 {
  height: 50%;
}

.section {
  max-width: 1200px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

.h2-3 {
  letter-spacing: 10px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #888282, #ededed);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-family: Graphik Thin, sans-serif;
  font-size: 120px;
  font-weight: 100;
  line-height: 128px;
}

.div-block-5 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  line-height: 20px;
  display: flex;
}

.div-block-6 {
  z-index: 1;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 35px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.text-block {
  color: var(--dark-grey);
  font-family: Graphik Light, sans-serif;
}

.flutuante {
  z-index: 9;
  cursor: pointer;
  z-index: 9;
  cursor: pointer;
  background-color: #274232;
  background-image: linear-gradient(256deg, #10261c, #367a5b);
  border: 1px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  display: flex;
  position: fixed;
  top: 50%;
  right: 10px;
}

.container-hero-wapper {
  z-index: 2;
  background-image: linear-gradient(0deg, #10261c, #0000);
  border-bottom-right-radius: 0;
  width: 100%;
  height: auto;
  position: absolute;
  inset: auto 0% 0%;
}

.cards-container-setin-1 {
  grid-column-gap: 24px;
  justify-content: space-between;
  width: 1200px;
  height: auto;
  margin-top: 40px;
  display: flex;
}

.setin-1 {
  width: 380px;
  max-width: 100%;
}

.card-content-setin {
  border: .5px solid #ffffff80;
  border-top-width: 0;
  border-bottom-left-radius: 20px;
  flex-direction: column;
  width: 100%;
  height: 401px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
}

.card-infos-setin {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.p-setincard {
  color: var(--white);
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Graphik Thin, sans-serif;
  font-size: 25px;
  line-height: 30px;
}

.p-setincard-2 {
  color: var(--white);
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Red Hat Display Regular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.slider-cards-setin1, .slider-cards-setin-2, .slider-cards-setin-3 {
  background-color: #ddd0;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 587px;
  max-width: 100%;
  height: 300px;
}

.arrow-container-setin, .arrow-container-setin-2 {
  border: 1px solid var(--medium-gray);
  background-color: var(--white);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-top: 0;
  margin-left: 0;
  display: none;
}

.lightbox-link-5 {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.hero-m {
  margin-top: 16px;
  display: none;
  position: relative;
}

.div-block-7 {
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.modal-tl {
  z-index: 11;
  background-color: #202020cc;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  display: none;
  position: fixed;
  top: 0;
  overflow: auto;
}

.fechar-modal-tl {
  cursor: pointer;
  background-color: #6f6c6c;
  border: 1px solid #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: 16px 16px auto auto;
}

.modal-tl-wrapper {
  box-sizing: border-box;
  grid-row-gap: 16px;
  object-fit: fill;
  background-color: #fff;
  border-radius: 8px;
  flex-flow: column;
  width: 100%;
  max-width: 1200px;
  max-height: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  display: flex;
  overflow: auto;
}

.heading--modal--tl {
  color: var(--dark-grey);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.p-regular {
  color: var(--dark-grey);
  margin-bottom: 0;
  margin-left: 0;
  font-size: .8rem;
  line-height: 1.3rem;
}

.lightbox--slider {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.lightbox--slider--img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.nav-item-btn {
  color: var(--white);
  background-color: #2220;
  border-radius: 100px;
  padding: 0;
  font-family: Red Hat Display Regular, sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.image-18 {
  z-index: 1;
  width: 50%;
  margin-top: auto;
  margin-bottom: 0;
  position: absolute;
  inset: 0% 2% 8% auto;
}

.modal-contato-heading-wrapper {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: none;
}

.paragraph-2 {
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  font-size: .8rem;
}

.p-label-form-modal-v1-3 {
  color: #fff;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 22px;
}

.select-form-footer-3 {
  opacity: 1;
  color: #fff;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #202020;
  background-color: #fff0;
  border-top: 1px #000;
  border-bottom: 2px solid #fff;
  border-left: 1px #000;
  border-right: 2px #000;
  width: 100%;
  height: 40px;
  margin-bottom: 8px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 22px;
}

.text-block-8 {
  color: #fff;
}

.heading-modal {
  grid-row-gap: 16px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 64px;
  display: flex;
}

.fechar-modal-chat {
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: 16px 16px auto auto;
}

.checkbox-form-container {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  margin-left: 16px;
  display: flex;
}

.h2-modal {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.div-block-8 {
  width: 100%;
  height: 100vh;
  padding-left: 24px;
  padding-right: 24px;
  display: none;
  inset: 0;
  overflow: hidden;
}

.submit-bt-form-footer-2 {
  color: #fff;
  background-color: #c39463;
  border-radius: 100px;
  height: 54px;
  font-size: 18px;
  line-height: 26px;
  transition: all .3s;
}

.submit-bt-form-footer-2:hover {
  background-color: #697154;
}

.submit-bt-form-footer-2.submit-form {
  color: #1f2c4e;
  text-transform: uppercase;
  background-color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.modal-conversao-chat {
  z-index: 10;
  background-color: var(--dark-green);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: none;
  position: fixed;
  inset: 0% -100vw 0% 0%;
  overflow: hidden;
}

.input-form-footer-email-3 {
  opacity: 1;
  color: #fff;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #202020;
  background-color: #fff0;
  border-top: 1px #000;
  border-bottom: 2px solid #fff;
  border-left: 1px #000;
  border-right: 2px #000;
  width: 100%;
  height: 40px;
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 22px;
}

.form-v2-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 570px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nome--modal--wrapper {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.link-5 {
  color: #c5c5c5;
}

.h2--modal {
  color: #fff;
  text-transform: uppercase;
  min-width: 560px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 100;
  line-height: 2.5rem;
  position: static;
}

.borda-modal {
  width: 100px;
  transform: rotate(90deg);
}

.container-modal-conversao {
  z-index: 1;
  flex-flow: row;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.form-footer-2 {
  flex-flow: column;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.input-form-footer-nome-3 {
  opacity: 1;
  color: #fff;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #202020;
  background-color: #fff0;
  border-top: 1px #000;
  border-bottom: 2px solid #fff;
  border-left: 1px #000;
  border-right: 2px #000;
  width: 100%;
  height: 30px;
  margin-bottom: 8px;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 22px;
}

.modal-conversao-wrapper {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  display: flex;
}

.p-label-formd-v1-3 {
  color: #fff;
  margin-top: 5px;
  font-size: 1rem;
  line-height: 22px;
}

.input-form-footer-telefone-3 {
  opacity: 1;
  color: #fff;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #202020;
  background-color: #fff0;
  border-top: 1px #000;
  border-bottom: 2px solid #fff;
  border-left: 1px #000;
  border-right: 2px #000;
  width: 100%;
  height: 30px;
  margin-bottom: 24px;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 22px;
}

.form-checkbox-footer {
  grid-column-gap: 8px;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.form-checkbox-wrapper-2 {
  grid-column-gap: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 8px;
  display: flex;
}

.p-checkbox-2 {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

@media screen and (min-width: 1440px) {
  .hero, .image-2 {
    width: 100%;
  }

  .card-content {
    padding-left: 16px;
  }

  .mask-9 {
    border-radius: 0 20px 20px;
    height: auto;
    max-height: 600px;
  }

  .lightbox-link-4 {
    background-color: #fff0;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
  }

  .slider-v1-imagens-3 {
    border-bottom-right-radius: 20px;
    height: auto;
    margin-top: 24px;
  }

  .p-legenda-24 {
    font-family: Graphik Light, sans-serif;
  }
}

@media screen and (min-width: 1920px) {
  .hero {
    width: 100%;
  }

  .content-hero {
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 64px;
  }

  .image-2 {
    width: 100%;
  }

  .card-content {
    padding-left: 16px;
  }

  .div-block-4 {
    width: auto;
    max-width: 1200px;
  }

  .image-17 {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .mask-9 {
    max-height: 900px;
  }

  .p-legenda-24 {
    bottom: 190px;
  }

  .p-legenda-2 {
    bottom: 209px;
  }
}

@media screen and (max-width: 991px) {
  .container, .container.container-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.container-localization {
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.container-projects {
    align-items: center;
    padding-top: 124px;
  }

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .border-hero {
    right: 19px;
  }

  .p.p-localization {
    width: auto;
  }

  .h1 {
    font-size: 60px;
    line-height: 68px;
  }

  .image-2 {
    max-width: 55%;
  }

  .localization {
    margin-top: 48px;
  }

  .h2 {
    font-size: 70px;
    line-height: 78px;
  }

  .localization-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .cards-container {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .card {
    flex: 0 auto;
    display: block;
  }

  .contact {
    margin-top: 80px;
  }

  .form {
    max-width: none;
  }

  .form-text-area {
    min-width: 100%;
    max-width: 100%;
  }

  .about {
    margin-top: 80px;
  }

  .h4 {
    text-align: center;
    font-size: 60px;
    line-height: 68px;
  }

  .image-14 {
    width: 150%;
    bottom: -50%;
  }

  .h2-3 {
    font-size: 70px;
    line-height: 78px;
  }

  .cards-container-setin-1 {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .setin-1 {
    flex: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mask {
    height: 300px;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    justify-content: space-between;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .container.container-hero {
    background-image: none;
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .container.container-localization {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.container-projects {
    margin-top: -64px;
    padding-top: 0;
  }

  .container.container-contact {
    padding: 24px 0 24px 16px;
  }

  .container.container-about {
    grid-row-gap: 32px;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-around;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .nav-item {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 24px;
  }

  .navmenu {
    z-index: 10;
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    border-left: 1px solid var(--white);
    background-color: var(--dark-green);
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 70%;
    height: 100vh;
    padding-top: 120px;
    padding-left: 16px;
    padding-right: 16px;
    position: fixed;
  }

  .cta-nav {
    padding: 0;
  }

  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
  }

  .div-block:hover {
    background-color: #23513c;
  }

  .hero {
    display: none;
  }

  .border-hero {
    height: auto;
    display: none;
    right: 0;
    overflow: visible;
  }

  .content-hero {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-image: linear-gradient(#10261c00, #10261c);
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 120px 16px 40px;
  }

  .p {
    text-align: center;
    font-size: 4vw;
    line-height: 5vw;
  }

  .p.p-localization {
    text-align: left;
    width: auto;
    line-height: 26px;
  }

  .p.p-projects {
    text-align: left;
    width: 100%;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    line-height: 22px;
  }

  .h1 {
    letter-spacing: 5px;
    padding-left: 0;
    font-size: 13vw;
    line-height: 13vw;
  }

  .p-big {
    z-index: 1;
    font-size: 5.5vw;
    line-height: 5.5vw;
    position: relative;
  }

  .image-2 {
    object-fit: cover;
    width: 100%;
    max-width: none;
    height: 100vh;
    display: block;
  }

  .image-3 {
    width: auto;
    max-width: none;
    top: 110px;
  }

  .localization {
    margin-top: 48px;
  }

  .h2 {
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    font-size: 35px;
    line-height: 50px;
  }

  .localization-content {
    text-align: left;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    margin-top: 0;
    padding-top: 0;
    position: relative;
  }

  .projects {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .bg-intro-projectss {
    position: static;
    top: 264px;
  }

  .cards-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .card {
    width: 100%;
  }

  .slider-cards {
    width: 100%;
    height: 230px;
  }

  .mask {
    height: 230px;
  }

  .card-content {
    border: 1px solid var(--medium-gray);
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border-radius: 20px;
    height: auto;
    margin-top: -40px;
    padding: 32px 16px 15px;
  }

  .h3 {
    letter-spacing: 0;
    font-size: 24px;
    line-height: 29px;
  }

  .cta-card {
    width: 100%;
  }

  .contact {
    margin-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-text-area {
    min-width: 100%;
    max-width: 100%;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .form-news {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
  }

  .submit-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about {
    margin-top: 64px;
  }

  .h4 {
    text-align: center;
    letter-spacing: 6px;
    font-size: 40px;
    line-height: 46px;
  }

  .image-14 {
    width: 300%;
    max-width: none;
    height: auto;
    inset: auto auto -38% 0%;
  }

  .image-15 {
    height: 350px;
  }

  .image-16 {
    width: 100%;
    display: block;
  }

  .checkbox-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    display: flex;
  }

  .cta--hero {
    z-index: 1;
    width: 100%;
    display: flex;
    position: relative;
  }

  .bold-text-3 {
    font-size: 1rem;
    line-height: 1rem;
  }

  .div-block-4 {
    width: 100%;
    margin-top: 0;
  }

  .image-17 {
    border-width: 0;
    border-radius: 0;
    max-width: 100%;
    margin-top: 20px;
    display: block;
  }

  .mask-9 {
    height: 177px;
    padding-bottom: 0;
  }

  .lightbox-link-4 {
    background-color: #fff0;
    width: 100%;
    height: 100%;
    display: flex;
    top: 0;
    left: 0%;
  }

  .slider-v1-imagens-3 {
    border-bottom-right-radius: 20px;
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .p-legenda-24, .p-legenda-2 {
    z-index: 1;
    font-size: 11px;
    line-height: 18px;
    bottom: 8px;
    right: 16px;
  }

  .img-slider-lazer-3 {
    height: auto;
  }

  .section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .h2-3 {
    text-align: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 50px;
    line-height: 58px;
  }

  .div-block-5 {
    z-index: 1;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: 90%;
    position: relative;
  }

  .flutuante {
    z-index: 50;
    z-index: 8;
    border: 1px solid #fff;
    position: fixed;
    top: 50%;
    right: 8px;
  }

  .container-hero-wapper {
    background-image: none;
    position: absolute;
    inset: auto 0% 0%;
  }

  .cards-container-setin-1 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-top: 0;
    display: flex;
  }

  .setin-1 {
    width: 100%;
  }

  .card-content-setin {
    border: 1px solid var(--medium-gray);
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border-radius: 20px;
    height: auto;
    margin-top: -40px;
    padding: 32px 16px 0;
  }

  .p-setincard-2 {
    padding-bottom: 20px;
  }

  .slider-cards-setin1, .slider-cards-setin-2, .slider-cards-setin-3 {
    width: 100%;
    height: 230px;
  }

  .hero-m {
    height: 100vh;
    margin-top: 0;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .modal-tl {
    z-index: 11;
  }

  .link-block {
    z-index: 10;
    position: fixed;
  }

  .nav-item-btn {
    margin-bottom: 0;
  }

  .menu-button {
    padding-right: 0;
    position: relative;
  }

  .menu-button.w--open {
    z-index: 2;
    background-color: #10261c00;
  }

  .image-18 {
    z-index: 0;
    width: 100%;
    right: 1%;
  }

  .modal-contato-heading-wrapper {
    z-index: 0;
    align-items: flex-start;
    display: flex;
    position: relative;
  }

  .paragraph-2 {
    font-size: .6rem;
    line-height: 1rem;
  }

  .p-label-form-modal-v1-3 {
    color: #fff;
  }

  .select-form-footer-3 {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-radius: 0;
    padding-right: 0;
  }

  .text-block-8 {
    font-size: .7rem;
    line-height: 1rem;
  }

  .heading-modal {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fechar-modal-chat {
    z-index: 1;
  }

  .checkbox-form-container {
    justify-content: center;
    align-items: center;
  }

  .h2-modal {
    font-size: 1.5rem;
    line-height: 2rem;
    display: none;
  }

  .modal-conversao-chat {
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    display: none;
    overflow: auto;
  }

  .input-form-footer-email-3 {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-radius: 0;
    padding-right: 0;
  }

  .form-v2-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .nome--modal--wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .h2--modal {
    font-size: 8vw;
    line-height: 11vw;
  }

  .borda-modal {
    display: none;
  }

  .container-modal-conversao {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    max-width: none;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .input-form-footer-nome-3 {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-radius: 0;
    padding-right: 0;
  }

  .modal-conversao-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 24px;
    display: block;
  }

  .p-label-formd-v1-3 {
    color: #fff;
    margin-top: 12px;
  }

  .input-form-footer-telefone-3 {
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-radius: 0;
    padding-right: 0;
  }

  .form-checkbox-footer {
    justify-content: center;
    align-items: flex-end;
    line-height: 14px;
  }

  .form-checkbox-wrapper-2 {
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .p-checkbox-2 {
    margin-bottom: 0;
    font-size: .7rem;
    line-height: 1rem;
  }
}


@font-face {
  font-family: 'Graphik Thin';
  src: url('../fonts/GraphikThin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik Light';
  src: url('../fonts/GraphikLight.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik Extra Light';
  src: url('../fonts/GraphikExtralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Red Hat Display Regular';
  src: url('../fonts/RedHatDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Red Hat Display Bold';
  src: url('../fonts/RedHatDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}