@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
/*RESET*/
*, *:before, *:after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 16px;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

body {
  background-size: 100%;
  line-height: 1.3;
  cursor: default;
}

a {
  transition: 0.3s all;
  text-decoration: none;
}

/*
  ========================================
  Typography
  ========================================
*/
b, strong {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

/*
  ========================================
  Img
  ========================================
*/
img,
picture,
video,
embed,
object {
  max-width: 100%;
}

img {
  display: inline-block;
  vertical-align: middle;
}

/**/
body {
  background: #ffffff;
  font-family: "Open Sans", sans-serif;
  color: #5C5C5C;
  font-weight: 400;
  letter-spacing: 0px;
}

p {
  font-family: "Open Sans", sans-serif;
  color: #5C5C5C;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 25px;
  font-size: 1.25rem;
  color: #5C5C5C;
}

/*CONTAINER*/
.container {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container {
  max-width: 81.875rem;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #6D68AD;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  p {
    font-size: 1.125rem;
  }
}
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  p {
    font-size: 1rem;
  }
}
/* DESKTOP LARGE - 1400px*/
/* DESKTOP - 1200px*/
/* LAPTOP - 1024px*/
/* TABLET BIG - 900px*/
/* TABLET - 600px*/
/* MOBILE - 400px*/
/*
  ========================================
  HEADER
  ========================================
*/
header {
  box-shadow: 0px -1px 8px 0px rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  background: #ffffff;
  transition: 0.3s all;
}
header .container {
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s all;
}
header .container .logo a {
  display: block;
}
header .container .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 25px;
}
header .container .navigation nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .navigation nav ul li a {
  font-size: 1.25rem;
  color: #6D68AD;
  padding: 10px 20px;
}
header .container .navigation nav ul li a:hover {
  color: #78C3B6;
}
header.fixed {
  background: rgba(255, 255, 255, 0.9);
}
header.fixed .container {
  height: 90px;
}
header.fixed .container .navigation nav ul li a {
  font-size: 1.125rem;
}
header.fixed .container .navigation .buttonType1 a {
  font-size: 1rem;
}

