@charset "UTF-8";
@font-face {
  src: url("../fonts/Avenir/Avenir/AvenirLTStd-Black.otf");
  font-family: "Avenir-black";
}
.d-none {
  display: none;
}

.avenir-black {
  font-family: "Avenir-black";
}

@font-face {
  src: url("../fonts/Avenir/Avenir/AvenirLTStd-Heavy.otf");
  font-family: "Avenir-heavy";
}
.avenir-heavy {
  font-family: "Avenir-heavy";
}

@font-face {
  src: url("../fonts/Avenir/Avenir/AvenirNextLTPro-Regular_0.otf");
  font-family: "Avenir";
}
.avenir {
  font-family: "Avenir";
}

*, *::after, *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.4s linear;
  font-family: sans-serif;
  line-height: 1.3;
  color: white;
  font-family: "Avenir";
}

.top-image {
  max-width: 1000px;
  max-height: 554px;
  margin: 0 auto;
  display: none;
}

.w-100 {
  width: 100%;
}

img {
  width: 100%;
}

.cinza {
  background: darkolivegreen;
}

.uppercase {
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

.pointer {
  cursor: pointer;
}

.flex {
  display: flex;
}
.flex.center {
  justify-content: center;
  align-items: center;
}

video {
  width: 100%;
}

#form {
  background: #303435;
}

.acc-btn {
  background: #FE9F43;
  padding: 10px 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: #2C0000;
  border-radius: 30px;
  margin: 15px 0px;
  text-align: center;
  font-family: "avenir-black";
}

#splash_background {
  background: url("../images/new-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.videos-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.videos-wrapper .videos-texts {
  margin-bottom: 50px;
  text-align: center;
}
.videos-wrapper .videos {
  flex-direction: column;
  justify-content: space-between;
}
.videos-wrapper .videos .video-item {
  flex: 1 1 1;
  max-width: 100%;
  padding: 20px;
}
.videos-wrapper .videos .video-item .video-item-video {
  margin-bottom: 15px;
}
.videos-wrapper .videos .video-item .video-item-texts > * {
  margin-bottom: 30px;
}

.text-blue {
  color: #00AFF3;
}

.accordion {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
}

.accordion-item {
  background-color: black;
  color: #fff;
  margin: 1rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid #00AFF3;
}

.accordion-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  min-height: 3.5rem;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.accordion-item-header .header-icon {
  max-width: 40px;
  margin-right: 10px;
}

.accordion-item-header::after {
  content: "›";
  transform: rotate(90deg);
  font-size: 3rem;
  color: #00AFF3;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "›";
  transform: rotate(270deg);
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
}
.accordion-item-body-content .acc-content {
  padding: 15px;
}
.accordion-item-body-content .acc-content .acc-content-title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: "avenir-black";
}
.accordion-item-body-content .acc-content p {
  margin: 30px 0px;
}
.accordion-item-body-content .accordion-item-body-logos {
  background: white;
  padding: 15px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-title span {
  color: #aaa;
  font-weight: 500;
}
.accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-images {
  display: flex;
  flex-wrap: wrap;
}
.accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-images img {
  flex: 1 1 50%;
  max-width: 50%;
}

#topbar {
  border-bottom: 1px solid white;
}
#topbar #topbar_wrapper {
  justify-content: space-between;
  padding: 7px;
}
#topbar #topbar_wrapper #topbar_contact_info .contact_info_box div {
  padding: 0 5px;
}
#topbar #topbar_wrapper #topbar_contact_info .contact_info_box span {
  display: none;
  margin-top: -5px;
}
#topbar #topbar_wrapper #topbar_contact_info .contact_info_box img {
  height: 27px;
  width: 27px;
}
#topbar #topbar_wrapper #topbar_social_icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#topbar #topbar_wrapper #topbar_social_icons a img {
  width: 25px;
}

