:root {
  --white: white;
  --paragraphs: #535c62;
  --heading: #101b22;
  --background: #ebebeb;
  --cng: #fda13e;
  --accent: #fdc23e;
  --paragraphs-dark: #b6c0ca;
  --border: #101b2233;
  --info-text: #778697;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar {
  background-color: var(--white);
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: fixed;
  top: 28px;
  left: 28px;
  right: 28px;
}

.body {
  color: var(--paragraphs);
  letter-spacing: .13px;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  display: flex;
}

.nav-block {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 10px;
  display: flex;
}

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

.logo {
  height: 30px;
  color: var(--heading);
}

.brand {
  justify-content: center;
  align-items: center;
  margin-left: 18px;
  display: flex;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.nav-link {
  color: var(--heading);
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 27px;
  padding-bottom: 27px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: opacity .25s cubic-bezier(.215, .61, .355, 1);
  display: block;
}

.nav-link:hover {
  opacity: .66;
}

.nav-link.w--current {
  color: var(--heading);
}

.nav-link.w--current:hover {
  color: var(--paragraphs);
}

.nav-button {
  background-color: var(--cng);
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  padding: 27px 35px;
  display: flex;
}

.text-button {
  color: var(--heading);
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: Barlow, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
}

.text-button.white {
  color: var(--white);
}

.icon-button {
  object-fit: contain;
  width: 4px;
  max-width: none;
  height: 8px;
  margin-left: 8px;
}

.section-hero-a {
  z-index: 10;
  width: 100%;
  min-height: 85vh;
  color: var(--background);
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 14px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.block-hero-a {
  z-index: 20;
  background-image: linear-gradient(#0000, #000c);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 50px 50px;
  display: flex;
  position: relative;
}

.hero-a {
  z-index: 20;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: block;
  position: static;
}

.heading-hero {
  max-width: 800px;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 50px;
  font-weight: 500;
  line-height: 100%;
  display: none;
}

.heading-hero.dark {
  color: var(--heading);
}

.grid-hero-services {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0;
}

.link-hero-service {
  width: 100%;
  text-decoration: none;
  position: relative;
}

.hero-service {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
}

.text-hero-service {
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.icon-arrow {
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-arrow-a {
  width: 10px;
  max-width: none;
  height: 10px;
}

.icon-arrow-b {
  width: 10px;
  max-width: none;
  height: 10px;
  position: absolute;
  transform: translate(-120px, 120%);
}

.line-block {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3px;
  margin-bottom: 15px;
  display: flex;
  position: relative;
}

.line-full {
  background-color: var(--accent);
  width: 100%;
  position: absolute;
  inset: 0%;
}

.line-full.dark {
  background-color: var(--heading);
}

.line-1px {
  background-color: var(--white);
  width: 100%;
  height: 1px;
}

.descriptiion {
  z-index: 50;
  background-color: var(--accent);
  width: 100%;
  display: block;
  position: absolute;
  overflow: hidden;
}

.description-block {
  border: 1px solid var(--accent);
  width: 100%;
  color: var(--heading);
  padding: 20px 32px 25px;
  display: block;
  position: static;
  overflow: visible;
}

.paragraph-description {
  z-index: 49;
  color: var(--heading);
  display: block;
}

.background-slider {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.background-slider.mob, .background-slider.cel {
  display: none;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 110px 50px;
  display: flex;
}

.section.background {
  background-color: var(--background);
  padding-bottom: 50px;
  display: none;
}

.section.map {
  background-image: linear-gradient(278deg, var(--paragraphs-dark), white);
  padding-bottom: 160px;
}

.content {
  width: 100%;
}

.grid-2-columns {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  width: 100%;
}

.grid-stats {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  align-content: start;
}

.stats {
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  display: flex;
}

.icons-stats-block {
  background-color: var(--background);
  margin-left: auto;
  padding: 14px;
}

.icon {
  object-fit: contain;
  width: 24px;
  height: 24px;
  display: block;
}

.stats-block {
  margin: 18px;
}

.number-stats {
  letter-spacing: -1.4px;
  margin-bottom: 12px;
  font-size: 58px;
  font-weight: 500;
  line-height: 100%;
}

.number-stats.iso {
  font-size: 48px;
}

.heading-stats {
  max-width: 220px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.heading {
  max-width: 700px;
  color: var(--heading);
  margin-top: 0;
  margin-bottom: 26px;
  font-size: 58px;
  font-weight: 500;
  line-height: 107%;
}

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

.block-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 45px 3% 45px 10%;
  display: flex;
}

.subtitle {
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.line-subtitle {
  background-color: var(--heading);
  width: 27px;
  height: 1px;
  color: var(--heading);
  letter-spacing: 1.5px;
}

.line-subtitle.white {
  background-color: var(--white);
}

.text-subtitle {
  color: var(--heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.text-subtitle.white {
  color: var(--white);
}

.paragraph {
  max-width: 500px;
  margin-bottom: 36px;
  font-size: 18px;
}

.paragraph.white {
  color: var(--paragraphs-dark);
}

.paragraph.dark {
  color: var(--heading);
  margin-bottom: 30px;
}

.button {
  background-color: var(--accent);
  justify-content: center;
  align-items: center;
  padding: 23px 35px;
  text-decoration: none;
  display: flex;
}

.button.dark {
  background-color: var(--heading);
}

.button.dark.bmapa {
  display: none;
}

.button.accent {
  background-color: var(--white);
}

.button.bsomos, .button.bservicos, .button.bobras {
  display: none;
}

.grid-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
}

.block-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 45px 10% 45px 0%;
  display: flex;
}

.image-block {
  width: 80%;
  position: relative;
}

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

.image.bg {
  background-color: #0000;
  background-image: url('../images/mapa3.png'), url('../images/mapa1.png'), url('../images/mapa0.png');
  background-position: 30% 30%, 30% 30%, 30% 30%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: contain, contain, contain;
  background-attachment: scroll, scroll, scroll;
  display: none;
}

.image.mapss {
  display: block;
}

.image-absolute {
  object-fit: cover;
  width: 54%;
  height: 60%;
  display: none;
  position: absolute;
  inset: auto -3% -3% auto;
  box-shadow: 0 35px 120px #101b2240;
}

.section-full {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 14px;
  display: block;
}

.section-full.especialidades {
  display: none;
}

.grid-full {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--heading);
  width: 100%;
  color: var(--heading);
  grid-template-rows: auto;
}

.image-bg-services {
  background-image: linear-gradient(270deg, var(--heading), transparent 27%), url('../images/projetista.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100%;
  min-height: 670px;
}

.block-full {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 17%;
  display: flex;
}

.block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 550px;
  display: flex;
}

.grid-3-columns-full {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.image-gallery {
  width: 100%;
  height: 20vw;
}

.block-heading {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  display: flex;
}

.block-heading.top {
  margin-bottom: 40px;
}

.block-heading-text {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.grid-4 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
}

.image-bg-banner {
  background-image: url('../images/aplicativo-cng.jpg');
  background-position: 100% 0;
  background-size: cover;
}

.grid-columns-2-full {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  width: 100%;
}

.block-banner {
  background-color: #ffa600;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 17%;
  display: flex;
}

.heading-banner {
  max-width: 700px;
  color: var(--heading);
  margin-bottom: 38px;
  font-size: 46px;
  font-weight: 500;
}

.section-footer {
  background-color: var(--heading);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 110px 50px 82px;
  display: flex;
}

.grid-footer {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  width: 100%;
}

.block-footer {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.logo-footer {
  height: 24px;
  margin-bottom: 32px;
}

.paragraph-footer {
  max-width: 350px;
  color: var(--white);
  margin-bottom: 28px;
  font-family: Barlow, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.heading-footer {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 3px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
}

.link-footer {
  color: var(--paragraphs-dark);
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: 500;
  line-height: 130%;
  text-decoration: none;
  transition: color .2s;
}

.section-top {
  z-index: 10;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  padding: 5% 5% 10% 20px;
  display: block;
  position: relative;
}

.section-top._1 {
  background-color: var(--paragraphs-dark);
}

.body-2 {
  flex-direction: column;
  align-items: center;
  padding: 14px;
  display: flex;
}

.grid-services {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
}

.services-page {
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10% 12%;
  display: flex;
}

.text-services-page {
  width: 100%;
}

.heading-services {
  color: var(--heading);
  letter-spacing: -1.4px;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Barlow, sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 110%;
}

.paragraph-services {
  color: var(--paragraphs);
  letter-spacing: .13px;
  margin-bottom: 28px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  line-height: 170%;
}

.link-block-services {
  width: 100%;
  text-decoration: none;
  display: block;
}

.block-services {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.text-services {
  color: var(--heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: Barlow, sans-serif;
  font-weight: 600;
  line-height: 130%;
}

.line-1-px {
  background-color: var(--heading);
  width: 100%;
  height: 1px;
}

.body-3 {
  letter-spacing: .13px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 14px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 170%;
  display: flex;
}

.portfolio-page {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-portfolio {
  object-fit: cover;
  width: 100%;
  height: 400px;
  transition: opacity .35s cubic-bezier(.215, .61, .355, 1);
  display: inline-block;
}

.text-portfolio {
  letter-spacing: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
}

.link-block-portfolio {
  width: 100%;
  text-decoration: none;
  display: block;
}

.block-portfolio {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  display: flex;
}

.heading-portfolio {
  max-width: 310px;
  color: var(--heading);
  letter-spacing: -1.2px;
  margin-top: 0;
  margin-bottom: -5px;
  font-size: 36px;
  font-weight: 500;
  line-height: 115%;
  text-decoration: none;
}

.heading-portfolio.large {
  max-width: 480px;
}

.body-4 {
  color: var(--paragraphs);
  letter-spacing: .13px;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  font-family: Barlow, sans-serif;
  line-height: 170%;
  display: flex;
}

.paragraph-contato {
  margin-bottom: 28px;
  font-size: 18px;
}

.form-block {
  align-self: stretch;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
}

.form {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-field {
  border-style: none;
  border-width: 1px;
  border-color: black black var(--white);
  height: 52px;
  color: var(--heading);
  padding: 12px 20px;
  line-height: 130%;
  transition: border-color .35s cubic-bezier(.215, .61, .355, 1);
}

.text-area {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--white);
  background-color: var(--white);
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
  max-height: 350px;
  color: var(--heading);
  margin-bottom: 14px;
  padding: 12px 20px;
  line-height: 130%;
  transition: border-color .35s cubic-bezier(.215, .61, .355, 1);
}

.submit-button {
  background-color: var(--heading);
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 23px 35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  transition: opacity .2s;
}

.grid-2-columns-full {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  width: 100%;
}

.block-accent {
  background-color: var(--accent);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 160px 17%;
  display: flex;
}

.grid-contacts {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  width: 100%;
}

.link-contacts {
  width: 100%;
  text-decoration: none;
}

.contact {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.info-contact {
  align-items: center;
  margin-right: 20px;
  display: flex;
}

.icon-contact {
  width: 18px;
  max-width: none;
  height: 18px;
  margin-right: 8px;
}

.text-contact {
  color: var(--heading);
  text-align: right;
  margin-left: auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.image-bg-map {
  background-image: url('../images/mapimage.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1100px;
  min-height: 670px;
}

.grid-5 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.section-2 {
  margin-bottom: 14px;
}

.body-5 {
  color: var(--paragraphs);
  letter-spacing: .13px;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  line-height: 170%;
  display: flex;
}

.section-top-img {
  z-index: 10;
  width: 100%;
  min-height: 70vh;
  color: var(--background);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 14px;
  display: flex;
  position: relative;
}

.block-top-img {
  z-index: 20;
  width: 100%;
  color: var(--paragraphs);
  background-color: #ffe3a7bf;
  background-image: linear-gradient(#0000, #000c);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 50px 50px;
  display: flex;
  position: relative;
}

.backgroung-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.grid-portfolio-home {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.link-portfolio {
  width: 100%;
  margin-bottom: 25px;
  transition: opacity .35s cubic-bezier(.215, .61, .355, 1);
  display: block;
}

.link-image-portfolio {
  width: 100%;
  margin-bottom: 25px;
}

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

.footer-down-block {
  border-top: 1px solid #2e404b;
  justify-content: space-between;
  width: 90%;
  margin-top: 60px;
  padding-top: 26px;
  display: flex;
}

.image-2, .image-3 {
  position: fixed;
}

.image-4 {
  z-index: 2;
  object-fit: contain;
  position: sticky;
  inset: 0%;
}

.image-5 {
  z-index: 3;
  object-fit: fill;
  display: block;
  position: sticky;
}

.image-6 {
  float: right;
  position: absolute;
}

.image-7 {
  float: right;
  clear: right;
  display: block;
  position: absolute;
  top: auto;
  bottom: auto;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.footer-down {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-footer-down {
  color: var(--background);
  font-size: 16px;
  line-height: 130%;
}

.bold-text {
  color: var(--background);
  font-weight: 700;
}

.descriptiion-portfolio {
  z-index: 50;
  background-color: var(--accent);
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.description-block-portfolio {
  border: 1px solid var(--accent);
  width: 100%;
  color: var(--heading);
  padding: 20px 32px 25px;
  display: none;
  position: static;
  overflow: visible;
}

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

.slide {
  background-image: radial-gradient(circle, #fff0 75%, #00000059 92%), url('../images/frico-aerea-banner-conenge.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, auto;
}

.slide-4 {
  background-image: url('../images/ALLES-BANNER-CNG.jpg');
  background-position: 100% 100%;
  background-size: cover;
}

.slide-3 {
  background-image: url('../images/bosque.jpg');
  background-position: 50% 100%;
  background-size: auto;
}

.slide-5 {
  background-image: url('../images/bosque.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-6 {
  background-image: url('../images/dalastra---banner-hcng.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-nav {
  display: none;
}

.slide-7 {
  background-image: url('../images/eldorado.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.slide-8 {
  background-image: url('../images/novafarma_1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-9 {
  background-image: url('../images/vista-alegre_1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-10 {
  background-image: url('../images/hakone.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.slide-11 {
  background-image: url('../images/kinoplex.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-12 {
  background-image: url('../images/bambu.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-13 {
  background-image: url('../images/lago3.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-14 {
  background-image: url('../images/bosque_1.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-15 {
  background-image: url('../images/ipe.jpg');
  background-position: 0 0;
  background-size: cover;
}

.div-block-slide-1 {
  font-family: Barlow, sans-serif;
  display: inline-block;
}

.container-centro {
  margin-top: 60px;
  position: relative;
  top: 40%;
  left: 0;
  transform: translate(0, -50%);
}

.div-block {
  text-align: center;
  margin-top: 25px;
}

.div-block.esq {
  text-align: left;
}

.botao-banner {
  background-color: var(--accent);
  background-image: url('../images/phone-icon-925_1phone-icon-925.png');
  background-position: 13px 49%;
  background-repeat: no-repeat;
  background-size: 17px;
  border-radius: 15px;
  padding: 15px 20px 15px 42px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.botao-banner.mais {
  z-index: 100;
  text-align: center;
  background-image: none;
  margin-top: -55px;
  padding-left: 20px;
  display: inline;
  position: absolute;
  top: 1054px;
}

.mmais {
  outline-offset: 0px;
  color: #fff;
  -webkit-text-stroke-color: #fdc23e;
  outline: 3px #fff;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.heading-2 {
  text-align: center;
  text-shadow: 1px 1px 14px #000;
  font-family: Libre Franklin, sans-serif;
  font-size: 40px;
}

.heading-2.dir {
  text-align: right;
}

.heading-2.esq {
  text-align: left;
}

.text-block-2 {
  text-align: center;
  text-transform: none;
  text-shadow: 1px 1px 10px #000;
  font-family: Libre Franklin, sans-serif;
  font-weight: 500;
}

.text-block-2.dir {
  text-align: right;
}

.text-block-2.esq {
  text-align: left;
}

.column {
  color: #fff;
  text-align: right;
  padding-bottom: 29px;
}

.column-2, .columns {
  display: block;
}

.obras {
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 10px;
}

.imagem-obra {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.image-8 {
  width: 100%;
  height: 100%;
}

.obra-desc {
  background-image: linear-gradient(#ffbe63, #ffc57e);
  max-width: 100%;
  min-height: 150px;
  padding: 25px 30px;
  display: block;
}

.titulo-obra {
  color: var(--paragraphs);
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 15px;
  margin-right: 0;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  position: relative;
}

.paragraph-2 {
  color: var(--heading);
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 25px;
}

.text-block-3, .text-block-4, .text-block-5 {
  font-weight: 500;
}

.tabs-obras {
  text-align: center;
  margin-bottom: 20px;
}

.tabs {
  margin-top: 0;
}

.tab-link.w--current {
  background-color: var(--cng);
  font-size: 18.1px;
}

.column-3 {
  clear: left;
  padding-left: 50px;
  display: block;
}

.column-4 {
  clear: right;
  padding-right: 50px;
}

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

.botao-mais {
  z-index: 100;
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.mmenos {
  color: #fff;
  font-family: Barlow, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.image-10 {
  min-width: 100%;
}

.image-11 {
  text-align: right;
  min-width: 100%;
  max-width: 100%;
}

.image-12, .image-13, .image-14, .image-15, .image-16, .image-17, .image-18, .image-19, .image-20, .image-21, .image-22, .image-23, .image-24, .image-25, .image-26, .image-27, .image-28, .image-29, .image-30, .image-31, .image-32, .image-33, .image-34, .image-35, .image-36, .image-37, .image-38, .image-39 {
  min-width: 100%;
}

.slide-nav-2 {
  opacity: .5;
  padding-top: 15px;
  font-size: 11px;
  top: 70px;
}

.logo-client {
  opacity: .9;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 15px 35px;
  transition: all .2s;
  display: flex;
}

.image-40 {
  max-width: 50%;
}

.arrow-carousel {
  color: gray;
  background-color: #e7e7e7;
  border-bottom: 2px solid #d1d1d1;
  border-radius: 2px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s;
  display: none;
  right: -40px;
}

.arrow-carousel:hover {
  color: #fff;
  background-color: #d52725f2;
}

.arrow-carousel.left {
  display: none;
  left: -40px;
  right: auto;
}

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

.copyright {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translate(-50%);
}

.triangle-navigation {
  border-top: 80px solid #fff;
  border-left: 70px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: -70px;
}

.triangle-navigation.bottom {
  border-top-style: none;
  border-top-color: #fff;
  border-bottom: 80px solid #3d3d3d;
}

.triangle-navigation.bottom.client-arrow {
  border-bottom-width: 170px;
  border-bottom-color: #fff;
  border-left-width: 130px;
  left: -130px;
}

.triangle-navigation.bottom.client-arrow.left.left2 {
  left: auto;
  right: -130px;
}

.companies-text {
  color: #919191;
  font-size: 16px;
  font-weight: 300;
}

.logo-client-wrapper {
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.small-footer {
  width: 100%;
  position: relative;
}

.small-footer.logo-part {
  background-color: #fff;
  height: 170px;
  padding-top: 20px;
  padding-bottom: 17px;
  position: static;
}

.carousel-slider {
  background-color: #0000;
  height: auto;
}

.container {
  max-width: 100%;
}

.heading-3 {
  color: #222;
  background-color: #fff0;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.link-8 {
  color: #000;
}

.text-block-6 {
  line-height: 170px;
}

.bloco-texto {
  color: #f8f8f8;
  text-shadow: 5px 5px 7px #575757;
  font-family: Libre Franklin, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.link-9, .list-item, .link-10, .list-item-2, .list-item-3, .link-11, .link-12 {
  color: #fff;
}

.bold-text-2 {
  color: var(--white);
}

.link-13 {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .body {
    padding: 10px;
  }

  .nav-menu {
    background-color: var(--background);
    display: flex;
  }

  .nav-button {
    margin-left: 0;
    padding: 20px 10px;
  }

  .menu-button {
    background-color: var(--accent);
    padding: 20px;
    transition: color .25s cubic-bezier(.215, .61, .355, 1);
  }

  .menu-button.w--open {
    background-color: var(--heading);
  }

  .section-hero-a {
    min-height: 70vh;
  }

  .block-hero-a {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-hero {
    font-size: 40px;
  }

  .grid-hero-services {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .background-slider, .background-slider.mob {
    display: block;
  }

  .section, .section.background {
    margin-bottom: 10px;
    padding: 90px 30px;
  }

  .content {
    max-width: 100%;
  }

  .grid-2-columns, .grid-stats {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .number-stats, .heading {
    font-size: 48px;
  }

  .paragraph {
    max-width: 700px;
  }

  .section-full {
    margin-bottom: 10px;
  }

  .block-full {
    padding: 120px 14%;
  }

  .block {
    max-width: 550px;
  }

  .grid-3-columns-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .block-heading-text {
    margin-bottom: 0;
  }

  .grid-columns-2-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .heading-banner {
    font-size: 38px;
  }

  .section-footer {
    padding-top: 90px;
  }

  .section-top {
    margin-bottom: 10px;
    padding: 110px 0 90px;
  }

  .image-portfolio {
    height: 350px;
  }

  .heading-portfolio {
    font-size: 24px;
  }

  .body-4 {
    padding: 10px;
  }

  .grid-portfolio-home {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .image-6 {
    float: right;
    clear: none;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: static;
  }

  .slide {
    background-position: 50% 100%;
    background-size: auto;
  }

  .slide-4 {
    background-position: 39% 100%;
  }

  .container-centro {
    margin-top: 0;
    top: 50%;
    left: 0;
  }

  .div-block, .div-block.esq {
    text-align: center;
  }

  .botao-banner {
    padding-left: 42px;
  }

  .botao-banner.mais {
    top: 665.719px;
  }

  .heading-2 {
    text-align: center;
    font-size: 40px;
  }

  .heading-2.dir, .heading-2.esq {
    text-align: center;
  }

  .text-block-2 {
    text-align: center;
    line-height: 30px;
  }

  .text-block-2.dir, .text-block-2.esq {
    text-align: center;
  }

  .column {
    text-align: center;
    display: block;
  }

  .column-2 {
    display: block;
  }

  .div-block-3 {
    text-align: center;
  }

  .obra-desc {
    padding-left: 15px;
    padding-right: 15px;
  }

  .titulo-obra {
    font-size: 14px;
  }

  .paragraph-2 {
    font-size: 14px;
    line-height: 23px;
  }

  .column-3, .column-4 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .slide-nav-2 {
    top: 280px;
  }

  .logo-client {
    flex: 0 auto;
  }

  .arrow-carousel, .arrow-carousel.left {
    display: none;
  }

  .copyright {
    width: auto;
  }

  .logo-client-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .small-footer.logo-part {
    height: auto;
  }

  .bloco-texto {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    position: static;
    left: 0;
  }

  .heading-4 {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .section-hero-a {
    min-height: 70vh;
  }

  .heading-hero {
    display: none;
  }

  .grid-hero-services {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .section, .section.background {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-stats {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .heading {
    font-size: 40px;
  }

  .block-right, .block-left {
    padding: 0 7%;
  }

  .image-block {
    display: block;
  }

  .image.mapss {
    display: inline-block;
  }

  .grid-full {
    grid-template-columns: 1fr;
  }

  .image-bg-services {
    background-image: linear-gradient(to top, var(--heading), transparent 27%), url('../images/projetista.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    min-height: 500px;
  }

  .block-full {
    padding: 80px 13%;
  }

  .grid-3-columns-full {
    grid-template-columns: 1fr;
  }

  .image-gallery {
    height: 40vw;
  }

  .image-bg-banner {
    height: 300px;
  }

  .grid-columns-2-full {
    grid-template-columns: 1fr;
  }

  .block-banner {
    padding: 50px 14%;
  }

  .heading-banner {
    font-size: 32px;
  }

  .section-footer {
    padding: 70px 14% 50px;
  }

  .grid-footer {
    grid-template-columns: 1fr;
  }

  .section-top {
    padding-top: 170px;
    padding-bottom: 70px;
  }

  .image-portfolio {
    height: 450px;
  }

  .body-4 {
    padding-left: 10px;
  }

  .form {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .grid-2-columns-full {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-columns: 1fr;
  }

  .block-accent {
    padding: 80px 12%;
  }

  .grid-contacts {
    grid-template-rows: repeat(auto-fit, 50px) 51px 52px;
  }

  .grid-portfolio-home {
    grid-template-columns: 1fr;
  }

  .image-6 {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: static;
  }

  .text-footer-down {
    text-align: center;
    align-self: center;
  }

  .slide-4 {
    background-position: 40% 100%;
  }

  .container-centro {
    top: 40%;
  }

  .botao-banner {
    display: none;
  }

  .botao-banner.mais {
    top: 1528.19px;
  }

  .heading-2 {
    font-size: 25px;
    line-height: 60px;
  }

  .obras {
    padding-top: 0;
  }

  .obra {
    margin-bottom: 5px;
  }

  .obra-desc {
    min-height: 100px;
  }

  .column-3, .column-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .botao-mais {
    justify-content: flex-start;
  }

  .slide-nav-2 {
    top: 280px;
  }

  .bloco-texto {
    padding-right: 15px;
    font-size: 14px;
    line-height: 21px;
  }

  .heading-4 {
    font-size: 24px;
  }
}

@media screen and (max-width: 479px) {
  .description-block {
    display: none;
  }

  .background-slider {
    height: 100%;
  }

  .background-slider.mob {
    display: none;
  }

  .background-slider.cel {
    display: block;
  }

  .section, .section.background {
    margin-bottom: 6px;
    padding: 55px 16px;
  }

  .section.map {
    padding-left: 10px;
    padding-right: 10px;
  }

  .number-stats {
    font-size: 40px;
  }

  .heading-stats {
    font-size: 17px;
  }

  .heading {
    max-width: 250px;
    font-size: 34px;
  }

  .paragraph.dark {
    max-width: 250px;
  }

  .image-bg-services {
    min-height: 350px;
  }

  .block-full {
    padding: 65px 10%;
  }

  .block {
    max-width: 550px;
  }

  .image-bg-banner {
    height: 250px;
  }

  .heading-banner {
    font-size: 28px;
    font-weight: 500;
  }

  .section-footer {
    padding: 55px 12% 30px;
  }

  .grid-footer {
    grid-template-columns: 1fr;
  }

  .section-top {
    padding-top: 111px;
  }

  .body-3 {
    padding-left: 7px;
    padding-right: 7px;
  }

  .image-portfolio {
    height: 250px;
  }

  .block-accent {
    padding: 65px 8%;
  }

  .grid-contacts {
    grid-template-rows: repeat(auto-fit, 67px) 57px 52px;
  }

  .text-contact {
    font-size: 16px;
  }

  .text-footer-down {
    font-size: 14px;
  }

  .slide {
    background-position: 50% 100%;
    background-size: cover;
  }

  .slide-4 {
    background-position: 50%;
    background-size: cover;
  }

  .container-centro {
    top: 35%;
  }

  .botao-banner.mais {
    top: 1133.19px;
  }

  .text-block-2 {
    font-size: 14px;
  }

  .obra-desc {
    min-height: 50px;
    padding: 0 10px 10px;
  }

  .titulo-obra {
    font-size: 14px;
  }

  .paragraph-2 {
    font-size: 13px;
  }

  .text-block-3, .text-block-4, .text-block-5 {
    text-align: center;
    font-size: 15px;
  }

  .slide-nav-2 {
    top: 260px;
  }

  .logo-client {
    flex: 0 50%;
    padding: 10px;
  }

  .small-footer.logo-part {
    padding-left: 10px;
  }

  .bloco-texto {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-4 {
    font-size: 12px;
  }

  .paragraph-3 {
    font-size: 11px;
    line-height: 18px;
  }
}

#w-node-a8011a10-e8fd-37c9-b021-a2db341c512b-5c2755a8, #w-node-_82e36b72-22fb-9dc0-5e8e-7289313adb12-5c2755a8, #w-node-_72cb3e39-5d82-fd3a-f908-94bcc26a8f59-5c2755a8, #w-node-_8488be68-81e3-882a-e101-32af2b690414-5c2755a8, #w-node-_4bc499c6-21f7-f776-feaf-2e7e585a1c75-5c2755a8, #w-node-e3fc6d04-d7a7-4bdf-c141-fc9fcc9c0d9b-5c2755a8, #w-node-_706be834-66cb-fbee-f3f9-c423ebfc42e7-5c2755a8, #w-node-c8ea2e84-f305-a073-2a9b-10264bb993c7-5c2755a8, #w-node-_7bd89454-47a1-2891-fb74-157839de7cf5-5c2755a8, #w-node-a6dde7fb-5010-9bc4-b318-1a7500fb1712-5c2755a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e2beea60-b867-8f7e-dfb0-2baf28a0ef2b-5c2755a8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_8a3b9f62-371b-953d-6d0c-6ce6d07b2b41-5c2755a8, #w-node-_03ef922a-d173-66d8-c448-2b53786694ad-5c2755a8, #w-node-_3d361516-2f63-6a60-a9f4-2e145d8f6af3-5c2755a8, #w-node-_07167914-8978-d949-6703-50c6a1903bef-5c2755a8, #w-node-f9929fa6-23e5-8b40-00e0-de6eb1147a55-5c2755a8, #w-node-_674a77cd-1959-90b3-0697-1099e03dd649-e03dd646, #w-node-_674a77cd-1959-90b3-0697-1099e03dd64d-e03dd646, #w-node-_674a77cd-1959-90b3-0697-1099e03dd64e-e03dd646, #w-node-_674a77cd-1959-90b3-0697-1099e03dd64f-e03dd646, #w-node-_553e4621-7980-8a2e-cc39-64264a7986e6-4a7986e4, #w-node-_553e4621-7980-8a2e-cc39-64264a7986e7-4a7986e4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#Mensagem.w-node-a424b4a6-7bd0-2263-e000-42e7b55792a4-5c2755ab, #w-node-_9ce867d8-c59b-31de-c981-d698eaf59e95-5c2755ab {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_354c91a4-3f61-ac66-55ce-778337175277-5c2755ab, #w-node-_6be7d36b-4a5f-ad7d-d115-e355cb94b4dc-5c2755ab, #w-node-_08ba6241-d378-f470-0d92-446c0e26a221-5c2755ab, #w-node-_58c3d443-fa34-f739-97f8-c796431d10c6-5c2755ab, #w-node-_94f87c31-9562-c190-4a0d-27f955805460-5c2755ab, #w-node-_94f87c31-9562-c190-4a0d-27f955805468-5c2755ab, #w-node-_94f87c31-9562-c190-4a0d-27f955805470-5c2755ab {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-e2beea60-b867-8f7e-dfb0-2baf28a0ef2b-5c2755a8 {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e2beea60-b867-8f7e-dfb0-2baf28a0ef2b-5c2755a8 {
    order: -9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-e2beea60-b867-8f7e-dfb0-2baf28a0ef2b-5c2755a8 {
    order: -9999;
  }
}