/********
RESPONSIVO
********/
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  header .container .navigation nav ul li a {
    font-size: 1.125rem;
    padding: 10px 15px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  header .container .navigation {
    position: relative;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  header .container .navigation .buttonType1 a {
    font-size: 1rem;
  }
  header .container .navigation .menu {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  header .container .navigation .button {
    height: 38px;
    width: 38px;
    background: #6D68AD url("../img/menu_icon.png") center no-repeat;
    transition: 0.3s all;
    border-radius: 5px;
  }
  header .container .navigation nav {
    position: absolute;
    right: 0;
    top: 38px;
    width: 200px;
    background: #ededed;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    z-index: -1;
    visibility: collapse;
    transition: 0.2s all;
    border-radius: 6px;
    box-shadow: -2px 1px 9px -4px #000000;
    border-radius: 5px 5px 5px 5px;
  }
  header .container .navigation nav ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  header .container .navigation nav ul li a {
    width: 100%;
    display: block;
    font-size: 1rem !important;
  }
  header .container .navigation .menu.ativo nav {
    opacity: 1;
    visibility: visible;
    z-index: inherit;
  }
  header .container .navigation .menu.ativo .button {
    background: #6D68AD url("../img/menu-close.png") center no-repeat;
  }
  header.fixed .container {
    height: 120px;
  }
  header.fixed .container .buttonType1 a {
    font-size: 1rem;
  }
}
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  header .container {
    height: 110px;
  }
  header .container .buttonType1 a {
    width: auto;
  }
  header.fixed .container {
    height: 110px;
  }
}
/* DESKTOP LARGE - 1400px*/
/* DESKTOP - 1200px*/
/* LAPTOP - 1024px*/
/* TABLET BIG - 900px*/
/* TABLET - 600px*/
/* MOBILE - 400px*/
/*
  ========================================
  FOOTER
  ========================================
*/
footer {
  padding: 125px 0 55px 0;
  background: #4A4A4A;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
footer .container .left {
  display: flex;
  gap: 0 120px;
}
footer .container .left li {
  margin-bottom: 30px;
}
footer .container .left li a {
  font-size: 1.25rem;
  color: #ffffff;
  padding: 4px 20px;
  font-weight: 600;
  display: block;
}
footer .container .left li a:hover {
  color: #78C3B6;
}
footer .container .right ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 45px;
  margin-bottom: 55px;
}
footer .container .right ul li a {
  display: block;
}
footer .developer {
  margin-top: 120px;
  text-align: center;
  color: #cfcfcf;
  font-size: 0.625rem;
}
footer .developer a {
  color: #ffffff;
}

/*******
RESPONSIVO
*******/
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  footer .container .left {
    width: 80%;
    gap: 0;
  }
  footer .container .left .item {
    width: 33%;
    display: flex;
    justify-content: center;
  }
  footer .container .right {
    width: 20%;
    text-align: center;
  }
  footer .container .right .buttonType1 {
    display: inline-block;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  footer {
    padding: 50px 0 30px 0;
  }
  footer .container .left {
    width: 66%;
  }
  footer .container .left .item {
    width: 50%;
  }
  footer .container .left .item:nth-child(3) {
    display: none;
  }
  footer .container .right {
    width: 33%;
  }
  footer .developer {
    margin-top: 30px;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  footer {
    padding: 30px 0;
  }
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .left {
    width: 100%;
    flex-wrap: wrap;
    gap: 25px 0;
  }
  footer .container .left .item {
    width: 100%;
  }
  footer .container .right {
    width: 100%;
  }
  footer .container .right ul {
    margin-bottom: 25px;
  }
}
/*
  ========================================
  INDEX
  ========================================
*/
.banner {
  margin-top: 120px;
  text-align: center;
}

.scroll {
  position: absolute;
  top: -80px;
}

/* CONTENT MAIN */
.contentMain {
  padding: 100px 0 70px 0;
  position: relative;
}
.contentMain .display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 140px;
}
.contentMain .display .txt {
  width: 520px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contentMain .display .txt h1 {
  width: 100%;
}
.contentMain .display .img {
  width: 660px;
}

/*****
RESPONSIVO
*****/
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .contentMain {
    padding: 60px 0;
  }
  .contentMain .display {
    gap: 0 80px;
  }
  .contentMain .display .txt {
    width: 550px;
  }
}
/* TABLET BIG - 900px*/
@media (max-width: 56.25rem) {
  .contentMain .display {
    gap: 0 40px;
  }
  .contentMain .display .txt {
    width: 500px;
  }

  .banner {
    margin-top: 110px;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .contentMain {
    padding: 30px 0;
    margin-bottom: 30px;
  }
  .contentMain .display {
    gap: 15px 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contentMain .display .txt {
    width: 100%;
    padding: 0 20px;
  }
}
/* SLIDE DEPOIMENTOS */
.slideDepoimentos {
  position: relative;
  padding-top: 40px;
}
.slideDepoimentos h2 {
  padding-bottom: 40px;
  margin-bottom: 50px;
}
.slideDepoimentos .owl-carousel {
  display: flex;
}
.slideDepoimentos .item {
  border: 1px solid #6D68AD;
  border-radius: 10px;
  padding: 0 0 18px 0;
  min-height: 230px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-end;
}
.slideDepoimentos .item h3, .slideDepoimentos .item h4 {
  width: 100%;
  text-align: center;
  font-weight: 900;
}
.slideDepoimentos .item h3 {
  font-size: 1.4375rem;
  color: #6D68AD;
}
.slideDepoimentos .item h4 {
  font-size: 0.6875rem;
  color: #5C5C5C;
  margin-bottom: 10px;
}

/* DESKTOP LARGE - 1500px*/
@media screen and (max-width: 93.75rem) {
  .slideDepoimentos .container_slide {
    padding: 0 85px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .slideDepoimentos .container_slide {
    padding: 0 20px;
  }
  .slideDepoimentos .owl-carousel .owl-nav button.owl-prev, .slideDepoimentos .owl-carousel .owl-nav button.owl-next {
    position: relative;
    left: inherit;
    right: inherit;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .slideDepoimentos h2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .slideDepoimentos .item {
    padding: 0 0 15px 0;
  }
  .slideDepoimentos .item h3 {
    font-size: 1.25rem;
  }
}
/* LOCALIZATION */
.callLocalization {
  position: relative;
  margin-top: 100px;
  height: 900px;
}
.callLocalization .mapa {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.callLocalization .container {
  display: flex;
  justify-content: flex-end;
  height: 900px;
}
.callLocalization .container .content {
  height: 900px;
  width: 630px;
  background: #ffffff;
  position: relative;
  z-index: 2;
  padding: 80px 0px 0 100px;
}
.callLocalization .container .content input[type=submit] {
  float: right;
  background-image: url("../img/arrow_button.png");
  background-position: left 40px center;
  padding-left: 35px;
}

/********
RESPONSIVE
*********/
/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  .callLocalization {
    margin-top: 80px;
    height: 800px;
  }
  .callLocalization .mapa {
    height: 99%;
  }
  .callLocalization .container {
    height: 800px;
  }
  .callLocalization .container .content {
    height: 800px;
    padding: 0px 0px 0 100px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .callLocalization {
    margin-top: 50px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .callLocalization .mapa {
    position: relative;
    width: 100%;
    height: 400px;
    padding: 0 20px;
  }
  .callLocalization .mapa iframe {
    border-radius: 25px;
  }
  .callLocalization .container {
    order: -1;
    height: auto;
    margin-bottom: 25px;
  }
  .callLocalization .container .content {
    height: auto;
    width: 100%;
    padding: 0 10%;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .callLocalization .mapa {
    height: 300px;
  }
  .callLocalization .container .content {
    padding: 0;
  }
  .callLocalization .container .content .txt {
    padding: 0 20px;
  }
}
/* NEWSLETTER */
.newsletter {
  padding: 120px 0;
}
.newsletter .display {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 75px;
}
.newsletter .display h2 {
  padding: 2px 0 15px 0;
}
.newsletter .display .content form {
  display: flex;
  gap: 0 22px;
}
.newsletter .display .content form .item {
  width: 360px;
}
.newsletter .display .content form input[type=submit] {
  float: right;
  background-image: url("../img/arrow_button.png");
  background-position: left 32px center;
  padding-left: 35px;
}

/******
RESPONSIVE
******/
/* DESKTOP LARGE - 1400px*/
@media screen and (max-width: 87.5rem) {
  .newsletter {
    padding: 80px 0 60px 0;
  }
  .newsletter .display {
    gap: 0 50px;
  }
  .newsletter .display .content form {
    gap: 0 20px;
  }
  .newsletter .display .content form .item {
    width: 300px;
  }
}
/* DESKTOP - 1200px*/
@media (max-width: 75rem) {
  .newsletter .display .content form .item {
    width: 240px;
  }
}
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .newsletter {
    padding: 30px 0;
  }
  .newsletter .display {
    gap: 0 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .newsletter .display h2 {
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .newsletter .display h2::after {
    left: inherit;
  }
  .newsletter .display .content form {
    gap: 10px 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .newsletter {
    padding: 25px 0;
  }
  .newsletter .display .content form .item {
    width: 80%;
  }
}
/*
  ========================================
  INPUTS
  ========================================
*/
.inputs input[type=submit],
.buttonType1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  padding: 0.625rem 0.75rem;
  color: #ffffff;
  transition: 0.3s all;
  background: #6D68AD;
  background-repeat: no-repeat;
  border: 1px solid #6D68AD;
  width: 200px;
}

.inputs input[type=submit]:hover,
.buttonType1 a:hover {
  background: #78C3B6;
  border: 1px solid #78C3B6;
  background-repeat: no-repeat;
}

/* BUTTONS */
.inputs .inputs-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.inputs .margin {
  margin-bottom: 30px;
}

.inputs label {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: #333333;
  letter-spacing: 0;
}

.inputs input {
  width: 100%;
}

.inputs input[type=text],
.inputs textarea {
  width: 100%;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 0.5rem 1.5625rem;
  font-size: 1.25rem;
  font-weight: 700;
  background: #ffffff;
  border: 2px solid #78C3B6;
  outline: none;
  color: #5C5C5C;
  font-family: "Open Sans", sans-serif;
  transition: all 0.5s ease;
  border-radius: 30px;
}

.input_center input[type=text] {
  text-align: center;
}

.inputs textarea:focus,
.inputs input:focus {
  border: 2px solid #6D68AD;
}

/**/
.inputs ::-webkit-input-placeholder {
  color: #5C5C5C;
}

/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .inputs .margin {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .inputs select,
.inputs input[type=text],
.inputs textarea {
    padding: 8px 20px;
    font-size: 1.0625rem;
  }
}
/*
  ========================================
  TITLES AND AFTER
  ========================================
*/
.title40 {
  font-size: 2.5rem;
  color: #5C5C5C;
  padding-bottom: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bar {
  position: relative;
}
.bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 200px;
}
.bar.color1::after {
  background: #F4DB94;
}
.bar.color2::after {
  background: #6D68AD;
}

/*******
RESPONSIVE
*******/
/* LAPTOP - 1024px*/
@media (max-width: 64rem) {
  .title40 {
    font-size: 1.875rem;
    padding-bottom: 20px;
  }
}
/* TABLET - 600px*/
@media (max-width: 37.5rem) {
  .title40 {
    font-size: 1.5rem;
  }
}
.button_container {
  position: absolute;
  top: 101px;
  right: 35px;
  height: 27px;
  width: 40px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button_container:hover {
  opacity: 0.7;
}

.button_container.active .top {
  -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
  transform: translateY(10px) translateX(0) rotate(45deg);
  background: #FFF;
}

.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}

.button_container.active .bottom {
  -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
  transform: translateY(-10px) translateX(0) rotate(-45deg);
  background: #FFF;
}

.button_container span {
  background: #fcd634;
  border: none;
  height: 4px;
  border-radius: 10px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  cursor: pointer;
}

.button_container span:nth-of-type(2) {
  top: 10px;
}

.button_container span:nth-of-type(3) {
  top: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: hidden;
  -webkit-transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  -webkit-transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  z-index: 50;
}

.overlay:before {
  content: "";
  background: #252525;
  left: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: left 0.35s ease;
  transition: left 0.35s ease;
}

.overlay:after {
  content: "";
  background: #252525;
  right: -55%;
  top: 0;
  width: 50%;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.overlay.open {
  opacity: 0.92;
  visibility: visible;
  height: 100%;
}

.overlay.open:before {
  left: 0;
}

.overlay.open:after {
  right: 0;
}

.overlay.open li {
  -webkit-animation: fadeInRight 0.5s ease forwards;
  animation: fadeInRight 0.5s ease forwards;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}

.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}

.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.overlay.open li:nth-of-type(6) {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}

.overlay.open li:nth-of-type(7) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}

.overlay.open li:nth-of-type(8) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.overlay nav {
  display: block !important;
  position: relative;
  height: 70%;
  top: 50%;
  padding-bottom: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  font-family: "Lato", serif;
  font-weight: 400;
  text-align: center;
  z-index: 100;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  padding-right: 0px;
}

.overlay ul li {
  display: block;
  height: 25%;
  height: 14.2857142857%;
  min-height: 50px;
  position: relative;
  opacity: 0;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after,
.overlay ul li .ativo:after,
.overlay ul li .ativo:after,
.overlay ul li .ativo:after {
  width: 100%;
}

.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 5px;
  background: #fcd634;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/**/
/**/

/*# sourceMappingURL=style.css.map */