@charset "UTF-8";
.goleft {
  -webkit-animation: 8s ease-in-out 0s infinite alternate goleft;
          animation: 8s ease-in-out 0s infinite alternate goleft;
}

@-webkit-keyframes goleft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes goleft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.pulse {
  -webkit-animation: 4s ease-in-out 0s infinite alternate pulse;
          animation: 4s ease-in-out 0s infinite alternate pulse;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.pulse2 {
  -webkit-animation: 1s ease-in-out 0s infinite alternate pulse;
          animation: 1s ease-in-out 0s infinite alternate pulse;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes pulse2 {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.gira {
  -webkit-animation: gira 15s infinite linear;
          animation: gira 15s infinite linear;
}
.gira.v2 {
  -webkit-animation: gira 20s infinite linear;
          animation: gira 20s infinite linear;
}

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

@keyframes gira {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.vira {
  -webkit-animation: 8s ease-in-out 0s infinite alternate vira;
          animation: 8s ease-in-out 0s infinite alternate vira;
}

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

@keyframes vira {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
}
.vira2 {
  -webkit-animation: 3s ease-in-out 0s infinite alternate vira2;
          animation: 3s ease-in-out 0s infinite alternate vira2;
}

@-webkit-keyframes vira2 {
  0% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  100% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
}

@keyframes vira2 {
  0% {
    -webkit-transform: rotate(-2.5deg);
            transform: rotate(-2.5deg);
  }
  100% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
}
.vira3 {
  -webkit-animation: 2s ease-in-out 0s infinite alternate vira3;
          animation: 2s ease-in-out 0s infinite alternate vira3;
}

@-webkit-keyframes vira3 {
  0% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}

@keyframes vira3 {
  0% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

strong, b {
  font-weight: bold;
}

em {
  font-style: italic;
}

[v-cloak] > * {
  display: none;
}

[v-cloak]::before {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #898989;
  content: "carregando…";
  z-index: 9999999;
  top: 0;
  left: 0;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 42px;
  z-index: 1000;
  color: #ffffff;
}

.bloco-404 {
  text-align: center;
}
.bloco-404 h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1em;
}
.bloco-404 p {
  font-style: italic;
}

.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

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

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2em;
}

html, body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #09374C;
  background-color: #fff;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 72.5%;
  /* Sets up the Base 10 stuff */
}
@media screen and (max-width: 2000px) {
  html {
    font-size: 66.5%;
  }
}
@media screen and (max-width: 1700px) {
  html {
    font-size: 64.5%;
  }
}
@media screen and (max-width: 1500px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

body {
  height: auto;
}

:target:before {
  content: "";
  display: block;
  height: 60px;
  /* fixed header height*/
  margin: -60px 0 0;
  /* negative fixed header height */
}
a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background-color: #09374C;
  color: #fff;
  padding: 4px 8px;
  z-index: 10000;
  font-size: 12px;
  font-size: 1.2rem;
}
.skip-link:focus {
  top: 0;
}

.section,
nav,
section,
header,
footer {
  width: 100%;
  height: auto;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
}
.section.telacheia,
nav.telacheia,
section.telacheia,
header.telacheia,
footer.telacheia {
  width: 100%;
  height: 100vh;
}
.section .container,
nav .container,
section .container,
header .container,
footer .container {
  width: 100%;
  margin: 0 auto;
  padding-left: 9vw;
  padding-right: 9vw;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .section .container,
nav .container,
section .container,
header .container,
footer .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}

.visually-hidden, .lista-equipe .membro-equipe .minibio, .atuacao-produtos-info {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}

.hide {
  display: none !important;
}

.hidestrong {
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: -1;
}

.invisivel {
  visibility: hidden;
  z-index: -1;
  position: relative;
}

.desk {
  display: block !important;
}
@media screen and (max-width: 576px) {
  .desk {
    display: none !important;
  }
}

.resp {
  display: none !important;
}
@media screen and (max-width: 576px) {
  .resp {
    display: block !important;
  }
}

.break {
  display: inline-block;
  width: 100%;
  height: 0;
}

.flexbox .flexcentro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/********** TAMANHOS DOS TEXTOS *********/
.dest_70 {
  font-size: 70px;
  font-size: 7rem;
  font-size: clamp(3.15rem, 3.4239130435vw + -0.2739130435rem, 6.3rem);
  line-height: 1.2;
}

.dest_60 {
  font-size: 60px;
  font-size: 6rem;
  font-size: clamp(2.7rem, 2.9347826087vw + -0.2347826087rem, 5.4rem);
  line-height: 1.2;
}

.dest_50 {
  font-size: 50px;
  font-size: 5rem;
  font-size: clamp(2.16rem, 2.5434782609vw + -0.3834782609rem, 4.5rem);
  line-height: 1.2;
}

.dest_45, .atuacao-produtos-nav .produto-card .info-produto small {
  font-size: 40px;
  font-size: 4rem;
  font-size: clamp(1.98rem, 2.152173913vw + -0.172173913rem, 3.96rem);
}

.dest_40 {
  font-size: 40px;
  font-size: 4rem;
  font-size: clamp(1.8rem, 1.9565217391vw + -0.1565217391rem, 3.6rem);
}
@media screen and (max-width: 575px) {
  .dest_40 {
    font-size: 22px;
  }
}

.dest_35 {
  font-size: 35px;
  font-size: 3.5rem;
  font-size: clamp(1.62rem, 1.6630434783vw + -0.0430434783rem, 3.15rem);
}
@media screen and (max-width: 575px) {
  .dest_35 {
    font-size: 20px;
  }
}

.dest_30 {
  font-size: 30px;
  font-size: 3rem;
  font-size: clamp(1.44rem, 1.3695652174vw + 0.0704347826rem, 2.7rem);
}
@media screen and (max-width: 575px) {
  .dest_30 {
    font-size: 18px;
  }
}

.txt_28 {
  font-size: 28px;
  font-size: 2.8rem;
  font-size: clamp(1.35rem, 1.2717391304vw + 0.0782608696rem, 2.52rem);
}
@media screen and (max-width: 575px) {
  .txt_28 {
    font-size: 16px;
  }
}

.txt_24 {
  font-size: 24px;
  font-size: 2.4rem;
  font-size: clamp(1.26rem, 0.9782608696vw + 0.2817391304rem, 2.16rem);
}
@media screen and (max-width: 575px) {
  .txt_24 {
    font-size: 15px;
  }
}

.txt_22 {
  font-size: 20px;
  font-size: 2rem;
  font-size: clamp(1.17rem, 0.8804347826vw + 0.2895652174rem, 1.98rem);
}
@media screen and (max-width: 575px) {
  .txt_22 {
    font-size: 15px;
  }
}

.txt_20 {
  font-size: 20px;
  font-size: 2rem;
  font-size: clamp(1.08rem, 0.7826086957vw + 0.2973913043rem, 1.8rem);
}
@media screen and (max-width: 575px) {
  .txt_20 {
    font-size: 14px;
  }
}

.txt_18, .atuacao-produtos-nav .produto-card .info-produto h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-size: clamp(1.08rem, 0.5869565217vw + 0.4930434783rem, 1.62rem);
}
@media screen and (max-width: 575px) {
  .txt_18, .atuacao-produtos-nav .produto-card .info-produto h3 {
    font-size: 14px;
  }
}

.txt_16 {
  font-size: 16px;
  font-size: 1.6rem;
  font-size: clamp(0.9rem, 0.5869565217vw + 0.3130434783rem, 1.44rem);
}
@media screen and (max-width: 575px) {
  .txt_16 {
    font-size: 13px;
  }
}

.txt_15 {
  font-size: 15px;
  font-size: 1.5rem;
  font-size: clamp(0.9rem, 0.5869565217vw + 0.3130434783rem, 1.44rem);
}

.txt_14 {
  font-size: 14px;
  font-size: 1.4rem;
  font-size: clamp(0.9rem, 0.3913043478vw + 0.5086956522rem, 1.26rem);
}

/*****************************************************
ESTRUTURA BÁSICA
*****************************************************/
.layout-flex, .lf {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.layout-flex.ais, .lf.ais {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.layout-flex.aic, .lf.aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.layout-flex.aifs, .lf.aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.layout-flex.aife, .lf.aife {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.layout-flex.jcsb, .lf.jcsb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.layout-flex.jcsa, .lf.jcsa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.layout-flex.jcfs, .lf.jcfs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.layout-flex.jcfe, .lf.jcfe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.layout-flex .full, .lf .full {
  width: 100% !important;
}
.layout-flex .taj, .lf .taj {
  text-align: justify;
}
.layout-flex .tac, .lf .tac {
  text-align: center;
}

.bloco-imagem img {
  width: 100%;
  display: block;
}

.coluna-1 {
  width: 5.4583333333vw;
}
@media screen and (max-width: 576px) {
  .coluna-1 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-1 {
  padding-left: 6.9583333333vw;
}
@media screen and (max-width: 576px) {
  .xlp-1 {
    padding-left: 0;
  }
}

.xrp-1 {
  padding-right: 6.9583333333vw;
}
@media screen and (max-width: 576px) {
  .xrp-1 {
    padding-right: 0;
  }
}

.coluna-2 {
  width: 12.4166666667vw;
}
@media screen and (max-width: 576px) {
  .coluna-2 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-2 {
  padding-left: 13.9166666667vw;
}
@media screen and (max-width: 576px) {
  .xlp-2 {
    padding-left: 0;
  }
}

.xrp-2 {
  padding-right: 13.9166666667vw;
}
@media screen and (max-width: 576px) {
  .xrp-2 {
    padding-right: 0;
  }
}

.coluna-3 {
  width: 19.375vw;
}
@media screen and (max-width: 576px) {
  .coluna-3 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-3 {
  padding-left: 20.875vw;
}
@media screen and (max-width: 576px) {
  .xlp-3 {
    padding-left: 0;
  }
}

.xrp-3 {
  padding-right: 20.875vw;
}
@media screen and (max-width: 576px) {
  .xrp-3 {
    padding-right: 0;
  }
}

.coluna-4 {
  width: 26.3333333333vw;
}
@media screen and (max-width: 576px) {
  .coluna-4 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-4 {
  padding-left: 27.8333333333vw;
}
@media screen and (max-width: 576px) {
  .xlp-4 {
    padding-left: 0;
  }
}

.xrp-4 {
  padding-right: 27.8333333333vw;
}
@media screen and (max-width: 576px) {
  .xrp-4 {
    padding-right: 0;
  }
}

.coluna-5 {
  width: 33.2916666667vw;
}
@media screen and (max-width: 576px) {
  .coluna-5 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-5 {
  padding-left: 34.7916666667vw;
}
@media screen and (max-width: 576px) {
  .xlp-5 {
    padding-left: 0;
  }
}

.xrp-5 {
  padding-right: 34.7916666667vw;
}
@media screen and (max-width: 576px) {
  .xrp-5 {
    padding-right: 0;
  }
}

.coluna-6 {
  width: 40.25vw;
}
@media screen and (max-width: 576px) {
  .coluna-6 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-6 {
  padding-left: 41.75vw;
}
@media screen and (max-width: 576px) {
  .xlp-6 {
    padding-left: 0;
  }
}

.xrp-6 {
  padding-right: 41.75vw;
}
@media screen and (max-width: 576px) {
  .xrp-6 {
    padding-right: 0;
  }
}

.coluna-7 {
  width: 47.2083333333vw;
}
@media screen and (max-width: 576px) {
  .coluna-7 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-7 {
  padding-left: 48.7083333333vw;
}
@media screen and (max-width: 576px) {
  .xlp-7 {
    padding-left: 0;
  }
}

.xrp-7 {
  padding-right: 48.7083333333vw;
}
@media screen and (max-width: 576px) {
  .xrp-7 {
    padding-right: 0;
  }
}

.coluna-8 {
  width: 54.1666666667vw;
}
@media screen and (max-width: 576px) {
  .coluna-8 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-8 {
  padding-left: 55.6666666667vw;
}
@media screen and (max-width: 576px) {
  .xlp-8 {
    padding-left: 0;
  }
}

.xrp-8 {
  padding-right: 55.6666666667vw;
}
@media screen and (max-width: 576px) {
  .xrp-8 {
    padding-right: 0;
  }
}

.coluna-9 {
  width: 61.125vw;
}
@media screen and (max-width: 576px) {
  .coluna-9 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-9 {
  padding-left: 62.625vw;
}
@media screen and (max-width: 576px) {
  .xlp-9 {
    padding-left: 0;
  }
}

.xrp-9 {
  padding-right: 62.625vw;
}
@media screen and (max-width: 576px) {
  .xrp-9 {
    padding-right: 0;
  }
}

.coluna-10 {
  width: 68.0833333333vw;
}
@media screen and (max-width: 576px) {
  .coluna-10 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-10 {
  padding-left: 69.5833333333vw;
}
@media screen and (max-width: 576px) {
  .xlp-10 {
    padding-left: 0;
  }
}

.xrp-10 {
  padding-right: 69.5833333333vw;
}
@media screen and (max-width: 576px) {
  .xrp-10 {
    padding-right: 0;
  }
}

.coluna-11 {
  width: 75.0416666667vw;
}
@media screen and (max-width: 576px) {
  .coluna-11 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-11 {
  padding-left: 76.5416666667vw;
}
@media screen and (max-width: 576px) {
  .xlp-11 {
    padding-left: 0;
  }
}

.xrp-11 {
  padding-right: 76.5416666667vw;
}
@media screen and (max-width: 576px) {
  .xrp-11 {
    padding-right: 0;
  }
}

.coluna-12 {
  width: 82vw;
}
@media screen and (max-width: 576px) {
  .coluna-12 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-12 {
  padding-left: 83.5vw;
}
@media screen and (max-width: 576px) {
  .xlp-12 {
    padding-left: 0;
  }
}

.xrp-12 {
  padding-right: 83.5vw;
}
@media screen and (max-width: 576px) {
  .xrp-12 {
    padding-right: 0;
  }
}

.coluna-13 {
  width: 88.9583333333vw;
}
@media screen and (max-width: 576px) {
  .coluna-13 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-13 {
  padding-left: 90.4583333333vw;
}
@media screen and (max-width: 576px) {
  .xlp-13 {
    padding-left: 0;
  }
}

.xrp-13 {
  padding-right: 90.4583333333vw;
}
@media screen and (max-width: 576px) {
  .xrp-13 {
    padding-right: 0;
  }
}

.coluna-14 {
  width: 95.9166666667vw;
}
@media screen and (max-width: 576px) {
  .coluna-14 {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}

.xlp-14 {
  padding-left: 97.4166666667vw;
}
@media screen and (max-width: 576px) {
  .xlp-14 {
    padding-left: 0;
  }
}

.xrp-14 {
  padding-right: 97.4166666667vw;
}
@media screen and (max-width: 576px) {
  .xrp-14 {
    padding-right: 0;
  }
}

.config-texto {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 200;
}
.config-texto.maior {
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1500px) {
  .config-texto.maior {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1250px) {
  .config-texto.maior {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .config-texto.maior {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.config-texto p {
  margin-bottom: 1em;
}
.config-texto p:last-of-type {
  margin-bottom: 0;
}
.config-texto ul {
  list-style-type: disc;
  padding-left: 15px;
}
.config-texto ul li {
  margin-bottom: 5px;
}
.config-texto img {
  max-width: 100%;
  height: auto;
}
.config-texto .post-galeria {
  list-style-type: none;
}
.config-texto a {
  font-weight: bold;
  text-decoration: underline;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.mb5 {
  margin-bottom: 5rem;
}

.mb6 {
  margin-bottom: 6rem;
}

.mb7 {
  margin-bottom: 7rem;
}

.mb8 {
  margin-bottom: 8rem;
}

.mb9 {
  margin-bottom: 9rem;
}

.mb10 {
  margin-bottom: 10rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem;
}

.mt3 {
  margin-top: 3rem;
}

.mt4 {
  margin-top: 4rem;
}

.mt5 {
  margin-top: 5rem;
}

.mt6 {
  margin-top: 6rem;
}

.mt7 {
  margin-top: 7rem;
}

.mt8 {
  margin-top: 8rem;
}

.mt9 {
  margin-top: 9rem;
}

.mt10 {
  margin-top: 10rem;
}

.verdeclaro {
  color: #03DDD5;
}

.verdetxt {
  color: #1A8480;
}

.verde {
  color: #22AA4B;
}

.azuldark {
  color: #09374C;
}

.amarelo {
  color: #F3DD80;
}

.branco {
  color: #fff;
}

.titulo-dest {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 1099px) {
  .titulo-dest {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.titulo-dest.menor {
  font-size: 45px;
  font-size: 4.5rem;
}
@media screen and (max-width: 1099px) {
  .titulo-dest.menor {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.titulo-dest.mlh {
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: -1.5px;
  line-height: 1;
}
@media screen and (max-width: 1099px) {
  .titulo-dest.mlh {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.titulo-dest.sub {
  font-size: 36px;
  font-size: 3.6rem;
}
@media screen and (max-width: 1099px) {
  .titulo-dest.sub {
    font-size: 20px;
    font-size: 2rem;
  }
}

.ttu {
  text-transform: uppercase;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.secao-desc {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1099px) {
  .secao-desc {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.secao-desc.menor {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1099px) {
  .secao-desc.menor {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.botao, body #cookie-notice .cn-buttons-container .cn-button {
  display: inline-block;
  padding: 0 2rem;
  height: auto;
  border: 0.3rem solid #09374C;
  color: #09374C;
  line-height: 3.6rem;
  background-color: #fff;
  border-radius: 5rem;
  text-transform: uppercase;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
}
@media screen and (max-width: 1099px) {
  .botao, body #cookie-notice .cn-buttons-container .cn-button {
    font-size: 8px;
    font-size: 0.8rem;
  }
}
.botao small, body #cookie-notice .cn-buttons-container .cn-button small {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.botao:hover, body #cookie-notice .cn-buttons-container .cn-button:hover {
  background-color: #09374C;
  border: 0.3rem solid #fff;
  color: #fff;
}
.botao.saibamais, body #cookie-notice .cn-buttons-container .saibamais.cn-button {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 4rem;
  position: relative;
  min-width: 18rem;
}
@media screen and (max-width: 1099px) {
  .botao.saibamais, body #cookie-notice .cn-buttons-container .saibamais.cn-button {
    height: auto;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 2.5rem;
    min-width: 11rem;
  }
}
.botao.saibamais .dot-l, body #cookie-notice .cn-buttons-container .saibamais.cn-button .dot-l {
  height: 1rem;
  width: 1rem;
  border: 2px solid #09374C;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  left: 1.5rem;
}
@media screen and (max-width: 1099px) {
  .botao.saibamais .dot-l, body #cookie-notice .cn-buttons-container .saibamais.cn-button .dot-l {
    left: 0.5rem;
  }
}
.botao.saibamais .dot-r, body #cookie-notice .cn-buttons-container .saibamais.cn-button .dot-r {
  height: 1rem;
  width: 1rem;
  border: 2px solid #09374C;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  right: 1.5rem;
}
@media screen and (max-width: 1099px) {
  .botao.saibamais .dot-r, body #cookie-notice .cn-buttons-container .saibamais.cn-button .dot-r {
    right: 0.5rem;
  }
}
.botao.saibamais:hover .dot-l, body #cookie-notice .cn-buttons-container .saibamais.cn-button:hover .dot-l, .botao.saibamais:hover .dot-r, body #cookie-notice .cn-buttons-container .saibamais.cn-button:hover .dot-r {
  border: 2px solid #fff;
}
.botao.saibamaior, body #cookie-notice .cn-buttons-container .saibamaior.cn-button {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 3;
  padding: 0 6rem;
  position: relative;
  min-width: 20rem;
}
@media screen and (max-width: 1099px) {
  .botao.saibamaior, body #cookie-notice .cn-buttons-container .saibamaior.cn-button {
    height: auto;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 2.5rem;
    min-width: 11rem;
  }
}
.botao.saibamaior .dot-l, body #cookie-notice .cn-buttons-container .saibamaior.cn-button .dot-l {
  height: 1rem;
  width: 1rem;
  border: 2px solid #09374C;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  left: 1.5rem;
}
@media screen and (max-width: 1099px) {
  .botao.saibamaior .dot-l, body #cookie-notice .cn-buttons-container .saibamaior.cn-button .dot-l {
    left: 0.5rem;
  }
}
.botao.saibamaior .dot-r, body #cookie-notice .cn-buttons-container .saibamaior.cn-button .dot-r {
  height: 1rem;
  width: 1rem;
  border: 2px solid #09374C;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  margin-top: -0.5rem;
  right: 1.5rem;
}
@media screen and (max-width: 1099px) {
  .botao.saibamaior .dot-r, body #cookie-notice .cn-buttons-container .saibamaior.cn-button .dot-r {
    right: 0.5rem;
  }
}
.botao.saibamaior:hover .dot-l, body #cookie-notice .cn-buttons-container .saibamaior.cn-button:hover .dot-l, .botao.saibamaior:hover .dot-r, body #cookie-notice .cn-buttons-container .saibamaior.cn-button:hover .dot-r {
  border: 2px solid #fff;
}

.go-topo {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  background-color: #F3DD80;
  text-align: center;
  padding: 2rem;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: #09374C;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 599px) {
  .go-topo {
    display: none;
  }
}
.go-topo img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: block;
  margin: 0 auto;
  height: 2.2rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: inline-block;
  width: auto;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5rem;
}
.breadcrumb span {
  display: inline-block;
  margin: 0 5px;
}
.breadcrumb .ativo {
  font-weight: bold;
}
.breadcrumb li {
  display: inline-block;
  vertical-align: middle;
}
.breadcrumb.fbranco {
  color: #09374C;
}

.section-header {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 2rem 0;
  z-index: 8000;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  color: #09374C;
}
@media screen and (max-width: 1099px) {
  .section-header {
    display: none;
  }
}
.section-header.fixo {
  position: fixed;
  top: 0;
  left: 0;
}
.section-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-header .header-logo {
  display: block;
}
.section-header .header-logo img {
  display: block;
  height: 8rem;
}
.section-header .header-menu-lista {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: #1A8480;
  font-size: 18px;
  font-size: 1.8rem;
}
.section-header .header-menu-lista li {
  margin-right: 2.25rem;
}
.section-header .header-menu-lista a:hover, .section-header .header-menu-lista a.ativo {
  border-bottom: 2px solid #09374C;
}
.section-header .header-aux-lista {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
}
.section-header .header-aux-lista li {
  margin-left: 0.75rem;
}
.section-header .header-aux-lista .fsizer {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 900;
  color: #09374C;
}
.section-header .header-aux-lista .realce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  vertical-align: middle;
  line-height: 1.4;
  margin-right: 10px;
}
.section-header .header-aux-lista .realce img {
  display: block;
  width: 3rem;
  margin-right: 10px;
}
.section-header .header-aux-lista .realce span {
  line-height: 1.4;
  font-size: 13px;
  font-size: 1.3rem;
}
.section-header .header-aux-lista .social {
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 4.4rem;
  background-color: #09374C;
  color: #03DDD5;
  border-radius: 5rem;
  font-size: 16px;
  font-size: 1.6rem;
}
.section-header .header-burger {
  display: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}
@media screen and (max-width: 576px) {
  .section-header {
    padding: 20px 10px;
    min-height: 0;
  }
  .section-header .header-logo img {
    max-height: 32px;
  }
  .section-header .header-esquerda {
    display: none;
  }
  .section-header .header-burger {
    display: block;
  }
  .section-header.ativo {
    width: 100%;
    min-height: 100%;
    background-color: #000;
  }
  .section-header.ativo .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-header.ativo .header-esquerda {
    display: block;
    width: 100%;
  }
  .section-header.ativo .header-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 60px;
  }
  .section-header.ativo .header-menu li {
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.section-header-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
}
@media screen and (max-width: 1099px) {
  .section-header-mobile {
    display: block;
  }
}
.section-header-mobile .menu-mobile-topo {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 2rem 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-header-mobile .menu-mobile-topo .whatsapp img {
  display: block;
  height: 4rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .section-header-mobile .menu-mobile-topo {
    padding: 1rem 6vw;
  }
  .section-header-mobile .menu-mobile-topo .whatsapp img {
    height: 2.6rem;
  }
}
@media screen and (max-width: 1099px) {
  .section-header-mobile {
    display: block;
  }
}
.section-header-mobile .menu-mobile-aberto {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #09374C;
  color: #fff;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  overflow: auto;
}
.section-header-mobile .menu-mobile-aberto .inside-menu-mobile {
  padding: 2rem 6vw;
  padding-bottom: 6rem;
}
.section-header-mobile .link-home {
  display: block;
  padding-top: 5rem;
}
.section-header-mobile .link-home img {
  width: 65%;
  max-width: 240px;
}
.section-header-mobile .header-menu {
  padding-top: 2.5rem;
}
.section-header-mobile .header-menu li {
  font-size: 24px;
  font-size: 2.4rem;
  color: #03DDD5;
  font-weight: bold;
  margin-top: 0.5rem;
}
.section-header-mobile .header-menu li.sub {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  padding-left: 2rem;
  color: #fff;
  margin-bottom: 5px;
}
.section-header-mobile .header-social {
  padding-top: 5rem;
}
.section-header-mobile .header-social .stitulo {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #F3DD80;
  margin-bottom: 1rem;
}
.section-header-mobile .header-social img {
  display: block;
  height: 4rem;
}
.section-header-mobile .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section-header-mobile .redes .social {
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 4.4rem;
  background-color: #fff;
  color: #03DDD5;
  border-radius: 5rem;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 2rem;
}
.section-header-mobile .abre-menu {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .section-header-mobile .abre-menu {
    width: 20px;
    height: 12px;
  }
}
.section-header-mobile .abre-menu span {
  width: 100%;
  height: 2px;
  background-color: #09374C;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-indent: -99999px;
}
.section-header-mobile .abre-menu.azul span {
  background-color: #fff;
}
.section-header-mobile .abre-menu .li1 {
  position: absolute;
  top: 0;
  left: 0;
}
.section-header-mobile .abre-menu .li2 {
  position: absolute;
  top: 50%;
  left: 0;
}
.section-header-mobile .abre-menu .li3 {
  position: absolute;
  top: 100%;
  left: 0;
}
.section-header-mobile .abre-menu.ativo .li2 {
  opacity: 0;
}
.section-header-mobile .abre-menu.ativo .li1 {
  top: 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section-header-mobile .abre-menu.ativo .li3 {
  top: 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.section-header-mobile.ativo .menu-mobile-aberto {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.section-header-mobile.ativo .abre-menu .li2 {
  opacity: 0;
}
.section-header-mobile.ativo .abre-menu .li1 {
  top: 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section-header-mobile.ativo .abre-menu .li3 {
  top: 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.hideti {
  display: none !important;
  opacity: 0 !important;
  text-indent: -9999px !important;
}

.chamada-whatsapp {
  width: auto;
  height: 10rem;
  padding: 2rem;
  padding-right: 4rem;
  font-size: 60px;
  font-size: 6rem;
  background-color: #F3DD80;
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  position: fixed;
  top: 50%;
  margin-top: -5rem;
  right: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.chamada-whatsapp img {
  height: 5rem;
}
@media screen and (max-width: 1099px) {
  .chamada-whatsapp {
    display: none;
  }
}

.dialogo-cookie-controle {
  width: 380px;
  height: auto;
  background-color: #F3DD80;
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 9000;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate3d(200%, 0, 0);
          transform: translate3d(200%, 0, 0);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .dialogo-cookie-controle {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  .dialogo-cookie-controle {
    width: 100%;
    bottom: 0;
    -webkit-transform: translate3d(0, 200%, 0);
            transform: translate3d(0, 200%, 0);
  }
}
.dialogo-cookie-controle.ativo {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.dialogo-cookie-controle .ilustra {
  width: 9vw;
  position: absolute;
  top: -4rem;
  right: -4px;
}
@media screen and (max-width: 599px) {
  .dialogo-cookie-controle .ilustra {
    width: 35%;
  }
}
.dialogo-cookie-controle h3 {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.dialogo-cookie-controle .botao, .dialogo-cookie-controle body #cookie-notice .cn-buttons-container .cn-button, body #cookie-notice .cn-buttons-container .dialogo-cookie-controle .cn-button {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.dialogo-cookie-controle .inside {
  padding: 3rem;
}
.dialogo-cookie-controle .links {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
}
.dialogo-cookie-controle .links a {
  text-decoration: underline;
}
.dialogo-cookie-controle .links a:first-of-type {
  margin-right: 10px;
}

body #cookie-notice {
  width: 380px;
  min-width: 0;
  height: auto;
  background-color: #F3DD80 !important;
  position: fixed;
  bottom: 50px;
  left: auto;
  right: 0;
  z-index: 9000;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  body #cookie-notice {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  body #cookie-notice {
    width: 100%;
    bottom: 0;
  }
}
body #cookie-notice.cookie-notice-hidden {
  display: none;
}
body #cookie-notice .cookie-notice-container {
  color: #09374C !important;
  text-align: left;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  position: relative;
  padding: 0;
}
body #cookie-notice .cn-text-container {
  display: block;
  margin-bottom: 0;
}
body #cookie-notice .cn-text-container .links {
  padding-top: 7rem;
}
body #cookie-notice .cn-buttons-container {
  display: block;
  margin: 0;
  margin-top: 10px;
  position: absolute;
  bottom: 1.5rem;
  left: 0;
}
body #cookie-notice .cn-buttons-container .cn-button {
  margin: 0;
}
@media screen and (max-width: 599px) {
  body #cookie-notice .cn-buttons-container .cn-button {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
body #cookie-notice .cn-close-icon {
  position: absolute;
  top: -1rem;
  left: -2.75rem;
  opacity: 1;
  width: 10px;
  height: 10px;
}
body #cookie-notice .cn-close-icon span {
  display: none;
}
body #cookie-notice .cn-close-icon:before, body #cookie-notice .cn-close-icon:after {
  background-color: #09374C;
  height: 12px;
}
body #cookie-notice.ativo {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
body #cookie-notice .ilustra {
  width: 9vw;
  position: absolute;
  top: -4rem;
  right: -4px;
}
@media screen and (max-width: 599px) {
  body #cookie-notice .ilustra {
    width: 35%;
  }
}
body #cookie-notice:before {
  content: "";
  display: block;
  width: 9vw;
  height: 100%;
  position: absolute;
  top: -4rem;
  right: -4px;
  background-color: transparent;
  background-image: url("../img/icone-solto-cookies@2x.png");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  pointer-events: none;
}
body #cookie-notice h3 {
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
body #cookie-notice p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
}
body #cookie-notice .botao, body #cookie-notice .cn-buttons-container .cn-button {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
body #cookie-notice .links {
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
}
body #cookie-notice .links a {
  text-decoration: underline;
}
body #cookie-notice .links a:first-of-type {
  margin-right: 10px;
}

.home-capa {
  padding-top: 9rem;
  height: 100vh;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 2500;
}
.home-capa .slick-autoplay-toggle-button:focus {
  color: #03DDD5;
}
@media screen and (max-width: 599px) {
  .home-capa {
    height: auto;
    padding-top: 12rem;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-capa {
    padding-top: 7rem;
  }
}
.home-capa .container {
  height: 100%;
}
@media screen and (max-width: 599px) {
  .home-capa .container-main {
    background-image: url("../img/home-foto-lateral@2x.png");
    background-position: bottom -2px center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-bottom: 45vw;
  }
}
.home-capa .lf {
  height: 100%;
}
.home-capa .coluna-intro {
  height: 90%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home-capa .coluna-intro .logo {
  width: 26.3333333333vw;
}
@media screen and (max-width: 599px) {
  .home-capa .coluna-intro .logo {
    width: 100%;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-capa .coluna-intro .logo img {
    width: auto;
    max-height: 8rem;
  }
}
.home-capa .slick-slider {
  margin-bottom: 0;
}
.home-capa .bloco-slides-frases {
  width: 80%;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .home-capa .bloco-slides-frases {
    margin-top: 5rem;
  }
}
.home-capa .bloco-slides-frases .slide-frase {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: bold;
  color: #1A8480;
}
.contraste .home-capa .bloco-slides-frases .slide-frase {
  color: #fff;
}
.home-capa .bloco-slides-frases .slide-frase .inside-frase {
  min-height: 4.8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-capa .bloco-slides-frases .slide-frase {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .home-capa .bloco-slides-frases .slide-frase {
    text-align: center;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.home-capa .bloco-slides-frases .dots-frases {
  margin-top: 1rem;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .home-capa .bloco-slides-frases .dots-frases {
    margin-top: 3rem;
    text-align: center;
    width: 100%;
  }
}
.home-capa .bloco-slides-frases .frases-prev-depoimentos {
  width: 2rem;
  height: 5rem;
  background-image: url("../img/seta-lateral-azul@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  left: -4rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.contraste .home-capa .bloco-slides-frases .frases-prev-depoimentos {
  background-image: url("../img/seta-lateral-grande@2x.png");
}
@media screen and (max-width: 599px) {
  .home-capa .bloco-slides-frases .frases-prev-depoimentos {
    left: -7vw;
  }
}
.home-capa .bloco-slides-frases .frases-next-depoimentos {
  width: 2rem;
  height: 5rem;
  background-image: url("../img/seta-lateral-azul@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  right: -4rem;
}
.contraste .home-capa .bloco-slides-frases .frases-next-depoimentos {
  background-image: url("../img/seta-lateral-grande@2x.png");
}
@media screen and (max-width: 599px) {
  .home-capa .bloco-slides-frases .frases-next-depoimentos {
    right: -7vw;
  }
}
.home-capa .bloco-slides-frases .slick-disabled {
  opacity: 0.2;
}
.home-capa .navegacao-home {
  width: 100%;
  height: 8vh;
  background-color: #03DDD5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 400;
}
@media screen and (max-width: 599px) {
  .home-capa .navegacao-home {
    height: auto;
    position: relative;
    text-align: center;
  }
  .home-capa .navegacao-home a {
    display: block;
    text-align: center;
  }
}
.home-capa .navegacao-home .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .home-capa .navegacao-home .container {
    display: block;
    padding-bottom: 0;
  }
}
.home-capa .navegacao-home .botao-nav-home {
  width: 48%;
  height: 8vh;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #09374C;
  line-height: 8vh;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 599px) {
  .home-capa .navegacao-home .botao-nav-home {
    width: 100%;
    height: auto;
  }
  .home-capa .navegacao-home .botao-nav-home:first-of-type {
    border-bottom: 2px solid #09374C;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .home-capa .navegacao-home .botao-nav-home {
    padding: 1rem 0;
  }
}
.home-capa .navegacao-home .botao-nav-home:hover {
  background-color: #A2195B;
}
.home-capa .navegacao-home .botao-nav-home.biblioteca:hover {
  background-color: #22AA4B;
}
.home-capa .arte-lateral {
  width: 56.2083333333vw;
  height: 100vh;
  position: absolute;
  bottom: 0vh;
  right: 0;
  background-color: #03DDD5;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .home-capa .arte-lateral {
    display: none;
  }
}
.home-capa .arte-lateral .pessoas {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.home-capa .arte-lateral .roda {
  width: 8vw;
  display: block;
  position: absolute;
  left: 25vw;
  bottom: 12vw;
  z-index: 90;
}
.home-capa .arte-lateral .arco {
  width: 9vw;
  display: block;
  position: absolute;
  right: 7vw;
  bottom: 21vw;
  z-index: 90;
}
.home-capa .arte-lateral .celular {
  width: 4vw;
  display: block;
  position: absolute;
  right: 46%;
  top: 7rem;
  z-index: 90;
}
.home-capa .arte-lateral .computador {
  width: 8vw;
  display: block;
  position: absolute;
  bottom: 2vw;
  left: -4vw;
  z-index: 110;
}
.home-capa .arte-lateral .cerebro {
  width: 6vw;
  display: block;
  position: absolute;
  bottom: 40%;
  left: -3vw;
  z-index: 110;
}
.home-capa .arte-lateral .engrenagem {
  width: 5vw;
  display: block;
  position: absolute;
  top: 10rem;
  left: -2.5vw;
  z-index: 110;
}
.home-capa .arte-resp {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 380;
}
@media screen and (max-width: 599px) {
  .home-capa .arte-resp {
    display: block;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .home-capa .arte-resp {
    display: none;
  }
}
.home-capa .arte-resp .cerebro {
  width: 12vw;
  display: block;
  position: absolute;
  bottom: 40%;
  left: -3vw;
  z-index: 110;
}
.home-capa .arte-resp .maoresp {
  width: 22vw;
  display: block;
  position: absolute;
  bottom: 40%;
  right: -3vw;
  z-index: 110;
}
.home-capa .arte-resp .engrenagem {
  width: 16vw;
  display: block;
  position: absolute;
  bottom: 8rem;
  right: 2vw;
}
.home-capa .arte-resp .engrenagem2 {
  width: 12vw;
  display: block;
  position: absolute;
  top: 20rem;
  right: -6vw;
}
.home-capa .arte-resp .computador {
  width: 16vw;
  display: block;
  position: absolute;
  bottom: 14rem;
  left: -8vw;
}
.home-capa .mao {
  pointer-events: none;
  width: 9vw;
  display: block;
  position: absolute;
  top: 45%;
  left: -1vw;
  z-index: 110;
}
@media screen and (max-width: 599px) {
  .home-capa .mao {
    display: none;
  }
}
.home-capa .trsi {
  -webkit-transition: all 0.9s;
  -o-transition: all 0.9s;
  transition: all 0.9s;
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}
.home-capa .trs {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}
.home-capa .trsa {
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.home-capa.hold .opacidade {
  opacity: 0;
}
.home-capa.hold .baixo {
  bottom: -60%;
}
.home-capa.hold .baixomesmo {
  bottom: -100%;
}
.home-capa.hold .cima {
  top: -60%;
}
.home-capa.hold .esquerda {
  left: -60%;
}

.home-produtos {
  padding: 8rem 0;
  padding-bottom: 0;
  background-color: #09374C;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .home-produtos .coluna-6.tar {
    text-align: left;
    margin-top: 2rem;
  }
}
.home-produtos .container {
  padding-bottom: 8rem;
}
.home-produtos .home-produtos-cards {
  margin-top: 8rem;
}
.home-produtos .produto-card {
  width: 48%;
  display: block;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-produtos .produto-card {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 599px) {
  .home-produtos .produto-card {
    width: 100%;
    margin-bottom: 4rem;
  }
}
.home-produtos .produto-card .arte-produto {
  width: 100%;
  height: 28rem;
  background-size: auto 90%;
  background-position: center left;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1099px) {
  .home-produtos .produto-card .arte-produto {
    height: 20rem;
  }
}
.home-produtos .produto-card .arte-produto {
  width: 100%;
  height: 28rem;
  background-size: auto 90%;
  background-position: center left;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .home-produtos .produto-card .arte-produto {
    height: 20rem;
  }
}
.home-produtos .produto-card .arte-produto .camada-base {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-size: auto 85%;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.home-produtos .produto-card .arte-produto .camada-topo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background-size: auto 85%;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.home-produtos .produto-card .arte-produto .camada-baixo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-size: auto 85%;
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-produtos .produto-card .arte-produto {
    height: 20rem;
  }
}
.home-produtos .produto-card:hover .pc {
  top: -10px;
}
.home-produtos .produto-card:hover .mao {
  top: 10px;
}
.home-produtos .produto-card:hover .maom {
  top: 5px;
}
.home-produtos .produto-card:hover .bola {
  left: -20px;
}
.home-produtos .produto-card:hover .leftmenor {
  left: -15px;
}
.home-produtos .produto-card:hover .rightm {
  left: 10px;
}
.home-produtos .produto-card:hover .leftm {
  left: -5px;
}
.home-produtos .produto-card .info-produto {
  width: 100%;
  border-top: 1px solid #03DDD5;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home-produtos .produto-card .info-produto .info-titulo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.home-produtos .produto-card .info-produto small {
  color: #F3DD80;
  font-size: 72px;
  font-size: 7.2rem;
  font-weight: 200;
  line-height: 1;
  margin-right: 2rem;
}
@media screen and (max-width: 1099px) {
  .home-produtos .produto-card .info-produto small {
    font-size: 50px;
    font-size: 5rem;
  }
}
.home-produtos .produto-card .info-produto .titulo-info {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1099px) {
  .home-produtos .produto-card .info-produto .titulo-info {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.home-produtos .produto-card .info-produto img {
  height: 6rem;
}
.home-produtos .produto-card .info-produto .mais {
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  border: 3px solid #03DDD5;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #03DDD5;
  font-weight: bold;
  font-size: 40px;
  font-size: 4rem;
}
.home-produtos .produto-card:hover h3 {
  color: #03DDD5;
}
.home-produtos .produto-card:hover .mais {
  border: 3px solid #fff;
  color: #fff;
}
.home-produtos .go-topo {
  bottom: 5rem;
}

.marquee {
  width: 100%;
  height: 5rem;
  background-color: #09374C;
  border-top: 1px solid #09374C;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  line-height: 5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.8rem;
  display: block;
}
.marquee img {
  display: inline-block;
  vertical-align: middle;
  height: 1.5rem;
  margin: 0 1rem;
}
@media screen and (max-width: 576px) {
  .marquee {
    top: 50vh;
  }
}
.marquee .linha1 {
  display: inline-block;
  -webkit-animation: marquee 60s linear infinite;
          animation: marquee 60s linear infinite;
}
.marquee .linha2 {
  display: inline-block;
  -webkit-animation: marquee2 60s linear infinite;
          animation: marquee2 60s linear infinite;
  -webkit-animation-delay: 30s;
          animation-delay: 30s;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes marquee2 {
  from {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes marquee2 {
  from {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slick-dots button {
  text-indent: -99999px;
  display: block;
  text-align: center;
  position: relative;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 2rem;
  border: 2px solid #fff;
  background-color: #09374C;
  padding: 0;
  margin: 0 5px;
}
.slick-dots .slick-active button {
  background-color: #fff;
}
.dots-frases .slick-dots button {
  border: 2px solid #09374C;
  background-color: #fff;
}
.dots-frases .slick-dots .slick-active button {
  background-color: #09374C;
}
.dots-biblioteca .slick-dots button {
  border: 2px solid #fff;
  background-color: #22AA4B;
}
.dots-biblioteca .slick-dots .slick-active button {
  background-color: #fff;
}

.home-mapa {
  padding: 8rem 0;
  background-color: #03DDD5;
  color: #09374C;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-mapa .bloco-imagem {
    width: 30%;
  }
  .home-mapa #count-numeros {
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  .home-mapa .titulo-dest {
    width: 70%;
  }
}
.home-mapa .mapa-numero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  .home-mapa .mapa-numero {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
.home-mapa .mapa-numero.ultimo {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .home-mapa .mapa-numero.ultimo {
    margin-top: 2rem;
  }
}
.home-mapa .mapa-numero .numeros {
  width: 19.375vw;
  white-space: nowrap;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-mapa .mapa-numero .numeros {
    width: 55%;
  }
}
@media screen and (max-width: 599px) {
  .home-mapa .mapa-numero .numeros {
    width: 100%;
  }
}
.home-mapa .mapa-numero .info {
  width: 19.375vw;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
}
@media screen and (max-width: 1099px) {
  .home-mapa .mapa-numero .info {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-mapa .mapa-numero .info {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .home-mapa .mapa-numero .info {
    width: 100%;
    font-size: 24px;
    font-size: 2.4rem;
    text-align: right;
    margin-top: 5px;
  }
}
.home-mapa .mapa-numero .info.menor {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: none;
}
.home-mapa .numeros {
  text-align: right;
}
.home-mapa .numeros small {
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 2rem;
}
.home-mapa .num {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #09374C;
  border-radius: 5px;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  min-width: 3.6rem;
  text-align: center;
  position: relative;
  margin-right: 0.25rem;
  position: relative;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-mapa .num {
    min-width: 3rem;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .home-mapa .num {
    font-size: 30px;
    font-size: 3rem;
  }
}
.home-mapa .num:before {
  content: "";
  display: block;
  width: 1rem;
  height: 3px;
  background-color: #09374C;
  position: absolute;
  top: 50%;
  margin-top: -1.5px;
  left: 100%;
}
.home-mapa .num.sep {
  margin-right: 0.9rem;
}
.home-mapa .num.sep:before {
  width: 1.5rem;
}
.home-mapa .num.last:before {
  display: none;
}

.home-parceiros {
  padding: 8rem 0;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1099px) {
  .home-parceiros {
    padding: 8rem 0;
  }
}
.home-parceiros .lista-parceiros {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-parceiros .lista-parceiros a {
  margin: 0 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1099px) {
  .home-parceiros .lista-parceiros a {
    margin: 0;
    width: 33.3333333333%;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home-parceiros .lista-parceiros img {
  display: block;
  max-width: 16rem;
  max-height: 10rem;
}
@media screen and (max-width: 1099px) {
  .home-parceiros .lista-parceiros img {
    max-width: 10rem;
    max-height: 5rem;
  }
}

.home-depoimentos {
  padding: 8rem 0;
  background-color: #09374C;
  color: #fff;
  position: relative;
}
.home-depoimentos .slick-autoplay-toggle-button:focus {
  color: #03DDD5;
}
.home-depoimentos .bloco-slides {
  position: relative;
}
.home-depoimentos .controles {
  width: 100%;
  border-top: 1px solid #fff;
  padding-top: 10px;
  text-align: left;
  position: relative;
}
.home-depoimentos .dots-depoimentos {
  display: inline-block;
  width: auto;
}
.home-depoimentos .dots-depoimentos .slick-dots {
  position: relative;
  bottom: 0;
  text-align: left;
}
@media screen and (max-width: 1099px) {
  .home-depoimentos .dots-depoimentos {
    width: 100%;
    text-align: left;
  }
}
.home-depoimentos .dot-depo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  height: 6rem;
}
.home-depoimentos .dot-depo .dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 4rem;
  border: 1px solid #fff;
  margin-right: 10px;
}
.home-depoimentos .slick-active .dot-depo .dot {
  background-color: #fff;
  color: #09374C;
}
.home-depoimentos .slick-autoplay-toggle-button {
  color: #fff;
  opacity: 1;
  position: absolute;
  right: 0;
  left: auto;
  bottom: -12.5rem;
}
.home-depoimentos .pause-icon-cus span {
  display: block;
  text-align: center;
}
.home-depoimentos .pause-icon-cus .label {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 5px;
}
.home-depoimentos .nav-prev-depoimentos {
  width: 2rem;
  height: 5rem;
  background-image: url("../img/seta-lateral-grande@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  left: -4rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 599px) {
  .home-depoimentos .nav-prev-depoimentos {
    left: -5vw;
  }
}
.home-depoimentos .nav-next-depoimentos {
  width: 2rem;
  height: 5rem;
  background-image: url("../img/seta-lateral-grande@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  right: -4rem;
}
@media screen and (max-width: 599px) {
  .home-depoimentos .nav-next-depoimentos {
    right: -5vw;
  }
}
.home-depoimentos .slick-disabled {
  opacity: 0.1;
}
.home-depoimentos .inside-slide {
  width: 100%;
  padding-left: 12.4166666667vw;
  padding-right: 5.4583333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-depoimentos .inside-slide {
    padding-left: 5.4583333333vw;
  }
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide {
    padding-left: 5.4583333333vw;
  }
}
.home-depoimentos .inside-slide .foto {
  display: block;
  width: 12.4166666667vw;
  height: 12.4166666667vw;
  border-radius: 200px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-depoimentos .inside-slide .foto {
    width: 19.375vw;
    height: 19.375vw;
  }
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide .foto {
    display: none;
  }
}
.home-depoimentos .inside-slide .depoimento {
  width: 33.2916666667vw;
  position: relative;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-depoimentos .inside-slide .depoimento {
    width: 47.2083333333vw;
  }
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide .depoimento {
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.home-depoimentos .inside-slide .depoimento:before {
  content: "";
  display: block;
  width: 5.4583333333vw;
  height: 4rem;
  background-image: url("../img/aspas@2x.png");
  background-position: center;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 100%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide .depoimento:before {
    width: 100px;
    right: auto;
    left: 0;
    top: 0;
    background-position: right center;
  }
}
.home-depoimentos .inside-slide .depoimento:after {
  content: "";
  display: block;
  width: 5.4583333333vw;
  height: 4rem;
  background-image: url("../img/aspas@2x.png");
  background-position: center;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 100%;
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide .depoimento:after {
    width: 100px;
    left: auto;
    right: 0;
    bottom: 0;
    background-position: right center;
  }
}
.home-depoimentos .inside-slide .depoimento p {
  margin-bottom: 3rem;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide .depoimento p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.home-depoimentos .inside-slide .depoimento h3 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .home-depoimentos .inside-slide .depoimento h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.home-learning-partner {
  padding: 8rem 0;
  padding-bottom: 12vw;
  background-color: #F3DD80;
  color: #09374C;
}
.home-learning-partner .coluna-esq {
  padding-left: 5.4583333333vw;
}
@media screen and (max-width: 599px) {
  .home-learning-partner .coluna-esq {
    padding-left: 0;
  }
  .home-learning-partner .coluna-esq br {
    display: none;
  }
}
.home-learning-partner .config-texto {
  padding-right: 5.4583333333vw;
}
.home-learning-partner .botoes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .home-learning-partner .botoes {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.home-eventos {
  padding: 4rem 0;
  padding-top: 0;
  border-top: 3px solid #09374C;
  position: relative;
}
.home-eventos .home-evento-foto {
  width: 35.5333333333vw;
  height: 0;
  padding-bottom: 30.3333333333vw;
  background-color: #cdcdcd;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .home-eventos .home-evento-foto {
    width: 39.4916666667vw;
  }
}
@media screen and (max-width: 599px) {
  .home-eventos .home-evento-foto {
    display: none;
  }
}
.home-eventos .coluna-dir {
  padding-right: 5.4583333333vw;
}
.home-eventos .home-eventos-titulo {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 2rem;
  padding-bottom: 0;
  border: 3px solid #09374C;
  border-bottom: none;
  background-color: #fff;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  margin-bottom: 2rem;
  position: relative;
  top: -4rem;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 599px) {
  .home-eventos .home-eventos-titulo {
    font-size: 14px;
    font-size: 1.4rem;
    top: -3.5rem;
  }
}
.home-eventos .proximos {
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}
.home-eventos .proximo-ev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
.home-eventos .proximo-ev:last-of-type {
  margin-bottom: 0;
}
.home-eventos .proximo-ev h4 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 1099px) {
  .home-eventos .proximo-ev h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.home-eventos .proximo-ev .data {
  display: inline-block;
  background-color: #F3DD80;
  color: #09374C;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
}
@media screen and (max-width: 1099px) {
  .home-eventos .proximo-ev .data {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.call-newsletter {
  padding: 8rem 0;
  background-color: #09374C;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
.call-newsletter ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.call-newsletter ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.call-newsletter :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.call-newsletter :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
@media screen and (max-width: 1099px) {
  .call-newsletter {
    padding: 5rem 0;
  }
  .call-newsletter .coluna-5 {
    margin-bottom: 0;
  }
}
.call-newsletter h2 {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1099px) {
  .call-newsletter h2 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.call-newsletter .modulo-newsletter {
  width: 100%;
  position: relative;
}
.call-newsletter .modulo-newsletter input {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #03DDD5;
  height: 4rem;
  line-height: 4rem;
  width: 100%;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
}
.call-newsletter .modulo-newsletter button {
  background-color: transparent;
  border: none;
  width: 3rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background-image: url("../img/seta-news@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  text-indent: -9999px;
}
.footer {
  padding: 8rem 0;
  background-color: #fff;
  color: #09374C;
  font-size: 18px;
  font-size: 1.8rem;
}
.footer .coluna-esq {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .coluna-esq .link-home img {
  display: block;
  height: 14rem;
  margin-bottom: 2rem;
}
.footer .footer-menu-lista {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 0rem;
  font-weight: bold;
}
.footer .footer-menu-lista li {
  margin-bottom: 1.5rem;
}
.footer .footer-menu-lista li:last-of-type {
  margin-bottom: 0;
}
.footer .coluna-dir {
  padding-left: 5.4583333333vw;
  border-left: 2px solid #09374C;
}
@media screen and (max-width: 599px) {
  .footer .coluna-dir {
    padding-left: 0;
    border-left: none;
  }
}
.footer .footer-intro {
  margin-bottom: 2.5rem;
}
.footer .footer-intro .chamada {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 900;
}
@media screen and (max-width: 599px) {
  .footer .footer-intro .chamada {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.footer .redes-sociais {
  margin-bottom: 2.5rem;
}
.footer .redes-sociais .chamada {
  margin-bottom: 1rem;
}
.footer .footer-sociais {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer .footer-sociais .social {
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 4.4rem;
  background-color: #6CDAD4;
  color: #09374C;
  border-radius: 5rem;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 1rem;
}
.footer .enderecos {
  margin-bottom: 2.5rem;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .footer .enderecos {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.footer .enderecos p {
  margin-bottom: 2rem;
}
.footer .enderecos p:last-of-type {
  margin-bottom: 0;
}
.footer .meta {
  font-size: 12px;
  font-size: 1.2rem;
}

.footer-dados {
  padding: 3rem 0;
  background-color: #F3DD80;
  color: #09374C;
  font-size: 16px;
  font-size: 1.6rem;
}
.footer-dados .coluna-esq {
  font-weight: 600;
}
.footer-dados .coluna-esq h2 {
  font-weight: 800;
}
.footer-dados .coluna-dir {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .footer-dados .coluna-dir {
    text-align: left;
  }
}
.footer-dados .coluna-dir .botao, .footer-dados .coluna-dir body #cookie-notice .cn-buttons-container .cn-button, body #cookie-notice .cn-buttons-container .footer-dados .coluna-dir .cn-button {
  margin-bottom: 1rem;
}
.footer-dados .coluna-dir .links a {
  text-decoration: underline;
  margin-left: 2rem;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .footer-dados .coluna-dir .links a {
    margin-left: 0;
    margin-right: 2rem;
  }
}

/********************************************/
.atuacao-capa {
  padding-top: 10rem;
  padding-bottom: 8rem;
  height: auto;
  background-color: #03DDD5;
  position: relative;
  background-image: url("../img/atuacao-ilustra-capa@2x.png");
  background-size: 56.2083333333vw auto;
  background-repeat: no-repeat;
  background-position: top 6rem right -6vw;
  z-index: 2500;
}
@media screen and (max-width: 599px) {
  .atuacao-capa {
    background-size: 100vw;
    padding-top: 85vw;
  }
}
.atuacao-capa .breadcrumb {
  position: absolute;
  top: 16rem;
  left: 9vw;
  color: #09374C;
}
@media screen and (max-width: 599px) {
  .atuacao-capa .breadcrumb {
    top: 6rem;
  }
}
.atuacao-capa:before {
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
  background-color: #09374C;
  position: absolute;
  bottom: 0;
  left: 0;
}
.atuacao-capa .container {
  height: 80vh;
}
@media screen and (max-width: 599px) {
  .atuacao-capa .container {
    height: auto;
  }
}
.atuacao-capa .container .atuacao-topo {
  height: 100%;
}
.atuacao-capa .container .atuacao-links {
  position: absolute;
  bottom: 8rem;
  left: 0;
  margin-top: 6rem;
}
@media screen and (max-width: 599px) {
  .atuacao-capa .container .atuacao-links {
    position: static;
    bottom: auto;
    margin-top: 2rem;
  }
}

.atuacao-produtos-intro {
  padding: 8rem 0;
}

.atuacao-produtos-nav {
  position: relative;
}
.atuacao-produtos-nav .prod-prev {
  position: absolute;
  top: 50%;
  margin-top: -3rem;
  left: 5px;
  z-index: 100;
  width: auto;
  display: block;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  display: none;
}
@media screen and (max-width: 599px) {
  .atuacao-produtos-nav .prod-prev {
    display: block;
  }
}
.atuacao-produtos-nav .prod-prev img {
  display: block;
  height: 6rem;
}
.atuacao-produtos-nav .prod-next {
  position: absolute;
  top: 50%;
  margin-top: -3rem;
  right: 5px;
  z-index: 100;
  width: auto;
  display: block;
  display: none;
}
@media screen and (max-width: 599px) {
  .atuacao-produtos-nav .prod-next {
    display: block;
  }
}
.atuacao-produtos-nav .prod-next img {
  display: block;
  height: 6rem;
}
.atuacao-produtos-nav .atuacao-produtos-cards {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.atuacao-produtos-nav .produto-card {
  width: 100%;
  display: block;
  border: 4px solid #03DDD5;
  background-color: #03DDD5;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  cursor: pointer;
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 599px) {
  .atuacao-produtos-nav .produto-card {
    width: 100%;
    display: none;
  }
}
.atuacao-produtos-nav .produto-card .arte-produto {
  width: 100%;
  height: 22rem;
  background-size: 75% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #09374C;
  border-top-left-radius: 2.6rem;
  border-top-right-radius: 2.6rem;
  position: relative;
}
.atuacao-produtos-nav .produto-card .arte-produto .camada-base {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-size: auto 65%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.atuacao-produtos-nav .produto-card .arte-produto .camada-topo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background-size: auto 65%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.atuacao-produtos-nav .produto-card .arte-produto .camada-baixo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-size: auto 65%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1099px) {
  .atuacao-produtos-nav .produto-card .arte-produto {
    height: 28rem;
  }
  .atuacao-produtos-nav .produto-card .arte-produto .camada-base, .atuacao-produtos-nav .produto-card .arte-produto .camada-topo, .atuacao-produtos-nav .produto-card .arte-produto .camada-baixo {
    background-size: 55% auto;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .atuacao-produtos-nav .produto-card .arte-produto {
    height: 20rem;
  }
  .atuacao-produtos-nav .produto-card .arte-produto .camada-base, .atuacao-produtos-nav .produto-card .arte-produto .camada-topo, .atuacao-produtos-nav .produto-card .arte-produto .camada-baixo {
    background-size: 75% auto;
  }
}
.atuacao-produtos-nav .produto-card:hover .pc {
  top: -10px;
}
.atuacao-produtos-nav .produto-card:hover .mao {
  top: 10px;
}
.atuacao-produtos-nav .produto-card:hover .maom {
  top: 5px;
}
.atuacao-produtos-nav .produto-card:hover .bola {
  left: -20px;
}
.atuacao-produtos-nav .produto-card:hover .leftmenor {
  left: -15px;
}
.atuacao-produtos-nav .produto-card:hover .rightm {
  left: 10px;
}
.atuacao-produtos-nav .produto-card:hover .leftm {
  left: -5px;
}
.atuacao-produtos-nav .produto-card .info-produto {
  width: 100%;
  border-top: 2px solid #03DDD5;
  background-color: #fff;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .atuacao-produtos-nav .produto-card .info-produto {
    padding: 1rem;
    display: block;
  }
}
.atuacao-produtos-nav .produto-card .info-produto small {
  color: #09374C;
  font-weight: 200;
  line-height: 1;
  margin-right: 2rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .atuacao-produtos-nav .produto-card .info-produto small {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.atuacao-produtos-nav .produto-card .info-produto h3 {
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .atuacao-produtos-nav .produto-card .info-produto h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.atuacao-produtos-nav .produto-card:hover, .atuacao-produtos-nav .produto-card.ativo {
  background-color: #03DDD5;
}
@media screen and (max-width: 599px) {
  .atuacao-produtos-nav .produto-card:hover, .atuacao-produtos-nav .produto-card.ativo {
    display: block;
  }
}
.atuacao-produtos-nav .produto-card:hover .info-produto, .atuacao-produtos-nav .produto-card.ativo .info-produto {
  background-color: #09374C;
  color: #fff;
}
.atuacao-produtos-nav .produto-card:hover .info-produto small, .atuacao-produtos-nav .produto-card.ativo .info-produto small {
  color: #fff;
}

.atuacao-produtos-info {
  background-color: #09374C;
  color: #09374C;
  padding-bottom: 8rem;
}
.atuacao-produtos-info.ativo-especial {
  width: 100%;
  height: auto;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: visible;
  white-space: normal;
  border: none;
  clip: unset;
}
.atuacao-produtos-info .produto-conteudo {
  background-color: #03DDD5;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
}
.atuacao-produtos-info .produto-conteudo .lf {
  padding: 5rem 5.4583333333vw;
}
.atuacao-produtos-info .produto-conteudo .texto-info {
  font-size: 21px;
  font-size: 2.1rem;
  padding-right: 5.4583333333vw;
}
@media screen and (max-width: 1099px) {
  .atuacao-produtos-info .produto-conteudo .texto-info {
    padding-right: 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .atuacao-produtos-info .coluna-esq {
    width: 45%;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .atuacao-produtos-info .coluna-esq {
    width: 100%;
  }
}
.atuacao-produtos-info .coluna-depoimento {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .atuacao-produtos-info .coluna-depoimento {
    width: 45%;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .atuacao-produtos-info .coluna-depoimento {
    width: 100%;
  }
}
.atuacao-produtos-info .depoimento {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.atuacao-produtos-info .depoimento:before {
  content: "";
  display: block;
  width: 5.4583333333vw;
  height: 4rem;
  background-image: url("../img/aspas@2x.png");
  background-position: right center;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.atuacao-produtos-info .depoimento:after {
  content: "";
  display: block;
  width: 5.4583333333vw;
  height: 4rem;
  background-image: url("../img/aspas@2x.png");
  background-position: center;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  margin-top: -4rem;
  right: 0;
}
.atuacao-produtos-info .autor {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 2rem;
}
.atuacao-produtos-info .link-case {
  margin-top: 2rem;
  border-top: 1px solid #fff;
  padding-top: 2rem;
  text-align: right;
}
.atuacao-produtos-info .link-case a {
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-decoration: none;
}
.atuacao-produtos-info .link-case span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
  line-height: 1;
}
.atuacao-produtos-info .link-case img {
  display: block;
  height: 1.25rem;
}
.atuacao-produtos-info .coluna-tematica {
  margin-top: 5rem;
}
.atuacao-produtos-info .coluna-tematica .tematicas {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff;
  margin-bottom: 5rem;
}
.atuacao-produtos-info .coluna-tematica .tem-horizontal {
  display: block;
}
.atuacao-produtos-info .coluna-tematica .tem-vertical {
  display: none;
}
@media screen and (max-width: 1099px) and (orientation: portrait) {
  .atuacao-produtos-info .coluna-tematica .tem-horizontal {
    display: none;
  }
  .atuacao-produtos-info .coluna-tematica .tem-vertical {
    display: block;
  }
}
.atuacao-produtos-info ul {
  margin-top: 2rem;
  font-weight: bold;
}
.atuacao-produtos-info ul li {
  margin-bottom: 5px;
}
.atuacao-produtos-info ul ::marker {
  color: #fff;
}

.sobre-chamada-meio {
  padding: 2rem 0;
  padding-bottom: 6rem;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-color: #09374C;
  text-align: center;
}

.atuacao-graficos {
  padding: 8rem 0;
}
@media screen and (max-width: 599px) {
  .atuacao-graficos {
    padding-bottom: 4rem;
  }
}
.atuacao-graficos .coluna-6 {
  padding: 5rem 4rem;
  position: relative;
}
@media screen and (max-width: 576px) {
  .atuacao-graficos .coluna-6 {
    margin-bottom: 5rem;
  }
}
.atuacao-graficos h3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  font-size: 2.8rem;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .atuacao-graficos h3 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.atuacao-graficos .diagrama {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 576px) {
  .atuacao-graficos .diagrama {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.atuacao-graficos .diagrama li {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .atuacao-graficos .diagrama li {
    width: 50%;
  }
}
.atuacao-graficos .diagrama li:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}
.atuacao-graficos .diagrama li:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
}
.atuacao-graficos .diagrama li:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
}
.atuacao-graficos .diagrama li:nth-child(4) {
  position: absolute;
  bottom: 0;
  left: 0;
}
.atuacao-graficos .titulo-dest {
  margin-bottom: 8rem;
}
@media screen and (max-width: 599px) {
  .atuacao-graficos .titulo-dest {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .atuacao-graficos .bloco-imagem {
    margin-bottom: 4rem;
  }
}

.atuacao-equipe-intro {
  padding: 8rem 0;
  background-color: #03DDD5;
}
.atuacao-equipe-intro ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #09374C;
}
.atuacao-equipe-intro ::-moz-placeholder {
  /* Firefox 19+ */
  color: #09374C;
}
.atuacao-equipe-intro :-ms-input-placeholder {
  /* IE 10+ */
  color: #09374C;
}
.atuacao-equipe-intro :-moz-placeholder {
  /* Firefox 18- */
  color: #09374C;
}
.atuacao-equipe-intro .modulo-busca {
  width: 100%;
  position: relative;
}
.atuacao-equipe-intro .modulo-busca input {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #09374C;
  height: 4rem;
  line-height: 4rem;
  width: 100%;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #09374C;
}
.atuacao-equipe-intro .modulo-busca span {
  background-color: transparent;
  border: none;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 22px;
  font-size: 2.2rem;
}

@media screen and (max-width: 599px) {
  .atuacao-equipe .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.lista-equipe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lista-equipe .membro-equipe {
  width: 25%;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .lista-equipe .membro-equipe {
    width: 50%;
  }
}
.lista-equipe .membro-equipe .foto {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #22AA4B;
  position: relative;
}
.lista-equipe .membro-equipe .foto-fundo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.lista-equipe .membro-equipe .acessar {
  position: absolute;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #03DDD5;
  padding: 1rem 1rem;
}
.lista-equipe .membro-equipe .acessar .mais {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  background-color: #fff;
  color: #09374C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-left: 4rem;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.lista-equipe .membro-equipe:hover .foto .foto-fundo {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.lista-equipe .membro-equipe .minibio {
  width: 200%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  padding: 2rem;
}
@media screen and (max-width: 599px) {
  .lista-equipe .membro-equipe .minibio {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 12rem;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .lista-equipe .membro-equipe .minibio .card-minibio {
    background-color: #fff;
    padding: 1rem;
    height: auto;
    max-height: 70vh;
    width: 90%;
    position: relative;
    overflow: auto;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .lista-equipe .membro-equipe .minibio {
    padding-top: 5rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 1rem;
  }
}
.lista-equipe .membro-equipe .minibio h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #09374C;
  font-weight: bold;
}
.lista-equipe .membro-equipe .minibio .posicao {
  font-size: 16px;
  font-size: 1.6rem;
  color: #03DDD5;
  margin-bottom: 1rem;
  font-weight: bold;
}
.lista-equipe .membro-equipe .equipe-fechar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 20px;
  font-size: 2rem;
}
.lista-equipe .membro-equipe .equipe-fechar .mais {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  background-color: #03DDD5;
  color: #09374C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-left: 4rem;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@media screen and (max-width: 599px) {
  .lista-equipe .membro-equipe .equipe-fechar {
    top: 1rem;
  }
}
.lista-equipe .membro-equipe.ordem-2 .minibio {
  left: auto;
  right: 100%;
}
@media screen and (max-width: 599px) {
  .lista-equipe .membro-equipe.ordem-2 .minibio {
    left: 0;
    right: auto;
  }
}
.lista-equipe .membro-equipe.ordem-3 .minibio {
  left: auto;
  right: 100%;
}
@media screen and (max-width: 599px) {
  .lista-equipe .membro-equipe.ordem-3 .minibio {
    left: 0;
    right: auto;
  }
}
.lista-equipe .membro-equipe.ativo {
  z-index: 50;
}
.lista-equipe .membro-equipe.ativo .foto .foto-fundo {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.lista-equipe .membro-equipe.ativo .minibio {
  width: 200%;
  height: auto;
  position: absolute;
  padding: 2rem;
  margin: 0;
  overflow: visible;
  white-space: normal;
  border: none;
  clip: unset;
}
@media screen and (max-width: 599px) {
  .lista-equipe .membro-equipe.ativo .minibio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.cases-filtros {
  padding: 8rem 0;
  padding-bottom: 6rem;
  background-color: #03DDD5;
}
.cases-filtros .breadcrumb {
  color: #09374C;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 599px) {
  .cases-filtros {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.cases-filtros.primeiro {
  padding-top: 18rem;
}
@media screen and (max-width: 599px) {
  .cases-filtros.primeiro {
    padding-top: 12rem;
  }
}
.cases-filtros .coluna-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 599px) {
  .cases-filtros .coluna-inputs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cases-filtros .coluna-inputs .select-estilizado {
  width: 40%;
  margin-right: 2rem;
}
@media screen and (max-width: 599px) {
  .cases-filtros .coluna-inputs .select-estilizado {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.cases-filtros .coluna-inputs .input-estilizado {
  width: 40%;
}
@media screen and (max-width: 599px) {
  .cases-filtros .coluna-inputs .input-estilizado {
    width: 100%;
  }
}
.cases-filtros .input-estilizado {
  position: relative;
}
.cases-filtros .input-estilizado input {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  height: 4rem;
  line-height: 4rem;
  width: 100%;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #09374C;
}
.cases-filtros .input-estilizado i {
  background-color: transparent;
  border: none;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 22px;
  font-size: 2.2rem;
  color: #09374C;
}
.cases-filtros ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #09374C;
}
.cases-filtros ::-moz-placeholder {
  /* Firefox 19+ */
  color: #09374C;
}
.cases-filtros :-ms-input-placeholder {
  /* IE 10+ */
  color: #09374C;
}
.cases-filtros :-moz-placeholder {
  /* Firefox 18- */
  color: #09374C;
}

.select-estilizado {
  width: 100%;
  height: 4rem;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  border: none;
  border-bottom: 1px solid #fff;
}
.select-estilizado:before {
  content: "\f0d7";
  font-family: FontAwesome;
  font-size: 16px;
  color: #fff;
  width: 20px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.select-estilizado select {
  padding: 0px 5px;
  width: 100%;
  height: 100%;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  color: #09374C;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.select-estilizado select optgroup {
  font-size: 14px;
  color: #000;
}
.select-estilizado select:focus {
  outline: none;
}

.cases-lista {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cases-lista .card-case {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .cases-lista .card-case {
    width: 100%;
  }
}
.cases-lista .card-case a {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 66.6666666667%;
  background-color: #03DDD5;
  position: relative;
}
@media screen and (max-width: 599px) {
  .cases-lista .card-case a {
    width: 100%;
    padding-bottom: 60%;
  }
}
.cases-lista .card-case .acessar {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #03DDD5;
  padding: 1rem 1rem;
}
.cases-lista .card-case .acessar .mais {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  background-color: #fff;
  color: #09374C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-right: 1rem;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.cases-lista .card-case .hover {
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: rgba(9, 55, 76, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 20px;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  display: none;
}
.cases-lista .card-case:hover .hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cases-lista .card-case .center-logo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cases-lista .card-case .center-logo img {
  max-width: 24rem;
  max-height: 22rem;
}
@media screen and (max-width: 1099px) {
  .cases-lista .card-case .center-logo img {
    max-width: 22rem;
    max-height: 20rem;
  }
}
.cases-lista .card-case.curso a {
  border: 0.5px solid #f5f5f5;
}
.cases-lista .card-case.curso .center-logo img {
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 100%;
}
.cases-lista.impar .card-case.third {
  width: 33.3333333333%;
}
@media screen and (max-width: 599px) {
  .cases-lista.impar .card-case.third {
    width: 100%;
  }
}
.cases-lista.impar .card-case.third a {
  width: 100%;
  padding-bottom: 100%;
}
@media screen and (max-width: 599px) {
  .cases-lista.impar .card-case.third a {
    padding-bottom: 60%;
  }
}

.fundo-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1vw;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
.fundo-modal.ativo {
  z-index: 9000;
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 98%;
  max-height: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
  overflow: auto;
}
.modal .modal-fechar {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  top: 2rem;
  right: 2rem;
  width: 1.5em;
  height: 1.5em;
  border-radius: 3em;
  font-size: 2.4rem;
  font-weight: bold;
  color: #09374C;
  border: 2px solid #09374C;
  cursor: pointer;
}
.modal .modal-fechar.menor {
  top: 1rem;
  right: 1rem;
  width: 24px;
  height: 24px;
  font-size: 1.6rem;
}
.modal.modal-form {
  max-width: 600px;
}
.modal.modal-mapasite {
  max-width: 600px;
  padding: 4rem;
}
.modal .modal-conteudo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
}
.modal .modal-foto {
  width: 100%;
  height: 30vh;
  background-size: cover;
  background-position: center center;
}
.modal .intro .titulo-proj {
  font-size: 24px;
  font-size: 2.4rem;
  color: #1A8480;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 599px) {
  .modal .intro .titulo-proj {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.modal .intro h2, .modal .intro h1 {
  font-size: 45px;
  font-size: 4.5rem;
  color: #09374C;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  .modal .intro h2, .modal .intro h1 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.modal .intro .descricao {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 600;
  color: #09374C;
}
@media screen and (max-width: 599px) {
  .modal .intro .descricao {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.modal .parceiro-area {
  border-top: 2px solid #03DDD5;
  margin-top: 5rem;
  padding-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .modal .parceiro-area {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}
.modal .parc-icone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
  color: #09374C;
}
@media screen and (max-width: 599px) {
  .modal .parc-icone {
    width: 100%;
    margin-bottom: 2rem;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.modal .parc-icone img {
  width: 10rem;
  margin-right: 2rem;
}
@media screen and (max-width: 599px) {
  .modal .parc-icone img {
    width: 6rem;
  }
}
.modal .parc-descricao {
  width: 54.1666666667vw;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .modal .parc-descricao {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.modal #rd-form-kke3zh4u .bricks-form__field {
  margin-bottom: 20px;
}
.modal.modal-fullpage {
  width: 100%;
  max-width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  max-height: none;
  overflow: visible;
}
.modal .voltar-proj {
  display: block;
  margin-top: 4rem;
  text-decoration: none;
  position: relative;
  padding-left: 3rem;
}
.modal .voltar-proj:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("../img/seta-azul@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 0;
  left: 0;
}
.modal .voltar-proj:hover {
  text-decoration: none;
}

.sep-topo {
  width: 100%;
  height: 12rem;
}

.modal-mapasite .mapa-titulo {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  color: #1A8480;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
@media screen and (max-width: 599px) {
  .modal-mapasite .mapa-titulo {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.modal-mapasite .titulo {
  display: block;
  font-weight: bold;
  color: #A2195B;
  min-height: 5rem;
  line-height: 1.4;
}
@media screen and (max-width: 576px) {
  .modal-mapasite .titulo {
    min-height: 0;
    margin-bottom: 2rem;
  }
}
.modal-mapasite .titulo a {
  font-size: 17px;
  font-size: 1.7rem;
}
.modal-mapasite a {
  font-size: 15px;
  font-size: 1.5rem;
}
.modal-mapasite .arvore {
  position: relative;
}
.modal-mapasite .arvore > li a {
  font-weight: 500;
}
.modal-mapasite .arvore a:hover {
  color: #A2195B;
}
.modal-mapasite .arvore:before {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background-color: #707070;
  position: absolute;
  left: 0;
  bottom: 1.9rem;
}
@media screen and (max-width: 576px) {
  .modal-mapasite .arvore:before {
    height: 90%;
  }
}
.modal-mapasite .arvore .arvorein {
  position: relative;
}
.modal-mapasite .arvore .arvorein > li a {
  font-weight: 400;
}
.modal-mapasite .arvore .arvorein:before {
  content: "";
  display: block;
  height: 92%;
  width: 1px;
  background-color: #707070;
  position: absolute;
  left: 0;
  bottom: 1.9rem;
}
.modal-mapasite .arvore li {
  padding-left: 3rem;
  position: relative;
  line-height: 1.3;
}
.modal-mapasite .arvore li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 4rem;
}
.modal-mapasite .arvore li:before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: #707070;
  position: absolute;
  left: 0;
  top: 2rem;
}

/********************************************/
.learning-capa {
  padding-top: 12rem;
  height: auto;
  background-color: #F3DD80;
  position: relative;
  z-index: 2500;
}
.learning-capa .breadcrumb {
  margin-bottom: 0;
  position: absolute;
  top: 5rem;
  left: 9vw;
  color: #09374C;
}
@media screen and (max-width: 599px) {
  .learning-capa .breadcrumb {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .learning-capa {
    padding-top: 12rem;
    background-image: url("../img/learning-capa@2x.png?v2");
    background-position: bottom center;
    background-size: 105% auto;
    background-repeat: no-repeat;
    padding-bottom: 70vw;
  }
}
.learning-capa .container {
  height: 80vh;
  position: relative;
}
@media screen and (max-width: 599px) {
  .learning-capa .container {
    height: auto;
  }
}
.learning-capa .learning-topo {
  padding-left: 5.4583333333vw;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .learning-capa .learning-topo {
    padding-left: 0;
  }
}
.learning-capa .arte-resp {
  display: none;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 380;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .learning-capa .arte-resp {
    display: block;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .learning-capa .arte-resp {
    display: none;
  }
}
.learning-capa .arte-resp .icone-lupa {
  display: block;
  width: 20vw;
  position: absolute;
  left: 0;
  bottom: 40vw;
  z-index: 20;
}
.learning-capa .arte-resp .maoresp {
  width: 22vw;
  display: block;
  position: absolute;
  bottom: 40%;
  right: -3vw;
  z-index: 110;
}
.learning-capa .arte-resp .engrenagem {
  width: 16vw;
  display: block;
  position: absolute;
  bottom: 2rem;
  right: 2vw;
}
.learning-capa .arte-resp .engrenagem2 {
  width: 12vw;
  display: block;
  position: absolute;
  top: 20rem;
  right: -6vw;
}
.learning-capa .arte-resp .computador {
  width: 24vw;
  display: block;
  position: absolute;
  bottom: 10vw;
  left: -12vw;
}
.learning-capa .arte-resp .icone-lamp {
  width: 14vw;
  display: block;
  position: absolute;
  bottom: 60vw;
  right: 22vw;
}
.learning-capa .grid-icones {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 599px) {
  .learning-capa .grid-icones {
    display: none;
  }
}
.learning-capa .grid-icones .pessoa {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 49.25vw;
  z-index: 20;
}
.learning-capa .grid-icones .icone-alavanca {
  display: block;
  width: 7vw;
  position: absolute;
  bottom: 6vw;
  right: 25vw;
  z-index: 10;
}
.learning-capa .grid-icones .inside-icones {
  width: 100%;
  height: 100%;
  position: relative;
}
.learning-capa .grid-icones .icone-eng {
  display: block;
  width: auto;
  height: 10rem;
  position: absolute;
  bottom: -5rem;
  left: 12.4166666667vw;
  z-index: 20;
}
.learning-capa .grid-icones .icone-eng2 {
  display: block;
  width: auto;
  height: 10rem;
  position: absolute;
  top: 7rem;
  left: 40.25vw;
  z-index: 20;
}
.learning-capa .grid-icones .icone-lupa {
  display: block;
  width: 9vw;
  position: absolute;
  left: 0;
  bottom: 5rem;
  z-index: 20;
}
.learning-capa .grid-icones .icone-cards {
  display: block;
  width: 12.4166666667vw;
  position: absolute;
  left: 1vw;
  top: 16rem;
  z-index: 20;
}
.learning-capa .grid-icones .icone-comp {
  display: block;
  width: auto;
  width: 15vw;
  margin-left: -5vw;
  position: absolute;
  bottom: -1.5vw;
  left: 40.25vw;
  z-index: 20;
}
.learning-capa .grid-icones .icone-lamp {
  display: block;
  width: 7vw;
  height: auto;
  position: absolute;
  bottom: 32vw;
  right: 11.4166666667vw;
  z-index: 20;
}
.learning-capa .grid-icones .icone-bola {
  display: block;
  width: 10vw;
  position: absolute;
  bottom: 12vw;
  right: 10px;
  z-index: 20;
}
.learning-capa .grid-icones .trans {
  -webkit-transition-delay: 4s;
       -o-transition-delay: 4s;
          transition-delay: 4s;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}
.learning-capa .grid-icones.ativo .icone-lupa {
  left: -50%;
}
.learning-capa .grid-icones.ativo .icone-eng {
  bottom: -50%;
}
.learning-capa .grid-icones.ativo .icone-comp {
  bottom: -50%;
}
.learning-capa .grid-icones.ativo .icone-cards {
  left: -50%;
}
.learning-capa .grid-icones.ativo .icone-eng2 {
  top: -50%;
}
.learning-capa .grid-icones.ativo .icone-bola {
  right: -50%;
}
.learning-capa .grid-icones.ativo .icone-alavanca, .learning-capa .grid-icones.ativo .icone-lamp {
  bottom: -50%;
}

.learning-intro {
  padding: 8rem 0;
}
@media screen and (max-width: 1099px) {
  .learning-intro {
    padding: 4rem 0;
  }
}
.learning-intro .coluna-5 {
  margin-left: 5.4583333333vw;
}

.learning-info {
  color: #09374C;
  padding-bottom: 8rem;
}
.learning-info .learning-info-bloco {
  width: 75.0416666667vw;
  margin-left: 5.4583333333vw;
  border-top: 3px solid #F3DD80;
  padding: 5rem 0;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-info-bloco {
    margin-left: 0;
    width: 100%;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .learning-info .learning-info-bloco .coluna-5 {
    width: 45%;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .learning-info .learning-info-bloco .coluna-5 {
    width: 100%;
  }
}
.learning-info .learning-info-desc {
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-info-desc {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.learning-info .learning-info-desc small {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-info-desc small {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.learning-info .titulo-sub {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 800;
}
@media screen and (max-width: 1099px) {
  .learning-info .titulo-sub {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.learning-info .learning-img {
  padding-top: 8rem;
  position: relative;
}
@media screen and (max-width: 599px) {
  .learning-info .learning-img {
    padding-top: 2rem;
  }
}
.learning-info .learning-img .imagem-vazada {
  height: 100%;
  width: 42.2916666667vw;
  background-size: cover;
  background-position: left center;
}
@media screen and (max-width: 599px) {
  .learning-info .learning-img .imagem-vazada {
    height: 240px;
    width: 100vw;
    position: relative;
    left: -9vw;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .learning-info .learning-img .imagem-vazada {
    left: 0;
    width: 100%;
  }
}
.learning-info .titulo-prods {
  margin-top: 10rem;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .learning-info .titulo-prods {
    margin-top: 4rem;
  }
}
.learning-info .learning-producoes {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 15rem;
     -moz-column-gap: 15rem;
          column-gap: 15rem;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 599px) {
  .learning-info .learning-producoes {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.learning-info .learning-producoes ::marker {
  color: #F3DD80;
  font-size: 20px;
  font-size: 2rem;
}
.learning-info .learning-producoes li {
  margin-bottom: 2rem;
}
.learning-info .learning-producoes a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-producoes a {
    display: block;
  }
}
.learning-info .learning-producoes span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.learning-info .learning-producoes img {
  display: inline-block;
  height: 2.6rem;
  margin-left: 0.5rem;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-producoes img {
    display: none;
  }
}
.learning-info .learning-producoes small {
  display: none;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-producoes small {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    font-style: italic;
  }
}
.learning-info .learning-producoes a:hover {
  text-decoration: underline;
}
.learning-info .learning-tipo-evento {
  margin-bottom: 3rem;
}
.learning-info .learning-tipo-evento h3 {
  line-height: 2;
  padding: 0 1rem;
  background-color: #F3DD80;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
  left: -1rem;
}
.learning-info .learning-tipo-evento p {
  padding-right: 5.4583333333vw;
}
.learning-info .learning-eventos {
  width: 75.0416666667vw;
  margin-left: 5.4583333333vw;
}
@media screen and (max-width: 1099px) {
  .learning-info .learning-eventos {
    width: 100%;
    margin-left: 0;
  }
}
.learning-info .proximos {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 1rem 2rem;
  padding-bottom: 0;
  border: 3px solid #09374C;
  border-bottom: none;
  background-color: #09374C;
  color: #fff;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  position: relative;
  top: 2px;
  border-bottom: 6px solid #09374C;
}
.learning-info .lista-proximos {
  background-color: #09374C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5rem 8%;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1099px) {
  .learning-info .lista-proximos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.learning-info .proximo-ev {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1099px) {
  .learning-info .proximo-ev {
    width: 100%;
  }
}
.learning-info .proximo-ev h4 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .learning-info .proximo-ev h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.learning-info .proximo-ev .data {
  display: inline-block;
  background-color: #F3DD80;
  color: #09374C;
  font-size: 40px;
  font-size: 4rem;
  font-weight: bold;
  padding: 0.5rem 2rem;
  border-radius: 2rem;
  margin-right: 3rem;
}
@media screen and (max-width: 599px) {
  .learning-info .proximo-ev .data {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.learning-biblioteca {
  padding: 8rem 0;
  background-color: #F3DD80;
}
.learning-biblioteca .learning-biblio-lista {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.learning-biblioteca .learning-biblio-lista .coluna-6 {
  width: 39.75vw;
  margin-bottom: 2rem;
}
@media screen and (max-width: 576px) {
  .learning-biblioteca .learning-biblio-lista .coluna-6 {
    width: 100%;
  }
}

.card-learning {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
  position: relative;
  height: 100%;
}
.card-learning .card-biblio-conteudo {
  display: block;
  padding-bottom: 2rem;
}
.card-learning .card-biblio-conteudo small {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
}
.card-learning .card-biblio-conteudo h2 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}
.card-learning .card-topo {
  position: relative;
  padding: 4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card-learning .card-topo .titulo-card {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  border-bottom: 2px solid #F3DD80;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.card-learning .card-topo p {
  padding-right: 2.7291666667vw;
  margin-bottom: 1rem;
}
.card-learning .card-topo ul {
  list-style-type: disc;
}
.card-learning .card-topo ul li {
  margin-bottom: 0.3rem;
}
.card-learning .card-topo a {
  font-weight: 500;
  text-decoration: underline;
}
.card-learning .card-download {
  width: 100%;
  background-color: #09374C;
  color: #fff;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
}
.card-learning .card-download img {
  height: 2.2rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
}
.card-learning .card-download i {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
}
.card-learning .card-download:hover {
  background-color: #03DDD5;
}
.card-learning .dot {
  height: 1rem;
  width: 1rem;
  border: 1px solid #09374C;
  border-radius: 1rem;
  position: absolute;
}
.card-learning .dot.dot-lt {
  left: 1.5rem;
  top: 1.5rem;
}
.card-learning .dot.dot-rt {
  right: 1.5rem;
  top: 1.5rem;
}
.card-learning .dot.dot-lb {
  left: 1.5rem;
  bottom: 1.5rem;
}
.card-learning .dot.dot-rb {
  right: 1.5rem;
  bottom: 1.5rem;
}
.card-learning .eng {
  height: 5rem;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  margin-left: -2.5rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-learning:hover .eng {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.learning-programas {
  padding: 10rem 0;
}
.learning-programas .chamada-cta-apple {
  margin-top: 6rem;
  font-size: 32px;
  font-size: 3.2rem;
}
.learning-programas .chamada-cta-apple i {
  font-size: 24px;
  font-size: 2.4rem;
}
.learning-programas .chamada-cta-apple:hover strong {
  text-decoration: underline;
}

.card-programa {
  background-color: #fff;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .card-programa {
    width: 32%;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .card-programa {
    width: 100%;
  }
}
.card-programa .card-prog-foto {
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-programa .card-prog-titulo {
  background-color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 800;
  width: 100%;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .card-programa .card-prog-titulo {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
.card-programa .card-prog-descricao {
  padding: 3rem;
  background-color: #fff;
  padding-top: 1rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .card-programa .card-prog-descricao {
    padding: 2rem;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.card-programa .card-prog-botao {
  background-color: #fff;
  text-align: center;
  padding: 1rem 3rem;
  padding-bottom: 1rem;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
}
.card-programa .card-prog-botao a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  background-image: url("../img/icone-link@2x.png");
  background-size: auto 2rem;
  background-position: center right;
  background-repeat: no-repeat;
  padding-right: 3rem;
}
.card-programa .card-prog-botao img {
  display: inline-block;
  height: 2rem;
}
.card-programa .card-prog-botao:hover {
  background-color: #09374C;
  color: #fff;
}

.learning-historias {
  padding: 10rem 0;
  background-color: #F3DD80;
}
.learning-historias .coluna-aspas {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.learning-historias .coluna-aspas:before {
  content: "";
  display: block;
  width: 5.4583333333vw;
  height: 4rem;
  background-image: url("../img/aspas@2x.png");
  background-position: right center;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.learning-historias .coluna-aspas:after {
  content: "";
  display: block;
  width: 5.4583333333vw;
  height: 4rem;
  background-image: url("../img/aspas@2x.png");
  background-position: right center;
  background-size: 3rem auto;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
}

.section-call-historias {
  background-color: #F3DD80;
}
.section-call-historias .container {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../img/learning-call-historia@2x.png");
  background-size: 40.25vw auto;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.biblioteca-intro {
  padding: 8rem 0;
  padding-top: 18rem;
  background-color: #A2195B;
}
@media screen and (max-width: 1099px) {
  .biblioteca-intro {
    padding-top: 12rem;
    padding-bottom: 2rem;
  }
}
.biblioteca-intro .coluna-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .biblioteca-intro .coluna-inputs {
    width: 45%;
  }
}
.biblioteca-intro .coluna-inputs .input-estilizado {
  width: 100%;
}
.biblioteca-intro .input-estilizado {
  position: relative;
}
.biblioteca-intro .input-estilizado label {
  display: none !important;
}
.biblioteca-intro .input-estilizado input {
  border: none;
  background-color: transparent;
  border-bottom: 2px solid #fff;
  height: 4rem;
  line-height: 4rem;
  width: 100%;
  font-family: "Catamaran", "Calibri", "Lucida Grande", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #fff;
}
.biblioteca-intro .input-estilizado i {
  background-color: transparent;
  border: none;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 22px;
  font-size: 2.2rem;
  color: #fff;
}
.biblioteca-intro ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.biblioteca-intro ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.biblioteca-intro :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.biblioteca-intro :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.biblioteca-categorias {
  padding: 2rem 0;
  background-color: #09374C;
  color: #fff;
}
.biblioteca-categorias .lista-categorias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1099px) {
  .biblioteca-categorias .lista-categorias {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.biblioteca-categorias .lista-categorias li {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 1099px) {
  .biblioteca-categorias .lista-categorias li {
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
  }
}
.biblioteca-categorias .lista-categorias span {
  color: #F3DD80;
}
.biblioteca-categorias .lista-categorias a:hover, .biblioteca-categorias .lista-categorias a.ativo {
  color: #F3DD80;
}

.biblioteca-externa {
  padding-bottom: 8rem;
  background-color: #A2195B;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1099px) {
  .biblioteca-externa {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.biblioteca-externa .biblioteca-ext-topo {
  padding-bottom: 10rem;
}
@media screen and (max-width: 1099px) {
  .biblioteca-externa .biblioteca-ext-topo .coluna-3 {
    margin-bottom: 5rem;
  }
}
.biblioteca-externa .biblioteca-ext-destaque {
  position: relative;
}
.biblioteca-externa .biblioteca-ext-destaque .img-dest {
  display: block;
  width: 63.1666666667vw;
  height: 0;
  padding-bottom: 65%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #03DDD5;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .biblioteca-externa .biblioteca-ext-destaque .img-dest {
    width: 60.1666666667vw;
  }
}
@media screen and (max-width: 599px) {
  .biblioteca-externa .biblioteca-ext-destaque .img-dest {
    width: 100vw;
    position: relative;
    left: -9vw;
  }
}
.biblioteca-externa .biblioteca-ext-destaque .card-biblioteca {
  width: 26.3333333333vw;
  position: absolute;
  bottom: -5rem;
  right: 0;
}
@media screen and (max-width: 599px) {
  .biblioteca-externa .biblioteca-ext-destaque .card-biblioteca {
    width: 100%;
  }
}
.biblioteca-externa.mini {
  padding-bottom: 0;
}
.biblioteca-externa.mini .biblioteca-ext-topo {
  padding-bottom: 0;
}
.biblioteca-externa.mini .biblioteca-ext-destaque .card-biblioteca {
  bottom: 4rem;
  right: auto;
  left: 4rem;
}
.biblioteca-externa .biblioteca-ext-cards .card-biblioteca {
  width: 26.3333333333vw;
  z-index: 1000;
}
@media screen and (max-width: 599px) {
  .biblioteca-externa .biblioteca-ext-cards .card-biblioteca {
    width: 100%;
    margin-bottom: 6rem;
  }
}

.biblioteca-ver-todas {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 2.5rem;
  padding-top: 5rem;
}
.biblioteca-ver-todas a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid #09374C;
  width: 26.33333vw;
}
@media screen and (max-width: 576px) {
  .biblioteca-ver-todas a {
    width: 100%;
  }
}
.biblioteca-ver-todas a span {
  display: inline-block;
  vertical-align: middle;
  padding: 1.25rem 0;
}
.biblioteca-ver-todas a img {
  display: inline-block;
  vertical-align: middle;
  height: 2rem;
  margin-left: 2rem;
}

.biblioteca-destaques {
  padding-bottom: 8rem;
  background-color: #A2195B;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 1099px) {
  .biblioteca-destaques .biblioteca-ext-topo .biblioteca-titulo {
    padding-bottom: 3rem;
  }
}
.biblioteca-destaques .biblioteca-ver {
  padding: 4rem 0;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
}
.biblioteca-destaques .biblioteca-ver .ativo {
  font-weight: bold;
  position: relative;
}
.biblioteca-destaques .biblioteca-ver .ativo::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.biblioteca-destaques .biblioteca-ver span {
  display: inline-block;
  margin: 0 1rem;
}
.biblioteca-destaques .bloco-slides-biblioteca {
  position: relative;
  width: 100%;
}
.biblioteca-destaques .bloco-slides-biblioteca .slick-autoplay-toggle-button:focus {
  color: #03DDD5 !important;
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .bloco-slides-biblioteca {
    width: 100vw;
    position: relative;
    left: -9vw;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .biblioteca-destaques .bloco-slides-biblioteca {
    width: 100%;
    left: 0;
  }
}
.biblioteca-destaques .bloco-slides-biblioteca .dots-biblioteca {
  display: inline-block;
  width: auto;
  position: relative;
  top: -6rem;
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .bloco-slides-biblioteca .dots-biblioteca {
    top: 0;
    width: 100%;
    text-align: center;
  }
}
.biblioteca-destaques .bloco-slides-biblioteca .bib-prev-depoimentos {
  width: 2rem;
  height: 5rem;
  background-image: url("../img/seta-lateral-grande@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  left: -4rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .bloco-slides-biblioteca .bib-prev-depoimentos {
    left: -4vw;
  }
}
.biblioteca-destaques .bloco-slides-biblioteca .bib-next-depoimentos {
  width: 2rem;
  height: 5rem;
  background-image: url("../img/seta-lateral-grande@2x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -2.5rem;
  right: -4rem;
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .bloco-slides-biblioteca .bib-next-depoimentos {
    right: -4vw;
  }
}
.biblioteca-destaques .bloco-slides-biblioteca .slick-disabled {
  opacity: 0.2;
}
.biblioteca-destaques .bloco-slides-biblioteca .slick-autoplay-toggle-button {
  color: #fff;
  opacity: 1;
  position: absolute;
  bottom: 5rem;
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .biblioteca-destaques .bloco-slides-biblioteca .slick-autoplay-toggle-button {
    bottom: 0;
  }
}
.biblioteca-destaques .bloco-slides-biblioteca .pause-icon-cus {
  color: #fff;
  opacity: 1;
}
.biblioteca-destaques .bloco-slides-biblioteca .pause-icon-cus span {
  display: block;
  text-align: center;
}
.biblioteca-destaques .bloco-slides-biblioteca .pause-icon-cus .label {
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 5px;
}
.biblioteca-destaques .biblioteca-ext-destaque {
  position: relative;
  padding: 0 10px;
  padding-bottom: 12rem;
  width: 100%;
}
.biblioteca-destaques .biblioteca-ext-destaque .img-dest {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #03DDD5;
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .biblioteca-ext-destaque .img-dest {
    padding-bottom: 70%;
  }
}
.biblioteca-destaques .biblioteca-ext-destaque .card-biblioteca {
  width: 26.3333333333vw;
  position: absolute;
  bottom: 4rem;
  right: 10px;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .biblioteca-destaques .biblioteca-ext-destaque .card-biblioteca {
    width: 55%;
  }
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .biblioteca-ext-destaque .card-biblioteca {
    width: 82vw;
    right: 9vw;
  }
}
@media screen and (max-width: 599px) and (orientation: landscape) {
  .biblioteca-destaques .biblioteca-ext-destaque .card-biblioteca {
    width: 90%;
    right: 10px;
  }
}
.biblioteca-destaques .biblioteca-ext-cards {
  margin-top: 5rem;
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .biblioteca-ext-cards {
    margin-top: 0;
  }
}
.biblioteca-destaques .biblioteca-ext-cards .card-biblioteca {
  width: 25.8333333333vw;
  margin-right: 1.5vw;
  margin-bottom: 7rem;
}
@media screen and (max-width: 1099px) and (orientation: landscape) {
  .biblioteca-destaques .biblioteca-ext-cards .card-biblioteca {
    width: 32%;
    margin-right: 1.5%;
  }
}
@media screen and (max-width: 599px) {
  .biblioteca-destaques .biblioteca-ext-cards .card-biblioteca {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5rem;
  }
}
.biblioteca-destaques .biblioteca-ext-cards .card-biblioteca:nth-child(3n) {
  margin-right: 0;
}
.biblioteca-destaques .blog-mais-artigos {
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .biblioteca-destaques .blog-mais-artigos {
    margin-top: 4rem;
  }
}
.biblioteca-destaques .paginacao {
  margin-top: 10rem;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .biblioteca-destaques .paginacao {
    margin-top: 2rem;
  }
}
.biblioteca-destaques .paginacao .page-numbers {
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}
.biblioteca-destaques .paginacao .current {
  color: #09374C;
}
.biblioteca-destaques .biblioteca-titulo strong {
  color: #09374C;
}

@media screen and (max-width: 1099px) {
  .biblioteca-single .single-titulo {
    margin-bottom: 5rem;
  }
}

.card-biblioteca {
  background-color: #09374C;
  color: #fff;
  position: relative;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
}
.card-biblioteca .blog-card-capa {
  width: 100%;
  height: 0;
  padding-bottom: 55%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.card-biblioteca .card-biblio-conteudo {
  display: block;
  padding: 4rem;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1099px) {
  .card-biblioteca .card-biblio-conteudo {
    padding: 3rem;
  }
}
.card-biblioteca .card-biblio-conteudo small {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 1099px) {
  .card-biblioteca .card-biblio-conteudo small {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.card-biblioteca .card-biblio-conteudo h2, .card-biblioteca .card-biblio-conteudo h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 1099px) {
  .card-biblioteca .card-biblio-conteudo h2, .card-biblioteca .card-biblio-conteudo h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.card-biblioteca .dot {
  height: 1rem;
  width: 1rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  position: absolute;
}
.card-biblioteca .dot.dot-lt {
  left: 1.5rem;
  top: 1.5rem;
}
.card-biblioteca .dot.dot-rt {
  right: 1.5rem;
  top: 1.5rem;
}
.card-biblioteca .dot.dot-lb {
  left: 1.5rem;
  bottom: 1.5rem;
}
.card-biblioteca .dot.dot-rb {
  right: 1.5rem;
  bottom: 1.5rem;
}
.card-biblioteca .inside-mais {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 2rem;
}
.card-biblioteca .inside-mais .saibamais .desc-invisivel {
  display: none;
}
.card-biblioteca .inside-mais .saibamais:hover {
  background-color: #fff;
  color: #09374C;
  border: 0.3rem solid #09374C;
}
.card-biblioteca .inside-mais .saibamais:hover .dot-l, .card-biblioteca .inside-mais .saibamais:hover .dot-r {
  border: 2px solid #09374C;
}
.card-biblioteca .eng {
  height: 5rem;
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  margin-left: -2.5rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.card-biblioteca:hover .eng {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.card-biblioteca.noimg .card-biblio-conteudo {
  height: 100%;
}

.biblioteca-single {
  padding: 8rem 0;
}
.biblioteca-single .categoria {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 800;
}
.biblioteca-single .bloco-imagem {
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
}
.biblioteca-single .helper-data {
  font-size: 20px;
  font-size: 2rem;
  color: #09374C;
}
.biblioteca-single .compartilhar {
  margin-top: 3rem;
}
.biblioteca-single .compartilhar .lista-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.biblioteca-single .compartilhar small {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.biblioteca-single .social {
  display: inline-block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 4.4rem;
  background-color: #09374C;
  color: #fff;
  border-radius: 5rem;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 1rem;
}
.biblioteca-single .biblioteca-conteudo {
  padding-top: 8rem;
}
@media screen and (max-width: 599px) {
  .biblioteca-single .biblioteca-conteudo {
    padding-top: 2rem;
  }
}

.con-padrao {
  display: block !important;
}

.con-contraste {
  display: none !important;
}

.contraste {
  height: auto;
  background-color: #000 !important;
  color: #fff;
}
.contraste .home-parceiros {
  background-color: #fff;
}
.contraste .con-padrao {
  display: none !important;
}
.contraste .con-contraste {
  display: block !important;
}
.contraste .section-header {
  background-color: #121212;
  color: #fff;
}
.contraste .section-header .header-menu-lista {
  color: #fff;
}
.contraste .section-header .header-aux-lista .fsizer {
  color: #fff;
}
.contraste .section-header .header-aux-lista .social {
  color: #fff;
}
.contraste .home-quemsomos {
  background-color: #000;
}
.contraste .home-quemsomos .layout-flex:before {
  display: none;
}
.contraste .home-capa {
  background-color: #000;
}
.contraste .home-capa .arte-lateral {
  background-color: #000;
}
.contraste .dialogo-cookie-controle {
  background-color: #000;
}
.contraste .home-produtos, .contraste .home-mapa, .contraste .home-depoimentos, .contraste .home-learning-partner {
  background-color: #000;
  color: #fff;
}
.contraste .home-produtos .num, .contraste .home-mapa .num, .contraste .home-depoimentos .num, .contraste .home-learning-partner .num {
  background-color: #09374C;
}
.contraste .home-eventos .home-eventos-titulo {
  background-color: #000;
  border-color: #fff;
  color: #fff;
}
.contraste .home-eventos {
  border-color: #fff;
}
.contraste .biblioteca-externa {
  background-color: #000;
}
.contraste .call-newsletter, .contraste .footer, .contraste .footer-dados {
  background-color: #000;
  color: #fff;
}
.contraste .call-newsletter .coluna-dir, .contraste .footer .coluna-dir, .contraste .footer-dados .coluna-dir {
  color: #fff;
}
.contraste .atuacao-capa {
  background-color: #000;
  color: #fff;
}
.contraste .azuldark {
  color: #fff;
}
.contraste .atuacao-produtos-nav {
  background-color: #000;
}
.contraste .atuacao-produtos-info {
  background-color: #000;
}
.contraste .atuacao-equipe-intro {
  background-color: #000;
}
.contraste .lista-equipe .membro-equipe .minibio {
  background-color: #09374C;
}
.contraste .lista-equipe .membro-equipe .minibio h3 {
  color: #fff;
}
.contraste .cases-filtros {
  background-color: #000;
}
.contraste .select-estilizado select {
  color: #fff;
  background-color: #000;
}
.contraste .atuacao-equipe-intro ::-webkit-input-placeholder, .contraste .cases-filtros ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.contraste .atuacao-equipe-intro ::-moz-placeholder, .contraste .cases-filtros ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.contraste .atuacao-equipe-intro :-ms-input-placeholder, .contraste .cases-filtros :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.contraste .atuacao-equipe-intro :-moz-placeholder, .contraste .cases-filtros :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.contraste .modal {
  background-color: #000;
  color: #fff;
}
.contraste .modal .intro h2 {
  color: #fff;
}
.contraste .modal .intro .descricao {
  color: #fff;
}
.contraste .modal .parc-icone {
  color: #fff;
}
.contraste .learning-capa {
  background-color: #000;
}
.contraste .learning-info .learning-info-bloco {
  border-top: 1px solid #fff;
}
.contraste .learning-info {
  color: #fff;
}
.contraste .learning-biblioteca {
  background-color: #000;
}
.contraste .card-learning {
  background-color: #09374C;
}
.contraste .card-programa {
  border: 4px solid #09374C;
  background-color: #09374C;
}
.contraste .card-programa .card-prog-titulo {
  background-color: #000;
}
.contraste .card-programa .card-prog-descricao {
  background-color: #09374C;
}
.contraste .card-programa .card-prog-botao {
  background-color: #000;
}
.contraste .learning-historias {
  background-color: #000;
}
.contraste .section-call-historias {
  background-color: #000;
}
.contraste .biblioteca-intro {
  background-color: #000;
}
.contraste .biblioteca-destaques {
  background-color: #000;
}
.contraste .footer .footer-sociais .social {
  background-color: #000;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
}
.contraste .home-eventos .proximo-ev .data {
  background-color: #fff;
  color: #000;
}
.contraste .chamada-whatsapp {
  background-color: #fff;
}
.contraste .go-topo {
  background-color: #fff;
  color: #000;
}
.contraste .breadcrumb {
  color: #fff !important;
}
.contraste .verdetxt {
  color: #fff;
}
.contraste .atuacao-produtos-nav .produto-card .info-produto {
  background-color: #000;
}
.contraste .atuacao-produtos-nav .produto-card .info-produto small {
  color: #fff;
}
.contraste .atuacao-produtos-nav .produto-card.ativo .info-produto {
  color: #03DDD5;
}
.contraste .atuacao-produtos-nav .produto-card.ativo .info-produto small {
  color: #03DDD5;
}
.contraste .atuacao-produtos-info .produto-conteudo {
  background-color: #000;
  color: #fff;
  border: 5px solid #03DDD5;
}
.contraste .sobre-chamada-meio {
  background-color: #000;
}
.contraste .atuacao-equipe-intro .modulo-busca input {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.contraste .cases-filtros .input-estilizado i {
  color: #fff;
}
.contraste .cases-filtros .input-estilizado input {
  color: #fff;
}
.contraste .modal .intro h3 {
  color: #03DDD5;
}
.contraste .modal .modal-fechar {
  color: #03DDD5;
  border-color: #03DDD5;
}
.contraste .learning-info .learning-tipo-evento h3 {
  color: #000;
  font-weight: bold;
}
.contraste .learning-info .proximo-ev .data {
  color: #000;
}

.modelo-padrao {
  height: 60vh;
}