#menubar #menubar_wrapper {
  justify-content: space-between;
  align-items: center;
  padding: 7px;
}
#menubar #menubar_wrapper #logo img {
  max-width: 140px;
}
#menubar #menubar_wrapper #menubar_nav {
  display: none;
}
#menubar #menubar_wrapper #hamburger_menu {
  padding-top: 7px;
}
#menubar #menubar_wrapper #hamburger_menu span {
  display: block;
  background-color: #00AFF3;
  height: 3px;
  margin-bottom: 7px;
  width: 30px;
}

#splash_content {
  padding: 20px;
  position: relative;
}
#splash_content #splash_content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#services {
  background: url("../images/background-meio.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}

#benefits {
  background: url("../images/background-meio-azul.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 20px;
}
#benefits .benefits_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#benefits .benefits_wrapper .benefits-title {
  text-align: center;
}
#benefits .benefits_wrapper .benefits-title p {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
}
#benefits .benefits_wrapper .benefits-itens {
  flex-wrap: wrap;
  padding: 50px 0;
}
#benefits .benefits_wrapper .benefits-itens .benefit-item {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#benefits .benefits_wrapper .benefits-itens .benefit-item img {
  max-width: 100px;
}
#benefits .benefits_wrapper .benefits-itens .benefit-item span {
  font-weight: bold;
  font-size: 15px;
}
#benefits #benefit-cta {
  max-width: 360px;
  margin: 40px 0;
}

#wdc {
  background: url("../images/background-meio02.jpg");
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}
#wdc #wdc-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
#wdc #wdc-wrapper h1, #wdc #wdc-wrapper p, #wdc #wdc-wrapper img, #wdc #wdc-wrapper span {
  margin-bottom: 30px;
}
#wdc #wdc-wrapper span {
  font-weight: bold;
}
#wdc #wdc-wrapper a {
  max-width: 400px;
}

#cases {
  background: url("../images/background-meio-azul.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

#menu-mobile {
  position: fixed;
  width: 70vw;
  right: -200vh;
  z-index: 3;
}
#menu-mobile.active {
  right: 0;
}
#menu-mobile #mobile-close-btn {
  display: flex;
  max-width: 50px;
  max-height: 50px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  border-radius: 50%;
}
#menu-mobile #mobile-close-btn img {
  transform: scale(3);
  cursor: pointer;
}
#menu-mobile #mobile-mobile-wrapper {
  background: black;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  padding: 40px;
}
#menu-mobile #mobile-mobile-wrapper nav {
  display: flex;
  flex-direction: column;
}
#menu-mobile #mobile-mobile-wrapper nav a {
  color: #00AFF3;
  font-weight: bold;
  margin-bottom: 20px;
}

#depoiments {
  background: url("../images/background-depoimento-de-parceiro.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 20px;
}

