@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
/*
@font-face {
  font-family: 'Timeless';
  src: url('../font/Timeless-Bold.woff2') format('woff2'),
  url('../font/Timeless-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Timeless';
  src: url('../font/Timeless-Normal.woff2') format('woff2'),
  url('../font/Timeless-Normal.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Black';
  src: url('../font/roboto/Roboto-Black.woff2') format('woff2'),
  url('../font/roboto/Roboto-Black.woff') format('woff'),
  url('../font/roboto/Roboto-Black.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Black';
  src: url('../font/roboto/Roboto-Light.woff2') format('woff2'),
  url('../font/roboto/Roboto-Light.woff') format('woff'),
  url('../font/roboto/Roboto-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



@font-face {
  font-family: 'Hug Me Tight';
  src: url('../font/HugMeTight.eot');
  src: url('../font/HugMeTight.eot?#iefix') format('embedded-opentype'),
  url('../font/HugMeTight.woff2') format('woff2'),
  url('../font/HugMeTight.woff') format('woff'),
  url('../font/HugMeTight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../font/productsans/ProductSans-BoldItalic.eot');
  src: url('../font/productsans/ProductSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
  url('../font/productsans/ProductSans-BoldItalic.woff2') format('woff2'),
  url('../font/productsans/ProductSans-BoldItalic.woff') format('woff'),
  url('../font/productsans/ProductSans-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../font/productsans/ProductSans-Bold.eot');
  src: url('../font/productsans/ProductSans-Bold.eot?#iefix') format('embedded-opentype'),
  url('../font/productsans/ProductSans-Bold.woff2') format('woff2'),
  url('../font/productsans/ProductSans-Bold.woff') format('woff'),
  url('../font/productsans/ProductSans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../font/productsans/ProductSans-Italic.eot');
  src: url('../font/productsans/ProductSans-Italic.eot?#iefix') format('embedded-opentype'),
  url('../font/productsans/ProductSans-Italic.woff2') format('woff2'),
  url('../font/productsans/ProductSans-Italic.woff') format('woff'),
  url('../font/productsans/ProductSans-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Product Sans';
  src: url('../font/productsans/ProductSans-Regular.eot');
  src: url('../font/productsans/ProductSans-Regular.eot?#iefix') format('embedded-opentype'),
  url('../font/productsans/ProductSans-Regular.woff2') format('woff2'),
  url('../font/productsans/ProductSans-Regular.woff') format('woff'),
  url('../font/productsans/ProductSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .flex > * {
    display: list-item;
    list-style: none; }

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

a:focus {
  outline: none !important; }

.btn {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  overflow: overlay;
  text-transform: uppercase;
  background: none;
  color: #fff;
  font-size: 0.9em;
  border: 1px solid #0b3a4c;
  padding: 5px 19px;
  position: relative;
  background: #0b3a4c;
  font-weight: 700;
  border-radius: 5px; }
  .btn span {
    position: relative;
    z-index: 1; }
  .btn:focus, .btn:active {
    box-shadow: none !important; }
  .btn:hover, .btn:focus {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 0.2);
    box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 0.2); }
  .btn:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
  .btn:hover, .btn:focus, .btn:active {
    background: #fff;
    border-color: #0b3a4c;
    color: #0b3a4c; }
    .btn:hover:before, .btn:focus:before, .btn:active:before {
      height: 100%; }
  .btn.btn-primary {
    border-color: #575757 !important;
    background: #575757 !important; }
    .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary:active {
      border-color: #575757 !important;
      color: #575757 !important; }
  .btn.btn-secondary {
    border-color: #014fa1;
    background: #014fa1 !important; }
    .btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active {
      border-color: #014fa1 !important;
      color: #014fa1 !important; }
    .btn.btn-secondary.reverse {
      background: #fff !important; }
      .btn.btn-secondary.reverse:before {
        background: #014fa1 !important; }
      .btn.btn-secondary.reverse span {
        color: #014fa1 !important; }
      .btn.btn-secondary.reverse:hover, .btn.btn-secondary.reverse:focus, .btn.btn-secondary.reverse:active {
        color: #014fa1 !important; }
        .btn.btn-secondary.reverse:hover span, .btn.btn-secondary.reverse:focus span, .btn.btn-secondary.reverse:active span {
          color: #fff !important; }

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

.label {
  background: #000;
  padding: 4px 19px;
  color: #fff;
  font-weight: 700;
  border-radius: 13px;
  font-size: 0.9em;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: default;
  border: 2px solid #000; }
  .label span {
    position: relative;
    z-index: 1; }
  .label:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
  .label:hover, .label:focus {
    color: #000;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 0.2);
    box-shadow: 3px 3px 0 0 rgba(34, 34, 34, 0.2); }
    .label:hover:before, .label:focus:before {
      height: 100%; }
  .label.label-danger {
    background: #e60000;
    border-color: #e60000; }
    .label.label-danger:hover, .label.label-danger:focus {
      color: #e60000; }

.not-found {
  text-align: center;
  font-size: 1.2em;
  color: #575757;
  font-style: italic; }

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1596px; }
    .container.padrao {
      max-width: 1140px; } }
/*Erro fomrul├írio*/
.has-error {
  border-color: red !important; }

/*FUN├ç├òES SASS*/
button {
  cursor: pointer; }

