@import url(https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
@charset "UTF-8";
/* ------- --------- */
/*__________________________________*/
body {
  width: 100vw;
  height: auto;
  display: block;
  overflow-x: hidden;
  background-color: #f3eef5;
  /* RESET DE ELEMENTOS */
  /* CARROSSEL - SWIPER */
}
body.no-scroll {
  overflow-y: hidden;
}
body hr {
  margin: 0;
}
body a {
  text-decoration: none;
}
body ul {
  padding-left: 0;
  margin-bottom: 0;
}
body p {
  margin-bottom: 0;
}
body menu {
  margin: 0;
  padding: 0;
}
body .swiper-slide {
  display: flex;
}
body .swiper-autoheight .swiper-slide {
  height: 100%;
}
body .swiper-horizontal > .swiper-pagination-bullets,
body .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: relative;
  top: unset;
  bottom: unset;
  left: unset;
}

/************************************************************ ACCORDION PADRÃO ************************************************************/
details {
  overflow: hidden;
  transition: all ease-out 0.2s;
}
details[open] .details-content {
  opacity: 1;
  transition: opacity linear 0.2s 50ms;
}
details summary {
  position: relative;
  list-style: none;
}
details .details-content {
  opacity: 0;
  transition: opacity linear 0.2s 50ms;
}

/*******************************************************************************************************************************************/
/************************************************************ QUEDINHA (DROPDOWN PADRÃO) ***************************************************/
/* Utilizado o nome quedinha para que não haja sobreposição de classes com o plugin do bootstrap. Esse plugin está sendo criado para suprir a necessidade que o dropdown do bootstrap não oferecia (segundo nível com clique) */
.quedinha {
  position: relative;
  /* edita a poição da seta no submenu  para abrir para o lado*/
}
.quedinha__btn {
  position: relative;
  z-index: 3;
  background-color: transparent;
  border: none;
  padding: 0;
  padding-right: 1rem;
}
.quedinha__btn::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 0.5rem;
  height: auto;
  aspect-ratio: 6/4;
  background-color: #7c7c7c;
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transition: all ease 0.4s;
}
.quedinha__btn * {
  pointer-events: none;
}
.quedinha.open > .quedinha__btn::after {
  transform: translateY(-50%) rotate(-180deg);
  transition: all ease 0.4s;
}
.quedinha__content > .quedinha.open > .quedinha__btn::after {
  transform: translateY(-50%) rotate(-90deg);
}
.quedinha__content {
  position: absolute;
  z-index: 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  visibility: collapse;
  background-color: #cacaca;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10%);
  transition: all 0.4s ease-out;
}
.quedinha__content--sub-menu {
  top: 0;
  left: 100%;
}
.quedinha.open > .quedinha__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease-out;
}

/*******************************************************************************************************************************************/
/************************************************************ BURGUER (MENU MOBILE PADRÃO) ************************************************************/
.burguer {
  display: flex;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  border: none;
  outline: none;
  background-color: transparent;
}
.burguer__icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.burguer__icon span {
  width: 100%;
  height: 2px;
  background-color: #000;
}
.burguer__icon.dots {
  width: 1.25rem;
  height: 1.25rem;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 4px;
}
.burguer__icon.dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

