@charset "UTF-8";
/**
 * 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;
}

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

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

body {
  font-size: 1.5rem;
}

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

.text--ligther {
  font-weight: lighter;
}
.text--regular {
  font-weight: normal;
}
.text--bold {
  font-weight: bold;
}
.text--primary {
  color: #000000;
}
.text--secondary {
  color: #FFFFFF;
}

/* ============= FONTS ============ */
/* =========== SECTIONS =========== */
.header {
  position: relative;
  z-index: 30;
  top: 0;
  height: var(--header_height);
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header a {
  text-decoration: none;
  color: white;
}
.header ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .header_logo {
  max-width: 240px;
  margin-right: 25px;
}
.header .header_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.header .header_left a {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.header .header_right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
}
.header .header_right a {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.header .header_right_buttons {
  margin-left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .header_right_buttons .header_catalog {
  cursor: pointer;
  display: flex;
  padding: 8px 8px 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 200px;
  border: 1px solid var(--Branco, #fff);
}
.header .header_right_buttons .header_catalog a {
  text-decoration: none;
  color: var(--Branco, #fff);
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header .header_right_buttons .header_catalog svg path {
  stroke: rgb(255, 255, 255);
}

.nav__lang {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 200px;
  border: 1px solid var(--color-red, #ffffff);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 50;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.selected {
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  z-index: 100;
}

.selected > span,
.selected > .caret-down {
  pointer-events: none;
}

.options {
  display: none;
  position: absolute;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 99;
  width: 9.3rem;
  right: -0.9rem;
  top: 2.9rem;
  color: black;
  background: var(--color-white-opacity-80, rgba(255, 255, 255, 0.8));
}

.options.show {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.option {
  width: 100%;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option:hover {
  background-color: var(--color-black-opacity-20, rgba(0, 0, 0, 0.2));
}

.rotate {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.nav__hamburger {
  display: none;
  cursor: pointer;
  z-index: 1000;
  filter: invert(100%);
}
.nav__hamburger img {
  width: 24px;
  height: 24px;
}

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 16px;
  z-index: 998;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.nav__mobile .mobile_menu {
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 0;
}
.nav__mobile .mobile_menu .mobile_menu_item {
  text-align: center;
}
.nav__mobile .mobile_menu .mobile_menu_item a {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  padding: 12px 0;
  display: block;
  text-decoration: none;
}
.nav__mobile .mobile_menu .mobile_menu_item a:hover {
  color: #ddd;
}

.nav__mobile.show {
  display: block !important;
}

@media (max-width: 900px) {
  .header_right_buttons .header_catalog {
    display: none !important;
  }
  .header {
    padding: 16px;
    justify-content: space-between;
  }
  .header_left,
  .header_right {
    display: none !important;
  }
  .header_logo {
    max-width: 200px;
  }
  .nav__lang {
    display: flex;
  }
  .nav__hamburger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 1000;
  }
}
.footer {
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 104px;
  padding-top: 127px;
  padding-right: 56px;
  padding-left: 56px;
  position: relative;
  z-index: 20;
}
.footer__top {
  height: 203px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
}
.footer__top__logo {
  width: 195px;
  height: 56px;
}
.footer__top .main_info {
  margin-left: 63%;
  position: absolute;
  top: 0;
}
.footer__top .main_info h4 {
  /* Novo/H4 */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
  letter-spacing: 0%;
}
.footer__mid {
  height: 169px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.footer__mid__left {
  height: 100%;
  width: 351px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__mid__left p {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
}
.footer__mid__left__button {
  background-color: #1c262f;
  width: 202;
  height: 51;
  gap: 8px;
  padding-top: 16px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-left: 24px;
  border-radius: 1000px;
}
.footer__mid__left__button a {
  color: var(--Branco, #fff);
  text-decoration: none;
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer__mid__right {
  max-height: 169px;
  display: flex;
  flex-direction: row;
  gap: 57px;
  flex-wrap: wrap;
}
.footer__mid__right__item {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer__mid__right__item a {
  text-decoration: none;
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
  margin-bottom: 19px;
  font-weight: 700;
  cursor: pointer;
}
.footer__mid__right__item ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.footer__mid__right__item ul a {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  color: var(--Petrleo, #1c262f);
}
.footer__bottom {
  margin-bottom: 62px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
}
.footer__bottom__compliance__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 64px;
}
.footer__bottom__compliance__items a {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  color: var(--Petrleo, #1c262f);
}
.footer__bottom__deen svg {
  fill: #899094;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .footer {
    width: 100vw;
    height: auto;
    background-color: white;
    padding: 89px 32px 40px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }
  .footer__top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer__top .main_info {
    position: relative;
    margin: 0;
    margin-bottom: 32px;
  }
  .footer__top .main_info h4 {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H4 Mobile */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .footer__mid {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    background-color: white;
    gap: 24px;
  }
  .footer__mid__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    gap: 32px;
  }
  .footer__mid__left p {
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Satoshi;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .footer__mid__left__button a {
    color: var(--Branco, #fff);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .footer__mid__right {
    background-color: white;
    width: 100%;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    flex-direction: column;
    align-items: flex-start;
    min-height: none;
    max-height: none;
    gap: 0px;
  }
  .footer__mid__right__item {
    width: 100%;
  }
  .footer__mid__right__item .accordion-header {
    width: 100%;
    display: flex;
    padding: 8px 0;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    text-decoration: none;
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Inter;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    border-bottom: 1px solid var(--petrleo-30, rgba(28, 38, 47, 0.3));
    cursor: pointer;
  }
  .footer__mid__right__item .accordion-header:after {
    content: "↓"; /* Default: Down arrow */
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  .footer__mid__right__item .accordion-header.no-list:after {
    content: "↗"; /* Northeast arrow for no list or empty list */
  }
  .footer__mid__right__item .accordion-header.active:after {
    transform: rotate(180deg);
  }
  .footer__mid__right__item .footer-accordion {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer__mid__right__item .footer-accordion a {
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-decoration: none;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .footer__mid__right__item .footer-accordion a:after {
    content: "↗"; /* Northeast arrow for no list or empty list */
  }
  .footer__mid__right__item .footer-accordion.footer-show {
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 10px 20px;
  }
  .footer__bottom {
    margin: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    gap: 24px;
  }
  .footer__bottom p {
    width: 100%;
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/Text */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
  }
  .footer__bottom__compliance__items {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-grow: 1;
    margin-bottom: 32px;
  }
  .footer__bottom__compliance__items a {
    width: 100%;
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/Text */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
  }
  .footer__bottom__deen {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-show {
    max-height: none;
    height: -moz-fit-content;
    height: fit-content;
  }
}
/* ============ PAGES ============= */
.home {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 10;
}

@media (max-width: 900px) {
  .home {
    overflow: visible !important; /* ou remova overflow */
    -webkit-overflow-scrolling: auto;
  }
}
.spacer {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 5;
}

.buildings {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 0px 24px;
  width: 100%;
}
.buildings__wrapper {
  width: 625px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.buildings__wrapper h1 {
  color: #1c262f;
  text-align: center;
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
}
.buildings__wrapper p {
  color: #1c262f;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}
.buildings__wrapper__pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.buildings__wrapper__pagination__button {
  padding: 16px 24px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  background: var(--Branco, #fff);
  /* Sombra */
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.05), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.04), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.03), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.02);
}
.buildings__wrapper__pagination__button p {
  color: #1c262f;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.buildings__card {
  position: relative;
  background: linear-gradient(236deg, rgba(28, 38, 47, 0) 29.82%, rgba(28, 38, 47, 0.8) 66.83%);
  min-width: 1392px;
  width: 100%;
  height: 695px;
  flex-shrink: 0;
  border-radius: 10px;
}
.buildings__card__info {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 1392px;
  padding: 56px;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}
.buildings__card__info h1 {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.buildings__card__info h2 {
  color: #fff;
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
}
.buildings__card__info__arrows {
  width: 105px;
  height: 50px;
  display: flex;
  gap: 5px;
}
.buildings__card__info__arrows__item {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: var(--Branco, #FFF);
}

.homepage__wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 10;
}
.homepage__wrapper .homepage__banner__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 12;
  filter: brightness(0.4);
}

.homepage__banner {
  position: absolute;
  top: 0;
  z-index: 15;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.homepage__banner__top {
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 17;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px;
  padding-bottom: 40px;
}
.homepage__banner__top h1 {
  /* Novo/H1 */
  color: var(--Branco, #fff);
  font-family: Inter;
  font-size: 96px;
  font-style: normal;
  font-weight: 300;
  line-height: 103px;
  color: var(--Branco, #fff);
  font-size: 96px;
  font-family: Inter; /* 107.292% */
  max-width: 1026px;
}
.homepage__banner__bottom {
  position: relative;
  z-index: 17;
  display: flex;
  justify-content: space-between;
  height: 178px;
  width: 100%;
  padding: 40px 40px 80px 40px;
  border-top: 1px solid var(--branco-20, rgba(255, 255, 255, 0.2));
}
.homepage__banner__bottom__left {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-start;
}
.homepage__banner__bottom__left__text {
  display: flex;
  width: 242.778px;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.homepage__banner__bottom__left__text p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}
.homepage__banner__bottom__left__desc {
  /* Novo/Text-Bigger */
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  width: 505px;
  margin-right: 288px;
  color: var(--Branco, #fff);
}
.homepage__banner__bottom__right {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 29px;
}
.homepage__banner__bottom__right__button {
  display: flex;
  height: 50px;
  padding: 16px 24px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 1000px;
  background: #fff;
}
.homepage__banner__bottom__right__button a {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  color: var(--Petrleo, #1c262f);
}
.homepage__banner__bottom__right__arrows {
  width: 105px;
  height: 50px;
  display: flex;
  gap: 5px;
}
.homepage__banner__bottom__right__arrows__item {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: var(--Branco, #fff);
}

@media (max-width: 900px) {
  .homepage__wrapper {
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    overflow: visible !important; /* ou remova overflow */
    -webkit-overflow-scrolling: auto;
  }
  .homepage__banner {
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
  }
  .homepage__banner__top {
    padding: 0 32px;
    padding-bottom: 40px;
  }
  .homepage__banner__top h1 {
    color: var(--Branco, #fff);
    /* Provisório/H1 Mobile */
    font-family: Inter;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 43px; /* 102.381% */
  }
  .homepage__banner__bottom {
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 100%;
    padding: 40px 32px;
    gap: 24px;
  }
  .homepage__banner__bottom__left__text {
    display: none;
  }
  .homepage__banner__bottom__left__desc {
    width: 100%;
    margin-right: 0;
    color: var(--Branco, #fff);
    /* Provisório/Text-Bigger-Mobile */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .homepage__banner__bottom__right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}
.about__page {
  position: sticky;
  top: 0;
  z-index: 20;
  border-left: 6px solid var(--Vermelho, #f83823);
  background: var(--Off-White, #f0f0f0);
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.04), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.03), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.02), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.02), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.01);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about__page__top {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 88px 56px;
}
.about__page__top__left {
  display: flex;
  height: 395px;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 96px;
  gap: 24px;
  flex: 1 0 0;
}
.about__page__top__left h2 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
  color: var(--Petrleo, #1c262f);
}
.about__page__top__left p {
  /* Novo/Long Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  color: var(--Petrleo, #1c262f);
}
.about__page__top__left__button {
  display: flex;
  height: 54px;
  padding: 12px 16px;
  align-items: center;
  gap: 24px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  background: var(--Branco, #fff);
  /* Sombra */
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.05), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.04), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.03), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.02);
}
.about__page__top__left__button a {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
  text-decoration: none;
}
.about__page__top__left__button__arrow {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  background: var(--Vermelho, #f83823);
}
.about__page__top__left__button:hover {
  cursor: pointer;
}
.about__page__top__right {
  display: flex;
  flex-shrink: 0;
}
.about__page__top__right img {
  min-width: 652px;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 900px) {
  .about__page {
    width: 100vw;
    padding: 32px;
    position: sticky !important;
    top: 0;
    z-index: 10;
  }
  .about__page__top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0px;
  }
  .about__page__top__left {
    padding: 0px;
  }
  .about__page__top__left h2 {
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
  }
  .about__page__top__left p {
    display: none;
  }
  .about__page__top__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }
  .about__page__top__right img {
    min-width: 1px;
    height: auto;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px;
  }
}
.applications-wrapper {
  width: 100%;
  position: relative;
}

.applications {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: white;
  width: 100%;
  display: flex;
  padding: 56px;
  padding-right: 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 37px;
}
.applications__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.applications__top__left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.applications__top__left h3 {
  /* Novo/H3 */
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 160% */
  color: var(--Petrleo, #1c262f);
}
.applications__top__left p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
}
.applications__top__button {
  margin-right: 56px;
  display: flex;
  height: 54px;
  padding: 12px 16px;
  align-items: center;
  gap: 24px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  background: #fff;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 36.502px 29.201px rgba(0, 0, 0, 0.05);
}
.applications__top__button__arrow {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: #f83823;
}
.applications__top__button a {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  color: var(--Petrleo, #1c262f);
}
.applications__bottom {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.applications__bottom__carousel_item {
  position: relative;
  border-radius: 6px;
  background: linear-gradient(215deg, rgba(36, 36, 36, 0) 27.28%, rgba(36, 36, 36, 0.8) 79.51%);
  height: 73vh !important;
  width: 100% !important;
  flex: 0 0 auto;
}
.applications__bottom__carousel_item img {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
  border-radius: 6px;
}
.applications__bottom__carousel_item h4 {
  position: absolute;
  left: 32px;
  bottom: 32px;
  /* Novo/H4 */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--Branco, #fff);
}

.slider-js-applications .slick-track {
  display: flex !important;
  justify-content: flex-start !important;
  padding-right: 80px;
}
.slider-js-applications .slick-slide {
  margin-right: 32px;
}

@media (max-width: 900px) {
  .applications-wrapper {
    height: auto !important;
  }
  .applications {
    position: relative;
    width: 100%;
    height: -moz-fit-content !important;
    height: fit-content !important;
    padding: 40px 16px;
    padding-right: 0px;
  }
  .applications__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .applications__top__left {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .applications__top__left h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
  }
  .applications__top__left p {
    position: static;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
  }
  .applications__top__button {
    margin-right: 0;
  }
  .applications__top__button a {
    font-size: 16px;
  }
  .applications__bottom {
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
  .applications__bottom__carousel_item {
    height: 35vh !important;
  }
  .slider-js-applications .slick-slide {
    margin-right: 16px;
  }
}
.products {
  overflow: hidden;
  position: relative;
  z-index: 20;
  background-color: white;
  width: 100%;
  padding: 88px 56px;
  padding-right: 0;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 37px;
}
.products__top {
  width: 100%;
  display: flex;
  align-items: center;
}
.products__top__left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.products__top__left h3 {
  /* Novo/H3 */
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 160% */
  color: var(--Petrleo, #1c262f);
}
.products__top__left p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
}
.products__top img {
  margin-right: 56px;
}
.products__middle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 112px;
  padding-right: 56px;
}
.products__middle h2 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
  color: var(--Petrleo, #1c262f);
}
.products__middle__right {
  display: flex;
  padding-top: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}
.products__middle__right p {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px; /* 138.462% */
}
.products__middle__right__button {
  display: flex;
  height: 54px;
  padding: 12px 16px;
  align-items: center;
  gap: 24px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  background: var(--Branco, #fff);
  cursor: pointer;
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.05), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.04), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.03), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.02);
}
.products__middle__right__button a {
  text-decoration: none;
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.products__middle__right__button__arrow {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  background: var(--Vermelho, #f83823);
}
.products__bottom {
  width: 100%;
}
.products__bottom__caption {
  display: flex;
  width: 100%;
}
.products__bottom__caption p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
}
.products__bottom__carousel {
  width: 100%;
}
.products__bottom__carousel__item {
  position: relative;
  height: 55vh !important;
  background-color: rgba(174, 174, 174, 0.462);
  border-radius: 10px;
  cursor: pointer;
}
.products__bottom__carousel__item img {
  height: 100% !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
  border-radius: 10px;
}
.products__bottom__carousel__item h4 {
  /* Novo/H4 */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
  position: absolute;
  left: 32px;
  bottom: 40px;
}
.products__bottom__pagination {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  overflow-x: hidden;
  margin-right: 56px;
}
.products__bottom__pagination__button {
  display: flex;
  align-items: center;
  gap: 5px;
}
.products__bottom__pagination__button__arrow {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  border: 1px solid var(--Petrleo, #1c262f);
}
.products__bottom__pagination__button__arrow:hover {
  background-color: var(--Vermelho, red);
  transition: ease-in 400ms;
  cursor: pointer;
}

.slider-js-products .slick-track {
  display: flex !important;
  justify-content: flex-start !important;
  padding-right: 80px;
}
.slider-js-products .slick-slide {
  margin-right: 32px;
}

.slider-js-products-pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 16px;
}

.slider-js-products-pagination .slick-dots li {
  flex: 1;
  margin: 0;
}

.slider-js-products-pagination .slick-dots li a {
  display: block;
  height: 4px;
  width: 100%;
  background-color: #E5E5E5;
  transition: background-color 0.3s;
}

.slider-js-products-pagination .slick-dots li.slick-active a {
  background-color: #EC662B;
}

.slider-js-products-pagination {
  flex-grow: 1;
}
.slider-js-products-pagination .slick-dots {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 16px;
}
.slider-js-products-pagination .slick-dots li {
  padding-top: 0;
  margin: 0;
}
.slider-js-products-pagination .slick-dots li.slick-active a {
  background-color: red;
}
.slider-js-products-pagination .slick-dots li a {
  height: 4px;
  width: 100%;
  background-color: black;
  display: block;
  transition: background-color 0.3s;
  font-size: 0;
}

@media (max-width: 900px) {
  .products {
    width: 100vw !important;
    padding: 40px 0;
    padding-bottom: 0px;
  }
  .products__top {
    padding: 0 32px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .products__top__left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .products__top__left h3 {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H3 Mobile */
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px; /* 246.154% */
  }
  .products__top__left p {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100vw;
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/Text Mobile */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
  }
  .products__top img {
    width: 114px;
    height: 52px;
    flex-shrink: 0;
    margin: 0px;
  }
  .products__middle {
    width: 100% !important;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 32px;
  }
  .products__middle h2 {
    width: 100%;
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H2 Mobile */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
  }
  .products__middle__right {
    padding: 0px;
  }
  .products__middle__right p {
    width: 100%;
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
  }
  .products__bottom__caption {
    display: none;
  }
  .products__bottom__carousel__item {
    height: 30vh !important;
  }
  .products__bottom__carousel__item h4 {
    position: absolute;
    left: 15px;
    bottom: 20px;
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Satoshi;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 110% */
  }
  .products__bottom__pagination {
    padding: 0 32px;
    margin-right: 0px;
  }
}
.clients-aftermarket-wrapper {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.clients-aftermarket-wrapper .clients {
  background-color: white;
  width: 100%;
  padding: 88px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 0;
}
.clients-aftermarket-wrapper .clients__top {
  width: 100%;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
}
.clients-aftermarket-wrapper .clients__top h3 {
  /* Novo/H3 */
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 160% */
  color: var(--Petrleo, #1c262f);
}
.clients-aftermarket-wrapper .clients__top p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Petrleo, #1c262f);
}
.clients-aftermarket-wrapper .clients__bottom {
  width: 100%;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-left: 6px solid transparent;
}
.clients-aftermarket-wrapper .clients__bottom__top {
  width: 100%;
  display: flex;
  padding: 40px 0;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--petrleo-30, rgba(28, 38, 47, 0.3));
}
.clients-aftermarket-wrapper .clients__bottom__top h2 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
  text-align: left;
  width: 600px;
}
.clients-aftermarket-wrapper .clients__bottom__top p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 433px;
}
.clients-aftermarket-wrapper .clients__bottom__top__arrow {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.clients-aftermarket-wrapper .clients__bottom__middle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 56px;
}
.clients-aftermarket-wrapper .clients__bottom__middle__carousel {
  width: 100% !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.clients-aftermarket-wrapper .clients__bottom__middle__carousel__item {
  width: 160px;
  height: 74px;
  padding: 16px 34px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f0f0f0;
}
.clients-aftermarket-wrapper .clients__bottom__middle__carousel__item p {
  text-align: center;
  color: black;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: bold;
}
.clients-aftermarket-wrapper .clients__bottom__middle__carousel__item__image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-aftermarket-wrapper .clients__bottom__middle__carousel__item__image img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.clients-aftermarket-wrapper .clients__bottom:hover {
  transition: ease-in 200ms;
  border-left: 6px solid var(--Vermelho, #f83823);
  background: var(--Off-White, #f0f0f0);
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.04), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.03), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.02), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.02), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.01);
}
.clients-aftermarket-wrapper .aftermarket {
  background-color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 88px 56px;
  padding-bottom: 0;
  padding-top: 0;
  border-left: 6px solid transparent;
}
.clients-aftermarket-wrapper .aftermarket__top {
  width: 100%;
  display: flex;
  padding: 40px 0;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--petrleo-30, rgba(28, 38, 47, 0.3));
}
.clients-aftermarket-wrapper .aftermarket__top h2 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
  color: var(--Petrleo, #1c262f);
  width: 600px;
  text-align: left;
}
.clients-aftermarket-wrapper .aftermarket__top p {
  /* Novo/Long Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  color: var(--Chumbo, #425363);
  width: 433px;
}
.clients-aftermarket-wrapper .aftermarket__top__arrow {
  width: 56px;
  height: 56px;
}
.clients-aftermarket-wrapper .aftermarket__bottom {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}
.clients-aftermarket-wrapper .aftermarket__bottom__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.clients-aftermarket-wrapper .aftermarket__bottom__left h4 {
  /* Novo/H4 */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--Chumbo, #425363);
  align-self: stretch;
}
.clients-aftermarket-wrapper .aftermarket__bottom__left p {
  /* Novo/Long Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  color: var(--Chumbo, #425363);
  align-self: stretch;
}
.clients-aftermarket-wrapper .aftermarket__bottom__right {
  width: 70%;
  height: 65vh;
  flex-shrink: 0;
  background-color: gray;
}
.clients-aftermarket-wrapper .aftermarket__bottom__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.clients-aftermarket-wrapper .aftermarket:hover {
  transition: ease-in 200ms;
  border-left: 6px solid var(--Vermelho, #f83823);
  background: var(--Off-White, #f0f0f0);
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.04), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.03), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.02), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.02), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.01);
}

.slider-js-clients .slick-track {
  display: flex !important;
  gap: 32px !important;
}
.slider-js-clients .slick-slide {
  height: auto !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .clients-aftermarket-wrapper {
    background-color: white;
    width: 100vw;
    padding: 0px;
  }
  .clients-aftermarket-wrapper .clients {
    width: 100%;
    padding-top: 40px;
  }
  .clients-aftermarket-wrapper .clients__top {
    padding: 0 32px;
    width: 100%;
  }
  .clients-aftermarket-wrapper .clients__top h3 {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H3 Mobile */
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px; /* 246.154% */
  }
  .clients-aftermarket-wrapper .clients__top p {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/Text Mobile */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
  }
  .clients-aftermarket-wrapper .clients__bottom {
    padding: 0 32px;
  }
  .clients-aftermarket-wrapper .clients__bottom__top h2 {
    width: 100%;
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H2 Mobile */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
  }
  .clients-aftermarket-wrapper .clients__bottom__top p {
    width: 100%;
    color: var(--Petrleo-Substitutivo, #242424);
    text-align: center;
    /* Provisório/Text Mobile */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
  }
  .clients-aftermarket-wrapper .clients__bottom__middle__carousel {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 16px;
    padding-bottom: 12px;
  }
  .clients-aftermarket-wrapper .clients__bottom__middle__carousel__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 140px;
    height: 64px;
    padding: 12px 24px;
  }
  .clients-aftermarket-wrapper .aftermarket {
    padding: 0 32px;
    padding-bottom: 40px;
    width: 100%;
  }
  .clients-aftermarket-wrapper .aftermarket__top h2 {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H2 Mobile */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
  }
  .clients-aftermarket-wrapper .aftermarket__top p {
    color: var(--Petrleo-Substitutivo, #242424);
    text-align: center;
    /* Provisório/Text Mobile */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
  }
  .clients-aftermarket-wrapper .aftermarket__bottom__left h4 {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H4 Mobile */
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .clients-aftermarket-wrapper .aftermarket__bottom__left p {
    color: var(--Petrleo-Substitutivo, #242424);
    text-align: center;
    /* Provisório/Text Mobile */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
  }
  .clients-aftermarket-wrapper .aftermarket__bottom__right {
    display: none;
  }
}
.processes {
  padding-top: 88px;
  position: relative;
  z-index: 20;
  background-color: white;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  gap: 52px;
}
.processes__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.processes__top h2 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
}
.processes__top p {
  /* Novo/Long Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}
.processes__top__pagination {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.processes__top__pagination__button {
  padding: 16px 24px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  background: var(--Branco, #fff);
  /* Sombra */
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.05), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.04), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.03), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}
.processes__top__pagination__button p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.processes__carousel {
  width: 100%;
}
.processes__carousel__item {
  position: relative;
  width: 90vw !important;
  height: 75vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(236deg, rgba(36, 36, 36, 0) 29.82%, rgba(36, 36, 36, 0.8) 66.83%);
  border-radius: 10px;
}
.processes__carousel__item img {
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.processes__carousel__item__icon {
  position: absolute;
  padding: 56px;
  top: 0;
  left: 0;
  width: 47px;
  height: 53px;
  flex-shrink: 0;
}
.processes__carousel__item__bottom {
  width: 70%;
  padding: 56px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}
.processes__carousel__item__bottom p {
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--Branco, #fff);
}
.processes__carousel__item__bottom h4 {
  /* Novo/H4 */
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: var(--Branco, #fff);
}
.processes__carousel__item__bottom__pagination {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.processes__carousel__item__bottom__pagination__arrow {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  background: var(--Branco, #fff);
  cursor: pointer;
}
.processes__carousel__item__bottom__pagination__arrow:hover {
  background-color: var(--Vermelho, red);
  transition: ease-in 400ms;
}

.slider-js-processes .slick-track {
  display: flex !important;
  gap: 24px !important;
}
.slider-js-processes .slick-slide {
  height: auto !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .processes__top {
    padding: 0 16px;
  }
  .processes__top h2 {
    color: var(--Petrleo-Substitutivo, #242424);
    /* Provisório/H2 Mobile */
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
  }
  .processes__top p {
    color: var(--Petrleo-Substitutivo, #242424);
    text-align: center;
    /* Provisório/Text Mobile */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
  }
  .processes__top__pagination__button {
    padding: 16px 24px;
  }
  .processes__top__pagination__button p {
    color: var(--Petrleo-Substitutivo, #242424);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .processes__carousel__item {
    max-height: 70vh;
  }
  .processes__carousel__item__icon {
    display: none;
  }
  .processes__carousel__item__bottom {
    width: 100%;
    padding: 32px 24px;
  }
  .processes__carousel__item__bottom p {
    color: var(--Branco, #fff);
    /* Provisório/Text */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 156.25% */
  }
  .processes__carousel__item__bottom h4 {
    width: 100%;
    color: var(--Branco, #fff);
    /* Provisório/H2 Mobile */
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px; /* 125% */
  }
}
.contact-wrapper {
  width: 100%;
  height: 100vh !important;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: var(--Off-White, #f0f0f0);
  position: relative;
  z-index: 10;
  overflow-y: auto;
  padding-top: 124px;
}
.contact-wrapper .contact__footer {
  position: relative;
  width: 100%;
}
.contact-wrapper .contact__footer .footer {
  position: relative;
  background-color: transparent;
  display: flex;
  z-index: 5;
}
@media (max-width: 900px) {
  .contact-wrapper .contact__footer .footer {
    width: 100vw;
    height: auto;
    background-color: transparent;
  }
  .contact-wrapper .contact__footer .footer__mid {
    background-color: transparent;
  }
  .contact-wrapper .contact__footer .footer__mid__right {
    background-color: transparent;
  }
}
.contact-wrapper .elipse-1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 12;
  transform: translate(50%, -50%);
  width: 641px;
  height: 641px;
  flex-shrink: 0;
  border-radius: 641px;
  opacity: 0.5;
  background: var(--Vermelho, #f83823);
  filter: blur(175px);
}
.contact-wrapper .elipse-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 12;
  transform: translate(-50%, 50%);
  width: 471px;
  height: 471px;
  flex-shrink: 0;
  border-radius: 471px;
  opacity: 0.5;
  background: var(--Vermelho, #f83823);
  filter: blur(175px);
}
.contact-wrapper .header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
.contact-wrapper .header svg path {
  stroke: rgb(0, 0, 0) !important;
}
.contact-wrapper .header a {
  color: var(--Petrleo, #1c262f);
}
.contact-wrapper .header .header_right_buttons .header_catalog {
  border: 1px solid var(--Petrleo, #1c262f);
}
.contact-wrapper .header .header_right_buttons .header_catalog a {
  color: var(--Petrleo, #1c262f);
}
.contact-wrapper .header .nav__lang {
  border: 1px solid var(--Petrleo, #1c262f);
}
.contact-wrapper .header .nav__hamburger {
  filter: none;
}
.contact-wrapper .header .selected {
  color: black;
}

.contact {
  z-index: 20;
  width: 100%;
  padding: 0 56px;
  padding-right: 0;
  display: flex;
  align-items: flex-start;
}
.contact .error {
  font-family: Inter;
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.contact .contact__left {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 96px;
}
.contact .contact__left .contact__left__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact .contact__left .contact__left__top h2 {
  color: var(--Petrleo, #1c262f);
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 57px; /* 114% */
  white-space: nowrap;
}
.contact .contact__left .contact__left__top .contact__left__top__caption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.contact .contact__left .contact__left__top .contact__left__top__caption p {
  color: var(--Petrleo, #1c262f);
  /* Novo/Text */
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact .contact__left .contact__left__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact .contact__left .contact__left__bottom h6 {
  color: var(--Petrleo, #1c262f);
  /* Provisório/H6 */
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 136.364% */
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__info {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 24px;
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__info .contact__left__bottom__info__item p {
  color: var(--Chumbo, #425363);
  /* Provisório/Text Mobile */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__info .contact__left__bottom__info__item ul {
  list-style: none;
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__info .contact__left__bottom__info__item ul li {
  color: var(--Petrleo, #1c262f);
  /* Provisório/Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  white-space: nowrap;
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__address {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 8px;
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__address .contact__left__bottom__address__item {
  padding-top: 24px;
  border-top: 1px solid var(--petrleo-30, rgba(28, 38, 47, 0.3));
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__address .contact__left__bottom__address__item p {
  color: var(--Chumbo, #425363);
  /* Provisório/Text Mobile */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__address .contact__left__bottom__address__item ul {
  list-style: none;
}
.contact .contact__left .contact__left__bottom .contact__left__bottom__address .contact__left__bottom__address__item ul li {
  color: var(--Petrleo, #1c262f);
  /* Provisório/Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
  white-space: nowrap;
}
.contact .contact__right {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.contact .contact__right .contact__right__form {
  position: relative;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto auto;
  row-gap: 24px;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--petrleo-30, rgba(28, 38, 47, 0.3));
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item label {
  text-transform: uppercase;
  color: var(--Petrleo, #1c262f);
  /* Provisório/Text Mobile */
  font-family: Satoshi;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 178.571% */
  margin-bottom: 4px;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item input {
  all: unset;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item input::-moz-placeholder {
  color: var(--petrleo-30, rgba(28, 38, 47, 0.3));
  /* Provisório/Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item input::placeholder {
  color: var(--petrleo-30, rgba(28, 38, 47, 0.3));
  /* Provisório/Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item textarea {
  all: unset;
  min-height: 48px;
  resize: vertical;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 48px;
  white-space: pre-wrap; /* Permite quebras de linha automáticas */
  overflow-wrap: break-word;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item textarea::-moz-placeholder {
  color: var(--petrleo-30, rgba(28, 38, 47, 0.3));
  /* Provisório/Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item textarea::placeholder {
  color: var(--petrleo-30, rgba(28, 38, 47, 0.3));
  /* Provisório/Text */
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 156.25% */
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item:nth-of-type(1) {
  grid-column: span 2;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item:nth-of-type(2) {
  grid-column: span 2;
}
.contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item:nth-of-type(5) {
  grid-column: span 2;
}
.contact .contact__right .contact__right__form .contact__right__form__agreement {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}
.contact .contact__right .contact__right__form .contact__right__form__agreement label {
  color: var(--Petrleo, #1c262f);
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.contact .contact__right .contact__right__form .contact__right__form__agreement label a {
  color: var(--Petrleo, #1c262f);
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.contact .contact__right .contact__right__form__button {
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  height: 54px;
  padding: 12px 16px;
  align-items: center;
  gap: 24px;
  border-radius: 1000px;
  border: 1px solid #dedede;
  background: var(--Branco, #fff);
  /* Sombra */
  box-shadow: 0px 100px 80px 0px rgba(0, 0, 0, 0.07), 0px 36.502px 29.201px 0px rgba(0, 0, 0, 0.05), 0px 17.721px 14.177px 0px rgba(0, 0, 0, 0.04), 0px 8.687px 6.95px 0px rgba(0, 0, 0, 0.03), 0px 3.435px 2.748px 0px rgba(0, 0, 0, 0.02);
}
.contact .contact__right .contact__right__form__button p {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact .contact__right .contact__right__form__button__arrow {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 1000px;
  background: var(--Vermelho, #f83823);
}
.contact .contact__right .contact__right__form__recaptcha {
  position: absolute;
  right: 0;
  bottom: -3%;
}

@media (max-width: 900px) {
  .contact-wrapper {
    padding-top: 104px;
  }
  .contact {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    gap: 32px;
  }
  .contact .contact__left {
    gap: 40px;
  }
  .contact .contact__right .contact__right__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .contact .contact__right .contact__right__form .contact__right__form__inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }
  .contact .contact__right .contact__right__form .contact__right__form__inputs .contact__right__form__inputs__item {
    width: 100%;
    flex-grow: 1;
  }
  .contact .contact__right .contact__right__form__button {
    align-self: center;
  }
  .contact .contact__right .contact__right__form__recaptcha {
    margin-top: 24px;
    position: static;
  }
}
.compliance-wrapper {
  width: 100%;
  height: 100vh !important;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--Off-White, #f0f0f0);
  position: relative;
  z-index: 10;
  padding-top: 104px;
}
.compliance-wrapper .header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
.compliance-wrapper .header svg path {
  stroke: rgb(0, 0, 0) !important;
}
.compliance-wrapper .header a {
  color: var(--Petrleo, #1c262f);
}
.compliance-wrapper .header .header_right_buttons .header_catalog {
  border: 1px solid var(--Petrleo, #1c262f);
}
.compliance-wrapper .header .header_right_buttons .header_catalog a {
  color: var(--Petrleo, #1c262f);
}
.compliance-wrapper .header .nav__lang {
  border: 1px solid var(--Petrleo, #1c262f);
}
.compliance-wrapper .header .nav__hamburger {
  filter: none;
}
.compliance-wrapper .header .selected {
  color: black;
}
.compliance-wrapper .compliance {
  font-size: 14px;
  z-index: 20;
  width: 100%;
  padding: 80px 200px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.compliance-wrapper .compliance .compliance__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}
.compliance-wrapper .compliance .compliance__top img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.compliance-wrapper .compliance .compliance__top h1 {
  position: absolute;
  top: 50px;
  left: 50px;
  font-family: Inter;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.5em;
}
.compliance-wrapper .compliance .compliance__middle {
  width: 100%;
}
.compliance-wrapper .compliance .compliance__middle .compliance__middle__warning {
  background-color: #f2dede;
  border-color: #ebccd1;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.compliance-wrapper .compliance .compliance__middle .compliance__middle__warning p {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
}
.compliance-wrapper .compliance .compliance__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
.compliance-wrapper .compliance .compliance__bottom h1 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-weight: bold;
}
.compliance-wrapper .compliance .compliance__bottom p {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
}
.compliance-wrapper .compliance .compliance__bottom h2 {
  color: var(--Petrleo, #1c262f);
  font-family: Inter;
  font-size: 16px;
  font-weight: bold;
}
.compliance-wrapper .compliance .compliance__buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.compliance-wrapper .compliance .compliance__buttons__item {
  margin-top: 40px;
  background-color: #d9534f;
  border-color: #d43f3a;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 4px;
}
.compliance-wrapper .compliance .compliance__buttons a {
  text-decoration: none;
  color: white;
  font-family: Inter;
  font-size: 14px;
}

@media (max-width: 900px) {
  .compliance-wrapper {
    padding-top: 104px;
  }
  .compliance-wrapper .compliance {
    padding: 0 40px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 13px;
    gap: 16px;
  }
  .compliance-wrapper .compliance .compliance__top h1 {
    color: #1c262f;
    top: 0;
    transform: translate(0, -150%);
    font-size: 1.3em;
    letter-spacing: 2px;
  }
  .compliance-wrapper .compliance .compliance__middle .compliance__middle__warning {
    padding: 12px;
    margin-bottom: 16px;
  }
  .compliance-wrapper .compliance .compliance__middle .compliance__middle__warning p {
    font-size: 14px;
  }
  .compliance-wrapper .compliance .compliance__bottom {
    gap: 20px;
    margin-bottom: 40px;
  }
  .compliance-wrapper .compliance .compliance__bottom h1,
  .compliance-wrapper .compliance .compliance__bottom p,
  .compliance-wrapper .compliance .compliance__bottom h2 {
    font-size: 14px;
  }
  .compliance-wrapper .compliance .compliance__buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .compliance-wrapper .compliance .compliance__buttons__item {
    width: 90% !important;
    margin-top: 0px;
    background-color: #d9534f;
    border-color: #d43f3a;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 10px 12px;
    border-radius: 4px;
  }
  .compliance-wrapper .compliance .compliance__buttons a {
    text-decoration: none;
    color: white;
    font-family: Inter;
    font-size: 14px;
  }
  .compliance-wrapper .header .header_logo {
    max-width: 140px;
  }
  .compliance-wrapper .header .header_right_buttons .header_catalog {
    padding: 6px 12px;
  }
  .compliance-wrapper .header .header_right_buttons .header_catalog a {
    font-size: 14px;
  }
  .compliance-wrapper .header .nav__lang {
    font-size: 14px;
  }
  .compliance-wrapper .header .nav__hamburger {
    width: 24px;
    height: 24px;
  }
}
/* ========= COMPONENTES ========== */
.form__row {
  display: flex;
  gap: 1rem;
}
.form__row:not(:last-child) {
  margin-bottom: 1rem;
}
.cms-bar {
  height: 50px;
}
.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;
}

@media (max-width: 900px) {
  .cms-bar__row .text {
    display: none;
  }
}
@media (max-width: 900px) {
  .home {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}
