@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
}

/* 
====================================
Float Label
https://cdn.rawgit.com/tonystar/float-label-css/v1.0.2/dist/float-label.min.css
====================================
*/
.has-float-label {
  display: block;
  position: relative;
}

.has-float-label label,
.has-float-label > span {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 75%;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.has-float-label textarea {
  width: 100%;
}

.has-float-label input,
.has-float-label select,
.has-float-label textarea {
  font-size: inherit;
  padding-top: 1em;
  margin-bottom: 2px;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.has-float-label input::-webkit-input-placeholder,
.has-float-label select::-webkit-input-placeholder,
.has-float-label textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label input:-ms-input-placeholder,
.has-float-label select:-ms-input-placeholder,
.has-float-label textarea:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label input::-ms-input-placeholder,
.has-float-label select::-ms-input-placeholder,
.has-float-label textarea::-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label input::placeholder,
.has-float-label select::placeholder,
.has-float-label textarea::placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.has-float-label input:placeholder-shown:not(:focus)::-webkit-input-placeholder,
.has-float-label
  select:placeholder-shown:not(:focus)::-webkit-input-placeholder,
.has-float-label
  textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus):-ms-input-placeholder,
.has-float-label select:placeholder-shown:not(:focus):-ms-input-placeholder,
.has-float-label textarea:placeholder-shown:not(:focus):-ms-input-placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus)::-ms-input-placeholder,
.has-float-label select:placeholder-shown:not(:focus)::-ms-input-placeholder,
.has-float-label textarea:placeholder-shown:not(:focus)::-ms-input-placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus)::placeholder,
.has-float-label select:placeholder-shown:not(:focus)::placeholder,
.has-float-label textarea:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}

.has-float-label input:placeholder-shown:not(:focus) + *,
.has-float-label select:placeholder-shown:not(:focus) + *,
.has-float-label textarea:placeholder-shown:not(:focus) + * {
  font-size: 150%;
  opacity: 0.5;
  top: 0.25em;
}

.has-float-label input:focus,
.has-float-label select:focus,
.has-float-label textarea:focus {
  outline: 0;
  border-color: rgba(0, 0, 0, 0.5);
}

.has-float-label select {
  padding-right: 1em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
    no-repeat right 0.5em bottom 0.25em;
  background-size: 8px 10px;
}

/**/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #333333;
  font-family: "Graviola", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: unset;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*

APIS design

*/
body {
  font-size: 20px;
  line-height: 32px;
  -webkit-font-smoothing: antialiased;
}

p {
  -webkit-font-smoothing: antialiased;
  margin: 0 0 32px;
}

h1 {
  font-size: 2em;
  font-weight: 900;
  margin: 32px 0;
  line-height: 48px;
}

.projeto-titulo {
  margin-bottom: 8px;
  padding-bottom: 32px;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: -1px;
  color: #fff;
}