/*******************************************************************************************************************************************/
/* CONFIGURAÇÃO DO TEMA */
.comp01-page__content, .cota02__form, .cota02__topics, .foot02__acting, .foot02__cta, .foot02__socials, .foot02__navigation, .side02, .side02--btt, .side02--rtl, .side02--ttb, .confirmation-page__title, .form01, .portfolio__cta-section, .portfolio__banner, .about__gallery, .about__topics, .about__content__wrapper, .about__content, .about__banner, .service__brand, .service__topics, .service__cta-section__header, .service__features, .service__description, .service__banner, .newsletter__form, .home__blog, .home__brand, .home__topics, .home__cta-section, .home__services, .home__banner, .comp01-page__banner {
  padding-top: 4.5rem;
  padding-right: 5vw;
  padding-bottom: 4.5rem;
  padding-left: 5vw;
}
.comp01-page__banner__title {
  font: 700 3.125rem "Red Hat Display", serif, arial;
  line-height: 140%;
  letter-spacing: 0.0125rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .comp01-page__banner__title {
    font-size: 2.5rem;
    line-height: 90%;
  }
}
.comp01-page__banner__title {
  color: #404040;
}
.confirmation-page__title, .comp01-page__content__header__title, .form01__main__information__title {
  font: 700 1.875rem "Red Hat Display", serif, arial;
  line-height: normal;
  text-align: left;
}
@media (max-width: 991.98px) {
  .confirmation-page__title, .comp01-page__content__header__title, .form01__main__information__title {
    font-size: 1.563rem;
  }
}
.form01__main__information__title {
  color: #000;
}
.comp01-page__content__header__title {
  color: #404040;
}
.confirmation-page__title {
  color: #cacaca;
}
.form01__main__information__paragraph, .head02__right__links__item--menu-mobile__item, .comp01-page__content__paragraph, .cota02__form__footer__compliance__link, .cota02__form__footer__compliance, .confirmation-page__paragraph {
  font: 400 1rem "Poppins", sans-serif, arial;
  line-height: 170%;
  letter-spacing: 0.2px;
}
.form01__main__information__paragraph p, .head02__right__links__item--menu-mobile__item p, .comp01-page__content__paragraph p, .cota02__form__footer__compliance__link p, .cota02__form__footer__compliance p, .confirmation-page__paragraph p {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  letter-spacing: inherit;
  margin: 0;
}
@media (max-width: 991.98px) {
  .form01__main__information__paragraph, .head02__right__links__item--menu-mobile__item, .comp01-page__content__paragraph, .cota02__form__footer__compliance__link, .cota02__form__footer__compliance, .confirmation-page__paragraph {
    font-size: 0.938rem;
  }
}
.comp01-page__content__paragraph, .cota02__form__footer__compliance__link, .cota02__form__footer__compliance, .confirmation-page__paragraph {
  color: #000;
}
.form01__main__information__paragraph, .head02__right__links__item--menu-mobile__item {
  color: #404040;
}
.comp01-page__content__archives__item, .form01__main__form__footer__compliance__link, .form01__main__form__footer__compliance {
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: 140%;
  letter-spacing: 0.2px;
}
.comp01-page__content__archives__item p, .form01__main__form__footer__compliance__link p, .form01__main__form__footer__compliance p {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  letter-spacing: inherit;
  margin: 0;
}
@media (max-width: 991.98px) {
  .comp01-page__content__archives__item, .form01__main__form__footer__compliance__link, .form01__main__form__footer__compliance {
    font-size: 0.813rem;
    line-height: 170%;
  }
}
.form01__main__form__footer__compliance__link, .form01__main__form__footer__compliance {
  color: #000;
}
.comp01-page__content__archives__item {
  color: #404040;
}
.head02__right__links__item--menu-mobile__item {
  /* edita apenas o btn de menu mobile */
  background-color: #e0dde6;
  padding: 0.9375rem 1.125rem;
  border-radius: 100dvw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.head02__right__links__item--menu-mobile__item__icon {
  width: 1.5rem;
  height: 0.875rem;
}
.head02__right__links__item--menu-mobile__item__icon span {
  height: 1px;
  background-color: #000;
}
.comp01-page__banner {
  width: 100%;
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #cacaca;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.cota02__form__footer__cta, .side02__cta, .form01__main__form__footer__cta, .portfolio__cta-section__cta, .service__cta-section__header__cta, .service__features__item__header__button__cta, .service__banner__header__cta, .newsletter__form__cta, .home__topics__cta, .home__cta-section__cta, .home__banner__header__cta, .home__blog__cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4.5625rem 0 2rem;
  background-color: #7844f5;
  border: solid 1px #7844f5;
  border-radius: 100dvw;
  position: relative;
  height: 3.75rem;
  transition: all ease 0.3s;
  font: 600 1.25rem "Red Hat Display", serif, arial;
  color: #fff;
}
.cota02__form__footer__cta:hover, .side02__cta:hover, .form01__main__form__footer__cta:hover, .portfolio__cta-section__cta:hover, .service__cta-section__header__cta:hover, .service__features__item__header__button__cta:hover, .service__banner__header__cta:hover, .newsletter__form__cta:hover, .home__topics__cta:hover, .home__cta-section__cta:hover, .home__banner__header__cta:hover, .home__blog__cta:hover {
  background-color: transparent;
  color: #7844f5;
}
.cota02__form__footer__cta:focus, .side02__cta:focus, .form01__main__form__footer__cta:focus, .portfolio__cta-section__cta:focus, .service__cta-section__header__cta:focus, .service__features__item__header__button__cta:focus, .service__banner__header__cta:focus, .newsletter__form__cta:focus, .home__topics__cta:focus, .home__cta-section__cta:focus, .home__banner__header__cta:focus, .home__blog__cta:focus {
  /* uso do !important para resetar o valor do fancybox */
  outline: none !important;
}
.cota02__form__footer__cta__icon, .side02__cta__icon, .portfolio__cta-section__cta__icon, .service__cta-section__header__cta__icon, .service__banner__header__cta__icon, .newsletter__form__cta__icon, .home__blog__cta__icon, .home__topics__cta__icon, .home__cta-section__cta__icon, .home__banner__header__cta__icon {
  height: calc(100% - 12px);
  width: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 6px;
  right: 6px;
}
.home__blog__cta {
  color: #000;
  border-color: #000;
  background-color: transparent;
}
.home__blog__cta:hover {
  background-color: #000;
  color: #fff;
}
.portfolio__cases__nav, .service__cases__nav, .home__cases__nav, .about__timeline__nav, .service__services__nav, .service__feedback__nav, .home__blog__nav, .home__feedback__nav {
  --swiper-navigation-size: 0.75rem;
  /* Variável que define o tamanho do botão e do after */
  --swiper-navigation-color: $color-one;
  /* Variável que define a cor do after (setas) */
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.portfolio__cases__nav:has(.swiper-button-lock), .service__cases__nav:has(.swiper-button-lock), .home__cases__nav:has(.swiper-button-lock), .about__timeline__nav:has(.swiper-button-lock), .service__services__nav:has(.swiper-button-lock), .service__feedback__nav:has(.swiper-button-lock), .home__blog__nav:has(.swiper-button-lock), .home__feedback__nav:has(.swiper-button-lock) {
  display: none;
}
.portfolio__cases__nav .swiper-button-prev, .service__cases__nav .swiper-button-prev, .home__cases__nav .swiper-button-prev, .about__timeline__nav .swiper-button-prev, .service__services__nav .swiper-button-prev, .service__feedback__nav .swiper-button-prev, .home__blog__nav .swiper-button-prev, .home__feedback__nav .swiper-button-prev,
.portfolio__cases__nav .swiper-button-next,
.service__cases__nav .swiper-button-next,
.home__cases__nav .swiper-button-next,
.about__timeline__nav .swiper-button-next,
.service__services__nav .swiper-button-next,
.service__feedback__nav .swiper-button-next,
.home__blog__nav .swiper-button-next,
.home__feedback__nav .swiper-button-next {
  position: relative;
  width: 6.5rem;
  height: auto;
  aspect-ratio: 1/1;
  margin: unset;
  top: unset;
  right: unset;
  left: unset;
  border-radius: 50%;
  background-color: transparent;
  border: solid 1px rgba(255, 255, 255, 0.3);
  transition: all 0.8s;
}
@media (max-width: 991.98px) {
  .portfolio__cases__nav .swiper-button-prev, .service__cases__nav .swiper-button-prev, .home__cases__nav .swiper-button-prev, .about__timeline__nav .swiper-button-prev, .service__services__nav .swiper-button-prev, .service__feedback__nav .swiper-button-prev, .home__blog__nav .swiper-button-prev, .home__feedback__nav .swiper-button-prev,
  .portfolio__cases__nav .swiper-button-next,
  .service__cases__nav .swiper-button-next,
  .home__cases__nav .swiper-button-next,
  .about__timeline__nav .swiper-button-next,
  .service__services__nav .swiper-button-next,
  .service__feedback__nav .swiper-button-next,
  .home__blog__nav .swiper-button-next,
  .home__feedback__nav .swiper-button-next {
    width: 4.875rem;
  }
}
.portfolio__cases__nav .swiper-button-prev:hover, .service__cases__nav .swiper-button-prev:hover, .home__cases__nav .swiper-button-prev:hover, .about__timeline__nav .swiper-button-prev:hover, .service__services__nav .swiper-button-prev:hover, .service__feedback__nav .swiper-button-prev:hover, .home__blog__nav .swiper-button-prev:hover, .home__feedback__nav .swiper-button-prev:hover,
.portfolio__cases__nav .swiper-button-next:hover,
.service__cases__nav .swiper-button-next:hover,
.home__cases__nav .swiper-button-next:hover,
.about__timeline__nav .swiper-button-next:hover,
.service__services__nav .swiper-button-next:hover,
.service__feedback__nav .swiper-button-next:hover,
.home__blog__nav .swiper-button-next:hover,
.home__feedback__nav .swiper-button-next:hover {
  background: #6232dd;
}
.portfolio__cases__nav .swiper-button-prev:before, .service__cases__nav .swiper-button-prev:before, .home__cases__nav .swiper-button-prev:before, .about__timeline__nav .swiper-button-prev:before, .service__services__nav .swiper-button-prev:before, .service__feedback__nav .swiper-button-prev:before, .home__blog__nav .swiper-button-prev:before, .home__feedback__nav .swiper-button-prev:before,
.portfolio__cases__nav .swiper-button-next:before,
.service__cases__nav .swiper-button-next:before,
.home__cases__nav .swiper-button-next:before,
.about__timeline__nav .swiper-button-next:before,
.service__services__nav .swiper-button-next:before,
.service__feedback__nav .swiper-button-next:before,
.home__blog__nav .swiper-button-next:before,
.home__feedback__nav .swiper-button-next:before {
  content: "";
  background-color: rgba(98, 50, 221, 0.8);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.8s;
  width: 160%;
  height: 160%;
  z-index: 0;
  pointer-events: none;
}
.portfolio__cases__nav .swiper-button-prev:active::before, .service__cases__nav .swiper-button-prev:active::before, .home__cases__nav .swiper-button-prev:active::before, .about__timeline__nav .swiper-button-prev:active::before, .service__services__nav .swiper-button-prev:active::before, .service__feedback__nav .swiper-button-prev:active::before, .home__blog__nav .swiper-button-prev:active::before, .home__feedback__nav .swiper-button-prev:active::before,
.portfolio__cases__nav .swiper-button-next:active::before,
.service__cases__nav .swiper-button-next:active::before,
.home__cases__nav .swiper-button-next:active::before,
.about__timeline__nav .swiper-button-next:active::before,
.service__services__nav .swiper-button-next:active::before,
.service__feedback__nav .swiper-button-next:active::before,
.home__blog__nav .swiper-button-next:active::before,
.home__feedback__nav .swiper-button-next:active::before {
  width: 0;
  height: 0;
  opacity: 1;
  transition: 0s;
}
.portfolio__cases__nav .swiper-button-prev::after, .service__cases__nav .swiper-button-prev::after, .home__cases__nav .swiper-button-prev::after, .about__timeline__nav .swiper-button-prev::after, .service__services__nav .swiper-button-prev::after, .service__feedback__nav .swiper-button-prev::after, .home__blog__nav .swiper-button-prev::after, .home__feedback__nav .swiper-button-prev::after,
.portfolio__cases__nav .swiper-button-next::after,
.service__cases__nav .swiper-button-next::after,
.home__cases__nav .swiper-button-next::after,
.about__timeline__nav .swiper-button-next::after,
.service__services__nav .swiper-button-next::after,
.service__feedback__nav .swiper-button-next::after,
.home__blog__nav .swiper-button-next::after,
.home__feedback__nav .swiper-button-next::after {
  content: "";
  width: 2.25rem;
  height: 1rem;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='16' viewBox='0 0 35 16' fill='none'%3E%3Cpath d='M0.292892 7.2929C-0.0976296 7.68342 -0.0976295 8.31659 0.292893 8.70711L6.65686 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41422 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928935C7.68054 0.53841 7.04738 0.53841 6.65685 0.928935L0.292892 7.2929ZM35 7L1 7L1 9L35 9L35 7Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .portfolio__cases__nav .swiper-button-prev::after, .service__cases__nav .swiper-button-prev::after, .home__cases__nav .swiper-button-prev::after, .about__timeline__nav .swiper-button-prev::after, .service__services__nav .swiper-button-prev::after, .service__feedback__nav .swiper-button-prev::after, .home__blog__nav .swiper-button-prev::after, .home__feedback__nav .swiper-button-prev::after,
  .portfolio__cases__nav .swiper-button-next::after,
  .service__cases__nav .swiper-button-next::after,
  .home__cases__nav .swiper-button-next::after,
  .about__timeline__nav .swiper-button-next::after,
  .service__services__nav .swiper-button-next::after,
  .service__feedback__nav .swiper-button-next::after,
  .home__blog__nav .swiper-button-next::after,
  .home__feedback__nav .swiper-button-next::after {
    width: 1.625rem;
  }
}
.portfolio__cases__nav .swiper-button-next, .service__cases__nav .swiper-button-next, .home__cases__nav .swiper-button-next, .about__timeline__nav .swiper-button-next, .service__services__nav .swiper-button-next, .service__feedback__nav .swiper-button-next, .home__blog__nav .swiper-button-next, .home__feedback__nav .swiper-button-next {
  margin-left: -14px;
}
.portfolio__cases__nav .swiper-button-next::after, .service__cases__nav .swiper-button-next::after, .home__cases__nav .swiper-button-next::after, .about__timeline__nav .swiper-button-next::after, .service__services__nav .swiper-button-next::after, .service__feedback__nav .swiper-button-next::after, .home__blog__nav .swiper-button-next::after, .home__feedback__nav .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='16' viewBox='0 0 35 16' fill='none'%3E%3Cpath d='M34.7071 7.2929C35.0976 7.68342 35.0976 8.31659 34.7071 8.70711L28.3431 15.0711C27.9526 15.4616 27.3195 15.4616 26.9289 15.0711C26.5384 14.6805 26.5384 14.0474 26.9289 13.6569L32.5858 8L26.9289 2.34315C26.5384 1.95262 26.5384 1.31946 26.9289 0.928935C27.3195 0.53841 27.9526 0.53841 28.3431 0.928935L34.7071 7.2929ZM8.74228e-08 7L34 7L34 9L-8.74228e-08 9L8.74228e-08 7Z' fill='white'/%3E%3C/svg%3E");
}
.about__timeline__nav .swiper-button-prev, .service__services__nav .swiper-button-prev, .service__feedback__nav .swiper-button-prev, .home__blog__nav .swiper-button-prev, .home__feedback__nav .swiper-button-prev,
.about__timeline__nav .swiper-button-next,
.service__services__nav .swiper-button-next,
.service__feedback__nav .swiper-button-next,
.home__blog__nav .swiper-button-next,
.home__feedback__nav .swiper-button-next {
  border-color: rgba(6, 6, 6, 0.3);
}
.about__timeline__nav .swiper-button-prev::after, .service__services__nav .swiper-button-prev::after, .service__feedback__nav .swiper-button-prev::after, .home__blog__nav .swiper-button-prev::after, .home__feedback__nav .swiper-button-prev::after,
.about__timeline__nav .swiper-button-next::after,
.service__services__nav .swiper-button-next::after,
.service__feedback__nav .swiper-button-next::after,
.home__blog__nav .swiper-button-next::after,
.home__feedback__nav .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='16' viewBox='0 0 35 16' fill='none'%3E%3Cpath d='M0.292892 7.2929C-0.0976296 7.68342 -0.0976295 8.31659 0.292893 8.70711L6.65686 15.0711C7.04738 15.4616 7.68054 15.4616 8.07107 15.0711C8.46159 14.6805 8.46159 14.0474 8.07107 13.6569L2.41422 8L8.07107 2.34315C8.46159 1.95262 8.46159 1.31946 8.07107 0.928935C7.68054 0.53841 7.04738 0.53841 6.65685 0.928935L0.292892 7.2929ZM35 7L1 7L1 9L35 9L35 7Z' fill='%23060606'/%3E%3C/svg%3E");
}
.about__timeline__nav .swiper-button-next::after, .service__services__nav .swiper-button-next::after, .service__feedback__nav .swiper-button-next::after, .home__blog__nav .swiper-button-next::after, .home__feedback__nav .swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='16' viewBox='0 0 35 16' fill='none'%3E%3Cpath d='M34.7071 7.2929C35.0976 7.68342 35.0976 8.31659 34.7071 8.70711L28.3431 15.0711C27.9526 15.4616 27.3195 15.4616 26.9289 15.0711C26.5384 14.6805 26.5384 14.0474 26.9289 13.6569L32.5858 8L26.9289 2.34315C26.5384 1.95262 26.5384 1.31946 26.9289 0.928935C27.3195 0.53841 27.9526 0.53841 28.3431 0.928935L34.7071 7.2929ZM8.74228e-08 7L34 7L34 9L-8.74228e-08 9L8.74228e-08 7Z' fill='%23060606'/%3E%3C/svg%3E");
}
/*******************************************************************************************************************************************/
/*====Home====*/
.home__banner {
  padding-top: 8.75rem;
  height: 100dvh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
  margin-top: -98px;
}
@media (max-width: 991.98px) {
  .home__banner {
    flex-direction: column;
    gap: 2.5rem;
    margin-top: -73px;
  }
}
@media screen and (max-width: 330px) {
  .home__banner {
    padding-top: 6.75rem;
  }
}
.home__banner__scroll-down {
  background-color: transparent;
  border: none;
  position: absolute;
  left: 5dvw;
  bottom: 2.5625rem;
}
.home__banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.home__banner__bg__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 991.98px) {
  .home__banner__bg__img {
    -o-object-position: center;
       object-position: center;
  }
}
.home__banner__header {
  width: 50%;
}
@media (max-width: 991.98px) {
  .home__banner__header {
    width: 100%;
  }
}
.home__banner__header__title {
  font: 700 5.3125rem "Red Hat Display", serif, arial;
  color: #000;
  line-height: 101%;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: 2.6875rem;
  text-align: left;
}
@media (max-width: 991.98px) {
  .home__banner__header__title {
    font-size: 3.125rem;
    margin-bottom: 1.4375rem;
  }
}
@media (max-height: 768px) {
  .home__banner__header__title {
    font-size: 3rem;
    margin-bottom: 1.3125rem;
  }
}
@media screen and (max-width: 330px) {
  .home__banner__header__title {
    font-size: 2rem;
  }
}
.home__banner__header__description {
  font: 400 1.625rem "Poppins", sans-serif, arial;
  color: #2c2c2c;
  line-height: normal;
  text-align: left;
  margin-bottom: 4.625rem;
}
@media (max-width: 991.98px) {
  .home__banner__header__description {
    font-size: 1.125rem;
    margin-bottom: 2.25rem;
  }
}
@media (max-height: 768px) {
  .home__banner__header__description {
    font-size: 1.25rem;
    margin-bottom: 2.6875rem;
  }
}
@media screen and (max-width: 330px) {
  .home__banner__header__description {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .home__banner__header__cta {
    font-size: 0.875rem;
  }
}
.home__video {
  width: 100%;
  height: auto;
  max-height: 100dvh;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home__video__button {
  width: 5.5rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: transparent;
  border: none;
}
.home__video__button__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.home__video__iframe {
  width: 100%;
  height: 100%;
}
.home__services {
  padding-top: 4.8125rem;
  padding-bottom: 6.5rem;
  position: relative;
  overflow: hidden;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  isolation: isolate;
}
@media (max-width: 767.98px) {
  .home__services {
    padding-bottom: 4.75rem;
  }
}
.home__services__parallax, .service__description__parallax--focused, .home__services__parallax--focused {
  position: absolute;
  height: auto;
  width: 17.6875rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  filter: blur(8px);
  right: 5.4375rem;
  top: 14.5rem;
}
@media (max-width: 767.98px) {
  .home__services__parallax, .service__description__parallax--focused, .home__services__parallax--focused {
    right: 0rem;
    width: 7.4375rem;
  }
}
.home__services__parallax--focused {
  right: 0;
  width: 12.3125rem;
  filter: none;
}
@media (max-width: 767.98px) {
  .home__services__parallax--focused {
    width: 5rem;
  }
}
.home__services__header {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  margin-bottom: 7.25rem;
}
.home__services__header__title {
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 5.5625rem "Red Hat Display", serif, arial;
  line-height: 96.629%;
  letter-spacing: -1px;
  margin-bottom: 1.75rem;
  width: 100%;
  max-width: 733px;
}
@media (max-width: 991.98px) {
  .home__services__header__title {
    text-align: center;
    font-size: 2.8125rem;
  }
}
.home__services__header__paragraph {
  color: #eff0f7;
  font: 400 1rem "Poppins", sans-serif, arial;
  opacity: 0.5;
}
@media (max-width: 991.98px) {
  .home__services__header__paragraph {
    text-align: center;
  }
}
.home__services__topics {
  width: 100%;
}
.home__services__topics__item {
  max-width: 27.9375rem;
  width: 100%;
  height: auto;
  background-color: rgba(217, 217, 217, 0.1);
  border-radius: 1.5625rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  padding: 1.5rem 1.9375rem 3.4375rem;
}
.home__services__topics__item__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 3.9375rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px rgba(232, 232, 232, 0.2);
  margin-bottom: 0.4375rem;
}
.home__services__topics__item__icon__img {
  width: 2.125rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.home__services__topics__item__title {
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 2.1875rem "Red Hat Display", serif, arial;
  line-height: 105.5%;
  letter-spacing: -1px;
  margin-bottom: 1.375rem;
}
.home__services__topics__item__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  gap: 0.5625rem 0.3125rem;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.home__services__topics__item__list__item__link {
  padding: 0 1.375rem;
  height: 2.875rem;
  background-color: #4a4a4a;
  border-radius: 100dvw;
  transition: all ease 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 0.9375rem "Red Hat Display", serif, arial;
  line-height: 100%;
  /* 0% */
}
.home__services__topics__item__list__item__link:hover {
  background-color: #6232dd;
}
.home__cases {
  background-color: #000;
  display: grid;
  grid-template-areas: "title nav" "carousel carousel";
  width: 100vw;
  position: relative;
}
@media (max-width: 991.98px) {
  .home__cases {
    grid-template-areas: "title" "carousel" "nav";
  }
}
.home__cases__title {
  grid-area: title;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 14.0625rem "Red Hat Display", serif, arial;
  line-height: 86.222%;
  letter-spacing: -1px;
  margin-bottom: -22px;
  margin-left: -20px;
}
@media (max-width: 991.98px) {
  .home__cases__title {
    font-size: 5rem;
    text-align: center;
    margin: 2.125rem 0;
    margin-left: unset;
  }
}
.home__cases__nav {
  grid-area: nav;
  padding-right: 5dvw;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .home__cases__nav {
    margin-top: 2.3125rem;
    z-index: 999;
  }
}
.home__cases__carousel {
  width: 100%;
  grid-area: carousel;
  overflow: hidden;
}
.home__cases__carousel__item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: 100vh;
  aspect-ratio: 454/560;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 3.3125rem 2.5625rem;
}
.home__cases__carousel__item::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(357deg, #000 9.02%, rgba(84, 84, 84, 0) 76.81%);
  opacity: 0.6;
}
.home__cases__carousel__item__bg {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home__cases__carousel__item__title {
  color: var(--White, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font: 700 3.125rem "Poppins", sans-serif, arial;
  line-height: 96%;
  letter-spacing: -1px;
  width: 100%;
  max-width: 200px;
  margin-bottom: 2.375rem;
}
.home__cases__carousel__item__tags {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.1875rem;
}
.home__cases__carousel__item__tags__item {
  border-radius: 100dvw;
  background: #565656;
  padding: 0 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 1rem "Red Hat Display", serif, arial;
}
.home__cta-section {
  padding-top: 6.0625rem;
  padding-bottom: 6.9375rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
@media (max-width: 991.98px) {
  .home__cta-section {
    padding-top: 4.5625rem;
    padding-bottom: 5.5625rem;
    margin-top: -1rem;
  }
}
.home__cta-section__title {
  position: relative;
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 5.5625rem "Red Hat Display", serif, arial;
  letter-spacing: -1px;
  position: relative;
}
.home__cta-section__title::after {
  content: "";
  position: absolute;
  width: 188px;
  height: 18px;
  background-image: url(../images/elemento-roxo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  right: 3rem;
}
.home__cta-section__title span {
  position: relative;
}
.home__cta-section__title span::before {
  content: "";
  width: 11.75rem;
  height: 1.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='188' height='19' viewBox='0 0 188 19' fill='none'%3E%3Cpath d='M0.0167492 17.8354C-0.0528619 17.6179 0.0994241 17.4004 0.382219 17.3003C57.8766 -1.79487 127.897 -6.4675 187.514 10.3044C187.845 10.4001 188.041 10.6437 187.993 10.8917C187.952 10.9878 187.879 11.0662 187.785 11.1125C187.692 11.1588 187.585 11.17 187.484 11.1441C125.969 1.23321 59.4081 -0.193811 0.591044 18.0443C0.48623 18.0846 0.370387 18.0856 0.264848 18.0473C0.159309 18.0089 0.0711859 17.9337 0.0167492 17.8354Z' fill='%236F3BED'/%3E%3Cpath d='M43.6278 15.7341C76.258 7.66359 126.578 7.29812 159.378 15.1946C159.978 15.3382 159.735 15.9821 159.113 15.8907C125.612 10.957 77.2717 11.2833 43.8975 16.4302C43.2754 16.5259 43.0274 15.882 43.6278 15.7341Z' fill='%236F3BED'/%3E%3Cpath d='M165.718 15.9555C167.986 15.998 170.23 16.4276 172.353 17.2259C173.358 17.6132 172.953 18.7008 171.809 18.6747C169.537 18.6364 167.288 18.2066 165.161 17.4043C164.169 17.0171 164.578 15.9294 165.718 15.9555Z' fill='%236F3BED'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% -20%;
}
@media (max-width: 991.98px) {
  .home__cta-section__title {
    font-size: 3rem;
  }
}
.home__cta-section__subtitle {
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 2.8125rem "Red Hat Display", serif, arial;
  line-height: 191.111%;
  letter-spacing: -1px;
  margin-bottom: 2.1875rem;
}
@media (max-width: 991.98px) {
  .home__cta-section__subtitle {
    font-size: 1.75rem;
  }
}
.home__cta-section__paragraph {
  color: #eff0f7;
  text-align: center;
  font: 400 1.1rem "Poppins", sans-serif, arial;
  line-height: normal;
  width: 100%;
  max-width: 579px;
  margin-bottom: 3.6875rem;
  opacity: 0.5;
}
.home__cta-section__paragraph strong {
  font-weight: 400;
  color: #7844f5;
}
.home__topics {
  padding-top: 6.875rem;
  padding-bottom: 5.75rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .home__topics {
    padding-top: 2rem;
  }
}
.home__topics__title, .about__timeline__title, .service__services__title, .service__brand__title, .service__feedback__title, .home__blog__title, .home__feedback__title, .home__brand__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 2.5rem "Red Hat Display", serif, arial;
  line-height: 102.5%;
  letter-spacing: -1px;
  width: 100%;
  max-width: 615px;
  margin-bottom: 3.8125rem;
}
@media (max-width: 991.98px) {
  .home__topics__title, .about__timeline__title, .service__services__title, .service__brand__title, .service__feedback__title, .home__blog__title, .home__feedback__title, .home__brand__title {
    font-size: 2.25rem;
    text-align: center;
    margin: 0 auto 3.8125rem;
  }
}
.home__topics__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.5625rem 2.75rem;
  flex-wrap: wrap;
  margin-bottom: 6.4375rem;
}
.home__topics__list__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: calc(25% - 2.75rem * 3 / 4);
  padding: 1.3125rem 1.875rem;
  border-radius: 1.5rem;
  transition: all ease 0.3s;
  border: solid 1px transparent;
}
.home__topics__list__item:hover {
  border-color: #7844f5;
}
@media (max-width: 991.98px) {
  .home__topics__list__item {
    width: calc(33.3333333333% - 2.75rem * 2 / 3);
  }
}
@media (max-width: 767.98px) {
  .home__topics__list__item {
    width: calc(50% - 2.75rem * 1 / 2);
  }
}
@media (max-width: 575.98px) {
  .home__topics__list__item {
    padding: 1.3125rem 0.7rem;
  }
}
.home__topics__list__item__icon {
  height: auto;
  width: 3.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px rgba(96, 96, 96, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.6875rem;
}
.home__topics__list__item__icon__img {
  width: 2.125rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.home__topics__list__item__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 500 1.5rem "Red Hat Display", serif, arial;
  line-height: 125%;
  letter-spacing: -1px;
}
.home__topics__list__item__paragraph {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
  opacity: 0.7;
}
.home__topics__cta {
  margin: 0 auto;
}
.home__topics__parallax {
  position: absolute;
  height: auto;
  width: 10.3125rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  right: -0.75rem;
  bottom: 0;
}
@media (max-width: 767.98px) {
  .home__topics__parallax {
    right: 0rem;
    width: 7.4375rem;
  }
}
.home__brand {
  padding-top: 0;
  padding-bottom: 5.75rem;
  position: relative;
  overflow-x: hidden;
}
.home__brand__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4.125rem 4.875rem;
}
.home__brand__list__item {
  position: relative;
  position: relative;
  width: calc(16.6666666667% - 4.875rem * 5 / 6);
}
@media (max-width: 1199.98px) {
  .home__brand__list__item {
    width: calc(20% - 4.875rem * 4 / 5);
  }
}
@media (max-width: 991.98px) {
  .home__brand__list__item {
    width: calc(25% - 4.875rem * 3 / 4);
  }
}
@media (max-width: 767.98px) {
  .home__brand__list__item {
    width: calc(33.3333333333% - 4.875rem * 2 / 3);
  }
}
@media (max-width: 575.98px) {
  .home__brand__list__item {
    width: calc(50% - 4.875rem * 1 / 2);
  }
}
.home__brand__list__item__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.home__feedback {
  padding-bottom: 5.75rem;
  position: relative;
  display: grid;
  grid-template-areas: "title nav" "carousel carousel";
  width: 100vw;
}
@media (max-width: 991.98px) {
  .home__feedback {
    grid-template-areas: "title" "carousel" "nav";
  }
}
.home__feedback__title {
  grid-area: title;
  align-self: center;
}
@media (min-width: 992px) {
  .home__feedback__title {
    padding-left: 5vw;
  }
}
.home__feedback__nav {
  grid-area: nav;
  justify-content: end;
}
@media (min-width: 992px) {
  .home__feedback__nav {
    padding-right: 5vw;
    margin-bottom: 2.1875rem;
  }
}
@media (max-width: 991.98px) {
  .home__feedback__nav {
    margin-top: 2.3125rem;
    margin-inline: auto;
  }
}
.home__feedback__carousel {
  grid-area: carousel;
  width: 90vw;
  margin: 0 auto;
}
.home__feedback__carousel__swiper-wrapper {
  align-items: start;
}
.home__feedback__carousel__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-radius: 1.75rem;
  background-color: #eff0f7;
  width: 100%;
  max-width: 21.375rem;
  height: auto;
  padding: 2.6875rem 2.625rem;
}
.home__feedback__carousel__item__image {
  width: 5.625rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.home__feedback__carousel__item__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 2rem "Red Hat Display", serif, arial;
  line-height: 128.125%;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.home__feedback__carousel__item__subtitle {
  color: #6f3bed;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 1rem "Red Hat Display", serif, arial;
  line-height: 128.125%;
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
}
.home__feedback__carousel__item__call {
  color: #2c2c2c;
  font: 600 1rem "Poppins", sans-serif, arial;
  font-style: italic;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.home__feedback__carousel__item__text, .service__feedback__carousel__item__footer__title, .home__feedback__carousel__item__footer__title {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
}
.home__feedback__carousel__item__footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 1.6875rem;
  padding-top: 2rem;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
}
.home__feedback__carousel__item__footer__title {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.home__feedback__carousel__item__footer__signing {
  width: 4.75rem;
  height: 2.6875rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.home__blog {
  padding-bottom: 5.75rem;
  position: relative;
  display: grid;
  grid-template-areas: "title nav" "carousel carousel" "cta cta";
  width: 100vw;
}
@media (max-width: 991.98px) {
  .home__blog {
    grid-template-areas: "title" "carousel" "nav" "cta";
    padding-top: 0;
  }
}
.home__blog__nav {
  grid-area: nav;
  justify-content: end;
}
@media (min-width: 992px) {
  .home__blog__nav {
    padding-right: 5vw;
    margin-bottom: 2.1875rem;
  }
}
@media (max-width: 991.98px) {
  .home__blog__nav {
    margin-top: 2.3125rem;
    margin-inline: auto;
  }
}
.home__blog__title {
  grid-area: title;
  align-self: center;
}
.home__blog__main {
  grid-area: carousel;
}
.home__blog__main__carousel {
  width: 90vw;
  margin: 0 auto;
}
.home__blog__main__carousel__item {
  width: 100%;
  max-width: 25.9375rem;
  height: auto;
  aspect-ratio: 415/435;
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 2rem 2.75rem 2rem;
}
.home__blog__main__carousel__item::before {
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: linear-gradient(11deg, #000 16.94%, rgba(102, 102, 102, 0) 69.48%);
}
.home__blog__main__carousel__item__image {
  height: calc(100% + 60px);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -2;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3rem;
}
.home__blog__main__carousel__item__title {
  position: relative;
  z-index: 2;
  color: var(--White, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font: 700 1.75rem "Red Hat Display", serif, arial;
  line-height: 107.143%;
  letter-spacing: -1px;
}
.home__blog__cta {
  grid-area: cta;
  justify-self: center;
  margin-top: 7.8125rem;
}
@media (max-width: 991.98px) {
  .home__blog__cta {
    margin-top: 4.375rem;
  }
}
.home__blog__parallax {
  position: absolute;
  height: auto;
  width: 16.25rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  filter: blur(8px);
  left: -5.4375rem;
  bottom: 9rem;
}
@media (max-width: 767.98px) {
  .home__blog__parallax {
    left: 0rem;
    width: 7.4375rem;
  }
}

/*====Home====*/
/*====Form do site===*/
.newsletter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #6f3bed;
}
@media (max-width: 991.98px) {
  .newsletter {
    flex-direction: column-reverse;
  }
}
.newsletter__image {
  width: 50%;
  margin-top: -54px;
}
@media (max-width: 991.98px) {
  .newsletter__image {
    width: 100%;
    margin-top: 0;
  }
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
}
@media (min-width: 992px) {
  .newsletter__form {
    padding-left: 7.3125rem;
  }
}
.newsletter__form__title {
  color: var(--White, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font: 700 1.5625rem "Red Hat Display";
  line-height: 164%;
  letter-spacing: -1px;
  margin-bottom: 38px;
}
.newsletter__form__inputs {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.6875rem 0.3125rem;
  margin-bottom: 0.6875rem;
}
.newsletter__form__inputs .input__item {
  width: calc(50% - 0.3125rem * 1 / 2);
}
@media (max-width: 767.98px) {
  .newsletter__form__inputs .input__item {
    width: 100%;
  }
}
.newsletter__form__inputs .input__item .form-control {
  border-radius: 100dvw;
  color: #fff;
  height: 3.75rem;
  border-color: rgba(255, 255, 255, 0.5);
  padding: 0.5625rem 2rem;
}
.newsletter__form__inputs .input__item .placeholder--custom {
  color: #fff !important;
  padding-left: 2rem;
}
.newsletter__form__cta {
  background-color: #885cf1;
  border-color: #885cf1;
  align-self: end;
  width: calc(50% - 0.15625rem);
}
@media (max-width: 767.98px) {
  .newsletter__form__cta {
    width: 100%;
  }
}
.newsletter__form__cta:hover {
  color: #fff;
}
/*====Form do site===*/
/*====Servico Show===*/
.service__floating {
  position: fixed;
  z-index: 10;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  gap: 1.125rem;
}
.service__floating__item {
  border: solid 3px transparent;
  background-color: transparent;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 100dvw;
  padding: 0 0 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.6875rem;
  isolation: isolate;
}
.service__floating__item:hover {
  border-color: #7844f5;
  background-color: #7844f5;
}
.service__floating__item__icon {
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.service__floating__item__text {
  opacity: 0;
  transition: all ease 0.3s;
  display: block;
  white-space: nowrap;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 600 1.25rem "Red Hat Display", serif, arial;
  line-height: 95%;
  width: 0;
  position: relative;
  z-index: -1;
  translate: 100% 0;
}
:hover > .service__floating__item__text {
  translate: 0 0;
  width: auto;
  opacity: 1;
}
.service__banner {
  padding-top: 2rem;
  padding-left: 0;
  padding-right: 0;
  height: auto;
}
.service__banner__wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1510/155;
  max-height: calc(100dvh - 13.125rem);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 0;
  isolation: isolate;
}
@media (max-width: 991.98px) {
  .service__banner__wrapper {
    flex-direction: column;
    aspect-ratio: 320/160;
  }
}
.service__banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.service__banner__bg__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service__banner__header {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 991.98px) {
  .service__banner__header {
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    gap: 3rem;
    padding-left: 5vw;
  }
}
.service__banner__header__title {
  font: 700 5.625rem "Red Hat Display", serif, arial;
  color: #fff;
  line-height: 90%;
  letter-spacing: -1px;
  text-transform: capitalize;
  margin-bottom: -0.5rem;
  text-align: left;
}
@media (max-width: 1199.98px) {
  .service__banner__header__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 350px) {
  .service__banner__header__title {
    font-size: 1.8rem;
  }
}
.service__banner__header__cta {
  min-width: 15.125rem;
  margin-bottom: 2rem;
  margin-right: 2rem;
}
.service__banner__overlay {
  width: 50%;
  min-width: 648px;
  height: auto;
  max-height: 100%;
  aspect-ratio: 648/357;
  margin-bottom: -7.6875rem;
}
@media (max-width: 1199.98px) {
  .service__banner__overlay {
    min-width: unset;
  }
}
@media (max-width: 991.98px) {
  .service__banner__overlay {
    width: 100dvw;
    min-height: 50%;
    margin-bottom: -2.5625rem;
  }
}
.service__banner__overlay__image {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.service__banner__overlay__video {
  height: 100%;
  width: 100%;
}
.service__description {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  padding-top: 0;
}
.service__description__parallax {
  position: absolute;
  height: auto;
  width: 13.3125rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  right: 0.5rem;
  top: 13.75rem;
}
@media (max-width: 767.98px) {
  .service__description__parallax {
    right: 0rem;
    width: 7.4375rem;
  }
}
.service__description__parallax--focused {
  right: -1.875rem;
  top: 11.25rem;
  width: 8.5625rem;
  filter: none;
}
@media (max-width: 767.98px) {
  .service__description__parallax--focused {
    width: 5rem;
  }
}
.service__description__title, .service__cta-section__header__title, .service__features__item__header__title {
  color: #000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 3.75rem "Red Hat Display", serif, arial;
  line-height: 110%;
  letter-spacing: -1px;
  width: 100%;
  max-width: 35.1875rem;
  margin-bottom: 3.625rem;
}
@media (max-width: 991.98px) {
  .service__description__title, .service__cta-section__header__title, .service__features__item__header__title {
    font-size: 2.5rem;
  }
}
.service__description__paragraph, .service__features__item__header__paragraph {
  color: #2c2c2c;
  text-align: center;
  font: 400 1.175rem "Poppins", sans-serif, arial;
  line-height: 150%;
  opacity: 0.7;
  width: 100%;
  max-width: 39.875rem;
}
.service__features {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: 4rem;
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .service__features {
    gap: 5.0625rem;
  }
}
.service__features__item {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.service__features__item:nth-of-type(even) {
  flex-direction: row;
}
@media (max-width: 767.98px) {
  .service__features__item:nth-of-type(even) {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .service__features__item {
    flex-direction: column;
    gap: 4rem;
  }
}
.service__features__item__image {
  width: 50%;
  border-radius: 1.75rem;
  height: 718px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .service__features__item__image {
    width: 100%;
    height: auto;
  }
}
.service__features__item__header {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media (max-width: 767.98px) {
  .service__features__item__header {
    width: 100%;
    text-align: left;
    align-items: start;
  }
}
.service__features__item__header__title {
  text-align: inherit;
  margin-bottom: 2.75rem;
  max-width: 450px;
}
@media (max-width: 767.98px) {
  .service__features__item__header__title {
    margin-bottom: 1.5rem;
  }
}
.service__features__item__header__paragraph {
  text-align: inherit;
}
.service__features__item__header__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 5.125rem;
  position: relative;
  z-index: 1;
}
.service__features__item__header__button__cta:nth-of-type(2) {
  background-color: #000;
  position: relative;
  left: -3rem;
  z-index: -1;
  padding-left: 6rem;
  padding-right: 3rem;
}
.service__features__item__header__button__cta:nth-of-type(2):hover {
  background-color: transparent;
}
.service__features__item:nth-of-type(even) .service__features__item__header {
  padding-left: 2rem;
}
@media (max-width: 767.98px) {
  .service__features__item:nth-of-type(even) .service__features__item__header {
    width: 100%;
  }
}
.service__cta-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.service__cta-section__header {
  padding-top: 5.8125rem;
  width: 100%;
  padding-bottom: 6.75rem;
}
@media (min-width: 992px) {
  .service__cta-section__header {
    width: 55%;
    padding-right: 6.1875rem;
    padding-bottom: 9.4375rem;
  }
}
.service__cta-section__header__title {
  text-align: left;
  margin-bottom: 2.5625rem;
  max-width: unset;
}
@media (max-width: 991.98px) {
  .service__cta-section__header__title {
    margin-bottom: 5.125rem;
  }
}
.service__cta-section__image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
@media (min-width: 992px) {
  .service__cta-section__image {
    width: 45%;
  }
}
.service__cases {
  background-color: #000;
  display: grid;
  grid-template-areas: "header nav" "carousel carousel";
  width: 100vw;
  position: relative;
  padding-top: 6.375rem;
}
@media (max-width: 991.98px) {
  .service__cases {
    grid-template-areas: "header" "carousel" "nav";
    padding-bottom: 1.5rem;
  }
}
.service__cases__header {
  grid-area: header;
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 4.8125rem;
}
.service__cases__header__title, .service__cases__header__subtitle {
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 900 5.5625rem "Red Hat Display", serif, arial;
  letter-spacing: -1px;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service__cases__header__title::after, .service__cases__header__subtitle::after {
  content: "";
  position: absolute;
  width: 188px;
  height: 18px;
  background-image: url(../images/elemento-roxo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
}
@media (max-width: 991.98px) {
  .service__cases__header__title::after, .service__cases__header__subtitle::after {
    width: 115px;
  }
}
@media (max-width: 991.98px) {
  .service__cases__header__title, .service__cases__header__subtitle {
    font-size: 3.4375rem;
    text-align: center;
    margin-left: unset;
    margin-bottom: 1rem;
  }
}
.service__cases__header__title span, .service__cases__header__subtitle span {
  font-size: 5.625rem;
  vertical-align: top;
  line-height: 50%;
  margin-right: -15px;
}
.service__cases__header__subtitle {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 92%;
}
.service__cases__header__subtitle::after {
  display: none;
}
@media (max-width: 991.98px) {
  .service__cases__header__subtitle {
    font-size: 2.1875rem;
    text-align: center;
    margin-bottom: 0;
  }
}
.service__cases__nav {
  grid-area: nav;
  padding-right: 5dvw;
  justify-content: end;
}
@media (max-width: 991.98px) {
  .service__cases__nav {
    margin-top: 2.3125rem;
  }
}
.service__cases__carousel {
  width: 100%;
  grid-area: carousel;
  overflow: hidden;
}
.service__cases__carousel__item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: auto;
  aspect-ratio: 454/698;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 3.3125rem 2.5625rem;
}
.service__cases__carousel__item::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(357deg, #000 9.02%, rgba(84, 84, 84, 0) 76.81%);
  opacity: 0.6;
}
.service__cases__carousel__item__bg {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service__cases__carousel__item__tags {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.1875rem;
}
.service__cases__carousel__item__tags__item {
  border-radius: 100dvw;
  background: #565656;
  padding: 0 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 1rem "Red Hat Display", serif, arial;
}
.service__topics {
  padding-top: 6.875rem;
  padding-bottom: 8.3125rem;
  position: relative;
}
.service__topics__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.5625rem 2.75rem;
  flex-wrap: wrap;
}
.service__topics__list__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: calc(25% - 2.75rem * 3 / 4);
  padding: 1.3125rem 0.875rem;
  border-radius: 0.6875rem;
  transition: all ease 0.3s;
  border: solid 1px transparent;
}
.service__topics__list__item:hover {
  border-color: #7844f5;
}
@media (max-width: 991.98px) {
  .service__topics__list__item {
    width: calc(33.3333333333% - 2.75rem * 2 / 3);
  }
}
@media (max-width: 767.98px) {
  .service__topics__list__item {
    width: calc(50% - 2.75rem * 1 / 2);
  }
}
.service__topics__list__item__icon {
  height: auto;
  width: 3.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px rgba(96, 96, 96, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.6875rem;
}
.service__topics__list__item__icon__img {
  width: 2.125rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.service__topics__list__item__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 500 1.5rem "Red Hat Display", serif, arial;
  line-height: 125%;
  letter-spacing: -1px;
}
.service__topics__list__item__paragraph {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
  opacity: 0.7;
}
.service__feedback {
  padding-bottom: 7.3125rem;
  position: relative;
  display: grid;
  grid-template-areas: "title nav" "carousel carousel";
  width: 100vw;
}
@media (max-width: 991.98px) {
  .service__feedback {
    grid-template-areas: "title" "carousel" "nav";
  }
}
.service__feedback__title {
  grid-area: title;
  align-self: center;
}
@media (min-width: 992px) {
  .service__feedback__title {
    padding-left: 5vw;
  }
}
.service__feedback__nav {
  grid-area: nav;
  justify-content: end;
}
@media (min-width: 992px) {
  .service__feedback__nav {
    padding-right: 5vw;
    margin-bottom: 2.1875rem;
  }
}
@media (max-width: 991.98px) {
  .service__feedback__nav {
    margin-top: 2.3125rem;
    margin-inline: auto;
  }
}
.service__feedback__carousel {
  grid-area: carousel;
  width: 90vw;
  margin: 0 auto;
}
.service__feedback__carousel__swiper-wrapper {
  align-items: start;
}
.service__feedback__carousel__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-radius: 1.75rem;
  background-color: #eff0f7;
  width: 100%;
  max-width: 21.375rem;
  height: auto;
  padding: 2.6875rem 2.625rem;
}
.service__feedback__carousel__item__image {
  width: 5.625rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.service__feedback__carousel__item__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 2rem "Red Hat Display", serif, arial;
  line-height: 128.125%;
  letter-spacing: -1px;
  margin-bottom: 0;
}
.service__feedback__carousel__item__subtitle {
  color: #6f3bed;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 1rem "Red Hat Display", serif, arial;
  line-height: 128.125%;
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
}
.service__feedback__carousel__item__call {
  color: #2c2c2c;
  font: 600 1rem "Poppins", sans-serif, arial;
  font-style: italic;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.service__feedback__carousel__item__text {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
}
.service__feedback__carousel__item__footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 1.6875rem;
  padding-top: 2rem;
  border-top: solid 1px rgba(0, 0, 0, 0.2);
}
.service__feedback__carousel__item__footer__title {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.service__feedback__carousel__item__footer__signing {
  width: 4.75rem;
  height: 2.6875rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.service__brand {
  padding-top: 0;
  padding-bottom: 7.8125rem;
  position: relative;
  overflow: visible;
}
.service__brand::after {
  content: "";
  width: 95dvw;
  height: 1px;
  background-color: #000;
  opacity: 0.3;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
.service__brand__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4.125rem 4.875rem;
}
.service__brand__list__item {
  position: relative;
  position: relative;
  width: calc(16.6666666667% - 4.875rem * 5 / 6);
}
@media (max-width: 1199.98px) {
  .service__brand__list__item {
    width: calc(20% - 4.875rem * 4 / 5);
  }
}
@media (max-width: 991.98px) {
  .service__brand__list__item {
    width: calc(25% - 4.875rem * 3 / 4);
  }
}
@media (max-width: 767.98px) {
  .service__brand__list__item {
    width: calc(33.3333333333% - 4.875rem * 2 / 3);
  }
}
@media (max-width: 575.98px) {
  .service__brand__list__item {
    width: calc(50% - 4.875rem * 1 / 2);
  }
}
.service__brand__list__item__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.service__brand__parallax {
  position: absolute;
  height: auto;
  width: 10.3125rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  right: 0rem;
  top: 15rem;
}
@media (max-width: 767.98px) {
  .service__brand__parallax {
    right: 0rem;
    width: 7.4375rem;
  }
}
.service__services {
  padding-top: 6.375rem;
  padding-bottom: 9.3125rem;
  padding-left: 5dvw;
  position: relative;
  display: grid;
  grid-template-areas: "title nav" "carousel carousel";
  width: 100%;
}
@media (max-width: 991.98px) {
  .service__services {
    grid-template-areas: "title" "carousel" "nav";
    padding-top: 5.3125rem;
    padding-bottom: 5.3125rem;
  }
}
.service__services__title {
  grid-area: title;
}
@media (max-width: 991.98px) {
  .service__services__title {
    text-align: left;
    margin-left: 0;
    padding-right: 5dvw;
  }
}
.service__services__title span {
  color: #6232dd;
}
.service__services__nav {
  grid-area: nav;
  justify-content: end;
}
@media (min-width: 992px) {
  .service__services__nav {
    margin-bottom: 2.1875rem;
    padding-right: 5dvw;
  }
}
@media (max-width: 991.98px) {
  .service__services__nav {
    margin-top: 2.3125rem;
    margin-inline: auto;
  }
}
.service__services__carousel {
  grid-area: carousel;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.service__services__carousel__swiper-wrapper {
  align-items: end;
}
.service__services__carousel__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 11rem;
  height: 4.375rem;
  color: var(--White, #fff);
  text-align: center;
  font-family: 400 1.375rem "Red Hat Display", serif, arial;
  line-height: 100%;
  transition: all ease 0.3s;
  border-radius: 2.6875rem;
  background-color: #4a4a4a;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.service__services__carousel__item:hover {
  background-color: #6232dd;
}
.service__services__carousel__item.active {
  background-color: #6232dd;
}

/*====Servico Show===*/
/*==== ABOUT ===*/
.about__banner {
  height: calc(100dvh - 215px);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 0;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 1700px) {
  .about__banner {
    height: calc(100dvh - 280px);
  }
}
@media (max-width: 1199.98px) {
  .about__banner {
    height: calc(100dvh - 275px);
  }
}
@media (max-width: 991.98px) {
  .about__banner {
    flex-direction: column;
    height: calc(100dvh - 100px);
    justify-content: end;
  }
}
.about__banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.about__banner__bg__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991.98px) {
  .about__banner__bg__img {
    -o-object-position: center;
       object-position: center;
  }
}
.about__banner__title {
  font: 700 5.5625rem "Red Hat Display", serif, arial;
  color: #FFF;
  line-height: 110%;
  letter-spacing: -1px;
  margin-bottom: 0;
  width: 100%;
  max-width: 45.8125rem;
}
@media (max-width: 991.98px) {
  .about__banner__title {
    font-size: 3.125rem;
  }
}
.about__timeline {
  background-color: #FFF;
  display: grid;
  grid-template-areas: "header nav" "carousel carousel";
  width: 100vw;
  position: relative;
  padding-top: 2rem;
}
@media (max-width: 991.98px) {
  .about__timeline {
    grid-template-areas: "header" "carousel" "nav";
    padding-bottom: 0rem;
  }
}
.about__timeline__title {
  text-align: left;
  margin-bottom: 4rem;
  padding-left: 5dvw;
}
@media (max-width: 991.98px) {
  .about__timeline__title {
    margin-left: unset;
  }
}
.about__timeline__parallax {
  position: absolute;
  height: auto;
  width: 10.3125rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
  right: -0.75rem;
  top: 7rem;
}
@media (max-width: 767.98px) {
  .about__timeline__parallax {
    right: 0rem;
    width: 7.688rem;
  }
}
.about__timeline__nav {
  grid-area: nav;
  padding-right: 5dvw;
  justify-content: end;
  margin-bottom: 4rem;
}
@media (max-width: 991.98px) {
  .about__timeline__nav {
    margin-top: 2.3125rem;
    margin-bottom: 0;
  }
}
.about__timeline__carousel {
  width: 100%;
  grid-area: carousel;
  overflow: hidden;
  padding-left: 5dvw;
}
.about__timeline__carousel__swiper-wrapper {
  justify-content: flex-start;
}
.about__timeline__carousel__item {
  height: auto;
  width: 14.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}
.about__timeline__carousel__item:nth-child(even) {
  flex-direction: column-reverse;
}
.about__timeline__carousel__item:nth-child(even) .about__timeline__carousel__item__information {
  justify-content: end;
  padding: 0.3125rem 0 0.75rem 1.375rem;
}
.about__timeline__carousel__item:nth-child(even) .about__timeline__carousel__item__information::before {
  bottom: unset;
  top: 0;
}
.about__timeline__carousel__item:nth-child(even) .about__timeline__carousel__item__image {
  justify-content: start;
  padding-bottom: 0;
}
.about__timeline__carousel__item__image {
  position: relative;
  z-index: 1;
  width: 14.25rem;
  height: 7.75rem;
  border-radius: 0.875rem;
  overflow: hidden;
}
.about__timeline__carousel__item__image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__timeline__carousel__item__information {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  overflow: hidden;
  padding: 0.75rem 0 0.3125rem 1.375rem;
  z-index: -1;
}
.about__timeline__carousel__item__information::before {
  content: "";
  width: 1px;
  height: 120%;
  background-color: #6f3bed;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about__timeline__carousel__item__information__title {
  color: #6f3bed;
  font: 700 2.25rem "Poppins", sans-serif, arial;
  line-height: 90%;
}
.about__timeline__carousel__item__information__paragraph {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
  opacity: 0.7;
}
.about__content {
  background-color: #FFF;
  position: relative;
  z-index: 0;
  padding-top: 9.125rem;
}
@media (max-width: 991.98px) {
  .about__content {
    padding-top: 5.4375rem;
    padding-bottom: 0.9375rem;
  }
}
.about__content__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f3eef5;
  border-radius: 1.75rem;
}
@media (max-width: 991.98px) {
  .about__content__wrapper {
    flex-direction: column-reverse;
  }
}
.about__content__image {
  width: 42%;
  height: auto;
  aspect-ratio: 447/533;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  margin-top: -3.3125rem;
}
@media (max-width: 991.98px) {
  .about__content__image {
    width: 100%;
    margin-top: 0;
  }
}
.about__content__header {
  padding-top: 6.4375rem;
  padding-bottom: 6.3125rem;
  width: calc(58% - 106px);
}
@media (max-width: 991.98px) {
  .about__content__header {
    padding-top: 2.5625rem;
    padding-bottom: 4.0625rem;
    width: 100%;
  }
}
.about__content__header__title {
  color: #000;
  font: 700 3.75rem "Red Hat Display", serif, arial;
  line-height: 102.5%;
  text-align: left;
  letter-spacing: -1px;
  width: 100%;
  margin-bottom: 2.75rem;
}
@media (max-width: 991.98px) {
  .about__content__header__title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
}
.about__content__header__paragraph {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
  opacity: 0.7;
}
.about__topics {
  background-color: #FFF;
  padding-bottom: 7.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
@media (min-width: 992px) {
  .about__topics {
    padding-top: 5.1875rem;
    padding-bottom: 10.3125rem;
  }
}
.about__topics__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 3.75rem "Red Hat Display", serif, arial;
  line-height: 102.5%;
  letter-spacing: -1px;
  width: 100%;
  max-width: 415px;
  margin-bottom: 4.5rem;
  margin: 0 auto 30px 0;
}
@media (max-width: 991.98px) {
  .about__topics__title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.about__topics__paragraph {
  color: #2C2C2C;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  width: 100%;
  max-width: 633px;
  margin: 0 auto 52px 0;
  opacity: 0.7;
}
.about__topics__parallax {
  position: absolute;
  height: auto;
  width: 24.688rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
  right: 0;
  top: 4rem;
}
@media (max-width: 767.98px) {
  .about__topics__parallax {
    width: 13.688rem;
    z-index: -1;
  }
}
.about__topics__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 0.5625rem 2.75rem;
  flex-wrap: wrap;
}
.about__topics__list__item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: calc(25% - 2.75rem * 3 / 4);
  padding: 1.3125rem 1.875rem;
  border-radius: 0.6875rem;
  transition: all ease 0.3s;
  border: solid 1px transparent;
}
.about__topics__list__item:hover {
  border-color: #7844f5;
}
@media (max-width: 991.98px) {
  .about__topics__list__item {
    width: calc(33.3333333333% - 2.75rem * 2 / 3);
  }
}
@media (max-width: 767.98px) {
  .about__topics__list__item {
    width: calc(50% - 2.75rem * 1 / 2);
  }
}
@media (max-width: 575.98px) {
  .about__topics__list__item {
    padding: 1.3125rem 0.7rem;
  }
}
.about__topics__list__item__icon {
  height: auto;
  width: 3.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: solid 1px rgba(96, 96, 96, 0.2);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.6875rem;
}
.about__topics__list__item__icon__img {
  width: 2.125rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.about__topics__list__item__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 500 1.5rem "Red Hat Display", serif, arial;
  line-height: 125%;
  letter-spacing: -1px;
}
.about__topics__list__item__paragraph {
  color: #2c2c2c;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  line-height: normal;
  opacity: 0.7;
}
.about__gallery {
  background-color: #FFF;
  padding-top: 0;
  padding-bottom: 9.1875rem;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 991.98px) {
  .about__gallery {
    padding-bottom: 7.5rem;
  }
}
.about__gallery__item {
  width: calc(33.3333333333% - 0.5rem * 2 / 3);
  height: auto;
  aspect-ratio: 392/257;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 1.75rem;
  flex: 1 0 auto;
}
@media (max-width: 767.98px) {
  .about__gallery__item {
    width: calc(50% - 0.5rem * 1 / 2);
  }
}
@media (max-width: 575.98px) {
  .about__gallery__item {
    width: 100%;
  }
}

/*==== ABOUT ===*/
/*==== PORTFOLIO SHOW ===*/
.portfolio__floating {
  position: fixed;
  z-index: 10;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 1.125rem;
  height: calc(100dvh - 5.5rem);
}
@media (max-width: 991.98px) {
  .portfolio__floating {
    flex-direction: row;
    align-items: center;
    height: auto;
    width: 100dvw;
    gap: 0;
    right: 0;
  }
}
.portfolio__floating__item {
  border: solid 3px transparent;
  background-color: transparent;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 100dvw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.6875rem;
  isolation: isolate;
  padding: 0;
}
@media (min-width: 992px) {
  .portfolio__floating__item {
    padding: 0 0 0 1rem;
  }
  .portfolio__floating__item:hover {
    border-color: #7844f5;
    background-color: #7844f5;
  }
}
.portfolio__floating__item__text {
  opacity: 0;
  transition: all ease 0.3s;
  display: block;
  white-space: nowrap;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 600 1.25rem "Red Hat Display", serif, arial;
  line-height: 95%;
  width: 0;
  position: relative;
  z-index: -1;
  translate: 100% 0;
}
@media (min-width: 992px) {
  :hover > .portfolio__floating__item__text {
    translate: 0 0;
    width: auto;
    opacity: 1;
  }
}
.portfolio__floating__item__icon {
  width: 2.875rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.portfolio__floating__item__icon:hover {
  filter: brightness(0) saturate(100%) invert(88%) sepia(69%) saturate(7431%) hue-rotate(192deg) brightness(140%) contrast(100%);
}
.portfolio__wrapper {
  margin-left: 5dvw;
  margin-right: 7dvw;
  margin-top: 1.5rem;
  margin-bottom: 7.1875rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 0;
}
.portfolio__wrapper::before {
  content: "";
  background-color: #c3b7b7;
  opacity: 0.1;
  width: 100%;
  height: calc(100% - 6.5rem);
  position: absolute;
  z-index: -1;
  top: 6.5rem;
  border-radius: 1.5rem;
}
@media (max-width: 991.98px) {
  .portfolio__wrapper {
    margin-right: 5dvw;
  }
}
.portfolio__banner {
  padding-top: 8.75rem;
  height: auto;
  width: 100%;
  aspect-ratio: 1205/539;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
}
@media (max-width: 575.98px) {
  .portfolio__banner {
    padding-top: 7rem;
  }
}
.portfolio__banner__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.portfolio__banner__bg__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
}
.portfolio__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 4.5rem 1.875rem;
}
@media (max-width: 575.98px) {
  .portfolio__content {
    padding-top: 0;
  }
}
.portfolio__content__header {
  width: calc(100% - 36.4375rem);
  padding-right: 2.3125rem;
}
@media (max-width: 1199.98px) {
  .portfolio__content__header {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .portfolio__content__header {
    width: 100%;
    padding-right: 0;
  }
}
.portfolio__content__header__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 4.75rem "Red Hat Display", serif, arial;
  line-height: 113.158%;
  letter-spacing: -1px;
  margin-bottom: 3.0625rem;
}
@media (max-width: 575.98px) {
  .portfolio__content__header__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}
.portfolio__content__header__paragraph {
  color: #2c2c2c;
  font: 400 1.125rem "Poppins", sans-serif, arial;
  line-height: 183.333%;
}
.portfolio__content__image {
  width: 36.4375rem;
  height: auto;
  aspect-ratio: 583/406;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 1199.98px) {
  .portfolio__content__image {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  .portfolio__content__image {
    width: 100%;
  }
}
.portfolio__gallery {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: 1.5rem;
}
.portfolio__gallery__image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.portfolio__gallery__video {
  width: 100%;
  height: auto;
  max-height: 100dvh;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.portfolio__gallery__video__button {
  width: 5.5rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: transparent;
  border: none;
}
.portfolio__gallery__video__button__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.portfolio__gallery__video__iframe {
  width: 100%;
  height: 100%;
}
.portfolio__cta-section {
  padding-top: 7.9375rem;
  padding-bottom: 9.0625rem;
  position: relative;
  z-index: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
@media (max-width: 991.98px) {
  .portfolio__cta-section {
    padding-top: 4.5625rem;
    padding-bottom: 5.5625rem;
  }
}
.portfolio__cta-section__title {
  position: relative;
  color: #f3eef5;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 7.5rem "Red Hat Display", serif, arial;
  line-height: 71%;
  letter-spacing: -1px;
  margin-bottom: 2.75rem;
}
.portfolio__cta-section__title::before {
  content: "";
  width: 6.25rem;
  height: 5.125rem;
  background-image: url("data:image/svg+xml,%3Csvg width='98' height='83' viewBox='0 0 98 83' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4244_200)'%3E%3Cpath d='M89.4346 20.8318L25.4688 2.42145C20.8217 1.08393 15.9717 3.76603 14.6342 8.41318L5.72475 39.3686C4.38723 44.0157 7.06933 48.8657 11.7165 50.2032L27.3633 54.7066C28.3126 54.9798 29.1362 55.5831 29.6798 56.4105L38.1236 69.2158C39.2266 70.8906 41.3839 71.5115 43.2084 70.6793L57.1676 64.3219C58.067 63.913 59.0832 63.8361 60.0354 64.1102L75.6822 68.6136C80.3294 69.9511 85.1793 67.269 86.5168 62.6218L95.4263 31.6665C96.7638 27.0193 94.0817 22.1694 89.4346 20.8318Z' fill='%23F44E66'/%3E%3Cpath d='M39.235 45.0798L30.84 33.9228C29.9136 32.6929 29.3099 31.2295 29.2329 29.69C28.9201 23.3768 36.6204 18.4158 42.2169 23.1597C42.3451 23.2705 42.4724 23.3841 42.5989 23.5005L44.8378 25.613L47.8572 25.0139C48.0271 24.9797 48.1953 24.9512 48.3619 24.9284C55.624 23.8853 59.5088 32.1808 55.8879 37.3618C55.005 38.6219 53.715 39.5433 52.2765 40.0926L39.235 45.0798Z' fill='white'/%3E%3Cpath d='M66.157 51.2898L63.7495 50.597L67.3899 37.9488C67.7605 36.6612 68.1512 35.4533 68.5621 34.3251C68.2949 34.4729 67.9988 34.6246 67.6747 34.7776C67.3507 34.9305 65.893 35.5574 63.3017 36.6582L62.4818 34.5879L69.514 31.7983L71.5946 32.3971L66.157 51.2898Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4244_200'%3E%3Crect width='84.0719' height='61.6645' fill='white' transform='translate(17.0557) rotate(16.0567)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  translate: 88% -52%;
}
@media (max-width: 991.98px) {
  .portfolio__cta-section__title::before {
    width: 4.125rem;
    height: 3.375rem;
  }
}
@media (max-width: 991.98px) {
  .portfolio__cta-section__title {
    font-size: 4rem;
  }
}
.portfolio__cta-section__paragraph {
  color: #eff0f7;
  text-align: center;
  font: 400 1rem "Poppins", sans-serif, arial;
  line-height: normal;
  width: 100%;
  max-width: 579px;
  margin-bottom: 3.6875rem;
  opacity: 0.5;
}
.portfolio__cta-section__parallax, .portfolio__cta-section__parallax--left, .portfolio__cta-section__parallax--right {
  position: absolute;
  height: auto;
  width: 18rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .portfolio__cta-section__parallax, .portfolio__cta-section__parallax--left, .portfolio__cta-section__parallax--right {
    width: 6.875rem;
  }
}
.portfolio__cta-section__parallax--right {
  right: -2.9375rem;
  top: 1.25rem;
}
@media (max-width: 575.98px) {
  .portfolio__cta-section__parallax--right {
    right: -1.25rem;
    top: 11.875rem;
  }
}
.portfolio__cta-section__parallax--left {
  left: -6rem;
  top: 17rem;
}
@media (max-width: 575.98px) {
  .portfolio__cta-section__parallax--left {
    left: -1.25rem;
    top: 18.125rem;
  }
}
.portfolio__cases {
  background-color: #000;
  display: grid;
  grid-template-areas: "header nav" "carousel carousel";
  width: 100vw;
  position: relative;
  align-items: center;
}
@media (max-width: 991.98px) {
  .portfolio__cases {
    grid-template-areas: "header" "carousel" "nav";
    padding-bottom: 1.5rem;
  }
}
.portfolio__cases__title {
  grid-area: header;
  padding-left: 5dvw;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 900 3.125rem "Red Hat Display", serif, arial;
  letter-spacing: -1px;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  position: relative;
}
.portfolio__cases__title::after {
  content: "";
  position: absolute;
  width: 188px;
  height: 18px;
  background-image: url(../images/elemento-roxo.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -0.5rem;
  left: 6rem;
}
@media (max-width: 991.98px) {
  .portfolio__cases__title {
    font-size: 2.5rem;
    text-align: center;
    margin-left: unset;
    margin-bottom: 2rem;
  }
}
.portfolio__cases__title span {
  font-size: 5.625rem;
  vertical-align: top;
  line-height: 50%;
  margin-right: -15px;
}
.portfolio__cases__nav {
  grid-area: nav;
  padding-right: 5dvw;
  justify-content: end;
}
.portfolio__cases__carousel {
  width: 100%;
  grid-area: carousel;
  overflow: hidden;
  margin-top: 4.8125rem;
}
@media (max-width: 991.98px) {
  .portfolio__cases__carousel {
    margin-top: 2.3125rem;
  }
}
.portfolio__cases__carousel__item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: auto;
  aspect-ratio: 454/698;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 3.3125rem 2.5625rem;
}
.portfolio__cases__carousel__item::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(357deg, #000 9.02%, rgba(84, 84, 84, 0) 76.81%);
  opacity: 0.6;
}
.portfolio__cases__carousel__item__bg {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.portfolio__cases__carousel__item__tags {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.1875rem;
}
.portfolio__cases__carousel__item__tags__item {
  border-radius: 100dvw;
  background: #565656;
  padding: 0 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 1rem "Red Hat Display", serif, arial;
}

/*==== PORTFOLIO SHOW ===*/
.cases__page {
  background-color: #000;
  display: grid;
  grid-template-areas: "title" "nav" "carousel";
  width: 100vw;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 991.98px) {
  .cases__page {
    grid-template-areas: "title" "nav" "carousel";
  }
}
.cases__page__title {
  grid-area: title;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 11.25rem "Red Hat Display", serif, arial;
  line-height: 86.222%;
  letter-spacing: -1px;
  margin-bottom: -22px;
  margin-left: -20px;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .cases__page__title {
    font-size: 5rem;
    margin-bottom: 2.125rem;
    margin-left: unset;
  }
}
.cases__page__categories {
  grid-area: nav;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.cases__page__categories__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  gap: 0.5625rem 0.3125rem;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
.cases__page__categories__list__item__link {
  padding: 0 1.375rem;
  height: 2.875rem;
  background-color: #4a4a4a;
  border-radius: 100dvw;
  transition: all ease 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 0.9375rem "Red Hat Display", serif, arial;
  line-height: 100%;
  /* 0% */
}
.cases__page__categories__list__item__link:hover {
  background-color: #6232dd;
}
.cases__page__carousel {
  grid-area: carousel;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.125rem;
  width: 100%;
  overflow: visible;
}
@media (max-width: 991.98px) {
  .cases__page__carousel {
    grid-template-columns: 1fr;
  }
}
.cases__page__carousel__item {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: auto;
  aspect-ratio: 454/698;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 3.3125rem 2.5625rem;
}
.cases__page__carousel__item::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(357deg, #000 9.02%, rgba(84, 84, 84, 0) 76.81%);
  opacity: 0.6;
}
.cases__page__carousel__item__bg {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cases__page__carousel__item__title {
  color: var(--White, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font: 700 3.125rem "Poppins", sans-serif, arial;
  line-height: 96%;
  letter-spacing: -1px;
  width: 100%;
  max-width: 200px;
  margin-bottom: 2.375rem;
}
.cases__page__carousel__item__tags {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 0.1875rem;
}
.cases__page__carousel__item__tags__item {
  border-radius: 100dvw;
  background: #565656;
  padding: 0 0.875rem;
  width: -moz-fit-content;
  width: fit-content;
  height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 1rem "Red Hat Display", serif, arial;
}

/*==== CASES PAGE ===*/
.form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
}

#root {
  overflow-x: hidden;
  width: 100%;
  display: block;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: rgba(64, 64, 64, 0.5);
}

body::-webkit-scrollbar-thumb {
  background: rgba(64, 64, 64, 0.8);
}

body::-webkit-scrollbar-thumb:hover {
  background: #404040;
}

.content {
  position: relative;
}

.link-full {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 10;
  top: 0;
  left: 0;
}

.text-primary {
  color: #404040 !important;
}

.text-secondary {
  color: #7c7c7c !important;
}

.font-11 {
  font-size: 11px !important;
}

.font-12 {
  font-size: 12px !important;
}

.font-13 {
  font-size: 13px !important;
}

.font-14 {
  font-size: 14px !important;
}

.font-15 {
  font-size: 15px !important;
}

.font-16 {
  font-size: 16px !important;
}

.font-17 {
  font-size: 17px !important;
}

.font-18 {
  font-size: 18px !important;
}

.font-19 {
  font-size: 19px !important;
}

.font-20 {
  font-size: 20px !important;
}

.font-22 {
  font-size: 22px !important;
}

.font-24 {
  font-size: 24px !important;
}

.font-26 {
  font-size: 26px !important;
}

.font-28 {
  font-size: 28px !important;
}

.fw-medium {
  font-weight: 600;
}

.fw-semibold {
  font-weight: 900;
}

.w-10 {
  width: 10% !important;
}

.w-20 {
  width: 20% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-60 {
  width: 60% !important;
}

.w-70 {
  width: 70% !important;
}

.w-80 {
  width: 80% !important;
}

.w-90 {
  width: 90% !important;
}

.btn-icon {
  transform: scale(1);
  transition: ease all 0.4s;
}
.btn-icon:hover {
  transform: scale(1.15);
  transition: ease all 0.4s;
}

.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 64, 64, 0.5);
}

.btn-primary,
.btn-primary:disabled,
.btn-primary.disabled {
  color: #fff;
  background-color: #404040;
  border-color: #404040;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
.btn-primary:disabled:hover,
.btn-primary:disabled:focus,
.btn-primary:disabled:active,
.btn-primary:disabled.active,
.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled:active,
.btn-primary.disabled.active {
  color: #fff;
  background-color: rgba(64, 64, 64, 0.9);
  border-color: rgba(64, 64, 64, 0.9);
}
.btn-primary:focus,
.btn-primary:disabled:focus,
.btn-primary.disabled:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 64, 64, 0.5);
}

.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgba(64, 64, 64, 0.9);
  border-color: rgba(64, 64, 64, 0.9);
}

.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 64, 64, 0.5);
}

.form-control:focus {
  color: #212529;
  background-color: initial;
  border-color: initial;
  outline: 0;
  box-shadow: none;
}

.body-section {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
}

.parsley-error {
  border-color: #c90000;
}

.parsley-errors-list {
  padding-left: 0;
  font-size: 13px;
  color: #c90000;
}
.parsley-errors-list li {
  list-style: none;
}

.transition {
  transition: ease all 0.2s;
  -webkit-transition: ease all 0.2s;
}

.dropdown-menu {
  padding: 0.3rem;
  animation-name: DropDownSlide;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  top: 100%;
}
.dropdown-menu.show {
  top: 100% !important;
}
.dropdown-menu i {
  display: inline-block;
}

.dropdown-menu-end {
  right: 0 !important;
  left: auto !important;
}

.dropdown-menu[data-popper-placement^=right],
.dropdown-menu[data-popper-placement^=top],
.dropdown-menu[data-popper-placement^=left] {
  top: auto !important;
  animation: none !important;
}

@keyframes DropDownSlide {
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(15px);
  }
}
body .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
body .owl-nav button.owl-next,
body .owl-nav button.owl-prev {
  background-color: #404040 !important;
  color: #fff !important;
  border-radius: 100%;
  display: flex;
  width: 30px;
  height: 30px;
  font-size: 34px !important;
  justify-content: center;
  line-height: 22px !important;
  margin: 0 3px;
}
body .owl-nav button.owl-next:hover,
body .owl-nav button.owl-prev:hover {
  background-color: #7c7c7c;
  color: #000;
}
body .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
body .owl-dots .owl-dot {
  background-color: #404040;
  color: #fff;
  border-radius: 100%;
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 3px;
}
body .owl-dots .owl-dot:hover {
  background-color: #7c7c7c;
}
body .owl-dots .owl-dot.active {
  background-color: #b3b3b3;
}

.fixed-floating {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
}
.fixed-floating.top {
  top: 0;
}

.menu-arrow {
  display: inline-table;
  vertical-align: middle;
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.form101 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form101 .container--pd {
  padding: 91px 0 45px 0 !important;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101 .container--pd {
    padding: 73px 0 45px 0 !important;
    max-width: 83% !important;
  }
}
.form101__boxLeft__subtitle {
  max-width: 367px;
  background-color: #b3b3b3;
  color: #7c7c7c;
  min-height: 40px;
  padding: 8px;
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 700;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxLeft__subtitle {
    font-size: 1.125rem;
    max-width: 229px;
  }
}
.form101__boxLeft__title {
  font-size: 2.5rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 700;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxLeft__title {
    font-size: 1.875rem;
    margin-bottom: 17px;
  }
}
.form101__boxLeft__paragraph {
  width: 499px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxLeft__paragraph {
    width: 100%;
  }
}
.form101__boxLeft__paragraph p {
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 400;
  color: #7c7c7c;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxLeft__paragraph p {
    font: 400 0.875rem "Poppins", sans-serif, arial;
  }
}
.form101__boxRight {
  margin-top: 67px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxRight {
    margin-top: 50px;
  }
}
.form101__boxRight__form {
  display: flex;
}
.form101__boxRight__form div {
  padding: 0;
}
.form101__boxRight input {
  height: 42px;
  background: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 0 15px;
}
.form101__boxRight input::-moz-placeholder {
  background-color: #fff !important;
}
.form101__boxRight input::placeholder {
  background-color: #fff !important;
}
.form101__boxRight__cta {
  background-color: #fff;
  color: #404040;
  height: 45px;
  width: 177px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  border: 0;
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 700;
  margin-left: auto;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxRight__cta {
    height: 39px;
    width: 153px;
    margin-top: 18px;
  }
}
.form101__boxRight__cta:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s all ease;
}
.form101__boxRight__cta img {
  width: 25.16px;
  height: 25.16px;
  margin-right: 16.87px;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form101__boxRight__cta img {
    width: 21px;
    height: 21px;
    margin-right: 14.58px;
  }
}
.form101__boxRight__cta:hover img {
  filter: invert(1) grayscale(1);
  transition: 0.5s all ease;
}

.form102 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form102 .container--pd {
  padding: 58px 0 58px 0 !important;
}
@media (max-width: 991.98px) {
  .form102 .container--pd {
    width: 71% !important;
  }
}
@media (max-width: 991.98px) {
  .form102__content {
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
  }
}
.form102__content__subtitle {
  color: #404040;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0;
  max-width: 328px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form102__content__subtitle {
    font-size: 1.563rem;
  }
}
@media (max-width: 991.98px) {
  .form102__content__subtitle {
    max-width: inherit;
  }
}
.form102__content__paragraph {
  width: 499px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form102__content__paragraph {
    width: 100%;
  }
}
.form102__content__paragraph p {
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 400;
  color: #7c7c7c;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form102__content__paragraph p {
    font: 400 0.875rem "Poppins", sans-serif, arial;
  }
}
.form102__content__inputs {
  flex-wrap: wrap;
}
.form102__content .input__item {
  width: 48%;
}
@media (max-width: 991.98px) {
  .form102__content .input__item {
    width: 100%;
    max-width: 100%;
  }
}
.form102__content__form {
  display: flex;
}
@media (max-width: 991.98px) {
  .form102__content__form {
    flex-wrap: wrap;
  }
}
.form102__content__form div {
  padding: 0;
}
.form102__content__form__checkbox-label {
  display: flex;
  align-items: center;
}
.form102__content__form__checkbox-label input:checked {
  background-color: #000 !important;
  border-color: #000;
}
.form102__content__form__checkbox-label a {
  margin-left: 5px;
}
.form102__content .form-check-input {
  height: 14px;
  width: 14px;
  padding: 0;
  margin-bottom: 0;
}
.form102__content input {
  height: 42px;
  background: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 0 15px;
}
.form102__content input::-moz-placeholder {
  background-color: #fff !important;
}
.form102__content input::placeholder {
  background-color: #fff !important;
}
.form102__content__cta {
  margin-left: 109px;
  margin-top: -21px;
  background-color: #fff;
  color: #404040;
  height: 45px;
  width: 100%;
  max-width: 177px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 700;
  transition: 0.5s all ease;
}
@media (max-width: 991.98px) {
  .form102__content__cta {
    margin: 0 auto;
    margin-top: 18px;
    max-width: inherit;
    width: 80%;
  }
}
.form102__content__cta:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s all ease;
}
.form102__content__cta img {
  width: 25.16px;
  height: 25.16px;
  margin-right: 16.87px;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form102__content__cta img {
    width: 21px;
    height: 21px;
    margin-right: 14.58px;
  }
}
.form102__content__cta:hover img {
  filter: invert(1) grayscale(1);
  transition: 0.5s all ease;
}

.form01 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.form01__main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  width: 50%;
}
@media (max-width: 991.98px) {
  .form01__main {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.form01__main__information {
  margin-bottom: 2rem;
}
.form01__main__information__title {
  margin-bottom: 2.5rem;
}
.form01__main__form {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 8px;
}
.form01__main__form .input__item {
  width: calc(50% - 4px);
}
@media (max-width: 991.98px) {
  .form01__main__form .input__item {
    width: 100%;
  }
}
.form01__main__form__footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.form01__main__form__footer__compliance {
  opacity: 0.4;
}
.form01__main__form__footer__compliance__link {
  text-decoration: underline;
}
.form01__main__form__footer__compliance__checkbox[type=checkbox] {
  border: 1px solid #000;
}
.form01__main__form__footer__compliance__checkbox[type=checkbox]:checked {
  accent-color: #404040;
}
.form01__image {
  width: 30%;
  height: auto;
}
@media (max-width: 991.98px) {
  .form01__image {
    width: 100%;
  }
}
.form01__image__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.form02 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.form02 .container--pd {
  padding: 91px 0 45px 0 !important;
}
@media (max-width: 767.98px) {
  .form02 .container--pd {
    padding: 73px 0 45px 0 !important;
    max-width: 83% !important;
  }
}
.form02__content__title {
  font-size: 1.875rem;
  color: #000;
  margin-bottom: 17px;
  font-weight: 700;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form02__content__title {
    font-size: 1.563rem;
  }
}
.form02__content__paragraph {
  max-width: 592px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form02__content__paragraph {
    width: 100%;
  }
}
.form02__content__paragraph p {
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 400;
  color: #404040;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form02__content__paragraph p {
    font: 400 0.875rem "Poppins", sans-serif, arial;
  }
}
.form02__content__form {
  display: flex;
  margin-top: 48px;
}
.form02__content__form div {
  padding: 0;
}
@media (max-width: 767.98px) {
  .form02__content__form div {
    flex-direction: column;
  }
}
.form02__content .input__item {
  width: 32.333333%;
}
@media (max-width: 767.98px) {
  .form02__content .input__item {
    width: 100%;
  }
}
.form02__content label {
  width: auto !important;
}
.form02__content input {
  height: 42px;
  background: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 0 15px;
}
.form02__content input::-moz-placeholder {
  background-color: #fff !important;
}
.form02__content input::placeholder {
  background-color: #fff !important;
}
.form02__content__cta {
  background-color: #fff;
  color: #404040;
  height: 45px;
  width: 177px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  border: 0;
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 700;
  margin-left: auto;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form02__content__cta {
    height: 39px;
    width: 153px;
    margin-top: 18px;
  }
}
.form02__content__cta:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s all ease;
}
.form02__content__cta img {
  width: 25.16px;
  height: 25.16px;
  margin-right: 16.87px;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form02__content__cta img {
    width: 21px;
    height: 21px;
    margin-right: 14.58px;
  }
}
.form02__content__cta:hover img {
  filter: invert(1) grayscale(1);
  transition: 0.5s all ease;
}

.lifo {
  max-width: 1225px;
  width: 100%;
  background-color: #b3b3b3;
  background-position: center;
  background-size: cover;
  padding: 93px;
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .lifo {
    padding: 38px !important;
    padding-bottom: 38px;
  }
}
.lifo .row--container {
  gap: 0 73.48px;
}
.lifo__boxLeft {
  max-width: 443px;
  width: 100%;
}
.lifo__boxLeft__title {
  font-size: 1.875rem;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 700;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .lifo__boxLeft__title {
    font-size: 1.563rem;
    margin-bottom: 17px;
  }
}
.lifo__boxLeft__paragraph {
  width: 499px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .lifo__boxLeft__paragraph {
    width: 100%;
  }
}
.lifo__boxLeft__paragraph p {
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 400;
  color: #7c7c7c;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .lifo__boxLeft__paragraph p {
    font: 400 0.875rem "Poppins", sans-serif, arial;
  }
}
.lifo__boxLeft__form {
  display: flex;
  margin-top: 48px;
  flex-direction: column;
}
.lifo__boxLeft__form .input__item {
  width: 100%;
  padding: 0;
}
.lifo__boxLeft__inputs {
  width: 100%;
}
.lifo__boxLeft label {
  width: auto !important;
}
.lifo__boxLeft input {
  height: 42px;
  background: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 0 15px;
}
.lifo__boxLeft input::-moz-placeholder {
  background-color: #fff !important;
}
.lifo__boxLeft input::placeholder {
  background-color: #fff !important;
}
.lifo__boxLeft__cta {
  background-color: #fff;
  color: #404040;
  height: 45px;
  width: 177px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  border: 0;
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 700;
  margin-left: auto;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .lifo__boxLeft__cta {
    height: 39px;
    width: 153px;
    margin-top: 18px;
  }
}
.lifo__boxLeft__cta:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s all ease;
}
.lifo__boxLeft__cta img {
  width: 25.16px;
  height: 25.16px;
  margin-right: 16.87px;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .lifo__boxLeft__cta img {
    width: 21px;
    height: 21px;
    margin-right: 14.58px;
  }
}
.lifo__boxLeft__cta:hover img {
  filter: invert(1) grayscale(1);
  transition: 0.5s all ease;
}
@media (max-width: 575.98px) {
  .lifo__boxRight {
    display: none;
  }
}
.lifo__boxRight__image {
  height: 592px;
  max-width: 451px;
  width: 100%;
  background: white;
  margin-left: auto;
}
.lifo__boxRight__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lifo .carousel__button.is-close {
  right: 17px;
  top: 17px;
  left: inherit;
  width: 31px;
  height: 31px;
  background: #000000;
  border-radius: 5px;
  color: #fff;
  font-size: 11px;
}
.lifo .fancybox__backdrop {
  background: #404040 !important;
}

.form03 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #efefef;
}
.form03 .container--pd {
  padding: 58px 0 58px 0 !important;
}
@media (max-width: 991.98px) {
  .form03 .container--pd {
    width: 71% !important;
  }
}
.form03__boxLeft {
  width: 100%;
  max-width: 583px;
  padding: 0;
}
@media (max-width: 767.98px) {
  .form03__boxLeft {
    margin-bottom: 52px;
  }
}
.form03__boxLeft__title {
  font-size: 2.5rem;
  color: #404040;
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .form03__boxLeft__title {
    font-size: 1.875rem;
  }
}
.form03__boxLeft__subtitle {
  color: #b3b3b3;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form03__boxLeft__subtitle {
    font-size: 1.125rem;
  }
}
.form03__boxLeft__paragraph {
  margin-top: 18px;
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 400;
  color: #404040;
  letter-spacing: 0.2px;
}
.form03__boxLeft__paragraph p {
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 400;
  color: #404040;
  letter-spacing: 0.2px;
}
@media (max-width: 767.98px) {
  .form03__boxLeft__paragraph p {
    font: 400 0.875rem "Poppins", sans-serif, arial;
  }
}
.form03__boxLeft__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0;
  width: 66%;
}
@media (max-width: 767.98px) {
  .form03__boxLeft__buttons {
    width: 100%;
  }
}
.form03__boxLeft__buttons__cta {
  display: flex;
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
  align-items: center;
  gap: 0 13.45px;
  width: 50%;
}
@media (max-width: 767.98px) {
  .form03__boxLeft__buttons__cta {
    width: 100%;
  }
}
.form03__boxLeft__buttons__cta img {
  width: 25.13px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.form03__boxRight {
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left;
  max-width: 443px;
  width: 100%;
  padding: 0;
}
.form03__boxRight__title {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
  line-height: 46px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .form03__boxRight__title {
    font-size: 1.875rem;
  }
}
.form03__boxRight__paragraph {
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #404040;
  margin-bottom: 45px;
}
@media (max-width: 767.98px) {
  .form03__boxRight__paragraph {
    font-size: 0.938rem;
  }
}
.form03__boxRight__paragraph p {
  font-weight: 400;
  letter-spacing: 0.2px;
  color: #404040;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .form03__boxRight__paragraph p {
    font-size: 0.938rem;
  }
}
.form03__boxRight__inputs {
  flex-wrap: wrap;
}
.form03__boxRight .input__item {
  width: 100%;
}
.form03__boxRight__form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.form03__boxRight__form div {
  padding: 0;
}
.form03__boxRight input {
  height: 42px;
  background: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 0 15px;
}
.form03__boxRight input::-moz-placeholder {
  background-color: #fff !important;
}
.form03__boxRight input::placeholder {
  background-color: #fff !important;
}
.form03__boxRight__cta {
  margin-left: 109px;
  margin-top: -21px;
  background-color: #fff;
  color: #404040;
  height: 45px;
  width: 100%;
  max-width: 177px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  font: 400 1rem "Poppins", sans-serif, arial;
  font-weight: 700;
  transition: 0.5s all ease;
  margin-left: auto;
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .form03__boxRight__cta {
    margin-top: 18px;
    max-width: inherit;
    width: 80%;
    font: 400 0.875rem "Poppins", sans-serif, arial;
  }
}
.form03__boxRight__cta:hover {
  background-color: #000;
  color: #fff;
  transition: 0.5s all ease;
}
.form03__boxRight__cta img {
  width: 25.16px;
  height: 25.16px;
  margin-right: 16.87px;
  transition: 0.5s all ease;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .form03__boxRight__cta img {
    width: 21px;
    height: 21px;
    margin-right: 14.58px;
  }
}
.form03__boxRight__cta:hover img {
  filter: invert(1) grayscale(1);
  transition: 0.5s all ease;
}

.form__file input {
  display: none;
}

.jq-toast-wrap {
  width: 330px;
}

.jq-toast-single {
  font-family: "Poppins", sans-serif, arial;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
}

.jq-toast-single h2 {
  font-family: "Red Hat Display", serif, arial;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.close-jq-toast-single {
  top: 7px;
  right: 7px;
  font-size: 29px;
}

.form-placeholder {
  position: relative;
}
.form-placeholder .placeholder--custom {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: block;
  padding-left: 15px;
  transform: translate(0, -50%);
  transition: ease all 0.3s;
}
.form-placeholder.select .placeholder--custom {
  opacity: 0;
  visibility: hidden;
}
.form-placeholder.select.focusing .placeholder--custom {
  opacity: 1;
  visibility: visible;
}
.form-placeholder.select.focusing > select {
  padding-top: 10px;
  padding-bottom: 0;
}
.form-placeholder > select {
  transition: ease all 0.3s;
  background-color: #fff !important;
  height: 40px;
}
.form-placeholder > input {
  transition: ease all 0.3s;
  background-color: transparent !important;
  height: 40px;
  position: relative;
  z-index: 2;
}
.form-placeholder.focusing .placeholder--custom {
  font-size: 12px;
  color: #777777;
  top: 0;
  transform: translate(0);
  transition: ease all 0.3s;
}
.form-placeholder.focusing > input {
  padding-top: 18px;
  height: 40px;
  transition: ease all 0.3s;
}

.confirmation-page {
  position: relative;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  display: flex !important;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.confirmation-page__title {
  padding-bottom: 0;
  text-align: center;
}
.confirmation-page__title::after {
  left: 50%;
  translate: -50% 0;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #7c7c7c;
  position: relative;
  margin-top: 1.25rem;
  display: block;
}
.confirmation-page__paragraph {
  text-align: center;
  margin-top: 1.5rem;
  padding-left: 5vw;
  padding-right: 5vw;
}
.confirmation-page svg {
  width: 100%;
}

.blur-5 {
  filter: blur(5px);
}

.animation {
  opacity: 0;
}

.animated {
  opacity: 1;
  animation-duration: 0.8s !important;
}
.animated.blur-5 {
  filter: blur(0px);
}
.animated.fadeIn {
  animation: fadeIn;
}
.animated.fadeInUp {
  animation: fadeInUp;
}
.animated.fadeInDown {
  animation: fadeInDown;
}
.animated.fadeInRight {
  animation: fadeInRight;
}
.animated.fadeInLeft {
  animation: fadeInLeft;
}

.hover-image-box {
  overflow: hidden;
}
.hover-image-box__target {
  transition: all 0.4s ease;
}
.hover-image-box:hover .hover-image-box__target {
  scale: 1.1;
  transition: all 0.4s ease;
}

.head02 {
  width: 100%;
  padding-right: 5vw;
  padding-left: 5vw;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.head02__flutuante {
  position: fixed;
  bottom: 6.5rem;
  right: 1.5rem;
  border: inherit;
  border-radius: 50%;
  padding: 0.625rem;
  z-index: 99999;
}
.head02__flutuante:hover {
  background-color: #7844f5;
  transition: all ease 0.3s;
}
.head02__flutuante__item__icon {
  -o-object-fit: contain;
     object-fit: contain;
  width: 2rem;
  height: 2rem;
}
.head02__flutuante__item__icon:hover {
  filter: brightness(0) saturate(100%) invert(88%) sepia(69%) saturate(7431%) hue-rotate(192deg) brightness(140%) contrast(100%);
}
.head02__left {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: end;
  gap: 3.1875rem;
  padding-top: 2.4375rem;
}
@media (max-width: 1199.98px) {
  .head02__left {
    padding-top: 1.8125rem;
  }
}
.head02__logo {
  position: relative;
  width: 11.3125rem;
  /* = 200px */
  height: auto;
  aspect-ratio: 181/59;
}
@media (max-width: 1199.98px) {
  .head02__logo {
    width: 7.875rem;
  }
}
.head02__logo__img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.head02__navigation {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  list-style: none;
  gap: 0;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e0dde6;
  overflow: hidden;
  border-radius: 100dvw;
}
.head02__navigation__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* Estilização do menu-dropdown */
}
@media (max-width: 1199.98px) {
  .head02__navigation__item {
    display: none;
  }
}
.head02__navigation__item__link, .head02__right__links__item__cta, .head02__right__links__item__link, .head02__navigation__item__btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100dvw;
  font: 500 1rem "Red Hat Display", serif, arial;
  color: #000;
  text-align: center;
  text-decoration: none;
  padding: 0 1.725rem;
  height: 3.125rem;
}
.head02__navigation__item__link:is(.active, :hover), .head02__right__links__item__cta:is(.active, :hover), .head02__right__links__item__link:is(.active, :hover), .head02__navigation__item__btn:is(.active, :hover) {
  background-color: #d1cddb;
}
.head02__navigation__item__content {
  padding: 0.5rem;
  top: 60%;
  left: 0;
}
.head02__navigation__item__content__item {
  width: 100%;
}
.head02__right {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  gap: 0.6875rem;
  /* Modificador dos idiomas */
}
@media (max-width: 1199.98px) {
  .head02__right {
    flex-direction: row;
    align-items: center;
    padding-top: 1.8125rem;
    gap: 1rem;
  }
}
.head02__right__languages {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0.875rem;
}
.head02__right__languages__item {
  height: 1rem;
  width: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
.head02__right__languages__item:not(.active) {
  opacity: 0.5;
}
.head02__right__languages__item:hover {
  transform: scale(1.5);
}
.head02__right__languages__item__icon {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.head02__right__links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
.head02__right__links__item {
  /* Modificador do menu mobile */
}
.head02__right__links__item__link {
  padding: 0 1.3125rem;
  background-color: transparent;
  position: relative;
  margin-right: 1rem;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  transition: all ease 0.3s;
}
.head02__right__links__item__link:is(.active, :hover) {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
}
.head02__right__links__item__link::after {
  content: "";
  background-color: #000;
  opacity: 0.4;
  height: 13px;
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 1199.98px) {
  .head02__right__links__item__link {
    display: none;
  }
}
.head02__right__links__item__cta {
  padding: 0 1.3125rem;
  background-color: #e0dde6;
}
@media (max-width: 1199.98px) {
  .head02__right__links__item__cta {
    display: none;
  }
}
.head02__right__links__item--menu-mobile {
  display: none;
  position: relative;
}
@media (max-width: 1199.98px) {
  .head02__right__links__item--menu-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
/* BEGIN STYLE */
.side02, .side02--btt, .side02--rtl, .side02--ttb {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 10;
  overflow: auto;
  padding-top: 2.5rem;
  padding-bottom: 4.3125rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background-color: #212121;
  list-style: none;
  transform: translate(-100%, 0); /* O default de animaçào da abertura é da esquerda para a direita */
  transition: transform ease 0.6s;
  /* ANIMAÇÕES DE ABERTURA */
  /* top to bottom - de cima para baixo*/
  /*right to left - de esquerda para direita*/
  /* bottom to top - de baixo para cima */
}
.side02::-webkit-scrollbar, .side02--btt::-webkit-scrollbar, .side02--rtl::-webkit-scrollbar, .side02--ttb::-webkit-scrollbar {
  width: 8px;
  height: 10px;
  background: rgba(64, 64, 64, 0.5);
}
.side02::-webkit-scrollbar-thumb, .side02--btt::-webkit-scrollbar-thumb, .side02--rtl::-webkit-scrollbar-thumb, .side02--ttb::-webkit-scrollbar-thumb {
  background: rgba(64, 64, 64, 0.8);
}
.side02::-webkit-scrollbar-thumb:hover, .side02--btt::-webkit-scrollbar-thumb:hover, .side02--rtl::-webkit-scrollbar-thumb:hover, .side02--ttb::-webkit-scrollbar-thumb:hover {
  background: #404040;
}
.side02.open, .open.side02--btt, .open.side02--rtl, .open.side02--ttb {
  left: 0;
  transform: translate(0, 0);
  transition: transform ease 0.6s;
}
.side02--ttb {
  transform: translate(0, -100%);
}
.side02--rtl {
  transform: translate(100%, 0);
}
.side02--btt {
  transform: translate(0, 100%);
}
.side02__header {
  width: 100%;
  margin-bottom: 3.5625rem;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
.side02__navigation {
  width: 100%;
  margin-bottom: 5.4375rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.side02__navigation__item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.side02__navigation__item__link, .side02__navigation__item__btn {
  width: 100%;
  font: 700 2.4375rem "Red Hat Display", serif, arial;
  color: #fff;
  line-height: normal;
  text-align: center;
}
.side02__navigation__item__content {
  left: 50%;
  transform: translate(-50%, 0) !important; /*Uso do !important para resetar os valores padrões do .quedinha__content, pois este possui 4 níveis de especificidade*/
}
.side02__navigation__item__content--sub-menu {
  top: 100% !important;
  left: 0 !important;
  right: unset !important;
  /* Uso do important para resetar os valores de estilos que são inseridos via JS pelo plugin*/
}
.side02__socials {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.3125rem;
  margin-bottom: 5.8125rem;
}
.side02__socials__item {
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1/1;
}
.side02__socials__item__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.side02__cta--agendar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font: 600 1rem "Red Hat Display", serif, arial;
}
.side02__cta-group {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2.375rem;
}

.foot02 {
  background-color: #000;
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
}
.foot02__parallax, .foot02__parallax--left, .foot02__parallax--right {
  position: absolute;
  height: auto;
  width: 13.625rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  filter: blur(8px);
}
.foot02__parallax--right {
  right: -5rem;
  top: 20rem;
}
@media (max-width: 575.98px) {
  .foot02__parallax--right {
    right: -2rem;
    top: 26.5rem;
    width: 6.875rem;
  }
}
.foot02__parallax--left {
  left: -6.5rem;
  top: 27.9375rem;
  width: 17.6875rem;
}
@media (max-width: 575.98px) {
  .foot02__parallax--left {
    left: -2.5rem;
    top: 59.375rem;
    width: 6.875rem;
  }
}
.foot02__navigation {
  position: relative;
  z-index: 1;
  padding-top: 2.4375rem;
  padding-bottom: 2.3125rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .foot02__navigation {
    flex-direction: column;
    justify-content: start;
    gap: 3.1875rem;
    padding-top: 3.75rem;
    padding-bottom: 4.5625rem;
  }
}
.foot02__navigation__left {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 2.1875rem;
  margin-right: 2rem;
}
@media (max-width: 991.98px) {
  .foot02__navigation__left {
    width: 100%;
    margin-bottom: 2rem;
    margin-right: unset;
    flex-direction: column;
  }
}
.foot02__navigation__left__logo {
  width: 4.0625rem;
  height: auto;
  aspect-ratio: 1/1;
}
.foot02__navigation__left__logo__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.foot02__navigation__left__languages {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
@media (max-width: 991.98px) {
  .foot02__navigation__left__languages {
    justify-content: center;
  }
}
.foot02__navigation__left__languages__item {
  font: 500 0.8125rem "Red Hat Display", serif, arial;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 0 1rem;
  opacity: 0.7;
}
.foot02__navigation__left__languages__item:first-of-type {
  padding-left: 0;
}
.foot02__navigation__left__languages__item:last-of-type {
  padding-right: 0;
}
.foot02__navigation__left__languages__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 22px;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.foot02__navigation__right {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 991.98px) {
  .foot02__navigation__right {
    justify-content: start;
    flex-direction: column;
  }
}
.foot02__navigation__right__item, .foot02__navigation__right__item--bdr {
  font: 500 0.8125rem "Red Hat Display", serif, arial;
  color: #fff;
  text-align: center;
  position: relative;
  opacity: 0.7;
}
.foot02__navigation__right__item--bdr {
  padding: 0 1.25rem;
  border: solid 1px #fff;
  border-radius: 100dvw;
  height: 2.1875rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.foot02__socials {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.foot02__socials__item, .foot02__socials__item--bf {
  position: relative;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1/1;
}
.foot02__socials__item__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.foot02__socials__item--bf::before {
  content: "";
  height: 1px;
  width: 100dvw;
  background-color: #fff;
  opacity: 0.2;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.foot02__cta {
  padding-top: 6.875rem;
  padding-bottom: 7.9375rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .foot02__cta {
    padding-top: 5.875rem;
    padding-bottom: 2.375rem;
  }
}
.foot02__cta__link {
  display: block;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  text-align: center;
  font: 700 5.5625rem "Red Hat Display", serif, arial;
  line-height: 96.629%;
  letter-spacing: -1px;
  position: relative;
}
@media (max-width: 991.98px) {
  .foot02__cta__link {
    font-size: 3.4375rem;
  }
}
.foot02__cta__link__icon {
  position: absolute;
  left: 93%;
  top: 0;
  width: 5.3125rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 991.98px) {
  .foot02__cta__link__icon {
    width: 3rem;
    left: 91%;
  }
}
.foot02__acting {
  padding-top: 0;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
  flex-wrap: wrap;
  list-style: none;
}
@media (max-width: 991.98px) {
  .foot02__acting {
    padding-bottom: 5.25rem;
  }
}

/* BEGIN STYLE */
.cota02__topics {
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 30px;
}
.cota02__topics__item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 1.375rem;
  width: -moz-fit-content;
  width: fit-content;
}
.cota02__topics__item__icon {
  width: 3.25rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.cota02__topics__item__title {
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 2.1875rem "Red Hat Display", serif, arial;
  line-height: 110%;
  letter-spacing: -1px;
}
.cota02__topics__item__paragraph {
  color: #EFF0F7;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  opacity: 0.7;
  width: 100%;
  max-width: 190px;
}
.cota02__form {
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  gap: 0 1.5rem;
  position: relative;
}
.cota02__form__header {
  width: 100%;
  margin-bottom: 2.0625rem;
}
.cota02__form__header__title {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font: 700 3.75rem "Red Hat Display", serif, arial;
  line-height: 110%;
  letter-spacing: -1px;
}
@media (max-width: 991.98px) {
  .cota02__form__header__title {
    font-size: 3.35rem;
  }
}
.cota02__form__header__paragraph {
  color: #2C2C2C;
  font-feature-settings: "liga" off, "clig" off;
  font: 400 0.875rem "Poppins", sans-serif, arial;
  width: 100%;
  max-width: 633px;
  opacity: 0.7;
}
.cota02__form .input__item {
  width: calc(50% - 0.75rem);
  background-color: #E6E6E6;
  border-radius: 30px;
  margin-bottom: 0.75rem;
  padding: 0.625rem 0;
}
@media (max-width: 991.98px) {
  .cota02__form .input__item {
    width: 100%;
  }
}
.cota02__form .input__item input {
  border: none;
}
.cota02__form .input__item textarea {
  background-color: #E6E6E6;
  border: none;
  border-radius: 30px;
}
.cota02__form .input__item select {
  background-color: #E6E6E6 !important;
  border: none;
  border-radius: 30px;
}
.cota02__form .input__item--textarea {
  width: 100%;
}
.cota02__form .input__item--textarea .form-control {
  padding-top: 1.5rem;
}
.cota02__form__footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 4.125rem;
}
.cota02__form__footer__compliance {
  display: inline;
  color: #9B51E0;
}
.cota02__form__footer__compliance__link {
  color: #9B51E0;
  text-decoration: underline;
}
.cota02__form__footer__compliance__checkbox[type=checkbox] {
  border: 1px solid #000;
}
.cota02__form__footer__compliance__checkbox[type=checkbox]:checked {
  accent-color: #b3b3b3;
}
.cota02__form__footer__cta {
  padding: 0 5rem;
}
@media (max-width: 991.98px) {
  .cota02__form__footer__cta {
    font-size: 0.875rem;
    margin: 0 0 0 auto;
  }
}
.cota02__form__parallax {
  position: absolute;
  height: auto;
  width: 14.5125rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  z-index: 1;
  right: -0.75rem;
  top: 7rem;
}
@media (max-width: 767.98px) {
  .cota02__form__parallax {
    right: 0rem;
    width: 7.688rem;
  }
}

/* BEGIN STYLE */
.comp01-page__banner {
  background-color: rgba(239, 239, 239, 0.35);
}
.comp01-page__content {
  padding-left: 10vw;
}
.comp01-page__content__header {
  margin-bottom: 3.5rem;
}
.comp01-page__content__header__title {
  text-align: left;
  margin-bottom: 0;
}
.comp01-page__content__archives {
  margin-top: 3rem;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.comp01-page__content__archives__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  border: solid 1px #7c7c7c;
  border-radius: 1rem 0 1rem 0;
  transition: all 0.3s ease;
  color: #7c7c7c;
}
.comp01-page__content__archives__item:hover {
  background-color: #7c7c7c;
  border-color: #7c7c7c;
  color: #fff;
}
.comp01-page__content__archives__item:hover svg path {
  fill: #fff;
  border-color: #fff;
}
.comp01-page__content__archives__item svg {
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}
