html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #ff7700;
}

* {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body::-webkit-scrollbar {
  width: 10px;
  border: 5px solid #cecece;
}

body::-webkit-scrollbar-track {
  background: #f0f0f0;
  -webkit-box-shadow: inset 10px 4.8px 30px 25px #f0f0f0;
  box-shadow: inset 10px 4.8px 30px 25px #f0f0f0;
}

body::-webkit-scrollbar-thumb {
  background-color: #00aa13;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
}

p,
h1,
h2,
span {
  margin: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.title {
  color: #485766;
  font-size: 1.4rem;
  line-height: 24px;
  width: 84%;
}

.know-advantages-vr--button {
  background: #00aa13;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 0;
  position: fixed;
  z-index: 17;
  top: 0;
  width: 100%;
}

.know-advantages-vr--button > svg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.know-advantages-vr--button > p {
  color: #fff;
  width: 62%;
  margin: 0 0 0 16px;
  line-height: 20px;
}

.know-advantages-vr--options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 10px 10px;
  position: fixed;
  padding: 16px 0;
  top: -220px;
  z-index: 16;
  width: 100%;
}

.know-advantages-vr--options > h3 {
  display: none;
}

.know-advantages-vr--options > a {
  margin: 8px 24px;
  line-height: 20px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.know-advantages-vr--options > a:hover {
  font-weight: bold;
}

@-webkit-keyframes showKnowAdvantages {
  from {
    top: -220px;
  }
  to {
    top: 56px;
  }
}

@keyframes showKnowAdvantages {
  from {
    top: -220px;
  }
  to {
    top: 56px;
  }
}

@-webkit-keyframes hideKnowAdvantages {
  from {
    top: 56px;
  }
  to {
    top: -220px;
  }
}

@keyframes hideKnowAdvantages {
  from {
    top: 56px;
  }
  to {
    top: -220px;
  }
}

header {
  margin: 72px 16px 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header > svg {
  z-index: 15;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 15;
}

.header-acess-acount {
  background: #ffc600;
  padding: 6px 8px;
  border-radius: 6px;
  margin-right: 16px;
  z-index: 3;
}

.header-acess-acount > p {
  color: #008c15;
  font-weight: bold;
}

.header-menu-desk {
  display: none;
  margin-left: 48px;
  width: 70%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 4;
}

.header-menu-desk a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.header-menu-desk > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header-menu-desk > li:hover .header-menu-desk--submenu::before {
  -webkit-animation: showLineSubmenu 0.5s ease-in-out forwards;
  animation: showLineSubmenu 0.5s ease-in-out forwards;
}

.header-menu-desk > li > svg {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header-menu-desk > li:hover > svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header-menu-desk > li:hover .header-menu-desk--submenu {
  display: block;
}

.header-menu-desk > li > a {
  font-size: 0.87rem;
  margin-left: 4px;
}

.header-menu-desk--submenu::before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 0;
  height: 5px;
  background: #ffc600;
  display: block;
  content: "";
}

@-webkit-keyframes showLineSubmenu {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes showLineSubmenu {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.header-menu-desk--submenu {
  display: none;
  background-color: #fff;
  position: absolute;
  top: 28px;
  list-style-type: none;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  -webkit-box-shadow: 4px 2px 14px #00000047;
  box-shadow: 4px 2px 14px #00000047;
  min-width: 140px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header-menu-desk--submenu > li {
  padding: 16px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: solid 1px #ebebeb;
  cursor: pointer;
  text-align: center;
}

.header-menu-desk--submenu a {
  color: #6d839a;
  font-weight: 600;
  font-size: 14px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header-menu-desk--submenu a:hover {
  color: #ffc600;
}

.acess-acount-desk {
  margin-left: 48px;
  margin-right: 30px;
  background: #ffc600;
  padding: 14px 24px;
  border-radius: 8px;
  cursor: pointer;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: none;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 4;
}

.acess-acount-desk:hover {
  border-radius: 8px 8px 0 0;
}

.acess-acount-desk:hover > ul {
  display: block;
}

.acess-acount-desk > p {
  color: #008c15;
  font-weight: 600;
  margin: 0 0 0 8px;
}

.acess-acount-desk > ul {
  position: absolute;
  right: 0;
  background: #fff;
  top: 52px;
  width: 222px;
  margin: 0;
  border-radius: 0 0 8px 8px;
  display: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.acess-acount-desk > ul > li {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: solid 1px #ebebeb;
}

.acess-acount-desk a {
  color: #6d839a;
  font-weight: 600;
  text-decoration: none;
}

.content-acess-account {
  position: fixed;
  background: #fff;
  width: 100%;
  border-radius: 10px 10px 0 0;
  bottom: -410px;
  padding: 0 0 16px 0;
  z-index: 17;
}

@-webkit-keyframes showContentAcessAcount {
  from {
    bottom: -410px;
  }
  to {
    bottom: 82px;
  }
}

@keyframes showContentAcessAcount {
  from {
    bottom: -410px;
  }
  to {
    bottom: 82px;
  }
}

@-webkit-keyframes hideContentAcessAcount {
  from {
    bottom: 82px;
  }
  to {
    bottom: -410px;
  }
}

@keyframes hideContentAcessAcount {
  from {
    bottom: 82px;
  }
  to {
    bottom: -410px;
  }
}

.content-text-account {
  background: #ffc600;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.content-text-account > p {
  color: #008c15;
}

.content-text-account__title {
  font-weight: bold;
  margin: 24px 0 16px 0;
  font-size: 1.3rem;
}

.content-text-account__subtitle {
  font-size: 1.1rem;
}

.content-links-account {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -50px;
  padding: 0 24px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content-links-account > button {
  position: absolute;
  width: 40px;
  top: -16px;
  height: 40px;
  border-radius: 50%;
  right: 16px;
}

.content-links-account__trabalhador,
.content-links-account__empresa {
  background: #fff;
  -webkit-box-shadow: 0 0 3px 1px rgb(50, 50, 50, 20%);
  box-shadow: 0 0 3px 1px rgb(50, 50, 50, 20%);
}

.content-links-account__trabalhador,
.content-links-account__empresa,
.content-links-account__estabelecimento {
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 0;
  height: 68px;
}

.content-links-account__trabalhador,
.content-links-account__empresa,
.content-links-account__estabelecimento p {
  color: #00aa13;
  text-decoration: none;
}

.content-links-account__trabalhador,
.content-links-account__empresa,
.content-links-account__estabelecimento svg > path {
  fill: #a3a3a3;
}

.content-links-account__trabalhador,
.content-links-account__empresa {
  width: 46%;
}

.content-links-account__estabelecimento {
  width: 100%;
  margin-top: 32px;
  border: 2px solid #00aa13;
  text-decoration: none;
}

.content-menu-account {
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  top: 56px;
  left: 100%;
  z-index: 14;
}

@-webkit-keyframes showContentMenuAccount {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}

@keyframes showContentMenuAccount {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}

@-webkit-keyframes hideContentMenuAccount {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

@keyframes hideContentMenuAccount {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}

.content-menu-account > ul {
  margin-top: 90px;
  overflow-y: auto;
  height: 70vh;
  padding: 0 24px;
}

.content-menu-account > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.5rem 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: solid 1px #454545;
}

.content-menu-account a {
  color: #fff;
  text-decoration: none;
}

.content-menu-account > ul > li > a {
  font-size: 1.5rem;
  width: 90%;
  font-weight: bold;
}

.content-menu-account__submenu {
  display: none;
}

@-webkit-keyframes showSubmenu {
  from {
    display: none;
  }
  to {
    display: block;
  }
}

@keyframes showSubmenu {
  from {
    display: none;
  }
  to {
    display: block;
  }
}

.content-menu-account__submenu a {
  font-size: 14px;
}

.content-menu-account__submenu > li {
  margin: 1rem 0;
}

.title-vr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-image: url(https://image.produtosvr.vr.com.br/lib/fe251171716405757d1d76/m/1/01cea2aa-af23-49e1-9541-650df485993b.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top;
}

.title-vr p,
h1 {
  color: #fff;
}

.title-vr > div::before {
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(5%, rgba(255, 119, 0, 0)),
    color-stop(80%, rgba(255, 119, 0, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 119, 0, 0) 5%,
    rgba(255, 119, 0, 1) 80%
  );
  background: linear-gradient(
    180deg,
    rgba(255, 119, 0, 0) 5%,
    rgba(255, 119, 0, 1) 80%
  );
  position: absolute;
  width: 100%;
  height: 280px;
  z-index: 2;
  bottom: -70px;
  left: 0;
}

.title-vr > div::after {
  content: "";
  background: #ff7700;
  position: absolute;
  width: 100%;
  height: 130px;
  z-index: 2;
  bottom: -196px;
  left: 0;
}

.title-vr > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 16rem 0 0 0;
  padding: 0 16px 11px 16px;
  position: relative;
}

.title-vr > div > div,
.menu-vr__title > div {
  height: 48px;
  width: 20px;
  background: #c0df16;
  z-index: 3;
}

.title-vr > div > h1 {
  font-size: 1.15rem;
  margin-left: 16px;
  z-index: 3;
}

.title-vr > p {
  line-height: 22px;
  padding: 0 16px 14rem 16px;
  z-index: 3;
}

.form-vr {
  background: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 480px;
  z-index: 4;
}

.form-vr > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: -180px;
  width: 80%;
  -webkit-box-shadow: 4px 2px 14px #00000047;
  box-shadow: 4px 2px 14px #00000047;
  border-radius: 10px;
  padding: 24px 16px;
}

.form-vr h2 {
  margin: 8px 0 16px 0;
  font-size: 16px;
  line-height: 16px;
}

.form-vr span {
  font-size: 14px;
  margin-bottom: 24px;
}

.form-vr input,
select {
  border: none;
  border-bottom: 1px solid #e3e3e3;
  padding: 0.5rem 0.7rem;
  padding-bottom: 5px;
  height: 2rem;
  font-size: 14px;
  margin-bottom: 24px;
  outline: none;
}

.form-vr input::-webkit-input-placeholder {
  color: #000;
}

.form-vr input::-moz-placeholder {
  color: #000;
}

.form-vr input:-ms-input-placeholder {
  color: #000;
}

.form-vr input::-ms-input-placeholder {
  color: #000;
}

.form-vr input::placeholder {
  color: #000;
}

.form-vr button,
.hire-vr button,
.menu-vr > div button,
.additional-services__button button,
.perguntas-frequentes__button button {
  margin: 24px 0;
  background-color: #00aa13;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0px;
  -webkit-box-shadow: 0 0 0 0 #00aa13;
  box-shadow: 0 0 0 0 #00aa13;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.form-vr button:hover,
.hire-vr button:hover,
.menu-vr > div button:hover,
.additional-services__button button:hover,
.perguntas-frequentes__button button:hover {
  -webkit-box-shadow: 0 0 0 2px #00aa13;
  box-shadow: 0 0 0 2px #00aa13;
}

.form-vr p,
.form-vr a {
  font-size: 14px;
  color: #000;
  text-align: center;
}

.form-vr a {
  font-weight: bold;
}

[type="radio"] + span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: -0.25em;
  border-radius: 1em;
  border: 0.15rem solid #fff;
  -webkit-box-shadow: 0 0 0 0.15em #00aa13;
  box-shadow: 0 0 0 0.15em #00aa13;
  margin-right: 8px;
  -webkit-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
}

[type="radio"]:checked + span:before {
  background: #00aa13;
  -webkit-box-shadow: 0 0 0 0.1em #00aa13;
  box-shadow: 0 0 0 0.1em #00aa13;
}

#button-form-carousel {
  text-decoration: none;
  background-color: #00aa13;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  padding: 8px;
  font-weight: 600;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
}

#button-form-carousel:hover {
  color: #fff;
  text-decoration: none;
}


.benefits-carousel,
.depositions-carousel {
  background: #fff;
  margin-top: -8px;
  padding-top: 150px;
}

.slick-list {
  padding: 1rem !important;
}

.slick-dots {
  margin: -8px 0 0 8px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 4px;
}

.slick-dots li button {
  font-size: 0;
  width: 30px;
  height: 5px;
  border-radius: 10px;
  color: transparent;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background: #a3abb2;
}

.slick-active button {
  background: #485766 !important;
  width: 40px !important;
}

.benefits-carousel__content,
.depositions-carousel__content {
  padding: 0 0 16px 0;
}

.benefits-carousel__content--items,
.meet-vr-carousel__content--items,
.depositions-carousel__content--items {
  -webkit-box-shadow: 1px 2px 7px #00000047;
  box-shadow: 1px 2px 7px #00000047;
  border-radius: 10px;
  margin: 0 8px;
  padding: 16px 12px;
  background: #fff;
}

.benefits-carousel__content--items {
  width: 300px !important;
  height: 190px !important;
  line-height: 12px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.benefits-carousel__content--items p,
.meet-vr-carousel__content--items p {
  line-height: 19px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.benefits-carousel__content--items span {
  font-size: 10px;
}

.benefits-container {
  background: #fff;
  padding: 2rem 0;
  position: relative;
  margin-top: -8px;
}

.benefits-container__title,
.hire-vr__title,
.menu-vr__title,
.depositions-carousel__title {
  margin: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.benefits-container__title::after {
  content: "";
  background-image: url(https://image.produtosvr.vr.com.br/lib/fe251171716405757d1d76/m/1/b13407e9-4a71-4845-980b-097375c3ebd5.png);
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 320px;
  left: 0;
  top: 110px;
  background-size: contain;
}

.benefits-container__title > div,
.hire-vr__title > div,
.additional-services__title > div,
.depositions-carousel__title > div {
  background: #ff7700;
  width: 20px;
  height: 48px;
}

.benefits-container__title h2,
.hire-vr__title h2,
.additional-services__title h2,
.depositions-carousel__title h2 {
  margin-left: 16px;
}

.benefits-container__content {
  margin: 17rem 16px 0 16px;
}

.benefits-container__content > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
}

.benefits-container__content span {
  color: #ff7700;
  font-size: 75px;
  line-height: 20px;
  position: absolute;
  top: 14px;
}

.benefits-container__content h3,
.benefits-container__content p {
  margin-left: 32px;
}

.benefits-container__content p {
  margin-top: -8px;
}

.benefits-container__content a {
  color: #000;
}

.hire-vr {
  background: #fff;
  padding: 2rem 0;
  margin: -8px 0 0 0;
}

.hire-vr__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0 0 0;
}

.hire-vr__content--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hire-vr__content--text > div {
  background: #ffba7f;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 16px 0 0 0;
}

.hire-vr__content--text > p {
  width: 60%;
  text-align: center;
  margin: 16px 0;
}

.hire-vr__content--text > div > span {
  color: #fff;
  font-weight: bold;
}

.hire-vr__content--separator > p {
  color: #ffba7f;
  font-weight: bold;
  line-height: 6px;
}

.hire-vr button {
  width: 80%;
}

.menu-vr {
  padding: 19rem 16px 2rem 16px;
  position: relative;
}

.menu-vr__title::before {
  content: "";
  background-image: url(https://image.produtosvr.vr.com.br/lib/fe251171716405757d1d76/m/1/c8be1855-bb28-45e8-b9ef-efc80c1c87af.png);
  width: 100%;
  height: 320px;
  position: absolute;
  top: 8px;
  left: 0;
  background-position-x: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.menu-vr__title {
  margin: 0;
}

.menu-vr__title::after {
  content: "";
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(5%, rgba(255, 119, 0, 0)),
    color-stop(80%, rgba(255, 119, 0, 1))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 119, 0, 0) 5%,
    rgba(255, 119, 0, 1) 80%
  );
  background: linear-gradient(
    180deg,
    rgba(255, 119, 0, 0) 5%,
    rgba(255, 119, 0, 1) 80%
  );
  position: absolute;
  width: 100%;
  height: 300px;
  z-index: 2;
  top: 67px;
  left: 0;
}

.menu-vr__title h2 {
  color: #fff;
  margin-left: 16px;
  width: 89%;
  z-index: 3;
}

.menu-vr__content {
  margin: 2rem 0 0 0;
}

.menu-vr__content > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1rem 0;
}

.menu-vr__content span {
  color: #c0df16;
  font-size: 60px;
  line-height: 20px;
  margin: -6px 8px 0 0;
}

.menu-vr__content a,
.menu-vr__content p {
  color: #fff;
  line-height: 22px;
}

.menu-vr__button,
.additional-services__button,
.perguntas-frequentes__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-vr__button button,
.additional-services__button button,
.perguntas-frequentes__button button {
  width: 90%;
}

.meet-vr-carousel {
  background: #fff;
  padding: 2rem 0;
}

.meet-vr-carousel > h3 {
  margin-left: 16px;
}

.meet-vr-carousel a {
  color: #000;
}

.meet-vr-carousel__content--items {
  height: 300px !important;
}

.additional-services {
  margin: -8px 0 0 0;
  padding: 2rem 16px;
  background: #fff;
}

.additional-services__title {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.additional-services__title span {
  font-size: 12px;
  margin-top: 6px;
  font-weight: normal;
}

.additional-services__content > div {
  margin-bottom: 2rem;
}

.additional-services__content > div img {
  margin-bottom: 8px;
}

.additional-services__content > div p {
  text-align: justify;
}

.request-vr {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 16px 0 24px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}

.request-vr > button {
  background-color: #00aa13;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 0;
  width: 85%;
}

.whatsapp {
  position: fixed;
  z-index: 12;
  bottom: 88px;
  right: 8px;
  display: none;
}

.vr-perguntas-frequentes {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 1rem;
  margin-top: -8px;
}

.perguntas-frequentes__button {
  margin: -16px 0 32px 0;
}

.vr-perguntas-frequentes
  > .vr-conteudo-perguntas-frequentes-titulo
  > .vr-titulo-perguntas-frequentes {
  border-left: 20px solid #ff7700;
  height: 60px;
}

.vr-titulo-perguntas-frequentes > h2 {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 16px;
}

.vr-titulo-perguntas-frequentes > h2 > span {
  font-size: 1rem;
  line-height: 32px;
}

.vr-conteudo-perguntas-frequentes-titulo > p {
  margin: 1rem 0rem 1rem 0rem;
  font-size: 14px;
}

.perguntas-vr > h3 {
  font-size: 1rem;
  color: #ff7700;
}

.perguntas-vr > p,
.perguntas-vr li,
.perguntas-vr h4 {
  font-size: 14px;
  color: #485766;
  margin: 1rem 0;
  text-align: justify;
  line-height: 22px;
}

.perguntas-vr ol {
  padding: 0 16px;
}

.perguntas-vr li {
  list-style: decimal;
}

.perguntas-vr a {
  color: #485766;
}

.artigo-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0;
  border-bottom: 1px solid #e4e8ed;
  padding-bottom: 24px;
}

.texto-artigo-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #485766;
  font-weight: bold;
  font-size: 0.8rem;
  margin-right: 20px;
}

.icone-artigo-positivo,
.icone-artigo-negativo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8px;
  cursor: pointer;
  color: #adbdd0;
}

.depositions-carousel__content--items {
  height: 300px !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.depositions-carousel__content--items p,
span {
  font-weight: 500;
  line-height: 18px;
  font-size: 14px;
}

.depositions-carousel__content--items > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.depositions-carousel__content--items > div > div {
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 16px;
  width: 60px;
  height: 55px;
}

.vr-premios {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3rem 1rem 0 1rem;
  margin-top: -8px;
}

.vr-premios > .vr-titulo-premios {
  border-left: 20px solid #ff7700;
  height: 50px;
}

.vr-premios > p {
  margin: 1rem 2rem 1rem 0rem;
  font-size: 14px;
}

.vr-titulo-premios,
.vr-titulo-perguntas-frequentes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.vr-titulo-premios > h2 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #485766;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 1rem;
}

.vr-imagens-premios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin: 2rem 0;
}

.vr-imagens-premios > img {
  width: 45px;
  height: auto;
  margin: 0 8px;
}

.accept-terms {
  position: fixed;
  bottom: 0;
  z-index: 40;
  padding: 1rem;
  background: #00aa13;
  display: none;
}

.accept-terms > button {
  position: absolute;
  width: 40px;
  top: -16px;
  height: 40px;
  border-radius: 50%;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.accept-terms > p {
  margin-bottom: 24px;
  color: #fff;
}

.accept-terms a,
.accept-terms > ul > li > a:hover {
  text-decoration: none;
  font-weight: bold;
}

.accept-terms > ul > li {
  width: 100%;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 4px 0;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
}

.accept-terms > ul > li:nth-of-type(1) {
  border: 3px solid #fff;
  margin-bottom: 16px;
}

.accept-terms > ul > li:nth-of-type(2) {
  border: 3px solid #000;
}

@-webkit-keyframes hideAcceptTerm {
  from {
    bottom: 0px;
  }
  to {
    bottom: -300px;
  }
}

@keyframes hideAcceptTerm {
  from {
    bottom: 0px;
  }
  to {
    bottom: -300px;
  }
}

footer > div:nth-last-child(2) {
  margin-bottom: 2rem;
}

.footer-informativo {
  color: white;
}

.footer-itens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: 0.8rem;
  margin: 0 4rem 0 1rem;
}

.footer-itens > a {
  text-decoration: none;
  color: white;
  font-weight: 200;
  margin: 8px 0;
  font-size: 14px;
}

.footer-itens > p,
.footer-aplicativos > p {
  font-weight: 600;
  color: white;
  font-size: 1rem;
  margin: 2rem 0 1rem 0;
}

.footer-redes-sociais {
  background-color: white;
  text-align: center;
  padding: 2rem 0 6rem 0;
}

.footer-redes-sociais > a,
.footer-redes-sociais > p {
  font-size: 14px;
  text-align: center;
  margin: 2rem 0;
  padding: 0;
  text-decoration: none;
  color: #74787c;
  font-weight: 600;
}

.footer-redes-sociais > p {
  padding: 0 10%;
}

.footer-itens-redes-sociais {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-itens-redes-sociais > a {
  margin: 0 8px;
}

.footer-aplicativos > p {
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}

.footer-aplicativos > div {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.shaker {
  font-size: 13px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  text-align: justify;
  color: #ff7700;
  font-weight: bold;
  margin-bottom: 20px;
  -webkit-animation: shakeIt 0.1s linear 4;
  animation: shakeIt 0.1s linear 4;
}

@-webkit-keyframes shakeIt {
  0% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  25% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes shakeIt {
  0% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  25% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  50% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes showToRight {
  from {
    -webkit-transform: translateX(37rem);
    transform: translateX(37rem);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes showToRight {
  from {
    -webkit-transform: translateX(37rem);
    transform: translateX(37rem);
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (max-width: 300px) {
  .meet-vr-carousel__content--items {
    height: 340px !important;
  }

  .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .benefits-carousel__content--items {
    height: 214px !important;
  }

  .vr-imagens-premios {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .content-menu-account > ul {
    padding: 0 19px;
  }
}

@media (min-width: 769px) {
  .know-advantages-vr--button,
  .content-acess-account,
  .content-menu-account,
  .header-menu,
  .request-vr,
  .menu-vr__title::after {
    display: none;
  }

  .header-menu-desk,
  .acess-acount-desk,
  .meet-vr-carousel__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .know-advantages-vr--options {
    top: 140px;
    left: 16px;
    background: rgba(255, 255, 255, 0.94);
    padding: 16px 16px 0 16px;
    border-radius: 8px;
    width: 230px;
    z-index: 3;
  }

  .know-advantages-vr--options > h3 {
    display: initial;
    margin: 0 0 24px 0;
    color: #485766;
    font-size: 1rem;
  }

  .know-advantages-vr--options > a {
    margin: 0 0 16px 0;
  }

  .header-menu-desk {
    max-width: 60%;
    margin: 0;
  }

  header {
    position: fixed;
    width: 99%;
    top: 0;
    margin: 0;
    padding: 24px 24px 8px 24px;
    z-index: 20;
    background: #ff7700;
  }

  .container-title {
    background: #ff7700;
    position: sticky;
    z-index: 4;
  }

  .title-vr {
    width: 60%;
    margin: 6rem 0 0 50px;
    padding: 0;
    -webkit-transform: translateX(-47rem);
    -ms-transform: translateX(-47rem);
    transform: translateX(-47rem);
    -webkit-animation: showTitleVR 0.7s linear forwards;
    animation: showTitleVR 0.7s linear forwards;
  }

  @-webkit-keyframes showTitleVR {
    from {
      -webkit-transform: translateX(-47rem);
      transform: translateX(-47rem);
    }
    to {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }

  @keyframes showTitleVR {
    from {
      -webkit-transform: translateX(-47rem);
      transform: translateX(-47rem);
    }
    to {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }

  .form-vr {
    background: transparent;
    position: initial;
    height: auto;
    z-index: 5;
  }

  .form-vr > form {
    width: 32%;
    top: 8rem;
    right: 6rem;
    z-index: 5;
    -webkit-transform: translateX(37rem);
    -ms-transform: translateX(37rem);
    transform: translateX(37rem);
    -webkit-animation: showToRight 0.7s linear forwards;
    animation: showToRight 0.7s linear forwards;
  }

  .title-vr > div {
    margin: 23rem 0 0 4rem;
  }

  .title-vr > div > h1 {
    font-size: 2rem;
  }

  .title-vr > p {
    margin: 0px 0 5rem 120px;
    font-size: 1.1rem;
    padding: 0;
    max-width: 580px;
  }

  .title-vr > div::before {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(5%, rgba(255, 119, 0, 0)),
      color-stop(52%, rgba(255, 119, 0, 1))
    );
    background: -o-linear-gradient(
      top,
      rgba(255, 119, 0, 0) 5%,
      rgba(255, 119, 0, 1) 52%
    );
    background: linear-gradient(
      180deg,
      rgba(255, 119, 0, 0) 5%,
      rgba(255, 119, 0, 1) 52%
    );
    height: 170px;
  }

  .title-vr > div::after {
    height: 60px;
    bottom: -100px;
  }

  .benefits-carousel {
    padding: 17rem 0 4rem 300px;
    margin: 0;
  }

  .benefits-carousel__content {
    padding: 0 0 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .benefits-carousel__content--items,
  .meet-vr-carousel__content--items {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 24px;
  }

  .benefits-carousel__content--items {
    position: relative;
    display: block !important;
    margin: 0;
    width: 240px !important;
    height: auto !important;
  }

  .benefits-carousel__content--items img {
    position: absolute;
    top: 0;
  }

  .benefits-carousel__content--items h3 {
    line-height: 20px;
    margin: 68px 0 24px 0;
  }

  .benefits-container,
  .hire-vr {
    padding: 0 0 4rem 300px;
  }

  .benefits-container__content {
    margin: 2rem 16px 0 16px;
    width: 50%;
  }

  .benefits-container__title,
  .hire-vr__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .benefits-container__title > div,
  .hire-vr__title > div,
  .additional-services__title > div {
    height: 72px;
  }

  .benefits-container__title h2,
  .hire-vr__title h2 {
    font-size: 1.7rem;
    width: 60%;
    line-height: 32px;
  }

  .benefits-container__title::after {
    height: 520px;
    top: 80px;
    left: 60%;
  }

  .hire-vr {
    margin: 0;
  }

  .hire-vr__title h2 {
    width: 35%;
  }

  .hire-vr__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .hire-vr__content--text {
    width: 180px;
    height: 185px;
  }

  .hire-vr__content--text > p {
    width: 100%;
  }

  .hire-vr__content--separator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -90px;
  }

  .hire-vr button,
  .additional-services__button button {
    margin: 4rem auto;
    width: 35%;
  }

  .perguntas-frequentes__button {
    position: absolute;
    left: 30px;
    top: 190px;
    width: 30%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .perguntas-frequentes__button button {
    width: 70%;
    margin: 0;
  }

  .menu-vr {
    padding: 4rem 12% 4rem 54%;
  }

  .menu-vr__title::before {
    width: 55%;
    height: 100%;
    top: 24px;
  }

  .meet-vr-carousel {
    padding: 2rem 0 2rem 260px;
  }

  .meet-vr-carousel__content--items {
    margin: 0;
    height: 330px !important;
  }

  .meet-vr-carousel > h3 {
    margin-left: 38px;
  }

  .slick-dots {
    margin: -8px 0 0 38px;
  }

  .additional-services {
    padding: 2rem 6rem 2rem 300px;
  }

  .additional-services__title > h2 {
    width: 57%;
  }

  .additional-services__title span {
    width: 100%;
  }

  .additional-services__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .additional-services__content > div {
    width: 45%;
  }

  .whatsapp {
    bottom: 16px;
    display: none;
  }

  .accept-terms {
    width: 98%;
  }

  .accept-terms > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35%;
    margin-bottom: 0;
  }

  .accept-terms > ul > li:nth-of-type(1) {
    margin: 0 16px 0 0;
    width: 70%;
    border: 2px solid #fff;
  }

  .accept-terms > ul > li:nth-of-type(2) {
    width: 30%;
  }

  .accept-terms > p {
    margin-bottom: 16px;
  }
  
  .accept-terms > ul > li:nth-of-type(1):hover {
    background: #fff;
  }
  
  .accept-terms > ul > li:nth-of-type(1):hover > a {
    color: #00aa13 !important;
  }

 .accept-terms > ul > li:nth-of-type(2):hover {
  background: #000;
 }

.accept-terms > ul > li:nth-of-type(2):hover > a {
  color: #fff !important;
}


  footer {
    position: sticky;
    z-index: 4;
    background: #ff7700;
  }

  .vr-footer-itens > div:nth-last-child(3) {
    width: 25%;
  }

  .vr-footer-itens {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 2rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer-itens,
  .footer-aplicativos {
    padding: 0 2rem;
    margin: 0;
  }

  .footer-itens > a {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer-redes-sociais {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1rem;
    margin: 0;
  }

  .footer-redes-sociais > a,
  .footer-redes-sociais > p {
    font-size: 14px;
    text-align: center;
    margin: 1rem 0;
    padding: 0;
    text-decoration: none;
    color: #74787c;
    font-weight: 600;
  }

  .footer-redes-sociais > a {
    text-decoration: underline;
  }

  .footer-aplicativos > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-aplicativos > div > a {
    margin-bottom: 10px;
  }

  .footer-aplicativos > p {
    margin-left: 0;
  }

  .vr-perguntas-frequentes > div:nth-last-child(1) {
    margin-bottom: 2rem;
  }

  .vr-perguntas-frequentes {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    padding: 1rem 2rem 0 2rem;
    position: sticky;
    z-index: 4;
  }

  .vr-conteudo-perguntas-frequentes-titulo > p {
    width: 80%;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 2rem 0;
  }

  .perguntas-vr > p,
  .perguntas-vr li,
  .perguntas-vr a,
  .perguntas-vr h4 {
    font-size: 0.85rem;
    color: black;
    line-height: 24px;
  }

  .vr-titulo-perguntas-frequentes > h2 {
    font-size: 2rem;
  }

  .vr-conteudo-perguntas-frequentes-titulo {
    position: relative;
    width: 40%;
  }

  .vr-conteudo-perguntas-frequentes-informacoes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-positive: 2;
    width: 60%;
    float: right;
    z-index: 2;
  }

  .vr-titulo-premios > p {
    font-size: 2rem;
  }

  .vr-premios > p {
    width: 35%;
    font-size: 1rem;
  }

  .vr-imagens-premios > img {
    width: auto;
    height: auto;
  }

  .depositions-carousel__content--items {
    height: 260px !important;
  }

  .depositions-carousel {
    padding: 3rem 0 0 0;
    position: sticky;
    z-index: 4;
  }

  .depositions-carousel__title {
    margin: 0 0 1rem 2rem;
  }

  .vr-premios {
    padding: 3rem 2rem 0 2rem;
    position: sticky;
    z-index: 4;
  }
}

.active {
  font-weight: bold;
  color: #ff7700 !important;
}