@media (min-width: 576px) {
  .container {
    max-width: 90%;
  }
}
@media (min-width: 768px) {
  .hide-on-768 {
    display: none;
  }

  .show-on-768 {
    display: block;
  }

  #topbar #topbar_wrapper #topbar_contact_info .contact_info_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #topbar #topbar_wrapper #topbar_contact_info .contact_info_box div {
    padding: 0 5px;
  }
  #topbar #topbar_wrapper #topbar_contact_info .contact_info_box span {
    display: inline;
    color: #fff;
    font-size: 12px;
  }

  #form-wrapper {
    display: flex;
    flex-direction: row;
  }

  .accordion-item-body-content .acc-content {
    padding-bottom: 50px;
  }
  .accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-title {
    padding: 0px 40px;
  }
  .accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-images {
    padding: 0px 40px;
  }
  .accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-images img {
    flex: 1 1 30%;
    max-width: 30%;
  }

  #wdc {
    background-position: center center;
  }

  #splash_content #splash_content-wrapper {
    flex-direction: row;
    align-items: center;
  }
  #splash_content #splash_content-wrapper img {
    max-width: 390px;
  }
  #splash_content #splash_content-wrapper #boneca-com-balao {
    display: none;
  }
  #splash_content #splash_content-wrapper #boneca-desktop {
    width: 100%;
  }
  #splash_content #splash_content-wrapper #splash_third_p {
    font-size: 16px;
    max-width: 450px;
    font-weight: bold;
  }

  .videos-wrapper .videos-texts {
    margin-bottom: 50px;
    text-align: center;
  }
  .videos-wrapper .videos {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .videos-wrapper .videos .video-item {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 20px;
  }
  .videos-wrapper .videos .video-item .video-item-video {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 920px;
  }

  .accordion-item-body-content .accordion-item-body-logos .accordion-item-body-logos-images img {
    flex: 1 1 14.2%;
    max-width: 14.2%;
  }

  #menu-mobile {
    display: none;
  }

  #menubar #menubar_wrapper #logo img {
    max-width: 160px;
  }
  #menubar #menubar_wrapper #menubar_nav {
    display: flex;
    justify-content: space-between;
  }
  #menubar #menubar_wrapper #menubar_nav a {
    color: white;
    font-size: 15px;
    margin-right: 15px;
    font-family: "avenir-black";
  }
  #menubar #menubar_wrapper #hamburger_menu {
    display: none;
  }

  #splash_background {
    background-position-y: 90%;
  }

  .accordion-item-body-content .acc-content {
    padding: 15px 40px 40px;
  }
  .accordion-item-body-content .acc-content p {
    margin: 30px 0px;
  }

  #splash_content #splash_content-wrapper #splash_first_p {
    font-size: 16px;
  }
  #splash_content #splash_content-wrapper #splash_upper_p {
    font-weight: 600;
    font-size: 26px;
  }
  #splash_content #splash_content-wrapper img {
    max-width: 390px;
  }
  #splash_content #splash_content-wrapper #splash_third_p {
    font-size: 16px;
    max-width: 450px;
  }

  #benefits {
    text-align: center;
  }
  #benefits .benefits_wrapper {
    align-items: center;
  }
  #benefits .benefits_wrapper .benefits-title p {
    font-size: 30px;
    max-width: 800px;
  }
  #benefits .benefits_wrapper .benefits-itens {
    flex-wrap: wrap;
    padding: 50px 0;
    justify-content: center;
  }
  #benefits .benefits_wrapper .benefits-itens .benefit-item {
    flex: 1 1 40%;
    max-width: 40%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  #benefits .benefits_wrapper .benefits-itens .benefit-item img {
    max-width: 100px;
  }

  #wdc #wdc-wrapper {
    max-width: 60%;
  }

  .videos-wrapper .videos-texts {
    margin-bottom: 50px;
    text-align: center;
  }
  .videos-wrapper .videos {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .videos-wrapper .videos .video-item {
    flex: 1 1 1;
    max-width: 33%;
    padding: 20px;
  }
  .videos-wrapper .videos .video-item .video-item-video {
    margin-bottom: 35px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 992px;
  }

  #splash_content #splash_content-wrapper #splash_first_p {
    font-size: 16px;
  }
  #splash_content #splash_content-wrapper #splash_upper_p {
    font-weight: 600;
    font-size: 26px;
  }
  #splash_content #splash_content-wrapper img {
    max-width: 390px;
  }
  #splash_content #splash_content-wrapper #splash_third_p {
    font-size: 16px;
    max-width: 450px;
  }
}
@media (min-width: 1360px) {
  .container {
    max-width: 1200px;
  }

  #splash_content #splash_content-wrapper #splash_first_p {
    font-size: 16px;
  }
  #splash_content #splash_content-wrapper #splash_upper_p {
    font-weight: 600;
    font-size: 26px;
  }
  #splash_content #splash_content-wrapper img {
    max-width: 390px;
  }
  #splash_content #splash_content-wrapper #splash_third_p {
    font-size: 16px;
    max-width: 450px;
  }
}
#form-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 80px;
}
#form-wrapper .form-wrapper-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#form-wrapper .form-wrapper-item #form-image {
  max-width: 60%;
}

@media (min-width: 768px) {
  #form-wrapper {
    display: flex;
    flex-direction: row;
  }
}

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