@charset "UTF-8";
/* CLASSES GLOBAIS */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.has-error {
  border-color: red !important;
}

html.resize {
  width: 100%;
  height: 100%;
}
html.resize body {
  width: 100%;
  height: 100%;
}
html.resize body main {
  width: 100%;
  height: 100%;
}

@media (min-width: 991px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

.container {
  max-width: 1350px;
}
.container.big {
  max-width: 1580px;
}

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

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

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.owl-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background-color: #cacaca;
  margin-right: 10px;
  border: none;
  outline: none;
  transition: 0.3s all;
}
.owl-carousel .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.owl-carousel .owl-dots .owl-dot.active {
  background-color: #8f8f8f;
}

/*  Validação   */
.ng-invalid-required.ng-touched,
.campo-invalido {
  border-color: #dc3545 !important;
}

/* VARIAVEIS GLOBAIS DO PROJETO */
.row-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-phone {
  display: flex;
  align-items: center;
  transition: 0.7s all;
}
.main-phone .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  position: relative;
  margin-right: 10px;
}
.main-phone .icon:before {
  content: "";
  transition: 0.8s all ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../image/rodinha.png");
}
.main-phone.branco .icon:before {
  background-image: url("../image/rodinha2.png");
}
.main-phone.branco .icon img {
  filter: grayscale(1) brightness(100);
}
.main-phone.branco .texto {
  color: white;
}
.main-phone.branco .texto strong {
  color: #ffd300;
}
.main-phone .texto {
  color: #007d8f;
  font-weight: 500;
  font-size: 14px;
}
.main-phone .texto strong {
  display: block;
  color: #7524bb;
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
}
.main-phone:hover {
  transform: translateX(3px);
}
.main-phone:hover .icon:before {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .main-phone .icon {
    width: 50px;
    height: 50px;
  }
  .main-phone .texto {
    font-size: 14px;
  }
  .main-phone .texto strong {
    font-size: 16px;
  }
}

.main-cta {
  padding: 12px 23px;
  border-radius: 30px;
  font-weight: 700;
  outline: none;
  border: none;
  display: inline-block;
  transition: 0.5s all;
}
.main-cta:disabled {
  background-color: lightgray !important;
  color: white !important;
  transform: none !important;
}
.main-cta:hover {
  transform: translateX(3px);
}
.main-cta img {
  margin-right: 7px;
  vertical-align: middle;
}
.main-cta.gradiente {
  background: linear-gradient(90deg, rgb(117, 36, 187) 0%, rgb(0, 125, 143) 100%);
  color: white;
}
.main-cta.primary {
  border: 1px solid #7524bb;
  color: #7524bb;
}
.main-cta.primary:hover {
  color: white;
  background-color: #7524bb;
}
.main-cta.primary:hover img {
  filter: grayscale(1) brightness(100);
}
.main-cta.primary-fill {
  background: #7524bb;
  color: white;
}
.main-cta.primary-fill:hover {
  background-color: #007d8f;
}
.main-cta.secondary {
  border: 1px solid #007d8f;
  color: #007d8f;
}
.main-cta.secondary:hover {
  color: white;
  background-color: #007d8f;
}
.main-cta.secondary:hover img {
  filter: grayscale(1) brightness(100);
}
.main-cta.secondary-fill {
  background: #007d8f;
  color: white;
}
.main-cta.secondary-fill:hover {
  background-color: #7524bb;
}
.main-cta.terciary {
  border: 1px solid #00c7ed;
  color: #00c7ed;
}
.main-cta.terciary:hover {
  color: white;
  background-color: #00c7ed;
}
.main-cta.terciary:hover img {
  filter: grayscale(1) brightness(100);
}
.main-cta.terciary-fill {
  background: #00c7ed;
  color: white;
}
.main-cta.terciary-fill:hover {
  background-color: #7524bb;
}
@media (max-width: 991px) {
  .main-cta {
    font-size: 14px;
  }
  .main-cta img {
    height: 21px;
  }
}