.btn,
.btn-discrete {
  border: none;
  margin-bottom: 5em;
  padding: 1.25rem 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background-color: #ffc948;
  color: #404040;
  -webkit-box-shadow: 0 2px 8px rgba(214, 69, 5, 0.3);
  box-shadow: 0 2px 8px rgba(214, 69, 5, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.btn-discrete {
  background-color: #fdb813;
  color: #943a01;
  font-size: 0.8em;
}

.btn:hover {
  background-color: #ffda75;
  -webkit-transition: none;
  transition: none;
  text-decoration: none;
}

.btn:active {
  background-color: #fad24c;
}

.btn:hover::after {
  opacity: 1;
}

.btn:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 6px;
  text-decoration: none;
}

::-moz-selection {
  background-color: #ffd800;
}

::selection {
  background-color: #ffd800;
}

.contato-info-block.email .email {
  -webkit-user-select: all;
  /* Chrome 49+ */
  -moz-user-select: all;
  /* Firefox 43+ */
  -ms-user-select: all;
  /* No support yet */
  user-select: all;
  /* Likely future */
}

.header > *,
.section > * {
  margin-left: 2rem;
  margin-right: 2rem;
}

/* ESTILOS DA PÁGINA INICIAL - HOME*/
.hero {
  padding-top: 9.38rem;
  background-color: #fdb813;
  height: 120vh;
  position: relative;
  overflow: hidden;
}

.hero-hexagonos {
  position: absolute;
  z-index: 999;
  width: 62.5rem;
  height: 93.75rem;
  top: 25vh;
  right: 0;
  overflow: hidden;
  opacity: 0.6;
}

.hero-hexagonos .svg {
  width: 70%;
  position: absolute;
  left: 50rem;
}

.hero-video {
  position: absolute;
  top: 0;
  height: 100%;
}

.hero-title {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin-top: 0;
  margin-bottom: 3.06rem;
  -webkit-animation: 2s fade-in 0.6s both;
  animation: 2s fade-in 0.6s both;
}

.hero-tagline {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  line-height: 1.13rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.hero-tagline .texto {
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  -webkit-animation: 1s pop_up-nav_links;
  animation: 1s pop_up-nav_links;
}

.hero-tagline-stroke {
  position: relative;
  top: 3px;
}

.hero .btn {
  height: 4rem;
  -webkit-animation: 1.2s fade-in 1.6s both;
  animation: 1.2s fade-in 1.6s both;
}

.hero .btn {
  padding: 0.94rem 1.25rem;
  font-size: 0.75rem;
  height: 3.75rem;
}

.hero-corte_inferior {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  pointer-events: none;
}

.hero-yellow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fdb813+0,fdb813+100&1+0,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(30deg, #fdb813 20%, rgba(253, 184, 19, 0) 80%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdb813', endColorstr='#00fdb813',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

@media (min-width: 768px) {
  .hero-hexagonos .svg {
    width: 100%;
    left: 31.25rem;
  }
  .hero {
    padding-top: 21.88rem;
  }
  .hero-title {
    font-size: 3rem;
    line-height: 4rem;
  }
  .hero-tagline-stroke {
    left: 10px;
  }
  .hero .btn {
    padding: 1.25rem 2.5rem;
    font-size: 0.87rem;
    height: 4rem;
  }
  .hero-tagline {
    letter-spacing: 1.5px;
    font-size: 1.09rem;
    line-height: 1.13rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 992px) {
  .hero-hexagonos .svg {
    left: 18.75rem;
  }
}

/* banner pré-header */

.pre_header {
  position: relative;
  margin-bottom: 14rem;
}

.pre_header-bg {
  position: absolute;
  top: 0;
  display: block;
  width: 250vw;
  max-width: 1440px;
  overflow: visible !important;
  z-index: -1;
  margin-left: 50%;
  transform: translateX(-60%);
}

.pre_header-banner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.pre_header-main_title {
  font-size: 4.2rem;
  margin-left: 1rem;
  line-height: 0.85;
  font-weight: 100;
  letter-spacing: -0.04em;
  color: #112a4b;
  margin-top: 1rem;
}

.pre_header-main_title b {
  font-weight: 900;
  line-height: 0;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.pre_header-main_title > * {
  display: inline-block;
  animation: fade-up 1s both;
}


.pre_header-video_player {
  position: fixed;
  display: grid;
  z-index: 99999;
  inset: 0;
  place-items: center;

  /* State Closed */
  pointer-events: none;
  visibility: hidden;
}

.pre_header-video_player.__open {
  visibility: visible;
  pointer-events: all;
}


.pre_header-video_backdrop {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0;
  z-index: 100;
  transition: opacity 0.4s;
}

.__open .pre_header-video_backdrop {
  opacity: 0.8;
}



.pre_header-video_player .plyr {
  --plyr-color-main: #fdb813;
  width: 100vw;
  max-width: 1280px;
  z-index: 9999999;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s opacity 0.1s, 0.4s transform 0.1s;
}

/* State open */
.pre_header-video_player.__open .plyr { 
  opacity: 1;
  transform: none;
}


.pre_header-video_cancel {
  position: fixed;
  display: none;
  top: 0;
  right: 1rem;
  z-index: 2;
  border: none;
  background: none;
  color: white;
  z-index: 99999;
  padding: 1rem;
  font-weight: 500;
}

.pre_header-video_cancel:hover {
  background-color: #fdb404;
  border-radius: 50%;
}



@media (mix-width: 768px) {
  .plyr--full-ui {
    top: 0;
    translate: -50% 0;
  }

  .pre_header-video_cancel {
    display: none;
    top: 0;
    right: 1rem;
    z-index: 2;
  }
}

.pre_header-comercial_video {
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 7rem;
  margin-inline: 1rem;
  background-color: #333;
  cursor: pointer;
  border-radius: 40px;
  --shadow-color: 30deg 52% 55%;
  box-shadow: 0 1px 0.6px hsl(var(--shadow-color) / 0.36),
    0 2.7px 1.9px -0.8px hsl(var(--shadow-color) / 0.36),
    0 6.3px 4.8px -1.7px hsl(var(--shadow-color) / 0.36),
    -0.1px 13.6px 11.9px -2.5px hsl(var(--shadow-color) / 0.36);
}
.pre_header-comercial_video > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.pre_header-comercial_video img {
  opacity: 0.4;
  border-radius: 40px;
}

.video-play_btn {
  z-index: 2;

  transition: scale 0.2s;
}

.pre_header-comercial_video:hover .video-play_btn {
  scale: 1.1;
}

.pre_header-content {
  line-height: 1.2;
  margin: 12rem 1rem;
}

.pre_header-content > * {
  max-width: 36rem;
}

.pre_header-content_subtitle {
  font-size: 2rem;
  font-weight: 700;
  margin-top: -2rem;
}

.pre_header-content_button_container {
  margin-top: 4rem;
}

.pre_header-content_button_container p {
  margin-bottom: 1rem;
}

.pre_header-cta {
  padding: 1.25rem 2.5rem;
  background-color: #fdb813;
  font-weight: 900;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  border: none
}

.pre_header-cta:hover {
  background-color: #fdd044;
  border: none;
}

.pre_header-content_button_container p {
  font-style: italic;
}

.pre_header-content .laranja {
  color: #f58245;
  margin-top: 2rem;
  margin-bottom: 0;
  font-style: italic;
}

.pre_header-content ul {
  font-size: 1.125rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .pre_header-content_subtitle {
    position: relative;
  }

  .pre_header-content_subtitle::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    background: url(assets/images/vetor-h2.png) no-repeat;
    background-size: 5rem;
    top: -2rem;
  }
}

@media (min-width: 1200px) {
  .pre_header-bg {
    position: absolute;
    transform: translateX(-50%);
    width: 100vw;
    max-height: 130vh;
  }
  .pre_header-main_title {
    font-size: 7rem;
    position: relative;
    left: -0.08em;
  }
  .pre_header-comercial_video {
    margin-top: 0;
    position: relative;
    left: 5rem;
    margin-right: -4rem;
    animation: fade-left 2s 2s both;
  }
  @keyframes fade-left {
    from {
      opacity: 0;
      transform: translateX(5%);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  

  .pre_header-banner {
    height: 100vh;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  .pre_header-content {
    margin-top: 0;
    display: grid;
    grid-template-columns: 2fr repeat(6, 3fr) 2fr;
    grid-column-gap: 1.25rem;
    margin-inline: 0;
  }
  .pre_header-content > * {
    grid-column: 2 / 5;
  }
}

@media (min-width: 1600px) {
}

/* Home - projetos */
.home-projetos {
  position: relative;
  background-color: #333;
  padding-top: 3.13rem;
  padding-bottom: 8.75rem;
}

.home-projetos-corte_inferior {
  position: absolute;
  width: 100%;
  bottom: -1px;
  left: 0;
  pointer-events: none;
}

.home-projetos-link_todos.btn {
  background-color: transparent;
  color: #fffde3;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 20em;
  text-align: center;
  margin: 3.13rem auto 0;
}

.home-projetos-link_todos.btn:hover {
  color: antiquewhite;
  text-decoration: none;
  background-color: #3c3c3b;
}

.home-projetos-destaque {
  margin-bottom: 6.25rem;
  position: relative;
  z-index: 9999;
}

.home-projetos-destaque-img {
  overflow: hidden;
  position: relative;
}

.home-projetos-destaque-img img {
  width: 100%;
}

.home-projetos-destaque-titulo {
  position: relative;
  display: block;
  border-top: 3px solid #fffde3;
  margin-top: 1.88rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fffde3;
  font-weight: 600;
}

.home-projetos-destaque-link {
  display: block;
  margin-top: 1.88rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fffde3;
  font-weight: 600;
  text-align: center;
  font-size: 0.75rem;
  border-radius: 4px;
}

.home-projetos-destaque-link .content {
  color: #fdb813;
}

.home-projetos-lista,
.projetos-lista {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  overflow: hidden;
}

.home-projetos-lista-item,
.home-projetos-lista-item_falso,
.projetos-lista-item,
.projetos-lista-item_falso {
  position: relative;
  height: 0;
  margin-bottom: 7.5rem;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.4s
      cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-box-shadow 0.4s;
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-box-shadow 0.4s;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    -webkit-box-shadow 0.4s;
  will-change: transform;
  padding-bottom: 78%;
}

.home-projetos-lista-item_falso {
  line-height: 280px;
  color: white;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.4;
  letter-spacing: 2px;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  cursor: default;
}

.home-projetos-lista-item_falso:hover {
  opacity: 1;
}

.home-projetos-lista-item_falso {
  border: 5px dashed rgba(255, 255, 255, 0.2);
}

.home-projetos-lista-item .link,
.projetos-lista-item .link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.home-projetos-lista-item .link:focus,
.projetos-lista-item .link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 6px;
  text-decoration: none;
}

.home-projetos-lista-item .titulo,
.projetos-lista-item .titulo {
  z-index: 10;
  padding-top: 78%;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.home-projetos-lista-item .titulo h3,
.projetos-lista-item .titulo h3 {
  margin-top: 0.63rem;
  color: white;
  margin: 0;
  margin-top: 0.63rem;
}

.home-projetos-lista-item .categoria,
.projetos-lista-item .categoria {
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fffde3;
  opacity: 0.6;
  display: inline-block;
  margin-right: 1.88rem;
}

.home-projetos-lista-item img,
.projetos-lista-item img {
  will-change: transform, opacity;
  -webkit-transition: opacity 0.3s,
    -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.3s,
    -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s,
    -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  bottom: 0;
  right: 0;
}

.home-projetos-lista-item .hide-overflow,
.projetos-lista-item .hide-overflow {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
}

.home-projetos-lista-item:hover img,
.projetos-lista-item:hover img {
  display: block;
  -webkit-transform: translateX(20px) !important;
  transform: translateX(20px) !important;
  opacity: 0.2;
}

@media (min-width: 768px) {
  .home-projetos-destaque-link {
    border-color: #fdb813;
    text-align: left;
    padding-left: 1em;
    font-size: 0.87rem;
  }
  .home-projetos-destaque-link:hover {
    color: antiquewhite;
    text-decoration: none;
    background-color: #3c3c3b;
  }
  .home-projetos-destaque-link .content {
    will-change: transform;
    color: #fdb813;
    -webkit-transition: -webkit-transform 0.4s
      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .home-projetos-destaque-link:hover .content {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  .home-projetos-destaque-img {
    border-radius: 8px;
    margin-left: 3.13rem;
    margin-right: 3.13rem;
  }
  .home-projetos-lista-item,
  .home-projetos-lista-item_falso,
  .projetos-lista-item,
  .projetos-lista-item_falso {
    margin-bottom: 1.88rem;
  }
  .home-projetos-lista-item,
  .home-projetos-lista-item_falso,
  .projetos-lista-item,
  .projetos-lista-item_falso {
    height: 280px;
    padding-bottom: 0;
  }
  .home-projetos-lista-item .titulo,
  .projetos-lista-item .titulo {
    z-index: auto;
    padding-top: 0;
  }
  .home-projetos-lista-item .titulo,
  .projetos-lista-item .titulo {
    position: absolute;
    top: 1.88rem;
    left: -0.87rem;
  }
  .home-projetos-lista-item .titulo h3,
  .projetos-lista-item .titulo h3 {
    font-size: 2.75rem;
    line-height: 1em;
    font-weight: 800;
    margin-bottom: 0.63rem;
    padding-top: 0;
    will-change: transform, opacity;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition: opacity 0.3s,
      -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s,
      -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.3s;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  .home-projetos-lista-item:hover .titulo h3,
  .projetos-lista-item:hover .titulo h3 {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  .home-projetos-lista-item .categoria,
  .projetos-lista-item .categoria {
    font-size: 1rem;
    will-change: transform, opacity;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition: opacity 0.3s,
      -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.3s,
      -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.3s;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    display: block;
  }
  .home-projetos-lista-item:hover .categoria,
  .projetos-lista-item:hover .categoria {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  .home-projetos-lista-item:hover .categoria:nth-child(3),
  .projetos-lista-item:hover .categoria:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
}

@media (min-width: 992px) {
  .home-projetos-lista-item,
  .home-projetos-lista-item_falso,
  .projetos-lista-item,
  .projetos-lista-item_falso {
    height: 228px;
  }
}

@media (min-width: 1200px) {
  .home-projetos-lista-item,
  .home-projetos-lista-item_falso,
  .projetos-lista-item,
  .projetos-lista-item_falso {
    height: 280px;
  }
}

/* FIM Home - projetos */
/*
=================================================
PROJETO
single-project
=================================================
*/
.projeto-content {
  padding-top: 4rem;
}

.projeto-titulo,
.projeto-meta,
.projeto-content > p,
.projeto-content > .wp-block-image,
.projeto-content > .wp-block-embed-vimeo {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2/8;
}

@media (min-width: 992px) {
  .projeto-titulo,
  .projeto-meta,
  .projeto-content > p,
  .projeto-content > .wp-block-image,
  .projeto-content > .wp-block-embed-vimeo {
    -ms-grid-column: 4;
    -ms-grid-column-span: 4;
    grid-column: 4/8;
  }
}

.projeto-content > .wp-block-embed-vimeo {
  position: relative;
  padding-bottom: 56.25%;
}

.projeto-content > .wp-block-embed-vimeo iframe {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

.projeto-area {
  background-color: #333;
}

.projeto-area img {
  width: 100%;
  max-width: 100%;
}

.projeto-capa {
  padding-top: 8rem;
}

.projeto-capa img {
  width: 150%;
  max-width: none;
  float: right;
}

.projeto-titulo {
  font-weight: 600;
  font-size: 2em;
  line-height: 1;
  color: #fff;
}

.projeto-meta {
  margin-bottom: 3.2em;
}

.projeto-meta-item {
  overflow: hidden;
  /*  Para a animação do Scroll Reveal*/
}

.projeto-meta-item .titulo {
  font-size: 0.6em;
  text-transform: uppercase;
  color: #808080;
  letter-spacing: 1px;
  line-height: 16px;
  margin-top: 24px;
  margin-bottom: 2px;
}

.projeto-meta-item .content {
  color: #515151;
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1.5;
}

.projeto-meta-equipe {
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .projeto-titulo {
    font-size: 3em;
    line-height: 1.33em;
  }
  .projeto-capa {
    padding-top: 0;
  }
  .projeto-capa img {
    width: 100%;
    float: none;
  }
}

.projeto-content > p {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
}

.projeto-content > p ul,
.projeto-content > p ol {
  margin: 0;
  padding: 0;
  margin-bottom: 1.6em;
  margin-left: 1.6em;
}

.projeto-content > p ul {
  list-style: none;
}

.projeto-content > p ul li,
.projeto-content > p ol li {
  position: relative;
  margin-bottom: 0.4em;
}

.projeto-content > p ul li:before {
  position: absolute;
  content: "•";
  opacity: 0.6;
  left: -16px;
}

.projeto-content > p ol li {
  counter-increment: ol;
  list-style: none;
}

.projeto-content > p ol li:before {
  text-align: right;
  position: absolute;
  content: counter(ol) ".";
  opacity: 0.6;
  left: -24px;
  font-size: 0.8em;
}

.projeto-separador-svg {
  width: 100px;
}

.projeto-separador-svg path {
  fill: none;
  stroke: #f58345;
  stroke-width: 5;
  stroke-miterlimit: 10;
  width: 100px;
}

.projeto-content figure {
  margin-top: 1.25rem;
}

.projeto-content div.wp-block-image {
  -ms-grid-column: 1;
  -ms-grid-column-span: 8;
  grid-column: 1 / 9;
  margin: 0;
}

.projeto-content div.wp-block-image figure {
  border-radius: 0;
}

@media (min-width: 992px) {
  .projeto-titulo {
    -ms-grid-column: 4;
    -ms-grid-column-span: 4;
    grid-column: 4 / 8;
    -ms-grid-row: 1;
    grid-row: 1;
    margin-top: 3.75rem;
  }
  .projeto-meta {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    margin-bottom: 0;
    position: relative;
    top: 4rem;
  }
  .projeto-content > p {
    -ms-grid-column: 4;
    -ms-grid-column-span: 4;
    grid-column: 4 / 8;
  }
  .projeto-content figure {
    margin-top: 2.5rem;
  }
}

/* 
========================
PROJETO RELACIONADOS 
========================
*/
.projetos_relacionados {
  display: -ms-grid;
  display: grid;
  padding: 10rem 0 15rem;
  background-color: #333333;
  color: #fffde3;
}

.projetos_relacionados > .titulo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / 8;
  -ms-grid-row: 1;
  grid-row: 1;
}

.projetos_relacionados > hr {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / 8;
  -ms-grid-row: 2;
  grid-row: 2;
}

.projetos_relacionados-list {
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
  grid-column: 1 / 8;
  margin: 0;
  padding: 0;
  list-style: none;
}

.projetos_relacionados-list-item {
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}

.projetos_relacionados-item-imagem {
  display: inline-block;
  width: 124px;
  border-radius: 6px;
}

.projetos_relacionados-item-titulo {
  position: absolute;
  display: inline-block;
  color: #fffde3;
  left: 124px;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 0.8em;
  font-weight: 600;
  line-height: 20px;
  padding: 0.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projetos_relacionados-item-link:hover {
  text-decoration: none;
}

@media (min-width: 700px) {
  .projetos_relacionados-list {
    display: -ms-grid;
    display: grid;
    grid-column-gap: 1.6rem;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .projetos_relacionados-list-item {
    max-width: none;
    margin: 0;
  }
  .projetos_relacionados-item-imagem {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -2.1em;
  }
  .projetos_relacionados-item-titulo {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: absolute;
    padding: 0.6em 1em;
    top: 1em;
    left: 0;
    right: auto;
    bottom: auto;
    overflow: hidden;
  }
  .projetos_relacionados-item-titulo h3 {
    margin: 0;
    font-size: 1.5em;
    line-height: 1.2em;
    font-weight: 800;
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
    -webkit-transition: 0.4s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.4s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.4s transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.4s transform cubic-bezier(0.25, 0.46, 0.45, 0.94),
      0.4s -webkit-transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    color: #fff;
  }
  .projetos_relacionados-item-imagem img {
    -webkit-transition: 0.4s opacity, 0.4s -webkit-transform;
    transition: 0.4s opacity, 0.4s -webkit-transform;
    transition: 0.4s transform, 0.4s opacity;
    transition: 0.4s transform, 0.4s opacity, 0.4s -webkit-transform;
    will-change: transform, opacity;
  }
  .projetos_relacionados-list {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .projetos_relacionados-list .projetos_relacionados-item:hover {
    opacity: 1;
  }
  /* Titulo */
  .projetos_relacionados-item:hover .projetos_relacionados-item-titulo h3 {
    -webkit-transform: none;
    transform: none;
  }
  /* Container da imagem */
  /* Imagem <img... */
  .projetos_relacionados-list {
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
    grid-column: 2 / 8;
  }
  .projetos_relacionados > .titulo {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
  }
  .projetos_relacionados > hr {
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
    grid-column: 2 / 8;
  }
}

.single-projeto .header-logo-fundo path {
  fill: none;
}

.single-projeto .header-logo path {
  fill: #fffde3;
}

.contato-area.section {
  position: relative;
  background-color: #f58245;
  padding: 5em 0 0;
  display: block;
}

.contato-area:before {
  content: "";
  position: absolute;
  background-color: #f58245;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(-5deg);
  transform: skewY(-5deg);
}

.contato-info,
.contato-form {
  position: relative;
}

@media (min-width: 700px) {
  .contato-info,
  .contato-form {
    -ms-grid-column: 2;
    -ms-grid-column-span: 6;
    grid-column: 2 / 8;
  }
}

@media (min-width: 900px) {
  .contato-info {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / 4;
  }
  .contato-form {
    -ms-grid-column: 4;
    -ms-grid-column-span: 4;
    grid-column: 4 / 8;
  }
}

.contato-info-block {
  margin-bottom: 24px;
}

.contato-info-block .titulo {
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  margin-bottom: 8px;
  line-height: 16px;
}

.contato-info-block-body {
  font-size: 0.8em;
  color: #333;
  padding: 0;
  list-style: none;
  margin-left: 0;
  line-height: 24px;
}

.contato-info-block-body a {
  color: inherit;
}

.contato-info-block-body a:hover {
  text-decoration: none;
  color: #fdb813;
  opacity: 1;
}

.contato-area.section h4,
.contato-area.section h5 {
  color: #333;
  opacity: 0.7;
}

.contato-info-titulo {
  font-weight: 900;
  font-size: 2em;
  margin: 0;
  margin-top: 64px;
  margin-bottom: 16px;
  line-height: 48px;
}

.contato-info-text {
  margin-bottom: 32px;
  color: #fffce2;
}

.contato-info.--enviado .contato-info-titulo {
  -webkit-animation: changeText 0.5s;
  animation: changeText 0.5s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.contato-info.--enviado .contato-info-text {
  -webkit-animation: changeText 0.5s;
  animation: changeText 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes changeText {
  0% {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes changeText {
  0% {
    -webkit-transform: translateY(2rem);
    transform: translateY(2rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.contato-form-entrada {
  margin-bottom: 2em;
}

.contato-form {
  margin-top: 6rem;
}

.contato-form.--inativo {
  opacity: 0.4;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.formulario-contato-enviar {
  position: relative;
  overflow: hidden;
}

.formulario-contato-enviar.--loading .loading {
  position: absolute;
  border-bottom: 4px solid white;
  left: 0;
  width: 0;
  bottom: 0;
  -webkit-animation: loading 20s;
  animation: loading 20s;
}

.assunto {
  position: absolute;
  left: -99999px;
}

@-webkit-keyframes loading {
  100% {
    width: 100%;
  }
}

@keyframes loading {
  100% {
    width: 100%;
  }
}

a.contato-link {
  font-weight: 600;
  color: #333;
  opacity: 1;
  font-style: italic;
  display: inline-block;
  opacity: 0.7;
}

a.contato-link:hover,
a.contato-link:focus {
  color: white;
}

.contato-form input {
  border: none;
  border-bottom: 3px solid #fffde3;
  background: none;
  border-radius: 0;
  width: 100%;
}

.contato-form #contato-msg {
  border: 3px solid #fffde3;
  border-radius: 6px;
  background: none;
  padding: 1em;
  color: #fffde3;
}

.contato-form #contato-msg:focus {
  color: #fffde3;
}

.has-float-label input:placeholder-shown:not(:focus) + *,
.has-float-label select:placeholder-shown:not(:focus) + *,
.has-float-label textarea:placeholder-shown:not(:focus) + * {
  font-size: 100%;
  color: #fffde3;
  opacity: 1;
  top: 0.25em;
  left: 0.5em;
}

.has-float-label input:focus,
.has-float-label textarea#contato-msg:focus {
  border-color: #fffde3;
  color: #fffde3;
}

.has-float-label input {
  color: #ffeab9;
}

.has-float-label label,
.has-float-label > span {
  opacity: 1;
  top: -28px;
  left: 3px;
  color: #b94002;
}

.contato-form input::-webkit-input-placeholder,
.contato-form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fffde3;
  opacity: 1;
}

.contato-form input::-moz-placeholder,
.contato-form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #fffde3;
  opacity: 1;
}

.contato-form input:-ms-input-placeholder,
.contato-form textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #fffde3;
  opacity: 1;
}

.contato-form input:-moz-placeholder,
.contato-form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #fffde3;
  opacity: 1;
}

.footer-bar {
  -ms-grid-columns: 2rem (1fr) [6] 2rem;
  grid-template-columns: 2rem repeat(6, 1fr) 2rem;
  background-color: #f58245;
  color: #fffde3;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  overflow: hidden;
}

.footer-bar > * {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  margin-left: 0;
  margin-right: 0;
}

.footer-bg {
  -ms-grid-column: 1;
  -ms-grid-column-span: 8;
  grid-column: 1 / 9;
  -ms-grid-row: 3;
  -ms-grid-row-span: 5;
  grid-row: 3 / 8;
}

.footer-bg svg {
  display: block;
}

.footer-siganos {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer-siganos .titulo {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.footer-siganos li a {
  font-size: 0.9rem;
  color: #333;
  position: relative;
}

.footer-logo {
  -ms-grid-row: 5;
  grid-row: 5;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  padding-left: 15vw;
}

.footer-abedesign {
  font-size: 0.8rem;
  -ms-grid-row: 6;
  grid-row: 6;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  text-align: right;
}

.footer-nav .item {
  margin-bottom: 1.25rem;
  color: #333;
}

.footer-nav-link {
  color: #333;
}

.footer-nav-link:visited {
  color: #333;
}

.footer-nav-link:hover {
  color: #fdb813;
  text-decoration: none;
}

.footer-siganos a {
  color: #fffde3;
}

.footer-siganos a:hover {
  text-decoration: none;
  color: #fdb813;
}

.footer-nav {
  position: relative;
}

@media (min-width: 700px) {
  .footer-bg {
    -ms-grid-column: 3;
    -ms-grid-column-span: 6;
    grid-column: 3 / 9;
  }
  .footer-logo,
  .footer-abedesign {
    -ms-grid-column: 3;
    -ms-grid-column-span: 5;
    grid-column: 3 / 8;
  }
}

@media (min-width: 1000px) {
  .footer-nav {
    position: relative;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: 2 / 5;
  }
  .footer-siganos {
    -ms-grid-row: 4;
    -ms-grid-row-span: 2;
    grid-row: 4 / 6;
    -ms-grid-column: 2;
    -ms-grid-column-span: 3;
    grid-column: 2 / 5;
  }
  .footer-bg {
    -ms-grid-row: 1;
    -ms-grid-row-span: 6;
    grid-row: 1 / 7;
    -ms-grid-column: 5;
    -ms-grid-column-span: 4;
    grid-column: 5 / 9;
  }
  .footer-logo {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-column: 5 / 8;
  }
  .footer-abedesign {
    -ms-grid-row: 5;
    grid-row: 5;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-column: 5 / 8;
  }
}

@media (min-width: 1700px) {
  .footer-bar {
    height: 38rem;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #ffaa52 inset;
}

/* O QUE ACHOU */
.oqueachou {
  margin: 0;
  background-color: #ffffff;
  padding: 10rem 0;
  color: #333333;
}

.oqueachou-frase {
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.5rem;
}

.oqueachou-endereco-texto {
  margin-top: 60px;
  font-size: 1.25rem;
  line-height: 1.63rem;
}

.oqueachou-endereco-link {
  margin-top: 2.5rem;
}

.oqueachou-endereco-link a {
  color: #333;
  padding: 0.6em 1em;
  border: 2px solid #f58245;
  border-radius: 5px;
}

.oqueachou-endereco-link a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 2px solid #f58245;
  outline-offset: 8px;
  text-decoration: none;
}

.oqueachou-endereco-link a:hover {
  background-color: #f58245;
  color: #333;
}

@media (min-width: 700px) {
  .oqueachou {
    padding: 20rem 0;
  }
  .oqueachou-frase {
    font-weight: 800;
    font-size: 3rem;
    line-height: 3.75rem;
  }
}

/* NOSSOS CLIENTES */
.nossosclientes {
  background-color: #fdb813;
  margin: 0;
  white-space: nowrap;
  font-size: 0;
  /* Para evitar que espaços em branco no HTML influenciem o layout */
  padding-top: 1.25rem;
  position: relative;
}

.nossosclientes:before {
  content: "";
  position: absolute;
  background-color: #fdb813;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: skewY(-5deg);
  transform: skewY(-5deg);
}

.nossosclientes-container {
  overflow: hidden;
}

.nossosclientes-group {
  position: relative;
  height: 20rem;
  z-index: 99;
}

.nossosclientes-titulo {
  font-size: 2.63rem;
  line-height: 1;
  color: #333;
  margin-bottom: 3.75rem;
  text-align: left;
  position: relative;
  z-index: 10;
  white-space: normal;
}

.nossosclientes-group {
  font-size: 0.63rem;
  /* Esse font-size "cascateia" e controla a dimensão dos hexágonos, que foram dimensionados em EM */
  display: inline-block;
  -webkit-animation: marqueeRightLeft 64s linear infinite;
  animation: marqueeRightLeft 64s linear infinite;
}

.nossosclientes-item {
  position: relative;
  width: 14.5em;
  height: 16.3em;
  /* Posicionamento de colmeia */
  display: inline-block;
  margin-right: -6.5em;
  opacity: 0.5;
  will-change: opacity, transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.nossosclientes-item:nth-child(even) {
  /* descer um não, um sim */
  top: 14em;
}

.nossosclientes-item .logo {
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.nossosclientes-item:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 1;
}

.nossosclientes-fragmentos-item {
  background-image: url(assets/hexagono.svg);
  background-size: contain;
  position: absolute;
}

@media (min-width: 768px) {
  .nossosclientes-group {
    height: 32vw;
  }
}

@media (min-width: 992px) {
  .nossosclientes-group {
    font-size: 0.75rem;
    height: 30rem;
  }
}

/* 
=======================================
   ANIMAÇÕES
=======================================
*/
@-webkit-keyframes marqueeRightLeft {
  0% {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(-200vw);
    transform: translateX(-200vw);
  }
}
@keyframes marqueeRightLeft {
  0% {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }
  100% {
    -webkit-transform: translateX(-200vw);
    transform: translateX(-200vw);
  }
}

@-webkit-keyframes pop_up-nav_links {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes pop_up-nav_links {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes pop_up-nav_links2 {
  0.00% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  13.10% {
    -webkit-transform: translateY(12.32px);
    transform: translateY(12.32px);
  }
  27.58% {
    -webkit-transform: translateY(-4.83px);
    transform: translateY(-4.83px);
  }
  42.07% {
    -webkit-transform: translateY(1.89px);
    transform: translateY(1.89px);
  }
  56.55% {
    -webkit-transform: translateY(-0.74px);
    transform: translateY(-0.74px);
  }
  71.03% {
    -webkit-transform: translateY(0.29px);
    transform: translateY(0.29px);
  }
  85.52% {
    -webkit-transform: translateY(-0.11px);
    transform: translateY(-0.11px);
  }
  100.00% {
    -webkit-transform: translateY(0.04px);
    transform: translateY(0.04px);
  }
}

@keyframes pop_up-nav_links2 {
  0.00% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  13.10% {
    -webkit-transform: translateY(12.32px);
    transform: translateY(12.32px);
  }
  27.58% {
    -webkit-transform: translateY(-4.83px);
    transform: translateY(-4.83px);
  }
  42.07% {
    -webkit-transform: translateY(1.89px);
    transform: translateY(1.89px);
  }
  56.55% {
    -webkit-transform: translateY(-0.74px);
    transform: translateY(-0.74px);
  }
  71.03% {
    -webkit-transform: translateY(0.29px);
    transform: translateY(0.29px);
  }
  85.52% {
    -webkit-transform: translateY(-0.11px);
    transform: translateY(-0.11px);
  }
  100.00% {
    -webkit-transform: translateY(0.04px);
    transform: translateY(0.04px);
  }
}

@-webkit-keyframes pop_left-nav_links {
  0.00% {
    -webkit-transform: translateX(120px);
    transform: translateX(120px);
  }
  13.10% {
    -webkit-transform: translateX(-49.28px);
    transform: translateX(-49.28px);
  }
  27.58% {
    -webkit-transform: translateX(19.32px);
    transform: translateX(19.32px);
  }
  42.07% {
    -webkit-transform: translateX(-7.56px);
    transform: translateX(-7.56px);
  }
  56.55% {
    -webkit-transform: translateX(2.96px);
    transform: translateX(2.96px);
  }
  71.03% {
    -webkit-transform: translateX(-1.16px);
    transform: translateX(-1.16px);
  }
  85.52% {
    -webkit-transform: translateX(0.44px);
    transform: translateX(0.44px);
  }
  100.00% {
    -webkit-transform: translateX(-0.16px);
    transform: translateX(-0.16px);
  }
}

@keyframes pop_left-nav_links {
  0.00% {
    -webkit-transform: translateX(120px);
    transform: translateX(120px);
  }
  13.10% {
    -webkit-transform: translateX(-49.28px);
    transform: translateX(-49.28px);
  }
  27.58% {
    -webkit-transform: translateX(19.32px);
    transform: translateX(19.32px);
  }
  42.07% {
    -webkit-transform: translateX(-7.56px);
    transform: translateX(-7.56px);
  }
  56.55% {
    -webkit-transform: translateX(2.96px);
    transform: translateX(2.96px);
  }
  71.03% {
    -webkit-transform: translateX(-1.16px);
    transform: translateX(-1.16px);
  }
  85.52% {
    -webkit-transform: translateX(0.44px);
    transform: translateX(0.44px);
  }
  100.00% {
    -webkit-transform: translateX(-0.16px);
    transform: translateX(-0.16px);
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.a_apis-especialidades-lista {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 2.5rem;
}

.a_apis-capa {
  background-color: #fdb813;
}

.a_apis-capa h1 {
  color: #f58245;
  margin-top: 15rem;
  margin-bottom: 15rem;
  text-align: center;
  letter-spacing: 0.13rem;
}

.a_apis-intro {
  margin-top: -7.5rem;
}

.a_apis {
  background-color: #fffde3;
}

.a_apis-intro-outer_box {
  background-color: white;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.a_apis-intro-titulo {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 30.63rem;
  color: #333333;
}

.a_apis-intro .content {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}

.a_apis-intro .separador {
  margin-bottom: 5rem;
}

.a_apis-especialidades {
  margin-top: 11.25rem;
}

.a_apis-especialidades .titulo_pequeno {
  color: #fdb813;
  margin-bottom: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.87rem;
  letter-spacing: 1px;
}

.a_apis-especialidades-titulo {
  color: #fdb813;
  font-size: 3rem;
  line-height: 3.75rem;
  font-weight: 800;
  max-width: 31.25rem;
}

.a_apis-especialidades-ilustra {
  margin-top: -5rem;
}

.a_apis-especialidades-lista-item {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
}

.a_apis-especialidades-lista-titulo {
  font-size: 1rem;
}

.a_apis-especialidades-linkprojetos {
  display: block;
  margin-top: 10rem;
  background-color: #f58245;
  color: #fffde3;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
  border-radius: 5px;
  padding: 1.25rem 0.63rem;
  margin-top: 10rem;
}

.a_apis-especialidades-linkprojetos:visited {
  color: #fffde3;
}

.a_apis-especialidades-linkprojetos:hover,
.a_apis-especialidades-linkprojetos:focus {
  color: #fffde3;
  text-decoration: none;
  background-color: #fdb404;
}

/* A_APIS intro e especialidades media queries */
@media (min-width: 768px) {
  .a_apis-intro-outer_box {
    margin-left: 3.75rem;
    margin-right: 3.75rem;
    border-radius: 5px;
  }
  .a_apis-intro-inner_box {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
  }
}

.a_apis-metodo-box {
  background-color: white;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 5rem 0;
}

.a_apis-metodo {
  position: relative;
  /* margin-top: 10rem; */
  padding-top: 0rem;
  padding-bottom: 13.5rem;
  background-color: white;
}

.a_apis-metodo-titulo_pequeno.section-title {
  margin-bottom: -0.5rem;
}

.a_apis-metodo-titulo {
  font-size: 3rem;
  line-height: 1;
  max-width: 25rem;
  font-weight: 800;
  color: #fdb813;
  margin-bottom: 0.2em;
}

.a_apis-metodo-item .btn {
  background-color: #fdb813;
  color: #fffde3;
}

.a_apis-metodo-item .btn:hover {
  background-color: #ffb100;
  color: #fffde3;
}

.a_apis-metodo-container {
  position: relative;
  height: 40rem;
}

.a_apis-metodo .separador {
  margin-bottom: 0;
}

.a_apis-metodo .separador svg * {
  stroke: #fdb813;
}

.a_apis-metodo-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.a_apis-metodo-item .item-header {
  padding-top: 1.25rem;
}

.a_apis-metodo-item-header .numero {
  font-size: 1.75rem;
  font-weight: 200;
  color: #f58245;
}

.a_apis-metodo-item-header .titulo {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fdb813;
  margin-top: 0rem;
}

.a_apis-metodo-fio {
  width: 100%;
}

.a_apis-metodo-fio.apis_stroke {
  margin-left: -40%;
}

.a_apis-metodo-item-descricao {
  z-index: 10;
}

.a_apis-metodo-item-descricao .texto {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #666666;
}

.a_apis-metodo-item-imagem {
  margin-top: 2.5rem;
  margin-bottom: 0rem;
  max-width: 20rem;
  z-index: 10;
}

.a_apis-finalizador_especialidades {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fffde3;
  width: 100%;
  height: 28vw;
  -webkit-transform: skewY(15deg);
  transform: skewY(15deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  z-index: 100;
}

.a_apis-metodo-fundo_cor {
  /* Div container do SVG */
  right: -23.13rem;
  width: 37.5rem;
  position: absolute;
  fill: #f58345;
  -webkit-transition: fill 1s;
  transition: fill 1s;
}

.a_apis-metodo-item.item-6 .btn {
  background-color: #333333;
}

.a_apis-metodo-navegacao {
  margin-top: 0;
  width: 100%;
}

.a_apis-metodo-navegacao .st0 {
  opacity: 0.6;
  fill: #333333;
}

.a_apis-metodo-navegacao .st1 {
  fill: none;
  stroke: #e1e1e1;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.a_apis-metodo-navegacao .st2 {
  font-size: 0.87rem;
}

.a_apis-metodo-navegacao .st3 {
  font-family: "Graviola";
  font-weight: 600;
}

/* A_apis - Método - Media queries */
@media (min-width: 768px) {
  .a_apis-metodo-fundo_cor {
    /* Div container do SVG */
    left: calc(50vw - 4.38rem);
    width: 61.88rem;
    height: auto;
    top: 12.5rem;
    opacity: 1;
  }
  .a_apis-metodo-container {
    position: relative;
    height: 37.5rem;
  }
  .a_apis-metodo-item-header {
    position: absolute;
    left: 4.13%;
    bottom: 3.75rem;
    top: auto;
  }
  .a_apis-metodo-item-header .numero {
    font-size: 2.63rem;
  }
  .a_apis-metodo-item-header .titulo {
    font-size: 2.63rem;
    margin-top: 1rem;
  }
  .a_apis-metodo-item-descricao {
    position: absolute;
    right: 5%;
    bottom: 10.63rem;
    width: 40%;
  }
  .a_apis-metodo-item-imagem {
    max-width: none;
    position: absolute;
    left: 0rem;
    width: 26.25rem;
    bottom: 6.25rem;
    margin-bottom: 0;
  }
  .a_apis-metodo-item-descricao .texto {
    color: #fffde3;
  }
}

@media (min-width: 992px) {
  .a_apis-metodo-fundo_cor {
    /* Div container do SVG */
    width: 75rem;
    top: 3.75rem;
  }
  .a_apis-metodo-item-imagem {
    width: 30rem;
  }
  .a_apis-metodo {
    padding-top: 15rem;
  }
}

@media (min-width: 1200px) {
  .a_apis-metodo-fundo_cor {
    /* Div container do SVG */
    left: calc(50vw + 0rem);
    width: 102.5rem;
    height: auto;
    top: -15rem;
  }
  .a_apis-metodo-container {
    position: relative;
    height: 43.75rem;
  }
  .a_apis-metodo-item-header {
    position: absolute;
    left: 0;
    bottom: 20rem;
  }
  .a_apis-metodo-item-header .numero {
    font-size: 3.13rem;
  }
  .a_apis-metodo-item-header .titulo {
    font-size: 3.25rem;
  }
  .a_apis-metodo-item.item-3 .a_apis-metodo-item-header {
    left: 3.13rem;
  }
  .a_apis-metodo-item.item-5 .a_apis-metodo-item-header {
    bottom: 6.88rem;
  }
  .a_apis-metodo-item-descricao {
    position: absolute;
    right: 0;
    bottom: 20rem;
    width: 33.333%;
  }
  .a_apis-metodo-item-imagem {
    position: absolute;
    left: 15rem;
    width: 31.25rem;
    bottom: 10rem;
  }
  .a_apis-metodo-item-descricao .texto {
    color: #fffde3;
    margin-bottom: 2.5rem;
  }
}

/* A APIS - Método - Lógica e animacoes */
.a_apis-metodo-item {
  visibility: hidden;
}

.a_apis-metodo-item.show {
  visibility: visible;
}

.a_apis-metodo-item .numero {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.a_apis-metodo-item .titulo {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.a_apis-metodo-item .texto {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.a_apis-metodo-item .btn {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  display: inline-block;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0;
}

.a_apis-metodo-item .imagem {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.a_apis-metodo-item.show .numero {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.a_apis-metodo-item.show .titulo {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.a_apis-metodo-item.show .texto {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.a_apis-metodo-item.show .btn {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.a_apis-metodo-item.show .imagem {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

/* A APIS - Equipe */
.a_apis-equipe {
  margin-top: 0rem;
  position: relative;
  background-color: #fdb913;
  padding-bottom: 2.5rem;
}

.a_apis-equipe-recorte_topo {
  width: 100%;
  overflow: hidden;
  position: relative;
  line-height: 0;
  background-color: white;
  fill: #fdb913;
  height: 442px;
  margin-bottom: -460px;
}

.a_apis-equipe-recorte_topo svg {
  position: absolute;
  width: 968px;
  left: -100px;
}

/* O recorte precisa estar alinhado com o container do bootstrap */
/* Ver media queries */
.a_apis-equipe-recorte_inferior {
  width: 100%;
  height: 50%;
  background-color: #fdb813;
  position: absolute;
  bottom: 0;
  -webkit-transform: skewY(5deg);
  transform: skewY(5deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  z-index: 10;
}

.a_apis-equipe-titulo_pequeno {
  color: white;
  margin-bottom: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.87rem;
  letter-spacing: 1px;
}

.a_apis-equipe-titulo {
  margin: 0;
  padding-top: 10rem;
}

.a_apis-equipe-titulo .titulo {
  font-size: 3.75rem;
  color: #fffde3;
}

.a_apis-equipe-lista {
  margin: 0;
  margin-top: 5rem;
  padding: 0;
  list-style: none;
}

.a_apis-equipe-socios-titulo,
.a_apis-equipe-time-titulo {
  color: #fffde3;
  opacity: 0.6;
}

.a_apis-equipe-lista .item {
  margin-bottom: 1.88rem;
}

.a_apis-equipe-lista .item .item-box {
  background-color: rgba(255, 253, 227, 0.3);
  margin-bottom: 0.63rem;
  border-radius: 8px;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative;
}

.a_apis-equipe-lista .item .nome {
  text-transform: uppercase;
  font-size: 0.87rem;
  font-weight: 600;
  color: #fffde3;
  letter-spacing: 1px;
  line-height: 1;
}

.a_apis-equipe-lista .item-box .avatar,
.a_apis-equipe-lista .item-box .animation {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
}

.a_apis-equipe-lista .item-box .animation {
  opacity: 0;
  -webkit-transition: 0.6s opacity;
  transition: 0.6s opacity;
}

.a_apis-equipe-lista .item-box .animation:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .a_apis-equipe-recorte_topo svg {
    width: 1200px;
    left: calc(50vw - 384px - 180px);
  }
  .a_apis-equipe-recorte_topo {
    height: 520px;
    margin-bottom: -520px;
  }
  .a_apis-equipe-titulo .titulo {
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  .a_apis-equipe-recorte_topo svg {
    width: 1400px;
    left: calc(50vw - 496px - 200px);
  }
  .a_apis-equipe-recorte_topo {
    height: 580px;
    margin-bottom: -580px;
  }
}

@media (min-width: 1200px) {
  .a_apis-equipe-recorte_topo svg {
    min-width: 1600px;
    width: 125%;
    left: calc(50vw - 600px - 25%);
  }
  .a_apis-equipe-recorte_topo {
    height: 55vw;
    margin-bottom: -55vw;
  }
}

/* ================================
		PROJETOS
	 ================================*/
/*

	Importante: Os cards de projetos recebem os mesmos estilos utilizados na home!

*/
.post-type-archive-projeto {
  background-color: #333333;
  color: #fffde3;
  position: relative;
}

.post-type-archive-projeto .header {
  -ms-grid-rows: 5vh 10vh 10vh;
  grid-template-rows: 5vh 10vh 10vh;
}

.post-type-archive-projeto:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 35.63rem;
  background-color: #464646;
  -webkit-transform: skewY(-15deg);
  transform: skewY(-15deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

.post-type-archive-projeto .header-logo-svg .design,
.post-type-archive-projeto .header-logo-svg .apis,
.single-projeto .header-logo-svg .design,
.single-projeto .header-logo-svg .apis {
  fill: #fffde3;
}

.post-type-archive-projeto .apis_stroke line,
.post-type-archive-projeto .apis_stroke path,
.single-projeto .apis_stroke line,
.single-projeto .apis_stroke path {
  stroke: #fffde3;
}

.post-type-archive-projeto .header-navegacao-item a,
.single-projeto .header-navegacao-item a {
  color: #fffde3;
}

.projetos-titulo {
  margin-bottom: 0rem;
  font-size: 2.25rem;
  line-height: 1;
}

.projetos-titulo .titulo {
  width: 18.75rem;
  margin: 0;
}

.projetos-titulo svg {
  -webkit-transform: rotate(90deg) translate(2.5rem, 5rem) scale(0.9);
  transform: rotate(90deg) translate(2.5rem, 5rem) scale(0.9);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.projetos-titulo svg path {
  stroke: #fffde3;
}

.projetos-filtro {
  margin-top: 5rem;
}

.projetos-filtro .row {
  border-top: 2px solid #fffde3;
}

.projetos-filtro-titulo {
  vertical-align: baseline;
  display: inline-block;
  font-weight: 600;
  font-size: 0.87rem;
  margin: 0;
  margin-right: 1.25rem;
  margin-top: 2.5rem;
  opacity: 0.6;
}

.projetos-filtro-lista {
  position: relative;
  top: 1px;
  vertical-align: baseline;
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.projetos-filtro .item {
  padding: 0.63rem 1.25rem;
  margin-left: 0rem;
  display: inline-block;
  margin-right: 0rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
}

.projetos-filtro .item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.projetos-filtro .item:active {
  background-color: black;
}

.projetos-filtro .item.js_activated {
  background-color: black;
  -webkit-box-shadow: inset 0 -3px 5px rgba(255, 255, 255, 0.1),
    0 -1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -3px 5px rgba(255, 255, 255, 0.1),
    0 -1px 3px rgba(0, 0, 0, 0.2);
  color: #fdb813;
}

.projetos-filtro .item.activated:hover {
  background-color: #1f1f1f;
}

.projetos-destaque a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.projetos-destaque {
  margin-top: 5rem;
}

.projetos-destaque .hide-overflow {
  border-radius: 6px;
  overflow: hidden;
}

.projetos-destaque-info {
  margin-top: 1.25rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.projetos-destaque-info-categoria {
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 600;
  font-size: 0.87rem;
  letter-spacing: 1.6px;
  margin-bottom: 1.25rem;
}

.projetos-destaque-info-titulo {
  font-size: 3.38rem;
  line-height: 1;
  margin: 0;
}

.projetos-lista {
  margin-top: 3.75rem;
  padding-bottom: 10rem;
}

.projetos-lista-item {
  -webkit-transition: 0.6s opacity;
  transition: 0.6s opacity;
}

.js_filtrar_identidade-de-marca .projetos-lista-item,
.js_filtrar_editorial .projetos-lista-item {
  opacity: 0.3;
}

.js_filtrar_identidade-de-marca .categoria_identidade-de-marca {
  opacity: 1;
}

.js_filtrar_editorial .categoria_editorial {
  opacity: 1;
}

@media (min-width: 992px) {
  .projetos-destaque-info-categoria {
    margin-top: 10rem;
  }
}

@media (min-width: 1200px) {
  .projetos-destaque-info-categoria {
    margin-top: 20rem;
  }
}

/* Menu Mobile */
.header .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  z-index: 99999;
  overflow: hidden;
  pointer-events: none;
}

.mobile-menu-botao {
  font-size: 1.25rem;
  border: none;
  outline: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 72px;
  background-color: transparent;
  border-radius: 0;
  pointer-events: all;
  -webkit-animation: 0.6s menubotaopopin 0.5s both;
  animation: 0.6s menubotaopopin 0.5s both;
}

@-webkit-keyframes menubotaopopin {
  0% {
    -webkit-transform: translate(54px, 91px);
    transform: translate(54px, 91px);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes menubotaopopin {
  0% {
    -webkit-transform: translate(54px, 91px);
    transform: translate(54px, 91px);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}

.mobile-menu-botao:active path {
  fill: #ffffff;
}

.mobile-menu-botao .background {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: all;
  background-color: #fdb813;
  display: none;
}

.mobile-menu-links {
  width: 100%;
  position: absolute;
  bottom: 5rem;
  right: 0;
  margin: 0;
  padding: 0;
  padding-bottom: 1.25rem;
  list-style: none;
}

.mobile-nav-link {
  display: block;
  width: 100%;
}

.mobile-nav-link:active {
  background-color: #fffde3;
}

.mobile-nav-link a {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: 1px;
  color: #333333;
  padding: 1rem 1.25rem;
}

.mobile-menu.menu_aberto .mobile-menu-overlay {
  display: block;
  -webkit-animation: 0.6s fade-in both;
  animation: 0.6s fade-in both;
}

.mobile-menu.menu_aberto .mobile-nav-link {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: pop_left-nav_links;
  animation-name: pop_left-nav_links;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mobile-nav-link:nth-child(5) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.mobile-nav-link:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.mobile-nav-link:nth-child(3) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.mobile-nav-link:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.mobile-nav-link:nth-child(1) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.hamburger_icon {
  position: absolute;
  top: 27px;
  left: 31px;
}

.hamburger_icon-bar {
  position: absolute;
  background-color: #333333;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.hamburger_icon-bar.bar-1 {
  top: 0;
}

.hamburger_icon-bar.bar-2a {
  top: 8px;
}

.hamburger_icon-bar.bar-2b {
  top: 8px;
}

.hamburger_icon-bar.bar-3 {
  top: 16px;
}

/* Animacao - hamburger > X*/
.mobile-menu.menu_aberto .hamburger_icon-bar.bar-1 {
  opacity: 0;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.mobile-menu.menu_aberto .hamburger_icon-bar.bar-2a {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fdb813;
}

.mobile-menu.menu_aberto .hamburger_icon-bar.bar-2b {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fdb813;
}

.mobile-menu.menu_aberto .hamburger_icon-bar.bar-3 {
  opacity: 0;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}

/* UTILS - UTILIDADES */
@media (max-width: 767px) {
  .center-xs {
    text-align: center;
  }
}

@-webkit-keyframes squigglevision {
  0% {
    -webkit-filter: url("#squiggly-0") blur(0.5px);
    filter: url("#squiggly-0") blur(0.5px);
  }
  25% {
    -webkit-filter: url("#squiggly-1") blur(0.4px);
    filter: url("#squiggly-1") blur(0.4px);
  }
  50% {
    -webkit-filter: url("#squiggly-2") blur(0.5px);
    filter: url("#squiggly-2") blur(0.5px);
  }
  75% {
    -webkit-filter: url("#squiggly-3") blur(0.6px);
    filter: url("#squiggly-3") blur(0.6px);
  }
  100% {
    -webkit-filter: url("#squiggly-4") blur(0.5px);
    filter: url("#squiggly-4") blur(0.5px);
  }
}

@keyframes squigglevision {
  0% {
    -webkit-filter: url("#squiggly-0") blur(0.5px);
    filter: url("#squiggly-0") blur(0.5px);
  }
  25% {
    -webkit-filter: url("#squiggly-1") blur(0.4px);
    filter: url("#squiggly-1") blur(0.4px);
  }
  50% {
    -webkit-filter: url("#squiggly-2") blur(0.5px);
    filter: url("#squiggly-2") blur(0.5px);
  }
  75% {
    -webkit-filter: url("#squiggly-3") blur(0.6px);
    filter: url("#squiggly-3") blur(0.6px);
  }
  100% {
    -webkit-filter: url("#squiggly-4") blur(0.5px);
    filter: url("#squiggly-4") blur(0.5px);
  }
}

.a_apis-metodo-item img {
  -webkit-animation: squigglevision 0.5s infinite;
  animation: squigglevision 0.5s infinite;
}

/*

METODOLOGIA ANIMACOES

*/
@-webkit-keyframes shakeUpandDown {
  0% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
  100% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
@keyframes shakeUpandDown {
  0% {
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
  100% {
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}

@-webkit-keyframes rotateUpandDown {
  0% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
}

@keyframes rotateUpandDown {
  0% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
}

.metodo-entender-svg #telas g {
  font-size: 0.06rem;
  -webkit-animation: shakeUpandDown 1.2s infinite alternate ease-in-out;
  animation: shakeUpandDown 1.2s infinite alternate ease-in-out;
}

.metodo-entender-svg #telas g:nth-child(1) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.metodo-entender-svg #telas g:nth-child(2) {
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.metodo-entender-svg #telas g:nth-child(3) {
  -webkit-animation-delay: -3s;
  animation-delay: -3s;
}

.metodo-entender-svg #telas g:nth-child(1) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.metodo-entender-svg #telas g:nth-child(1) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

/*

NOVAS TELAS

TODO: Redistribuir esse CSS

*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Graviola", sans-serif;
  color: #333;
  overflow-x: hidden;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/*
*
* COMPONENTES
*
*/
/* APIS Stroke*/
.apis_stroke {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.apis_stroke svg {
  height: 1rem;
}

.apis_stroke line,
.apis_stroke path {
  stroke: #fdb913;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apis_stroke .meio {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.apis_stroke .canto {
  position: relative;
  left: -2px;
}

.apis_stroke._girar180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.apis_stroke._scale-1 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/* =========== */
.header {
  padding-top: 3.25rem;
  z-index: 1;
}

.section-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4rem;
  margin-bottom: 0;
}

.header-logo {
  position: relative;
  top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 2rem;
  width: 50vw;
}

.header-logo-svg {
  width: 100%;
}

.header-fio_a {
  position: relative;
  top: 7px;
  margin-left: 0;
}

.header-navegacao {
  position: relative;
  top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-navegacao-item a {
  padding: 1rem 0.3rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #333333;
  text-shadow: 0 1px 8px rgba(227, 199, 137, 0.2);
}

.header-navegacao-item:first-child {
  margin-left: -1rem;
}

.header-navegacao-item:last-child {
  margin-right: -1rem;
}

.header-fio_b {
  display: none;
}

.home .header-frase {
  margin-bottom: 4.2rem;
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 1;
  color: #333;
}

.home .header-ilustra {
  margin-left: 1.5rem;
  margin-right: 1rem;
}

.home .header-ilustra svg {
  max-width: 25rem;
  max-height: 70vh;
}

.home .header-fundo_1,
.home .header-fundo_2 {
  margin: 0;
}

.home .header-fundo_1 {
  background-image: url("assets/images/fundo_1.svg");
  background-repeat: no-repeat;
  z-index: -10;
}

.home .header-fundo_2 {
  background-image: url("assets/images/fundo_2.svg");
  background-repeat: no-repeat;
  z-index: -15;
}

.home .intro-tagline h2 {
  font-size: inherit;
  font-weight: inherit;
  margin-top: 2rem;
  margin-bottom: 0;
  color: #333;
}

.home .ilustra-svg {
  fill: none;
}

.header-logo-svg .apis {
  fill: #333333;
}

.header-logo-svg .design {
  fill: #fdb813;
}

.home .intro {
  background-color: #fdb813;
}

.home .intro-tagline {
  color: #fffde3;
  font-weight: 900;
  line-height: 1;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.home .intro-tagline i {
  font-weight: 200;
  font-style: normal;
}

.home .intro-texto {
  line-height: 1.6;
  font-size: 1.1rem;
  color: #333;
}

.home .intro-texto p:last-child {
  margin-bottom: 0;
}

.home .intro-cta {
  margin-top: 3em;
  margin-bottom: 1em;
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  -webkit-box-shadow: 0 2px 8px rgba(214, 69, 5, 0.3);
  box-shadow: 0 2px 8px rgba(214, 69, 5, 0.3);
  cursor: pointer;
  font-weight: bolder;
}

.home .intro-fio {
  -ms-grid-row: 7;
  grid-row: 7;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  padding-top: 2rem;
  border-bottom: 2px solid white;
  margin: 0;
}

.home .intro-balde {
  display: none;
}

.home .intro-footer_1 {
  background-image: url("assets/images/fundo_1.svg");
  background-repeat: no-repeat;
  height: 20em;
  background-size: cover;
  margin-left: -170vh;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

/*
*
*  GRID LAYOUT
*
*/
@supports (display: grid) {
  .header,
  .section {
    display: -ms-grid;
    display: grid;
  }
  /* 
	Reiniciar espaçamento
	e forçar todos em uma coluna
	*/
  .header-logo,
  .header-fio_a,
  .header-navegacao,
  .header-fio_b,
  .home .header-frase,
  .home .header-fundo_1,
  .home .header-fundo_2,
  .home .header-ilustra {
    margin-top: 0;
    margin-bottom: 0;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
  }
  .header {
    padding-top: 0;
    -ms-grid-rows: minmax(2rem, 10vh) 10vh 10vh minmax(8rem, 15vh);
    grid-template-rows: minmax(2rem, 10vh) 10vh 10vh minmax(8rem, 15vh);
  }
  .header-logo {
    margin-bottom: 1rem;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
  }
  .header-fio_a {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
  }
  .header-fio_b {
    display: none;
    -ms-flex-item-align: end;
    -ms-grid-row-align: end;
    align-self: end;
  }
  .header-navegacao {
    -ms-grid-row: 3;
    grid-row: 3;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .home .header-frase {
    -ms-grid-row: 4;
    grid-row: 4;
  }
  @media (max-height: 496px) {
    /* Se o celular não for comprido o suficiente, esconder o menu estático	*/
    .header {
      -ms-grid-rows: minmax(2rem, 10vh) 10vh minmax(8rem, 20vh);
      grid-template-rows: minmax(2rem, 10vh) 10vh minmax(8rem, 20vh);
    }
    .header-navegacao {
      display: none;
    }
    .home .header-frase {
      margin-top: 1rem;
      -ms-grid-row: 3;
      grid-row: 3;
    }
  }
  .home .header-ilustra {
    -ms-grid-row: 5;
    -ms-grid-row-span: 2;
    grid-row: 5 / 7;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .home .header-fundo_1 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 2;
    grid-row: 5 / 7;
  }
  .home .header-fundo_2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 6;
    grid-row: 1 / 7;
  }
  @media screen and (max-aspect-ratio: 1 / 2) {
    .header {
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      height: 100%;
      padding-top: 2rem;
    }
  }
  /*
	====================================
	Step 2 de responsividade 
	====================================
	*/
  @media screen and (min-width: 700px) {
    .section,
    .header {
      -ms-grid-columns: 1fr (2fr) [6] 1fr;
      grid-template-columns: 1fr repeat(6, 2fr) 1fr;
      grid-column-gap: 1.25rem;
    }
    .header {
      -ms-grid-rows: 5vh 10vh 10vh;
      grid-template-rows: 5vh 10vh 10vh;
    }
    .header > * {
      margin: 0;
    }
    .header-logo {
      -ms-grid-column: 2;
      -ms-grid-column-span: 2;
      grid-column: 2 / 4;
      width: auto;
      margin: 0;
    }
    .header-logo-svg {
      width: inherit;
      position: relative;
      top: 1.7rem;
    }
    .header-fio_a {
      -ms-grid-column: 4;
      grid-column: 4;
      -ms-grid-row: 2;
      grid-row: 2;
      padding-right: 1rem;
    }
    .header-navegacao {
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-grid-column: 5;
      -ms-grid-column-span: 3;
      grid-column: 5 / 8;
      -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
    }
    .header-fio_b {
      /* Invisível ainda */
    }
    .home .header-frase {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
      font-size: 3rem;
    }
    .home .header-fundo_1 {
      grid-column: 1/ -1;
      background-position: 0 140px;
    }
    .home .header-fundo_2 {
      grid-column: 1/ -1;
      background-position: right -50px top 0;
    }
    .home .header-ilustra {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
    }
    .home .intro {
      -ms-grid-rows: auto;
      grid-template-rows: auto;
      padding-bottom: 4rem;
    }
    .home .intro > * {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
      margin: 0;
    }
    .home .intro-tagline {
      font-size: 3.2rem;
    }
    .home .intro-texto {
      font-size: 1.3rem;
    }
    .home .intro-fio {
      -ms-grid-column: 1;
      -ms-grid-column-span: 6;
      grid-column: 1 / 7;
      padding-top: 2rem;
      border-bottom: 2px solid white;
    }
    .about-intro {
      -ms-grid-rows: auto;
      grid-template-rows: auto;
    }
    .about-intro > * {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
    }
  }
  /*
	====================================
	Step 3 de responsividade 
	====================================
	*/
  @media screen and (min-width: 1000px) {
    .section,
    .header {
      -ms-grid-columns: 2fr (3fr) [6] 2fr;
      grid-template-columns: 2fr repeat(6, 3fr) 2fr;
    }
    .home .header,
    .home .intro {
      -ms-grid-rows: 5vh 10vh 8vh 17vh;
      grid-template-rows: 5vh 10vh 8vh 17vh;
    }
    .header-logo {
      -ms-grid-column: 2;
      -ms-grid-column-span: 1;
      grid-column: 2 / 3;
    }
    .header-logo-svg {
      width: 120%;
      position: relative;
      top: 1.3rem;
    }
    .header-fio_a {
      -ms-grid-column: 3;
      -ms-grid-column-span: 2;
      grid-column: 3 / 5;
      margin-left: 2rem;
    }
    .apis_stroke {
      margin-left: 1em;
    }
    .home .header-frase {
      -ms-grid-column: 2;
      -ms-grid-column-span: 3;
      grid-column: 2 / 5;
      font-size: 3.75rem;
    }
    .home .header-ilustra {
      position: relative;
      top: -5rem;
      -ms-grid-column: 5;
      -ms-grid-column-span: 3;
      grid-column: 5 / 8;
    }
    .home .header-fundo_1 {
      background-position: 0 200px;
    }
    .home .header-fundo_1 {
      background-position: 0 200px;
    }
    .home .header-ilustra svg {
      max-width: none;
    }
    .home .intro {
      -ms-grid-rows: auto;
      grid-template-rows: auto;
    }
    .home .intro-tagline {
      -ms-grid-column: 2;
      -ms-grid-column-span: 3;
      grid-column: 2 / 5;
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
      font-size: 3.6rem;
    }
    .home .intro-texto {
      -ms-grid-column: 5;
      -ms-grid-column-span: 3;
      grid-column: 5 / 8;
      -ms-grid-row: 1;
      grid-row: 1;
      padding-top: 4rem;
      font-size: 1.5rem;
    }
    .home .intro-cta {
      margin-top: 3rem;
      -ms-grid-column: 5;
      -ms-grid-column-span: 2;
      grid-column: 5 / 7;
      -ms-grid-row: 2;
      grid-row: 2;
      -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
    }
    .home .intro-fio {
      -ms-grid-column: 1;
      -ms-grid-column-span: 4;
      grid-column: 1 / 5;
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .home .intro-balde {
      display: block;
      width: 12rem;
      margin-left: -2rem;
    }
  }
  /*
	====================================
	Step 4 de responsividade 
	====================================
	*/
  @media screen and (min-width: 1200px) {
    .header-logo-svg {
      width: inherit;
      position: relative;
      top: 1.4rem;
    }
    .header-fio_a {
      margin-left: 0;
      -ms-grid-column: 3;
      grid-column: 3;
    }
    .header-navegacao {
      -ms-grid-column: 4;
      -ms-grid-column-span: 2;
      grid-column: 4 / 6;
    }
    .header-fio_b {
      padding-left: 0.5rem;
      display: block;
      -ms-grid-column: 6;
      -ms-grid-column-span: 3;
      grid-column: 6 / 9;
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .home .intro-tagline {
      font-size: 4.3rem;
    }
    .home .intro-cta {
      font-size: 1.2rem;
    }
    .home .header-fundo_1 {
      background-size: cover;
    }
  }
  /*
	====================================
	Step 5 de responsividade 
	====================================
	*/
  @media screen and (min-width: 1700px) {
    .header-logo-svg {
      position: relative;
      top: 1.8rem;
    }
    .a_apis-metodo {
      overflow-x: visible;
      float: left;
    }
    .a_apis-metodo .container {
      left: 15vw;
    }
    .a_apis-metodo-fundo_cor {
      left: calc(45vw + 0rem);
    }
  }
}

/*
====================================
PÁGINA SOBRE A APIS
aka "about"
====================================
*/
.page-template-template-sobre .header {
  -ms-grid-rows: 5vh 10vh 10vh;
  grid-template-rows: 5vh 10vh 10vh;
}

.about-intro-tagline {
  color: #fdb913;
  font-size: 11vw;
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  margin-bottom: 2rem;
  padding-bottom: 0.2em;
  overflow: hidden;
}

.about-intro-tagline ._e {
  font-weight: 200;
}

.about-intro-tagline i {
  -webkit-column-break-after: always;
  break-after: always;
}

.about-intro-tagline .about-intro-texto {
  font-size: 1.5rem;
  color: #000;
  font-weight: 100;
  padding: 0 3rem;
}

.about-intro-tagline ._significado {
  margin-left: -1vw;
  margin-top: 2rem;
}

.about-intro-tagline ._transformacao {
  margin-top: -25rem;
  text-align: left;
  margin-right: -1vw;
}

.about-intro-tagline ._final {
  text-align: left;
  background-color: #fffde3;
  z-index: -1;
  padding: 3vh 20vw 3vh 20vw;
}

.about-intro-tagline ._final p {
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.4em;
  width: 100vh;
  padding: 2rem;
}

/*
==========================================
Lettering 
==========================================
*/
@media (max-width: 700px) {
  .about-intro-tagline {
    position: relative;
    padding-bottom: 70%;
    overflow: visible;
    width: 100vw;
  }
  .about-intro-tagline .fundo {
    left: 0;
    right: 0;
    top: 30%;
    height: 100%;
    background-color: #fffde3;
  }
  .about-intro-tagline._transformacao {
    padding-bottom: 30%;
  }
  .about-intro-tagline * {
    position: absolute;
  }
  .about-intro-tagline ._signi {
    left: 2rem;
    font-size: 34.5vw;
    top: 10%;
  }
  .about-intro-tagline ._signi .fio {
    width: 20vw;
    right: -20%;
    bottom: 11%;
    border-bottom: 4px solid #fdb913;
  }
  .about-intro-tagline ._ficado {
    left: 2rem;
    top: 54%;
    font-size: 31.5vw;
    font-weight: 200;
  }
  .about-intro-tagline ._e {
    top: 0%;
    left: 32%;
    font-weight: 400;
    font-style: italic;
    font-size: 9vw;
  }
  .about-intro-tagline ._e .fio {
    border-bottom: 2px solid #fdb913;
    width: 30vw;
    right: 150%;
    top: 58%;
  }
  .about-intro-tagline ._trans,
  .about-intro-tagline ._formacao {
    font-size: 10.2vw;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
  }
  .about-intro-tagline ._trans {
    top: 0%;
    right: 7%;
    text-align: right;
  }
  .about-intro-tagline ._formacao {
    top: 45%;
    right: 7%;
    text-align: right;
  }
  .about-intro-tagline ._formacao br {
    display: none;
  }
}

.about-wedo-fio {
  margin-left: 1rem;
  margin-right: 0;
  margin-bottom: 1rem;
}

.about-wedo .about-wedo-linhas_de_negocio {
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-size: 1.668rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fdb913;
}

.about-wedo-linhas_de_negocio i {
  font-style: normal;
  font-weight: 200;
}

.about-wedo-lista .item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  line-height: 1.4;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

.about-wedo-lista .item:before {
  position: absolute;
  content: "•";
  left: 0;
}

.about-team {
  background-color: #fdb913;
  color: white;
  padding-bottom: 20rem;
  margin: 0;
}

.about-team-fio {
  margin-left: 0;
  margin-bottom: 1rem;
}

.about-team-fio.apis_stroke line,
.about-team-fio.apis_stroke path {
  stroke: white;
}

.about-team-fundo_1 {
  margin-bottom: -0.1rem;
}

.about-team-fundo_2 {
  width: 100%;
  margin-top: -0.1rem;
  z-index: -20;
}

.about-team-socios-title,
.about-team-equipe-title {
  font-weight: 200;
  text-transform: uppercase;
}

.about-team-socios-title strong,
.about-team-equipe-title strong {
  font-weight: 900;
}

.about-team-socios-lista .item,
.about-team-equipe-lista .item {
  display: inline;
}

/* Interação com a equipe */
.about-team-socios-lista,
.about-team-equipe-lista {
  margin-left: 2rem;
  margin-right: 2rem;
  word-break: break-all;
  text-align: justify;
  cursor: default;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.item._voce span {
  opacity: 0;
}

.about-team-socios-lista .item,
.about-team-equipe-lista .item {
  -webkit-touch-callout: none;
}

.about-team-equipe-lista .item:not(:first-child):before {
  content: " • ";
}

.about-team-socios-lista .item .bio,
.about-team-equipe-lista .item .bio {
  position: absolute;
  margin-left: 0;
  margin-top: 4rem;
  width: 75vw;
  max-width: 25em;
  word-break: normal;
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(2rem);
  transform: translateX(2rem);
  -webkit-filter: drop-shadow(0 2px 12px rgba(119, 46, 0, 0.5));
  filter: drop-shadow(0 2px 12px rgba(119, 46, 0, 0.5));
}

.about-team-socios-lista .item .bio {
  margin-top: 2.5rem;
}

.about-team-socios-lista .item .bio .nome,
.about-team-equipe-lista .item .bio .nome {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6em;
  font-style: normal;
  font-weight: 900;
}

.about-team-socios-lista:focus-within .item span,
.about-team-socios-lista:focus-within .item:before,
.about-team-socios-lista:hover .item span,
.about-team-socios-lista:hover .item:before,
.about-team-equipe-lista:focus-within .item span,
.about-team-equipe-lista:focus-within .item:before,
.about-team-equipe-lista:hover .item span,
.about-team-equipe-lista:hover .item:before {
  opacity: 0.1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.about-team-socios-lista:hover ~ .about-team-equipe-lista,
.about-team-socios-lista:hover ~ .about-team-equipe-title {
  opacity: 0.1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.about-team-socios-lista .item:focus span,
.about-team-socios-lista .item:focus:before,
.about-team-socios-lista .item:focus + .item:before,
.about-team-socios-lista:not(:focus-within) .item:hover span,
.about-team-socios-lista:not(:focus-within) .item:hover:before,
.about-team-socios-lista:not(:focus-within) .item:hover + .item:before,
.about-team-equipe-lista .item:focus span,
.about-team-equipe-lista .item:focus:before,
.about-team-equipe-lista .item:focus + .item:before,
.about-team-equipe-lista:not(:focus-within) .item:hover span,
.about-team-equipe-lista:not(:focus-within) .item:hover:before,
.about-team-equipe-lista:not(:focus-within) .item:hover + .item:before {
  position: relative;
  opacity: 1;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}

.about-team-socios-lista .item:focus .bio,
.about-team-socios-lista:not(:focus-within) .item:hover .bio,
.about-team-equipe-lista .item:focus .bio,
.about-team-equipe-lista:not(:focus-within) .item:hover .bio {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  z-index: 5;
}

.about-team-socios-lista .item:focus,
.about-team-equipe-lista .item:focus {
  outline: none;
  z-index: 10;
  background-color: #f3834d;
  -webkit-box-shadow: 0 0 0 0.5rem #f3834d;
  box-shadow: 0 0 0 0.5rem #f3834d;
  border-radius: 12px;
}

.about-colmeia {
  position: relative;
  margin-top: -10rem;
  padding-bottom: 20vw;
  z-index: 0;
}

.about-colmeia-title {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  margin-top: 5.5rem;
}

.about-colmeia-fio {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  position: relative;
  left: -45vw;
  margin-bottom: 1rem;
  z-index: 2;
}

.about-colmeia-fundo {
  z-index: -1;
  margin: 0;
  position: relative;
  -ms-grid-column: 1;
  -ms-grid-column-span: 8;
  grid-column: 1 / 9;
  -ms-grid-row: 3;
  grid-row: 3;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}

.about-colmeia-fundo img {
  position: absolute;
  bottom: 0;
  width: 13rem;
}

.about-colmeia-img {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  -ms-grid-row: 3;
  grid-row: 3;
  margin-bottom: 2rem;
  max-width: 100%;
  -webkit-box-shadow: 0px 4px 15px rgba(53, 32, 6, 0.25);
  box-shadow: 0px 4px 15px rgba(53, 32, 6, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.about-colmeia-img img {
  max-width: none;
  width: 100%;
}

.about-colmeia-texto {
  -ms-grid-column: 2;
  -ms-grid-column-span: 6;
  grid-column: 2 / 8;
  font-size: 1.1rem;
}

@supports (display: grid) {
  /*
	====================================
	Step 2 de responsividade 
	====================================
	*/
  @media screen and (min-width: 700px) {
    .header > *,
    .section > * {
      margin-left: 0;
      margin-right: 0;
    }
    .about-intro {
      -ms-grid-rows: 5rem auto 1fr 4rem auto 4rem;
      grid-template-rows: 5rem auto 1fr 4rem auto 4rem;
    }
    .about-intro-tagline {
      -ms-grid-column: 1;
      -ms-grid-column-span: 3;
      grid-column: 1 / 4;
      padding-bottom: 0;
      margin-bottom: 0;
      overflow: visible;
    }
    .about-intro-tagline._significado {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3;
    }
    .about-intro-tagline._transformacao {
      -ms-grid-row: 3;
      -ms-grid-row-span: 2;
      grid-row: 3 / 5;
      z-index: 5;
    }
    .about-intro-texto {
      -ms-grid-row: 2;
      -ms-grid-row-span: 2;
      grid-row: 2 / 4;
      -ms-grid-column: 4;
      -ms-grid-column-span: 4;
      grid-column: 4 / 8;
      margin: 0;
      margin-bottom: 2rem;
      font-weight: 300;
    }
    .about-intro-texto._final {
      -ms-grid-row: 5;
      grid-row: 5;
      -ms-grid-column: 3;
      -ms-grid-column-span: 5;
      grid-column: 3 / 8;
      -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
      margin-bottom: 0;
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.6;
    }
    .about-intro-fundo_final {
      background-color: #fffde3;
      grid-column: 1 / -1;
      -ms-grid-row: 4;
      -ms-grid-row-span: 3;
      grid-row: 4 / 7;
    }
    .about-wedo-title {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 2;
      -ms-grid-column-span: 4;
      grid-column: 2 / 6;
      margin-bottom: 0.5rem;
    }
    .about-wedo-fio,
    .about-team-fio,
    .about-colmeia-fio {
      -ms-grid-row: 1;
      grid-row: 1;
      grid-column: 2 / -1;
      -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
      margin-bottom: 0;
      margin-left: -1rem;
      position: relative;
      top: 0.5rem;
    }
    .about-wedo-texto._inicial {
      margin-top: 2rem;
    }
    .about-wedo-texto,
    .about-wedo-linhas_de_negocio,
    .about-wedo-lista {
      -ms-grid-column: 2;
      -ms-grid-column-span: 5;
      grid-column: 2 / 7;
      margin-bottom: 3rem;
    }
    .about-wedo-lista {
      -ms-grid-column: 2;
      -ms-grid-column-span: 6;
      grid-column: 2 / 8;
      -webkit-column-count: 2;
      column-count: 2;
    }
    .about-wedo-conteudo {
      -ms-grid-column: 2;
      -ms-grid-column-span: 5;
      grid-column: 2 / 7;
    }
    .about-team {
      padding-bottom: 5rem;
    }
    .about-team-title {
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
    }
    .about-team-fio {
      margin-left: 0;
      margin-right: -1rem;
      -ms-grid-row: 1;
      grid-row: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 3;
      grid-column: 1 / 4;
    }
    .about-team-texto {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
      padding-top: 2em;
    }
    .about-team-socios-title,
    .about-team-equipe-title {
      margin-top: 12rem;
      -ms-grid-column: 2;
      -ms-grid-column-span: 5;
      grid-column: 2 / 7;
    }
    .about-team-socios-lista,
    .about-team-equipe-lista {
      -ms-grid-column: 2;
      -ms-grid-column-span: 6;
      grid-column: 2 / 8;
    }
    .about-team-socios-lista {
      font-size: 4rem;
      line-height: 1.2;
    }
    .about-team-equipe-lista {
      font-size: 4rem;
      line-height: 1.2;
    }
    .about-team-socios-lista .item .bio,
    .about-team-equipe-lista .item .bio {
      margin-left: 2rem;
      width: 40vw;
    }
    .about-colmeia {
      margin-top: -50vw;
      padding-bottom: 0;
    }
    .about-colmeia-fio {
      left: 0;
      -ms-grid-column: 1;
      -ms-grid-column-span: 4;
      grid-column: 1 / 5;
      -ms-grid-row: 2;
      grid-row: 2;
      margin-right: -1rem;
    }
    .about-colmeia-fundo {
      -ms-grid-column: 1;
      -ms-grid-column-span: 8;
      grid-column: 1 / 9;
    }
    .about-colmeia-fundo img {
      width: 20rem;
    }
    .about-colmeia-img {
      margin-top: 2rem;
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
    }
    .about-colmeia-texto {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
      font-size: 1rem;
      padding-top: 1em;
    }
    .about-colmeia-title {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
      margin-top: 18em;
    }
  }
  /*
	====================================
	Step 3 de responsividade 
		Pequenos ajustes
	====================================
	*/
  @media screen and (min-width: 900px) {
    .about-intro-texto._final {
      -ms-grid-column: 4;
      -ms-grid-column-span: 4;
      grid-column: 4 / 8;
    }
    .about-intro-tagline._transformacao {
      -ms-grid-row: 3;
      -ms-grid-row-span: 4;
      grid-row: 3 / 7;
    }
  }
  @media screen and (min-width: 1000px) {
    .about-wedo-title,
    .about-wedo-fio,
    .about-wedo-texto,
    .about-wedo-linhas_de_negocio,
    .about-wedo-lista {
      -ms-grid-column: 3;
      -ms-grid-column-span: 4;
      grid-column: 3 / 7;
      margin-bottom: 3rem;
    }
    .about-wedo-lista {
      -ms-grid-column: 3;
      -ms-grid-column-span: 5;
      grid-column: 3 / 8;
    }
    .about-wedo-fio {
      grid-column: 3 / -1;
    }
    .about-team-equipe-lista {
      -ms-grid-column: 2;
      -ms-grid-column-span: 6;
      grid-column: 2 / 8;
    }
    .about-colmeia-fundo {
      -ms-grid-column: 1;
      -ms-grid-column-span: 3;
      grid-column: 1 / 4;
      -ms-grid-row: 1;
      -ms-grid-row-span: 4;
      grid-row: 1 / 5;
    }
    .about-colmeia-fundo img {
      width: 100%;
    }
    .about-colmeia-img {
      -ms-grid-column: 2;
      -ms-grid-column-span: 3;
      grid-column: 2 / 5;
      -ms-grid-row: 3;
      grid-row: 3;
      margin-top: -3em;
      margin-left: -1rem;
    }
    .about-colmeia-fio {
      -ms-grid-column: 1;
      -ms-grid-column-span: 5;
      grid-column: 1 / 6;
      z-index: -1;
    }
    .about-colmeia-texto {
      -ms-grid-column: 5;
      -ms-grid-column-span: 3;
      grid-column: 5 / 8;
      -ms-grid-row: 3;
      -ms-grid-row-span: 2;
      grid-row: 3 / 5;
      padding-top: 1em;
      font-size: inherit;
    }
    .about-colmeia-title {
      -ms-grid-column: 5;
      -ms-grid-column-span: 3;
      grid-column: 5 / 8;
      -ms-grid-row: 2;
      grid-row: 2;
      margin-top: 25em;
    }
  }
  /*
	====================================
	Step 4 de responsividade 
	====================================
	*/
  @media screen and (min-width: 1200px) {
    .about-intro {
      -ms-grid-rows: 5rem max-content max-content 5rem auto 5rem;
      grid-template-rows: 5rem -webkit-max-content -webkit-max-content 5rem auto 5rem;
      grid-template-rows: 5rem max-content max-content 5rem auto 5rem;
    }
    .about-intro-tagline {
      -ms-grid-column: 1;
      -ms-grid-column-span: 4;
      grid-column: 1 / 5;
      padding: 0;
    }
    .about-intro-tagline._significado {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3;
      margin-left: -1vw;
      margin-bottom: 0;
    }
    .about-intro-tagline._transformacao {
      -ms-grid-row: 3;
      -ms-grid-row-span: 2;
      grid-row: 3 / 5;
      margin: 0;
      text-align: left;
    }
    .about-intro-texto {
      -ms-grid-column: 5;
      -ms-grid-column-span: 2;
      grid-column: 5 / 7;
      -ms-grid-row: 2;
      -ms-grid-row-span: 3;
      grid-row: 2 / 5;
      font-weight: 300;
    }
    .about-intro ._final {
      -ms-grid-row: 5;
      -ms-grid-row-span: 1;
      grid-row: 5 / 6;
      -ms-grid-column: 4;
      -ms-grid-column-span: 4;
      grid-column: 4 / 8;
      text-align: left;
      font-size: 2rem;
      line-height: 1.4em;
      margin: 0;
    }
    .about-intro-fundo_final {
      background-color: #fffde3;
      grid-column: 1 / -1;
      -ms-grid-row: 4;
      -ms-grid-row-span: 3;
      grid-row: 4 / 7;
    }
    .about-team-socios-lista {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .about-team-socios-lista .item {
      width: 50%;
    }
    .about-colmeia-title {
      margin-top: 35em;
    }
  }
  /*
	====================================
	Step 5 de responsividade 
	====================================
	*/
  @media screen and (min-width: 1500px) {
    .about-intro {
      -ms-grid-rows: 10rem auto auto 5rem auto 5rem;
      grid-template-rows: 10rem auto auto 5rem auto 5rem;
    }
    .about-intro-tagline._significado {
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / 3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3;
      margin-left: -1vw;
    }
    .about-intro-tagline._transformacao {
      -ms-grid-column: 6;
      -ms-grid-column-span: 3;
      grid-column: 6 / 9;
      -ms-grid-row: 2;
      -ms-grid-row-span: 4;
      grid-row: 2 / 6;
      z-index: 5;
      position: relative;
      text-align: left;
      margin: 0;
      left: 5vw;
      bottom: 2vw;
    }
    .about-intro-texto {
      -ms-grid-column: 4;
      -ms-grid-column-span: 2;
      grid-column: 4 / 6;
      font-size: 1.5rem;
      -ms-grid-row: 2;
      grid-row: 2;
    }
    .about-intro ._final {
      -ms-grid-row: 5;
      grid-row: 5;
      -ms-grid-column: 3;
      -ms-grid-column-span: 3;
      grid-column: 3 / 6;
      font-size: 2rem;
      line-height: 1.4em;
      margin: 0;
    }
    .about-intro-fundo_final {
      grid-column: 1 / -1;
      -ms-grid-row: 4;
      -ms-grid-row-span: 3;
      grid-row: 4 / 7;
    }
    .about-colmeia-title {
      -ms-grid-column: 5;
      -ms-grid-column-span: 2;
      grid-column: 5 / 7;
      margin-top: 40em;
    }
    .about-colmeia-fio {
      -ms-grid-column: 1;
      -ms-grid-column-span: 5;
      grid-column: 1 / 6;
    }
    .about-colmeia-texto {
      -ms-grid-column: 5;
      -ms-grid-column-span: 2;
      grid-column: 5 / 7;
    }
    .about-colmeia-img {
      -ms-grid-column: 2;
      -ms-grid-column-span: 3;
      grid-column: 2 / 5;
      margin-top: -7em;
    }
  }
}

/*
====================================
Manifesto
====================================
*/
.manifesto {
  background-color: #fdb913;
  margin-top: 5px;
  padding-bottom: 8rem;
}

.manifesto-intro-tagline {
  font-size: 4rem;
  font-weight: bold;
  color: #f58245;
}

.manifesto-intro-texto {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
}

@media screen and (max-width: 320px) {
  .manifesto-intro-tagline {
    font-size: 3rem;
  }
}

@media screen and (min-width: 700px) {
  .manifesto-intro-tagline {
    -ms-grid-column: 3;
    -ms-grid-column-span: 4;
    grid-column: 3 / 7;
    font-size: 4.3rem;
  }
  .manifesto-intro-texto {
    -ms-grid-column: 3;
    -ms-grid-column-span: 4;
    grid-column: 3 / 7;
    font-size: 1.5rem;
  }
}

/*
====================================
Compliance
====================================
*/

.compliance-intro-tagline {
  grid-row: 1;
  grid-column: 3;
}

.compliance-intro-texto {
  grid-row: 2;
  grid-column: 3 / 7;
}

/*
====================================
OVERRIDES

TODO: Limpar
====================================
*/
.home .intro-footer_1 {
  background-color: #333;
}

.nossosclientes {
  padding-top: 0;
}

.nossosclientes-titulo {
  padding-top: 4rem;
  margin-bottom: 2rem;
}

.nossosclientes-item:nth-child(even) {
  top: 12em;
}

.nossosclientes-item {
  height: 11em;
}

@media (min-width: 1000px) {
  .nossosclientes-titulo {
    padding-top: 0;
  }
  .nossosclientes-titulo,
  .nossosclientes-container {
    position: relative;
    top: 3rem;
  }
}

.header-navegacao {
  position: relative;
  top: 0.5rem;
}

.single-projeto article {
  overflow: hidden;
}

.single-projeto .header {
  position: absolute;
  width: 100%;
}

.projeto-content > p,
.projeto-header {
  background: none;
  color: #fff;
}

.projeto-meta-item .content {
  color: #fff;
}

.projeto-meta-item .titulo {
  color: #ccc;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
  margin-top: 2rem;
}

.projeto-content figure {
  border-radius: 5px;
  overflow: hidden;
}

.projeto-capa {
  padding-top: 12rem;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.projeto-capa .gradiente {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.2)),
    color-stop(40%, transparent)
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    transparent 40%
  );
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1000px) {
  .projeto-capa {
    padding-top: 0;
  }
}

/*
====================================
AJUSTES NOVOS DO SITE
====================================
*/
.footer-siganos {
  -ms-grid-row: 3;
  grid-row: 3;
  margin-bottom: 4rem;
}

.footer-bg {
  -ms-grid-row: 4;
  -ms-grid-row-span: 4;
  grid-row: 4 / 8;
}

.contato-info {
  margin-bottom: 3rem;
}

@media (min-width: 1000px) {
  .contato-form {
    display: none;
  }
  .footer-bar:before {
    content: "";
    position: absolute;
    background-color: #f58245;
    width: 100%;
    height: 15rem;
    top: 0;
    left: 0;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: skewY(-5deg);
    transform: skewY(-5deg);
  }
  .footer-bar {
    position: relative;
    overflow: visible;
    padding-top: 10rem;
    height: 100%;
  }
  .contato-info {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .footer-nav {
    position: relative;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .footer-siganos {
    -ms-grid-row: 3;
    grid-row: 3;
  }
  .footer-abedesign {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .footer-logo {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .footer-bg {
    -ms-grid-row: 1;
    -ms-grid-row-span: 8;
    grid-row: 1 / 9;
  }
  .footer-bg svg {
    height: 100%;
  }
}

/*
====================================
TRANSIÇÃO LAZYLOAD
====================================
*/
img[data-lazy-src].lazyloaded {
  -webkit-animation: 1s lazyloadFadein;
  animation: 1s lazyloadFadein;
}

@-webkit-keyframes lazyloadFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lazyloadFadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
====================================
EU TRANSFORMO
====================================
*/

.eu-transformo-intro-tagline {
  font-weight: 800;
  font-size: 2rem;

  grid-column: 3 / 7;
}

.eu-transformo-intro-texto {
  grid-column: 3 / 7;
}

/*
====================================
UTILITÁRIOS
====================================
*/
.ocultar-visualmente {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */
