/**
 * Arquivo base do SCSS
 * @version 1.1.0
 */
/* ============= BASE ============= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
}

button,
input,
optgroup,
select,
textarea, html input[type=button],
input[type=reset],
input[type=submit], button[disabled],
html input[disabled], button::-moz-focus-inner,
input::-moz-focus-inner, input[type=checkbox],
input[type=radio], input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button, input[type=search], input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
}

a {
  text-decoration: none;
}

html {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}

html,
body {
  width: 100%;
  font-family: "Barlow", sans-serif;
  color: #000000;
}

body {
  font-size: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  color: #000000;
  font-size: 4rem;
}

.text--condensed {
  font-family: "Barlow Semi Condensed", sans-serif;
}
.text--14 {
  font-size: 1.4rem;
}
.text--15 {
  font-size: 1.5rem;
}
.text--16 {
  font-size: 1.6rem;
}
.text--18 {
  font-size: 1.8rem;
}
.text--24 {
  font-size: 2.4rem;
}
.text--28 {
  font-size: 2.6rem;
}
.text--32 {
  font-size: 3.2rem;
}
.text--37 {
  font-size: 3.7rem;
}
.text--44 {
  font-size: 4.4rem;
}
.text--85 {
  font-size: 8.5rem;
}
.text--orange {
  color: #f58220;
}
.text--ice-white {
  color: #fdf9f5;
}
.text--dark-grey {
  color: #231f20;
}
.text--medium-grey {
  color: #58595b;
}
.text--light-grey {
  color: rgba(255, 255, 255, 0.6);
}
.text--white {
  color: #fff;
}
.text--700 {
  font-weight: 700;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

/* ============= FONTS ============ */
/* ============= KEYFRAMES ============ */
@keyframes moveArrow {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(3px, -3px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes deen {
  0% {
    stroke-dashoffset: 800;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 2px #f58220;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  50% {
    box-shadow: 0 0 0 1px rgba(245, 130, 32, 0.66);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
  85% {
    box-shadow: 0 0 0 0.5px rgba(245, 130, 32, 0.33);
    transform: translate(-50%, -50%) scale(2);
  }
  100% {
    box-shadow: 0 0 0 0.25px rgba(245, 130, 32, 0);
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* =========== SECTIONS =========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1.6rem 3.2rem;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0.6) 0%, rgba(35, 31, 32, 0) 100%);
  transition: 0.5s all ease;
  text-transform: uppercase;
}
.header__left {
  height: 2.8rem;
  width: 18.4rem;
}
.header__left__logos {
  position: relative;
}
.header__left__logos img {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s all ease;
}
.header__left__logos .logo-000 {
  opacity: 0;
  pointer-events: none;
}
.header__left__logos .logo-000,
.header__left__logos .logo-fff {
  transition: 0.3s all ease;
}
.header__center {
  flex: 1;
}
.header__center p,
.header__center a {
  transition: 0.3s all ease;
}
.header__center__list {
  padding: 0 9rem;
  justify-content: space-between;
  height: 100%;
}
.header__center__areas {
  cursor: pointer;
  gap: 1.6rem;
}
.header__center__more {
  cursor: pointer;
  gap: 1.6rem;
  border-radius: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1.6rem;
  transition: 0.3s all ease;
}
.header__right__language {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 200px;
  border: 1px solid #f58220;
  padding: 0 1.6rem;
  height: 4rem;
  cursor: pointer;
  transition: 0.3s all ease;
}
.header__right__language svg {
  transition: 0.3s all ease;
}
.header__right__language:hover, .header__right__language.active {
  background: #f58220;
}
.header__right__language:hover p, .header__right__language.active p {
  color: #fff !important;
}
.header__right__language:hover svg path, .header__right__language.active svg path {
  fill: #fff !important;
}
.header__right__language.active .button__arrow {
  transform: rotate(180deg);
}
.header.version-2 {
  background: rgba(35, 31, 32, 0.1);
}
.header.version-2 .header__left__logos .logo-000 {
  opacity: 1;
  pointer-events: all;
}
.header.version-2 .header__left__logos .logo-fff {
  opacity: 0;
  pointer-events: none;
}
.header.version-2 .header__center p,
.header.version-2 .header__center a {
  color: #231f20;
}
.header.version-2 .header__center__more {
  border-color: rgba(35, 31, 32, 0.1);
}
.header.version-2 .header__center__more svg path {
  fill: #231f20;
}
.header.version-2 .header__right .button svg path {
  fill: #231f20;
}
.header.version-2 .header__right .button__text {
  color: #231f20;
}
.header.version-2 .header__right .button__arrow path {
  fill: #231f20;
}
.header.version-2 .header__right__language:hover {
  background: #f58220;
}
.header.version-2 .header__right__language:hover .button__text {
  color: #fff;
}
.header.version-2 .header__right__language:hover .button__arrow path {
  fill: #fff;
}
.header.version-2 .item-hover svg rect {
  fill: rgba(35, 31, 32, 0.3);
}
.header.version-2 .item-hover svg path {
  fill: #231f20;
}
.header.version-2.logo-white {
  background: transparent;
}
.header.version-2.logo-white .header__left__logos .logo-000 {
  opacity: 0;
  pointer-events: none;
}
.header.version-2.logo-white .header__left__logos .logo-fff {
  opacity: 1;
  pointer-events: all;
}
.header.version-2:hover .select-dropdown__button {
  background: rgba(245, 130, 32, 0.5);
}
.header.going-down {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.header.going-down.logo-white {
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}
.header.going-up {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.header.no-bg {
  background: transparent;
}
.header .header-mobile {
  display: none;
}
.header .item-hover {
  padding: 0 1.6rem;
  height: 4rem;
  border-radius: 200px;
  display: flex;
  align-items: center;
  transition: 0.3s all ease;
}
.header .item-hover svg {
  transition: 0.3s all ease;
}
.header .item-hover:hover {
  background: rgba(255, 255, 255, 0.2);
}
.header .item-hover.active {
  background: rgba(35, 31, 32, 0.1);
}
.header .item-hover.active.with-arrow svg {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .header {
    padding: 0 0 1rem 0;
  }
  .header__left, .header__center, .header__right {
    display: none;
  }
  .header .header-mobile {
    display: flex !important;
    width: 100%;
    gap: 1.6rem;
    padding: 5.6rem 3.2rem 0 3.2rem;
  }
  .header .header-mobile__upper__image img {
    position: relative;
    z-index: 2;
  }
  .header .header-mobile__upper__image img.logo-fff {
    display: black;
  }
  .header .header-mobile__upper__image img.logo-000 {
    display: none;
  }
  .header .header-mobile__upper__language {
    padding: 0.8rem;
    gap: 0.8rem;
    border-radius: 20rem;
    border: 1px solid #f58220;
    position: relative;
    z-index: 2;
  }
  .header .header-mobile__upper__language .mobile-header-globe {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.3rem 0.1rem;
    gap: 0.8rem;
    border-radius: 20rem;
    background: #f58220;
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
  }
  .header .header-mobile__upper__menu {
    padding: 0.8rem;
    gap: 0.8rem;
    border-radius: 20rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
  }
  .header .header-mobile__upper__menu .mobile-menu {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0.3rem 0.1rem;
    gap: 0.8rem;
    border-radius: 20rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
  }
  .header .header-mobile__areas {
    height: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
  }
  .header .header-mobile__areas__arrow {
    padding: 0.3rem 0.1rem;
    display: flex;
    width: 2rem;
    height: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    border-radius: 20rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
  }
  .header .header-mobile__areas__arrow svg {
    height: 1.2rem;
    width: 1.2rem;
  }
  .header .header-mobile__menu-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 3.2rem;
    background: #fff;
    padding-top: 20rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s all ease;
  }
  .header .header-mobile__menu-items ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .header .header-mobile__menu-items ul li a {
    text-transform: uppercase;
    display: flex;
    align-items: center;
  }
  .header .header-mobile__menu-items ul li a svg {
    margin-left: auto;
  }
  .header .header-mobile__menu-items.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header .header-mobile.opened .header-mobile__upper__image .logo-fff {
    display: none;
  }
  .header .header-mobile.opened .header-mobile__upper__image .logo-000 {
    display: block;
  }
  .header .header-mobile.opened .header-mobile__upper__language .arrow-down path {
    fill: #231f20;
  }
  .header .header-mobile.opened .header-mobile__upper__menu {
    border-color: #231f20;
  }
  .header .header-mobile.opened .header-mobile__upper__menu .mobile-menu svg path {
    stroke: #231f20;
  }
  .header .header-mobile.opened .header-mobile__areas {
    border-color: #231f20;
  }
  .header .header-mobile.opened .header-mobile__areas p {
    color: #231f20;
  }
  .header .header-mobile.opened .header-mobile__areas__arrow svg path {
    fill: #231f20;
  }
  .header .header-mobile .open-mobile-layer .arrow-down {
    transition: 0.3s all ease;
  }
  .header .header-mobile .open-mobile-layer .menu-closed {
    display: block;
  }
  .header .header-mobile .open-mobile-layer .menu-open {
    display: none;
  }
  .header .header-mobile .open-mobile-layer.active .arrow-down {
    transform: rotate(180deg);
  }
  .header .header-mobile .open-mobile-layer.active .menu-closed {
    display: none;
  }
  .header .header-mobile .open-mobile-layer.active .menu-open {
    display: block;
  }
  .header.version-2 .header-mobile__upper__image .logo-fff {
    display: none;
  }
  .header.version-2 .header-mobile__upper__image .logo-000 {
    display: block;
  }
  .header.version-2 .header-mobile__upper__language .arrow-down path {
    fill: #231f20;
  }
  .header.version-2 .header-mobile__upper__menu {
    border-color: #231f20;
  }
  .header.version-2 .header-mobile__upper__menu .mobile-menu svg path {
    stroke: #231f20;
  }
  .header.version-2 .header-mobile__areas {
    border-color: #231f20;
  }
  .header.version-2 .header-mobile__areas p {
    color: #231f20;
  }
  .header.version-2 .header-mobile__areas__arrow svg path {
    fill: #231f20;
  }
}
.footer {
  padding-top: 7.2rem;
  width: 100%;
  background: #231f20;
  position: relative;
}
.footer .footer-logo-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.footer__accessibility {
  position: fixed;
  bottom: 0.6rem;
  right: 0.6rem;
  z-index: 999999;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-radius: 200px;
}
.footer__accessibility__button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  background: #f58220;
  -webkit-backdrop-filter: blur(0.75rem);
          backdrop-filter: blur(0.75rem);
  padding: 0.5rem 0.3rem;
  gap: 0.8rem;
  position: relative;
  z-index: 9999999;
}
.footer__accessibility__button svg {
  width: 2.4rem;
  height: 2.4rem;
}
.footer__accessibility__menu {
  border-radius: 200px;
  background: #f58220;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  height: 48px;
  color: #fff;
  white-space: nowrap;
  transform: translateX(100%);
  opacity: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}
.footer__accessibility__menu button {
  cursor: pointer;
}
.footer__accessibility__menu.active {
  opacity: 1;
  transform: translateX(0);
}
.footer__accessibility__menu .contrast {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem 0 1.6rem;
  font-family: "Barlow Semi Condensed";
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.footer__accessibility__menu .contrast .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.footer__accessibility__menu .contrast .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.footer__accessibility__menu .contrast .switch .slider {
  border-radius: 34px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #231f20;
  transition: 0.4s;
}
.footer__accessibility__menu .contrast .switch .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.footer__accessibility__menu .contrast .switch input:checked + .slider {
  background-color: #f58220;
}
.footer__accessibility__menu .contrast .switch input:focus + .slider {
  box-shadow: 0 0 1px #f58220;
}
.footer__accessibility__menu .contrast .switch input:checked + .slider::before {
  transform: translateX(16px);
}
.footer__accessibility__menu .font {
  font-family: "Barlow Semi Condensed";
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__accessibility__menu .font__button {
  border-radius: 50%;
  background: #231f20;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.footer__accessibility__menu .font__button svg {
  width: 12px;
  min-width: 12px;
  height: 12px;
}
.footer__accessibility__menu .font__button.reset {
  background: var(--branco-20, rgba(255, 255, 255, 0.2));
}
.footer__accessibility__menu .avatar {
  width: 24px;
  min-width: 24px;
  margin: 0 1.6rem 0 0;
}
.footer__title {
  padding-bottom: 3.2rem;
  margin-bottom: 3.2rem;
  position: relative;
  transition: 0.5s all ease;
  cursor: pointer;
}
.footer__title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__title:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22%;
  content: "";
  height: 1px;
  border-top: 1px solid #f58220;
  transition: width 1s ease;
}
.footer__title:hover {
  letter-spacing: 0.5px;
}
.footer__title:hover::before {
  width: 100%;
}
.footer__upper {
  padding: 7.2rem 4.8rem 0 4.8rem;
  gap: 7.2rem;
}
.footer__upper__container {
  width: 75%;
}
.footer__upper .upper__left {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  width: 100%;
}
.footer__upper .upper__left__list {
  gap: 2.4rem;
}
.footer__upper .upper__left__item {
  transition: 0.3s all ease;
}
.footer__upper .upper__left__item:hover {
  color: #f58220;
}
.footer__upper .upper__left__category {
  padding-bottom: 1.6rem;
  margin-bottom: 2.4rem;
  transition: 1s all ease;
  position: relative;
}
.footer__upper .upper__left__category svg {
  transition: transform 0.3s ease-in-out;
}
.footer__upper .upper__left__category:before {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__upper .upper__left__category:after {
  height: 1px;
  width: 0%;
  background: #f58220;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 1s ease;
}
.footer__upper .upper__left__category:hover svg {
  animation: moveArrow 1s ease-in-out forwards infinite;
}
.footer__upper .upper__left__category:hover:after {
  width: 100%;
}
.footer__upper .upper__right {
  width: 25%;
  gap: 2.4rem;
  text-transform: uppercase;
}
.footer__upper .upper__right__item {
  transition: 0.3s all ease;
  padding-bottom: 1.6rem;
  position: relative;
}
.footer__upper .upper__right__item svg {
  transition: transform 0.3s ease-in-out;
}
.footer__upper .upper__right__item:before {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__upper .upper__right__item:after {
  height: 1px;
  width: 0%;
  background: #f58220;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 1s ease;
}
.footer__upper .upper__right__item:hover svg {
  animation: moveArrow 1s ease-in-out forwards infinite;
}
.footer__upper .upper__right__item:hover::after {
  width: 100%;
}
.footer__lower {
  padding: 4.8rem 4.8rem 1.6rem 4.8rem;
}
.footer__lower__line {
  width: 30%;
  background: rgba(255, 255, 255, 0.2);
  height: 1px;
}
.footer__lower__wrapper .ethics {
  transition: 0.3s all ease;
}
.footer__lower__wrapper .ethics:hover {
  color: #f58220;
}
.footer__lower__social {
  gap: 1.6rem;
}
.footer__lower__social .social-media {
  width: 4.8rem;
  height: 4.8rem;
  padding: 0.5rem 0.3rem;
  gap: 0.8rem;
  border-radius: 20rem;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(0.75rem);
          backdrop-filter: blur(0.75rem);
  transition: 0.3s all ease;
}
.footer__lower__social .social-media:hover.facebook {
  background-color: #3b5998;
}
.footer__lower__social .social-media:hover.youtube {
  background-color: #ff0000;
}
.footer__lower__social .social-media:hover.instagram {
  background-color: #e4405f;
}
.footer__lower__social .social-media:hover.linkedin {
  background-color: #0077b5;
}
.footer__lower__details {
  margin-top: 1.6rem;
}
.footer__lower__details .details__gptw img {
  max-width: 21vh !important;
}
.footer__lower__details .details__contact__number, .footer__lower__details .details__ombudsman__number, .footer__lower__details .details__ethics__number {
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.footer__lower__details .details__contact__number svg, .footer__lower__details .details__ombudsman__number svg, .footer__lower__details .details__ethics__number svg {
  transition: 0.5s all ease;
}
.footer__lower__details .details__contact:hover svg, .footer__lower__details .details__ombudsman:hover svg, .footer__lower__details .details__ethics:hover svg {
  animation: shake 0.5s ease forwards;
}
.footer__branding {
  position: relative;
  height: 36rem;
  overflow: hidden;
}
.footer__branding .layer-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.footer__branding .layer-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.footer__branding .layer-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  transition: 1s all ease;
}
.footer__branding .layer-3 {
  transition: transform 1s ease;
  transform: scale(1);
}
.footer__branding img {
  width: 100%;
}
.footer__branding .a_deen {
  position: absolute;
  top: 5vh;
  right: 5rem;
  width: 40px;
  display: flex;
  justify-content: flex-end;
  z-index: 5;
}
.footer__branding .a_deen svg {
  width: 40px;
  height: 15px;
}
.footer__branding .a_deen svg path {
  stroke-dasharray: 800;
  transition: all 2s cubic-bezier(0.47, 0, 0.745, 0.715);
  stroke: #000;
}
.footer__branding .a_deen svg:hover path {
  animation-name: deen;
  animation-timing-function: linear;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
.footer__branding:hover .layer-3 {
  transform: scale(1.05);
}
.footer .footer-mobile {
  display: none;
}

@media (max-width: 900px) {
  .footer__upper, .footer__lower, .footer__branding {
    display: none;
  }
  .footer-mobile {
    display: flex !important;
    gap: 2.4rem;
    text-transform: uppercase;
  }
  .footer-mobile__links {
    width: 100%;
    gap: 2.4rem;
    padding: 0 2.4rem;
  }
  .footer-mobile__links__element {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer-mobile__social {
    gap: 2.4rem;
    width: 100%;
    margin: 2.4rem 0;
    padding: 0 2.4rem;
  }
  .footer-mobile__social__platforms, .footer-mobile__social__ethics {
    gap: 2.4rem;
  }
  .footer-mobile__social__line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
  }
  .footer-mobile__contacts {
    padding: 2.4rem 0;
    gap: 2.4rem;
  }
  .footer-mobile__contacts .contact-wrapper {
    gap: 1.6rem;
    margin: 2.4rem 0;
  }
  .footer-mobile__image {
    width: 100%;
  }
  .footer-mobile__image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer-mobile .a_deen {
    width: 40px;
    display: flex;
    justify-content: flex-end;
    z-index: 5;
  }
  .footer-mobile .a_deen svg {
    width: 40px;
    height: 15px;
  }
  .footer-mobile .a_deen svg path {
    stroke-dasharray: 800;
    transition: all 2s cubic-bezier(0.47, 0, 0.745, 0.715);
    stroke: rgba(255, 255, 255, 0.6);
  }
  .footer-mobile .a_deen svg:hover path {
    animation-name: deen;
    animation-timing-function: linear;
    animation-duration: 5s;
    animation-fill-mode: forwards;
  }
}
.error {
  color: red;
}

.loader-send {
  z-index: 9999;
  font-size: 16px;
  margin-left: 10px;
  display: inline-block;
  position: relative;
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
}

.loader-send .dots::after {
  content: "";
  display: inline-block;
  width: 1em;
  text-align: left;
  animation: dots 1s steps(4, end) infinite;
}

@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
  100% {
    content: "";
  }
}
.unities-modal__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.unities-modal__container.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.unities-modal__container.show .unities-modal__content {
  opacity: 1;
  transform: translateY(0);
}
.unities-modal__content {
  width: 100%;
  max-width: 925px;
  background-color: #fff;
  border-radius: 12px;
  max-height: 95vh;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
.unities-modal__content__left {
  overflow: hidden;
  width: 50%;
}
.unities-modal__content__left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.unities-modal__content__right {
  position: relative;
  width: 50%;
  overflow-y: auto;
  background-color: #231f20;
  padding: 4.2rem 5.6rem;
}
.unities-modal__content__right__close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  cursor: pointer;
}
.unities-modal__content__right__title {
  margin-bottom: 2rem;
}
.unities-modal__content__right__title p {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.unities-modal__content__right__title h2 {
  color: #fdf9f5 !important;
  font-size: 2.7rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 3.54rem !important; /* 131.111% */
  letter-spacing: -0.27px !important;
  margin-top: 1rem !important;
}
.unities-modal__content__right__title h2 span {
  color: #fdf9f5 !important;
  font-size: 2.7rem !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 3.54rem !important; /* 131.111% */
  letter-spacing: -0.27px !important;
  margin-top: 1rem !important;
}
.unities-modal__content__right__form {
  width: 100%;
}

@media (max-width: 900px) {
  .unities-modal__container.show .unities-modal__content {
    flex-direction: column;
  }
  .unities-modal__content__left {
    width: 100%;
  }
  .unities-modal__content__right {
    width: 100%;
    padding: 1.2rem 2.6rem;
  }
}
/* ============ PAGES ============= */
.home {
  position: relative;
}

.unities__main-container {
  position: relative;
  background-color: #231f20;
  overflow: hidden;
}
.unities__main-container::before {
  content: "";
  position: absolute;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  width: 350px;
  height: 350px;
  top: 0;
  left: -125px;
  z-index: 1;
  pointer-events: none;
}
.unities__main-container::after {
  content: "";
  position: absolute;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  width: 350px;
  height: 350px;
  top: 100vh;
  right: -125px;
  z-index: 1;
  pointer-events: none;
}

.carrer__sticky {
  position: relative;
  top: 0;
}

.product-detail {
  background-color: #231f20;
}
.product-detail__dynamic-content {
  position: relative;
}
.product-detail__dynamic-content__wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

#esg {
  overflow-x: hidden;
}

/* ========= COMPONENTES ========== */
.menu__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.menu__container.show {
  opacity: 1;
  pointer-events: auto;
}
.menu__container.show .menu__inner {
  transform: translateY(0);
}
.menu__inner {
  position: relative;
  width: 100%;
  display: flex;
  background: #fff;
  height: 66vh;
  display: flex;
  align-items: flex-end;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.menu__image {
  height: 100%;
  width: 100%;
  max-width: 285px;
}
.menu__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.menu__content {
  width: 100%;
  padding: 9rem 3.2rem 1rem;
  display: flex;
}
.menu__list {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 36%;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.menu__list--products {
  position: absolute;
  display: none;
  left: 100%;
  top: 0;
  padding-left: 3.2rem;
  width: 100%;
}
.menu__item {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: space-between;
  width: 100%;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  cursor: pointer;
}
.menu__item svg {
  margin-left: auto;
}
.menu__item a {
  display: flex;
  width: 100%;
  color: #231f20;
}
.menu__item:hover ~ .menu__item, .menu__item:hover ~ .menu__item > a {
  color: rgba(35, 31, 32, 0.6);
}
.menu__item:hover ~ .menu__item svg path, .menu__item:hover ~ .menu__item > a svg path {
  fill: rgba(35, 31, 32, 0.6);
}
.menu__item:hover > .menu__list--products {
  display: flex;
  height: 100%;
}
.menu__list--products .menu__item .menu__item-product {
  display: none;
}
.menu__list--products .menu__item:hover ~ .menu__item, .menu__list--products .menu__item:hover ~ .menu__item > a {
  color: rgba(35, 31, 32, 0.6);
}
.menu__list--products .menu__item:hover ~ .menu__item svg path, .menu__list--products .menu__item:hover ~ .menu__item > a svg path {
  fill: rgba(35, 31, 32, 0.6);
}
.menu__list--products .menu__item:hover .menu__item-product {
  display: flex;
}
.menu__item:has(~ .menu__item:hover), .menu__item:has(~ .menu__item:hover) > a {
  color: rgba(35, 31, 32, 0.6);
}
.menu__item:has(~ .menu__item:hover) svg path, .menu__item:has(~ .menu__item:hover) > a svg path {
  fill: rgba(35, 31, 32, 0.6);
}
.menu__item:has(~ .menu__item a:hover), .menu__item:has(~ .menu__item a:hover) > a {
  color: rgba(35, 31, 32, 0.6);
}
.menu__item:has(~ .menu__item a:hover) svg path, .menu__item:has(~ .menu__item a:hover) > a svg path {
  fill: rgba(35, 31, 32, 0.6);
}
.menu__item-product {
  position: absolute;
  display: none;
  left: 100%;
  top: 0;
  width: 77.8%;
  padding-left: 3.2rem;
  height: 100%;
  justify-content: center;
}
.menu__item-product__inner {
  border-radius: 12px;
  border: 1px solid rgba(35, 31, 32, 0.1);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  height: 100%;
  max-width: 220px;
}
.menu__item-product__image {
  height: 50%;
}
.menu__item-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.menu__item-product__title {
  font-size: 1.4rem;
  color: rgba(35, 31, 32, 0.6);
  text-align: center;
  line-height: 2.3rem;
}

.btn {
  padding: 14.5px 24px;
  border-radius: 4px;
  border: 1.5px solid #f58220;
  position: relative;
  transition: 0.3s all ease;
  overflow: hidden;
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  gap: 4rem;
  align-items: center;
  background: #231f20;
  cursor: pointer;
}
.btn p,
.btn svg {
  position: relative;
  z-index: 2;
  width: 16px;
  min-width: 16px;
}
.btn p {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1.3rem;
  width: -moz-fit-content;
  width: fit-content;
}
.btn::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 120%;
  width: 95%;
  content: "";
  background: #f58220;
  -webkit-clip-path: polygon(0px 0%, 85% 0%, calc(100% - 67px) 100%, 0% 100%);
          clip-path: polygon(0px 0%, 85% 0%, calc(100% - 67px) 100%, 0% 100%);
  transition: width 0.3s ease, -webkit-clip-path 0.5s ease;
  transition: width 0.3s ease, clip-path 0.5s ease;
  transition: width 0.3s ease, clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
}
.btn:hover::after {
  width: 100%;
  -webkit-clip-path: polygon(0px 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.btn.no-border {
  border: none;
}
.btn.transparent {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.btn.transparent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn.transparent:hover::after {
  transform: translateX(0);
}

.btn-orange-2 {
  background: #fff;
}
.btn-orange-2 svg path {
  fill: #231f20;
}
.btn-orange-2:hover svg path {
  fill: #fff;
}
.btn-orange-2.no-border {
  border: none;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form__row {
  display: flex;
  gap: 0.8rem;
}
.form__col {
  flex: 1;
}
.form span.js-country-dial-code {
  position: absolute;
  left: 2.4rem;
  top: 47px;
  transform: translateY(50%);
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  color: #fdf9f5;
  pointer-events: none;
}
.form .inputGroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  position: relative;
}
.form .inputGroup label {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6rem; /* 162.5% */
}
.form .inputGroup option {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6rem; /* 162.5% */
}
.form .inputGroup input,
.form .inputGroup textarea,
.form .inputGroup select {
  width: 100%;
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6rem; /* 162.5% */
  background-color: transparent;
  outline: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 2.4rem;
  height: 60px;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form .inputGroup input:focus,
.form .inputGroup textarea:focus,
.form .inputGroup select:focus {
  border-color: #f58220;
}
.form .inputGroup input.js-int-phone {
  padding-right: 2.4rem;
  padding-left: 6rem !important;
}
.form .inputGroup textarea {
  padding-top: 1.5rem;
  height: 200px;
}
.form .inputGroup .arrow {
  position: absolute;
  right: 2.4rem;
  top: 52px;
  width: 1.6rem;
  height: 1.6rem;
}
.form .custom-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form .custom-checkbox p {
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.form .custom-checkbox .checkbox {
  width: 38px;
  min-width: 38px;
  height: 22px;
  border-radius: 200px;
  background: transparent;
  position: relative;
  background-color: #fff;
  border: 3px solid #fff;
  transition: all 0.3s ease;
}
.form .custom-checkbox .checkbox::after {
  content: "";
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  transition: all 0.3s ease;
}
.form .custom-checkbox input {
  display: none;
}
.form .custom-checkbox input:checked + .checkbox {
  background: #f58220;
  border-color: #f58220;
}
.form .custom-checkbox input:checked + .checkbox::after {
  left: 100%;
  transform: translate(-100%, -50%);
  background-color: #fff;
}
.form .btn {
  width: 100%;
}
.form.is-white .js-country-dial-code {
  position: absolute;
  left: 2.4rem;
  top: 47px;
  transform: translateY(50%);
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  color: #231f20;
  pointer-events: none;
}
.form.is-white .inputGroup label {
  color: #231f20;
}
.form.is-white .inputGroup input,
.form.is-white .inputGroup textarea,
.form.is-white .inputGroup select {
  color: #231f20;
  border: 1px solid rgba(35, 31, 32, 0.1);
}
.form.is-white .inputGroup input:focus,
.form.is-white .inputGroup textarea:focus,
.form.is-white .inputGroup select:focus {
  border-color: #f58220;
}
.form.is-white .inputGroup select {
  color: #58595b;
  border: 1px solid rgba(35, 31, 32, 0.1);
}
.form.is-white .inputGroup select:focus {
  border-color: #f58220;
}
.form.is-white .custom-checkbox p {
  color: #231f20;
}
.form.is-white .custom-checkbox .checkbox {
  border: 3px solid #f58220;
}
.form.is-white .custom-checkbox .checkbox::after {
  background-color: #f58220;
}

@media (max-width: 900px) {
  .form__row {
    flex-direction: column;
  }
  .form .btn {
    width: 100%;
    max-width: 100% !important;
  }
}
.accordianNav {
  width: calc(100% - 4.8rem);
  border-radius: 4px;
  margin: 0 auto;
}
.accordianNav__list__items {
  display: none;
}
.accordianNav__list__items .list-item {
  list-style-type: none;
}
.accordianNav__list__items .list-item.active ul {
  display: block;
}
.accordianNav__list__items .list-item .list-link {
  padding: 0 0 0 2.5em;
  text-decoration: none;
  transform: translate(0px, 0px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.accordianNav__list__items .list-item .list-link.active {
  color: white;
  border-color: #fff;
  transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}
.accordianNav__list__items .list-item .list-link:hover {
  transform: translate(8px, 0px);
  color: white;
  border-color: #fff;
  transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}
.accordianNav .list-link, .accordianNav__arrow {
  display: block;
  line-height: 2.5em;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-weight: 100;
}
.accordianNav__arrow {
  width: 100%;
}
.accordianNav__arrow:hover {
  color: white;
  border-color: #fff;
  transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}
.accordianNav__arrow:hover:before {
  width: 2%;
}
.accordianNav__arrow:hover:after {
  color: white;
  border-color: #fff;
  transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}
.accordianNav__arrow span {
  z-index: 2;
  position: relative;
  width: 100%;
  display: flex;
}
.accordianNav__arrow span:after {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #f58220 40%, rgba(255, 255, 255, 0.2) 40%);
  content: "";
}
.accordianNav__arrow:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  transition: all 0.3s ease-out;
}
.accordianNav__arrow:after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #f58220;
  border-right: 2px solid #f58220;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: rotate(45deg) translateY(-50%);
}
.accordianNav__arrow.active {
  color: white;
  color: white;
  border-color: #fff;
  transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}
.accordianNav__arrow.active:before {
  width: 2%;
}
.accordianNav__arrow.active:after {
  transform: rotate(-135deg);
  border-color: #fff;
  color: white;
  border-color: #fff;
  transition: all 0.5s cubic-bezier(0.36, 1.64, 0.29, 0.88);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}
.loader__content {
  color: #fff;
  font-family: var(--font-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.loader__text {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.loader__percent {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #f58220, #f58220);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.loader__spinner {
  width: 60px;
  height: 60px;
  margin-bottom: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body.freeze {
  overflow: hidden;
}

.home__carousel-wrapper {
  position: relative;
  height: 100vh;
}
.home__carousel {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.home__carousel__item {
  position: relative;
}
.home__carousel__title {
  text-align: left;
  font-size: min(5vw, 18.4rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25vh;
  width: calc(100% - 10rem);
  z-index: 5;
}
.home__carousel__details {
  text-align: center;
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  gap: 3.2rem;
  z-index: 5;
}
.home__carousel__timer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23vh;
  width: calc(100% - 10rem);
  height: 1px;
}
.home__carousel__timer .timer__wrapper {
  position: relative;
}
.home__carousel__timer .timer__baseline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.home__carousel__timer .timer__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #f58220;
  transition: width 0.1s ease-in-out;
}
.home__carousel__arrows {
  position: absolute;
  bottom: 5vh;
  right: 5rem;
  z-index: 3;
  display: flex;
  gap: 2rem;
}
.home__carousel__arrows .arrow {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 5px 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  cursor: pointer;
  transition: 0.3s all ease;
}
.home__carousel__arrows .arrow svg {
  transition: 0.3s all ease;
}
.home__carousel__arrows .arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}
.home__carousel__arrows .arrow:hover svg {
  transform: scale(1.1);
}
.home__carousel__background {
  height: 100vh;
  position: relative;
}
.home__carousel__background img,
.home__carousel__background video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__carousel__background:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 2;
}
.home__carousel__dots {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  z-index: 2;
}
.home__carousel__dots .slick-dots {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.home__carousel__dots .slick-dots li {
  height: 10px;
  width: 10px;
  background: red;
}
.home__carousel__dots .slick-dots li.slick-active {
  background: blue;
}

@media (max-width: 900px) {
  .home__carousel__arrows {
    bottom: 12rem;
    right: 3.2rem;
    gap: 1rem;
  }
  .home__carousel__arrows .arrow {
    width: 40px;
    height: 40px;
  }
  .home__carousel__details {
    width: calc(100% - 6.4rem);
    bottom: 12rem;
    left: 3.2rem;
  }
  .home__carousel__details p {
    text-align: left;
    line-height: 164.286%;
  }
  .home__carousel__title {
    bottom: 30rem;
    font-size: 8vw;
  }
  .home__carousel__timer {
    width: calc(100% - 6.4rem);
    bottom: 28rem;
  }
}
.home__investors {
  position: relative;
  padding: 16.8rem 0;
  background: #231f20;
  overflow: hidden;
}
.home__investors__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.home__investors__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.home__investors__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.home__investors__content {
  position: relative;
  z-index: 4;
  gap: 3.2rem;
  text-align: center;
}
.home__investors__content .content__title {
  max-width: 50%;
  font-size: 55px;
}
.home__investors__content .content__description {
  max-width: 55%;
  line-height: 23px !important;
  color: #fdf9f5;
  font-family: Barlow;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0% !important;
}
.home__investors__background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home__investors__background img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s all ease;
}
.home__investors:hover img {
  transform: scale(1.01);
}
.home__investors.is-banner .home__investors__content {
  align-items: flex-start;
  text-align: left;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.2;
}
.home__investors.is-banner .home__investors__content .content__title {
  max-width: 55%;
}
.home__investors.is-banner .home__investors__content .content__description {
  max-width: 35%;
  text-align: justify;
}

@media (max-width: 900px) {
  .home__investors {
    padding: 16.8rem 3rem;
  }
  .home__investors__top {
    top: 15rem;
    width: calc(100% - 6.4rem);
    border-top: none;
  }
  .home__investors__top::before {
    display: none;
  }
  .home__investors__content .content__title {
    font-size: 5rem;
    max-width: 100%;
  }
  .home__investors__content .content__description {
    font-size: 1.6rem;
    max-width: 100%;
  }
  .home__investors.is-banner {
    padding: 24rem 3rem 16rem;
  }
  .home__investors.is-banner .home__investors__content .content__title {
    max-width: 90%;
  }
  .home__investors.is-banner .home__investors__content .content__description {
    max-width: 80%;
  }
}
.home__last-news {
  padding: 8rem 0;
  background: #fdf9f5;
  position: relative;
}
.home__last-news__arrows {
  justify-content: right;
  position: relative;
  bottom: 5vh;
  right: 7rem;
  z-index: 3;
  display: flex;
  gap: 2rem;
}
.home__last-news__arrows .arrow {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 5px 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  background: rgba(179, 17, 17, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  cursor: pointer;
  transition: 0.3s all ease;
}
.home__last-news__arrows .arrow svg {
  transition: 0.3s all ease;
}
.home__last-news__arrows .arrow:hover {
  background: rgba(12, 1, 49, 0.1);
}
.home__last-news__arrows .arrow:hover svg {
  transform: scale(1.1);
}
.home__last-news__upper {
  width: 95%;
  margin-bottom: 3.2rem;
}
.home__last-news__pagination {
  height: 1px;
  width: 40vw;
  background: rgba(35, 31, 32, 0.3);
  position: relative;
}
.home__last-news__pagination .last-news-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #f58220;
  transition: 0.3s all ease;
}
.home__last-news__titles {
  gap: 2.4rem;
  padding-left: 6.4rem;
}
.home__last-news__titles .news-section-subtitle {
  padding: 1.2rem 1.6rem;
  gap: 0.8rem;
  transition: 0.3s all ease;
  position: relative;
}
.home__last-news__titles .news-section-subtitle::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #f58220;
  content: "";
  transition: 0.3s all ease;
}
.home__last-news__titles .news-section-subtitle:hover:after {
  width: 100%;
}
.home__last-news__slider .slick-slide {
  margin-right: 2.4rem;
}
.home__last-news__slider .slick-slide:first-child {
  margin-left: 6.4rem;
}
.home__last-news__item .item__image {
  border-radius: 12px;
  width: 100%;
  height: 27.5rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.home__last-news__item .item__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all ease;
}
.home__last-news__item .item__image .arrow {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #f58220;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.home__last-news__item .item__image .arrow svg {
  margin: 0 1.6rem 1.6rem 0;
}
.home__last-news__item .item__title {
  max-width: 95%;
}
.home__last-news__item:hover img {
  transform: scale(1.05);
}
.home__last-news__item:hover .arrow {
  opacity: 1;
  pointer-events: auto;
}
.home__last-news__wrapper {
  gap: 2.4rem;
}

@media (max-width: 900px) {
  .home__last-news {
    height: auto;
    padding: 14rem 0 6rem;
  }
  .home__last-news__arrows {
    display: none;
  }
  .home__last-news__pagination {
    position: absolute;
    left: 3.2rem;
    bottom: 5rem;
    width: calc(100% - 6.4rem);
  }
  .home__last-news__upper {
    margin-bottom: 0;
  }
  .home__last-news__titles {
    padding-left: 3.2rem;
    justify-content: space-between;
    width: 100%;
  }
  .home__last-news__titles .news-section-title {
    font-size: 2.8rem;
  }
  .home__last-news__titles .news-section-subtitle {
    font-size: 1.4rem;
  }
  .home__last-news__slider {
    margin-top: 5.4rem;
  }
  .home__last-news__slider .slick-track {
    display: flex;
  }
  .home__last-news__slider .slick-list {
    padding: 0 3.2rem;
  }
  .home__last-news__slider .slick-slide {
    margin-right: 2.4rem;
  }
  .home__last-news__slider .slick-slide:first-child {
    margin-left: 0;
  }
}
.home__areas {
  top: 0;
  background-color: #231f20;
  transition: background-color 0.3s ease;
  position: relative;
}
.home__areas-title {
  width: 100%;
  text-align: center;
  letter-spacing: -0.37px;
  line-height: 49.4px;
  padding-top: 12.5rem;
}
.home__areas-title h2 {
  margin: 0 auto;
  max-width: 865px;
  color: #fdf9f5;
}
.home__areas-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}
.home__areas-wrapper::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #f58220;
  filter: blur(350px);
  -webkit-filter: blur(350px) opacity(0.1);
  width: 365px;
  height: 365px;
  top: -10%;
  right: 0;
  mix-blend-mode: normal;
  will-change: filter;
}
.home__areas-inner {
  z-index: 1;
  top: 0;
  position: sticky;
  overflow: hidden;
}
.home__areas-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #f58220;
  filter: blur(350px);
  -webkit-filter: blur(350px) opacity(0.1);
  width: 280px;
  height: 280px;
  bottom: 50%;
  transform: translateY(50%);
  left: -10%;
  mix-blend-mode: normal;
  will-change: filter;
}
.home__areas-marquee {
  overflow: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}
.home__areas-marquee__inner {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem 0 4rem;
}
.home__areas-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.home__areas-marquee__item h3 {
  color: #fdf9f5;
  text-align: center;
  text-transform: uppercase;
  font-size: 18.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 16.48rem;
  white-space: nowrap;
  will-change: transform;
}
.home__areas-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
}
.home__areas-scroll__sticky {
  height: 100%;
  position: sticky;
  height: 100vh;
  overflow: hidden;
  top: 0;
  -webkit-clip-path: url(#home-areas-clip-path);
          clip-path: url(#home-areas-clip-path);
  background-color: #231f20;
}
.home__areas-scroll__sticky svg {
  transition: all 0.3s ease;
}
.home__areas-scroll__sticky:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.85) 100%);
  z-index: -1;
}
.home__areas-scroll__sticky__title {
  position: absolute;
  top: 12rem;
  left: 6.4rem;
  z-index: 3;
}
.home__areas-scroll__sticky .item-bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home__areas-scroll__sticky .item-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__areas-scroll__sticky .item-bg.active {
  opacity: 1;
}
.home__areas-scroll__sticky__container {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
}
.home__areas-scroll__sticky__item {
  opacity: 0;
  color: #fff;
  font-size: 50px;
  width: 35vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2.4rem;
  padding: 0 10rem 6.4rem 0;
  position: relative;
  transition: all 0.3s ease;
}
.home__areas-scroll__sticky__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  background: var(--branco-20, rgba(255, 255, 255, 0.2));
  height: 100%;
  transform: skewX(-10deg);
}
.home__areas-scroll__sticky__item:first-child {
  margin-left: 50vw;
}
.home__areas-scroll__sticky__item .item-title {
  color: #fdf9f5;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 35.4px;
  letter-spacing: -0.27px;
}
.home__areas-scroll__sticky__item .item-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  position: relative;
}
.home__areas-scroll__sticky__item:hover::after, .home__areas-scroll__sticky__item.active::after {
  background: linear-gradient(to top, #F58220 0%, #F58220 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 100%);
}
.home__areas.is-white {
  background: #fdf9f5;
}
.home__areas.is-white .home__areas-title h2 {
  color: #231f20;
}
.home__areas.is-white .home__areas-scroll__sticky {
  background-color: #fdf9f5;
}
.home__areas.is-white .home__areas-marquee__inner {
  border-top: 1px solid rgba(35, 31, 32, 0.3);
  border-bottom: 1px solid rgba(35, 31, 32, 0.3);
}
.home__areas.is-white .home__areas-marquee__item h3 {
  color: #231f20;
}

@media (max-width: 900px) {
  .home__areas-title {
    padding-top: 7.2rem;
  }
  .home__areas-title h2 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    padding: 0 2.4rem;
  }
  .home__areas-wrapper {
    position: relative;
    z-index: 1;
    height: 100%;
  }
  .home__areas-scroll__sticky__item {
    opacity: 0;
    color: #fff;
    font-size: 50px;
    width: 80vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2.4rem;
    padding: 0 10rem 10rem 0;
    position: relative;
    transition: all 0.3s ease;
  }
  .home__areas-scroll__sticky__item:first-child {
    margin-left: 120vw;
  }
}
.home__grid-wrapper {
  background-color: #fdf9f5;
  position: relative;
  padding: 6.4rem;
}
.home__grid {
  display: flex;
  gap: 2.4rem;
}
.home__grid__item {
  border-radius: 12px;
  background: #f58220;
  width: 50%;
  flex: 1;
  height: auto;
  transition: 0.5s all ease;
  overflow: hidden;
  height: 552px;
}
.home__grid__item__content {
  padding: 7.2rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  height: 100%;
  max-width: 450px;
}
.home__grid__item__icon {
  flex: 1;
}
.home__grid__item__icon svg {
  width: 4.8rem;
  height: 4.8rem;
}
.home__grid__item__bg {
  width: 100%;
  height: 100%;
}
.home__grid__item__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home__grid__item:hover {
  flex: 2;
}

@media (max-width: 900px) {
  .home__grid-wrapper {
    background-color: #fdf9f5;
    position: relative;
    padding: 0 3.2rem 3.2rem;
  }
  .home__grid {
    flex-direction: column;
    gap: 1rem;
  }
  .home__grid__item {
    width: 100%;
    transition: 0.5s all ease;
    height: auto;
  }
  .home__grid__item__content {
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    height: 100%;
    max-width: 100%;
  }
  .home__grid__item:hover {
    flex: 1;
  }
}
.home-esg__wrapper {
  position: relative;
  background-color: #231f20;
  height: 100vh;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.home-esg__icon {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  top: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
}
.home-esg__icon svg {
  width: 100%;
  height: 100%;
}
.home-esg__center-img {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  bottom: 0%;
  width: 50%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  width: 80%;
}
.home-esg__center-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.home-esg__center-img.mobile {
  display: none;
}
.home-esg__items {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
}
.home-esg__item__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-esg__item__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-esg__item__bg--clipper {
  width: 50%;
  overflow: hidden;
  z-index: 3;
}
.home-esg__item__bg--clipper img {
  width: 200%;
}
.home-esg__item__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 31, 32, 0.25) 0%, rgba(35, 31, 32, 0.25) 100%);
}
.home-esg__item__bg.inner-bg {
  display: none;
  position: absolute;
  inset: 0;
}
.home-esg__item__bg.inner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-esg__item__bg-icon {
  display: none;
}
.home-esg__item {
  position: relative;
  z-index: 5;
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
  padding: 15rem;
  transition: opacity 0.3s ease-in-out;
}
.home-esg__item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  z-index: 3;
}
.home-esg__item__content__title {
  color: #fdf9f5;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -0.42px;
}
.home-esg__item__content__subtitle {
  color: #fdf9f5;
  font-size: 7.3rem;
  font-weight: 400;
  line-height: normal;
  max-width: 350px;
}
.home-esg__item__content-hidden {
  border-radius: 20px;
  background: var(--preto-30, rgba(35, 31, 32, 0.3));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding: 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.home-esg__item__content-hidden p {
  color: #fdf9f5;
  font-weight: 400;
  line-height: 2.3rem;
}
.home-esg__item:last-child {
  justify-content: flex-start;
  text-align: left;
}
.home-esg__item:last-child .home-esg__item__content {
  align-items: flex-start;
}
.home-esg__item:last-child .home-esg__item__content-hidden {
  text-align: left;
  align-items: flex-start;
}
.home-esg__item:first-of-type .home-esg__item__content-hidden {
  padding: 3.2rem 3.2rem 20rem 3.2rem !important;
}
.home-esg__item.active .home-esg__item__content-hidden {
  opacity: 1;
  pointer-events: all;
}

.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  left: 0;
  top: 0;
}
.custom-cursor__circle {
  width: 48px;
  height: 48px;
  border: 2px solid #fdf9f5;
  border-radius: 50%;
  transition: transform 0.2s ease;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.custom-cursor__text {
  color: #fdf9f5;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.custom-cursor.is-dragging .custom-cursor__circle {
  transform: scale(0.8);
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .home-esg__wrapper {
    height: auto;
  }
  .home-esg__center-img {
    display: none;
  }
  .home-esg__center-img.mobile {
    display: block;
    position: absolute;
    bottom: 0%;
    width: 100%;
  }
  .home-esg__items {
    flex-direction: column;
  }
  .home-esg__item__bg {
    display: none;
  }
  .home-esg__item__bg.inner-bg {
    display: block;
  }
  .home-esg__item__bg-icon {
    position: absolute;
    top: 4rem;
    right: 4rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    background: var(--branco-20, rgba(255, 255, 255, 0.2));
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    cursor: pointer;
    pointer-events: all;
    z-index: 20;
  }
  .home-esg__item__bg-icon svg {
    width: 28px;
    height: 28px;
  }
  .home-esg__item {
    width: 100%;
    padding: 10rem 4rem;
    transition: all 0.3s ease-in-out;
  }
  .home-esg__item__content {
    gap: 2rem;
  }
  .home-esg__item__content__subtitle {
    font-size: 5rem;
  }
  .home-esg__item__content-hidden {
    gap: 3rem;
    padding: 3.2rem;
    max-height: 0;
    overflow: hidden;
    padding: 0;
  }
  .home-esg__item__content-hidden .btn {
    margin-top: 2.4rem;
  }
  .home-esg__item:last-child {
    justify-content: flex-start;
    text-align: left;
  }
  .home-esg__item:last-child .home-esg__item__content {
    align-items: flex-start;
  }
  .home-esg__item:last-child .home-esg__item__content-hidden {
    text-align: left;
    align-items: flex-start;
  }
  .home-esg__item__bg-icon .plus {
    display: none;
  }
  .home-esg__item__bg-icon .minus {
    display: block;
  }
  .home-esg__item.active .home-esg__item__bg-icon .plus {
    display: block;
  }
  .home-esg__item.active .home-esg__item__bg-icon .minus {
    display: none;
  }
  .home-esg__item.active .home-esg__item__content-hidden {
    opacity: 1;
    pointer-events: all;
    max-height: 999px;
    padding: 3.2rem;
  }
  .custom-cursor {
    display: none;
  }
}
.home__carrers {
  padding: 1.6rem;
  position: relative;
  background-color: #231f20;
  display: flex;
  gap: 0.8rem;
  height: 200vh;
}
.home__carrers__left {
  position: sticky;
  top: 1.2rem;
  width: 40%;
  height: calc(100vh - 2.4rem);
  padding: 3.2rem;
  border-radius: 12px;
  background: #fdf9f5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home__carrers__left__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home__carrers__left__top h3 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.home__carrers__left__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.home__carrers__left__content__title {
  position: relative;
  padding-bottom: 8rem;
}
.home__carrers__left__content__title h3 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 3.7rem;
  font-weight: 500;
  letter-spacing: -0.37px;
  max-width: 90%;
  margin: 0 auto;
}
.home__carrers__left__content__title::after {
  content: "";
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(35, 31, 32, 0.3);
}
.home__carrers__left__content__title::before {
  content: "";
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 175px;
  height: 1px;
  background: #f58220;
}
.home__carrers__left__content__description p {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.3rem;
  max-width: 70%;
  margin: 0 auto;
}
.home__carrers__left__bottom ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
  border-top: 1px solid var(--preto-10, rgba(35, 31, 32, 0.1));
}
.home__carrers__left__bottom ul li {
  color: rgba(35, 31, 32, 0.3);
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: relative;
}
.home__carrers__left__bottom ul .dot {
  width: 5px;
  height: 5px;
  background-color: rgba(35, 31, 32, 0.3);
  border-radius: 50%;
}
.home__carrers__left__bottom .btn {
  width: 100%;
  justify-content: space-between;
}
.home__carrers__right {
  position: sticky;
  top: 1.2rem;
  height: calc(100vh - 2.4rem);
  width: 60%;
  border-radius: 12px;
  overflow: hidden;
}
.home__carrers__right__image {
  position: relative;
  height: 100%;
  width: 100%;
}
.home__carrers__right__image .js-first-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.home__carrers__right__image .careers-image-clipper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.home__carrers__right__image .careers-image-clipper .js-last-image {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  width: 100%;
  transform-origin: bottom;
}

@media (max-width: 900px) {
  .home__carrers {
    height: auto;
    flex-direction: column;
    overflow: hidden;
  }
  .home__carrers__left {
    position: unset;
    top: 0;
    width: 100%;
    height: auto;
    padding: 3.2rem 1rem;
  }
  .home__carrers__left__bottom ul {
    overflow: auto;
    gap: 1rem;
    scrollbar-width: none;
  }
  .home__carrers__left__bottom ul::-webkit-scrollbar {
    display: none;
  }
  .home__carrers__left__top {
    padding-bottom: 5rem;
  }
  .home__carrers__left__content {
    padding: 5rem 0;
  }
  .home__carrers__right {
    position: unset;
    top: 0;
    width: 100%;
    border-radius: 12px;
    overflow: unset;
  }
  .home__carrers__right__image {
    overflow: hidden;
    position: sticky;
    top: 1.2rem;
    height: calc(100vh - 2.4rem);
    width: 100%;
    border-radius: 12px;
  }
  .home__carrers__right__image img,
  .home__carrers__right__image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: unset !important;
  }
}
.about__banner {
  position: relative;
  height: 100vh;
}
.about__banner__inner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}
.about__banner__bg {
  position: absolute;
  inset: 0;
}
.about__banner__bg video, .about__banner__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__banner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.about__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.about__banner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.about__banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.about__banner__content h1 {
  color: #fdf9f5;
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 900px) {
  .about__banner__top {
    top: 15rem;
    width: calc(100% - 6.4rem);
    border-top: none;
  }
  .about__banner__top::before {
    display: none;
  }
  .about__banner__content h1 {
    font-size: 3.7rem;
    padding: 0 3.2rem;
  }
}
.about__lettering {
  position: relative;
  z-index: 1;
  background: #231f20;
  height: 200vh;
}
.about__lettering__inner {
  height: 100vh;
  position: sticky;
  top: 0;
  padding: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.about__lettering__inner::before {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 280px;
  height: 280px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  left: 0;
  top: 0;
  transform: translateX(-50%);
}
.about__lettering__inner::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  width: 365px;
  height: 365px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  right: 0;
  bottom: 0;
  transform: translateX(50%);
}
.about__lettering__inner h3 {
  color: rgba(255, 255, 255, 0.2);
  font-size: 5.2rem;
  line-height: normal;
  transition: color 0.1s ease;
}
.about__lettering__inner h3 .highlight {
  color: rgb(255, 255, 255);
}

@media (max-width: 900px) {
  .about__lettering__inner {
    padding: 3.2rem;
  }
  .about__lettering__inner h3 {
    font-size: 3.7rem;
  }
}
.about__timeline {
  position: relative;
  background: #231f20;
}
.about__timeline__inner {
  position: sticky;
  height: 100vh;
  overflow: hidden;
  top: 0;
  padding-top: 5rem;
}
.about__timeline__inner__top {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 6.4rem;
  padding: 4rem 0 6.4rem;
}
.about__timeline__inner__top h2 {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.about__timeline__inner__top p {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 4.94rem;
  letter-spacing: -0.037rem;
}
.about__timeline__items {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  display: flex;
  padding: 0 25vw 0 6.4rem;
  gap: 25vw;
}
.about__timeline__item {
  width: 45vw;
  height: 65vh;
  position: relative;
  cursor: pointer;
}
.about__timeline__item__bg {
  border-radius: 12px;
  height: 100%;
}
.about__timeline__item__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(35, 31, 32, 0.6) 0%, rgba(35, 31, 32, 0.6) 100%);
}
.about__timeline__item__bg .effect {
  width: 115px;
  height: 115px;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: 2;
  background: #f58220;
  border-radius: 12px 0 0 0;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
          clip-path: polygon(100% 0, 0 0, 0 100%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.about__timeline__item__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.about__timeline__item__era {
  position: absolute;
  top: -10rem;
  left: 75%;
  width: 100%;
  padding: 4rem;
  z-index: 2;
}
.about__timeline__item__era p {
  color: #fdf9f5;
  font-size: 18.4rem;
  font-weight: 400;
  line-height: 164.8px;
  display: inline-block;
}
.about__timeline__item__era p:nth-child(2) {
  text-indent: 10rem;
}
.about__timeline__item__era span {
  color: #f58220;
  width: 0;
  display: inline-block;
  font-size: 18.4rem;
}
.about__timeline__item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  overflow: hidden;
}
.about__timeline__item__content h3 {
  color: #fdf9f5;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 20vh;
}
.about__timeline__item__content .description {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2.4rem;
}
.about__timeline__item__content .description p {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.3rem;
  max-width: 65%;
  transition: all 0.3s ease-in-out;
}
.about__timeline__item__content .btn {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10%;
}
.about__timeline__item:hover .effect {
  opacity: 1;
}
.about__timeline__item:hover .description {
  border-top: none;
}
.about__timeline__item:hover .description p {
  opacity: 0;
}
.about__timeline__item:hover .btn {
  opacity: 1;
  pointer-events: auto;
  bottom: 10%;
}

@media (max-width: 900px) {
  .about__timeline__inner__top {
    margin: 0 3.2rem 3.2rem;
  }
  .about__timeline__inner__top p {
    font-size: 3rem;
  }
  .about__timeline__items {
    width: -moz-max-content;
    width: max-content;
    height: 100%;
    display: flex;
    padding: 0 3.2rem 0 3.2rem;
    gap: 10vw;
  }
  .about__timeline__item {
    width: 75vw;
    height: 65vh;
    position: relative;
    cursor: pointer;
  }
  .about__timeline__item__bg {
    border-radius: 12px;
    height: 100%;
  }
  .about__timeline__item__bg .effect {
    width: 65px;
    height: 65px;
  }
  .about__timeline__item__era {
    position: absolute;
    top: -10rem;
    left: 35%;
    width: 100%;
    padding: 4rem;
    z-index: 2;
  }
  .about__timeline__item__era p {
    font-size: 8rem;
    line-height: 8rem;
  }
  .about__timeline__item__era p:last-child {
    text-indent: 5rem !important;
  }
  .about__timeline__item__era span {
    font-size: 8rem;
  }
  .about__timeline__item__content {
    padding: 3.2rem;
  }
  .about__timeline__item__content .description p {
    max-width: 100%;
  }
}
.about__timeline-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 9999;
  padding: 1.6rem 1.6rem 0 1.6rem;
  background: #231f20;
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s all ease;
}
.about__timeline-modal.active {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.about__timeline-modal__inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.about__timeline-modal__inner::-webkit-scrollbar {
  display: none;
}
.about__timeline-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5.6rem;
  z-index: 3;
}
.about__timeline-modal__header h3 {
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed";
}
.about__timeline-modal__header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.about__timeline-modal__header .close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 200px;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  background: #231f20;
}
.about__timeline-modal__header .close svg {
  width: 1.4rem;
  height: 1.4rem;
}
.about__timeline-modal__banner {
  height: calc(100vh - 3.2rem);
  position: relative;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.6rem;
}
.about__timeline-modal__banner .bg {
  border-radius: 12px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about__timeline-modal__banner .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.about__timeline-modal__banner .bg img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__timeline-modal__banner .content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.about__timeline-modal__banner .content h3 {
  color: #fff;
  text-align: center;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem;
  letter-spacing: -0.37px;
}
.about__timeline-modal__banner .content .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 4rem;
}
.about__timeline-modal__banner .content .flex .era {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 18.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem;
}
.about__timeline-modal__banner .content .flex span {
  font-size: 18.4rem;
  color: #f58220;
}
.about__timeline-modal__banner .content h4 {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10rem;
}
.about__timeline-modal__gallery {
  padding: 5.2rem 6.4rem 6.4rem 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.about__timeline-modal__gallery .gallery-item {
  display: flex;
  flex-direction: row;
}
.about__timeline-modal__gallery .gallery-item:nth-child(even) {
  flex-direction: row-reverse;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-left {
  width: 50%;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-left img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-right .content {
  width: max(50%, 300px);
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-right .content .year {
  color: #fff;
  font-size: 7.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-right .content .title {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.4rem;
}
.about__timeline-modal__gallery .gallery-item .gallery-item-right .content .description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem;
}
.about__timeline-modal__gallery .gallery-item.full {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about__timeline-modal__gallery .gallery-item.full::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.about__timeline-modal__gallery .gallery-item.full .gallery-item-left {
  width: 100%;
  height: 100%;
  position: absolute;
}
.about__timeline-modal__gallery .gallery-item.full .gallery-item-right {
  width: 100%;
  z-index: 2;
  height: 100%;
  padding: 10rem 3.2rem;
}
.about__timeline-modal__gallery .gallery-item.full .gallery-item-right .content {
  text-align: center;
  width: max(35%, 300px);
  padding: 3.2rem;
}

@media (max-width: 900px) {
  .about__timeline-modal__header {
    padding: 7.5rem 3.2rem 0;
  }
  .about__timeline-modal__header .logo {
    top: 3.2rem;
  }
  .about__timeline-modal__banner .content {
    height: 0;
  }
  .about__timeline-modal__banner .content h3 {
    font-size: 3rem;
  }
  .about__timeline-modal__banner .content .flex .era {
    font-size: 8rem;
    line-height: 1.6rem;
  }
  .about__timeline-modal__banner .content .flex span {
    font-size: 8rem;
  }
  .about__timeline-modal__gallery {
    padding: 3.2rem;
  }
  .about__timeline-modal__gallery .gallery-item {
    display: flex;
    flex-direction: column;
  }
  .about__timeline-modal__gallery .gallery-item:nth-child(even) {
    flex-direction: column;
  }
  .about__timeline-modal__gallery .gallery-item:nth-child(even) .gallery-item-right {
    text-align: right;
  }
  .about__timeline-modal__gallery .gallery-item .gallery-item-left {
    width: 100%;
    min-height: 300px;
  }
  .about__timeline-modal__gallery .gallery-item .gallery-item-right {
    width: 100%;
  }
  .about__timeline-modal__gallery .gallery-item .gallery-item-right .content {
    width: 100%;
  }
}
.about-values__container {
  display: flex;
  background-color: #231f20;
  position: relative;
  z-index: 1;
}
.about-values__inner {
  padding-top: 4rem;
  margin: 4rem 6.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 8rem;
}
.about-values__title {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-values__content {
  display: grid;
  row-gap: 6.4rem;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  grid-template-columns: repeat(3, 1fr);
}
.about-values__content-item {
  flex: 1;
}
.about-values__content-item-title {
  color: #fdf9f5;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.54rem; /* 131.111% */
  letter-spacing: -0.27px;
  margin-bottom: 2.4rem;
}
.about-values__content-item-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.about-values__content-item-content ul {
  margin-top: 1.2rem;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  margin-left: 1.5rem;
}
.about-values__content-item-content ul li {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
  list-style: disc;
  padding-left: 0.5rem;
}
.about-values__content-item.big {
  grid-column: span 2;
}
.about-values__content-item.bordered {
  border-top: 1px solid #f58220;
  border-bottom: 1px solid #f58220;
  padding: 8rem 0;
}

@media (max-width: 900px) {
  .about-values__inner {
    padding-top: 3.2rem;
    margin: 3.2rem;
    gap: 3.2rem;
    flex-direction: column;
  }
  .about-values__content {
    display: flex;
    flex-direction: column;
  }
  .about-values__content-item {
    flex: 1;
  }
  .about-values__content-item-content ul {
    -moz-columns: 1;
         columns: 1;
  }
}
.about-numbers__container {
  background-color: #231f20;
  position: relative;
  z-index: 1;
  padding-top: 8rem;
}
.about-numbers__inner {
  padding-top: 4rem;
  margin: 0 6.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  gap: 8rem;
}
.about-numbers__title {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-numbers__content {
  display: flex;
  gap: 8rem;
}
.about-numbers__content-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  border-bottom: 1px solid #f58220;
  padding-bottom: 2rem;
  min-width: 175px;
}
.about-numbers__content-item-title {
  color: var(--branco-60, rgba(255, 255, 255, 0.6));
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}
.about-numbers__content-item-number {
  color: #fdf9f5;
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-numbers__content-item-description {
  color: #fdf9f5;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.54rem;
  letter-spacing: -0.27px;
}
.about-numbers__image {
  margin-top: 15rem;
  display: flex;
  justify-content: center;
}
.about-numbers__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 80vw;
}

@media (max-width: 900px) {
  .about-numbers__container {
    padding-top: 3.2rem;
  }
  .about-numbers__inner {
    padding-top: 3.2rem;
    margin: 0 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
  }
  .about-numbers__content {
    display: flex;
    flex-direction: column;
  }
  .about-numbers__content-item {
    flex: 1;
  }
  .about-numbers__image img {
    max-width: 95%;
  }
}
.about-quality__container {
  background: #fdf9f5;
  padding: 8rem 6.4rem;
  position: relative;
  z-index: 2;
}
.about-quality__content {
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
  padding-top: 4rem;
}
.about-quality__title {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}
.about-quality__subtitle {
  color: #231f20;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.about-quality__row {
  display: flex;
  padding-top: 10rem;
  gap: 5.6rem;
}
.about-quality__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.about-quality__col-title {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.about-quality__col-description {
  color: #58595b;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.about-quality__col-item:not(:first-child) {
  border-top: 1px solid var(--preto-10, rgba(35, 31, 32, 0.1));
  padding-top: 2.4rem;
}
.about-quality__col-item-title {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
  margin-bottom: 1.4rem;
}
.about-quality__col-item-chip-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.about-quality__col-item-chip {
  padding: 2.4rem;
  border-radius: 6px;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #FFF;
  width: 45%;
}
.about-quality__col-item-chip-text {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.about-quality__col:nth-child(2) {
  flex: 1.5;
}

@media (max-width: 900px) {
  .about-quality__container {
    padding: 3.2rem;
  }
  .about-quality__content {
    padding-top: 3.2rem;
  }
  .about-quality__subtitle {
    font-size: 3rem;
    line-height: 133.514%;
  }
  .about-quality__row {
    padding-top: 3.2rem;
    flex-direction: column;
  }
  .about-quality__col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .about-quality__col-item-chip {
    padding: 1.4rem;
  }
  .about-quality__col-item-chip-text {
    font-size: 1.8rem;
  }
  .about-quality__col:nth-child(2) {
    flex: 1;
  }
}
.about__carousel {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 2;
}
.about__carousel__item {
  position: relative;
}
.about__carousel__details {
  text-align: center;
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  gap: 3.2rem;
  z-index: 5;
}
.about__carousel__timer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23vh;
  width: calc(100% - 10rem);
  height: 1px;
}
.about__carousel__timer .timer__wrapper {
  position: relative;
}
.about__carousel__timer .timer__baseline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.about__carousel__timer .timer__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #f58220;
  transition: width 0.1s ease-in-out;
}
.about__carousel__arrows {
  position: absolute;
  bottom: 5vh;
  right: 5rem;
  z-index: 3;
  display: flex;
  gap: 2rem;
}
.about__carousel__arrows .arrow {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 5px 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  cursor: pointer;
  transition: 0.3s all ease;
}
.about__carousel__arrows .arrow svg {
  transition: 0.3s all ease;
}
.about__carousel__arrows .arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}
.about__carousel__arrows .arrow:hover svg {
  transform: scale(1.1);
}
.about__carousel__background {
  height: 100vh;
  position: relative;
}
.about__carousel__background img,
.about__carousel__background video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__carousel__background:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 2;
}
.about__carousel__dots {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  z-index: 2;
}
.about__carousel__dots .slick-dots {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.about__carousel__dots .slick-dots li {
  height: 10px;
  width: 10px;
}

@media (max-width: 900px) {
  .about__carousel__details {
    left: 3.2rem;
    bottom: 3.2rem;
    width: calc(100% - 6.4rem);
  }
  .about__carousel__timer {
    width: calc(100% - 6.4rem);
  }
  .about__carousel__arrows {
    bottom: 5vh;
    right: 3.2rem;
  }
  .about__carousel__arrows .arrow {
    width: 40px;
    height: 40px;
  }
  .about__carousel__dots {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    z-index: 2;
  }
  .about__carousel__dots .slick-dots {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .about__carousel__dots .slick-dots li {
    height: 10px;
    width: 10px;
  }
}
.unities__banner {
  position: relative;
  min-height: 100vh;
  background-color: #231f20;
  overflow: hidden;
}
.unities__banner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.unities__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.unities__banner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.unities__banner__content {
  padding-top: 15rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
.unities__banner__content h1 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.unities__banner__content img {
  width: 100%;
}

@media (max-width: 900px) {
  .unities__banner {
    min-height: 0;
  }
  .unities__banner__top {
    top: 15rem;
    width: calc(100% - 6.4rem);
    border-top: none;
  }
  .unities__banner__top::before {
    display: none;
  }
  .unities__banner__content {
    padding: 25rem 3.2rem 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }
  .unities__banner__content h1 {
    font-size: 3rem;
    line-height: 133.514%;
  }
  .unities__banner__content img {
    margin-top: 2.4rem;
    width: 140%;
  }
}
.unities__work-done {
  position: relative;
  z-index: 2;
  padding-bottom: 10rem;
}
.unities__work-done__top {
  width: calc(100% - 12.8rem);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
.unities__work-done__top__left h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.unities__work-done__top__left h3 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
  margin-top: 1rem;
}
.unities__work-done__top__right {
  display: flex;
  gap: 1.6rem;
}
.unities__work-done__top__right svg {
  cursor: pointer;
}
.unities__work-done__top__right svg.slick-disabled {
  opacity: 0.5;
}
.unities__work-done__gallery__slider {
  padding: 0 8rem 0 4rem;
}
.unities__work-done__gallery__slider .slick-track {
  display: flex;
  gap: 2.4rem;
}
.unities__work-done__gallery__item {
  display: flex !important;
  flex-direction: column;
  height: auto;
  height: 72vh;
}
.unities__work-done__gallery__item__top {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.unities__work-done__gallery__item__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.unities__work-done__gallery__item__top h3 {
  position: absolute;
  color: #fdf9f5;
  bottom: 1.6rem;
  left: 1.6rem;
  font-family: "Barlow Semi Condensed";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.54rem; /* 177% */
  bottom: 2.2rem;
  left: 3.2rem;
}
.unities__work-done__gallery__item__bottom {
  flex: unset;
  display: flex;
  gap: 1.6rem;
  padding-top: 2.4rem;
  height: 6rem;
}
.unities__work-done__gallery__item__bottom span {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.unities__work-done__gallery__item__bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.1rem; /* 161.538% */
  max-width: 85%;
}
.unities__work-done__gallery__item:hover .unities__work-done__gallery__item__top img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .unities__work-done__top {
    width: calc(100% - 6.4rem);
    margin: 0 auto 5rem;
  }
  .unities__work-done__top__left h3 {
    font-size: 2.8rem;
    line-height: 120%;
  }
  .unities__work-done__top__right svg {
    width: 40px;
    height: 40px;
  }
  .unities__work-done__gallery__slider {
    padding: 0 0rem 0 0rem;
  }
  .unities__work-done__gallery__slider .slick-list {
    padding: 0 3.2rem;
  }
  .unities__work-done__gallery__slider .slick-track {
    display: flex;
    gap: 0;
  }
  .unities__work-done__gallery__item {
    margin-right: 2rem;
  }
  .unities__work-done__gallery__item__bottom {
    height: 9rem;
  }
  .unities__work-done__gallery__item__top h3 {
    left: 2.2rem;
  }
}
.unities__unities {
  position: relative;
  z-index: 2;
  padding-bottom: 10rem;
}
.unities__unities__top {
  width: calc(100% - 12.8rem);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 4rem;
}
.unities__unities__top__left h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.unities__unities__top__left h3 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem;
  letter-spacing: -0.37px;
  margin: 1rem 0 2rem 0;
}
.unities__unities__top__left .categories {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.unities__unities__top__left .categories li {
  border-radius: 200px;
  border: 1px solid #fff;
  padding: 0.8rem 2.4rem;
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
.unities__unities__top__left .categories li:hover, .unities__unities__top__left .categories li.active {
  background: #f58220;
  border-color: #f58220;
}
.unities__unities__top__right {
  display: flex;
  gap: 1.6rem;
}
.unities__unities__top__right svg {
  cursor: pointer;
}
.unities__unities__top__right svg.slick-disabled {
  opacity: 0.5;
}
.unities__unities__gallery__slider .slick-list {
  padding: 0 8rem 0 5.6rem;
}
.unities__unities__gallery__slider .slick-track {
  display: flex;
  gap: 0.8rem;
}
.unities__unities__gallery__item {
  display: flex !important;
  flex-direction: column;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.unities__unities__gallery__item__top {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.unities__unities__gallery__item__top img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.unities__unities__gallery__item__bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 4rem;
  transition: background-color 0.3s ease;
}
.unities__unities__gallery__item__bottom .city {
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.unities__unities__gallery__item__bottom .type {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.unities__unities__gallery__item__bottom .address {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.unities__unities__gallery__item__bottom .btns {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.unities__unities__gallery__item__bottom .btns .btn {
  width: 222px;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__top img, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__top img {
  transform: scale(1.1);
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom {
  background-color: #fff;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .city, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .city {
  color: #231f20;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .type, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .type {
  color: #231f20;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .address, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .address {
  color: #231f20;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn {
  background: #fff;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent {
  border: 1.5px solid rgba(35, 31, 32, 0.3);
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent p, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent p {
  color: #231f20;
  font-weight: 500px;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent:after, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent:after {
  background: rgba(35, 31, 32, 0.3);
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent:hover svg path, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent:hover svg path {
  fill: #fff;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent:hover p, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent:hover p {
  color: #fff;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn svg path, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn svg path {
  fill: #231f20;
}
.unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn:hover svg path, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn:hover svg path {
  fill: #fff;
}
.unities__unities__gallery__item.bordered {
  border: 1px solid rgba(35, 31, 32, 0.1);
}

@media (max-width: 900px) {
  .unities__unities__top {
    width: 100%;
    overflow: hidden;
    padding: 3.2rem 3.2rem 0;
    position: relative;
    border: none;
  }
  .unities__unities__top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 3.2rem;
    width: calc(100% - 6.4rem);
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  .unities__unities__top__left h3 {
    font-size: 2.8rem;
    line-height: 120%;
  }
  .unities__unities__top__left .categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100vw;
    padding-right: 6.4rem;
  }
  .unities__unities__top__left .categories::-webkit-scrollbar {
    display: none;
  }
  .unities__unities__top__left .categories li {
    white-space: nowrap;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .unities__unities__top__right {
    display: none;
  }
  .unities__unities__gallery__slider .slick-list {
    padding: 0 3.2rem;
  }
  .unities__unities__gallery__item {
    display: flex !important;
    flex-direction: column;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
  }
  .unities__unities__gallery__item__top {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  .unities__unities__gallery__item__top img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .unities__unities__gallery__item__bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding: 4rem;
    transition: background-color 0.3s ease;
  }
  .unities__unities__gallery__item__bottom .city {
    color: #fdf9f5;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.74rem; /* 130.476% */
    letter-spacing: -0.42px;
  }
  .unities__unities__gallery__item__bottom .type {
    color: #fdf9f5;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  .unities__unities__gallery__item__bottom .address {
    color: #fdf9f5;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .unities__unities__gallery__item__bottom .btns {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .unities__unities__gallery__item__bottom .btns .btn {
    width: 222px;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__top img, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__top img {
    transform: scale(1.1);
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom {
    background-color: #fff;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .city, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .city {
    color: #231f20;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .type, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .type {
    color: #231f20;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .address, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .address {
    color: #231f20;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn {
    background: #fff;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent {
    border: 1.5px solid rgba(35, 31, 32, 0.3);
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent p, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent p {
    color: #231f20;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent:after, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent:after {
    background: rgba(35, 31, 32, 0.3);
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent:hover svg path, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent:hover svg path {
    fill: #fff;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn.transparent:hover p, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn.transparent:hover p {
    color: #fff;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn svg path, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn svg path {
    fill: #231f20;
  }
  .unities__unities__gallery__item:hover .unities__unities__gallery__item__bottom .btns .btn:hover svg path, .unities__unities__gallery__item.is-white .unities__unities__gallery__item__bottom .btns .btn:hover svg path {
    fill: #fff;
  }
  .unities__unities__gallery__item.bordered {
    border: 1px solid rgba(35, 31, 32, 0.1);
  }
}
.unities__parallax {
  position: relative;
  overflow: hidden;
  height: 65vh;
}
.unities__parallax__container {
  height: 100%;
}
.unities__parallax__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .unities__parallax {
    height: 350px;
  }
}
.unities__events {
  position: relative;
  z-index: 1;
  padding-bottom: 8rem;
  margin-top: 5rem;
}
.unities__events__top {
  width: calc(100% - 12.8rem);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
.unities__events__top__left h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.unities__events__top__left h3 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
  margin-top: 1rem;
}
.unities__events__top__right {
  display: flex;
  gap: 1.6rem;
}
.unities__events__top__right svg {
  cursor: pointer;
}
.unities__events__top__right svg.slick-disabled {
  opacity: 0.5;
}
.unities__events__gallery__slider .slick-list {
  padding: 0 8rem 0 4rem;
}
.unities__events__gallery__slider .slick-track {
  display: flex;
  gap: 2.4rem;
}
.unities__events__gallery__item {
  display: flex !important;
  flex-direction: column;
  height: auto;
}
.unities__events__gallery__item__top {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.unities__events__gallery__item__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.unities__events__gallery__item__top .hover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #f58220;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.6rem;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.unities__events__gallery__item__bottom {
  flex: unset;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 2.4rem;
}
.unities__events__gallery__item__bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.unities__events__gallery__item__bottom h4 {
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.unities__events__gallery__item:hover .unities__events__gallery__item__top .hover {
  opacity: 1;
}
.unities__events__gallery__item:hover .unities__events__gallery__item__top img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .unities__events {
    padding-bottom: 0rem;
  }
  .unities__events__top {
    width: calc(100% - 6.4rem);
    padding-top: 3.2rem;
  }
  .unities__events__top__left h3 {
    font-size: 3rem;
    line-height: 120%;
  }
  .unities__events__top__right {
    gap: 1.6rem;
  }
  .unities__events__top__right svg {
    width: 40px;
    height: 40px;
  }
  .unities__events__gallery__slider .slick-list {
    padding: 0 3.2rem;
  }
  .unities__events__gallery__slider .slick-track {
    display: flex;
    gap: 0.8rem;
  }
  .unities__events__gallery__item {
    display: flex !important;
    flex-direction: column;
    height: auto;
  }
  .unities__events__gallery__item__top {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
  }
  .unities__events__gallery__item__top img {
    width: 100%;
    height: 42vh;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  .unities__events__gallery__item__top .hover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: #f58220;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.6rem;
    -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
            clip-path: polygon(100% 0, 0 100%, 100% 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .unities__events__gallery__item__bottom {
    flex: unset;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding-top: 2.4rem;
  }
  .unities__events__gallery__item__bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-family: "Barlow Semi Condensed";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  .unities__events__gallery__item__bottom h4 {
    color: #fdf9f5;
    font-size: 2.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.74rem; /* 130.476% */
    letter-spacing: -0.42px;
  }
  .unities__events__gallery__item:hover .unities__events__gallery__item__top .hover {
    opacity: 1;
  }
  .unities__events__gallery__item:hover .unities__events__gallery__item__top img {
    transform: scale(1.1);
  }
}
#contact {
  overflow: hidden;
}

.contact__banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.contact__banner__inner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact__banner__inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 150px;
  transform: translateX(50%);
  border-radius: 100%;
  width: 365px;
  height: 365px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  z-index: 1;
}
.contact__banner__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.contact__banner__bg {
  position: absolute;
  inset: 0;
}
.contact__banner__bg video,
.contact__banner__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact__banner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.contact__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.contact__banner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.contact__banner__top h1 {
  margin-top: 2rem;
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem;
  letter-spacing: -0.37px;
}

@media (max-width: 900px) {
  .contact__banner__top {
    top: 15rem;
    width: calc(100% - 3.2rem);
    border-top: none;
    z-index: 2;
  }
  .contact__banner__top::before {
    display: none;
  }
  .contact__banner__top h1 {
    font-size: 3rem;
    line-height: 133.514%;
  }
}
.contact #flash-message-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.contact .flash-message {
  background-color: #f58220;
  color: white;
  padding: 60px;
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.contact .flash-message.fade-out {
  opacity: 0;
}
.contact .contact__forms__inner__form .loader-send {
  color: rgb(0, 0, 0);
}
.contact .unities-modal .loader-send {
  color: white;
}
.contact__forms {
  position: relative;
  z-index: 1;
  background: #fdf9f5;
  padding: 0rem 0;
}
.contact__forms__inner__header {
  padding-top: 5.6rem;
  border-top: 1px solid var(--preto-puro-20, rgba(0, 0, 0, 0.2));
  padding-top: 4rem;
  margin: 0 6.4rem;
}
.contact__forms__inner__header h3 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.contact__forms__inner__header h2 {
  color: #231f20;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.contact__forms__inner__header--unities {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0rem;
}
.contact__forms__inner__header--unities .categories {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact__forms__inner__header--unities .categories li {
  border-radius: 200px;
  border: 1px solid #231f20;
  padding: 0.8rem 2.4rem;
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
.contact__forms__inner__header--unities .categories li:hover, .contact__forms__inner__header--unities .categories li.active {
  background: #f58220;
  border-color: #f58220;
  color: #fff;
}
.contact__forms__inner__header--unities .contact__forms__inner__header__right {
  display: flex;
  gap: 1.6rem;
}
.contact__forms__inner__header--unities .contact__forms__inner__header__right svg {
  cursor: pointer;
}
.contact__forms__inner__header--unities .contact__forms__inner__header__right svg.slick-disabled {
  opacity: 0.5;
}
.contact__forms__inner .unities__unities .loader-send {
  color: #fdf9f5 !important;
}
.contact__forms__inner .unities__unities__gallery .slick-list {
  padding: 0 0rem 0 0rem;
}
.contact__forms__inner .unities__unities__gallery__item__bottom p {
  color: #000;
}
.contact__forms__inner .unities__unities__gallery__item__bottom a {
  color: #000;
}
.contact__forms__inner .unities__unities__gallery__item__bottom .btns .btn {
  background-color: #fff;
}
.contact__forms__inner .unities__unities__gallery__item__bottom .btns svg path {
  fill: black;
}
.contact__forms__inner .unities__unities__gallery__item__bottom .btns .transparent {
  border: 1.5px solid rgba(35, 31, 32, 0.3);
}
.contact__forms__inner .unities__unities__gallery__item__bottom .btns a p {
  color: #fff;
}
.contact__forms__inner .unities__unities__gallery__item__bottom .btns a:first-of-type p {
  color: #000;
}
.contact__forms__inner__cards {
  display: flex;
  gap: 2.4rem;
  margin: 4rem 6.4rem;
}
.contact__forms__inner__cards__card-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #FDF9F5;
  padding: 3.2rem;
}
.contact__forms__inner__cards__card-item .card-title h3 {
  color: #f58220;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.contact__forms__inner__cards__card-item .card-content {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.contact__forms__inner__cards__card-item .card-content p {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.contact__forms__inner__form {
  border-radius: 20px;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #FFF;
  padding: 3.2rem;
  margin: 2rem 0rem 4rem;
}
.contact__forms__inner__form .custom-checkbox {
  margin-bottom: 1rem;
}
.contact__forms__inner__form .custom-checkbox p {
  white-space: nowrap;
}
.contact__forms__inner__form button[type=submit] {
  max-width: 220px;
  margin-left: auto;
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 56px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.contact__forms__inner__unities {
  margin: 4rem 0;
}

@media (max-width: 900px) {
  .contact__forms {
    padding: 3.2rem 0;
  }
  .contact__forms__inner__header {
    padding-top: 3.2rem;
    margin: 0 3.2rem;
  }
  .contact__forms__inner__header h2 {
    font-size: 3rem;
    line-height: 133.514%;
  }
  .contact__forms__inner__header--unities .categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100vw;
    padding-right: 6.4rem;
  }
  .contact__forms__inner__header--unities .categories::-webkit-scrollbar {
    display: none;
  }
  .contact__forms__inner__header--unities .categories li {
    white-space: nowrap;
    min-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact__forms__inner__header--unities .contact__forms__inner__form .custom-checkbox p {
    white-space: normal !important;
  }
  .contact__forms__inner__header--unities .contact__forms__inner__header__right {
    display: none;
  }
  .contact__forms__inner__cards {
    flex-direction: column;
    margin: 3.2rem;
  }
  .contact__forms__inner__form {
    padding: 3.2rem;
    margin: 2rem 3.2rem;
    margin: 2rem 0rem;
  }
  .contact__forms__inner__form .custom-checkbox p {
    white-space: normal !important;
  }
  .contact__forms__inner__unities {
    margin: 3.2rem 0;
  }
}
.label-error {
  color: red !important;
  font-weight: bold !important;
}

.contact__parallax {
  position: relative;
  overflow: hidden;
  height: 65vh;
  background-color: #231f20;
}
.contact__parallax__container {
  height: 100%;
}
.contact__parallax__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .contact__parallax {
    height: 350px;
  }
}
.contact__faq__container {
  background: #231f20;
  position: relative;
  z-index: 2;
  padding: 5.6rem 6.4rem;
}
.contact__faq__inner {
  border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  padding-top: 4rem;
  display: flex;
  gap: 10rem;
}
.contact__faq__inner__content {
  width: 35%;
}
.contact__faq__inner__content h3 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.contact__faq__inner__content h2 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.contact__faq__inner__accordion {
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contact__faq__inner__accordion__item {
  border-bottom: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  padding-bottom: 2.4rem;
  position: relative;
  cursor: pointer;
}
.contact__faq__inner__accordion__item h3 {
  color: #fdf9f5;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.contact__faq__inner__accordion__item p {
  margin-top: 1.4rem;
  color: var(--branco-60, rgba(255, 255, 255, 0.6));
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 164.286% */
  max-width: 80%;
  display: none;
}
.contact__faq__inner__accordion__item svg {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.contact__faq__inner__accordion__item svg.minus {
  opacity: 0;
}
.contact__faq__inner__accordion__item svg.plus {
  opacity: 1;
}
.contact__faq__inner__accordion__item.active svg.plus {
  opacity: 0;
}
.contact__faq__inner__accordion__item.active svg.minus {
  opacity: 1;
}

@media (max-width: 900px) {
  .contact__faq__container {
    padding: 3.2rem;
  }
  .contact__faq__inner {
    padding-top: 3.2rem;
    flex-direction: column;
    gap: 4rem;
  }
  .contact__faq__inner__content {
    width: 100%;
  }
  .contact__faq__inner__content h2 {
    font-size: 3rem;
    line-height: 133.514%;
  }
  .contact__faq__inner__accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
  .contact__faq__inner__accordion__item p {
    max-width: 90%;
  }
}
.carrer__banner {
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #231f20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carrer__banner::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -134px;
  top: 13px;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  width: 281px;
  height: 281px;
}
.carrer__banner::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -134px;
  top: 90vh;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  width: 281px;
  height: 281px;
}
.carrer__banner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.carrer__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.carrer__banner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.carrer__banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 5rem;
}
.carrer__banner__content h1 {
  color: #fdf9f5;
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.carrer__banner__content .btn {
  gap: 5rem;
}
.carrer__banner__marquee {
  position: absolute;
  bottom: 8rem;
  left: 0;
  width: 100%;
  height: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 5rem;
}
.carrer__banner__marquee__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.carrer__banner__marquee__item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2.4rem;
}
.carrer__banner__marquee__item h2 {
  color: rgba(255, 255, 255, 0.2);
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}
.carrer__banner__marquee__item h2 strong {
  color: #f58220;
  font-weight: normal;
}

@media (max-width: 900px) {
  .carrer__banner {
    overflow: hidden;
  }
  .carrer__banner__top {
    left: 3.2rem;
    top: 15rem;
    width: calc(100% - 3.2rem);
    border-top: none;
  }
  .carrer__banner__top::before {
    display: none;
  }
  .carrer__banner__content {
    padding: 10rem 3.2rem;
  }
  .carrer__banner__content h1 {
    font-size: 3rem;
    line-height: 133.514%;
  }
  .carrer__banner__marquee {
    overflow: hidden;
  }
}
.carrer__video {
  position: sticky;
  height: 100vh;
  top: 0;
}
.carrer__video svg {
  position: absolute;
  left: 0;
  top: 0;
}
.carrer__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carrer__concept {
  position: sticky;
  top: 0;
  height: 100vh;
}
.carrer__concept__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carrer__concept__content {
  height: 100%;
  width: calc(100% - 12.8rem);
  position: relative;
  margin: 7rem 6.4rem;
  padding: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4rem;
  z-index: 3;
}
.carrer__concept__content h3 {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.carrer__concept__content h2 {
  color: #fdf9f5;
  text-align: center;
  font-family: "Barlow Semi Condensed";
  font-size: 18.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 14.8rem; /* 81.768% */
}
.carrer__concept__image {
  position: absolute;
  inset: 0;
}
.carrer__concept__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carrer__concept__parallax {
  position: absolute;
  inset: 0;
}
.carrer__concept__parallax img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

@media (max-width: 900px) {
  .carrer__concept {
    overflow: hidden;
  }
  .carrer__concept__content {
    width: calc(100% - 6.4rem);
    margin: 12rem 3.2rem;
  }
  .carrer__concept__content h2 {
    font-size: 8.5rem;
    line-height: 81.768%;
  }
}
.carrer__values {
  background-color: #fdf9f5;
  z-index: 2;
  position: relative;
  padding-top: 8rem;
}
.carrer__values::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 6.4rem;
  width: calc(100% - 12.8rem);
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
}
.carrer__values .btn_values .carrer__banner__content {
  width: 65% !important;
}
.carrer__values .btn_values .carrer__banner__content h1 {
  text-align: center;
}
.carrer__values .btn_values .carrer__banner__content a {
  margin: 0 auto;
}
.carrer__values__inner {
  padding: 4rem 0 0;
  margin: 0 auto;
}
.carrer__values__inner h2 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-left: 6.4rem;
}
.carrer__values__content {
  display: flex;
}
.carrer__values__content__left {
  position: sticky;
  top: 8rem;
  flex: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.carrer__values__content__left h3 {
  margin: 2.5rem 0;
  color: #231f20;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
  max-width: 85%;
  margin-left: 6.4rem;
}
.carrer__values__content__left .effect {
  position: absolute;
  left: 0rem;
  bottom: -10rem;
  width: 100%;
}
.carrer__values__content__left .effect svg {
  width: 100%;
  height: 100%;
  display: block;
}
.carrer__values__content__left img {
  width: 100%;
  max-width: 425px;
  display: block;
  position: relative;
  margin-top: auto;
  margin-left: 12.8rem;
}
.carrer__values__content__right {
  flex: 1;
  margin: 0 6.4rem;
}
.carrer__values__content__right ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.carrer__values__content__right ul li {
  gap: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(35, 31, 32, 0.3);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.carrer__values__content__right ul li h3 {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.carrer__values__content__right ul li p {
  color: #231f20;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.carrer__values__content__right ul li:hover {
  border-color: #f58220;
}
.carrer__values__content__right .btn-values {
  width: 100%;
  padding: 31.5px 0px;
  justify-content: left;
  display: flex;
}

@media (max-width: 900px) {
  .carrer__values {
    padding-top: 3.2rem;
  }
  .carrer__values .btn_values .carrer__banner__top {
    top: 3rem;
  }
  .carrer__values .btn_values .carrer__banner__content {
    width: 100% !important;
  }
  .carrer__values .btn_values .carrer__banner__content h1 {
    text-align: center;
  }
  .carrer__values .btn_values .carrer__banner__content a {
    margin: 0 auto;
  }
  .carrer__values::before {
    top: 3.2rem;
    left: 3.2rem;
    width: calc(100% - 6.4rem);
  }
  .carrer__values__inner {
    padding: 3.2rem 0 0 0;
  }
  .carrer__values__inner h2 {
    margin-left: 3.2rem;
  }
  .carrer__values__content {
    flex-direction: column;
  }
  .carrer__values__content__left {
    position: relative;
    top: unset;
    flex: 1;
    height: auto;
  }
  .carrer__values__content__left h3 {
    font-size: 3rem;
    line-height: 133.514%;
    max-width: 80%;
    margin-left: 3.2rem;
  }
  .carrer__values__content__left img {
    margin-left: 0rem;
  }
  .carrer__values__content__right {
    flex: 1;
    margin: 3.2rem;
  }
  .carrer__values__content__right ul {
    grid-template-columns: 1fr;
  }
}
.carrer__jobs {
  padding: 6.4rem 6.4rem 0;
  background-color: #231f20;
  position: relative;
  overflow: hidden;
}
.carrer__jobs::after {
  content: "";
  border-radius: 50%;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  position: absolute;
  top: 0;
  left: -140px;
  width: 281px;
  height: 281px;
  pointer-events: none;
}
.carrer__jobs::before {
  content: "";
  border-radius: 50%;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  position: absolute;
  top: 0;
  right: -182px;
  width: 364px;
  height: 364px;
  pointer-events: none;
}
.carrer__jobs__inner {
  border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  padding-top: 4rem;
}
.carrer__jobs__top h3 {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.carrer__jobs__top h2 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.carrer__jobs__content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 5.6rem 0;
}
.carrer__jobs__content__item {
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.3rem;
  gap: 2.5rem;
}
.carrer__jobs__content__item h3 {
  flex: 2;
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.carrer__jobs__content__item p {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.carrer__jobs__content__item p svg {
  margin-left: 2.4rem;
}
.carrer__jobs__content__item:hover {
  background-color: #fdf9f5;
}
.carrer__jobs__content__item:hover h3, .carrer__jobs__content__item:hover p {
  color: #231f20;
}

@media (max-width: 900px) {
  .carrer__jobs {
    padding: 3.2rem 3.2rem 0;
  }
  .carrer__jobs__inner {
    border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
    padding-top: 4rem;
  }
  .carrer__jobs__top h2 {
    font-size: 3rem;
    line-height: 133.514%;
    letter-spacing: -0.37px;
  }
  .carrer__jobs__content {
    padding: 3.2rem 0 0;
  }
  .carrer__jobs__content__item {
    position: relative;
    z-index: 2;
  }
  .carrer__jobs__content__item h3 {
    flex: 2;
    color: #fdf9f5;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.74rem; /* 130.476% */
    letter-spacing: -0.42px;
  }
  .carrer__jobs__content__item p {
    color: #fdf9f5;
    font-size: 1rem;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .carrer__jobs__content__item p svg {
    margin-left: 1rem;
  }
  .carrer__jobs__content__item:hover {
    background-color: #fdf9f5;
  }
  .carrer__jobs__content__item:hover h3, .carrer__jobs__content__item:hover p {
    color: #231f20;
  }
}
.news__banner {
  position: relative;
  padding: 10rem 3.2rem;
}
.news__banner__top {
  border-top: 1px solid var(--preto-puro-20, rgba(0, 0, 0, 0.2));
  z-index: 2;
  position: relative;
  margin-bottom: 4rem;
}
.news__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.news__banner__top h2 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.news__banner__categories ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--preto-puro-20, rgba(0, 0, 0, 0.2));
}
.news__banner__categories ul li {
  flex: 1;
}
.news__banner__categories ul li a {
  display: block;
  color: #231f20;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
  padding-bottom: 2.4rem;
}
.news__banner__categories ul li:hover a, .news__banner__categories ul li.active a {
  font-weight: 700;
  border-bottom: 1px solid #f58220;
}
.news__banner__highlight {
  display: flex;
  margin-top: 2.4rem;
  gap: 2.4rem;
}
.news__banner__highlight__left {
  flex: 2;
}
.news__banner__highlight__left a {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.news__banner__highlight__left a .top img {
  width: 100%;
  border-radius: 12px;
  max-height: 82vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__banner__highlight__left a .bottom {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.news__banner__highlight__left a .bottom .date {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.news__banner__highlight__left a .bottom h2 {
  color: #231f20;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem;
  letter-spacing: -0.27px;
}
.news__banner__highlight__right {
  flex: 1;
}
.news__banner__highlight__right h3 {
  color: #231f20;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem;
  letter-spacing: -0.27px;
  margin-bottom: 2rem;
}
.news__banner__highlight__right__item {
  display: flex;
  gap: 2.4rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--preto-puro-20, rgba(0, 0, 0, 0.2));
}
.news__banner__highlight__right__item:last-child {
  border-bottom: none;
}
.news__banner__highlight__right__item img {
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.news__banner__highlight__right__item .content {
  width: 60%;
}
.news__banner__highlight__right__item .content p {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.news__banner__highlight__right__item .content h2 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6rem;
}
.news__banner--category {
  padding-bottom: 2.4rem;
}

@media (max-width: 900px) {
  .news__banner {
    padding: 15rem 3.2rem 3.2rem;
  }
  .news__banner__top {
    border-top: none;
  }
  .news__banner__top::before {
    display: none;
  }
  .news__banner__categories {
    overflow-x: hidden;
  }
  .news__banner__categories ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.4rem;
  }
  .news__banner__categories ul li {
    flex: 1;
    white-space: nowrap;
  }
  .news__banner__highlight {
    flex-direction: column;
  }
  .news__banner__highlight__left {
    flex: 1;
  }
}
.news__list {
  position: relative;
  z-index: 2;
  padding-bottom: 8rem;
  margin-top: 5rem;
}
.news__list__top {
  width: calc(100% - 6.4rem);
  margin: 0 auto;
  border-top: 1px solid var(--preto-puro-20, rgba(0, 0, 0, 0.2));
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
.news__list__top__left h3 {
  color: #231f20;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem; /* 131.111% */
  letter-spacing: -0.27px;
}
.news__list__top__right {
  display: flex;
  gap: 1.6rem;
}
.news__list__top__right svg {
  cursor: pointer;
}
.news__list__top__right svg.slick-disabled {
  opacity: 0.5;
}
.news__list__gallery__slider .slick-list {
  padding: 0 5rem 0 1rem;
}
.news__list__gallery__slider .slick-track {
  display: flex;
  gap: 2.4rem;
}
.news__list__gallery__item {
  display: flex !important;
  flex-direction: column;
  height: auto;
}
.news__list__gallery__item__top {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: max(35vh, 275px);
}
.news__list__gallery__item__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.news__list__gallery__item__top .hover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #f58220;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.6rem;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news__list__gallery__item__bottom {
  flex: unset;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 2.4rem;
  flex: 1;
}
.news__list__gallery__item__bottom p {
  color: #58595b;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.news__list__gallery__item__bottom h4 {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.news__list__gallery__item:hover .hover {
  opacity: 1;
}
.news__list__gallery__item:hover img {
  transform: scale(1.1);
}
.news__list__gallery__item:hover .unities__events__gallery__item__top .hover {
  opacity: 1;
}
.news__list__gallery__item:hover .unities__events__gallery__item__top img {
  transform: scale(1.1);
}
.news__list--category {
  margin: 0;
  padding: 0;
}
.news__list--category .news__list__gallery__slider {
  padding: 0 3.2rem 6.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.news__list__pagination {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
}
.news__list__pagination .spinner {
  width: 4rem;
  height: 4rem;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #f58220;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.news__list__pagination.active {
  display: flex;
}

@media (max-width: 900px) {
  .news__list--category {
    padding: 0;
  }
  .news__list--category .news__list__gallery__slider {
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
  }
}
.news__report {
  overflow: hidden;
}
.news__report__inner {
  position: relative;
  height: 100vh;
  width: 100%;
  padding: 8rem 0 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news__report__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news__report__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__report__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}
.news__report__bg::after {
  content: "";
  width: 338px;
  height: 338px;
  border-radius: 338px;
  background: #f58220;
  filter: blur(300px) opacity(0.2);
  position: absolute;
  right: -103px;
  bottom: -234px;
}
.news__report__top {
  width: calc(100% - 6.4rem);
  margin: 0 auto;
  border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  position: relative;
  z-index: 2;
}
.news__report__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  border-bottom: 1px solid #f58220;
}
.news__report__top__left h3 {
  color: #fdf9f5;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem; /* 131.111% */
  letter-spacing: -0.27px;
  margin-bottom: 1rem;
}
.news__report__top__left p {
  color: #fdf9f5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 164.286% */
}
.news__report__top__right {
  display: flex;
  gap: 1.6rem;
}
.news__report__top__right svg {
  cursor: pointer;
}
.news__report__top__right svg.slick-disabled {
  opacity: 0.5;
}
.news__report__gallery {
  margin: 0 auto;
  z-index: 2;
  position: relative;
  width: 100%;
}
.news__report__gallery__slider .slick-list {
  padding: 0 5rem 0 1rem;
}
.news__report__gallery__slider .slick-track {
  display: flex;
  gap: 1.6rem;
  padding-top: 2.4rem;
}
.news__report__gallery__item {
  border-radius: 12px;
  border: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  padding: 3.2rem;
  display: flex !important;
  flex-direction: column;
  height: auto;
  min-height: 315px;
}
.news__report__gallery__item p {
  color: #f58220;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
}
.news__report__gallery__item h3 {
  flex: 1;
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.7rem; /* 130.476% */
  letter-spacing: -0.42px;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
}
.news__report__gallery__item:hover {
  border-color: #f58220;
}

@media (max-width: 900px) {
  .news__report__inner {
    padding: 5rem 0;
    height: 100%;
  }
  .news__report__top {
    gap: 2.4rem;
  }
  .news__report__top__right svg {
    width: 40px;
    height: 40px;
  }
  .news__report__gallery {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    width: 100%;
  }
  .news__report__gallery__slider .slick-list {
    padding: 0 10rem 0 1.6rem;
  }
  .news__report__gallery__slider .slick-track {
    display: flex;
    gap: 1.6rem;
    padding-top: 2.4rem;
  }
}
.news__events {
  position: relative;
  z-index: 2;
  padding: 5.6rem 0 0;
  background-color: #231f20;
  overflow: hidden;
}
.news__events::after {
  content: "";
  position: absolute;
  right: -103px;
  top: -115px;
  border-radius: 338px;
  background: #f58220;
  filter: blur(300px);
  width: 338px;
  height: 338px;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .news__events::after {
    opacity: 0.1;
  }
}
.news__events::before {
  content: "";
  background: #f58220;
  filter: blur(300px);
  width: 226px;
  height: 226px;
  pointer-events: none;
  position: absolute;
  left: -99px;
  top: -1px;
  z-index: 1;
}
@-moz-document url-prefix() {
  .news__events::before {
    opacity: 0.1;
  }
}
.news__events__top {
  width: calc(100% - 12.8rem);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
}
.news__events__top__left h2 {
  color: #fdf9f5;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.54rem; /* 131.111% */
  letter-spacing: -0.27px;
}
.news__events__top__right {
  display: flex;
  gap: 1.6rem;
}
.news__events__top__right svg {
  cursor: pointer;
}
.news__events__top__right svg.slick-disabled {
  opacity: 0.5;
}
.news__events__gallery__slider .slick-list {
  padding: 0 8rem 0 4rem;
}
.news__events__gallery__slider .slick-track {
  display: flex;
  gap: 2.4rem;
}
.news__events__gallery__item {
  display: flex !important;
  flex-direction: column;
  height: auto;
}
.news__events__gallery__item__top {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: max(35vh, 275px);
}
.news__events__gallery__item__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.news__events__gallery__item__top .hover {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #f58220;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.6rem;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news__events__gallery__item__bottom {
  flex: unset;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 2.4rem;
}
.news__events__gallery__item__bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.news__events__gallery__item__bottom h4 {
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.news__events__gallery__item:hover .hover {
  opacity: 1;
}
.news__events__gallery__item:hover img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .news__events__top {
    width: calc(100% - 6.4rem);
  }
  .news__events__gallery__slider .slick-list {
    padding: 0 3.2rem 0 1.6rem;
  }
}
.news-detail__banner {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 4.8rem 3.2rem;
  overflow: hidden;
}
.news-detail__banner__bg {
  position: absolute;
  inset: 0;
}
.news-detail__banner__bg video, .news-detail__banner__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail__banner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}
.news-detail__banner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  display: flex;
  gap: 1rem;
  padding-top: 2.4rem;
  align-items: center;
}
.news-detail__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.news-detail__banner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.news-detail__banner__top h2 a {
  display: flex;
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.news-detail__banner__content {
  position: relative;
  z-index: 1;
  max-width: 778px;
  width: 100%;
}
.news-detail__banner__content .row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.news-detail__banner__content .row .cat {
  color: #fdf9f5;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  padding: 0 1.6rem;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-detail__banner__content .row .date {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.news-detail__banner__content h1 {
  color: #fdf9f5;
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 900px) {
  .news-detail__banner {
    padding: 15rem 3.2rem 3.2rem;
  }
  .news-detail__banner__top {
    top: 15rem;
    border-top: none;
  }
  .news-detail__banner__top::before {
    display: none;
  }
  .news-detail__banner__content h1 {
    font-size: 3.7rem;
  }
}
.news-detail__content {
  padding: 7rem 0;
  background-color: #fdf9f5;
  position: relative;
  z-index: 1;
}
.news-detail__content__container {
  max-width: 850px;
  margin: 2.4rem auto 2.4rem;
  line-height: 32px;
}
.news-detail__content__container h2 {
  color: #000;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem;
  letter-spacing: -0.37px;
  max-width: 850px;
  margin: 0 auto 5.4rem;
}
.news-detail__content__container p,
.news-detail__content__container li {
  color: #000;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.2rem;
  max-width: 850px;
  margin: 2.4rem auto;
}
.news-detail__content__container blockquote {
  font-size: 2.4rem;
  font-style: italic;
  line-height: 3.2rem;
  padding-left: 2.4rem;
  border-left: 2px solid #f58220;
  max-width: 850px;
  margin: 2.4rem auto;
}
.news-detail__content__container ul {
  max-width: 850px;
  margin: 2.4rem auto 2.4rem;
}
.news-detail__content__container ul li {
  list-style-type: disc;
  margin: 0;
}
.news-detail__content__share {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
  padding-top: 2.4rem;
  margin-top: 4rem;
  justify-content: space-between;
}
.news-detail__content__share p {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.news-detail__content__share ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 900px) {
  .news-detail__content {
    padding: 4rem 0 1rem;
  }
  .news-detail__content__share {
    padding: 1.4rem 6.4rem 0px 6.4rem;
  }
  .news-detail__content__container {
    padding: 0rem 3rem;
  }
}
.news-detail__gallery {
  position: relative;
  z-index: 2;
  background-color: #fdf9f5;
  padding: 5rem 0;
}
.news-detail__gallery__top {
  width: calc(100% - 6.4rem);
  margin: 0 auto;
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
  z-index: 2;
  margin-bottom: 5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 4rem;
}
.news-detail__gallery__top__right {
  display: flex;
  gap: 1.6rem;
}
.news-detail__gallery__top__right svg {
  cursor: pointer;
}
.news-detail__gallery__top__right svg.slick-disabled {
  opacity: 0.5;
}
.news-detail__gallery__items__slider .slick-list {
  padding: 0 8rem 0 1rem;
}
.news-detail__gallery__items__slider .slick-track {
  display: flex;
  gap: 2.4rem;
}
.news-detail__gallery__items__item {
  display: flex !important;
  flex-direction: column;
  height: auto;
}
.news-detail__gallery__items__item__top {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.news-detail__gallery__items__item__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.news-detail__gallery__items__item__top h3 {
  position: absolute;
  color: #fdf9f5;
  bottom: 1.6rem;
  left: 1.6rem;
  font-family: "Barlow Semi Condensed";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.54rem; /* 177% */
  bottom: 2.2rem;
  left: 3.2rem;
}
.news-detail__gallery__items__item__bottom {
  flex: unset;
  display: flex;
  gap: 1.6rem;
  padding-top: 2.4rem;
}
.news-detail__gallery__items__item__bottom span {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.news-detail__gallery__items__item__bottom p {
  color: #231f20;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.1rem; /* 161.538% */
  max-width: 85%;
}
.news-detail__gallery__items__item:hover .news-detail__gallery__items__item__top img {
  transform: scale(1.1);
}

.news-detail__read-more {
  background-color: #fdf9f5;
  position: relative;
  z-index: 2;
}
.news-detail__read-more .news__list {
  margin-top: 0;
}

.product-detail__banner {
  position: relative;
  min-height: 100vh;
}
.product-detail__banner__inner {
  padding: 4.8rem 3.2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.product-detail__banner__inner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.product-detail__banner__inner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
.product-detail__banner__inner__bg video, .product-detail__banner__inner__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail__banner__inner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  display: flex;
  gap: 1rem;
  padding-top: 2.4rem;
}
.product-detail__banner__inner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.product-detail__banner__inner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.product-detail__banner__inner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.product-detail__banner__inner__content .row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8rem;
}
.product-detail__banner__inner__content .row .item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product-detail__banner__inner__content .row .item h3 {
  color: #fdf9f5;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.7rem;
}
.product-detail__banner__inner__content .row .item p {
  color: var(--branco-60, rgba(255, 255, 255, 0.6));
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8rem;
}
.product-detail__banner__inner__content h1 {
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.7rem;
  letter-spacing: -0.42px;
}
.product-detail__banner__inner__content .highlight {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem;
  letter-spacing: -0.37px;
  background-color: #231f20;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.25rem 2.4rem;
  position: relative;
}
.product-detail__banner__inner__content .highlight::before {
  content: "";
  position: absolute;
  background-color: #f58220;
  left: 0.8rem;
  top: 0.8rem;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.product-detail__banner__inner__content .btn {
  flex: 1;
  margin-left: auto;
  max-width: 265px;
}

@media (max-width: 900px) {
  .product-detail__banner__inner {
    padding: 3.2rem;
  }
  .product-detail__banner__inner__top {
    top: 15rem;
    border-top: none;
  }
  .product-detail__banner__inner__top::before {
    display: none;
  }
  .product-detail__banner__inner__top h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-detail__banner__inner__bg video {
    display: none;
  }
  .product-detail__banner__inner__bg img {
    display: block;
  }
  .product-detail__banner__inner__content .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 0rem;
    flex-direction: column;
  }
  .product-detail__banner__inner__content .row .item h3 {
    text-align: center;
  }
  .product-detail__banner__inner__content h1 {
    font-size: 1.8rem;
  }
  .product-detail__banner__inner__content .highlight {
    font-size: 2.4rem;
    padding: 1.25rem 2.4rem;
  }
  .product-detail__banner__inner__content .item {
    flex: 1 0 70px;
  }
  .product-detail__banner__inner__content .btn {
    flex: 1 auto;
    margin-left: 0;
  }
}
.product-detail__text-blocks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f58220;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: transform, clip-path;
}
.product-detail__text-blocks::before {
  content: "";
  border-radius: 50%;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  position: absolute;
  right: -150px;
  top: -150px;
  width: 364px;
  height: 364px;
  display: none;
  transition: transform 0.3s ease;
  will-change: transform;
}
.product-detail__text-blocks::after {
  content: "";
  border-radius: 50%;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
  position: absolute;
  left: -140px;
  top: 50%;
  width: 281px;
  height: 281px;
  display: none;
  transition: transform 0.3s ease;
  will-change: transform;
}
.product-detail__text-blocks__content {
  display: flex;
  padding: 10rem 10rem 0;
  gap: 10rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}
.product-detail__text-blocks__title {
  color: #231f20;
  font-size: 5.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 40%;
  position: relative;
}
.product-detail__text-blocks__title strong {
  color: #fdf9f5;
  font-weight: 400;
}
.product-detail__text-blocks__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2rem;
  width: 70px;
  border-bottom: 2px solid #231f20;
}
.product-detail__text-blocks__description {
  width: 60%;
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.6rem;
  /* 144.444% */
}
.product-detail__text-blocks__image {
  margin-top: auto;
}
.product-detail__text-blocks__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  will-change: transform;
}
.product-detail__text-blocks.is-dark {
  background-color: #231f20;
}
.product-detail__text-blocks.is-dark::before {
  display: block;
}
.product-detail__text-blocks.is-dark::after {
  display: block;
}
.product-detail__text-blocks.is-dark .product-detail__text-blocks__title {
  color: #fdf9f5;
}
.product-detail__text-blocks.is-dark .product-detail__text-blocks__title::before {
  border-color: #f58220;
}
.product-detail__text-blocks.is-dark .product-detail__text-blocks__description {
  color: #fdf9f5;
}
.product-detail__text-blocks.is-white {
  background-color: #fdf9f5;
}
.product-detail__text-blocks.is-white::before {
  display: block;
}
.product-detail__text-blocks.is-white::after {
  display: block;
}
.product-detail__text-blocks.is-white .product-detail__text-blocks__title::before {
  border-color: #f58220;
}
.product-detail__text-blocks.no-img {
  justify-content: center;
}
.product-detail__text-blocks.no-img .product-detail__text-blocks__content {
  padding: 20rem 10rem;
}

@media (max-width: 900px) {
  .product-detail__text-blocks__content {
    display: flex;
    flex-direction: column;
    padding: 6rem 3.2rem 0;
    gap: 2rem;
  }
  .product-detail__text-blocks__title {
    font-size: 2.4rem;
    width: 100%;
  }
  .product-detail__text-blocks__description {
    width: 100%;
  }
  .product-detail__text-blocks__image {
    margin-top: 2.5rem;
  }
  .product-detail__text-blocks.no-img .product-detail__text-blocks__content {
    padding: 20rem 3.2rem;
  }
}
.product-detail__text-image-blocks {
  display: flex;
  background-color: #231f20;
  padding: 6.4rem;
}
.product-detail__text-image-blocks__text {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail__text-image-blocks__text .inner {
  padding: 16rem 16rem 16rem 9.6rem;
}
.product-detail__text-image-blocks__text .inner h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem; /* 177% */
}
.product-detail__text-image-blocks__text .inner p {
  color: var(--branco-60, rgba(255, 255, 255, 0.6));
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.product-detail__text-image-blocks__image {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail__text-image-blocks__image img {
  width: 100%;
  height: 80%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail__text-image-blocks.reverse {
  flex-direction: row-reverse;
}
.product-detail__text-image-blocks.reverse .product-detail__text-image-blocks__text .inner {
  padding: 16rem 9.6rem 16rem 16rem;
}

@media (max-width: 900px) {
  .product-detail__text-image-blocks {
    flex-direction: column-reverse;
    padding: 3.2rem;
    justify-content: flex-end;
  }
  .product-detail__text-image-blocks__text {
    width: 100%;
  }
  .product-detail__text-image-blocks__text .inner {
    padding: 0;
  }
  .product-detail__text-image-blocks__image {
    width: 100%;
  }
  .product-detail__text-image-blocks.reverse {
    flex-direction: column-reverse;
  }
  .product-detail__text-image-blocks.reverse .product-detail__text-image-blocks__text .inner {
    padding: 0;
  }
}
.products-differential-blocks__bg {
  background-color: #231f20;
  height: calc(100% - 20px);
  padding: 1.6rem;
}
.products-differential-blocks__bg img, .products-differential-blocks__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
.products-differential-blocks__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: absolute;
  left: 4rem;
  bottom: calc(4rem + 40px);
  width: 100%;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  padding: 3.2rem;
  max-width: 320px;
}
.products-differential-blocks__content::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  width: 25px;
  height: 25px;
  background: #f58220;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
}
.products-differential-blocks__content-title h2 {
  color: #fff;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem; /* 131.111% */
  letter-spacing: -0.27px;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.products-differential-blocks__content-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.products-differential-blocks.content-right .products-differential-blocks__content {
  left: auto;
  right: 4rem;
}

@media (max-width: 900px) {
  .products-differential-blocks__content {
    left: 3.2rem;
    bottom: 8rem;
    width: calc(100% - 6.4rem);
  }
  .products-differential-blocks.content-right .products-differential-blocks__content {
    right: 3.2rem;
  }
}
.product-detail__differential-items {
  background-color: #231f20;
}
.product-detail__differential-items__inner {
  width: calc(100% - 12.8rem);
  margin: 0 auto;
  padding: 4rem 0 10rem;
  border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  border-bottom: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
}
.product-detail__differential-items__title h2 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem; /* 133.514% */
  letter-spacing: -0.37px;
  margin-bottom: 4.5rem;
}
.product-detail__differential-items__items {
  display: flex;
  gap: 4rem;
}
.product-detail__differential-items__item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  padding-right: 3px !important;
}
.product-detail__differential-items__item h3 {
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.7rem; /* 130.476% */
  letter-spacing: -0.42px;
}
.product-detail__differential-items__item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}

@media (max-width: 900px) {
  .product-detail__differential-items__inner {
    width: calc(100% - 6.4rem);
    padding: 3.2rem 0 6.4rem;
  }
  .product-detail__differential-items__title h2 {
    font-size: 3rem;
  }
  .product-detail__differential-items__items {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.product-detail__video {
  position: relative;
  min-height: 100vh;
}
.product-detail__video__inner {
  padding: 4.8rem 3.2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.product-detail__video__inner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.product-detail__video__inner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
.product-detail__video__inner__bg video, .product-detail__video__inner__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail__video__inner__bg img {
  display: none;
}
.product-detail__video__inner__top {
  position: absolute;
  left: 3.2rem;
  top: 4rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(35, 31, 32, 0.3);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2.4rem;
}
.product-detail__video__inner__top h3 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.product-detail__video__inner__top h2 {
  color: #231f20;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.product-detail__video__inner__content {
  position: absolute;
  left: 6.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 2.4rem;
  border-radius: 6px;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background: #FFF;
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.6rem; /* 162.5% */
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.product-detail__video__inner__content:hover {
  background: #f58220;
  color: #FFF;
}
.product-detail__video__inner__content:hover .icon circle {
  fill: #FFF;
}
.product-detail__video__inner__content:hover .arrow path {
  fill: #FFF;
}
.product-detail__video__inner__content.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .product-detail__video {
    min-height: 0;
  }
  .product-detail__video__inner {
    height: auto;
    position: unset;
    padding: 20rem 3.2rem;
  }
  .product-detail__video__inner__top h2 {
    font-size: 3rem;
    line-height: 120%;
  }
}
.product-detail__kw-360 {
  background: #fff;
  overflow: hidden;
}
.product-detail__kw-360__container {
  display: flex;
  flex-direction: column;
  padding: 8rem 6.4rem;
}
.product-detail__kw-360__top {
  padding-top: 4rem;
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
}
.product-detail__kw-360__top h3 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.product-detail__kw-360__top h2 {
  color: #231f20;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.product-detail__kw-360__content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 10rem 0;
}
.product-detail__kw-360__content .col {
  flex: 1;
}
.product-detail__kw-360__content .col.radar {
  position: relative;
  flex: 2;
  display: flex;
  justify-content: center;
}
.product-detail__kw-360__content .col.radar .sonar-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
}
.product-detail__kw-360__content .col.radar .sonar-wrapper .sonar-emitter {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.product-detail__kw-360__content .col.radar .sonar-wrapper .sonar-emitter img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.product-detail__kw-360__content .col.radar .sonar-wrapper .ring {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: pulse 8s linear infinite;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-detail__kw-360__content .col.radar .sonar-wrapper .ring.ring-2 {
  animation-delay: 2000ms;
}
.product-detail__kw-360__content .col.radar .sonar-wrapper .ring.ring-3 {
  animation-delay: 4000ms;
}
.product-detail__kw-360__content .col.radar .sonar-wrapper .ring.ring-4 {
  animation-delay: 6000ms;
}
.product-detail__kw-360__content .col ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.product-detail__kw-360__content .col ul li h3 {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.7rem; /* 130.476% */
  letter-spacing: -0.42px;
  margin-bottom: 1rem;
}
.product-detail__kw-360__content .col ul li p {
  color: #58595b;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem; /* 164.286% */
}
.product-detail__kw-360__cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .product-detail__kw-360__container {
    padding: 3.2rem;
  }
  .product-detail__kw-360__top h2 {
    font-size: 3rem;
    line-height: 120%;
    letter-spacing: -0.37px;
  }
  .product-detail__kw-360__content {
    flex-direction: column;
    padding: 4rem 0;
  }
  .product-detail__kw-360__content .col.radar {
    flex: 1;
  }
  .product-detail__kw-360__content .col.radar .sonar-wrapper {
    width: 200px;
  }
}
.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hidden {
  display: none;
}

.modal-content {
  background-color: #f58220;
  padding: 30px 55px;
  border-radius: 25px;
  min-width: 300px;
  max-width: 90%;
  text-align: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 9999;
}

.modal-content.error {
  background-color: #d9534f;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.close:hover {
  color: #ddd;
}

.product-detail__form-content {
  display: flex;
  gap: 2rem;
  padding: 8rem 6.4rem 0;
  background-color: #231f20;
}
.product-detail__form__left {
  width: 50%;
  position: relative;
}
.product-detail__form__left .bg {
  width: 100%;
  height: 100%;
}
.product-detail__form__left .bg img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.product-detail__form__left__content {
  position: absolute;
  top: 3.2rem;
  left: 3.2rem;
  width: calc(100% - 6.4rem);
  z-index: 2;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.product-detail__form__left__title {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.product-detail__form__left__text {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.9rem; /* 133.514% */
  letter-spacing: -0.37px;
}
.product-detail__form__right {
  width: 50%;
  padding: 7.2rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
}
.product-detail__form__right .form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.product-detail__form__right .form .btn {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 900px) {
  .product-detail__form-content {
    flex-direction: column;
    gap: 2rem;
    padding: 3.2rem 3.2rem 0;
  }
  .product-detail__form__left {
    width: 100%;
  }
  .product-detail__form__left__text {
    font-size: 3rem;
    letter-spacing: -0.37px;
  }
  .product-detail__form__right {
    width: 100%;
    padding: 3.2rem;
  }
  .product-detail__form__right .form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .product-detail__form__right .form .btn {
    width: 100%;
  }
}
.esg__banner {
  position: relative;
  padding: 10rem 0 0;
  background-color: #fdf9f5;
}
.esg__banner::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: -5rem;
  width: 281px;
  height: 281px;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
}
.esg__banner::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 281px;
  height: 281px;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.2);
}
.esg__banner__top {
  border-top: 1px solid var(--preto-puro-20, rgba(0, 0, 0, 0.2));
  z-index: 2;
  position: relative;
  margin-bottom: 4rem;
  width: calc(100% - 6.4rem);
  margin: 0 auto;
}
.esg__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.esg__banner__top h2 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
  padding-top: 2.4rem;
}
.esg__banner__content {
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}
.esg__banner__content .title {
  color: #231f20;
  text-align: center;
  font-size: 5.2rem;
  line-height: normal;
}
.esg__banner__content .description {
  color: #231f20;
  text-align: center;
  font-size: 1.4rem;
  font-style: normal;
  line-height: 2.3rem;
  max-width: 720px;
}
.esg__banner__content .subtitle {
  width: calc(100% - 12.8rem);
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  text-transform: uppercase;
  padding-top: 4rem;
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
}
.esg__banner__content .highlight {
  color: #231f20;
  text-align: center;
  font-family: "Barlow Semi Condensed";
  font-size: 18.1rem;
  font-weight: 400;
  line-height: 14.8rem;
  margin-top: 2.4rem;
}
.esg__banner__image {
  position: relative;
  height: 700px;
  margin-top: -7rem;
  overflow: hidden;
}
.esg__banner__image .highlight-wrapper {
  position: relative;
  z-index: 3;
}
.esg__banner__image .highlight-wrapper .highlight-white {
  color: #fdf9f5;
  text-align: center;
  font-family: "Barlow Semi Condensed";
  font-size: 18.1rem;
  font-weight: 400;
  line-height: 14.8rem;
  margin-top: 2.4rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -10rem);
  z-index: 2;
}
.esg__banner__image .effect {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  z-index: 1;
}
.esg__banner__image .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.esg__banner__image .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.esg__banner__image .bg-over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.esg__banner__image .bg-over img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .esg__banner {
    padding-top: 15rem;
  }
  .esg__banner__top {
    top: 0rem;
    width: calc(100% - 6.4rem);
    border-top: none;
  }
  .esg__banner__top::before {
    display: none;
  }
  .esg__banner__content {
    padding: 3.2rem;
  }
  .esg__banner__content .title {
    font-size: 4.2rem;
  }
  .esg__banner__content .highlight {
    font-size: 14rem;
  }
  .esg__banner__image {
    height: 300px;
  }
  .esg__banner__image .highlight-wrapper .highlight-white {
    font-size: 14rem;
    top: -3rem;
  }
}
.esg__texts {
  background-color: #231f20;
  padding: 10rem 6.4rem;
  position: relative;
}
.esg__texts::before {
  content: "";
  border-radius: 364px;
  background-color: #f58220;
  filter: blur(350px) opacity(0.2);
  width: 364px;
  height: 364px;
  position: absolute;
  right: -234px;
  top: -26px;
}
.esg__texts__top {
  display: flex;
  gap: 20rem;
  padding: 3.2rem;
}
.esg__texts__top__title h2 {
  color: #fdf9f5;
  font-size: 5.2rem;
  padding-top: 4rem;
  position: relative;
}
.esg__texts__top__title h2::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #f58220;
  width: 70px;
  left: 0;
  top: 0;
}
.esg__texts__top__description p {
  color: #fdf9f5;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem;
}
.esg__texts__top__left {
  width: 50%;
}
.esg__texts__top__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.esg__texts__top__right ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.esg__texts__top__right ul li {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  font-size: 1.4rem;
  color: #fdf9f5;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem;
  letter-spacing: -0.42px;
}
.esg__texts__block {
  display: flex;
  gap: 2.4rem;
  padding: 6.4rem 0;
}
.esg__texts__block__subtitle h3 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 4.94rem;
  letter-spacing: -0.37px;
}
.esg__texts__block__description p {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem;
}
.esg__texts__block__left {
  width: 50%;
}
.esg__texts__block__left img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 465px;
  -o-object-fit: cover;
     object-fit: cover;
}
.esg__texts__block__right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.esg__texts__block__right .inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 320px;
}
.esg__texts__block.reverse {
  flex-direction: row-reverse;
}
.esg__texts__grid h3 {
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  text-transform: uppercase;
  padding-top: 4rem;
  border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  margin-bottom: 3.2rem;
}
.esg__texts__grid ul {
  display: flex;
  gap: 0.8rem;
}
.esg__texts__grid ul li {
  border-radius: 12px;
  border: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 162.5%;
}
.esg__texts.black {
  padding: 0 6.4rem 6.4rem;
  background-color: #fdf9f5;
}
.esg__texts.black::before {
  display: none;
}
.esg__texts.black .esg__texts__block__subtitle h3 {
  color: #231f20;
}
.esg__texts.black .esg__texts__block__description p {
  color: #231f20;
}
.esg__texts.black .esg__texts__grid {
  margin-bottom: 4rem;
}
.esg__texts.black .esg__texts__grid h3 {
  color: #231f20;
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
}
.esg__texts.black .esg__texts__grid ul li {
  color: #231f20;
  border: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
}
.esg__texts.black .esg__texts__grid ul.report {
  flex-direction: column;
}
.esg__texts.black .esg__texts__grid ul.report li {
  padding: 0;
}
.esg__texts.black .esg__texts__grid ul.report li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem;
  overflow: hidden;
  border-radius: 12px;
}
.esg__texts.black .esg__texts__grid ul.report li a .left {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.74rem;
  /* 130.476% */
  letter-spacing: -0.42px;
}
.esg__texts.black .esg__texts__grid ul.report li a .right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  text-transform: uppercase;
}
.esg__texts.black .esg__texts__grid ul.report li a:hover {
  background-color: #f58220;
}
.esg__texts.black .esg__texts__grid ul.report li a:hover .left {
  color: #fdf9f5;
}
.esg__texts.black .esg__texts__grid ul.report li a:hover .right {
  color: #fdf9f5;
}
.esg__texts.black .esg__texts__grid ul.report li a:hover .right svg path {
  stroke: #fdf9f5;
}

@media (max-width: 900px) {
  .esg__texts {
    padding: 3.2rem 0;
  }
  .esg__texts__top {
    flex-direction: column;
    gap: 10rem;
  }
  .esg__texts__top__title h2 {
    font-size: 4.2rem;
  }
  .esg__texts__top__left {
    width: 100%;
  }
  .esg__texts__top__right {
    width: 100%;
  }
  .esg__texts__block {
    flex-direction: column;
    padding: 3.2rem;
  }
  .esg__texts__block__left {
    width: 100%;
  }
  .esg__texts__block__left img {
    min-height: 250px;
  }
  .esg__texts__block__right {
    width: 100%;
  }
  .esg__texts__block.reverse {
    flex-direction: column;
  }
  .esg__texts__grid {
    padding: 0 3.2rem;
  }
  .esg__texts__grid ul {
    flex-direction: column;
  }
  .esg__texts.black {
    padding: 0;
  }
}
.esg__actions-wrapper {
  position: relative;
  height: 100vh;
}
.esg__actions {
  height: 100vh;
  width: 100%;
}
.esg__actions__item {
  position: relative;
}
.esg__actions__title {
  text-align: center;
  font-size: min(10vw, 18.4rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25vh;
  width: calc(100% - 10rem);
  z-index: 5;
}
.esg__actions__details {
  text-align: center;
  position: absolute;
  left: 5rem;
  bottom: 5rem;
  gap: 3.2rem;
  z-index: 5;
}
.esg__actions__timer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 23vh;
  width: calc(100% - 10rem);
  height: 1px;
}
.esg__actions__timer .timer__wrapper {
  position: relative;
}
.esg__actions__timer .timer__baseline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.esg__actions__timer .timer__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #f58220;
  transition: width 0.1s ease-in-out;
}
.esg__actions__arrows {
  position: absolute;
  bottom: 5vh;
  right: 5rem;
  z-index: 3;
  display: flex;
  gap: 2rem;
}
.esg__actions__arrows .arrow {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 5px 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  cursor: pointer;
  transition: 0.3s all ease;
}
.esg__actions__arrows .arrow svg {
  transition: 0.3s all ease;
}
.esg__actions__arrows .arrow:hover {
  background: rgba(255, 255, 255, 0.1);
}
.esg__actions__arrows .arrow:hover svg {
  transform: scale(1.1);
}
.esg__actions__background {
  height: 100vh;
  position: relative;
}
.esg__actions__background img,
.esg__actions__background video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.esg__actions__background:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 2;
}
.esg__actions__dots {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  z-index: 2;
}
.esg__actions__dots .slick-dots {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.esg__actions__dots .slick-dots li {
  height: 10px;
  width: 10px;
  background: red;
}
.esg__actions__dots .slick-dots li.slick-active {
  background: blue;
}

@media (max-width: 900px) {
  .esg__actions-wrapper {
    height: 350px;
  }
  .esg__actions {
    height: 350px;
  }
  .esg__actions__arrows {
    bottom: 3.2rem;
    right: 3.2rem;
    gap: 1rem;
  }
  .esg__actions__arrows .arrow {
    width: 40px;
    height: 40px;
  }
  .esg__actions__background {
    height: 350px;
  }
  .esg__actions__details {
    width: calc(100% - 6.4rem);
    bottom: 3.2rem;
    left: 3.2rem;
  }
  .esg__actions__details p {
    text-align: left;
    line-height: 164.286%;
  }
  .esg__actions__title {
    bottom: 30rem;
    font-size: 8vw;
  }
  .esg__actions__timer {
    width: calc(100% - 6.4rem);
    bottom: 18rem;
  }
}
.esg__projects-done {
  background-color: #231f20;
}
.esg__projects-done h2 {
  font-size: 3.7rem;
  text-transform: none;
  font-weight: 400;
}
.esg__projects-done h3 {
  font-size: 1.5rem;
  font-weight: normal;
}

.esg__projects-done__last {
  background-color: #fdf9f5;
}
.esg__projects-done__last h2 {
  color: #231f20;
  font-size: 3.7rem;
  text-transform: none;
  font-weight: 400;
}
.esg__projects-done__last h3 {
  color: #231f20;
  font-size: 1.5rem;
  font-weight: normal;
}
.esg__projects-done__last span {
  color: #231f20;
}
.esg__projects-done__last p {
  color: #231f20;
  font-family: Barlow;
}

.investors {
  color: #fff;
}
.investors .home__investors {
  padding: 22.1rem 0;
}
.investors .home__investors .btn-orange-2 {
  background: #000;
}
.investors .home__investors .btn-orange-2 svg path {
  fill: #fff;
}

.products__banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  z-index: 2;
}
.products__banner__bg {
  position: absolute;
  inset: 0;
}
.products__banner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.products__banner__bg video,
.products__banner__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.products__banner__top {
  position: absolute;
  left: 3.2rem;
  top: 8.8rem;
  width: calc(100% - 6.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  display: flex;
  gap: 1rem;
  padding-top: 2.4rem;
  align-items: center;
}
.products__banner__top::before {
  content: "";
  left: 0;
  top: 0;
  width: 60px;
  height: 1px;
  background: #f58220;
  position: absolute;
}
.products__banner__top h2 {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  line-height: normal;
  text-transform: uppercase;
}
.products__banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.products__banner__content h1 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 133.514%;
  letter-spacing: -0.37px;
  text-transform: uppercase;
}
.products__banner__content h1 strong {
  color: #f58220;
}

@media (max-width: 900px) {
  .products__banner {
    height: auto;
    min-height: 350px;
    padding-bottom: 6.4rem;
  }
  .products__banner__top {
    top: 15rem;
    border-top: none;
  }
  .products__banner__top::before {
    display: none;
  }
  .products__banner__top h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .products__banner__content {
    align-items: flex-end;
    height: auto;
    min-height: 300px;
  }
  .products__banner__content h1 {
    font-size: 3.2rem;
    padding: 0px 13px;
  }
}
.products__categories {
  background: #231f20;
}
.products__categories__top {
  padding: 9.6rem 6.4rem 6.4rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3.2rem;
  position: relative;
}
.products__categories__top::before {
  content: "";
  position: absolute;
  border-radius: 281px;
  background: #f58220;
  filter: blur(350px) opacity(0.3);
  position: absolute;
  left: 50%;
  top: -40%;
  transform: translateX(-50%);
  width: 281px;
  height: 281px;
}
.products__categories__title h3 {
  color: #fdf9f5;
  font-size: 3.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 133.514%;
  letter-spacing: -0.37px;
  max-width: 765px;
  margin: 0 auto;
}
.products__categories__description p {
  color: #fdf9f5;
  font-family: "Barlow Semi Condensed";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 162.5%;
  max-width: 525px;
  margin: 0 auto;
}
.products__categories__slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 3.2rem 0;
}
.products__categories__slider__items {
  flex: 1;
  min-width: 0;
}
.products__categories__slider__items .slick-track {
  display: flex;
  gap: 1.6rem;
}
.products__categories__slider__item {
  border-radius: 200px;
  white-space: nowrap;
  border: 1px solid #fff;
  padding: 0.8rem 2.4rem;
  color: #fff;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
}
.products__categories__slider__item:hover, .products__categories__slider__item.active {
  background: #f58220;
  border-color: #f58220;
}
.products__categories__slider__arrows {
  display: flex;
  gap: 1.6rem;
}
.products__categories__slider__arrows svg {
  cursor: pointer;
}
.products__categories__slider__arrows svg.slick-disabled {
  opacity: 0.5;
}

@media (max-width: 900px) {
  .products__categories__top {
    padding: 6.4rem 3.2rem;
    gap: 2.4rem;
  }
}
.products__list {
  background: #231f20;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 0 6.4rem 3.2rem;
}
.products__list__category h3 {
  color: #fff;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 35.4px;
  letter-spacing: -0.27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 3.2rem;
  margin-bottom: 2rem;
}
.products__list__category__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.products__list__category__item {
  flex: 1 1 calc(50% - 0.8rem);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  max-height: 570px;
}
.products__list__category__item__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  max-height: 570px;
}
.products__list__category__item__content {
  position: absolute;
  z-index: 2;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  padding: 2.2rem 3.2rem 0;
  right: 3.2rem;
  bottom: 3.2rem;
  width: 330px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transition: 0.3s all ease;
}
.products__list__category__item__content h4 {
  color: #fff;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 27.4px; /* 130.476% */
  letter-spacing: -0.42px;
}
.products__list__category__item__content p {
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.3rem;
  max-height: 0;
  opacity: 0;
}
.products__list__category__item__content .btn-list {
  max-height: 0;
  opacity: 0;
  padding: 0;
}
.products__list__category__item:hover .products__list__category__item__content {
  padding-bottom: 3.2rem;
}
.products__list__category__item:hover .products__list__category__item__content p {
  max-height: 999px;
  opacity: 1;
}
.products__list__category__item:hover .products__list__category__item__content .btn-list {
  max-height: 999px;
  opacity: 1;
  padding: 14.5px 24px;
}

@media (max-width: 900px) {
  .products__list {
    padding: 0 3.2rem;
  }
  .products__list__category h3 {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .products__list__category__items {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
}
.kw-store__list {
  padding: clamp(4rem, 5vw, 8rem) clamp(2rem, 3vw, 6.4rem);
  background-color: #fdf9f5;
}
.kw-store__list__title h2 {
  color: #231f20;
  font-family: "Barlow Semi Condensed";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 4rem 0 2.4rem 0;
  border-top: 1px solid var(--preto-30, rgba(35, 31, 32, 0.3));
}
.kw-store__list__button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kw-store__list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.4rem;
  padding: 4rem 0;
}
.kw-store__list__grid__item {
  border-radius: 12px;
  border: 1px solid rgba(35, 31, 32, 0.3);
  background: #FFF;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.kw-store__list__grid__item__title h3 {
  color: #231f20;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130.476%;
  letter-spacing: -0.42px;
}
.kw-store__list__grid__item__image img {
  width: 100%;
}
.kw-store__list__grid__item__link {
  color: #f58220;
  font-family: "Barlow Semi Condensed";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: space-between;
}

.cms-bar {
  height: 50px;
  display: none;
}
.cms-bar__row {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #9700f6;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}
.cms-bar__row .text {
  color: #FFF;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
}
.cms-bar__row .btn {
  background: #FFF;
  padding: 5px 20px;
  border-radius: 15px;
  margin-right: 15px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.cms-bar__row .btn:hover {
  background: #000;
  color: #FFF;
}

.whatsapp-button {
  position: fixed;
  bottom: 7.5vh;
  right: 0.5vh;
  z-index: 9999;
}
.whatsapp-button__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}
.whatsapp-button__icon:hover {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .cms-bar__row .text {
    display: none;
  }
}