body {
  font-size: 1em;
  font-family: "Lato", sans-serif;
  text-rendering: optimizeLegibility;
  /* MODAL */
}
body div#lightbox {
  position: fixed !important;
  top: 10px !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body section.preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: white;
}
body section.preloader .loader {
  border: 6px solid #e5e5e5;
  border-top-color: #7524bb;
  animation: loader-rotate 1s infinite;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@keyframes loader-rotate {
  to {
    transform: rotate(1turn);
  }
}
body .modal-backdrop.show {
  opacity: 0.8;
  width: 100% !important;
  height: 100% !important;
}
body .modal-lg {
  max-width: 600px;
}
body .modal .close-modal {
  position: absolute;
  width: 100%;
  height: 100%;
}
body .modal-content {
  border-radius: 10px !important;
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}
body .modal-content .titulo {
  text-align: center;
}
body .modal-content .titulo img {
  margin-bottom: 10px;
}
body .modal-content .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body .modal-content .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body .modal-content .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
@media (max-width: 991px) {
  body .modal-content .titulo h1 {
    font-size: 24px;
  }
}
body .modal-content .closebtn {
  outline: none;
  color: white;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: -26px;
  border: none;
  cursor: pointer;
  z-index: 2;
  text-shadow: none;
  font-weight: 500;
  opacity: 1;
  font-size: 15px;
}
body .modal-content .closebtn:hover {
  color: white !important;
}
@media (max-width: 991px) {
  body .modal-content .closebtn {
    position: static;
    font-size: 14px;
    margin-top: 20px;
    padding-right: 20px;
    text-align: right;
    color: #23494a !important;
  }
}
body .modal-body {
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
body .modal-body .conteudo-modal {
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  color: dimgray;
}
body .modal-body .conteudo-modal h1 {
  color: black;
  font-size: 32px;
  font-weight: 600;
}
body .modal-body.video {
  border-radius: 0;
  min-height: 600px;
  padding: 0;
}
@media (max-width: 991px) {
  body .modal-body.video {
    min-height: 360px;
  }
}
body .modal-body iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}
body .modal-body form label {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 17px;
}
body .modal-body form button {
  display: block;
  margin: auto;
  margin-top: 15px !important;
}
body .modal-body form input,
body .modal-body form select,
body .modal-body form textarea {
  width: 100%;
  border: 1px solid gainsboro;
  padding: 10px 25px;
  font-size: 18px;
  outline: none;
}
body .modal-body form select {
  padding-top: 12px;
  padding-bottom: 12px;
}
body .modal-body form textarea {
  min-height: 100px;
  resize: vertical;
}
@media screen and (max-width: 991px) {
  body .modal-body {
    padding: 15px 0px;
    background-image: none;
  }
  body .modal-body h4 {
    font-size: 18px;
    text-align: center;
  }
  body .modal-body .conteudo-modal {
    font-size: 14px;
  }
  body .modal-body .conteudo-modal h1 {
    font-size: 22px;
  }
  body .modal-body form label {
    font-size: 16px;
  }
  body .modal-body form input,
  body .modal-body form select,
  body .modal-body form textarea {
    font-size: 15px;
    padding: 10px;
  }
}
body section.popup-principal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}
body section.popup-principal.aberto {
  display: flex;
}
body section.popup-principal .row-flex {
  margin-top: 30px;
}
@media (max-width: 991px) {
  body section.popup-principal .row-flex {
    margin-top: 15px;
    text-align: center;
  }
  body section.popup-principal .row-flex img {
    display: none;
  }
}
body section.popup-principal .main-cta img {
  filter: grayscale(1) brightness(100);
}
body section.popup-principal .main-phone {
  margin-left: 20px;
}
@media (max-width: 991px) {
  body section.popup-principal .main-phone {
    display: none;
  }
}
body section.popup-principal .lente {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body section.popup-principal .popup-body {
  position: relative;
  padding: 30px;
  min-width: 420px;
}
@media (max-width: 991px) {
  body section.popup-principal .popup-body {
    min-width: 300px;
  }
}
body section.popup-principal .popup-body .button-close {
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 25px;
  cursor: pointer;
}
@media (max-width: 991px) {
  body section.popup-principal .popup-body .button-close {
    right: 25px;
  }
}
body section.popup-principal .popup-body img {
  max-width: 750px;
  object-fit: contain;
}
@media (max-width: 991px) {
  body section.popup-principal .popup-body img {
    max-width: 100%;
  }
}
body section.formulario-enviado {
  padding: 60px 0;
}
body section.formulario-enviado .box-in h5 {
  font-size: 23px;
  font-weight: 400;
  max-width: 550px;
  margin-top: 20px;
  color: #007d8f;
}
body section.formulario-enviado .box-in h3 {
  font-size: 32px;
  font-weight: 500;
  color: #007d8f;
}
body section.formulario-enviado .box-in h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: #7524bb;
}
body section.formulario-enviado .box-in h1 strong {
  display: block;
  font-weight: 600;
  color: #007d8f;
}
body section.formulario-enviado img {
  width: 100%;
}
@media (max-width: 991px) {
  body section.formulario-enviado {
    padding: 30px 0;
    text-align: center;
  }
  body section.formulario-enviado .container {
    position: relative;
    z-index: 2;
  }
  body section.formulario-enviado img {
    margin: auto;
    display: block;
    margin-top: 15px;
    max-width: 200px;
  }
  body section.formulario-enviado .box-in h3 {
    font-size: 20px;
  }
  body section.formulario-enviado .box-in h5 {
    font-size: 15px;
  }
  body section.formulario-enviado .box-in h1 {
    font-size: 22px;
  }
}
body .politica-termos {
  padding: 40px 0px;
}
body .politica-termos h1,
body .politica-termos h2,
body .politica-termos h3,
body .politica-termos h4,
body .politica-termos h5,
body .politica-termos h6 {
  color: #7524bb;
}
body .politica-termos strong,
body .politica-termos b {
  color: #7524bb;
}
@media (max-width: 991px) {
  body .politica-termos {
    padding: 20px 0px;
    font-size: 15px;
  }
  body .politica-termos h1 {
    font-size: 22px;
  }
}
body header section.header {
  background-image: url("../image/bg-header.png");
  background-size: cover;
  padding-bottom: 30px;
}
body header section.header .row-flex {
  justify-content: space-between;
}
body header section.header .barra {
  height: 4px;
  background: linear-gradient(90deg, rgb(117, 36, 187) 0%, rgb(0, 125, 143) 100%);
  margin-bottom: 20px;
}
body header section.header .logo {
  width: 100%;
}
body header section.header .menu {
  margin-top: 10px;
}
body header section.header .menu.menu-fixo {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background-color: white;
  border-bottom: 2px solid #7524bb;
  margin-top: 0;
  padding: 10px 288px;
  z-index: 100;
  transition: 0.5s all;
}
@media (max-width: 991px) {
  body header section.header .menu.menu-fixo {
    display: none;
  }
}
body header section.header .menu.menu-fixo.fixed {
  top: 0;
}
body header section.header .menu a {
  font-weight: 700;
  color: #007d8f;
  text-transform: uppercase;
  transition: 0.3s all;
}
body header section.header .menu a.active, body header section.header .menu a:hover {
  color: #7524bb;
}
body header section.header .menu a.cliente {
  color: #7524bb;
  border: 1px solid #7524bb;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  transition: 0.3s all;
}
body header section.header .menu a.cliente:hover {
  background-color: #7524bb;
  color: white;
}
body header section.header .menu a i {
  margin-right: 8px;
}
@media (max-width: 991px) {
  body header section.header {
    padding-bottom: 0;
  }
  body header section.header .header-mobile .phones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    max-width: 250px;
  }
  body header section.header .header-mobile .phones .icon {
    display: none;
  }
  body header section.header .header-mobile .row-flex {
    justify-content: center;
  }
  body header section.header .header-mobile .logo {
    width: 170px;
    margin: auto;
    display: block;
  }
  body header section.header .header-mobile .menu {
    background-color: #7524bb;
    color: white;
    padding: 15px 25px;
    font-weight: 700;
  }
}
body header section.barra-lgpd {
  padding: 0 15px;
  background-color: whitesmoke;
  font-size: 13px;
  width: 100%;
  z-index: 502;
  color: gray;
  display: none;
  position: relative;
  -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 (max-width: 991px) {
  body header section.barra-lgpd {
    padding: 10px;
    bottom: 57px;
    position: fixed;
    top: auto;
  }
  body header section.barra-lgpd .container {
    padding: 0;
  }
}
body header section.barra-lgpd.exibir {
  display: block;
}
body header section.barra-lgpd .row,
body header section.barra-lgpd .container {
  max-width: 1420px !important;
  margin: auto;
  justify-content: center;
}
body header section.barra-lgpd .row .conteudo-lgpd-in,
body header section.barra-lgpd .container .conteudo-lgpd-in {
  display: flex;
  align-items: center;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .txt-in,
body header section.barra-lgpd .container .conteudo-lgpd-in .txt-in {
  width: 100%;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .txt-in a,
body header section.barra-lgpd .container .conteudo-lgpd-in .txt-in a {
  color: black;
  font-weight: 600;
  text-decoration: underline;
}
body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
  cursor: pointer;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
  padding: 5px 10px;
  margin: 5px 0 5px 15px;
  color: black;
  border: 1px solid gray;
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 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 header section.barra-lgpd .row .conteudo-lgpd-in .button-in button:hover,
body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button:hover {
  background-color: #f9f9f9;
}
@media screen and (max-width: 991px) {
  body header section.barra-lgpd .row .conteudo-lgpd-in,
  body header section.barra-lgpd .container .conteudo-lgpd-in {
    flex-direction: column;
  }
  body header section.barra-lgpd .row .conteudo-lgpd-in .button-in,
  body header section.barra-lgpd .container .conteudo-lgpd-in .button-in {
    text-align: center;
  }
  body header section.barra-lgpd .row .conteudo-lgpd-in .button-in button,
  body header section.barra-lgpd .container .conteudo-lgpd-in .button-in button {
    margin-top: 10px;
    margin-left: auto;
  }
}
body main section.breadcrumb {
  margin-bottom: 20px;
}
body main section.breadcrumb a {
  color: #ffd300;
  text-decoration: underline;
  margin: 0 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
body main section.breadcrumb a:first-child {
  margin-left: 0;
}
body main section.breadcrumb a:last-child {
  margin-right: 0;
}
body main section.breadcrumb a.active {
  color: white;
  text-decoration: none;
}
@media (max-width: 991px) {
  body main section.breadcrumb {
    font-size: 12px;
  }
  body main section.breadcrumb a {
    font-size: 12px;
  }
}
body main section.header-conteudo {
  background-size: 100% 100%;
  color: white;
  padding: 30px 0;
  height: 400px;
  position: relative;
  z-index: 2;
}
body main section.header-conteudo h1 {
  margin-top: 40px;
  font-size: 38px;
}
body main section.header-conteudo h1 strong {
  color: #00c7ed;
  font-weight: 600;
  display: block;
}
body main section.header-conteudo h3 {
  font-size: 20px;
}
body main section.header-conteudo.small {
  background-image: url("../image/bg-headersm.png");
  padding: 15px 0;
  height: 50px;
}
@media (max-width: 991px) {
  body main section.header-conteudo {
    background-size: cover;
    background-position: center;
    height: auto;
    padding-top: 20px;
    padding-bottom: 50px;
  }
  body main section.header-conteudo h1 {
    font-size: 20px;
    margin-top: 20px;
  }
  body main section.header-conteudo h3 {
    font-size: 16px;
  }
}
body main ul.paginacao {
  display: flex;
  margin: 0 5px;
  align-items: center;
  justify-content: center;
}
body main ul.paginacao li {
  list-style: none;
}
body main ul.paginacao li a {
  background-color: #007d8f;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  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 ul.paginacao li a.active, body main ul.paginacao li a:hover {
  background-color: #7524bb;
}
body main section.login {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../image/bg-login.jpg");
  background-size: cover;
  background-position: center;
}
body main section.login .lente {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(69, 18, 113) 45%, rgb(0, 125, 143) 100%);
  opacity: 0.9;
}
body main section.login .lente:before {
  position: fixed;
  bottom: 50px;
  left: calc(50% - 220px);
  content: "";
  background-image: url(../image/nuvi.png);
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  width: 440px;
  height: 300px;
}
body main section.login .input-group-text {
  background-color: white;
  border: 1px solid #bd80f1;
  color: #7524bb;
}
body main section.login .form-control {
  border: 1px solid #bd80f1;
}
body main section.login .form-control:focus {
  box-shadow: none;
}
body main section.login .box {
  background-color: white;
  padding: 30px;
  width: 100%;
  height: 100%;
  max-height: 400px;
  max-width: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0 10px;
}
body main section.login .box .logo {
  width: 250px;
  display: block;
  margin: auto;
  margin-bottom: 30px;
}
body main section.login .box form {
  margin: auto;
  max-width: 300px;
}
body main section.login .box form button {
  width: 100%;
  text-transform: uppercase;
}
body main section.index-banner {
  position: relative;
}
body main section.index-banner .owl-carousel .owl-prev,
body main section.index-banner .owl-carousel .owl-next {
  background-color: white;
  position: absolute;
  bottom: 50%;
  outline: none;
  color: gray;
  font-size: 36px;
  padding: 2px 25px !important;
}
body main section.index-banner .owl-carousel .owl-prev:hover,
body main section.index-banner .owl-carousel .owl-next:hover {
  opacity: 0.8;
}
body main section.index-banner .owl-carousel .owl-prev {
  border-radius: 0 5px 5px 0;
  left: 0;
}
body main section.index-banner .owl-carousel .owl-next {
  border-radius: 5px 0 0 5px;
  right: 0;
}
body main section.index-banner .owl-carousel .bann {
  position: relative;
}
body main section.index-banner .owl-carousel .bann:before {
  content: url("../image/scroll.png");
  position: absolute;
  bottom: 10px;
  left: calc(50% - 11px);
  z-index: 2;
}
@media (max-width: 991px) {
  body main section.index-banner .owl-carousel .bann:before {
    display: none;
  }
}
body main section.index-principal {
  background-image: url("../image/bg-principal.png");
  background-size: cover;
  margin-top: -65px;
  color: white;
  padding: 70px 0 50px 0;
}
body main section.index-principal.interna {
  margin-top: 0;
  padding: 50px 0;
}
body main section.index-principal .container {
  max-width: 1030px;
}
body main section.index-principal .texto-conteudo {
  text-align: center;
  font-size: 20px;
}
body main section.index-principal .texto-conteudo h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
}
body main section.index-principal .texto-conteudo h1 strong {
  color: #ffd300;
  font-weight: 700;
}
body main section.index-principal .texto-conteudo p {
  margin: auto;
  max-width: 690px;
  font-weight: 300;
  line-height: 1.3;
}
body main section.index-principal .texto-conteudo h3 {
  font-size: 24px;
  margin-bottom: 0;
}
body main section.index-principal .texto-conteudo h3 strong {
  color: #ffd300;
}
body main section.index-principal .modulos {
  margin-top: 25px;
}
body main section.index-principal .modulos a {
  display: inline-block;
  margin: 0 10px;
  color: #ffd300;
  border: 1px solid #ffd300;
  padding: 10px 25px;
  border-radius: 15px;
  font-size: 17px;
  transition: 0.3s all;
}
body main section.index-principal .modulos a:hover {
  background-color: #ffd300;
  color: #7524bb;
}
body main section.index-principal .modulos a i {
  margin-right: 5px;
}
body main section.index-principal .modulos a.mais {
  border: none;
  padding: 0;
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
}
body main section.index-principal .modulos a.mais:hover {
  background-color: transparent;
  color: white;
}
@media (max-width: 991px) {
  body main section.index-principal {
    margin-top: 0;
    padding: 30px 10px;
  }
  body main section.index-principal .texto-conteudo {
    font-size: 16px;
  }
  body main section.index-principal .texto-conteudo h1 {
    font-size: 20px;
  }
  body main section.index-principal .texto-conteudo h3 {
    font-size: 18px;
  }
  body main section.index-principal .owl-carousel .owl-nav .owl-prev {
    position: absolute;
    color: white;
    left: 10px;
    top: calc(50% - 13px);
    font-size: 16px;
  }
  body main section.index-principal .owl-carousel .owl-nav .owl-next {
    position: absolute;
    color: white;
    right: 10px;
    top: calc(50% - 13px);
    font-size: 16px;
  }
  body main section.index-principal .row-flex {
    flex-flow: column;
  }
  body main section.index-principal .owl-modulos-principal {
    margin-top: 25px;
  }
  body main section.index-principal .owl-modulos-principal a {
    display: block;
    margin: 0 auto;
    color: #ffd300;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #ffd300;
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 17px;
  }
  body main section.index-principal .owl-modulos-principal a i {
    margin-right: 5px;
  }
  body main section.index-principal .owl-modulos-principal a.mais {
    border: none;
    padding: 0;
    font-size: 30px;
    font-weight: 800;
    font-style: italic;
  }
}
body main section.index-modulos {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0;
}
body main section.index-modulos .titulo {
  text-align: center;
}
body main section.index-modulos .titulo img {
  margin-bottom: 10px;
}
body main section.index-modulos .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.index-modulos .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.index-modulos .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
body main section.index-modulos .resumo {
  text-align: center;
}
body main section.index-modulos .resumo h5 {
  font-size: 18px;
}
body main section.index-modulos .resumo h5 strong {
  color: #7524bb;
}
body main section.index-modulos .resumo h3 {
  max-width: 700px;
  margin: auto;
  font-size: 24px;
  margin-bottom: 25px;
}
body main section.index-modulos .owl-modulos {
  margin-top: 30px;
}
body main section.index-modulos .modulo {
  display: flex;
  align-items: center;
}
body main section.index-modulos .modulo .foto {
  flex: 0 0 500px;
  display: block;
  position: relative;
  z-index: 1;
  width: 500px;
  height: 260px;
  background-image: url("../image/notebook.png");
  background-size: contain;
  background-repeat: no-repeat;
}
body main section.index-modulos .modulo .foto img {
  position: absolute;
  width: 342px;
  height: 212px;
  left: 67px;
  top: 14px;
  object-fit: cover;
}
body main section.index-modulos .modulo .box {
  background-image: url("../image/bg-modulo.png");
  background-size: cover;
  margin-left: -250px;
  padding: 40px 120px 70px 300px;
  font-size: 20px;
  flex-grow: 1;
  line-height: 1.3;
  border-radius: 15px;
}
body main section.index-modulos .modulo .box a.saiba-mais {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #7524bb;
  border: 2px solid #7524bb;
  padding: 15px 40px;
  font-size: 17px;
  border-radius: 40px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s all;
}
body main section.index-modulos .modulo .box a.saiba-mais:hover {
  background-color: #7524bb;
  color: white;
}
body main section.index-modulos .modulo .box h1 {
  color: #7524bb;
  font-size: 32px;
  font-weight: 600;
}
body main section.index-modulos .owl-modulos-index {
  margin-top: 40px;
  margin-bottom: -10px;
}
body main section.index-modulos .owl-modulos-index .owl-stage {
  padding-bottom: 20px;
}
body main section.index-modulos .owl-modulos-index .owl-nav .owl-prev {
  position: absolute;
  color: #7524bb;
  left: -60px;
  top: calc(50% - 36px);
  font-size: 36px;
}
body main section.index-modulos .owl-modulos-index .owl-nav .owl-next {
  position: absolute;
  color: #7524bb;
  right: -60px;
  top: calc(50% - 36px);
  font-size: 36px;
}
body main section.index-modulos .owl-modulos-index .item {
  text-align: center;
  background-color: #f5f5f5;
  padding: 20px;
  color: #7524bb;
  font-weight: 600;
  border-radius: 10px;
  height: 100%;
  display: block;
  border: 1px solid #e7e7e7;
  font-size: 25px;
  box-shadow: 3px 6px 15px 1px rgba(0, 0, 0, 0.0784313725);
  transition: 0.5s all;
}
body main section.index-modulos .owl-modulos-index .item:hover {
  background-color: #e0e0e0;
}
body main section.index-modulos .owl-modulos-index .item img {
  display: block;
  margin: auto;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  body main section.index-modulos {
    padding: 30px 10px;
  }
  body main section.index-modulos .titulo h1 {
    font-size: 24px;
  }
  body main section.index-modulos .resumo h3 {
    font-size: 18px;
  }
  body main section.index-modulos .resumo h5 {
    font-size: 16px;
  }
  body main section.index-modulos .modulo .foto {
    display: none;
  }
  body main section.index-modulos .modulo .box {
    margin-left: 0;
    padding: 30px;
    font-size: 16px;
  }
  body main section.index-modulos .modulo .box a.saiba-mais {
    font-size: 16px;
    padding: 11px 24px;
  }
  body main section.index-modulos .modulo .box h1 {
    font-size: 24px;
  }
  body main section.index-modulos .owl-modulos-index {
    margin-top: 20px;
  }
  body main section.index-modulos .owl-modulos-index .item {
    font-size: 18px;
  }
  body main section.index-modulos .owl-modulos-index .item img {
    width: 40px;
    height: 40px;
  }
}
body main section.index-chamada {
  background-size: cover;
  background-image: url("../image/bg-roxo.png");
  color: white;
  padding: 30px 0;
}
body main section.index-chamada.verde {
  background-image: url("../image/bg-verde.png");
}
body main section.index-chamada .titulo {
  display: flex;
  align-items: center;
}
body main section.index-chamada .titulo img {
  margin-right: 20px;
}
body main section.index-chamada .titulo h1 {
  font-size: 28px;
  font-weight: 600;
}
body main section.index-chamada .titulo h1 strong {
  font-weight: 600;
  color: #00c7ed;
}
@media (max-width: 991px) {
  body main section.index-chamada {
    padding: 30px 0;
  }
  body main section.index-chamada .row-flex {
    flex-flow: column;
  }
  body main section.index-chamada .titulo {
    margin: auto;
    max-width: 300px;
    justify-content: center;
    margin-bottom: 10px;
  }
  body main section.index-chamada .titulo img {
    margin-right: 10px;
    height: 50px;
  }
  body main section.index-chamada .titulo h1 {
    font-size: 18px;
  }
}
body main section.index-diferenciais {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0;
}
body main section.index-diferenciais .titulo {
  text-align: center;
}
body main section.index-diferenciais .titulo img {
  margin-bottom: 10px;
}
body main section.index-diferenciais .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.index-diferenciais .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.index-diferenciais .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
body main section.index-diferenciais .resumo {
  text-align: center;
}
body main section.index-diferenciais .resumo h3 {
  max-width: 700px;
  margin: auto;
  font-size: 24px;
  margin-bottom: 25px;
}
body main section.index-diferenciais .owl-diferenciais {
  margin-bottom: -10px;
  margin-top: 40px;
}
body main section.index-diferenciais .owl-diferenciais .owl-stage {
  padding-bottom: 20px;
}
body main section.index-diferenciais .owl-diferenciais .item {
  text-align: center;
  background-color: #f5f5f5;
  padding: 40px;
  color: #7524bb;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #e7e7e7;
  font-size: 20px;
  line-height: 1.3;
  box-shadow: 3px 6px 15px 1px rgba(0, 0, 0, 0.0784313725);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.index-diferenciais .owl-diferenciais .item img {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  width: 200px;
  height: 200px;
  object-fit: contain;
}
@media (max-width: 991px) {
  body main section.index-diferenciais {
    padding: 30px 10px;
  }
  body main section.index-diferenciais .titulo h1 {
    font-size: 24px;
  }
  body main section.index-diferenciais .owl-diferenciais {
    margin-top: 25px;
  }
  body main section.index-diferenciais .owl-diferenciais .item {
    height: auto;
    font-size: 18px;
    padding: 30px;
  }
  body main section.index-diferenciais .owl-diferenciais .item img {
    width: 120px;
    height: 120px;
  }
  body main section.index-diferenciais .resumo h3 {
    font-size: 18px;
  }
  body main section.index-diferenciais .resumo h5 {
    font-size: 16px;
  }
}
body main section.index-funcionalidades {
  background-image: url("../image/bg-funcionalidades.png");
  background-size: cover;
  color: white;
  padding: 50px 0;
}
body main section.index-funcionalidades .phones {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
body main section.index-funcionalidades .terciary-fill {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 15px;
}
body main section.index-funcionalidades h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
body main section.index-funcionalidades h1 {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  max-width: 830px;
  margin: auto;
  margin-bottom: 40px;
}
body main section.index-funcionalidades h1 strong {
  font-weight: 700;
  color: #ffd300;
}
body main section.index-funcionalidades h1 u {
  text-decoration: none;
  color: #00c7ed;
}
body main section.index-funcionalidades .box {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007d8f;
  border-radius: 20px;
  padding: 40px 60px;
}
body main section.index-funcionalidades .box .icon {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
body main section.index-funcionalidades .box form label {
  color: #007d8f;
  width: 100%;
  margin-bottom: 5px;
}
body main section.index-funcionalidades .box form input,
body main section.index-funcionalidades .box form textarea,
body main section.index-funcionalidades .box form select {
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  resize: none;
  outline: none;
}
body main section.index-funcionalidades .box form button {
  margin: auto;
  display: block;
}
body main section.index-funcionalidades .box h3 {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}
body main section.index-funcionalidades .box h3 strong {
  font-weight: 800;
  color: #7524bb;
}
body main section.index-funcionalidades .item {
  display: flex;
  align-items: center;
  margin: 30px 0;
}
body main section.index-funcionalidades .item:first-child {
  margin-top: 0;
}
body main section.index-funcionalidades .item:last-child {
  margin-bottom: 0;
}
body main section.index-funcionalidades .item img {
  margin-right: 20px;
}
body main section.index-funcionalidades .item .texto {
  color: white;
  font-size: 18px;
}
body main section.index-funcionalidades .item .texto strong {
  color: #00c7ed;
  font-weight: 800;
  font-size: 22px;
  display: block;
}
@media (max-width: 991px) {
  body main section.index-funcionalidades {
    padding: 30px 20px;
  }
  body main section.index-funcionalidades h2 {
    font-size: 18px;
    text-align: center;
  }
  body main section.index-funcionalidades .main-cta {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  body main section.index-funcionalidades .box {
    margin-top: 10px;
    padding: 20px;
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 10px;
  }
  body main section.index-funcionalidades .box .icon {
    height: 40px;
    margin-bottom: 10px;
  }
  body main section.index-funcionalidades .box h3 {
    font-size: 18px;
  }
  body main section.index-funcionalidades .box form {
    font-size: 14px;
  }
  body main section.index-funcionalidades .box form button {
    font-size: 13px;
  }
  body main section.index-funcionalidades .box form button img {
    height: 15px;
  }
  body main section.index-funcionalidades .box form input,
  body main section.index-funcionalidades .box form textarea,
  body main section.index-funcionalidades .box form select {
    font-size: 13px;
    padding: 10px;
  }
  body main section.index-funcionalidades .terciary img {
    display: none;
  }
  body main section.index-funcionalidades .phones {
    flex-flow: column;
  }
  body main section.index-funcionalidades h1 {
    font-size: 20px;
  }
  body main section.index-funcionalidades .item img {
    height: 40px;
  }
  body main section.index-funcionalidades .item .texto {
    font-size: 15px;
  }
  body main section.index-funcionalidades .item .texto strong {
    font-size: 16px;
  }
}
body main section.index-vantagens {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 60px 0;
}
body main section.index-vantagens .titulo {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}
body main section.index-vantagens .titulo img {
  margin-bottom: 10px;
}
body main section.index-vantagens .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.index-vantagens .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.index-vantagens .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
body main section.index-vantagens .versus {
  position: absolute;
  top: calc(50% - 80px);
  left: calc(50% - 80px);
  width: 160px;
}
body main section.index-vantagens .row {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 40px;
}
body main section.index-vantagens .box {
  padding: 30px 90px;
  background-size: cover;
  text-align: center;
}
body main section.index-vantagens .box h3 {
  font-size: 28px;
  color: #007d8f;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 20px;
}
body main section.index-vantagens .box.left {
  background-image: url("../image/bg-left.png");
  padding-right: 120px;
}
body main section.index-vantagens .box.right {
  background-image: url("../image/bg-right.png");
  padding-left: 120px;
}
body main section.index-vantagens .box ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
}
body main section.index-vantagens .box ul li {
  font-size: 20px;
  margin: 15px 0;
  font-weight: 700;
  position: relative;
  padding-left: 45px;
}
body main section.index-vantagens .box ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  color: #007d8f;
  font-size: 30px;
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
}
@media (max-width: 991px) {
  body main section.index-vantagens {
    padding: 30px 10px;
  }
  body main section.index-vantagens .titulo h1 {
    font-size: 20px;
  }
  body main section.index-vantagens .row {
    margin-top: 30px;
  }
  body main section.index-vantagens .box {
    padding: 20px;
  }
  body main section.index-vantagens .box img {
    height: 50px;
  }
  body main section.index-vantagens .box ul li {
    font-size: 17px;
    padding-left: 35px;
  }
  body main section.index-vantagens .box ul li:before {
    font-size: 20px;
    top: calc(50% - 10px);
  }
  body main section.index-vantagens .box h3 {
    font-size: 22px;
  }
  body main section.index-vantagens .box.left {
    padding-right: 20px;
    padding-bottom: 30px;
    position: relative;
  }
  body main section.index-vantagens .box.left .versus-mb {
    position: absolute;
    bottom: -30px;
    height: 60px;
    left: calc(50% - 30px);
  }
  body main section.index-vantagens .box.right {
    padding-left: 20px;
    padding-top: 50px;
  }
}
body main section.index-depoimentos {
  background-image: url("../image/bg-depoimentos.png");
  background-size: cover;
  padding: 50px 0;
}
body main section.index-depoimentos.interna {
  background-image: none;
  background-color: #fafafa;
}
body main section.index-depoimentos.interna .titulo h1 {
  color: gray;
}
body main section.index-depoimentos.interna .titulo h1 strong {
  color: #7524bb;
}
body main section.index-depoimentos .titulo {
  margin: auto;
  max-width: 600px;
  text-align: center;
}
body main section.index-depoimentos .titulo img {
  margin-bottom: 10px;
}
body main section.index-depoimentos .titulo h1 {
  color: white;
  font-weight: 500;
  font-size: 40px;
}
body main section.index-depoimentos .titulo h1 strong {
  font-weight: 700;
  color: #00c7ed;
}
body main section.index-depoimentos .owl-depoimentos {
  margin-top: 35px;
}
body main section.index-depoimentos .main-cta {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}
body main section.index-depoimentos .depoimento {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
}
body main section.index-depoimentos .depoimento .texto {
  font-size: 18px;
  color: dimgray;
  font-weight: 300;
}
body main section.index-depoimentos .depoimento .nome {
  margin-top: 20px;
  color: #00c7ed;
  font-weight: 600;
  font-size: 17px;
}
@media (max-width: 991px) {
  body main section.index-depoimentos {
    padding: 30px 10px;
  }
  body main section.index-depoimentos .titulo h1 {
    font-size: 20px;
  }
  body main section.index-depoimentos .main-cta {
    margin-top: 30px;
  }
  body main section.index-depoimentos .depoimento {
    padding: 20px;
  }
  body main section.index-depoimentos .depoimento .texto {
    font-size: 16px;
  }
  body main section.index-depoimentos .depoimento .nome {
    margin-top: 10px;
    font-size: 16px;
  }
}
body main section.index-planos {
  background-image: url("../image/bg-branco2.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0;
}
body main section.index-planos.interna {
  margin-top: -40px;
}
@media (max-width: 991px) {
  body main section.index-planos.interna {
    padding: 70px 10px 30px 10px;
  }
}
body main section.index-planos .titulo {
  text-align: center;
}
body main section.index-planos .titulo img {
  margin-bottom: 10px;
}
body main section.index-planos .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.index-planos .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.index-planos .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
body main section.index-planos .resumo {
  text-align: center;
}
body main section.index-planos .resumo h3 {
  max-width: 800px;
  margin: auto;
  font-size: 22px;
  margin-bottom: 25px;
}
body main section.index-planos .resumo h3 strong {
  font-weight: 400;
  color: #7524bb;
}
body main section.index-planos .tabela-planos {
  display: flex;
  margin-top: -10px;
  margin-bottom: 20px;
  align-items: flex-start;
}
body main section.index-planos .tabela-planos .owl-stage {
  padding-top: 40px;
  padding-bottom: 90px;
}
body main section.index-planos .tabela-planos .modulos {
  flex: 0 0 350px;
  margin-top: 160px;
  background: white;
  border: 1px solid gainsboro;
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 3px 20px 5px rgba(0, 0, 0, 0.0901960784);
}
body main section.index-planos .tabela-planos .modulos .modulo {
  height: 100px;
  border-bottom: 2px solid gainsboro;
  padding: 30px 50px;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: 0.3s all;
  justify-content: space-between;
  cursor: pointer;
}
body main section.index-planos .tabela-planos .modulos .modulo i {
  color: gray;
  font-size: 15px;
  margin-left: 5px;
}
body main section.index-planos .tabela-planos .modulos .modulo:last-child {
  border: none;
}
body main section.index-planos .tabela-planos .modulos .modulo.open {
  height: 620px;
}
body main section.index-planos .tabela-planos .plano {
  border-radius: 25px 25px 0 0;
  position: relative;
  box-shadow: 0px 3px 20px 5px rgba(0, 0, 0, 0.0901960784);
}
body main section.index-planos .tabela-planos .plano .consultar {
  position: absolute;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 0 0 25px 25px;
}
body main section.index-planos .tabela-planos .plano .head {
  border-radius: 25px 25px 0 0;
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.index-planos .tabela-planos .plano .head img {
  display: block;
  margin: auto;
  height: 50px;
  width: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}
body main section.index-planos .tabela-planos .plano.p0 {
  background-color: #553271;
}
body main section.index-planos .tabela-planos .plano.p0 .head {
  background-color: #7524bb;
}
body main section.index-planos .tabela-planos .plano.p0 .consultar {
  background-color: #553271;
}
body main section.index-planos .tabela-planos .plano.p0 .main-cta {
  background-color: #b26ee8;
}
body main section.index-planos .tabela-planos .plano.p1 {
  background-color: #2d505c;
}
body main section.index-planos .tabela-planos .plano.p1 .head {
  background-color: #007d8f;
}
body main section.index-planos .tabela-planos .plano.p1 .consultar {
  background-color: #2d505c;
}
body main section.index-planos .tabela-planos .plano.p1 .main-cta {
  background-color: #529db6;
}
body main section.index-planos .tabela-planos .plano.p2 {
  background-color: #00616e;
}
body main section.index-planos .tabela-planos .plano.p2 .head {
  background-color: #00c7ed;
}
body main section.index-planos .tabela-planos .plano.p2 .consultar {
  background-color: #00616e;
}
body main section.index-planos .tabela-planos .plano.p2 .main-cta {
  background-color: #00c7ed;
}
body main section.index-planos .tabela-planos .plano.p3 {
  background-color: #f46952;
}
body main section.index-planos .tabela-planos .plano.p3 .head {
  background-color: #f78774;
}
body main section.index-planos .tabela-planos .plano.p3 .consultar {
  background-color: #f46952;
}
body main section.index-planos .tabela-planos .plano.p3 .main-cta {
  background-color: #ffa494;
}
body main section.index-planos .tabela-planos .plano .modulo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-bottom: 2px solid rgba(220, 220, 220, 0.18);
  transition: 0.3s all;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
}
body main section.index-planos .tabela-planos .plano .modulo .nome-modulo {
  display: none;
}
body main section.index-planos .tabela-planos .plano .modulo .fa-times {
  opacity: 0.5;
}
body main section.index-planos .tabela-planos .plano .modulo .descricao {
  display: none;
  font-size: 14px;
  margin-top: 15px;
}
body main section.index-planos .tabela-planos .plano .modulo .descricao ul li {
  margin: 5px 0;
}
body main section.index-planos .tabela-planos .plano .modulo.open {
  height: 620px;
}
body main section.index-planos .tabela-planos .plano .modulo i {
  font-size: 28px;
  display: block;
  margin: auto;
  text-align: center;
}
body main section.index-planos .tabela-planos .plano .modulo:nth-last-child(2) {
  border: none;
}
@media (max-width: 991px) {
  body main section.index-planos {
    padding: 30px 10px;
  }
  body main section.index-planos .titulo h1 {
    font-size: 24px;
  }
  body main section.index-planos .resumo h3 {
    font-size: 18px;
  }
  body main section.index-planos .resumo h5 {
    font-size: 16px;
  }
  body main section.index-planos .tabela-planos {
    margin-top: -40px;
    margin-bottom: 10px;
  }
  body main section.index-planos .tabela-planos .modulos {
    display: none;
  }
  body main section.index-planos .tabela-planos .plano .head {
    font-size: 18px;
    height: 100px;
  }
  body main section.index-planos .tabela-planos .plano .head img {
    height: 30px;
  }
  body main section.index-planos .tabela-planos .plano .modulo i {
    font-size: 22px;
    margin-bottom: 5px;
  }
  body main section.index-planos .tabela-planos .plano .modulo .nome-modulo {
    display: block;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
    padding: 0 10px;
  }
}
body main section.index-planos-novo {
  padding: 30px 0 50px 0;
}
@media (min-width: 992px) {
  body main section.index-planos-novo .owl-carousel .owl-stage {
    display: flex;
  }
  body main section.index-planos-novo .owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
  }
}
body main section.index-planos-novo .owl-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
body main section.index-planos-novo .owl-carousel .owl-nav .owl-prev,
body main section.index-planos-novo .owl-carousel .owl-nav .owl-next {
  font-size: 30px;
}
body main section.index-planos-novo .seletor-periodo {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 40px;
}
body main section.index-planos-novo .seletor-periodo a {
  display: block;
  font-weight: 500;
  font-size: 18px;
  color: #007d8f;
  padding: 5px 20px;
  border: 1px solid #007d8f;
  border-radius: 20px;
}
body main section.index-planos-novo .seletor-periodo a.active {
  background-color: #7524bb;
  border-color: #7524bb;
  color: white;
}
body main section.index-planos-novo .box {
  box-shadow: 2px 2px 5px 5px rgba(121, 121, 121, 0.05);
  border-radius: 20px;
  padding: 20px;
  height: calc(100% - 8px);
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid gainsboro;
  justify-content: space-between;
  align-items: flex-start;
  transition: 0.5s all;
  margin-bottom: 8px;
}
body main section.index-planos-novo .box img {
  height: 30px;
  width: auto;
  margin-bottom: 10px;
}
body main section.index-planos-novo .box.p0 h1,
body main section.index-planos-novo .box.p0 li:before {
  color: #7524bb;
}
body main section.index-planos-novo .box.p0 .main-cta {
  background-color: #b26ee8;
}
body main section.index-planos-novo .box.p0:hover {
  background-color: #521a80;
}
body main section.index-planos-novo .box.p1 h1,
body main section.index-planos-novo .box.p1 li:before {
  color: #007d8f;
}
body main section.index-planos-novo .box.p1 .main-cta {
  background-color: #529db6;
}
body main section.index-planos-novo .box.p1:hover {
  background-color: #226277;
}
body main section.index-planos-novo .box.p2 h1,
body main section.index-planos-novo .box.p2 li:before {
  color: #00c7ed;
}
body main section.index-planos-novo .box.p2 .main-cta {
  background-color: #00c7ed;
}
body main section.index-planos-novo .box.p2:hover {
  background-color: #0b97b3;
}
body main section.index-planos-novo .box.p4 h1,
body main section.index-planos-novo .box.p4 li:before {
  color: #f46952;
}
body main section.index-planos-novo .box.p4 .main-cta {
  background-color: #ffa494;
}
body main section.index-planos-novo .box.p4:hover {
  background-color: #d43d22;
}
body main section.index-planos-novo .box.p5 h1,
body main section.index-planos-novo .box.p5 li:before {
  color: #3f51b5;
}
body main section.index-planos-novo .box.p5 .main-cta {
  background-color: #5c6bc0;
}
body main section.index-planos-novo .box.p5:hover {
  background-color: #283593;
}
body main section.index-planos-novo .box.p6 h1,
body main section.index-planos-novo .box.p6 li:before {
  color: #e91e63;
}
body main section.index-planos-novo .box.p6 .main-cta {
  background-color: #ec407a;
}
body main section.index-planos-novo .box.p6:hover {
  background-color: #ad1457;
}
body main section.index-planos-novo .box.p3 {
  position: relative;
}
body main section.index-planos-novo .box.p3 h1,
body main section.index-planos-novo .box.p3 li:before {
  color: #69C961;
}
body main section.index-planos-novo .box.p3 .main-cta {
  background-color: #8adf84;
}
body main section.index-planos-novo .box.p3:hover {
  background-color: #61C97D;
}
body main section.index-planos-novo .box.p3::before {
  content: "Mais vendido";
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 15px;
  font-size: 14px;
  color: white;
  font-weight: 500;
  background-color: #8adf84;
  border-radius: 0 10px 0 10px;
}
body main section.index-planos-novo .box:hover {
  color: white;
}
body main section.index-planos-novo .box:hover p,
body main section.index-planos-novo .box:hover h1,
body main section.index-planos-novo .box:hover .preco .info,
body main section.index-planos-novo .box:hover ul li:before {
  color: white;
}
body main section.index-planos-novo .box:hover img {
  filter: grayscale(1) brightness(100);
}
body main section.index-planos-novo .box .main-cta {
  margin-top: 10px;
  font-size: 14px;
}
body main section.index-planos-novo .box h1 {
  font-size: 22px;
  font-weight: 700;
}
body main section.index-planos-novo .box p {
  font-size: 13px;
  color: #949494;
}
body main section.index-planos-novo .box .preco {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
body main section.index-planos-novo .box .preco small {
  font-weight: 300;
  font-size: 18px;
}
body main section.index-planos-novo .box .preco .info {
  font-size: 16px;
  color: #6d6d6d;
  font-weight: 300;
}
body main section.index-planos-novo .box ul {
  margin: 0;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
body main section.index-planos-novo .box ul li {
  padding: 0;
  font-size: 14px;
  margin: 5px 0;
}
body main section.index-planos-novo .box ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 5px;
}
@media (max-width: 991px) {
  body main section.index-planos-novo {
    padding: 20px 0;
  }
  body main section.index-planos-novo .seletor-periodo {
    column-gap: 7px;
    margin-bottom: 30px;
  }
  body main section.index-planos-novo .seletor-periodo a {
    font-size: 15px;
    padding: 5px 15px;
  }
  body main section.index-planos-novo .box {
    height: auto;
  }
}
body main section.index-phone {
  background-size: cover;
  background-image: url("../image/bg-phone.png");
  color: white;
}
body main section.index-phone .padding {
  padding: 50px 0;
}
body main section.index-phone h3 {
  font-size: 20px;
  margin-left: 75px;
  font-weight: 400;
  margin-bottom: 20px;
}
body main section.index-phone .phone {
  width: 100%;
  max-width: 240px;
  margin-left: 40px;
}
body main section.index-phone .titulo {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
body main section.index-phone .titulo img {
  margin-right: 20px;
}
body main section.index-phone .titulo h1 {
  font-size: 28px;
  font-weight: 600;
}
body main section.index-phone .titulo h1 strong {
  font-weight: 600;
  color: #00c7ed;
  display: block;
}
body main section.index-phone .row-flex {
  max-width: 550px;
  margin-left: 70px;
}
@media (max-width: 991px) {
  body main section.index-phone {
    padding: 30px 20px;
  }
  body main section.index-phone .padding {
    padding: 0;
  }
  body main section.index-phone .phone {
    display: none;
  }
  body main section.index-phone .main-cta {
    margin-top: 20px;
  }
  body main section.index-phone .row-flex {
    margin-left: 0;
  }
  body main section.index-phone h3 {
    margin-left: 0;
    text-align: center;
    font-size: 18px;
  }
  body main section.index-phone .row-flex {
    flex-flow: column;
  }
  body main section.index-phone .titulo {
    margin: auto;
    max-width: 300px;
    justify-content: center;
    margin-bottom: 10px;
  }
  body main section.index-phone .titulo img {
    margin-right: 10px;
    height: 50px;
  }
  body main section.index-phone .titulo h1 {
    font-size: 18px;
  }
}
body main section.index-blog {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0;
}
body main section.index-blog .titulo {
  text-align: center;
}
body main section.index-blog .titulo img {
  margin-bottom: 10px;
}
body main section.index-blog .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.index-blog .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.index-blog .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
body main section.index-blog .resumo {
  text-align: center;
}
body main section.index-blog .resumo h3 {
  max-width: 900px;
  margin: auto;
  font-size: 24px;
  margin-bottom: 25px;
}
body main section.index-blog .post-destaque .img {
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
}
body main section.index-blog .post-destaque .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body main section.index-blog .post-destaque h2 {
  color: #7524bb;
  font-size: 36px;
  font-weight: 600;
  margin-top: 20px;
}
body main section.index-blog .main-cta {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 40px;
}
body main section.index-blog .post {
  background-size: cover;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
body main section.index-blog .post:last-child {
  margin-top: 20px;
}
body main section.index-blog .post .titulo {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%);
}
body main section.index-blog .post .titulo h2 {
  color: white;
  font-size: 28px;
  padding: 25px 60px;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 991px) {
  body main section.index-blog {
    padding: 30px 10px;
  }
  body main section.index-blog .titulo h1 {
    font-size: 24px;
  }
  body main section.index-blog .resumo h3 {
    font-size: 18px;
  }
  body main section.index-blog .resumo h5 {
    font-size: 16px;
  }
  body main section.index-blog .post-destaque {
    display: block;
    margin-bottom: 20px;
  }
  body main section.index-blog .post-destaque .img {
    height: 200px;
    border-radius: 15px;
  }
  body main section.index-blog .post-destaque h2 {
    margin-top: 10px;
    font-size: 18px;
  }
  body main section.index-blog .post {
    height: 200px;
  }
  body main section.index-blog .post .titulo h2 {
    font-size: 18px;
    padding: 10px 20px;
  }
}
body main section.sobre-principal {
  background-image: url("../image/sobre-img.png");
  background-color: #f6f6f6;
  background-position: top left;
  background-repeat: no-repeat;
  margin-top: -40px;
  font-size: 20px;
  padding-bottom: 40px;
}
body main section.sobre-principal .titulo {
  display: flex;
  align-items: center;
  margin-top: 65px;
}
body main section.sobre-principal .titulo img {
  margin-right: 15px;
}
body main section.sobre-principal .titulo h1 {
  font-size: 28px;
  color: gray;
}
body main section.sobre-principal .titulo h1 strong {
  font-weight: 800;
  color: #7524bb;
}
body main section.sobre-principal .titulo h1 u {
  font-weight: 800;
  text-decoration: none;
  color: #007d8f;
}
body main section.sobre-principal h3 {
  color: #7524bb;
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 600;
  margin-top: 20px;
}
@media (max-width: 991px) {
  body main section.sobre-principal {
    padding: 60px 10px 20px 10px;
    background-image: none;
    font-size: 16px;
  }
  body main section.sobre-principal h3 {
    font-size: 17px;
    margin-bottom: 20px;
  }
  body main section.sobre-principal .titulo {
    justify-content: center;
    margin-top: 0;
  }
  body main section.sobre-principal .titulo h1 {
    font-size: 20px;
  }
  body main section.sobre-principal .titulo img {
    height: 20px;
    margin-right: 10px;
  }
}
body main section.sobre-missao-visao-valores .separador {
  padding: 60px 0;
  font-size: 22px;
  line-height: 1.3;
}
body main section.sobre-missao-visao-valores .separador h1 {
  font-size: 34px;
  color: #7524bb;
  font-weight: 900;
}
body main section.sobre-missao-visao-valores .separador img {
  display: block;
  margin: auto;
}
body main section.sobre-missao-visao-valores .separador.fundo {
  background-image: url("../image/bg-missao.png");
  background-size: cover;
  color: white;
}
body main section.sobre-missao-visao-valores .separador.fundo h1 {
  color: #00c7ed;
}
body main section.sobre-missao-visao-valores .separador ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 670px;
  margin: 0;
}
body main section.sobre-missao-visao-valores .separador ul li {
  width: 33%;
  position: relative;
  font-weight: 800;
  margin: 10px 0;
}
body main section.sobre-missao-visao-valores .separador ul li:before {
  content: "\f00c";
  color: #7524bb;
  margin-right: 10px;
  font-size: 24px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}
@media (max-width: 991px) {
  body main section.sobre-missao-visao-valores .separador {
    padding: 30px 0;
    text-align: center;
    font-size: 15px;
  }
  body main section.sobre-missao-visao-valores .separador ul li {
    width: 100%;
    margin: 5px 0;
  }
  body main section.sobre-missao-visao-valores .separador ul li:before {
    margin-right: 5px;
    font-size: 16px;
  }
  body main section.sobre-missao-visao-valores .separador h1 {
    font-size: 24px;
  }
  body main section.sobre-missao-visao-valores .separador img {
    height: 70px;
    margin-bottom: 20px;
  }
}
body main section.modulos-listagem {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: -40px;
}
body main section.modulos-listagem .titulo {
  text-align: center;
}
body main section.modulos-listagem .titulo img {
  margin-bottom: 10px;
}
body main section.modulos-listagem .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.modulos-listagem .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
  display: block;
}
body main section.modulos-listagem .modulo {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  border-radius: 20px;
  padding: 50px;
  height: calc(100% - 30px);
  margin-top: 30px;
  text-align: center;
  transition: 0.5s all;
}
body main section.modulos-listagem .modulo:hover {
  background-color: #e9e9e9;
}
body main section.modulos-listagem .modulo h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 30px 0;
  color: #7524bb;
}
body main section.modulos-listagem .modulo img {
  display: block;
  margin: auto;
  margin-bottom: 10px;
  width: 250px;
  height: 220px;
  object-fit: contain;
}
body main section.modulos-listagem .modulo a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-width: 2px;
  font-size: 18px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 991px) {
  body main section.modulos-listagem {
    padding: 70px 10px 30px 10px;
  }
  body main section.modulos-listagem .titulo h1 {
    font-size: 22px;
  }
  body main section.modulos-listagem .modulo {
    height: auto;
    min-height: auto;
    padding: 30px;
  }
  body main section.modulos-listagem .modulo h3 {
    font-size: 20px;
    margin: 15px 0 20px 0;
  }
  body main section.modulos-listagem .modulo a {
    font-size: 16px;
    padding: 10px 20px;
  }
  body main section.modulos-listagem .modulo img {
    width: 150px;
    height: 150px;
  }
}
body main section.modulos-interna .geral {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 50px 0;
}
body main section.modulos-interna .geral .modulos {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #e9e9e9;
  padding-bottom: 50px;
}
body main section.modulos-interna .geral .modulos a {
  font-size: 20px;
  color: #7524bb;
  font-weight: 600;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 40px;
  transition: 0.3s all;
  border: 1px solid transparent;
}
body main section.modulos-interna .geral .modulos a:hover {
  border-color: lightgray;
}
body main section.modulos-interna .geral .modulos a.active {
  background-color: #7524bb;
  color: white;
}
body main section.modulos-interna .geral .titulo {
  text-align: center;
  margin: 40px 0;
}
body main section.modulos-interna .geral .titulo img {
  margin-bottom: 10px;
}
body main section.modulos-interna .geral .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.modulos-interna .geral .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.modulos-interna .geral .img {
  width: 100%;
  border: 2px solid lightgray;
}
body main section.modulos-interna .geral .texto {
  font-size: 19px;
}
body main section.modulos-interna .geral .texto h2 {
  color: gray;
  font-size: 26px;
}
body main section.modulos-interna .geral .texto h2 strong {
  color: #7524bb;
  font-weight: 800;
}
@media (max-width: 991px) {
  body main section.modulos-interna .geral {
    padding: 30px 10px;
  }
  body main section.modulos-interna .geral .modulos {
    flex-wrap: wrap;
    padding-bottom: 20px;
  }
  body main section.modulos-interna .geral .modulos a {
    font-size: 18px;
    padding: 7px 25px;
  }
  body main section.modulos-interna .geral .titulo {
    margin: 30px 0;
  }
  body main section.modulos-interna .geral .titulo h1 {
    font-size: 22px;
  }
  body main section.modulos-interna .geral .img {
    margin-bottom: 30px;
  }
  body main section.modulos-interna .geral .texto {
    font-size: 16px;
  }
  body main section.modulos-interna .geral .texto h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
}
body main section.modulos-interna .funcoes {
  background-size: 100% auto;
  background-image: url("../image/bg-interna.png");
  background-color: #1f0c70;
  padding: 70px 0;
}
body main section.modulos-interna .funcoes .container {
  max-width: 1150px;
}
body main section.modulos-interna .funcoes h1 {
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 36px;
}
body main section.modulos-interna .funcoes h1 strong {
  color: #ffd300;
  font-weight: 800;
  display: block;
}
body main section.modulos-interna .funcoes .box {
  background-color: white;
  color: #1f0c70;
  max-width: 500px;
  margin: auto;
  padding: 30px 60px;
  margin-top: 30px;
  border-radius: 20px;
  font-size: 18px;
  height: calc(100% - 30px);
}
body main section.modulos-interna .funcoes .box.big {
  max-width: none;
}
body main section.modulos-interna .funcoes .box h3 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
}
body main section.modulos-interna .funcoes .box ul {
  list-style: none;
}
body main section.modulos-interna .funcoes .box ul li {
  margin: 10px 0;
}
body main section.modulos-interna .funcoes .box ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  margin-right: 10px;
}
@media (max-width: 991px) {
  body main section.modulos-interna .funcoes {
    padding: 30px 10px;
  }
  body main section.modulos-interna .funcoes h1 {
    font-size: 24px;
    margin-bottom: 0;
  }
  body main section.modulos-interna .funcoes .box {
    padding: 20px;
    height: auto;
    border-radius: 10px;
  }
  body main section.modulos-interna .funcoes .box h3 {
    font-size: 18px;
  }
  body main section.modulos-interna .funcoes .box ul {
    padding-left: 0;
  }
  body main section.modulos-interna .funcoes .box ul li {
    font-size: 16px;
  }
  body main section.modulos-interna .funcoes .box ul li:before {
    font-size: 16px;
  }
}
body main section.contato {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: -40px;
}
body main section.contato .barra-contato {
  background-size: cover;
  background-image: url("../image/bg-modulo.png");
  padding: 40px;
  border-radius: 10px;
  margin-top: 40px;
}
body main section.contato .barra-contato .row-flex {
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
body main section.contato .titulo {
  text-align: center;
}
body main section.contato .titulo img {
  margin-bottom: 10px;
}
body main section.contato .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.contato .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
  display: block;
}
body main section.contato .formulario {
  margin: auto;
  margin-top: 50px;
  max-width: 800px;
}
body main section.contato .formulario .icon {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}
body main section.contato .formulario form label {
  color: #007d8f;
  width: 100%;
  margin-bottom: 5px;
}
body main section.contato .formulario form input,
body main section.contato .formulario form textarea,
body main section.contato .formulario form select {
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  resize: none;
  outline: none;
}
body main section.contato .formulario form button {
  margin: auto;
  display: block;
}
body main section.contato .formulario h1 {
  text-align: center;
  font-size: 25px;
  color: gray;
  font-weight: 400;
  max-width: 650px;
  margin: auto;
}
@media (max-width: 991px) {
  body main section.contato {
    padding: 70px 10px 30px 10px;
  }
  body main section.contato .titulo h1 {
    font-size: 22px;
  }
  body main section.contato .formulario {
    margin-top: 30px;
  }
  body main section.contato .formulario .icon {
    margin-bottom: 10px;
    height: 50px;
  }
  body main section.contato .formulario h1 {
    font-size: 20px;
  }
  body main section.contato .formulario form {
    margin-top: 30px;
  }
  body main section.contato .barra-contato {
    padding: 20px;
  }
  body main section.contato .barra-contato .row-flex {
    flex-flow: column;
  }
  body main section.contato .barra-contato .main-cta {
    text-align: center;
  }
}
body main section.precos {
  padding: 40px 0;
}
body main section.precos .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 0;
}
body main section.precos .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.precos .periodos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 350px;
  margin-top: 30px;
}
body main section.precos .periodos a {
  display: block;
  border-width: 2px;
  font-size: 14px;
  padding: 10px 20px;
}
body main section.precos .periodos a.selected {
  background-color: #7524bb;
  color: white;
}
body main section.precos label {
  color: #007d8f;
  width: 100%;
  margin-bottom: 5px;
}
body main section.precos input,
body main section.precos textarea {
  width: 100%;
  border: 1px solid #dadada;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #f2f2f2;
  margin-bottom: 10px;
  resize: none;
  outline: none;
}
body main section.precos button:not(.closebtn) {
  margin: auto;
  display: block;
}
body main section.precos .subtotal {
  text-align: right;
  color: gray;
  font-size: 15px;
}
body main section.precos .subtotal strong {
  color: #7524bb;
}
body main section.precos .valor {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 10px 30px;
  margin-top: 30px;
  font-size: 18px;
  color: dimgray;
}
body main section.precos .valor .total {
  color: #7524bb;
  font-size: 28px;
  font-weight: 600;
}
body main section.precos .valor .total span {
  font-size: 18px;
}
body main section.precos .modulos .qtd {
  margin-top: 15px;
  text-align: center;
}
body main section.precos .modulos .qtd span {
  color: #7524bb;
  border: 2px solid #7524bb;
  width: 40px;
  display: inline-block;
  padding: 0 5px;
  text-align: center;
  font-weight: 600;
  vertical-align: middle;
  user-select: none;
}
body main section.precos .modulos .qtd a {
  font-size: 20px;
  font-weight: 600;
  color: #7524bb;
  margin: 0 10px;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
}
body main section.precos .modulos .main-cta {
  cursor: pointer;
}
body main section.precos .modulos .modulo {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  transition: 0.5s all;
}
body main section.precos .modulos .modulo:hover {
  background-color: #e9e9e9;
}
body main section.precos .modulos .modulo h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 15px;
  color: #7524bb;
}
body main section.precos .modulos .modulo img {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
}
body main section.precos .modulos .modulo a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  border-width: 2px;
  font-size: 14px;
  padding: 10px 20px;
}
body main section.precos .modulos .modulo a .rem {
  display: none;
}
body main section.precos .modulos .modulo a .sel {
  display: inline;
}
body main section.precos .modulos .modulo a.selected {
  background-color: #7524bb;
  color: white;
}
body main section.precos .modulos .modulo a.selected .sel {
  display: none;
}
body main section.precos .modulos .modulo a.selected .rem {
  display: inline;
}
@media (max-width: 991px) {
  body main section.precos {
    padding: 30px 10px;
  }
  body main section.precos .titulo h1 {
    font-size: 22px;
    text-align: center;
  }
  body main section.precos .subtotal {
    text-align: center;
  }
  body main section.precos .valor {
    margin-bottom: 20px;
    font-size: 16px;
  }
  body main section.precos .valor .total {
    font-size: 24px;
  }
  body main section.precos .periodos {
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    margin-top: 10px;
  }
  body main section.precos .periodos a {
    margin: 5px;
    font-size: 13px;
    padding: 7px 14px;
  }
  body main section.precos .modulos .modulo {
    padding: 20px 10px;
    margin-top: 20px;
    border-radius: 10px;
  }
  body main section.precos .modulos .modulo h3 {
    font-size: 17px;
  }
  body main section.precos .modulos .modulo a {
    padding: 5px 10px;
    font-size: 13px;
  }
  body main section.precos .modulos .modulo img {
    width: 50px;
    height: 50px;
  }
}
body main section.blog-interna {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}
body main section.blog-interna h1, body main section.blog-interna h2, body main section.blog-interna h3, body main section.blog-interna h4 {
  font-weight: 600;
}
body main section.blog-interna h1.titulo-blog, body main section.blog-interna h2.titulo-blog, body main section.blog-interna h3.titulo-blog, body main section.blog-interna h4.titulo-blog {
  color: #7524bb;
  font-weight: 700;
}
body main section.blog-interna .texto a {
  color: gray;
  text-decoration: underline;
}
body main section.blog-interna img {
  width: 100%;
  margin: 20px 0;
}
body main section.blog-interna .compartilhe {
  border-bottom: 1px solid gainsboro;
  padding-bottom: 10px;
  color: dimgray;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  body main section.blog-interna {
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 30px;
  }
}
body main section.blog-listagem {
  padding: 50px 0;
}
body main section.blog-listagem .categorias {
  background-size: cover;
  background-image: url("../image/bg-modulo.png");
  padding: 40px 60px;
  border-radius: 20px;
}
body main section.blog-listagem .categorias h1 {
  font-size: 22px;
  color: #007d8f;
  font-weight: 700;
}
body main section.blog-listagem .categorias a {
  margin: 10px 0;
  display: block;
  color: #7524bb;
  font-size: 19px;
}
body main section.blog-listagem .categorias a i {
  color: #b9b9b9;
  margin-right: 5px;
}
body main section.blog-listagem .posts {
  align-items: stretch;
}
body main section.blog-listagem .posts .col-12 {
  margin: 50px 0;
}
body main section.blog-listagem .posts .col-12:nth-child(n+1) {
  margin-top: 0;
}
body main section.blog-listagem .posts .post-destaque {
  background-size: cover;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
body main section.blog-listagem .posts .post-destaque .titulo-pst {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%);
  width: 100%;
}
body main section.blog-listagem .posts .post-destaque .titulo-pst h2 {
  color: white;
  font-size: 32px;
  padding: 35px 70px;
  font-weight: 600;
  text-align: left;
}
body main section.blog-listagem .posts .blog-post {
  transition: 0.3s all;
  height: 100%;
}
body main section.blog-listagem .posts .blog-post:hover {
  transform: translateX(-2px) translateY(-3px);
}
body main section.blog-listagem .posts .blog-post .blog-in {
  line-height: 1.5;
  color: black;
}
body main section.blog-listagem .posts .blog-post .resumo {
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 112px;
  height: 112px;
  color: black;
  line-height: 1.3;
}
body main section.blog-listagem .posts .blog-post h3 {
  margin-top: 0;
  color: #7524bb;
  font-size: 26px;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 93px;
  height: auto !important;
  max-height: 93px;
}
body main section.blog-listagem .posts .blog-post .blog-img {
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
body main section.blog-listagem .posts .blog-post .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body main section.blog-listagem .posts .blog-post .main-cta {
  margin-top: 20px;
  margin-left: 0;
}
@media (max-width: 991px) {
  body main section.blog-listagem {
    padding: 30px 5px;
  }
  body main section.blog-listagem .categorias {
    margin-top: -20px;
    padding: 20px 30px;
    border-radius: 10px;
  }
  body main section.blog-listagem .categorias h1 {
    font-size: 18px;
  }
  body main section.blog-listagem .categorias a {
    font-size: 16px;
    margin: 5px 0;
  }
  body main section.blog-listagem .posts .post-destaque {
    height: 200px;
  }
  body main section.blog-listagem .posts .post-destaque .titulo-pst h2 {
    font-size: 18px;
    padding: 10px 20px;
  }
  body main section.blog-listagem .posts .col-12 {
    margin: 20px 0;
  }
  body main section.blog-listagem .posts .col-12:nth-child(n+1) {
    margin-top: 0;
  }
  body main section.blog-listagem .posts .blog-post .blog-img {
    height: 180px;
  }
  body main section.blog-listagem .posts .blog-post .blog-in {
    font-size: 15px;
  }
  body main section.blog-listagem .posts .blog-post .resumo {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 60px;
    height: 60px;
    font-size: 16px;
  }
  body main section.blog-listagem .posts .blog-post h3 {
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 63px;
    max-height: 63px;
  }
}
body main section.fluxograma {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: -40px;
}
body main section.fluxograma .titulo {
  text-align: center;
}
body main section.fluxograma .titulo img {
  margin-bottom: 10px;
}
body main section.fluxograma .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.fluxograma .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.fluxograma .box {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 20px 30px;
  margin: auto;
  max-width: 400px;
  margin-top: 30px;
  text-align: center;
  transition: 0.5s all;
}
body main section.fluxograma .box:hover {
  background-color: #e9e9e9;
}
body main section.fluxograma .box:not(.filhas) {
  position: relative;
  margin-bottom: 50px;
}
body main section.fluxograma .box:not(.filhas):after {
  position: absolute;
  bottom: -60px;
  content: url("../image/seta.png");
}
body main section.fluxograma .box.filhas {
  position: relative;
}
body main section.fluxograma .box.filhas:before {
  position: absolute;
  left: -270px;
  top: 50%;
  content: url("../image/seta-big.png");
}
body main section.fluxograma .box.filhas::after {
  position: absolute;
  right: -270px;
  top: 50%;
  content: url("../image/seta-big.png");
  transform: rotateY(180deg);
}
body main section.fluxograma .box.big {
  max-width: none;
  margin-bottom: 0;
}
body main section.fluxograma .box.big div {
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.fluxograma .box.big div img {
  margin-bottom: 0;
  margin-right: 20px;
}
body main section.fluxograma .box.big:before, body main section.fluxograma .box.big:after {
  display: none !important;
}
body main section.fluxograma .box h3 {
  font-size: 26px;
  font-weight: 600;
  color: #7524bb;
}
body main section.fluxograma .box img {
  display: block;
  margin: auto;
  margin-bottom: 5px;
  width: 120px;
  height: 120px;
  object-fit: contain;
}
@media (max-width: 991px) {
  body main section.fluxograma {
    padding: 70px 10px 30px 10px;
  }
  body main section.fluxograma .titulo h1 {
    font-size: 22px;
  }
  body main section.fluxograma .box h3 {
    font-size: 20px;
  }
  body main section.fluxograma .box.filhas:before, body main section.fluxograma .box.filhas:after {
    display: none;
  }
  body main section.fluxograma .box img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  body main section.fluxograma .box.big {
    padding: 20px;
    border-radius: 10px;
  }
  body main section.fluxograma .box.big div {
    display: block;
  }
  body main section.fluxograma .box.big div img {
    margin-bottom: 20px;
    margin-right: auto;
  }
  body main section.fluxograma .box.big div h3 {
    font-size: 15px;
  }
}
body main section.funcionograma {
  background-image: url("../image/bg-funcionalidades.png");
  background-size: cover;
  padding: 50px 0 90px 0;
}
body main section.funcionograma h1 {
  color: white;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 30px;
}
body main section.funcionograma h1 strong {
  color: #00c7ed;
  display: block;
}
body main section.funcionograma h2 {
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
}
body main section.funcionograma .seta-filhos {
  flex: 100% 1 1;
  margin: 50px 0 0px 0;
  text-align: center;
  pointer-events: none;
}
body main section.funcionograma .seta-filhos img {
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
}
body main section.funcionograma .row-funcionograma .col-lg-4 {
  position: relative;
}
body main section.funcionograma .row-funcionograma .col-lg-4:first-child::after {
  display: none;
}
body main section.funcionograma .row-funcionograma .col-lg-4::after {
  position: absolute;
  top: calc(50% - 16.77px);
  right: calc(100% - 6px);
  content: url("../image/seta-direita.png");
}
@media (max-width: 991px) {
  body main section.funcionograma .row-funcionograma .col-lg-4::after {
    display: none;
  }
}
body main section.funcionograma .row-funcionograma .box {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
  margin-right: 20px;
  height: calc(100% - 40px);
  text-align: center;
}
body main section.funcionograma .row-funcionograma .box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
body main section.funcionograma .row-funcionograma .box ul li {
  margin: 2px 0;
  color: #4c4c4c;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
}
body main section.funcionograma .row-funcionograma .box ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  margin-right: 10px;
}
body main section.funcionograma .row-funcionograma .box img {
  display: block;
  margin: auto;
  height: 100px;
  margin-bottom: 20px;
}
body main section.funcionograma .row-funcionograma .box img.img-full {
  max-height: 100%;
  height: unset;
}
body main section.funcionograma .row-funcionograma .box h5 {
  text-align: center;
  color: #7524bb;
  font-weight: 700;
}
body main section.funcionograma .row-funcionograma .box h3 {
  margin-bottom: 0;
  text-align: center;
  color: #7524bb;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 991px) {
  body main section.funcionograma {
    padding: 30px 10px;
  }
  body main section.funcionograma h1 {
    font-size: 20px;
  }
  body main section.funcionograma h2 {
    font-size: 18px;
  }
  body main section.funcionograma .seta-filhos {
    display: none;
  }
  body main section.funcionograma .row-funcionograma .box {
    margin-top: 20px;
    padding: 20px;
    margin-right: 0;
    height: auto;
  }
  body main section.funcionograma .row-funcionograma .box img.img-full {
    max-width: 110px;
  }
  body main section.funcionograma .row-funcionograma .box ul li {
    font-size: 16px;
  }
  body main section.funcionograma .row-funcionograma .box ul li:before {
    font-size: 18px;
    margin-right: 5px;
  }
  body main section.funcionograma .row-funcionograma .box h3 {
    font-size: 20px;
  }
  body main section.funcionograma .row-funcionograma .box h5 {
    font-size: 18px;
  }
}
body main section.depoimentos {
  background-image: url("../image/bg-branco.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 80px 0;
  margin-top: -40px;
}
body main section.depoimentos .titulo {
  text-align: center;
  max-width: 600px;
  margin: auto;
}
body main section.depoimentos .titulo img {
  margin-bottom: 10px;
}
body main section.depoimentos .titulo h1 {
  color: gray;
  font-weight: 500;
  font-size: 40px;
}
body main section.depoimentos .titulo h1 strong {
  font-weight: 700;
  color: #7524bb;
}
body main section.depoimentos .titulo h1 u {
  font-weight: 700;
  text-decoration: none;
  color: #007d8f;
}
body main section.depoimentos .depoimento {
  background-color: white;
  border-radius: 10px;
  padding: 50px;
  box-shadow: 1px 1px 20px 5px rgba(0, 0, 0, 0.0901960784);
  margin-top: 50px;
}
body main section.depoimentos .depoimento .texto {
  font-size: 18px;
  color: dimgray;
  font-weight: 300;
}
body main section.depoimentos .depoimento .nome {
  margin-top: 20px;
  color: #00c7ed;
  font-weight: 600;
  font-size: 17px;
}
@media (max-width: 991px) {
  body main section.depoimentos {
    padding: 60px 10px 30px 10px;
  }
  body main section.depoimentos .titulo h1 {
    font-size: 22px;
  }
  body main section.depoimentos .depoimento {
    padding: 20px;
    box-shadow: none;
    border: 1px solid gainsboro;
    margin-top: 20px;
  }
  body main section.depoimentos .depoimento .texto {
    font-size: 16px;
  }
  body main section.depoimentos .depoimento .nome {
    margin-top: 10px;
    font-size: 16px;
  }
}
body main section.error-404 {
  padding: 60px 0;
}
body main section.error-404 .box-in h5 {
  font-size: 23px;
  font-weight: 400;
  max-width: 550px;
  color: gray;
}
body main section.error-404 .box-in h5 a {
  color: #007d8f;
}
body main section.error-404 .box-in h3 {
  font-size: 32px;
  font-weight: 500;
  margin-left: 15px;
  color: #007d8f;
}
body main section.error-404 .box-in h1 {
  font-size: 200px;
  font-weight: 800;
  line-height: 1;
  color: #7524bb;
}
body main section.error-404 img {
  width: 100%;
}
@media (max-width: 991px) {
  body main section.error-404 {
    padding: 30px 0;
    text-align: center;
  }
  body main section.error-404 .container {
    position: relative;
    z-index: 2;
  }
  body main section.error-404 .d-flex {
    align-items: center;
    justify-content: center;
  }
  body main section.error-404 img {
    display: block;
    margin: auto;
    max-width: 300px;
    margin-top: 15px;
  }
  body main section.error-404 .box-in h3 {
    margin-left: 0;
    font-size: 26px;
  }
  body main section.error-404 .box-in h5 {
    font-size: 15px;
  }
  body main section.error-404 .box-in h1 {
    font-size: 32px;
    margin-left: 6px;
  }
}
body footer section.barra-fixa {
  position: fixed;
  bottom: 0;
  background-color: white;
  border-top: 2px solid #7524bb;
  width: 100%;
  padding: 10px 80px;
  z-index: 600;
  -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 .container {
  max-width: 1220px;
}
body footer section.barra-fixa .row-flex {
  display: inline-flex;
}
@media (max-width: 991px) {
  body footer section.barra-fixa {
    display: none;
  }
}
body footer section.barra-fixa.oculta {
  bottom: -100px;
}
body footer section.barra-fixa-mobile {
  background-color: #7524bb;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 999;
  padding: 5px 0;
  border-top: 2px solid white;
  transition: 0.3s all;
}
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: white;
}
body footer section.barra-fixa-mobile .list-itens a i {
  color: white;
}
@media screen and (min-width: 992px) {
  body footer section.barra-fixa-mobile {
    display: none;
  }
}
body footer section.footer {
  background: #f3f3f3;
  padding: 50px 0;
}
body footer section.footer .row-flex {
  justify-content: flex-start;
}
body footer section.footer .logo {
  width: 100%;
  max-width: 170px;
  margin-right: 40px;
}
body footer section.footer .main-phone {
  margin-right: 30px;
}
body footer section.footer .gradiente {
  margin-left: 20px;
}
body footer section.footer .menu {
  flex-grow: 1;
  justify-content: space-between;
  margin-left: 30px;
}
body footer section.footer .menu a {
  font-weight: 700;
  text-transform: uppercase;
  color: #007d8f;
}
body footer section.footer .menu a.active {
  color: #7524bb;
}
body footer section.footer .menu a.cliente {
  color: #7524bb;
  border: 1px solid #7524bb;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
}
body footer section.footer .menu a i {
  margin-right: 8px;
}
body footer section.footer .endereco {
  background-color: #e9e9e9;
  padding: 20px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  color: dimgray;
  margin-top: 40px;
}
body footer section.footer .endereco i {
  margin-right: 10px;
  font-size: 20px;
  color: #007d8f;
}
body footer section.footer .endereco .social {
  text-align: right;
}
body footer section.footer .endereco .social a {
  margin-right: 20px;
}
body footer section.footer .endereco .social a:last-child {
  margin-right: 0;
}
body footer section.footer .endereco .social i {
  color: #7524bb;
}
body footer section.footer .newsletter {
  align-items: center;
}
body footer section.footer .newsletter .titulo {
  display: flex;
  align-items: center;
  color: #007d8f;
  font-size: 18px;
  line-height: 1.3;
}
body footer section.footer .newsletter .titulo strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
}
body footer section.footer .newsletter .titulo img {
  margin-right: 20px;
}
body footer section.footer .newsletter form {
  display: flex;
}
body footer section.footer .newsletter form input {
  flex-grow: 1;
  background: #fdfdfd;
  outline: none;
  border: none;
  padding: 0 20px;
  margin-right: 20px;
  border-radius: 5px;
}
body footer section.footer .newsletter form button {
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
}
@media (max-width: 991px) {
  body footer section.footer {
    padding: 20px 0;
  }
  body footer section.footer .endereco {
    margin: 20px 10px 0 10px;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    padding: 10px;
  }
  body footer section.footer .endereco i.fa-map-marker-alt {
    margin-right: 0;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
  }
  body footer section.footer .endereco .social {
    text-align: center;
    margin-top: 20px;
  }
  body footer section.footer .endereco .social i {
    font-size: 15px;
  }
  body footer section.footer .newsletter .titulo {
    font-size: 16px;
    justify-content: center;
    margin-bottom: 20px;
  }
  body footer section.footer .newsletter .titulo strong {
    font-size: 22px;
  }
  body footer section.footer .newsletter .titulo img {
    height: 45px;
  }
  body footer section.footer .newsletter form {
    flex-flow: column;
  }
  body footer section.footer .newsletter form input {
    padding: 10px 20px;
    width: 100%;
    margin: 5px 0;
  }
  body footer section.footer .newsletter form button {
    margin: auto;
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 25px;
    max-width: 200px;
  }
}
body footer section.footer-copy {
  background-color: #f8f8f8;
  color: #7524bb;
  padding: 20px 0;
  font-size: 17px;
  margin-bottom: 77px;
}
@media (max-width: 991px) {
  body footer section.footer-copy {
    font-size: 15px;
    margin-bottom: 57px;
  }
  body footer section.footer-copy img {
    height: 30px;
  }
}
body footer section.botao_whatsapp {
  background-color: #25d366;
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 610;
  bottom: 30px;
  padding: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-align: center;
  right: 30px;
  border-radius: 75px;
  -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.botao_whatsapp i.fab.fa-whatsapp {
  color: white;
  font-size: 46px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  body footer section.botao_whatsapp.scroll {
    bottom: 100px;
  }
}
body footer section.botao_whatsapp:hover {
  background-color: #1f9249;
}
@media screen and (max-width: 991px) {
  body footer section.botao_whatsapp {
    bottom: 75px;
    right: 10px;
  }
}
body footer .menu-mobile {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../image/bg-left.png");
  background-position: center;
  position: fixed;
  top: 0px;
  left: -100%;
  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 footer .menu-mobile.aberto {
  left: 0px;
}
body footer .menu-mobile .fechar {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  font-weight: 700;
  color: #7524bb;
}
body footer .menu-mobile .logo {
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 20px;
}
body footer .menu-mobile .logo img {
  height: 90px;
  object-fit: contain;
  margin-top: 20px;
}
body footer .menu-mobile ul {
  padding: 0px;
}
body footer .menu-mobile ul li {
  list-style: none;
  margin: 5px;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
body footer .menu-mobile ul li:last-child {
  border-bottom: none;
}
body footer .menu-mobile ul li a {
  color: #7524bb;
  font-size: 16px;
  padding: 0 10px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
}

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