body {
  font-size: 1em;
  font-family: 'Roboto', sans-serif; }
  body section.error-404 {
    padding: 50px 0; }
    body section.error-404 .animated {
      -webkit-animation-duration: 18s;
      animation-duration: 18s;
      width: 100%;
      max-height: 450px;
      object-fit: contain; }
      body section.error-404 .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite; }
    body section.error-404 h1 {
      color: #00529c;
      font-size: 2em;
      line-height: 60px; }
      body section.error-404 h1 span {
        font-size: 3em;
        display: block;
        font-weight: 600; }
    body section.error-404 h2 {
      font-size: 1.5em;
      margin-bottom: 50px; }
    body section.error-404 .box {
      margin-top: 126px;
      text-align: center; }
      body section.error-404 .box img {
        width: 100%;
        display: block;
        margin-bottom: 26px; }
    body section.error-404 .btn {
      background-color: #00529c !important;
      border-color: #00529c !important; }
      body section.error-404 .btn:hover {
        color: #00529c !important; }
  body section.formulario-enviado {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #565656; }
    body section.formulario-enviado h1 {
      font-weight: 600;
      font-size: 2.8em; }
    body section.formulario-enviado p {
      font-weight: 500; }
    body section.formulario-enviado .btn {
      display: inline-block;
      font-weight: 700;
      background: #00529c !important;
      border-color: #00529c !important;
      color: #fff;
      padding: 11px 20px;
      border-radius: 7px;
      text-transform: none; }
      body section.formulario-enviado .btn:before {
        background: #fff; }
      body section.formulario-enviado .btn:hover, body section.formulario-enviado .btn:focus {
        color: #00529c !important; }
  body header section.header section.header-topo {
    background-color: #0051a0; }
    body header section.header section.header-topo .box-topo {
      display: flex;
      justify-content: space-around; }
      @media screen and (max-width: 991px) {
        body header section.header section.header-topo .box-topo {
          display: block;
          text-align: center; } }
      body header section.header section.header-topo .box-topo .box-contato {
        display: inline-flex;
        cursor: pointer;
        position: relative; }
        @media screen and (max-width: 991px) {
          body header section.header section.header-topo .box-topo .box-contato.first {
            margin-right: 5px; }
          body header section.header section.header-topo .box-topo .box-contato.box-duvidas {
            display: none; } }
        @media screen and (max-width: 350px) {
          body header section.header section.header-topo .box-topo .box-contato.first {
            margin-right: 0px; } }
        body header section.header section.header-topo .box-topo .box-contato .icon {
          font-size: 43px;
          margin-right: 5px; }
          body header section.header section.header-topo .box-topo .box-contato .icon i.fas.fa-phone-square {
            color: white; }
          body header section.header section.header-topo .box-topo .box-contato .icon i.fab.fa-whatsapp-square {
            color: white; }
          body header section.header section.header-topo .box-topo .box-contato .icon i.fas.fa-envelope-square {
            color: #00b3d0; }
          body header section.header section.header-topo .box-topo .box-contato .icon i.fas.fa-comment-dollar {
            color: #00b3d0; }
        body header section.header section.header-topo .box-topo .box-contato .txt {
          padding-top: 9px;
          white-space: nowrap; }
          body header section.header section.header-topo .box-topo .box-contato .txt .ref {
            text-align: left;
            font-size: 12px;
            font-weight: 500;
            color: white;
            letter-spacing: 0.1em; }
            @media screen and (max-width: 991px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .ref {
                font-weight: 800; } }
            @media screen and (max-width: 768px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .ref {
                font-size: 12px;
                margin-bottom: 4px; } }
            @media screen and (max-width: 768px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .ref {
                font-size: 12px;
                margin-bottom: 4px; } }
          body header section.header section.header-topo .box-topo .box-contato .txt .number {
            font-size: 19px;
            font-weight: 400;
            color: white;
            margin-top: -2px; }
            @media screen and (max-width: 991px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .number {
                font-weight: 800; } }
            @media screen and (max-width: 768px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .number {
                font-size: 16px; } }
            @media screen and (max-width: 370px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .number {
                font-size: 14px; } }
            @media screen and (max-width: 332px) {
              body header section.header section.header-topo .box-topo .box-contato .txt .number {
                font-size: 13px; } }
        body header section.header section.header-topo .box-topo .box-contato::after {
          content: '';
          position: absolute;
          bottom: 5px;
          left: 0px;
          height: 1px;
          width: 0px;
          background-color: #fff;
          -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -ms-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s; }
          @media screen and (max-width: 991px) {
            body header section.header section.header-topo .box-topo .box-contato::after {
              background-color: #011941; } }
        body header section.header section.header-topo .box-topo .box-contato:hover::after {
          width: 100%; }
  body header section.header section.header-menu {
    padding: 5px 0px;
    position: relative; }
    body header section.header section.header-menu .menu-icon {
      z-index: 2;
      position: absolute;
      left: 10px;
      top: 22px;
      font-size: 38px;
      color: #0051a0;
      border: 1px solid #0051a0;
      padding: 5px 10px;
      border-radius: 5px; }
      @media screen and (min-width: 992px) {
        body header section.header section.header-menu .menu-icon {
          display: none; } }
    body header section.header section.header-menu .logo {
      text-align: center; }
      body header section.header section.header-menu .logo img {
        width: 100%;
        height: 100%;
        max-width: 264px;
        max-height: 80px;
        object-fit: contain; }
        @media screen and (max-width: 991px) {
          body header section.header section.header-menu .logo img {
            margin-top: 20px;
            max-width: 200px; } }
    body header section.header section.header-menu .box-principal {
      display: flex;
      justify-content: space-around;
      height: 100%;
      width: 100%; }
      body header section.header section.header-menu .box-principal .box-menu {
        display: flex;
        justify-content: space-around;
        width: 100%; }
        body header section.header section.header-menu .box-principal .box-menu ul.menu-desktop {
          margin: 0px;
          padding: 0px;
          display: flex;
          justify-content: space-around;
          width: 100%; }
          body header section.header section.header-menu .box-principal .box-menu ul.menu-desktop li {
            list-style: none;
            display: flex;
            align-items: center; }
            body header section.header section.header-menu .box-principal .box-menu ul.menu-desktop li a.paginas {
              color: #565656;
              text-transform: uppercase;
              font-size: 14px;
              font-weight: 500;
              position: relative; }
              body header section.header section.header-menu .box-principal .box-menu ul.menu-desktop li a.paginas::after {
                content: url("../../media/imagens/link-hover.png");
                position: absolute;
                top: 1px;
                left: -23px;
                opacity: 0;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body header section.header section.header-menu .box-principal .box-menu ul.menu-desktop li a.paginas:hover::after, body header section.header section.header-menu .box-principal .box-menu ul.menu-desktop li a.paginas.atual::after {
                opacity: 1; }
      body header section.header section.header-menu .box-principal .box-redes {
        display: flex;
        justify-content: space-around;
        width: 125px;
        margin: auto; }
        body header section.header section.header-menu .box-principal .box-redes ul.redes-sociais {
          display: flex;
          justify-content: space-around;
          width: 100%;
          margin: 0px auto;
          padding: 0px; }
          body header section.header section.header-menu .box-principal .box-redes ul.redes-sociais li {
            list-style: none;
            display: flex;
            align-items: center; }
            body header section.header section.header-menu .box-principal .box-redes ul.redes-sociais li a .icon {
              font-size: 28px;
              color: #004a92;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body header section.header section.header-menu .box-principal .box-redes ul.redes-sociais li a .icon i.fab.fa-instagram {
                background-color: #004a92;
                color: white;
                padding: 2px 3px;
                font-size: 22px;
                border-radius: 4px;
                margin-top: -1px;
                display: block;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body header section.header section.header-menu .box-principal .box-redes ul.redes-sociais li a .icon:hover {
                color: #00b3d0; }
                body header section.header section.header-menu .box-principal .box-redes ul.redes-sociais li a .icon:hover i.fab.fa-instagram {
                  background-color: #00b3d0; }
      @media screen and (max-width: 991px) {
        body header section.header section.header-menu .box-principal {
          display: grid; }
          body header section.header section.header-menu .box-principal .box-menu {
            display: none; }
          body header section.header section.header-menu .box-principal .box-redes {
            margin: 15px 0px 0px 0px; } }
  body header .menu-mobile {
    background-color: white;
    position: fixed;
    top: 100%;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 998;
    padding-bottom: 65px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
    body header .menu-mobile.aberto {
      top: 0px; }
    body header .menu-mobile .fechar {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 30px;
      font-weight: 700;
      color: #565656; }
    body header .menu-mobile .logo {
      width: 100%;
      padding: 10px;
      margin-bottom: 20px; }
      body header .menu-mobile .logo img {
        width: 80%;
        max-height: 85px;
        object-fit: contain; }
    body header .menu-mobile ul {
      padding: 0px; }
      body header .menu-mobile ul li {
        list-style: none;
        border: 1px solid #565656;
        margin: 5px;
        padding: 2px;
        text-align: center;
        text-transform: uppercase; }
        body header .menu-mobile ul li a {
          color: #565656;
          font-size: 19px;
          font-weight: 700;
          display: inline-block;
          width: 100%; }
  body main section.paginacao {
    padding: 50px 0px 100px 0px; }
    body main section.paginacao .paginacao-box {
      margin: auto; }
      body main section.paginacao .paginacao-box li {
        padding: 5px 15px; }
        body main section.paginacao .paginacao-box li a {
          color: black;
          font-size: 22px; }
        body main section.paginacao .paginacao-box li.active, body main section.paginacao .paginacao-box li:hover {
          background: #bd8500; }
          body main section.paginacao .paginacao-box li.active a, body main section.paginacao .paginacao-box li:hover a {
            color: white; }
  body main section.head-home-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 14;
    /*  Mobile  */
    /*  DeskTop */ }
    @media screen and (max-width: 768px) {
      body main section.head-home-banner {
        z-index: 13; } }
    body main section.head-home-banner .owl-banner div.item, body main section.head-home-banner .owl-banner-mobile div.item {
      width: 100%; }
      body main section.head-home-banner .owl-banner div.item img, body main section.head-home-banner .owl-banner-mobile div.item img {
        width: 100%;
        object-fit: cover; }
    body main section.head-home-banner .owl-banner .owl-dots, body main section.head-home-banner .owl-banner-mobile .owl-dots {
      text-align: center;
      position: absolute;
      width: 100%;
      z-index: 9999;
      bottom: 0px; }
      body main section.head-home-banner .owl-banner .owl-dots .owl-dot, body main section.head-home-banner .owl-banner-mobile .owl-dots .owl-dot {
        outline: none;
        display: inline-block;
        background: url("../image/dots.png") no-repeat;
        width: 20px;
        height: 20px;
        margin: 0 5px; }
        body main section.head-home-banner .owl-banner .owl-dots .owl-dot.active, body main section.head-home-banner .owl-banner-mobile .owl-dots .owl-dot.active {
          background: url("../image/dots-active.png") no-repeat; }
    @media screen and (max-width: 767px) {
      body main section.head-home-banner .owl-banner {
        display: none; } }
    @media screen and (min-width: 768px) {
      body main section.head-home-banner .owl-banner-mobile {
        display: none; } }
  body main section.servico-destaque .button-container {
    display: flex;
    justify-content: center;
    align-items: center; }
    body main section.servico-destaque .button-container a {
      color: #000000; }
    body main section.servico-destaque .button-container .inner-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px; }
      @media screen and (max-width: 992px) {
        body main section.servico-destaque .button-container .inner-container {
          padding: 0; } }
      body main section.servico-destaque .button-container .inner-container .image {
        position: relative;
        width: 100%; }
        body main section.servico-destaque .button-container .inner-container .image img {
          width: 100%;
          -webkit-box-shadow: -35px -35px 3px 0px rgba(255, 255, 255, 0.5);
          -moz-box-shadow: -35px -35px 3px 0px rgba(255, 255, 255, 0.5);
          box-shadow: -35px -35px 3px 0px rgba(255, 255, 255, 0.5); }
        body main section.servico-destaque .button-container .inner-container .image .mask {
          position: absolute;
          display: flex;
          justify-content: center;
          align-items: center;
          top: 0;
          right: 0;
          width: 100%;
          height: 100%;
          border-radius: 8px; }
          body main section.servico-destaque .button-container .inner-container .image .mask img.focus {
            display: none; }
          body main section.servico-destaque .button-container .inner-container .image .mask:hover {
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            cursor: pointer;
            background-color: rgba(0, 82, 156, 0.75);
            position: absolute;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            border-radius: 8px; }
            body main section.servico-destaque .button-container .inner-container .image .mask:hover img.focus {
              display: initial;
              width: 42px;
              height: 42px;
              -webkit-box-shadow: none;
              -moz-box-shadow: none;
              box-shadow: none; }
      body main section.servico-destaque .button-container .inner-container h2 {
        font-size: 1.2rem;
        margin: 10px;
        color: #00529c; }
      body main section.servico-destaque .button-container .inner-container h3 {
        text-align: center;
        padding: 0px 10px;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 300; }
  body main section.servico-destaque .text-container {
    display: flex;
    justify-content: center;
    align-items: center; }
    body main section.servico-destaque .text-container .inner-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px; }
      body main section.servico-destaque .text-container .inner-container .title {
        display: flex;
        flex-direction: column;
        width: 265px;
        margin-bottom: 15px; }
        body main section.servico-destaque .text-container .inner-container .title .first {
          display: flex;
          align-items: center; }
          body main section.servico-destaque .text-container .inner-container .title .first h1 {
            white-space: nowrap;
            margin: 0;
            font-size: 2rem;
            font-weight: 600;
            color: #00529c;
            position: relative; }
          body main section.servico-destaque .text-container .inner-container .title .first .separador {
            background-color: #cecece;
            height: 4px;
            width: 100%;
            margin-left: 8px; }
        body main section.servico-destaque .text-container .inner-container .title .second {
          display: flex;
          align-items: center; }
          body main section.servico-destaque .text-container .inner-container .title .second h1 {
            white-space: nowrap;
            display: flex;
            margin: 0;
            font-size: 2rem;
            font-weight: 600;
            color: #04a00b; }
          body main section.servico-destaque .text-container .inner-container .title .second .separador {
            background-color: #cecece;
            height: 4px;
            width: 100%;
            margin-right: 8px; }
      body main section.servico-destaque .text-container .inner-container .description h2 {
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 300; }
  body main section.servico-destaque-card .title {
    display: flex;
    justify-content: center;
    align-items: center; }
    body main section.servico-destaque-card .title .separador1 {
      background-color: #cecece;
      height: 4px;
      width: 100%;
      margin-right: 8px; }
      @media screen and (max-width: 1201px) {
        body main section.servico-destaque-card .title .separador1 {
          display: none; } }
    body main section.servico-destaque-card .title h1 {
      text-align: center;
      white-space: nowrap;
      font-size: 1.5rem;
      font-weight: 600;
      margin: 20px 0;
      color: #00529c; }
      @media screen and (max-width: 1201px) {
        body main section.servico-destaque-card .title h1 {
          white-space: unset; } }
    body main section.servico-destaque-card .title .separador2 {
      background-color: #cecece;
      height: 4px;
      width: 100%;
      margin-left: 8px; }
      @media screen and (max-width: 1201px) {
        body main section.servico-destaque-card .title .separador2 {
          display: none; } }
  body main section.servico-destaque-card .servicos-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px; }
    body main section.servico-destaque-card .servicos-card-container img {
      width: 100%;
      border-radius: 5px;
      height: 175px;
      object-fit: cover; }
    body main section.servico-destaque-card .servicos-card-container h2 {
      font-size: .80rem;
      font-weight: 600;
      margin: 15px 0;
      text-transform: uppercase;
      color: #00529c; }
    body main section.servico-destaque-card .servicos-card-container .button-container {
      width: 100%;
      display: flex;
      justify-content: space-between; }
      body main section.servico-destaque-card .servicos-card-container .button-container a {
        width: 47%; }
        body main section.servico-destaque-card .servicos-card-container .button-container a .button {
          padding: 3px 0px;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 20px;
          font-size: .8rem; }
          body main section.servico-destaque-card .servicos-card-container .button-container a .button.saiba-mais {
            border: solid 2px #00529c;
            font-weight: 600;
            color: #00529c;
            position: relative;
            overflow: hidden;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button.saiba-mais::after {
              content: '';
              position: absolute;
              width: 100%;
              height: 100%;
              left: 0px;
              top: 100%;
              background-color: #00529c;
              z-index: -1;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button.saiba-mais:hover {
              color: white; }
              body main section.servico-destaque-card .servicos-card-container .button-container a .button.saiba-mais:hover::after {
                top: 0px; }
          body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido {
            cursor: pointer;
            border: solid 2px #ff0000;
            font-weight: 600;
            color: #ff0000;
            position: relative;
            overflow: hidden;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido::after {
              content: '';
              position: absolute;
              width: 100%;
              height: 100%;
              left: 0px;
              top: 100%;
              background-color: red;
              z-index: -1;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido:hover {
              color: white; }
              body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido:hover::after {
                top: 0px; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido.cor-interna {
              border: solid 2px #04a00b;
              color: #04a00b; }
              body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido.cor-interna::after {
                background-color: #04a00b; }
              body main section.servico-destaque-card .servicos-card-container .button-container a .button.orcamento-rapido.cor-interna:hover {
                background-color: #04a00b;
                color: #ffffff; }
        @media screen and (max-width: 1300px) {
          body main section.servico-destaque-card .servicos-card-container .button-container a {
            width: 49%; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button {
              font-size: .75rem; } }
        @media screen and (max-width: 1199px) {
          body main section.servico-destaque-card .servicos-card-container .button-container a {
            width: 47%; }
            body main section.servico-destaque-card .servicos-card-container .button-container a .button {
              font-size: .8rem; } }
  body main .custom-hr {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 992px) {
      body main .custom-hr {
        display: none; } }
    body main .custom-hr .custom-hr-lines {
      position: relative; }
      body main .custom-hr .custom-hr-lines::after {
        position: absolute;
        top: -140px;
        right: calc(50% - 1px);
        content: '';
        width: 2px;
        height: 130px;
        background-color: #00529c; }
      body main .custom-hr .custom-hr-lines::before {
        position: absolute;
        bottom: -140px;
        right: calc(50% - 1px);
        content: '';
        width: 2px;
        height: 130px;
        background-color: #00529c; }
  body main section.cases-de-sucesso .button-container {
    display: flex;
    justify-content: center;
    align-items: center; }
    body main section.cases-de-sucesso .button-container .inner-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px; }
      body main section.cases-de-sucesso .button-container .inner-container img {
        width: 100%;
        border-radius: 15px;
        margin-bottom: 15px;
        -webkit-box-shadow: -35px -35px 3px 0px rgba(255, 255, 255, 0.5);
        -moz-box-shadow: -35px -35px 3px 0px rgba(255, 255, 255, 0.5);
        box-shadow: -35px -35px 3px 0px rgba(255, 255, 255, 0.5); }
      body main section.cases-de-sucesso .button-container .inner-container h2 {
        font-size: 1.2rem;
        color: #00529c; }
      body main section.cases-de-sucesso .button-container .inner-container h3 {
        text-align: center;
        padding: 0px 10px;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 300;
        color: black; }
  body main section.cases-de-sucesso .text-container {
    display: flex;
    justify-content: center;
    align-items: center; }
    body main section.cases-de-sucesso .text-container .inner-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
      margin-bottom: 15px; }
      body main section.cases-de-sucesso .text-container .inner-container .title {
        display: flex;
        flex-direction: column;
        width: 265px; }
        body main section.cases-de-sucesso .text-container .inner-container .title .first {
          display: flex;
          align-items: center; }
          body main section.cases-de-sucesso .text-container .inner-container .title .first h1 {
            white-space: nowrap;
            margin: 0;
            font-size: 2rem;
            font-weight: 600;
            color: #00529c;
            position: relative; }
          body main section.cases-de-sucesso .text-container .inner-container .title .first .separador {
            background-color: #cecece;
            height: 4px;
            width: 100%;
            margin-left: 8px; }
        body main section.cases-de-sucesso .text-container .inner-container .title .second {
          display: flex;
          align-items: center; }
          body main section.cases-de-sucesso .text-container .inner-container .title .second h1 {
            white-space: nowrap;
            display: flex;
            margin: 0;
            font-size: 2rem;
            font-weight: 600;
            color: #04a00b; }
          body main section.cases-de-sucesso .text-container .inner-container .title .second .separador {
            background-color: #cecece;
            height: 4px;
            width: 100%;
            margin-right: 8px; }
      body main section.cases-de-sucesso .text-container .inner-container .description h2 {
        text-align: center;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 300; }
  body main section.cases-de-sucesso .owl-dots {
    text-align: center;
    color: #7b7a7a;
    margin-top: 10px; }
    body main section.cases-de-sucesso .owl-dots button.owl-dot {
      background: url("../image/dots.png") no-repeat;
      width: 21px;
      height: 21px;
      margin: 0 5px; }
      body main section.cases-de-sucesso .owl-dots button.owl-dot.active {
        background: url("../image/dots-active.png") no-repeat; }
      body main section.cases-de-sucesso .owl-dots button.owl-dot:active, body main section.cases-de-sucesso .owl-dots button.owl-dot:focus {
        outline: none; }
  body main section.cases-categorias {
    padding-bottom: 90px; }
    body main section.cases-categorias .title {
      display: flex;
      justify-content: center;
      align-items: center; }
      body main section.cases-categorias .title .separador1 {
        background-color: #cecece;
        height: 4px;
        width: 100%;
        margin-right: 8px; }
        @media screen and (max-width: 1200px) {
          body main section.cases-categorias .title .separador1 {
            display: none; } }
      body main section.cases-categorias .title h1 {
        text-align: center;
        white-space: nowrap;
        font-size: 1.5rem;
        font-weight: 600;
        margin: 20px 0;
        color: #00529c; }
        @media screen and (max-width: 1200px) {
          body main section.cases-categorias .title h1 {
            white-space: unset; } }
      body main section.cases-categorias .title .separador2 {
        background-color: #cecece;
        height: 4px;
        width: 100%;
        margin-left: 8px; }
        @media screen and (max-width: 1200px) {
          body main section.cases-categorias .title .separador2 {
            display: none; } }
    body main section.cases-categorias .custom-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap; }
    body main section.cases-categorias .cases-card-container {
      padding: 20px;
      width: 20%; }
      @media screen and (max-width: 992px) {
        body main section.cases-categorias .cases-card-container {
          width: 50%; } }
      @media screen and (max-width: 500px) {
        body main section.cases-categorias .cases-card-container {
          width: 100%; } }
      body main section.cases-categorias .cases-card-container .card-box {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        padding: 20px 50px;
        border: solid 2px transparent;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.cases-categorias .cases-card-container .card-box:hover {
          background-color: #ffffff;
          border: solid 2px #f0f0f0; }
          body main section.cases-categorias .cases-card-container .card-box:hover .circle {
            background-color: #04a00b; }
            body main section.cases-categorias .cases-card-container .card-box:hover .circle svg {
              fill: #ffffff; }
          body main section.cases-categorias .cases-card-container .card-box:hover h1 {
            color: #04a00b; }
        body main section.cases-categorias .cases-card-container .card-box .circle {
          margin-bottom: 15px;
          background-color: #c7c7c7;
          padding: 20px;
          border-radius: 50px;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.cases-categorias .cases-card-container .card-box .circle svg {
            width: 60px;
            height: 60px;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        body main section.cases-categorias .cases-card-container .card-box h1 {
          font-size: 1.2rem;
          text-transform: uppercase;
          font-weight: 600;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
  body main section.empresa {
    padding: 50px 0px 50px 0px;
    /*T├¡tulos e Sub usados em v├írias partes da p├ígina*/
    /*T├¡tulos usados em v├írias partes da p├ígina*/
    /*Separador Miss├úo vis├úo e valores*/
    /*Separador Nossos valores*/
    /*Separador Desafios*/
    /*Separador Crit├®rios*/ }
    body main section.empresa .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      text-align: center;
      position: relative; }
      body main section.empresa .title b, body main section.empresa .title strong {
        color: #0051a0; }
      body main section.empresa .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
      body main section.empresa .title.l1 {
        max-width: 370px; }
      body main section.empresa .title.l2 {
        max-width: 500px; }
      body main section.empresa .title.l3 {
        max-width: 750px; }
    body main section.empresa .subtitle {
      font-size: 21px;
      font-weight: 300;
      color: #565656;
      padding: 15px 0px;
      text-align: center; }
    body main section.empresa .title-page {
      display: flex;
      border-left: 5px solid #0051a0;
      line-height: 1;
      padding-left: 15px;
      margin-bottom: 40px; }
      body main section.empresa .title-page .text {
        font-size: 23px;
        line-height: 1.2;
        font-weight: 700;
        margin-right: 20px; }
        body main section.empresa .title-page .text span.line-1 {
          display: block;
          color: #565656; }
        body main section.empresa .title-page .text span.line-2 {
          display: block;
          color: #0051a0; }
      body main section.empresa .title-page .bg-repeat-line {
        background-image: url("../../media/imagens/pg-empresa/bg-title.png");
        background-size: cover;
        width: 100%; }
    body main section.empresa .conteudo {
      font-size: 15px;
      font-weight: 400;
      padding-bottom: 50px; }
      body main section.empresa .conteudo table tr td {
        background-color: #0051a0;
        font-size: 15px;
        font-weight: 700;
        color: white;
        padding: 25px; }
    body main section.empresa .separador-missao {
      text-align: center;
      background-color: #0051a0;
      color: white;
      padding: 50px 0px 0px 0px; }
      body main section.empresa .separador-missao .missao {
        position: relative;
        margin-bottom: 100px; }
        body main section.empresa .separador-missao .missao::after {
          content: '';
          position: absolute;
          bottom: -50px;
          width: 50%;
          height: 9px;
          border-radius: 5px;
          left: calc(25%);
          background-color: #c1c1c1; }
      body main section.empresa .separador-missao h1 {
        font-size: 21px;
        font-weight: 600;
        text-transform: uppercase; }
      body main section.empresa .separador-missao h2 {
        font-size: 16px;
        font-weight: 400; }
    body main section.empresa .separador-nossos-valores {
      padding: 50px 0px 20px 0px; }
      body main section.empresa .separador-nossos-valores .box-valor {
        display: flex;
        align-items: center;
        background-color: #dadada;
        padding: 9px 15px;
        margin-bottom: 20px; }
        @media screen and (max-width: 991px) {
          body main section.empresa .separador-nossos-valores .box-valor {
            display: grid;
            text-align: center; } }
        body main section.empresa .separador-nossos-valores .box-valor .valor-imagem {
          margin-right: 20px; }
        body main section.empresa .separador-nossos-valores .box-valor .valor-titulo {
          font-weight: 700;
          font-size: 15px;
          color: #565656; }
        body main section.empresa .separador-nossos-valores .box-valor .valor-texto span {
          margin: 0px 5px; }
          @media screen and (max-width: 991px) {
            body main section.empresa .separador-nossos-valores .box-valor .valor-texto span {
              display: none; } }
    body main section.empresa .separador-desafios .texto-desafios {
      margin: 50px 0px;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.2;
      text-align: center; }
    body main section.empresa .separador-criterios .criterio .box-criterio {
      display: flex;
      align-items: center;
      background-color: #dadada;
      padding: 9px 15px;
      margin-bottom: 20px; }
      body main section.empresa .separador-criterios .criterio .box-criterio .icon {
        margin-right: 10px; }
      body main section.empresa .separador-criterios .criterio .box-criterio .texto {
        font-weight: 700;
        color: #565656; }
      @media screen and (max-width: 991px) {
        body main section.empresa .separador-criterios .criterio .box-criterio {
          display: grid;
          text-align: center; } }
    body main section.empresa .box-galeria {
      padding: 50px 0px 0px 0px; }
      body main section.empresa .box-galeria .galeria-empresa-1 .item {
        height: 650px;
        position: relative;
        border-radius: 25px;
        overflow: hidden; }
        body main section.empresa .box-galeria .galeria-empresa-1 .item img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
        body main section.empresa .box-galeria .galeria-empresa-1 .item .conteudo-img {
          position: absolute;
          bottom: 0px;
          padding: 20px 100px;
          background-color: rgba(0, 0, 0, 0.4);
          width: 100%; }
          body main section.empresa .box-galeria .galeria-empresa-1 .item .conteudo-img h2 {
            font-size: 28px;
            font-weight: 600;
            color: white;
            max-height: 33px;
            overflow: hidden; }
          body main section.empresa .box-galeria .galeria-empresa-1 .item .conteudo-img h4 {
            color: white;
            overflow: hidden;
            max-height: 72px;
            font-size: 20px; }
        @media screen and (max-width: 991px) {
          body main section.empresa .box-galeria .galeria-empresa-1 .item {
            height: 400px; }
            body main section.empresa .box-galeria .galeria-empresa-1 .item .conteudo-img {
              padding: 20px 10px; }
              body main section.empresa .box-galeria .galeria-empresa-1 .item .conteudo-img h2 {
                font-size: 19px;
                height: auto; }
              body main section.empresa .box-galeria .galeria-empresa-1 .item .conteudo-img h4 {
                font-size: 13px;
                height: 75px; } }
      body main section.empresa .box-galeria .galeria-empresa-1 i.fas.fa-chevron-left {
        position: absolute;
        top: calc(50% - 12px);
        left: 20px;
        font-size: 25px;
        color: white;
        padding: 5px 11px 5px 9px;
        border: 4px solid white;
        border-radius: 100px;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.empresa .box-galeria .galeria-empresa-1 i.fas.fa-chevron-left:hover {
          background-color: #0051a0; }
      body main section.empresa .box-galeria .galeria-empresa-1 i.fas.fa-chevron-right {
        position: absolute;
        top: calc(50% - 12px);
        right: 20px;
        font-size: 25px;
        color: white;
        padding: 5px 11px 5px 9px;
        border: 4px solid white;
        border-radius: 100px;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.empresa .box-galeria .galeria-empresa-1 i.fas.fa-chevron-right:hover {
          background-color: #0051a0; }
      @media screen and (max-width: 991px) {
        body main section.empresa .box-galeria .galeria-empresa-2 {
          display: none; } }
      body main section.empresa .box-galeria .galeria-empresa-2 .item {
        height: 145px;
        cursor: pointer;
        border-radius: 25px;
        overflow: hidden; }
        body main section.empresa .box-galeria .galeria-empresa-2 .item img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      body main section.empresa .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left {
        z-index: 1;
        position: absolute;
        top: calc(50% - 15px);
        left: 10px;
        font-size: 15px;
        color: white; }
        body main section.empresa .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left::after {
          content: '';
          position: absolute;
          top: -70px;
          left: -10px;
          width: 30px;
          height: 145px;
          background-color: #2b2b2bcc;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body main section.empresa .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left:hover::after {
          background-color: black; }
      body main section.empresa .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right {
        z-index: 1;
        position: absolute;
        top: calc(50% - 15px);
        right: 10px;
        font-size: 15px;
        color: white; }
        body main section.empresa .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right::after {
          content: '';
          position: absolute;
          top: -70px;
          right: -10px;
          width: 30px;
          height: 145px;
          background-color: #2b2b2bcc;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body main section.empresa .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right:hover::after {
          background-color: black; }
  body main .breadcrumb {
    background: transparent;
    position: relative;
    width: 100%;
    display: inherit;
    padding: 0px !important;
    z-index: 2;
    margin: auto; }
    body main .breadcrumb .box-bread {
      position: absolute;
      bottom: 8px;
      left: 0px;
      width: 100%;
      background: transparent;
      padding: 0;
      border-radius: 0;
      margin-top: 15px;
      z-index: 1; }
      body main .breadcrumb .box-bread ul > li {
        font-size: 16px;
        color: #fff;
        font-weight: 300;
        float: left;
        margin-right: 5px;
        letter-spacing: 0.5px; }
        body main .breadcrumb .box-bread ul > li i.fas.fa-chevron-right {
          font-size: 14px;
          margin-right: 10px;
          margin-left: 10px; }
        body main .breadcrumb .box-bread ul > li:first-child {
          margin-right: 4px; }
        body main .breadcrumb .box-bread ul > li .bread {
          font-size: 16px;
          color: #fff;
          font-weight: 300; }
          body main .breadcrumb .box-bread ul > li .bread i {
            margin-left: 8px; }
        body main .breadcrumb .box-bread ul > li a {
          font-size: 16px;
          color: #fff;
          font-weight: 300;
          -webkit-transition: all .5s ease;
          transition: all .5s ease;
          position: relative; }
          body main .breadcrumb .box-bread ul > li a:before {
            content: '';
            position: absolute;
            width: 0%;
            height: 1px;
            background: #fff;
            bottom: 0px;
            -webkit-transition: all .5s ease;
            transition: all .5s ease; }
          body main .breadcrumb .box-bread ul > li a:hover:before, body main .breadcrumb .box-bread ul > li a:focus:before {
            width: 100%; }
      body main .breadcrumb .box-bread .back-link {
        font-size: 16px;
        font-weight: 300;
        float: right;
        color: #fff; }
        @media screen and (max-width: 768px) {
          body main .breadcrumb .box-bread .back-link {
            display: none; } }
  body main section.banner-titulo {
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: bottom; }
    body main section.banner-titulo .container {
      height: 100%; }
      body main section.banner-titulo .container .box-titulo {
        display: flex;
        height: 100%;
        display: -webkit-flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center; }
        body main section.banner-titulo .container .box-titulo .titulo {
          text-align: center;
          line-height: 1; }
          body main section.banner-titulo .container .box-titulo .titulo h1 {
            font-size: 54px;
            color: white;
            text-align: center;
            display: inline-block;
            text-transform: uppercase;
            text-shadow: 1px 1px 1px #000;
            font-weight: 700; }
            @media screen and (max-width: 991px) {
              body main section.banner-titulo .container .box-titulo .titulo h1 {
                font-size: 32px; } }
  body main section.galeria {
    margin-bottom: 50px; }
    body main section.galeria .title-galeria {
      text-align: center;
      font-size: 23px;
      color: #00529c;
      margin-top: 30px;
      margin-bottom: 0;
      font-weight: 600; }
      body main section.galeria .title-galeria span.green {
        color: #04a00b; }
    body main section.galeria .row.custom-row .title {
      display: flex;
      justify-content: center;
      align-items: center; }
      body main section.galeria .row.custom-row .title .separador1 {
        background-color: #cecece;
        height: 4px;
        width: 100%;
        margin-right: 8px; }
        @media screen and (max-width: 1200px) {
          body main section.galeria .row.custom-row .title .separador1 {
            display: none; } }
      body main section.galeria .row.custom-row .title h1 {
        text-align: center;
        white-space: nowrap;
        font-size: 1.2rem;
        font-weight: 400;
        margin: 20px 0;
        color: #00529c; }
        @media screen and (max-width: 1200px) {
          body main section.galeria .row.custom-row .title h1 {
            white-space: unset; } }
      body main section.galeria .row.custom-row .title .separador2 {
        background-color: #cecece;
        height: 4px;
        width: 100%;
        margin-left: 8px; }
        @media screen and (max-width: 1200px) {
          body main section.galeria .row.custom-row .title .separador2 {
            display: none; } }
    body main section.galeria .box-galeria .galeria-empresa-1 .item {
      height: 550px;
      position: relative; }
      body main section.galeria .box-galeria .galeria-empresa-1 .item img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
      body main section.galeria .box-galeria .galeria-empresa-1 .item .conteudo-img {
        position: absolute;
        bottom: 0px;
        padding: 20px 100px;
        background-color: rgba(0, 0, 0, 0.4);
        width: 100%; }
        body main section.galeria .box-galeria .galeria-empresa-1 .item .conteudo-img h2 {
          /*font-family: 'Androgyne';*/
          font-size: 22px;
          color: white;
          max-height: 33px;
          overflow: hidden;
          text-transform: uppercase; }
        body main section.galeria .box-galeria .galeria-empresa-1 .item .conteudo-img h4 {
          color: white;
          overflow: hidden;
          max-height: 72px;
          font-size: 20px;
          font-weight: 300; }
      @media screen and (max-width: 991px) {
        body main section.galeria .box-galeria .galeria-empresa-1 .item {
          height: 400px; }
          body main section.galeria .box-galeria .galeria-empresa-1 .item .conteudo-img {
            padding: 20px 10px; }
            body main section.galeria .box-galeria .galeria-empresa-1 .item .conteudo-img h2 {
              font-size: 19px;
              height: auto; }
            body main section.galeria .box-galeria .galeria-empresa-1 .item .conteudo-img h4 {
              font-size: 13px;
              height: 75px; } }
    body main section.galeria .box-galeria .galeria-empresa-1 i.fas.fa-chevron-left {
      position: absolute;
      top: calc(50% - 12px);
      left: 20px;
      font-size: 25px;
      color: white;
      padding: 5px 11px 5px 9px;
      border: 4px solid white;
      border-radius: 100px;
      overflow: hidden;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      body main section.galeria .box-galeria .galeria-empresa-1 i.fas.fa-chevron-left:hover {
        background-color: #04a00b; }
    body main section.galeria .box-galeria .galeria-empresa-1 i.fas.fa-chevron-right {
      position: absolute;
      top: calc(50% - 12px);
      right: 20px;
      font-size: 25px;
      color: white;
      padding: 5px 11px 5px 9px;
      border: 4px solid white;
      border-radius: 100px;
      overflow: hidden;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      body main section.galeria .box-galeria .galeria-empresa-1 i.fas.fa-chevron-right:hover {
        background-color: #04a00b; }
    @media screen and (max-width: 768px) {
      body main section.galeria .box-galeria .galeria-empresa-2 {
        display: none; } }
    body main section.galeria .box-galeria .galeria-empresa-2 .item {
      height: 125px;
      cursor: pointer; }
      body main section.galeria .box-galeria .galeria-empresa-2 .item img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
    body main section.galeria .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left {
      z-index: 1;
      position: absolute;
      top: calc(50% - 15px);
      left: 10px;
      font-size: 15px;
      color: white; }
      body main section.galeria .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left::after {
        content: '';
        position: absolute;
        top: -59px;
        left: -10px;
        width: 30px;
        height: 125px;
        background-color: #2b2b2bcc;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      body main section.galeria .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left:hover::after {
        background-color: black; }
    body main section.galeria .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right {
      z-index: 1;
      position: absolute;
      top: calc(50% - 15px);
      right: 10px;
      font-size: 15px;
      color: white; }
      body main section.galeria .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right::after {
        content: '';
        position: absolute;
        top: -59px;
        right: -10px;
        width: 30px;
        height: 125px;
        background-color: #2b2b2bcc;
        z-index: -1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      body main section.galeria .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right:hover::after {
        background-color: black; }
  body main section.servico-interna {
    padding-top: 30px; }
    body main section.servico-interna .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #0051a0;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 750px;
      text-align: center;
      position: relative; }
      body main section.servico-interna .title b, body main section.servico-interna .title strong {
        color: #0051a0; }
      body main section.servico-interna .title:after {
        content: '';
        height: 3px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.servico-interna .subtitle {
      font-size: 23px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      margin-bottom: 15px; }
    body main section.servico-interna .servico-img {
      width: 100%;
      margin-bottom: 10px; }
      body main section.servico-interna .servico-img img {
        width: 100%;
        object-fit: contain; }
    body main section.servico-interna h2 {
      font-size: 21px;
      font-weight: 700;
      color: #00468c; }
    body main section.servico-interna .servico-conteudo {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.2;
      padding-bottom: 25px; }
      body main section.servico-interna .servico-conteudo h2 {
        font-size: 21px;
        font-weight: 700;
        color: #00468c; }
      body main section.servico-interna .servico-conteudo img {
        max-width: 100%; }
    body main section.servico-interna .box-galeria {
      padding: 0 0 50px 0; }
      body main section.servico-interna .box-galeria .galeria-empresa-1 .item {
        height: 400px;
        position: relative;
        border-radius: 25px;
        overflow: hidden; }
        body main section.servico-interna .box-galeria .galeria-empresa-1 .item img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
        body main section.servico-interna .box-galeria .galeria-empresa-1 .item .conteudo-img {
          position: absolute;
          bottom: 0px;
          padding: 20px 100px;
          background-color: rgba(0, 0, 0, 0.4);
          width: 100%; }
          body main section.servico-interna .box-galeria .galeria-empresa-1 .item .conteudo-img h2 {
            font-size: 28px;
            font-weight: 600;
            color: white;
            max-height: 33px;
            overflow: hidden; }
          body main section.servico-interna .box-galeria .galeria-empresa-1 .item .conteudo-img h4 {
            color: white;
            overflow: hidden;
            max-height: 72px;
            font-size: 20px; }
        @media screen and (max-width: 991px) {
          body main section.servico-interna .box-galeria .galeria-empresa-1 .item {
            height: 400px; }
            body main section.servico-interna .box-galeria .galeria-empresa-1 .item .conteudo-img {
              padding: 20px 10px; }
              body main section.servico-interna .box-galeria .galeria-empresa-1 .item .conteudo-img h2 {
                font-size: 19px;
                height: auto; }
              body main section.servico-interna .box-galeria .galeria-empresa-1 .item .conteudo-img h4 {
                font-size: 13px;
                height: 75px; } }
      body main section.servico-interna .box-galeria .galeria-empresa-1 i.fas.fa-chevron-left {
        position: absolute;
        top: calc(50% - 12px);
        left: 20px;
        font-size: 25px;
        color: white;
        padding: 5px 11px 5px 9px;
        border: 4px solid white;
        border-radius: 100px;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.servico-interna .box-galeria .galeria-empresa-1 i.fas.fa-chevron-left:hover {
          background-color: #0051a0; }
      body main section.servico-interna .box-galeria .galeria-empresa-1 i.fas.fa-chevron-right {
        position: absolute;
        top: calc(50% - 12px);
        right: 20px;
        font-size: 25px;
        color: white;
        padding: 5px 11px 5px 9px;
        border: 4px solid white;
        border-radius: 100px;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.servico-interna .box-galeria .galeria-empresa-1 i.fas.fa-chevron-right:hover {
          background-color: #0051a0; }
      @media screen and (max-width: 991px) {
        body main section.servico-interna .box-galeria .galeria-empresa-2 {
          display: none; } }
      body main section.servico-interna .box-galeria .galeria-empresa-2 .item {
        height: 100px;
        cursor: pointer;
        border-radius: 25px;
        overflow: hidden; }
        body main section.servico-interna .box-galeria .galeria-empresa-2 .item img {
          height: 100%;
          width: 100%;
          object-fit: cover; }
      body main section.servico-interna .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left {
        z-index: 1;
        position: absolute;
        top: calc(50% - 15px);
        left: 10px;
        font-size: 15px;
        color: white; }
        body main section.servico-interna .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left::after {
          content: '';
          position: absolute;
          top: -70px;
          left: -10px;
          width: 30px;
          height: 145px;
          background-color: #2b2b2bcc;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body main section.servico-interna .box-galeria .galeria-empresa-2 i.fas.fa-chevron-left:hover::after {
          background-color: black; }
      body main section.servico-interna .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right {
        z-index: 1;
        position: absolute;
        top: calc(50% - 15px);
        right: 10px;
        font-size: 15px;
        color: white; }
        body main section.servico-interna .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right::after {
          content: '';
          position: absolute;
          top: -70px;
          right: -10px;
          width: 30px;
          height: 145px;
          background-color: #2b2b2bcc;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body main section.servico-interna .box-galeria .galeria-empresa-2 i.fas.fa-chevron-right:hover::after {
          background-color: black; }
  body main section.servico-formulario {
    padding: 10px 0px 20px 0px; }
    body main section.servico-formulario .question {
      display: flex;
      margin: auto;
      max-width: 405px; }
      @media screen and (max-width: 1199px) {
        body main section.servico-formulario .question {
          margin: 15px auto 15px auto; } }
      body main section.servico-formulario .question .icon {
        margin-right: 10px; }
      body main section.servico-formulario .question .txt {
        text-align: center; }
        body main section.servico-formulario .question .txt h1 {
          font-size: 21px;
          font-weight: 600;
          line-height: 1; }
        body main section.servico-formulario .question .txt h2 {
          font-size: 18.5px;
          font-weight: 400;
          line-height: 1; }
    body main section.servico-formulario .passos {
      text-align: left;
      padding-bottom: 30px; }
      @media screen and (max-width: 991px) {
        body main section.servico-formulario .passos {
          padding-top: 30px;
          padding-bottom: 30px;
          text-align: center; } }
      body main section.servico-formulario .passos img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; }
    body main section.servico-formulario .campo {
      padding-bottom: 15px; }
      body main section.servico-formulario .campo label {
        display: block;
        font-size: 15px;
        font-weight: 600; }
      body main section.servico-formulario .campo input {
        border: none;
        border-bottom: 1px solid #565656;
        width: 100%;
        font-size: 18px;
        padding-bottom: 7px;
        outline: none; }
    body main section.servico-formulario .acao {
      text-align: right; }
      body main section.servico-formulario .acao .enviar-problema {
        cursor: pointer;
        background-color: #ffffff;
        border: 2px solid #00529c;
        font-size: 16px;
        font-weight: 700;
        color: #00529c;
        padding: 4px 42px;
        display: inline-block;
        text-align: center;
        border-radius: 30px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        box-shadow: 1px 1px 7px 0px #bbbbbb;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.servico-formulario .acao .enviar-problema::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0px;
          top: 100%;
          background-color: #00529c;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body main section.servico-formulario .acao .enviar-problema:hover {
          color: white; }
          body main section.servico-formulario .acao .enviar-problema:hover::after {
            top: 0px; }
    body main section.servico-formulario .bater-um-papo {
      background-color: #f0f0f0;
      border-radius: 7px;
      padding: 50px 15px;
      text-align: center;
      margin: 50px 0px; }
      body main section.servico-formulario .bater-um-papo .title-1 {
        font-size: 28px;
        font-weight: 500;
        color: #00529c; }
      body main section.servico-formulario .bater-um-papo .title-2 {
        font-size: 28px;
        font-weight: 400;
        color: #565656;
        margin-bottom: 30px; }
      body main section.servico-formulario .bater-um-papo .agendar {
        text-align: center; }
        body main section.servico-formulario .bater-um-papo .agendar button {
          text-transform: uppercase;
          cursor: pointer;
          background-color: #ffffff;
          border: 2px solid red;
          font-size: 19px;
          font-weight: 700;
          color: red;
          padding: 5px 42px;
          display: inline-block;
          text-align: center;
          border-radius: 35px;
          position: relative;
          z-index: 1;
          overflow: hidden;
          box-shadow: 1px 1px 7px 0px #bbbbbb;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.servico-formulario .bater-um-papo .agendar button::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0px;
            top: 100%;
            background-color: red;
            z-index: -1;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
          body main section.servico-formulario .bater-um-papo .agendar button:hover {
            color: white; }
            body main section.servico-formulario .bater-um-papo .agendar button:hover::after {
              top: 0px; }
  body main section.duvidas {
    padding: 0px 0px 50px 0px;
    /* Listagem d├║vidas*/ }
    body main section.duvidas .titulo-principal h1 {
      color: #00529c;
      font-size: 40px;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
      line-height: 1.1; }
      body main section.duvidas .titulo-principal h1 span {
        color: #04a00b; }
    body main section.duvidas .listagem-duvidas {
      padding-top: 50px; }
      body main section.duvidas .listagem-duvidas .box-duvida {
        margin-bottom: 3px;
        border-top: 1px solid #ebe9e9; }
        body main section.duvidas .listagem-duvidas .box-duvida.aberto {
          background-color: #f9f9f9; }
        body main section.duvidas .listagem-duvidas .box-duvida .box-pergunta {
          cursor: pointer;
          color: #00529c; }
          body main section.duvidas .listagem-duvidas .box-duvida .box-pergunta .pergunta {
            padding: 10px 0px 10px 50px;
            font-size: 18px;
            font-weight: 700;
            position: relative; }
            body main section.duvidas .listagem-duvidas .box-duvida .box-pergunta .pergunta i {
              font-weight: 900;
              position: absolute;
              top: 12px;
              left: 18px;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
        body main section.duvidas .listagem-duvidas .box-duvida .box-resposta {
          max-height: 0px;
          overflow: hidden;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.duvidas .listagem-duvidas .box-duvida .box-resposta.aberto {
            max-height: 500px; }
          body main section.duvidas .listagem-duvidas .box-duvida .box-resposta .resposta {
            padding: 0px 0px 20px 50px;
            font-size: 17px;
            line-height: 1.2; }
  body main .formulario-duvidas .title h2 {
    font-size: 25px;
    font-weight: 700;
    color: #1e406e; }
  body main .formulario-duvidas .title h4 {
    font-size: 20px;
    color: #1e406e;
    margin-top: -10px; }
  body main .formulario-duvidas label {
    display: block;
    color: #1e406e;
    font-weight: 700;
    font-size: 15px;
    padding: 0px 5px; }
  body main .formulario-duvidas textarea, body main .formulario-duvidas input {
    outline: none;
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    width: 100%;
    padding: 5px 0px 5px 20px;
    color: #1e4075;
    margin-top: -5px;
    margin-bottom: 10px; }
  body main .formulario-duvidas textarea {
    height: 90px; }
  body main .formulario-duvidas button.enviar {
    cursor: pointer;
    border: 1px solid #ff3337;
    background-color: #ff3337;
    font-size: 17px;
    font-weight: 700;
    color: white;
    padding: 4px 13px;
    min-width: 199px;
    display: inline-block;
    text-align: center;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    body main .formulario-duvidas button.enviar::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0px;
      top: 100%;
      background-color: white;
      z-index: -1;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    body main .formulario-duvidas button.enviar:hover {
      color: #ff3337; }
      body main .formulario-duvidas button.enviar:hover::after {
        top: 0px; }
  body main aside.formulario-lateral {
    /*    DIV 2     */
    /*    DIV 1    */
    /*  SEGUNDA BORDA (ADICIONAR CLASSE '&.borda2' PARA MUDAR A COR DA BORDA ) */ }
    body main aside.formulario-lateral .imgphone {
      float: left;
      position: relative; }
    @media screen and (max-width: 768px) {
      body main aside.formulario-lateral .left-imgphone {
        padding-left: 0px !important; } }
    body main aside.formulario-lateral .left-zap {
      padding-left: 10px; }
    body main aside.formulario-lateral h2 {
      color: red;
      font-size: 1.5rem;
      line-height: 1.2;
      padding-top: 20px !important;
      padding-bottom: 3px;
      font-weight: 700;
      text-align: center;
      text-transform: uppercase; }
      body main aside.formulario-lateral h2:first-child {
        padding-top: 0px;
        margin-bottom: 11px; }
        @media screen and (max-width: 768px) {
          body main aside.formulario-lateral h2:first-child {
            font-size: 18px; } }
    body main aside.formulario-lateral h3 {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2;
      color: #565656;
      text-align: center;
      margin-bottom: 20px; }
    body main aside.formulario-lateral .formulario {
      position: relative; }
      body main aside.formulario-lateral .formulario form {
        margin-bottom: 1rem;
        background-color: white;
        padding: 10px;
        border: 2px solid #c1c1c1;
        border-radius: 5px; }
        body main aside.formulario-lateral .formulario form.borda2 {
          box-shadow: 2px 3px 20px 6px #dedede;
          padding: 10px; }
        body main aside.formulario-lateral .formulario form .form-floating-label {
          position: relative;
          border: 0px solid transparent;
          border-radius: 5px;
          margin-bottom: 15px; }
          body main aside.formulario-lateral .formulario form .form-floating-label label {
            color: #797979;
            font-size: 15px;
            position: absolute;
            pointer-events: none;
            left: 7px;
            padding-left: 5px;
            top: 12px !important;
            transition: all 0.2s ease-in;
            font-weight: 600;
            text-transform: none; }
          body main aside.formulario-lateral .formulario form .form-floating-label textarea ~ label {
            top: 0px;
            font-size: 1em;
            font-weight: 400;
            left: 12px !important; }
          body main aside.formulario-lateral .formulario form .form-floating-label input:focus ~ label,
          body main aside.formulario-lateral .formulario form .form-floating-label input:disabled[value] ~ label, body main aside.formulario-lateral .formulario form .form-floating-label.has-value input ~ label {
            top: 0px !important;
            font-size: 14px;
            font-weight: 400; }
          body main aside.formulario-lateral .formulario form .form-floating-label textarea:focus ~ label, body main aside.formulario-lateral .formulario form .form-floating-label.has-value textarea ~ label {
            top: 0px !important;
            font-size: 14px;
            color: #a4a8ab;
            font-weight: 400; }
        body main aside.formulario-lateral .formulario form input, body main aside.formulario-lateral .formulario form textarea, body main aside.formulario-lateral .formulario form select {
          width: 100%;
          margin: 0;
          border: 2px solid #c1c1c1;
          border-radius: 6px;
          font-weight: 500 !important;
          background: white !important;
          padding: 13px 11px 4px 8px;
          color: #797979;
          height: auto;
          outline: none; }
        body main aside.formulario-lateral .formulario form select {
          padding-bottom: 16px !important; }
        body main aside.formulario-lateral .formulario form button.button, body main aside.formulario-lateral .formulario form a.button {
          text-transform: uppercase;
          width: 100%;
          max-width: 200px;
          font-size: 15px;
          float: right;
          padding: 5px 5px;
          display: block;
          color: red;
          font-weight: 600;
          background-color: white !important;
          margin-bottom: 10px;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s;
          border-radius: 30px !important;
          border: 2px solid red !important;
          position: relative; }
          body main aside.formulario-lateral .formulario form button.button i, body main aside.formulario-lateral .formulario form a.button i {
            font-size: 34px;
            font-weight: 100;
            position: absolute;
            top: 10px;
            right: 10px; }
          body main aside.formulario-lateral .formulario form button.button:hover, body main aside.formulario-lateral .formulario form a.button:hover {
            background-color: red !important;
            border-color: red !important;
            color: white !important; }
        body main aside.formulario-lateral .formulario form small {
          color: #BBBBBB;
          font-weight: 700; }
    body main aside.formulario-lateral .enderecos {
      text-align: center;
      position: relative; }
      body main aside.formulario-lateral .enderecos .boxEnderecos {
        border-bottom: 1px solid #cad6e4;
        padding-bottom: 20px;
        margin-bottom: 25px; }
        body main aside.formulario-lateral .enderecos .boxEnderecos.semborda {
          border-bottom: transparent; }
      body main aside.formulario-lateral .enderecos .titulo_contato {
        font-size: 16px;
        line-height: 1.4;
        font-weight: 700;
        color: #216144;
        margin-top: 20px; }
      body main aside.formulario-lateral .enderecos ul li {
        list-style: none;
        font-size: 15px;
        color: #216144; }
      body main aside.formulario-lateral .enderecos i {
        position: absolute;
        margin-top: -14px;
        left: 0px;
        font-size: 24px; }
  body main section.formulario-contato {
    /*Formul├írios*/
    /*botao enviar arquivo*/ }
    body main section.formulario-contato div.form-group > label {
      font-size: 20px;
      font-weight: 600; }
    body main section.formulario-contato .ajuste-right {
      padding-right: 2.5px; }
      @media (max-width: 991px) {
        body main section.formulario-contato .ajuste-right {
          padding-right: 15px; } }
    body main section.formulario-contato .ajuste-left {
      padding-left: 2.5px; }
      @media (max-width: 991px) {
        body main section.formulario-contato .ajuste-left {
          padding-left: 15px; } }
    @media screen and (max-width: 360px) {
      body main section.formulario-contato label.custom-label {
        font-size: 0.85rem; } }
    body main section.formulario-contato .caixa {
      position: relative;
      margin-bottom: 10px; }
      body main section.formulario-contato .caixa > span {
        position: absolute;
        margin-left: 15px;
        left: 0px;
        top: 12px;
        -webkit-transition: all .5s ease;
        transition: all .5s ease;
        z-index: 2;
        color: #777;
        font-size: 16px;
        font-weight: 400; }
        body main section.formulario-contato .caixa > span label span {
          margin-left: 1px;
          color: red; }
      body main section.formulario-contato .caixa input, body main section.formulario-contato .caixa select, body main section.formulario-contato .caixa textarea {
        border-radius: 5px;
        outline: none;
        background-color: transparent !important;
        border: 2px solid #939da5;
        padding: 17px 10px 5px;
        width: 100%;
        position: relative;
        z-index: 2; }
        body main section.formulario-contato .caixa input.has-error, body main section.formulario-contato .caixa select.has-error, body main section.formulario-contato .caixa textarea.has-error {
          border: 2px solid #d6040e; }
      body main section.formulario-contato .caixa textarea {
        padding-top: 25px; }
      body main section.formulario-contato .caixa input:focus + span, body main section.formulario-contato .caixa input.ng-not-empty + span,
      body main section.formulario-contato .caixa select:focus + span, body main section.formulario-contato .caixa select.ng-not-empty + span,
      body main section.formulario-contato .caixa textarea:focus + span, body main section.formulario-contato .caixa textarea.ng-not-empty + span {
        margin-left: 10px;
        font-size: 12px;
        font-weight: 500;
        top: 3px;
        left: 0;
        z-index: 2; }
      body main section.formulario-contato .caixa label.top {
        display: none; }
      @media screen and (max-width: 768px) {
        body main section.formulario-contato .caixa > span {
          display: none; }
        body main section.formulario-contato .caixa label.top {
          display: inherit; } }
    body main section.formulario-contato .enviar-msg {
      text-align: right; }
      body main section.formulario-contato .enviar-msg button {
        background-color: red;
        color: white;
        border: 2px solid red;
        padding: 10px 30px;
        border-radius: 35px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 40px;
        -webkit-transition: all .5s ease;
        transition: all .5s ease; }
        body main section.formulario-contato .enviar-msg button:hover {
          background-color: #ffffff;
          color: red; }
    body main section.formulario-contato .enviar-arquivo button.botao-enviar {
      background-color: #00529c;
      color: white;
      padding: 9px 20px;
      border: 2px solid #00529c;
      border-top-left-radius: 35px;
      border-bottom-left-radius: 35px;
      position: relative;
      z-index: 2;
      height: 44px;
      cursor: pointer;
      -webkit-transition: all .5s ease;
      transition: all .5s ease; }
      body main section.formulario-contato .enviar-arquivo button.botao-enviar:hover {
        background-color: white;
        color: #00529c; }
    body main section.formulario-contato .enviar-arquivo .arquivo-info label {
      height: 44px;
      position: absolute;
      top: 0px;
      background-color: rgba(189, 189, 189, 0.16);
      padding: 13px 30px 12px 125px;
      border-radius: 35px;
      color: #667594;
      font-size: 13px;
      font-weight: 600;
      overflow: hidden; }
    body main section.formulario-contato .enviar-arquivo h6.obs {
      margin-top: 10px;
      font-size: 14px;
      font-weight: 700;
      color: red; }
      body main section.formulario-contato .enviar-arquivo h6.obs small {
        font-weight: 700; }
  body main section.contato {
    padding: 0px 0px 0px 0px;
    /*T├¡tulo*/ }
    body main section.contato .custom-margin {
      margin: 35px 0; }
    body main section.contato .titulo-principal {
      margin-bottom: 50px;
      display: flex;
      justify-content: center; }
      body main section.contato .titulo-principal .txt {
        position: relative;
        display: inline-block;
        font-size: 29px;
        color: #565656;
        font-weight: 600;
        z-index: 1; }
        body main section.contato .titulo-principal .txt span {
          color: #0051a0; }
        body main section.contato .titulo-principal .txt::after {
          content: '';
          max-width: 250px;
          width: 250px;
          height: 3px;
          background-color: #565656;
          position: absolute;
          bottom: -20px;
          left: calc(50% - 125px); }
    body main section.contato .title h4 {
      font-size: 17px;
      padding-bottom: 30px;
      font-weight: 300;
      text-align: center; }
      body main section.contato .title h4 b, body main section.contato .title h4 strong {
        color: #00529c; }
    body main section.contato .box-nuvens {
      width: 100%;
      overflow: hidden; }
      body main section.contato .box-nuvens .separador-nuvens {
        margin-top: 20px;
        width: calc(100% + 60px);
        height: 130px;
        margin-left: -60px;
        z-index: 1;
        animation-name: leaves;
        animation-duration: 2s;
        animation-timing-function: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-play-state: running; }
        body main section.contato .box-nuvens .separador-nuvens img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
@-webkit-keyframes leaves {
  0% {
    margin-left: -60px; }
  100% {
    margin-left: 0px; } }
@keyframes leaves {
  0% {
    margin-left: -60px; }
  100% {
    margin-left: 0px; } }
    body main section.contato .container {
      position: relative; }
      body main section.contato .container img.obj-t {
        position: absolute;
        top: -50px;
        left: -160px; }
      body main section.contato .container img.obj-o {
        position: absolute;
        top: 33%;
        right: -160px; }
      body main section.contato .container img.obj-y {
        position: absolute;
        top: 40%;
        left: -185px; }
      body main section.contato .container img.obj-s {
        position: absolute;
        top: calc(100% - 107px);
        right: -160px; }
      body main section.contato .container img.obj-star-blue1 {
        position: absolute;
        top: -50px;
        right: -160px; }
      body main section.contato .container img.obj-star-blue2 {
        position: absolute;
        bottom: -100px;
        left: -160px;
        z-index: -1; }
  body main section.cases {
    padding: 50px 0px; }
    body main section.cases .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 480px;
      text-align: center;
      position: relative; }
      body main section.cases .title b, body main section.cases .title strong {
        color: #0051a0; }
      body main section.cases .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.cases .subtitle {
      font-size: 20px;
      font-weight: 300;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 670px;
      margin: 0px auto 20px auto;
      line-height: 1.2; }
    body main section.cases .box-case-main {
      position: relative;
      margin-bottom: 50px; }
      body main section.cases .box-case-main .box-case {
        height: 350px;
        width: 100%;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 2px 2px 7px 1px #dcdcdc; }
        body main section.cases .box-case-main .box-case .box-img {
          background-color: #0051a0;
          width: 100%;
          height: 100%; }
          body main section.cases .box-case-main .box-case .box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        body main section.cases .box-case-main .box-case .box-info {
          position: absolute;
          bottom: 0px;
          left: 0px;
          width: 100%;
          background-color: white;
          padding: 5px 15px 30px 15px;
          text-align: center;
          height: 148px;
          overflow: hidden;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.cases .box-case-main .box-case .box-info .box-titulo {
            font-size: 15px;
            font-weight: 600;
            color: #565656;
            margin-bottom: 5px;
            height: 22px;
            overflow: hidden; }
          body main section.cases .box-case-main .box-case .box-info .box-text {
            font-size: 15px;
            font-weight: 400;
            color: #565656;
            line-height: 1.2;
            margin-bottom: 10px;
            max-height: 54px;
            overflow: hidden; }
          body main section.cases .box-case-main .box-case .box-info .box-local {
            font-size: 15px;
            font-weight: 500;
            color: #565656;
            height: 22px;
            overflow: hidden; }
      body main section.cases .box-case-main .leia-mais {
        text-align: center;
        position: absolute;
        bottom: -13px;
        left: 0px;
        width: 100%; }
        body main section.cases .box-case-main .leia-mais span {
          background-color: #0051a0;
          border: 1px solid #0051a0;
          font-size: 16px;
          font-weight: 700;
          color: white;
          padding: 5px 35px;
          border-radius: 20px;
          z-index: 2;
          position: relative;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
      body main section.cases .box-case-main:hover .box-case .box-img img {
        opacity: 0.75; }
      body main section.cases .box-case-main:hover .leia-mais span {
        background-color: white;
        color: #0051a0; }
  body main section.cases-interna .case-container {
    margin: 40px 0; }
    body main section.cases-interna .case-container img {
      width: 100%; }
    body main section.cases-interna .case-container .data {
      letter-spacing: .5px;
      font-size: 1rem;
      margin: 10px 0; }
    body main section.cases-interna .case-container .titulo {
      position: relative;
      margin-bottom: 12px 0;
      padding-bottom: 12px 0;
      border-bottom: solid 2px #c0c0c0; }
      body main section.cases-interna .case-container .titulo h1 {
        color: #00529c;
        font-size: 1.5rem;
        padding: 5px 0;
        text-transform: uppercase; }
      body main section.cases-interna .case-container .titulo::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 8px;
        background-color: #c0c0c0;
        content: ''; }
    body main section.cases-interna .case-container .conteudo {
      font-size: .9rem;
      font-weight: 300;
      margin-top: 20px; }
      body main section.cases-interna .case-container .conteudo b {
        font-weight: 600; }
      body main section.cases-interna .case-container .conteudo br {
        display: block;
        margin: 20px;
        content: ''; }
  body main section.cases-interna .case-side-container {
    margin: 40px 0; }
    @media screen and (max-width: 768px) {
      body main section.cases-interna .case-side-container {
        margin: 0; } }
    body main section.cases-interna .case-side-container .side-label {
      font-size: .85rem;
      margin-top: 10px; }
    body main section.cases-interna .case-side-container .data {
      font-size: .9rem;
      font-weight: 600;
      text-transform: uppercase;
      padding: 10px 0;
      border-bottom: solid 2px #cecece; }
      body main section.cases-interna .case-side-container .data.list {
        text-transform: unset;
        border-bottom: none; }
    body main section.cases-interna .case-side-container .title {
      font-size: 1.2rem;
      font-weight: 600;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 10px;
      margin-bottom: 10px; }
      body main section.cases-interna .case-side-container .title::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 8px;
        background-color: #0051a0;
        content: ''; }
  body main section.cases-relacionados .title {
    display: flex;
    justify-content: center;
    align-items: center; }
    body main section.cases-relacionados .title .separador1 {
      background-color: #cecece;
      height: 4px;
      width: 100%;
      margin-right: 8px; }
      @media screen and (max-width: 1200px) {
        body main section.cases-relacionados .title .separador1 {
          display: none; } }
    body main section.cases-relacionados .title h1 {
      text-transform: uppercase;
      white-space: nowrap;
      font-size: 1.5rem;
      font-weight: 600;
      margin: 20px 0;
      color: #00529c; }
      @media screen and (max-width: 1200px) {
        body main section.cases-relacionados .title h1 {
          white-space: unset; } }
    body main section.cases-relacionados .title .separador2 {
      background-color: #cecece;
      height: 4px;
      width: 100%;
      margin-left: 8px; }
      @media screen and (max-width: 1200px) {
        body main section.cases-relacionados .title .separador2 {
          display: none; } }
  body main section.cases-relacionados .box-case-main {
    position: relative;
    margin-bottom: 50px; }
    body main section.cases-relacionados .box-case-main .box-case {
      height: 350px;
      width: 100%;
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 2px 2px 7px 1px #dcdcdc; }
      body main section.cases-relacionados .box-case-main .box-case .box-img {
        background-color: #0051a0;
        width: 100%;
        height: 100%; }
        body main section.cases-relacionados .box-case-main .box-case .box-img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
      body main section.cases-relacionados .box-case-main .box-case .box-info {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        background-color: white;
        padding: 5px 15px 30px 15px;
        text-align: center;
        height: 148px;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.cases-relacionados .box-case-main .box-case .box-info .box-titulo {
          font-size: 15px;
          font-weight: 600;
          color: #565656;
          margin-bottom: 5px;
          height: 22px;
          overflow: hidden; }
        body main section.cases-relacionados .box-case-main .box-case .box-info .box-text {
          font-size: 15px;
          font-weight: 400;
          color: #565656;
          line-height: 1.2;
          margin-bottom: 10px;
          max-height: 54px;
          overflow: hidden; }
        body main section.cases-relacionados .box-case-main .box-case .box-info .box-local {
          font-size: 15px;
          font-weight: 500;
          color: #565656;
          height: 22px;
          overflow: hidden; }
    body main section.cases-relacionados .box-case-main .leia-mais {
      text-align: center;
      position: absolute;
      bottom: -13px;
      left: 0px;
      width: 100%; }
      body main section.cases-relacionados .box-case-main .leia-mais span {
        background-color: #0051a0;
        border: 1px solid #0051a0;
        font-size: 16px;
        font-weight: 700;
        color: white;
        padding: 5px 35px;
        border-radius: 20px;
        z-index: 2;
        position: relative;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
    body main section.cases-relacionados .box-case-main:hover .box-case .box-img img {
      opacity: 0.75; }
    body main section.cases-relacionados .box-case-main:hover .leia-mais span {
      background-color: white;
      color: #0051a0; }
  body main section.blogLateral {
    /*  CAMPO DE BUSCA  */
    /*LISTAGEM DE CATEGORIAS*/ }
    @media screen and (max-width: 768px) {
      body main section.blogLateral {
        min-height: auto !important; } }
    body main section.blogLateral .categoriasNoticias {
      margin-bottom: 30px;
      display: flex; }
      body main section.blogLateral .categoriasNoticias .tituloCategorias {
        font-family: 'Androgyne';
        text-align: center;
        font-size: 24px;
        color: #00539a;
        text-transform: uppercase;
        padding-bottom: 5px;
        margin-bottom: 10px; }
      body main section.blogLateral .categoriasNoticias li {
        list-style: none;
        flex: 1 0 0;
        width: calc(100% / 5.09);
        -webkit-transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s; }
        @media screen and (max-width: 768px) {
          body main section.blogLateral .categoriasNoticias li {
            padding-right: 12px;
            flex: none;
            width: auto; } }
        @media screen and (max-width: 360px) {
          body main section.blogLateral .categoriasNoticias li {
            padding-right: 10px; } }
        body main section.blogLateral .categoriasNoticias li a {
          font-weight: 700;
          color: #565656;
          width: 100%;
          font-size: 15px;
          position: relative;
          display: block;
          padding-bottom: 14px; }
          @media screen and (max-width: 360px) {
            body main section.blogLateral .categoriasNoticias li a {
              font-size: 13px; } }
          body main section.blogLateral .categoriasNoticias li a:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0px;
            height: 1px;
            width: 40px;
            background: #c1c1c1;
            -webkit-transition: all .5s ease;
            transition: all .5s ease; }
          body main section.blogLateral .categoriasNoticias li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0px;
            height: 1px;
            width: 100%;
            background: #c1c1c1; }
        body main section.blogLateral .categoriasNoticias li.active a:before, body main section.blogLateral .categoriasNoticias li:hover a:before {
          height: 7px;
          background: #00468c; }
  body main section.blog-interna {
    padding-bottom: 50px; }
    body main section.blog-interna .conteudo {
      font-size: 15px;
      font-weight: 400;
      color: black;
      margin-bottom: 20px;
      padding: 50px 0px; }
      body main section.blog-interna .conteudo h1, body main section.blog-interna .conteudo h2, body main section.blog-interna .conteudo h3, body main section.blog-interna .conteudo h4, body main section.blog-interna .conteudo h5, body main section.blog-interna .conteudo h6 {
        font-size: 32px;
        font-weight: 700;
        color: #00468c;
        line-height: 1.2; }
      body main section.blog-interna .conteudo h2 {
        font-size: 28px; }
      body main section.blog-interna .conteudo h3 {
        font-size: 25px; }
      body main section.blog-interna .conteudo h4 {
        font-size: 23px; }
      body main section.blog-interna .conteudo h5 {
        font-size: 20px; }
      body main section.blog-interna .conteudo h6 {
        font-size: 18px; }
      body main section.blog-interna .conteudo .categoria {
        font-size: 14px;
        font-weight: 600;
        color: #565656;
        margin-bottom: 15px;
        text-transform: uppercase; }
      body main section.blog-interna .conteudo .conteudo-img {
        float: left;
        max-width: 50%;
        margin-right: 20px;
        margin-bottom: 20px; }
        body main section.blog-interna .conteudo .conteudo-img img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain; }
      @media screen and (max-width: 991px) {
        body main section.blog-interna .conteudo {
          padding-top: 10px; }
          body main section.blog-interna .conteudo .conteudo-img {
            float: unset;
            max-width: 100%;
            width: 100%;
            margin-right: 0px;
            margin-bottom: 20px; } }
  body main section.blog-listagem-home {
    padding: 80px 0px 50px 0px; }
    body main section.blog-listagem-home .sticker {
      position: sticky;
      top: 0; }
    body main section.blog-listagem-home .campodeBusca {
      background-color: white;
      max-width: 500px;
      margin: 0 auto;
      border: 1.5px solid #c1c1c1;
      padding: 15px;
      border-radius: 6px;
      margin-bottom: 30px;
      position: relative;
      padding: 10px 9px; }
      @media screen and (max-width: 991px) {
        body main section.blog-listagem-home .campodeBusca {
          max-width: none;
          margin-top: 30px;
          margin-bottom: 60px; } }
      body main section.blog-listagem-home .campodeBusca input {
        outline: none;
        background-color: transparent;
        border: none;
        padding: 5px 0px 5px 0px;
        width: 100%;
        color: #585858;
        box-shadow: none;
        font-size: 21px;
        -webkit-transition: all .5s ease;
        transition: all .5s ease; }
        body main section.blog-listagem-home .campodeBusca input::placeholder {
          font-weight: 700;
          -webkit-transition: all .5s ease;
          transition: all .5s ease;
          color: #585858; }
        body main section.blog-listagem-home .campodeBusca input:focus, body main section.blog-listagem-home .campodeBusca input:hover {
          box-shadow: none;
          background-color: transparent;
          border: none;
          outline: none; }
          body main section.blog-listagem-home .campodeBusca input:focus::placeholder, body main section.blog-listagem-home .campodeBusca input:hover::placeholder {
            color: #8d8d8d; }
      body main section.blog-listagem-home .campodeBusca .button {
        position: absolute;
        margin-top: 20px;
        font-size: 33px;
        padding: 7px 10px;
        border-radius: 7px;
        cursor: pointer;
        transition: all 0.3s;
        background: none;
        border: none;
        top: -19px;
        right: 8px;
        font-weight: 100;
        color: #565656;
        box-shadow: none;
        outline: none;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
    body main section.blog-listagem-home .tituloLateral {
      color: #565656;
      text-transform: uppercase;
      font-size: 20px;
      position: relative;
      padding-bottom: 10px;
      margin-bottom: 30px;
      font-weight: bold; }
      body main section.blog-listagem-home .tituloLateral:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0px;
        height: 7px;
        width: 50px;
        background: #00468c;
        -webkit-transition: all .5s ease;
        transition: all .5s ease; }
      body main section.blog-listagem-home .tituloLateral:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        height: 1px;
        width: calc(100% - 47px);
        background: #c1c1c1;
        z-index: -1; }
    body main section.blog-listagem-home .campodeNoticias a {
      margin-bottom: 10px;
      display: inline-block; }
      body main section.blog-listagem-home .campodeNoticias a .thumb {
        position: relative;
        width: 85px;
        height: 85px;
        float: left; }
        body main section.blog-listagem-home .campodeNoticias a .thumb::before {
          opacity: 0.7;
          content: '';
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
          background: url("../../media/imagens/icon-arrow.png") center no-repeat #00529c;
          -webkit-filter: opacity(0);
          -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -ms-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s; }
        body main section.blog-listagem-home .campodeNoticias a .thumb img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      body main section.blog-listagem-home .campodeNoticias a:hover .thumb::before {
        -webkit-filter: opacity(1);
        -webkit-transition: all 0.15s;
        -moz-transition: all 0.15s;
        -ms-transition: all 0.15s;
        -o-transition: all 0.15s;
        transition: all 0.15s; }
      body main section.blog-listagem-home .campodeNoticias a .title {
        width: calc(100% - 85px);
        color: #565656;
        float: left;
        font-size: 12px;
        padding: 10px;
        height: 85px;
        overflow: hidden;
        padding-top: 0; }
    body main section.blog-listagem-home .campodeTags {
      text-align: center; }
      body main section.blog-listagem-home .campodeTags a {
        background: #f3f3f3;
        color: #5a5a5a;
        display: inline-block;
        padding: 1px 10px;
        font-weight: 900;
        font-size: 11px;
        margin-bottom: 10px;
        border-radius: 21px;
        text-transform: uppercase;
        -webkit-transition: all .5s ease;
        transition: all .5s ease; }
        body main section.blog-listagem-home .campodeTags a:hover {
          background: #5a5a5a;
          color: #f3f3f3; }
    body main section.blog-listagem-home .tx1 {
      text-align: left;
      text-transform: uppercase;
      font-size: 18px;
      color: #565656;
      font-weight: 800;
      margin-bottom: 15px; }
    body main section.blog-listagem-home .blog-listagem {
      overflow-x: hidden;
      /*  button*/
      /*button hover*/ }
      @media screen and (max-width: 768px) {
        body main section.blog-listagem-home .blog-listagem {
          text-align: center !important; } }
      body main section.blog-listagem-home .blog-listagem .noticia-categoria {
        font-size: 15px;
        text-transform: uppercase;
        color: #565656;
        font-weight: 700;
        text-align: left !important; }
      body main section.blog-listagem-home .blog-listagem .col-xl-6 {
        padding-bottom: 35px; }
      body main section.blog-listagem-home .blog-listagem .noticia {
        display: block;
        height: 100%; }
        @media screen and (max-width: 768px) {
          body main section.blog-listagem-home .blog-listagem .noticia {
            margin: 10px;
            padding: 5px; } }
        body main section.blog-listagem-home .blog-listagem .noticia .thumb {
          width: 100%;
          background: #eee;
          display: block;
          position: relative;
          border: 2px solid rgba(193, 193, 193, 0.93);
          border-radius: 25px 25px 0px 0px;
          overflow: hidden; }
          body main section.blog-listagem-home .blog-listagem .noticia .thumb::before {
            border-radius: 25px 25px 0px 0px;
            opacity: 0.7;
            content: '';
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            background: url("../../media/imagens/icon-arrow.png") center no-repeat #00529c;
            -webkit-filter: opacity(0);
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s; }
          body main section.blog-listagem-home .blog-listagem .noticia .thumb img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 2px; }
        body main section.blog-listagem-home .blog-listagem .noticia h2 {
          font-size: 16px;
          color: #2b2b2b;
          padding: 15px 15px 0 15px;
          font-weight: 700;
          margin: 0;
          text-align: center;
          line-height: 19px;
          height: 55px;
          -webkit-transition: all 0.15s;
          -moz-transition: all 0.15s;
          -ms-transition: all 0.15s;
          -o-transition: all 0.15s;
          transition: all 0.15s;
          -webkit-transition: all 0.15s;
          -moz-transition: all 0.15s;
          -ms-transition: all 0.15s;
          -o-transition: all 0.15s;
          transition: all 0.15s; }
          @media screen and (max-width: 360px) {
            body main section.blog-listagem-home .blog-listagem .noticia h2 {
              padding: 5px 10px 0 10px;
              font-size: 14px; } }
        body main section.blog-listagem-home .blog-listagem .noticia h3 {
          font-size: 0.85rem;
          color: #565656;
          font-weight: 400;
          padding: 0 15px;
          margin: 0;
          text-align: center;
          line-height: 1.2;
          height: 70px;
          overflow: hidden;
          margin-bottom: 15px;
          -webkit-transition: all 0.15s;
          -moz-transition: all 0.15s;
          -ms-transition: all 0.15s;
          -o-transition: all 0.15s;
          transition: all 0.15s; }
        body main section.blog-listagem-home .blog-listagem .noticia .border-container {
          border: 2px solid rgba(193, 193, 193, 0.93);
          border-radius: 0px 0px 25px 25px; }
        body main section.blog-listagem-home .blog-listagem .noticia .separador {
          padding: 15px 15px 15px 15px; }
          body main section.blog-listagem-home .blog-listagem .noticia .separador span.leia-mais {
            background-color: #0051a0;
            font-size: 15px;
            font-weight: 700;
            color: white;
            padding: 7px 25px;
            border-radius: 37px;
            margin-right: auto; }
          body main section.blog-listagem-home .blog-listagem .noticia .separador span.data {
            text-align: right;
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: #565656; }
        body main section.blog-listagem-home .blog-listagem .noticia .mais {
          -webkit-transition: all 0.15s;
          -moz-transition: all 0.15s;
          -ms-transition: all 0.15s;
          -o-transition: all 0.15s;
          transition: all 0.15s;
          background-color: #00539a;
          color: white;
          display: inline-block;
          margin: 10px 0px;
          letter-spacing: 1px;
          border: 1px solid #00539a;
          padding: 2px 20px;
          border-radius: 5px;
          font-size: 18px;
          text-align: center; }
        body main section.blog-listagem-home .blog-listagem .noticia .tag {
          display: block;
          font-size: 0.938em;
          color: grey;
          margin: 10px 0px; }
        body main section.blog-listagem-home .blog-listagem .noticia:hover .thumb::before {
          -webkit-filter: opacity(1);
          -webkit-transition: all 0.15s;
          -moz-transition: all 0.15s;
          -ms-transition: all 0.15s;
          -o-transition: all 0.15s;
          transition: all 0.15s; }
        body main section.blog-listagem-home .blog-listagem .noticia:hover h2 {
          color: grey;
          -webkit-transition: all 0.15s;
          -moz-transition: all 0.15s;
          -ms-transition: all 0.15s;
          -o-transition: all 0.15s;
          transition: all 0.15s; }
        body main section.blog-listagem-home .blog-listagem .noticia:hover h3 {
          color: grey; }
        body main section.blog-listagem-home .blog-listagem .noticia:hover .mais {
          background: white;
          border-color: #00539a;
          color: #00539a; }
  body main section.blog-topo {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 55px 0px 20px 0px; }
    body main section.blog-topo .title-page h1 {
      font-size: 25px;
      color: white; }
    body main section.blog-topo .title-page h2 {
      font-size: 42px;
      font-weight: 700;
      color: white;
      margin-top: -15px; }
    body main section.blog-topo .busca {
      display: flex;
      max-width: 1000px;
      margin: auto;
      margin-top: 75px; }
      body main section.blog-topo .busca .caixa {
        width: 100%;
        padding-right: 20px; }
        body main section.blog-topo .busca .caixa input {
          outline: none;
          border: none;
          border-bottom: 2px solid white;
          background-color: transparent;
          color: white;
          font-size: 23px;
          width: 100%;
          padding-top: 2px;
          padding-bottom: 3px; }
        body main section.blog-topo .busca .caixa ::placeholder {
          /* Chrome, Firefox, Opera, Safari 10.1+ */
          font-size: 23px;
          font-weight: 100;
          color: white;
          opacity: 1;
          /* Firefox */ }
        body main section.blog-topo .busca .caixa :-ms-input-placeholder {
          /* Internet Explorer 10-11 */
          font-size: 23px;
          font-weight: 100;
          color: white; }
        body main section.blog-topo .busca .caixa ::-ms-input-placeholder {
          /* Microsoft Edge */
          font-size: 23px;
          font-weight: 100;
          color: white; }
      body main section.blog-topo .busca .acao button {
        color: white;
        background-color: transparent;
        outline: none;
        border: 2px solid white;
        padding: 3px 96px;
        font-size: 21px;
        border-radius: 5px; }
    body main section.blog-topo .categorias ul {
      display: flex;
      justify-content: space-around;
      border-top: 2px solid white;
      margin: 80px 0px 0px 0px;
      padding: 0px; }
      body main section.blog-topo .categorias ul li {
        flex: 1 0 0;
        list-style: none;
        text-align: center;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.blog-topo .categorias ul li a {
          display: block;
          font-size: 20px;
          font-weight: 700;
          color: white;
          padding: 20px 0px; }
        body main section.blog-topo .categorias ul li:hover, body main section.blog-topo .categorias ul li.ativo {
          background-color: white; }
          body main section.blog-topo .categorias ul li:hover a, body main section.blog-topo .categorias ul li.ativo a {
            color: #003c7a; }
    @media screen and (max-width: 991px) {
      body main section.blog-topo .busca {
        display: inherit; }
        body main section.blog-topo .busca .caixa {
          margin-bottom: 20px; }
        body main section.blog-topo .busca .acao button {
          width: 100%; }
      body main section.blog-topo .categorias ul {
        margin: 20px 0px 0px 0px;
        border: none;
        flex-wrap: wrap; }
        body main section.blog-topo .categorias ul li {
          list-style: none;
          flex: calc(50% - 10px) 1 0;
          border: 1px solid white;
          margin: 5px; }
          body main section.blog-topo .categorias ul li a {
            padding: 5px 0px; } }
  body main section.index-solucoes {
    padding: 50px 0px 0px 0px; }
    body main section.index-solucoes .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 750px;
      text-align: center;
      position: relative; }
      body main section.index-solucoes .title b, body main section.index-solucoes .title strong {
        color: #0051a0; }
      body main section.index-solucoes .title:after {
        content: '';
        height: 3px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-solucoes .subtitle {
      font-size: 23px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center; }
    body main section.index-solucoes .servico-box {
      margin-bottom: 40px; }
      body main section.index-solucoes .servico-box .servicos-card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 292px;
        overflow: hidden;
        margin-bottom: 10px; }
        body main section.index-solucoes .servico-box .servicos-card-container .img {
          height: 175px; }
          body main section.index-solucoes .servico-box .servicos-card-container .img img {
            width: 100%;
            border-radius: 10px;
            height: 175px;
            object-fit: cover; }
        body main section.index-solucoes .servico-box .servicos-card-container h2 {
          text-align: center;
          font-size: 1rem;
          font-weight: 600;
          margin: 10px 0 12px 0px;
          text-transform: uppercase;
          color: #00529c; }
        body main section.index-solucoes .servico-box .servicos-card-container .servico-text {
          font-size: 15px;
          font-weight: 400;
          line-height: 1.2;
          text-align: center;
          margin-bottom: 10px; }
      body main section.index-solucoes .servico-box .button-container {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        body main section.index-solucoes .servico-box .button-container a {
          width: 47%; }
          body main section.index-solucoes .servico-box .button-container a .button {
            padding: 3px 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            font-size: .8rem; }
            body main section.index-solucoes .servico-box .button-container a .button.saiba-mais {
              z-index: 1;
              background-color: #0051a0;
              border: solid 2px #0051a0;
              font-weight: 600;
              color: white;
              position: relative;
              overflow: hidden;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body main section.index-solucoes .servico-box .button-container a .button.saiba-mais::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 100%;
                background-color: white;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body main section.index-solucoes .servico-box .button-container a .button.saiba-mais:hover {
                color: #0051a0; }
                body main section.index-solucoes .servico-box .button-container a .button.saiba-mais:hover::after {
                  top: 0px; }
            body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido {
              z-index: 1;
              cursor: pointer;
              background-color: #ff0000;
              border: solid 2px #ff0000;
              font-weight: 600;
              color: white;
              position: relative;
              overflow: hidden;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 100%;
                background-color: white;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido:hover {
                color: #ff0000; }
                body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido:hover::after {
                  top: 0px; }
              body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido.cor-interna {
                border: solid 2px #04a00b;
                color: #04a00b; }
                body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido.cor-interna::after {
                  background-color: #04a00b; }
                body main section.index-solucoes .servico-box .button-container a .button.orcamento-rapido.cor-interna:hover {
                  background-color: #04a00b;
                  color: #ffffff; }
          @media screen and (max-width: 1300px) {
            body main section.index-solucoes .servico-box .button-container a {
              width: 49%; }
              body main section.index-solucoes .servico-box .button-container a .button {
                font-size: .75rem; } }
          @media screen and (max-width: 1199px) {
            body main section.index-solucoes .servico-box .button-container a {
              width: 47%; }
              body main section.index-solucoes .servico-box .button-container a .button {
                font-size: .8rem; } }
  body main section.index-como-fazemos {
    background-image: url("../../media/imagens/bg-como-fazemos.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 0px 60px 0px; }
    body main section.index-como-fazemos .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 360px;
      text-align: center;
      position: relative; }
      body main section.index-como-fazemos .title b, body main section.index-como-fazemos .title strong {
        color: #0051a0; }
      body main section.index-como-fazemos .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-como-fazemos .subtitle {
      font-size: 23px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center; }
    body main section.index-como-fazemos .box-melhor {
      height: 100%;
      margin: 10px 0px;
      position: relative; }
      @media screen and (max-width: 991px) {
        body main section.index-como-fazemos .box-melhor {
          padding: 20px 0px 0px 0px; } }
      body main section.index-como-fazemos .box-melhor::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 4px;
        border-radius: 5px;
        background-color: #0051a0; }
      body main section.index-como-fazemos .box-melhor .box-img {
        text-align: center;
        margin-bottom: 10px; }
        body main section.index-como-fazemos .box-melhor .box-img img {
          max-width: 100%;
          max-height: 100%; }
    body main section.index-como-fazemos .box-title {
      font-size: 18px;
      text-align: center;
      font-weight: 700;
      color: #565656; }
    body main section.index-como-fazemos .box-text {
      font-size: 15px;
      font-weight: 500;
      text-align: center;
      margin-bottom: 10px; }
  body main section.index-separador-video {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    /*Youtube Video Background*/ }
    body main section.index-separador-video::before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0px;
      left: 0px;
      background-color: rgba(0, 0, 0, 0.65);
      z-index: 2; }
    body main section.index-separador-video .container {
      position: relative;
      z-index: 3; }
    body main section.index-separador-video .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: white;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 590px;
      text-align: center;
      position: relative; }
      body main section.index-separador-video .title b, body main section.index-separador-video .title strong {
        color: white; }
      body main section.index-separador-video .title:after {
        content: '';
        height: 4px;
        background-color: white;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-separador-video .subtitle {
      font-size: 19px;
      font-weight: 200;
      color: white;
      padding: 15px 0px;
      text-align: center;
      margin: auto; }
    body main section.index-separador-video .bgVideo {
      background-color: white !important;
      background-image: none !important; }
      body main section.index-separador-video .bgVideo iframe {
        display: unset !important;
        background-image: none !important; }
  body main section.index-separador-cases {
    padding: 50px 0px; }
    body main section.index-separador-cases .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 480px;
      text-align: center;
      position: relative; }
      body main section.index-separador-cases .title b, body main section.index-separador-cases .title strong {
        color: #0051a0; }
      body main section.index-separador-cases .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-separador-cases .subtitle {
      font-size: 20px;
      font-weight: 300;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 670px;
      margin: 0px auto 20px auto;
      line-height: 1.2; }
    body main section.index-separador-cases .box-case-main {
      position: relative;
      margin-bottom: 50px; }
      body main section.index-separador-cases .box-case-main .box-case {
        height: 350px;
        width: 100%;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 2px 2px 7px 1px #dcdcdc; }
        body main section.index-separador-cases .box-case-main .box-case .box-img {
          background-color: #0051a0;
          width: 100%;
          height: 100%; }
          body main section.index-separador-cases .box-case-main .box-case .box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        body main section.index-separador-cases .box-case-main .box-case .box-info {
          position: absolute;
          bottom: 0px;
          left: 0px;
          width: 100%;
          background-color: white;
          padding: 5px 15px 30px 15px;
          text-align: center;
          height: 148px;
          overflow: hidden;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.index-separador-cases .box-case-main .box-case .box-info .box-titulo {
            font-size: 15px;
            font-weight: 600;
            color: #565656;
            margin-bottom: 5px;
            height: 22px;
            overflow: hidden; }
          body main section.index-separador-cases .box-case-main .box-case .box-info .box-text {
            font-size: 15px;
            font-weight: 400;
            color: #565656;
            line-height: 1.2;
            margin-bottom: 10px;
            max-height: 54px;
            overflow: hidden; }
          body main section.index-separador-cases .box-case-main .box-case .box-info .box-local {
            font-size: 15px;
            font-weight: 500;
            color: #565656;
            height: 22px;
            overflow: hidden; }
      body main section.index-separador-cases .box-case-main .leia-mais {
        text-align: center;
        position: absolute;
        bottom: -13px;
        left: 0px;
        width: 100%; }
        body main section.index-separador-cases .box-case-main .leia-mais span {
          background-color: #0051a0;
          border: 1px solid #0051a0;
          font-size: 16px;
          font-weight: 700;
          color: white;
          padding: 5px 35px;
          border-radius: 20px;
          z-index: 2;
          position: relative;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
      body main section.index-separador-cases .box-case-main:hover .box-case .box-img img {
        opacity: 0.75; }
      body main section.index-separador-cases .box-case-main:hover .leia-mais span {
        background-color: white;
        color: #0051a0; }
  body main section.index-separador-seguimento {
    padding: 50px 0px;
    background-image: url("../../media/imagens/seguimento/bg-seguimento.png");
    background-size: cover;
    background-repeat: no-repeat; }
    body main section.index-separador-seguimento .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 685px;
      text-align: center;
      position: relative; }
      body main section.index-separador-seguimento .title b, body main section.index-separador-seguimento .title strong {
        color: #0051a0; }
      body main section.index-separador-seguimento .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-separador-seguimento .subtitle {
      font-size: 18px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 800px;
      margin: 0px auto 20px auto;
      line-height: 1.2; }
    body main section.index-separador-seguimento .box-seguimento {
      display: grid;
      width: 100%;
      max-width: 300px;
      text-align: center;
      padding: 25px;
      margin: 10px auto 10px auto;
      border-radius: 10px;
      height: calc(100% - 20px);
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -ms-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      body main section.index-separador-seguimento .box-seguimento .box-svg {
        width: 100px;
        height: 100px;
        background-color: #dadada;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        padding: 22px;
        margin: auto;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.index-separador-seguimento .box-seguimento .box-svg svg {
          width: 100%;
          fill: black;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
      body main section.index-separador-seguimento .box-seguimento .seguimento-titulo {
        font-size: 20px;
        font-weight: 700;
        color: #565656;
        margin-top: 10px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      body main section.index-separador-seguimento .box-seguimento .seguimento-descricao {
        font-size: 15px;
        line-height: 1.2;
        color: #000000;
        margin-top: 10px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        border-top: 1px solid black;
        padding-top: 10px; }
      body main section.index-separador-seguimento .box-seguimento:hover {
        background-color: white; }
        body main section.index-separador-seguimento .box-seguimento:hover .box-svg {
          background-color: #0051a0; }
          body main section.index-separador-seguimento .box-seguimento:hover .box-svg svg {
            fill: white; }
        body main section.index-separador-seguimento .box-seguimento:hover .seguimento-titulo {
          color: #0051a0; }
  body main section.index-separador-depoimentos {
    background-image: url("../../media/imagens/bg-depoimento.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px; }
    body main section.index-separador-depoimentos .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 315px;
      text-align: center;
      position: relative; }
      body main section.index-separador-depoimentos .title b, body main section.index-separador-depoimentos .title strong {
        color: #0051a0; }
      body main section.index-separador-depoimentos .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-separador-depoimentos .subtitle {
      font-size: 20px;
      font-weight: 300;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 670px;
      margin: 0px auto 0px auto;
      line-height: 1.2; }
    body main section.index-separador-depoimentos .box-depoimento {
      text-align: center;
      border-radius: 15px;
      background-color: white;
      height: 100%;
      padding: 15px;
      margin: 20px 10px;
      box-shadow: 2px 2px 10px #b9b9b9; }
      body main section.index-separador-depoimentos .box-depoimento img {
        width: 100px;
        height: 100px;
        max-width: 100px;
        max-height: 100px;
        border-radius: 100px;
        overflow: hidden;
        object-fit: cover;
        margin: auto;
        background-color: white; }
      body main section.index-separador-depoimentos .box-depoimento .conteudo {
        font-size: 15px;
        font-weight: 400;
        line-height: 1.3;
        margin-top: 10px;
        height: 95px;
        overflow: hidden; }
      body main section.index-separador-depoimentos .box-depoimento .titulo {
        font-size: 16px;
        font-weight: 600;
        height: 24px;
        overflow: hidden; }
      body main section.index-separador-depoimentos .box-depoimento .local {
        font-size: 15px;
        font-weight: 400;
        height: 22px;
        overflow: hidden; }
    body main section.index-separador-depoimentos .owl-dots {
      text-align: center;
      position: absolute;
      width: 100%;
      z-index: 9999;
      bottom: -10px; }
      body main section.index-separador-depoimentos .owl-dots .owl-dot {
        outline: none;
        display: inline-block;
        background: url("../image/dots.png") no-repeat;
        width: 20px;
        height: 20px;
        margin: 0 5px; }
        body main section.index-separador-depoimentos .owl-dots .owl-dot.active {
          background: url("../image/dots-active.png") no-repeat; }
  body main section.index-separador-desafios {
    padding: 40px 0px; }
    body main section.index-separador-desafios .desafio-conteudo .titulo {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 485px;
      text-align: center;
      position: relative; }
      body main section.index-separador-desafios .desafio-conteudo .titulo b, body main section.index-separador-desafios .desafio-conteudo .titulo strong {
        color: #0051a0; }
      body main section.index-separador-desafios .desafio-conteudo .titulo:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-separador-desafios .desafio-conteudo .texto {
      font-size: 16px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 485px;
      margin: 0px auto 0px auto;
      line-height: 1.5; }
    body main section.index-separador-desafios .box-desafio {
      padding-top: 60px;
      text-align: center; }
      body main section.index-separador-desafios .box-desafio .desafio-img {
        text-align: center; }
        body main section.index-separador-desafios .box-desafio .desafio-img img {
          width: auto;
          height: auto;
          display: inline-block; }
      body main section.index-separador-desafios .box-desafio .desafio-title {
        font-size: 18px;
        font-weight: 700;
        color: #0051a0; }
      body main section.index-separador-desafios .box-desafio .desafio-desc {
        font-size: 15px;
        font-weight: 500;
        color: #565656; }
    body main section.index-separador-desafios .separador-img {
      text-align: center; }
      body main section.index-separador-desafios .separador-img img {
        max-width: 100%;
        max-height: 100%; }
      @media screen and (max-width: 991px) {
        body main section.index-separador-desafios .separador-img {
          padding: 15px; } }
    body main section.index-separador-desafios .saiba-mais {
      margin-top: 75px;
      text-align: center; }
      body main section.index-separador-desafios .saiba-mais span {
        background-color: #0051a0;
        border: 1px solid #0051a0;
        font-size: 16px;
        font-weight: 700;
        color: white;
        padding: 5px 35px;
        border-radius: 20px;
        z-index: 2;
        position: relative;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body main section.index-separador-desafios .saiba-mais span:hover {
          background-color: white;
          color: #0051a0; }
    body main section.index-separador-desafios .owl-dots {
      text-align: center;
      position: absolute;
      width: 100%;
      z-index: 9999;
      bottom: -50px; }
      body main section.index-separador-desafios .owl-dots .owl-dot {
        outline: none;
        display: inline-block;
        background: url("../image/dots.png") no-repeat;
        width: 20px;
        height: 20px;
        margin: 0 5px; }
        body main section.index-separador-desafios .owl-dots .owl-dot.active {
          background: url("../image/dots-active.png") no-repeat; }
  body main section.index-separador-novidades {
    position: relative;
    z-index: 1;
    padding: 50px 0px;
    background-image: url("../../media/imagens/bg-novidades-index.png");
    background-size: cover;
    background-repeat: no-repeat; }
    body main section.index-separador-novidades .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 565px;
      text-align: center;
      position: relative; }
      body main section.index-separador-novidades .title b, body main section.index-separador-novidades .title strong {
        color: #0051a0; }
      body main section.index-separador-novidades .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.index-separador-novidades .subtitle {
      font-size: 20px;
      font-weight: 300;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 670px;
      margin: 0px auto 20px auto;
      line-height: 1.2; }
    body main section.index-separador-novidades .posts-container .normal-card-container {
      margin-bottom: 40px; }
      body main section.index-separador-novidades .posts-container .normal-card-container .card-box {
        background-color: #ffffff;
        border-radius: 10px;
        position: relative;
        -webkit-box-shadow: 3px 3px 11px 0px #999999;
        -moz-box-shadow: 3px 3px 11px 0px #999999;
        box-shadow: 3px 3px 11px 0px #999999;
        height: 100%; }
        body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask {
          background-image: url("../image/mask.png");
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          border-radius: 10px;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          display: flex;
          opacity: 0;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask h2, body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask h3 {
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            opacity: 0;
            color: #fff;
            padding: 0 15px;
            text-align: center;
            font-size: 1.5rem;
            max-width: 300px; }
          body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask h3 {
            font-size: 1rem;
            max-width: 400px; }
          body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask:hover {
            opacity: 1; }
            body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask:hover h2 {
              opacity: 1; }
            body main section.index-separador-novidades .posts-container .normal-card-container .card-box .mask:hover h3 {
              opacity: 1; }
        body main section.index-separador-novidades .posts-container .normal-card-container .card-box img {
          width: 100%;
          height: 220px;
          object-fit: cover;
          border-top-left-radius: 10px;
          border-top-right-radius: 10px; }
        body main section.index-separador-novidades .posts-container .normal-card-container .card-box .description {
          text-align: center;
          padding: 10px 15px 30px 15px;
          font-weight: 400;
          line-height: 1.2; }
          body main section.index-separador-novidades .posts-container .normal-card-container .card-box .description h2 {
            font-size: 15px;
            font-weight: 700;
            height: 36px;
            overflow: hidden; }
        body main section.index-separador-novidades .posts-container .normal-card-container .card-box .leia-mais {
          display: flex;
          justify-content: center;
          align-items: center;
          position: absolute;
          bottom: -15px;
          left: calc(50% - 100px);
          background-color: #ffffff;
          border: solid 2px #00529c;
          border-radius: 15px;
          color: #00529c;
          font-weight: 900;
          width: 200px;
          height: 30px;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.index-separador-novidades .posts-container .normal-card-container .card-box .leia-mais:hover {
            background-color: #00529c;
            color: #ffffff; }
  body main section.servicos {
    padding-top: 30px; }
    body main section.servicos .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 750px;
      text-align: center;
      position: relative; }
      body main section.servicos .title b, body main section.servicos .title strong {
        color: #0051a0; }
      body main section.servicos .title:after {
        content: '';
        height: 3px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.servicos .subtitle {
      font-size: 23px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      margin-bottom: 15px; }
    body main section.servicos .servico-box {
      margin-bottom: 40px; }
      body main section.servicos .servico-box .servicos-card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        margin-bottom: 10px; }
        body main section.servicos .servico-box .servicos-card-container img {
          width: 100%;
          border-radius: 10px;
          height: 175px;
          object-fit: cover; }
        body main section.servicos .servico-box .servicos-card-container .svg {
          width: 100px;
          height: 100px;
          background-color: #dadada;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 100px;
          padding: 22px;
          margin: auto;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.servicos .servico-box .servicos-card-container .svg svg {
            width: 100%;
            fill: black;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        body main section.servicos .servico-box .servicos-card-container h2 {
          text-align: center;
          font-size: 1rem;
          font-weight: 600;
          margin: 10px 0 12px 0px;
          text-transform: uppercase;
          color: #00529c; }
        body main section.servicos .servico-box .servicos-card-container .servico-text {
          font-size: 15px;
          font-weight: 400;
          line-height: 1.2;
          text-align: center;
          margin-bottom: 10px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          text-overflow: ellipsis; }
      body main section.servicos .servico-box .button-container {
        width: 100%;
        display: flex;
        justify-content: space-between; }
        body main section.servicos .servico-box .button-container a {
          width: 47%; }
          body main section.servicos .servico-box .button-container a .button {
            padding: 3px 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            font-size: .8rem; }
            body main section.servicos .servico-box .button-container a .button.saiba-mais {
              z-index: 1;
              background-color: #0051a0;
              border: solid 2px #0051a0;
              font-weight: 600;
              color: white;
              position: relative;
              overflow: hidden;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body main section.servicos .servico-box .button-container a .button.saiba-mais::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 100%;
                background-color: white;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body main section.servicos .servico-box .button-container a .button.saiba-mais:hover {
                color: #0051a0; }
                body main section.servicos .servico-box .button-container a .button.saiba-mais:hover::after {
                  top: 0px; }
            body main section.servicos .servico-box .button-container a .button.orcamento-rapido {
              z-index: 1;
              cursor: pointer;
              background-color: #ff0000;
              border: solid 2px #ff0000;
              font-weight: 600;
              color: white;
              position: relative;
              overflow: hidden;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body main section.servicos .servico-box .button-container a .button.orcamento-rapido::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 100%;
                background-color: white;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body main section.servicos .servico-box .button-container a .button.orcamento-rapido:hover {
                color: #ff0000; }
                body main section.servicos .servico-box .button-container a .button.orcamento-rapido:hover::after {
                  top: 0px; }
              body main section.servicos .servico-box .button-container a .button.orcamento-rapido.cor-interna {
                border: solid 2px #04a00b;
                color: #04a00b; }
                body main section.servicos .servico-box .button-container a .button.orcamento-rapido.cor-interna::after {
                  background-color: #04a00b; }
                body main section.servicos .servico-box .button-container a .button.orcamento-rapido.cor-interna:hover {
                  background-color: #04a00b;
                  color: #ffffff; }
          @media screen and (max-width: 1300px) {
            body main section.servicos .servico-box .button-container a {
              width: 49%; }
              body main section.servicos .servico-box .button-container a .button {
                font-size: .75rem; } }
          @media screen and (max-width: 1199px) {
            body main section.servicos .servico-box .button-container a {
              width: 47%; }
              body main section.servicos .servico-box .button-container a .button {
                font-size: .8rem; } }
  body main section.lateral-contato {
    border: 1.5px solid #c1c1c1;
    padding: 15px;
    margin-bottom: 30px; }
    body main section.lateral-contato .contatos h2 {
      font-size: 23px;
      font-weight: 700;
      color: #0051a0;
      margin: auto;
      text-align: center;
      margin-bottom: 15px; }
    body main section.lateral-contato .contatos .box-contato {
      display: flex;
      margin-bottom: 20px;
      padding-left: 30px; }
      body main section.lateral-contato .contatos .box-contato .icone {
        margin-right: 20px;
        padding-top: 5px; }
        body main section.lateral-contato .contatos .box-contato .icone i {
          font-size: 41px; }
      body main section.lateral-contato .contatos .box-contato .numero {
        position: relative; }
        body main section.lateral-contato .contatos .box-contato .numero::after {
          content: '';
          position: absolute;
          bottom: 0px;
          left: 0px;
          height: 3px;
          width: 0%;
          background-color: #565656;
          -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -ms-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s; }
        body main section.lateral-contato .contatos .box-contato .numero h4 {
          font-size: 15px;
          font-weight: 400; }
        body main section.lateral-contato .contatos .box-contato .numero h5 {
          font-size: 20px;
          font-weight: 600;
          margin-top: -8px; }
      body main section.lateral-contato .contatos .box-contato.phone {
        position: relative; }
        body main section.lateral-contato .contatos .box-contato.phone::before {
          content: '';
          position: absolute;
          width: 90%;
          height: 1px;
          background-color: #cacaca;
          bottom: -13px;
          left: 5%; }
        body main section.lateral-contato .contatos .box-contato.phone i {
          color: #0051a0; }
        body main section.lateral-contato .contatos .box-contato.phone h4 {
          color: #565656; }
        body main section.lateral-contato .contatos .box-contato.phone h5 {
          color: #565656; }
      body main section.lateral-contato .contatos .box-contato.zap i {
        color: #07cf2e; }
      body main section.lateral-contato .contatos .box-contato.zap h4 {
        color: #07cf2e; }
      body main section.lateral-contato .contatos .box-contato.zap h5 {
        color: #565656; }
      body main section.lateral-contato .contatos .box-contato:hover .numero::after {
        width: 100%; }
    body main section.lateral-contato .contatos .endereco {
      margin-top: 13px;
      position: relative;
      padding-left: 30px;
      display: flex; }
      body main section.lateral-contato .contatos .endereco::before {
        content: '';
        position: absolute;
        width: 90%;
        height: 1px;
        background-color: #cacaca;
        top: -13px;
        left: 5%; }
      body main section.lateral-contato .contatos .endereco .icon {
        font-size: 43px;
        color: red;
        margin-right: 22px; }
      body main section.lateral-contato .contatos .endereco .info {
        line-height: 1.2; }
  body main section.como-fazemos {
    padding-bottom: 50px; }
    body main section.como-fazemos .conteudo {
      font-size: 15px;
      font-weight: 400;
      color: black;
      margin-bottom: 20px;
      padding: 50px 0px; }
      body main section.como-fazemos .conteudo h1, body main section.como-fazemos .conteudo h2, body main section.como-fazemos .conteudo h3, body main section.como-fazemos .conteudo h4, body main section.como-fazemos .conteudo h5, body main section.como-fazemos .conteudo h6 {
        font-size: 32px;
        font-weight: 700;
        color: #00468c;
        line-height: 1.2; }
      body main section.como-fazemos .conteudo h2 {
        font-size: 28px; }
      body main section.como-fazemos .conteudo h3 {
        font-size: 25px; }
      body main section.como-fazemos .conteudo h4 {
        font-size: 23px; }
      body main section.como-fazemos .conteudo h5 {
        font-size: 20px; }
      body main section.como-fazemos .conteudo h6 {
        font-size: 18px; }
      body main section.como-fazemos .conteudo .conteudo-img {
        float: left;
        max-width: 50%;
        margin-right: 20px;
        margin-bottom: 20px; }
        body main section.como-fazemos .conteudo .conteudo-img img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain; }
      @media screen and (max-width: 991px) {
        body main section.como-fazemos .conteudo {
          padding-top: 10px; }
          body main section.como-fazemos .conteudo .conteudo-img {
            float: unset;
            max-width: 100%;
            width: 100%;
            margin-right: 0px;
            margin-bottom: 20px; } }
  body main .compartilhamento_redes {
    float: left;
    height: 100%;
    margin-right: 50px; }
    body main .compartilhamento_redes ul {
      margin: 0px;
      font-size: 27px;
      line-height: 1;
      margin-top: 50px;
      width: 32px;
      border: 1px solid #cacaca;
      padding: 0px 3px 3px 3px;
      border-radius: 5px;
      margin-left: auto;
      overflow: hidden; }
      body main .compartilhamento_redes ul li {
        list-style: none;
        padding: 0px;
        margin: 0px; }
        body main .compartilhamento_redes ul li i.fas.fa-share-alt-square {
          color: #0050a4;
          margin-top: -3px;
          font-size: 36px;
          margin-left: -4px;
          margin-bottom: 2px; }
        body main .compartilhamento_redes ul li a i.fab.fa-linkedin {
          color: #007ec8; }
        body main .compartilhamento_redes ul li a i.fab.fa-twitter-square {
          color: #009de1; }
        body main .compartilhamento_redes ul li a i.fab.fa-facebook-square {
          color: #0050a4; }
        body main .compartilhamento_redes ul li a i.fab.fa-whatsapp-square {
          color: #00bc04; }
    @media screen and (max-width: 991px) {
      body main .compartilhamento_redes {
        margin: 0px;
        float: unset;
        height: auto; }
        body main .compartilhamento_redes ul {
          display: flex;
          width: 100%;
          padding: 0px;
          border: none; }
          body main .compartilhamento_redes ul li {
            margin: 0px 2px; } }
  body main section.blog-relacionados {
    padding: 50px 0px 0px 0px; }
    body main section.blog-relacionados .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 480px;
      text-align: center;
      position: relative; }
      body main section.blog-relacionados .title b, body main section.blog-relacionados .title strong {
        color: #0051a0; }
      body main section.blog-relacionados .title:after {
        content: '';
        height: 4px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.blog-relacionados .subtitle {
      font-size: 20px;
      font-weight: 300;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      max-width: 670px;
      margin: 0px auto 20px auto;
      line-height: 1.2; }
    body main section.blog-relacionados .box-case-main {
      position: relative;
      margin-bottom: 50px; }
      body main section.blog-relacionados .box-case-main .box-case {
        height: 350px;
        width: 100%;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 2px 2px 7px 1px #dcdcdc; }
        body main section.blog-relacionados .box-case-main .box-case .box-img {
          background-color: #0051a0;
          width: 100%;
          height: 100%; }
          body main section.blog-relacionados .box-case-main .box-case .box-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        body main section.blog-relacionados .box-case-main .box-case .box-info {
          position: absolute;
          bottom: 0px;
          left: 0px;
          width: 100%;
          background-color: white;
          padding: 5px 15px 15px 15px;
          text-align: center;
          height: 115px;
          overflow: hidden;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.blog-relacionados .box-case-main .box-case .box-info .box-titulo {
            font-size: 15px;
            font-weight: 600;
            color: #565656;
            margin-bottom: 5px;
            height: 22px;
            overflow: hidden; }
          body main section.blog-relacionados .box-case-main .box-case .box-info .box-text {
            font-size: 15px;
            font-weight: 400;
            color: #565656;
            line-height: 1.2;
            margin-bottom: 10px;
            max-height: 54px;
            overflow: hidden; }
          body main section.blog-relacionados .box-case-main .box-case .box-info .box-local {
            font-size: 15px;
            font-weight: 500;
            color: #565656;
            height: 22px;
            overflow: hidden; }
      body main section.blog-relacionados .box-case-main .leia-mais {
        text-align: center;
        position: absolute;
        bottom: -13px;
        left: 0px;
        width: 100%; }
        body main section.blog-relacionados .box-case-main .leia-mais span {
          background-color: #0051a0;
          border: 1px solid #0051a0;
          font-size: 16px;
          font-weight: 700;
          color: white;
          padding: 5px 35px;
          border-radius: 20px;
          z-index: 2;
          position: relative;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
      body main section.blog-relacionados .box-case-main:hover .box-case .box-img img {
        opacity: 0.75; }
      body main section.blog-relacionados .box-case-main:hover .leia-mais span {
        background-color: white;
        color: #0051a0; }
  body main section.index-separador-dados {
    background-color: #00529c;
    background-image: url("../image/bg-footer.jpg");
    padding: 50px;
    background-size: cover;
    background-position: center center; }
    body main section.index-separador-dados .container {
      max-width: 1140px; }
      body main section.index-separador-dados .container .box-main-number {
        text-align: center; }
        @media screen and (max-width: 991px) {
          body main section.index-separador-dados .container .box-main-number {
            margin-bottom: 20px; } }
        body main section.index-separador-dados .container .box-main-number .box-in-number {
          font-size: 59px;
          font-weight: 700;
          color: white;
          line-height: 1.2; }
        body main section.index-separador-dados .container .box-main-number .box-in-texto {
          font-size: 18px;
          font-weight: 400;
          color: white;
          line-height: 1.2; }
        body main section.index-separador-dados .container .box-main-number .numerofinal {
          display: none; }
  body main section.atuacoes {
    padding-top: 30px; }
    body main section.atuacoes .title {
      text-transform: uppercase;
      font-size: 27px;
      font-weight: 700;
      color: #565656;
      line-height: 1.2;
      margin: 10px auto 20px auto;
      max-width: 750px;
      text-align: center;
      position: relative; }
      body main section.atuacoes .title b, body main section.atuacoes .title strong {
        color: #0051a0; }
      body main section.atuacoes .title:after {
        content: '';
        height: 3px;
        background-color: #343434;
        position: absolute;
        bottom: -20px;
        width: 35%;
        left: calc(32.5%); }
    body main section.atuacoes .subtitle {
      font-size: 23px;
      font-weight: 400;
      color: #565656;
      padding: 15px 0px;
      text-align: center;
      margin-bottom: 15px; }
    body main section.atuacoes .servico-box {
      margin-bottom: 40px; }
      body main section.atuacoes .servico-box .servicos-card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        margin-bottom: 10px; }
        body main section.atuacoes .servico-box .servicos-card-container img {
          width: 100%;
          border-radius: 10px;
          height: 175px;
          object-fit: cover; }
        body main section.atuacoes .servico-box .servicos-card-container .svg {
          width: 100px;
          height: 100px;
          background-color: #dadada;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 100px;
          padding: 22px;
          margin: auto;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body main section.atuacoes .servico-box .servicos-card-container .svg svg {
            width: 100%;
            fill: black;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
        body main section.atuacoes .servico-box .servicos-card-container h2 {
          text-align: center;
          font-size: 1rem;
          font-weight: 600;
          margin: 10px 0 12px 0px;
          text-transform: uppercase;
          color: #00529c;
          min-height: 38px; }
        body main section.atuacoes .servico-box .servicos-card-container .servico-text {
          font-size: 15px;
          font-weight: 400;
          line-height: 1.2;
          text-align: center;
          margin-bottom: 10px;
          overflow: hidden;
          display: -webkit-box;
          -webkit-line-clamp: 5;
          -webkit-box-orient: vertical;
          text-overflow: ellipsis; }
      body main section.atuacoes .servico-box .button-container {
        width: 100%; }
        body main section.atuacoes .servico-box .button-container a {
          display: block;
          width: 100%;
          margin-bottom: 10px; }
          body main section.atuacoes .servico-box .button-container a .button {
            padding: 3px 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 5px;
            font-size: .8rem; }
            body main section.atuacoes .servico-box .button-container a .button.saiba-mais {
              z-index: 1;
              background-color: #0051a0;
              border: solid 2px #0051a0;
              font-weight: 600;
              color: white;
              position: relative;
              overflow: hidden;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body main section.atuacoes .servico-box .button-container a .button.saiba-mais::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 100%;
                background-color: white;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body main section.atuacoes .servico-box .button-container a .button.saiba-mais:hover {
                color: #0051a0; }
                body main section.atuacoes .servico-box .button-container a .button.saiba-mais:hover::after {
                  top: 0px; }
            body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido {
              z-index: 1;
              cursor: pointer;
              background-color: #ff0000;
              border: solid 2px #ff0000;
              font-weight: 600;
              color: white;
              position: relative;
              overflow: hidden;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
              body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                left: 0px;
                top: 100%;
                background-color: white;
                z-index: -1;
                -webkit-transition: all 0.3s;
                -moz-transition: all 0.3s;
                -ms-transition: all 0.3s;
                -o-transition: all 0.3s;
                transition: all 0.3s; }
              body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido:hover {
                color: #ff0000; }
                body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido:hover::after {
                  top: 0px; }
              body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido.cor-interna {
                border: solid 2px #04a00b;
                color: #04a00b; }
                body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido.cor-interna::after {
                  background-color: #04a00b; }
                body main section.atuacoes .servico-box .button-container a .button.orcamento-rapido.cor-interna:hover {
                  background-color: #04a00b;
                  color: #ffffff; }
          @media screen and (max-width: 1300px) {
            body main section.atuacoes .servico-box .button-container a {
              width: 100%; }
              body main section.atuacoes .servico-box .button-container a .button {
                font-size: .75rem; } }
          @media screen and (max-width: 1199px) {
            body main section.atuacoes .servico-box .button-container a {
              width: 100%; }
              body main section.atuacoes .servico-box .button-container a .button {
                font-size: .8rem; } }
  body footer section.mapa {
    width: 100%;
    height: 350px; }
    body footer section.mapa iframe {
      width: 100%;
      height: 100%; }
  body footer section.rodape {
    background-image: url("../image/bg-footer.jpg");
    padding: 50px;
    background-size: cover; }
    body footer section.rodape .title {
      display: flex;
      justify-content: center;
      align-items: center; }
      body footer section.rodape .title .separador1 {
        background-color: #cecece;
        height: 2px;
        width: 100%;
        margin: 30px 0; }
    body footer section.rodape .conte-conosco {
      display: flex;
      justify-content: flex-end; }
      @media screen and (max-width: 500px) {
        body footer section.rodape .conte-conosco {
          justify-content: center;
          margin-bottom: 15px; } }
      body footer section.rodape .conte-conosco .conte-conosco-container {
        display: flex;
        align-items: flex-end; }
        body footer section.rodape .conte-conosco .conte-conosco-container h1 {
          color: #ffffff;
          font-size: 42px;
          font-weight: 700;
          margin: 0;
          padding-right: 10px; }
          body footer section.rodape .conte-conosco .conte-conosco-container h1 span {
            display: block; }
            body footer section.rodape .conte-conosco .conte-conosco-container h1 span.linha-2 {
              margin-left: 25px; }
            body footer section.rodape .conte-conosco .conte-conosco-container h1 span.linha-3 {
              margin-left: 104px; }
          @media screen and (max-width: 400px) {
            body footer section.rodape .conte-conosco .conte-conosco-container h1 {
              font-size: 30px; } }
          @media screen and (max-width: 320px) {
            body footer section.rodape .conte-conosco .conte-conosco-container h1 {
              font-size: 25px; } }
        body footer section.rodape .conte-conosco .conte-conosco-container img {
          height: 30px;
          margin-bottom: 8px; }
    body footer section.rodape .ligamos {
      display: flex;
      align-items: flex-end; }
      body footer section.rodape .ligamos .ligamos-button-container {
        cursor: pointer;
        width: 100%;
        display: flex; }
        @media screen and (max-width: 500px) {
          body footer section.rodape .ligamos .ligamos-button-container {
            justify-content: center; } }
        body footer section.rodape .ligamos .ligamos-button-container .ligamos-button {
          padding: 5px 40px;
          font-weight: 600;
          font-size: 1rem;
          color: #ffffff;
          border: solid 2px #ffffff;
          border-radius: 40px;
          text-align: center;
          position: relative;
          z-index: 1;
          overflow: hidden;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body footer section.rodape .ligamos .ligamos-button-container .ligamos-button::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0px;
            top: 100%;
            background-color: #71c6ee;
            z-index: -1;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s; }
          body footer section.rodape .ligamos .ligamos-button-container .ligamos-button:hover {
            color: white; }
            body footer section.rodape .ligamos .ligamos-button-container .ligamos-button:hover::after {
              top: 0px; }
          @media screen and (max-width: 400px) {
            body footer section.rodape .ligamos .ligamos-button-container .ligamos-button {
              padding: 5px 10px; } }
          @media screen and (max-width: 320px) {
            body footer section.rodape .ligamos .ligamos-button-container .ligamos-button {
              padding: 5px 5px; } }
    body footer section.rodape .footer-logo {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-bottom: 20px; }
      body footer section.rodape .footer-logo img {
        width: 100%;
        max-width: 300px;
        object-fit: contain;
        margin-bottom: 100px;
        background-color: white;
        padding: 15px;
        border-radius: 5px; }
      body footer section.rodape .footer-logo a {
        color: #ffffff;
        text-transform: uppercase;
        font-weight: 300;
        font-size: .9rem; }
    body footer section.rodape .footer-empresa {
      display: flex;
      flex-direction: column;
      list-style-type: none;
      padding-bottom: 20px; }
      body footer section.rodape .footer-empresa .margin-box {
        width: 100%;
        border-right: solid 2px #cecece; }
        @media screen and (max-width: 768px) {
          body footer section.rodape .footer-empresa .margin-box {
            border-right: none; } }
      body footer section.rodape .footer-empresa h2 {
        font-size: 1.4rem;
        color: #ffffff; }
      body footer section.rodape .footer-empresa ul {
        padding: 0;
        margin-bottom: 0; }
        body footer section.rodape .footer-empresa ul li {
          padding: 1px 0;
          list-style-type: none; }
          body footer section.rodape .footer-empresa ul li i {
            color: #71c6ee; }
          body footer section.rodape .footer-empresa ul li a {
            color: #ffffff;
            font-weight: 300;
            position: relative; }
            body footer section.rodape .footer-empresa ul li a::after {
              background-color: #71c6ee;
              position: absolute;
              bottom: -2px;
              left: 0;
              content: '';
              width: 0;
              height: 3px;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
            body footer section.rodape .footer-empresa ul li a:hover::after {
              width: 100%; }
    body footer section.rodape .footer-servicos {
      display: flex;
      flex-direction: column;
      list-style-type: none;
      padding-bottom: 20px; }
      body footer section.rodape .footer-servicos .margin-box {
        width: 100%;
        border-right: solid 2px #cecece; }
        @media screen and (max-width: 768px) {
          body footer section.rodape .footer-servicos .margin-box {
            border-right: none; } }
      body footer section.rodape .footer-servicos h2 {
        font-size: 1.4rem;
        color: #ffffff; }
      body footer section.rodape .footer-servicos ul {
        padding: 0;
        margin-bottom: 0; }
        body footer section.rodape .footer-servicos ul li {
          padding: 1px 0;
          list-style-type: none; }
          body footer section.rodape .footer-servicos ul li i {
            color: #71c6ee; }
          body footer section.rodape .footer-servicos ul li a {
            color: #ffffff;
            font-weight: 300;
            position: relative; }
            body footer section.rodape .footer-servicos ul li a::after {
              background-color: #71c6ee;
              position: absolute;
              bottom: -2px;
              left: 0;
              content: '';
              width: 0;
              height: 3px;
              -webkit-transition: all 0.3s;
              -moz-transition: all 0.3s;
              -ms-transition: all 0.3s;
              -o-transition: all 0.3s;
              transition: all 0.3s; }
            body footer section.rodape .footer-servicos ul li a:hover::after {
              width: 100%; }
    body footer section.rodape .footer-atendimento {
      display: flex;
      flex-direction: column;
      padding-bottom: 20px; }
      body footer section.rodape .footer-atendimento h2 {
        font-size: 1.4rem;
        color: #ffffff; }
      body footer section.rodape .footer-atendimento .box-atendimento {
        position: relative;
        display: inline-flex;
        margin-bottom: 35px; }
        @media screen and (max-width: 768px) {
          body footer section.rodape .footer-atendimento .box-atendimento {
            justify-content: center; } }
        body footer section.rodape .footer-atendimento .box-atendimento .icon {
          padding-top: 5px;
          margin-right: 10px; }
        body footer section.rodape .footer-atendimento .box-atendimento .txtEndereco {
          font-size: 15px;
          line-height: 1.2;
          color: white; }
        body footer section.rodape .footer-atendimento .box-atendimento .txt .ref {
          font-size: 13px;
          font-weight: 300;
          color: white; }
        body footer section.rodape .footer-atendimento .box-atendimento .txt .number {
          font-size: 19px;
          font-weight: 560;
          color: white;
          margin-top: -5px; }
        body footer section.rodape .footer-atendimento .box-atendimento::after {
          background-color: #71c6ee;
          position: absolute;
          bottom: -4px;
          left: 0;
          content: '';
          width: 0;
          height: 3px;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body footer section.rodape .footer-atendimento .box-atendimento:hover::after {
          width: 100%; }
    @media screen and (max-width: 1410px) {
      body footer section.rodape .coluna .box-atendimento {
        display: inherit;
        text-align: center;
        margin-bottom: 20px; }
        body footer section.rodape .coluna .box-atendimento .txt .number {
          font-size: 15px; } }
    @media screen and (max-width: 991px) {
      body footer section.rodape {
        text-align: center; }
        body footer section.rodape .coluna {
          margin-bottom: 20px; }
          body footer section.rodape .coluna .box-atendimento {
            display: block; } }
    body footer section.rodape .newsletter-container {
      width: 100%;
      margin-bottom: 20px;
      margin-top: 20px; }
      body footer section.rodape .newsletter-container .newsletter {
        display: flex;
        width: 100%; }
        body footer section.rodape .newsletter-container .newsletter input {
          outline: none;
          color: #565656;
          font-weight: 700;
          width: 100%;
          padding: 7px 0px 7px 12px;
          border: 0;
          border-top-left-radius: 5px;
          border-bottom-left-radius: 5px;
          -webkit-box-shadow: inset 2px 2px 10px -5px rgba(0, 0, 0, 0.5);
          -moz-box-shadow: inset 2px 2px 10px -5px rgba(0, 0, 0, 0.5);
          box-shadow: inset 2px 2px 10px -5px rgba(0, 0, 0, 0.5); }
          body footer section.rodape .newsletter-container .newsletter input ::placeholder {
            color: #c1c1c1; }
          @media screen and (max-width: 1024px) {
            body footer section.rodape .newsletter-container .newsletter input {
              width: 80%; } }
        body footer section.rodape .newsletter-container .newsletter .assinar {
          cursor: pointer;
          font-size: .9rem;
          text-transform: uppercase;
          padding: 6px;
          background-color: #003c7b;
          border-top-right-radius: 5px;
          border-bottom-right-radius: 5px; }
          body footer section.rodape .newsletter-container .newsletter .assinar button {
            background-color: transparent;
            border: none;
            color: #ffffff;
            text-transform: uppercase;
            font-weight: 600;
            width: 100%;
            height: 100%;
            outline: none; }
  body footer section.copyright {
    padding: 20px 0px 80px 0px;
    background-color: #f0f0f0; }
    body footer section.copyright .conteudo {
      font-size: 16px;
      margin-top: 12px;
      text-align: center;
      color: #5f5f5f; }
      body footer section.copyright .conteudo span {
        font-weight: 700; }
    body footer section.copyright .selos {
      text-align: center; }
    @media screen and (max-width: 991px) {
      body footer section.copyright {
        padding: 20px 0px 80px 0px; }
        body footer section.copyright .conteudo, body footer section.copyright .selos {
          text-align: center; } }
  body footer section.barra-fixa {
    background: #fff;
    z-index: 999;
    height: 63px;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
    @media screen and (max-width: 991px) {
      body footer section.barra-fixa {
        display: none; } }
    body footer section.barra-fixa.oculta {
      height: 0px; }
      body footer section.barra-fixa.oculta .go-to-top {
        display: none !important; }
    body footer section.barra-fixa .box-contato {
      display: inline-flex;
      position: relative; }
      body footer section.barra-fixa .box-contato.first {
        margin-right: 15px; }
      body footer section.barra-fixa .box-contato .icon {
        font-size: 43px;
        margin-right: 5px; }
        body footer section.barra-fixa .box-contato .icon i.fas.fa-phone-square {
          color: #00529c; }
        body footer section.barra-fixa .box-contato .icon i.fab.fa-whatsapp {
          color: #0ebd1a; }
      body footer section.barra-fixa .box-contato .txt {
        padding-top: 9px; }
        body footer section.barra-fixa .box-contato .txt .ref {
          font-size: 12px;
          font-weight: 800;
          color: #000; }
        body footer section.barra-fixa .box-contato .txt .number {
          font-size: 19px;
          font-weight: 300;
          margin-top: -2px;
          color: #000; }
          @media screen and (max-width: 768px) {
            body footer section.barra-fixa .box-contato .txt .number {
              font-size: 17px; } }
          @media screen and (max-width: 370px) {
            body footer section.barra-fixa .box-contato .txt .number {
              font-size: 14px; } }
          @media screen and (max-width: 332px) {
            body footer section.barra-fixa .box-contato .txt .number {
              font-size: 13px; } }
      body footer section.barra-fixa .box-contato::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0px;
        height: 1px;
        width: 0px;
        background-color: #565755;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s; }
      body footer section.barra-fixa .box-contato:hover::after {
        width: 100%; }
    body footer section.barra-fixa .acao {
      padding-top: 10px;
      display: inline-flex; }
      body footer section.barra-fixa .acao.first {
        margin-right: 15px; }
      body footer section.barra-fixa .acao span {
        cursor: pointer;
        background-color: red;
        border: 2px solid red;
        color: white;
        font-size: 14px;
        font-weight: 800;
        padding: 9px 13px;
        min-width: 199px;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
        body footer section.barra-fixa .acao span::after {
          content: '';
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0px;
          top: 100%;
          background-color: white;
          z-index: -1;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
        body footer section.barra-fixa .acao span.blue {
          border: 2px solid #00529c;
          background-color: #00529c;
          color: white; }
          body footer section.barra-fixa .acao span.blue::after {
            background-color: white; }
        body footer section.barra-fixa .acao span:hover {
          color: red; }
          body footer section.barra-fixa .acao span:hover.blue {
            color: #00529c; }
          body footer section.barra-fixa .acao span:hover::after {
            top: 0px; }
  body footer section.barra-fixa-mobile {
    background-color: white;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    padding: 1px 0px;
    border-top: 2px solid #00529c;
    -webkit-transition: all .5s ease;
    transition: all .5s ease; }
    body footer section.barra-fixa-mobile .list-itens {
      display: flex;
      justify-content: space-around;
      font-size: 30px; }
      body footer section.barra-fixa-mobile .list-itens a {
        color: #00529c; }
    @media screen and (min-width: 992px) {
      body footer section.barra-fixa-mobile {
        display: none; } }
  body footer section.botao_whatsapp {
    background-color: #25d366;
    width: 70px;
    height: 70px;
    position: fixed;
    z-index: 999;
    bottom: 80px;
    right: 20px;
    border-radius: 75px;
    box-shadow: 3px 1px 15px #7b7b7b;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    body footer section.botao_whatsapp i.fab.fa-whatsapp {
      color: white;
      font-size: 55px;
      margin-top: 6px;
      margin-left: 11px; }
    body footer section.botao_whatsapp:hover {
      background-color: #1f9249; }
    @media screen and (max-width: 991px) {
      body footer section.botao_whatsapp {
        bottom: 62px; } }
  body footer section.modal-site {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0; }
    body footer section.modal-site.aberto {
      -webkit-transition: opacity 0.5s ease-in-out;
      -moz-transition: opacity 0.5s ease-in-out;
      -ms-transition: opacity 0.5s ease-in-out;
      -o-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out;
      display: inherit;
      opacity: 1;
      z-index: 999; }
    body footer section.modal-site .lente {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(86, 86, 86, 0.55);
      z-index: -1; }
    body footer section.modal-site .box-modal {
      background-color: white;
      position: relative;
      padding: 15px;
      margin: 100px auto;
      display: block;
      max-width: 700px;
      box-shadow: 2px 2px 7px #565656; }
      @media screen and (min-width: 1199px) {
        body footer section.modal-site .box-modal {
          padding: 50px; } }
      body footer section.modal-site .box-modal .button-close {
        position: absolute;
        font-size: 30px;
        top: -7px;
        right: 0; }
        body footer section.modal-site .box-modal .button-close i {
          cursor: pointer;
          color: #00b3d0;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body footer section.modal-site .box-modal .button-close i:hover {
            transform: scale(1.05); }
      body footer section.modal-site .box-modal .modal-titulo {
        position: relative;
        margin-bottom: 20px; }
        body footer section.modal-site .box-modal .modal-titulo h1 {
          font-size: 30px; }
        body footer section.modal-site .box-modal .modal-titulo h2 {
          font-size: 27px; }
        body footer section.modal-site .box-modal .modal-titulo h3 {
          font-size: 24px; }
        body footer section.modal-site .box-modal .modal-titulo h4 {
          font-size: 21px; }
        body footer section.modal-site .box-modal .modal-titulo h5 {
          font-size: 17px; }
        body footer section.modal-site .box-modal .modal-titulo h6 {
          font-size: 14px; }
        body footer section.modal-site .box-modal .modal-titulo h1, body footer section.modal-site .box-modal .modal-titulo h2, body footer section.modal-site .box-modal .modal-titulo h3, body footer section.modal-site .box-modal .modal-titulo h4, body footer section.modal-site .box-modal .modal-titulo h5, body footer section.modal-site .box-modal .modal-titulo h6 {
          color: #0051a0; }
      body footer section.modal-site .box-modal form span {
        color: #000;
        position: absolute;
        left: 15px;
        font-size: 14px;
        font-weight: 600;
        top: 0px;
        z-index: 2;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
      body footer section.modal-site .box-modal form input, body footer section.modal-site .box-modal form select, body footer section.modal-site .box-modal form textarea {
        outline: none;
        background-color: white !important;
        border: 0px solid transparent;
        border-bottom: 1px solid #565656;
        margin-bottom: 10px;
        padding: 17px 10px 5px;
        width: 100%;
        position: relative;
        z-index: 2; }
      body footer section.modal-site .box-modal form select {
        padding: 25px 10px 5px; }
      @media screen and (max-width: 991px) {
        body footer section.modal-site .box-modal form select {
          margin-top: 30px; }
        body footer section.modal-site .box-modal form span.select {
          position: relative !important;
          margin-top: -67px !important;
          margin-left: -15px !important;
          display: block !important;
          margin-bottom: 60px !important; } }
      body footer section.modal-site .box-modal form textarea {
        padding-top: 25px; }
      body footer section.modal-site .box-modal form label.top {
        display: none; }
      body footer section.modal-site .box-modal form .acao {
        text-align: right; }
        body footer section.modal-site .box-modal form .acao button.enviar {
          background-color: #0051a0;
          color: white;
          font-size: 20px;
          font-weight: 600;
          padding: 4px 30px;
          border: 2px solid #0051a0;
          border-radius: 7px;
          cursor: pointer;
          -webkit-transition: all 0.3s;
          -moz-transition: all 0.3s;
          -ms-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s; }
          body footer section.modal-site .box-modal form .acao button.enviar:hover {
            background-color: white;
            color: #000; }
          body footer section.modal-site .box-modal form .acao button.enviar.blue {
            background-color: #0051a0;
            border: 2px solid #0051a0; }
            body footer section.modal-site .box-modal form .acao button.enviar.blue:hover {
              background-color: white;
              color: #0051a0; }
    @media screen and (max-width: 991px) {
      body footer section.modal-site .modal-titulo h2 {
        font-size: 23px !important; }
      body footer section.modal-site .box-modal {
        margin: 0px;
        max-width: 100%;
        height: 100%;
        overflow: auto; } }

/*# sourceMappingURL=custom.css.map */
