@charset "UTF-8";
@import url(https://use.typekit.net/hgq1bfb.css);
:root {
  --corner: var(--pad30);
}

@media (max-width: 800px) {
  :root {
    --corner: var(--pad20);
  }
}
/* Reset CSS */
html,
body,
div,


span,
applet,
object,
iframe,
h1,
h2,
h3,
.home-services .box-home-services .item-home-services .content-topics div,
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;
}

/* Make sure the base styles apply */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Body defaults */
body {
  line-height: 1;
  font-family: sans-serif;
}

/* Lists */
ol,
ul {
  list-style: none;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove focus outlines by default, but keep accessibility */
:focus {
  outline: none;
}

/*
// Charts
@include donut-chart('chart1', 67, 300px, 25px, 1s, #e1e1e1, #fff, #48b2c1);

@include donut-chart('chart2', 37, 200px, 15px, 2s, #e1e1e1, #fff, #f26a4a);

@include donut-chart('chart3', 17, 150px, 10px, 1.5s, #e1e1e1, #fff, #353535);

@include donut-chart('chart4', 93, 250px, 40px, .5s, #e1e1e1, #fff, #50C690);
*/
.btn {
  position: relative;
  padding: 0;
  border: none;
  border-radius: var(--pad40);
  min-width: var(--pad140);
  letter-spacing: 0.1px;
  font-size: var(--font15);
  line-height: var(--pad40);
  font-weight: 600;
  cursor: pointer !important;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
  height: var(--pad40);
}
@media (max-width: 800px) {
  .btn {
    font-size: var(--font14);
    line-height: calc(var(--pad40) * 1);
    font-weight: 600;
    height: calc(var(--pad40) * 1);
    min-width: var(--pad130);
  }
}

.btn:active {
  transform: scale(0.95) !important;
}

/* === SAIBA MAIS === */
.btn-primary, .btn-black {
  background: #F00;
  color: #fff;
}

.btn-black {
  background: #000;
}

.btn-primary::before, .btn-black::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 100, 100, 0.5) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none !important;
}

.btn-primary::after, .btn-black::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 200%;
  top: -50%;
  left: -20%;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
  transform: translateX(-100%) skewX(-20deg);
  display: none !important;
}

.btn-primary:hover, .btn-black:hover {
  transform: scale(1.06) translateY(-2px);
}

.btn-primary:hover::before, .btn-black:hover::before {
  opacity: 1;
}

.btn-primary:hover::after, .btn-black:hover::after {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(100%) skewX(-20deg);
}

/* === FALA CONNOSCO === */
.btn-secondary {
  background: #fff;
  color: #0a0a0a;
  background-clip: padding-box;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--pad50);
  background: linear-gradient(135deg, #e8000d, #ff6b6b, #fff, #e8000d);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientSpin 2s linear infinite;
  display: none !important;
}

.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--pad50);
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232, 0, 13, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none !important;
}

.btn-secondary:hover {
  transform: scale(1.06) translateY(-2px);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:hover::after {
  opacity: 1;
}

@keyframes gradientSpin {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}

.btn-primary .ripple, .btn-black .ripple {
  background: rgba(255, 255, 255, 0.25);
}

.btn-secondary .ripple {
  background: rgba(232, 0, 13, 0.15);
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* XL */
.showcase {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-xl {
  padding: 18px 48px;
  font-size: 17px;
  letter-spacing: 1px;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(232, 0, 13, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-ghost:hover {
  transform: scale(1.06) translateY(-2px);
  border-color: #F00;
  box-shadow: 0 0 25px rgba(232, 0, 13, 0.3), inset 0 0 20px rgba(232, 0, 13, 0.05);
}

.btn-ghost:hover::before {
  opacity: 1;
}

:root {
  --hMenu: var(--pad70);
}
@media (max-width: 800px) {
  :root {
    --hMenu: var(--pad50);
  }
}

header {
  position: fixed !important;
  max-width: 100vw;
  width: 100vw;
  display: flex;
  justify-content: center;
  z-index: 9;
  top: 0;
  left: 0;
}
@media (max-width: 800px) {
  header {
    margin: 0;
  }
}
header:before {
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  background: #000;
  opacity: 0;
  height: var(--hMenu);
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
}
header.sticky:before {
  opacity: 1;
}
header menu {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  header menu {
    width: calc(100vw - var(--pad60));
  }
}
header menu .logo {
  position: absolute;
  height: calc(var(--hMenu) * 0.45);
  top: calc(var(--hMenu) * 0.5);
  transform: translate3d(0, -50%, 0);
  width: fit-content;
}
@media (max-width: 800px) {
  header menu .logo {
    height: calc(var(--hMenu) * 0.3);
  }
}
header menu .logo img {
  height: 100%;
}
footer {
  display: block;
  position: relative;
  background: #000;
  padding-top: var(--pad100);
  padding-bottom: var(--pad100);
}
@media (max-width: 800px) {
  footer {
    padding-top: var(--pad50);
    padding-bottom: var(--pad50);
  }
}
footer .container {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  footer .container {
    width: calc(100vw - var(--pad60));
  }
}
footer .container {
  display: flex;
}
footer .container .footer-col {
  width: 50%;
  position: relative;
}
@media (max-width: 800px) {
  footer .container {
    display: block;
  }
  footer .container .footer-col {
    width: 100%;
  }
}
footer .container .h1 {
  color: #F00;
  font-size: var(--font70);
  line-height: 70%;
  font-weight: 700;
  letter-spacing: -1px;
}
@media (max-width: 800px) {
  footer .container .h1 {
    margin-top: var(--pad50);
    font-size: var(--font55);
    line-height: 95%;
    font-weight: 700;
  }
}
footer .container .h1 span {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
  display: block;
}
footer .container .h1 span:nth-child(1) {
  transition-delay: 0.1s;
}
footer .container .h1 span:nth-child(2) {
  transition-delay: 0.2s;
}
footer .container .h1 span:nth-child(3) {
  transition-delay: 0.3s;
}
footer .container ul {
  display: block;
}
footer .container ul li {
  display: block;
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 50%;
  width: var(--pad10);
  aspect-ratio: 1/1;
  background: #FFF;
  margin-top: var(--pad30);
}
footer .container ul li:nth-child(1) {
  transition-delay: 0.4s;
}
footer .container ul li:nth-child(2) {
  transition-delay: 0.5s;
}
footer .container ul li:nth-child(3) {
  transition-delay: 0.6s;
}
@media (max-width: 800px) {
  footer .container ul li {
    width: calc(var(--pad10) * 0.8);
    margin-top: var(--pad20);
  }
}
footer .container ul:nth-child(4) li {
  background: #F00;
}
footer .container ul:nth-child(4) li:nth-child(1) {
  transition-delay: 0.7s;
}
footer .container ul:nth-child(4) li:nth-child(2) {
  transition-delay: 0.8s;
}
footer .container ul:nth-child(4) li:nth-child(3) {
  transition-delay: 0.9s;
}
footer .container .list-footer {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  font-size: var(--font15);
  line-height: 120%;
  font-weight: 500;
  color: #FFF;
  display: flex;
  margin-top: var(--pad30);
  transition-delay: 0.7s;
}
footer .container .list-footer div {
  width: fit-content;
  margin-right: var(--pad80);
}
footer .container .list-footer a {
  text-decoration: underline;
  color: #F00;
}
@media (max-width: 800px) {
  footer .container .list-footer {
    margin-top: var(--pad30);
    margin-bottom: var(--pad30);
    display: block;
  }
  footer .container .list-footer div {
    width: fit-content;
    margin-right: 0;
    margin-bottom: var(--pad30);
  }
}
footer .container .logo-footer {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 1;
  transform: translate3d(0, 0, 0) scaleX(1);
  display: block;
  position: absolute;
  bottom: var(--pad120);
  height: calc(var(--pad40) * 1.1);
}
@media (max-width: 800px) {
  footer .container .logo-footer {
    position: relative;
    top: auto;
    bottom: auto;
    height: 8vw;
  }
}
footer .container.init-element .logo-footer {
  transform: translate3d(-100px, 0, 0) scaleX(0.9) !important;
  opacity: 0 !important;
  transition-delay: 0s !important;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
footer .container.init-element .h1 span {
  transform: translate3d(-100px, 0, 0) scaleX(0.9) !important;
  opacity: 0 !important;
  transition-delay: 0s !important;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 30ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
footer .container.init-element ul li {
  transform: translate3d(-50px, 0, 0) scale(0) !important;
  opacity: 0 !important;
  transition-delay: 0s !important;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
footer .container.init-element .list-footer {
  transform: translate3d(-50px, 0, 0) !important;
  opacity: 0 !important;
  transition-delay: 0s !important;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

header .cta-header {
  position: absolute;
  right: var(--pad70);
  top: calc(var(--hMenu) * 0.5);
  transform: translate3d(0, -50%, 0);
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 800px) {
  header .cta-header {
    right: var(--pad60);
  }
  header .cta-header button {
    font-size: var(--font13);
    line-height: calc(var(--hMenu) * 0.6);
    font-weight: 600;
    height: calc(var(--hMenu) * 0.6);
    min-width: var(--pad110);
  }
}
header .lang-switch2 {
  position: absolute;
  color: #fff;
  font-size: var(--font15);
  line-height: normal;
  font-weight: 500;
  right: 0;
  top: calc(var(--hMenu) * 0.5);
  transform: translate3d(0, -50%, 0);
  display: flex;
  gap: 8px;
}
@media (max-width: 800px) {
  header .lang-switch2 {
    font-size: var(--font14);
    line-height: normal;
    font-weight: 500;
  }
}
header .lang-switch2.lang1 a:nth-child(1) {
  font-weight: 600;
  pointer-events: none;
}
header .lang-switch2.lang2 a:nth-child(2) {
  font-weight: 600;
  pointer-events: none;
}
header.sticky .lang-switch2.lang1 a:nth-child(1) {
  color: #F00;
}
header.sticky .cta-header {
  opacity: 1;
  pointer-events: auto;
}
header .lang-switch {
  position: absolute;
  color: #fff;
  font-size: var(--font16);
  line-height: normal;
  font-weight: 500;
  right: 0;
  top: calc(var(--pad70) * 0.5);
  transform: translate3d(0, -50%, 0);
}
header .lang-switch .lang-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pad10);
  cursor: pointer;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  gap: calc(var(--pad10) * 0.8);
}
@media (max-width: 800px) {
  header .lang-switch .lang-btn {
    padding: calc(var(--pad10) * 0.7) calc(var(--pad10) * 1.4);
    gap: calc(var(--pad10) * 0.8);
  }
}
header .lang-switch .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: calc(var(--pad10) * 0.3);
  transform: rotate(45deg) translate3d(-10%, -10%, 0);
  transition: 0.3s;
}
header .lang-switch .lang-switch.open .arrow {
  transform: rotate(-135deg) translate3d(-25%, -25%, 0);
}
header .dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  transition: 0.3s;
}
header .lang-switch.open .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  display: flex;
  background: blue;
}
header .dropdown div {
  cursor: pointer;
  transition: background 0.2s;
}
header .dropdown div:hover {
  background: rgba(255, 255, 255, 0.1);
}
header {
  /*

   .dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.3s;

  }

  .lang-switch.open .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .dropdown div {
    padding: var(--pad10) var(--pad20);
    cursor: pointer;
    transition: background 0.2s;
    &:nth-child(1){
      padding-bottom: 5px;
    }
    &:nth-child(2){
      padding-top:  5px;
    }
  }

  .dropdown div:hover {
    background: rgba(255,255,255,0.1);
  }
   */
}

.highlights {
  background: #101010;
  height: 200vh;
  width: 100%;
}
@media (max-width: 800px) {
  .highlights {
    height: 250vh;
  }
}
.highlights .sticky-box {
  position: sticky;
  top: 0;
  padding-top: 18vh;
  height: 82vh;
  width: 100%;
}
@media (max-width: 800px) {
  .highlights .sticky-box {
    padding-top: 14vh;
    height: 86vh;
  }
}
.highlights .scrolling-box {
  height: 100vh;
  display: none;
}
.highlights h3, .highlights .home-services .box-home-services .item-home-services .content-topics div, .home-services .box-home-services .item-home-services .content-topics .highlights div {
  color: #FFFFFF;
  margin-bottom: var(--pad30);
}
@media (max-width: 800px) {
  .highlights h3, .highlights .home-services .box-home-services .item-home-services .content-topics div, .home-services .box-home-services .item-home-services .content-topics .highlights div {
    margin-bottom: var(--pad20);
  }
}
.highlights .highlights-quad {
  width: 40%;
  aspect-ratio: 16/9;
  pointer-events: none;
  position: absolute;
  left: 48%;
  top: 0;
}
@media (max-width: 800px) {
  .highlights .highlights-quad {
    width: 100%;
    position: relative;
    left: auto;
    margin-top: var(--pad20);
    aspect-ratio: 16/11;
  }
}
.highlights .highlights-quad {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  overflow: hidden;
  opacity: 0;
  filter: blur(5px);
}
.highlights .highlights-quad .highlights-quad-nav {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  position: absolute;
}
.highlights .highlights-quad .highlights-quad-nav img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .highlights .highlights-quad .highlights-quad-nav img {
    aspect-ratio: 16/11;
  }
}
.highlights .highlights-quad.quad-1 {
  opacity: 1;
  filter: blur(0px);
}
.highlights .highlights-quad.quad-1 .highlights-quad-nav {
  transform: translate3d(0, 0, 0);
}
.highlights .highlights-quad.quad-2 {
  opacity: 1;
  filter: blur(0px);
}
.highlights .highlights-quad.quad-2 .highlights-quad-nav {
  transform: translate3d(0, -20%, 0);
}
.highlights .highlights-quad.quad-3 {
  opacity: 1;
  filter: blur(0px);
}
.highlights .highlights-quad.quad-3 .highlights-quad-nav {
  transform: translate3d(0, -40%, 0);
}
.highlights .highlights-quad.quad-3 {
  opacity: 1;
  filter: blur(0px);
}
.highlights .highlights-quad.quad-3 .highlights-quad-nav {
  transform: translate3d(0, -40%, 0);
}
.highlights .highlights-quad.quad-4 {
  opacity: 1;
  filter: blur(0px);
}
.highlights .highlights-quad.quad-4 .highlights-quad-nav {
  transform: translate3d(0, -60%, 0);
}
.highlights .highlights-quad.quad-5 {
  opacity: 1;
  filter: blur(0px);
}
.highlights .highlights-quad.quad-5 .highlights-quad-nav {
  transform: translate3d(0, -80%, 0);
}
.highlights .container {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  .highlights .container {
    width: calc(100vw - var(--pad60));
  }
}
.highlights .container {
  position: relative;
}
.highlights .highlights-item {
  position: relative;
  color: #FFFFFF;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  pointer-events: none;
  height: var(--pad80);
  font-size: var(--font80);
  line-height: var(--pad80);
  font-weight: 700;
}
@media (min-width: 800px) and (max-height: 800px) {
  .highlights .highlights-item {
    height: var(--pad70);
    font-size: var(--font70);
    line-height: var(--pad70);
    font-weight: 700;
  }
}
@media (max-width: 800px) {
  .highlights .highlights-item {
    overflow: hidden;
    height: 14vw;
    font-size: 14vw;
    line-height: 14vw;
  }
}
.highlights .highlights-item .container {
  position: relative;
  display: flex;
  align-items: center;
}
.highlights .highlights-item._hover {
  color: #F00;
}

.home-cards {
  width: 100vw;
  overflow: hidden;
  aspect-ratio: 16/8;
  background: #F00;
  /*
    @media (max-width: $breakMobile) {
      margin-top: 0;
    }
    .container{
      @include boxW();
      position: relative;


      &._cards{
        display: flex;
      gap: var(--pad30);
        justify-content: space-between;
        flex-wrap: wrap;
      }
    }

    .card {

      background: #111;
      color: $white;

      box-sizing: border-box;

    }

    h4{
     margin-top: calc(var(--pad10) * 2.5);

    }
    p{
       margin-top: calc(var(--pad10) * 0.5);
    }

    .card-img{
      position: relative;
      width: 100%;
      overflow: hidden;
      img {
        width: 100%;

        object-fit: cover;
        height: auto;
        display: block;
        transform: scale(1);
        @include transition(1000, 'out-circ');
        aspect-ratio: 14/15;
        @media (max-width: $breakMobile) {
          aspect-ratio: 4/3;
        }
      }

      &::after{
        @include getAfter('a');
        width: 100%; height: 100%;
        background: $red;
        top: 0; left: 0;
        mix-blend-mode: soft-light;
        opacity: 0;
        @include transition(1000, 'out-circ');
      }

      &:hover{
        img {
          transform: scale(1.1);
        }

        &::after{
          opacity: 1;
        }
      }

    }


    &.home-cards_1{

      .container._cards{
        position: sticky;


        top: var(--pad120);
        @media (max-width: $breakMobile) {
          position: relative;
          top: 0
        }

      }

    }


    @media (max-width: 600px) {
      .card {

    }
  */
}
.home-cards ._reveal {
  margin-top: 0;
}
@media (max-width: 800px) {
  .home-cards ._reveal {
    margin-top: var(--pad00);
  }
  .home-cards ._reveal .spacer {
    display: none;
  }
}
.home-cards ._reveal .wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  cursor: none;
  max-height: 100vh;
}
.home-cards ._reveal .wrap-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.home-cards ._reveal .wrap-box:nth-child(1) {
  background: #F00;
}
.home-cards ._reveal .wrap-box .svg {
  mix-blend-mode: multiply;
}
.home-cards ._reveal .wrap-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  top: 0;
  left: 0;
}
.home-cards ._reveal .top {
  clip-path: inset(50% 50% 50% 50%);
  transition: clip-path 0.15s ease-out;
}

.magnetics {
  background: #000;
  position: relative;
}
.magnetics .magnetics-box {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  .magnetics .magnetics-box {
    width: calc(100vw - var(--pad60));
  }
}
.magnetics {
  padding-top: var(--pad100);
  padding-bottom: var(--pad100);
}
@media (max-width: 800px) {
  .magnetics {
    padding-top: var(--pad50);
    padding-bottom: var(--pad50);
  }
}
.magnetics .magnetic-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 800px) {
  .magnetics .magnetic-wrap {
    justify-content: flex-start;
    aspect-ratio: 9/14;
    min-height: 0;
  }
}
.magnetics canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.magnetics h2 {
  display: block;
  position: relative;
  color: #FFFFFF;
  width: 50%;
  margin-right: 10%;
}
@media (max-width: 800px) {
  .magnetics h2 {
    width: 90%;
    margin-right: 0%;
  }
}

.clients {
  background: #101010;
}
.clients .container {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  .clients .container {
    width: calc(100vw - var(--pad60));
  }
}
.clients h3, .clients .home-services .box-home-services .item-home-services .content-topics div, .home-services .box-home-services .item-home-services .content-topics .clients div {
  margin-bottom: var(--pad30);
  color: #FFFFFF;
}
.clients .bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 0;
  height: var(--pad100);
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  .clients .bar {
    width: calc(100vw - var(--pad60));
  }
}
.clients .slot {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients .slot img {
  max-height: 50%; /* relativo à altura da .slot (90px → ~45px) */
  max-width: 80%; /* relativo à largura da coluna */
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 500ms ease;
}
.clients .slot img.invisible {
  opacity: 0;
}
@media (max-width: 800px) {
  .clients .bar {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    padding: 6px 12px;
  }
  .clients .slot {
    height: 68px;
  }
  .clients .slot + .slot::after {
    display: none;
  }
  .clients .slot:not(:nth-child(3n+1))::after {
    display: block !important;
  }
  .clients .slot:nth-child(4), .clients .slot:nth-child(5), .clients .slot:nth-child(6) {
    border-top: 1px solid rgba(255, 255, 255, 0);
  }
  .clients .slot img {
    max-height: 50%;
    max-width: 75%;
  }
}

.home-services {
  padding-top: var(--pad100);
  padding-bottom: var(--pad100);
}
@media (max-width: 800px) {
  .home-services {
    padding-top: var(--pad50);
    padding-bottom: var(--pad50);
  }
}
.home-services {
  width: 100vw;
  position: relative;
  overflow: hidden;
  background: #000;
}
.home-services .container {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  .home-services .container {
    width: calc(100vw - var(--pad60));
  }
}
.home-services h2 {
  color: #FFFFFF;
  padding-bottom: var(--pad40);
  display: block;
}
.home-services .box-home-services {
  position: relative;
}
@media (min-width: 800px) {
  .home-services .box-home-services {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    width: calc(100vw - var(--pad80));
    margin: auto;
  }
}
@media (min-width: 800px) and (max-width: 800px) {
  .home-services .box-home-services {
    width: calc(100vw - var(--pad60));
  }
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services {
    height: 70vh;
    overflow: hidden;
  }
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services {
    overflow-x: scroll;
    display: flex;
    margin-bottom: var(--pad30);
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad20);
  }
  .home-services .box-home-services .item-home-services::-webkit-scrollbar {
    display: none;
  }
  .home-services .box-home-services .item-home-services {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.home-services .box-home-services .item-home-services {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 1500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 1500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  position: relative;
}
.home-services .box-home-services .item-home-services h3, .home-services .box-home-services .item-home-services .content-topics div {
  color: #FFFFFF;
  position: absolute;
  top: var(--pad20);
  left: var(--pad20);
  z-index: 2;
}
.home-services .box-home-services .item-home-services h3 span, .home-services .box-home-services .item-home-services .content-topics div span {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  color: #FFFFFF;
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services h3, .home-services .box-home-services .item-home-services .content-topics div {
    left: var(--pad50);
  }
}
.home-services .box-home-services .item-home-services .content-topics {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: var(--pad20);
  overflow: hidden;
}
.home-services .box-home-services .item-home-services .content-topics div {
  padding: 0;
  display: block;
  position: relative;
  top: auto;
  left: auto;
  padding-right: var(--pad20);
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 100ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 100ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 100ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 100ms cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
  transform: translate3d(100%, 0, 0);
  text-align: right;
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .content-topics {
    display: none !important;
  }
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box {
    height: 60%;
    width: calc(100% - var(--pad80));
    display: block;
    position: absolute;
    left: 0;
    margin: auto;
    right: 0;
    top: 15%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }
  .home-services .box-home-services .item-home-services .content-box._2 {
    justify-content: center;
    gap: calc(var(--pad10) * 0.8);
  }
  .home-services .box-home-services .item-home-services .content-box._1 {
    justify-content: center;
  }
  .home-services .box-home-services .item-home-services .content-box {
    /* https://matthewlein.com/tools/ceaser */
    -webkit-transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0, 0, 0.58, 1);
    transform: translate3d(-500%, 0, 0);
  }
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box {
    display: flex;
  }
}
.home-services .box-home-services .item-home-services .content-box .content-item {
  background: #FFFFFF;
  height: 100%;
  overflow: hidden;
  display: block;
  position: relative;
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box .content-item {
    display: none;
  }
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box .content-item {
    margin-left: var(--pad10);
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-margin-left: var(--pad20);
  }
}
.home-services .box-home-services .item-home-services .content-box .content-item .content-item-wrapper {
  display: flex;
  flex-direction: column;
  width: calc(100% - var(--pad20));
  height: calc(100% - var(--pad30));
  left: calc(var(--pad10) * 1.5);
  position: absolute;
  top: 0;
  margin: auto;
  bottom: 0;
}
.home-services .box-home-services .item-home-services .content-box .content-item h4, .home-services .box-home-services .item-home-services .content-box .content-item div {
  font-size: var(--font25);
  line-height: "normal";
  font-weight: 800;
  max-width: 90%;
  margin-bottom: 0.4vh;
}
.home-services .box-home-services .item-home-services .content-box .content-item p {
  font-size: var(--font13);
  line-height: normal;
  font-weight: 500;
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box .content-item p {
    font-size: var(--font15);
    line-height: normal;
    font-weight: 500;
  }
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box .content-item {
    width: calc(33% - var(--pad10) * 0.4);
  }
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .content-box .content-item {
    width: 80vw;
  }
}
.home-services .box-home-services .item-home-services::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#B3000000', GradientType=0);
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services::after {
    max-width: 1440px;
    width: calc(100vw - var(--pad80));
    margin: auto;
    margin-left: max(var(--pad40), (100vw - 1440px) / 2);
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .home-services .box-home-services .item-home-services::after {
    width: calc(100vw - var(--pad60));
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .home-services .box-home-services .item-home-services::after {
    margin-left: max(var(--pad30), (100vw - 1440px) / 2);
  }
}
.home-services .box-home-services .item-home-services .item-home-services-bg {
  cursor: pointer;
  object-fit: cover;
  object-position: center;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
  filter: saturate(1);
  display: block;
  position: relative;
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services .item-home-services-bg {
    height: 100%;
    width: 100%;
    pointer-events: none;
  }
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .item-home-services-bg {
    max-width: 1440px;
    width: calc(100vw - var(--pad80));
    margin: auto;
    margin-left: max(var(--pad40), (100vw - 1440px) / 2);
    aspect-ratio: 3/4;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-margin-left: var(--pad20);
    pointer-events: auto;
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .home-services .box-home-services .item-home-services .item-home-services-bg {
    width: calc(100vw - var(--pad60));
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .home-services .box-home-services .item-home-services .item-home-services-bg {
    margin-left: max(var(--pad30), (100vw - 1440px) / 2);
  }
}
.home-services .box-home-services .item-home-services .arrow-desk {
  background: #FFFFFF;
  width: fit-content;
  min-width: var(--pad40);
  height: var(--pad40);
  border-radius: var(--pad40);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 0;
  z-index: 2;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services .arrow-desk {
    bottom: var(--pad20) !important;
    left: var(--pad20) !important;
  }
}
@media (max-width: 800px) {
  .home-services .box-home-services .item-home-services .arrow-desk {
    display: block;
    position: absolute;
    top: 0;
    margin: auto;
    bottom: 0;
    display: flex;
    right: calc(var(--pad10) * 0.5);
  }
}
.home-services .box-home-services .item-home-services .arrow-desk img {
  height: 70%;
  display: block;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 100ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 100ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 100ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 100ms cubic-bezier(0, 0, 0.58, 1);
  transform: rotate(0deg);
}
.home-services .box-home-services .item-home-services .arrow-desk div {
  width: fit-content;
  overflow: hidden;
  max-width: 0px;
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.58, 1);
  color: #F00;
  font-size: var(--font16px);
  line-height: normal;
  font-weight: 450;
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services.idle {
    width: calc(33% - var(--pad10));
  }
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services.hide {
    width: calc(18% - var(--pad10) * 0.5);
  }
  .home-services .box-home-services .item-home-services.hide .item-home-services-bg {
    filter: saturate(0);
  }
}
.home-services .box-home-services .item-home-services.show h3 span, .home-services .box-home-services .item-home-services.show .content-topics div span {
  color: #F00;
}
@media (min-width: 800px) {
  .home-services .box-home-services .item-home-services.show {
    width: calc(64% - var(--pad10) * 0.5);
  }
  .home-services .box-home-services .item-home-services.show .arrow-desk {
    padding: 0 calc(var(--pad10) * 0.5) 0 calc(var(--pad10) * 1.2);
  }
  .home-services .box-home-services .item-home-services.show .arrow-desk div {
    max-width: 100px;
  }
  .home-services .box-home-services .item-home-services.show .arrow-desk img {
    transform: rotate(-45deg);
  }
  .home-services .box-home-services .item-home-services.show .content-box {
    /* https://matthewlein.com/tools/ceaser */
    -webkit-transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-delay: 250ms;
    transform: translate3d(0, 0, 0);
  }
}
.home-services .box-home-services .item-home-services.show .content-topics div {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 800ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(1) {
  transition-delay: 300ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(2) {
  transition-delay: 400ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(3) {
  transition-delay: 500ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(4) {
  transition-delay: 600ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(5) {
  transition-delay: 700ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(6) {
  transition-delay: 800ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(7) {
  transition-delay: 900ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(8) {
  transition-delay: 1000ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(9) {
  transition-delay: 1100ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div:nth-child(10) {
  transition-delay: 12000ms;
}
.home-services .box-home-services .item-home-services.show .content-topics div {
  transform: translate3d(0, 0, 0);
}

#nossa-hero {
  position: relative;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  min-height: 600px;
  overflow: hidden;
  cursor: default;
}

/* ── Background Images (slideshow + parallax) ── */
#nossa-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  top: -15%;
  bottom: -15%;
}

#nossa-hero-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Red Overlay (opacity controlled by JS) ──── */
#nossa-hero-overlay {
  position: absolute;
  inset: 0;
  background: #F00;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  will-change: opacity;
  transition: all 50ms cubic-bezier(0.42, 0, 0.58, 1);
}

/* ── Container ────────────────────────────────── */
#nossa-hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 800px) {
  #nossa-hero-container {
    align-items: center;
  }
}
#nossa-hero-container {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  #nossa-hero-container {
    width: calc(100vw - var(--pad60));
  }
}

/* ── H1 ─────────────────────────────────────────  */
#nossa-hero h1 {
  color: #FFFFFF;
  letter-spacing: -0.03em;
  white-space: nowrap;
  will-change: transform;
  pointer-events: none;
  text-align: center;
}
@media (min-width: 800px) {
  #nossa-hero h1 {
    font-size: 11vw;
    padding-top: 20vh;
  }
}
@media (max-width: 800px) {
  #nossa-hero h1 {
    padding-top: 0;
    margin-top: -45%;
    font-size: 18vw;
  }
}

#nossa-hero .nh-line {
  display: block;
  overflow: hidden;
  position: relative;
}
#nossa-hero .nh-line:nth-child(2) {
  transform: translate3d(0, -20%, 0);
}
#nossa-hero .nh-line:nth-child(3) {
  transform: translate3d(0, -40%, 0);
}

#nossa-hero .nh-char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}

#nossa-hero .nh-char {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

#nossa-hero .nh-char.nh-space {
  width: 0.3em;
}

#nossa-hero-copy {
  position: absolute;
  bottom: 10vh;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  z-index: 2;
  opacity: 0;
  transform: translateY(var(--pad40));
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 800px) {
  #nossa-hero-copy {
    width: 80%;
    bottom: 12vh;
  }
  #nossa-hero-copy br {
    display: none;
  }
}
#nossa-hero-copy .hero-text .txt {
  font-size: var(--font20);
  line-height: normal;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--pad20);
  text-align: center;
}
#nossa-hero-copy .hero-text .cta {
  display: flex;
  gap: var(--pad10);
  justify-content: center;
}

#nossa-hero-copy.show {
  opacity: 1;
  transform: translateY(0);
}

.fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.block-image {
  height: 70vh;
  background: transparent;
}
@media (max-width: 800px) {
  .block-image {
    height: 40vh;
  }
}
.block-image::after, .block-image::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 20%;
  z-index: 2;
  left: 0;
}
.block-image::before {
  top: 0;
  background-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -moz-linear-gradient(top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF000000', endColorstr='#00000000', GradientType=0);
}
.block-image::after {
  bottom: 0;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#FF000000', GradientType=0);
}

#st-block {
  --st-bg: $black;
  --st-gap: var(--pad20);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--pad20);
  position: relative;
  overflow: hidden;
  background: #101010;
  padding-top: var(--pad100);
  padding-bottom: var(--pad100);
}
@media (max-width: 800px) {
  #st-block {
    padding-top: var(--pad50);
    padding-bottom: var(--pad50);
  }
}

#st-block::before,
#st-block::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}

#st-block::before {
  left: 0;
  background: linear-gradient(to right, var(--st-bg), transparent);
}

#st-block::after {
  right: 0;
  background: linear-gradient(to left, var(--st-bg), transparent);
}

#st-block .st-row {
  width: 100%;
  height: var(--pad70);
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  #st-block .st-row {
    height: var(--pad60);
  }
}

#st-block .st-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  will-change: transform;
}

#st-block .st-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  user-select: none;
  padding-right: var(--st-gap);
}

#st-block .st-item .st-name {
  font-size: var(--pad80);
  font-weight: 700;
  color: #fff;
  line-height: var(--pad70);
  white-space: nowrap;
}
@media (max-width: 800px) {
  #st-block .st-item .st-name {
    font-size: var(--pad50);
    line-height: var(--pad50);
  }
}

#st-block .st-item .st-img {
  width: var(--pad80);
  aspect-ratio: 4/3;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  transform: scale(1.2);
}

:root {
  --bg: #141414;
  --surface: #1e1e1e;
  --field-bg: #f5f4f0;
  --field-bg-focus: #ffffff;
  --text: #000000;
  --placeholder: #999999;
  --label: #FFF;
  --red: #e31414;
  --red-hover: #c00f0f;
  --border-focus: #e31414;
  --error: #ff4444;
  --radius: 50px;
  --radius-select: 14px;
}

.contacts {
  background: #101010;
  padding-top: var(--pad100);
  padding-bottom: var(--pad100);
}
@media (max-width: 800px) {
  .contacts {
    padding-top: var(--pad50);
    padding-bottom: var(--pad50);
  }
}
.contacts h2 {
  text-align: center;
  color: #FFF;
  margin-bottom: var(30px);
}
.contacts .form {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: var(--pad40);
}
.contacts .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pad20) var(--pad20);
}
.contacts .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.contacts .field.full {
  grid-column: 1/-1;
}
.contacts label {
  font-weight: 500;
  color: var(--label);
  font-size: var(--font14);
  line-height: normal;
  font-weight: 500;
  display: block;
  padding-left: calc(var(--pad10) * 1.2);
}
.contacts label::after {
  content: "";
  display: block;
  position: absolute;
  content: "*";
  color: var(--red);
  font-size: 2em;
  left: 0;
  top: -3px;
}
.contacts label .req {
  color: var(--red);
  margin-right: 2px;
  font-size: 2em !important;
  line-height: 0px;
  transform: translate3d(0, 200%, 0);
  display: inline-flex;
}
.contacts input[type=text],
.contacts input[type=email],
.contacts input[type=tel],
.contacts textarea {
  background: var(--field-bg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: calc(var(--pad10) * 1.5) var(--pad20);
  font-family: "DM Sans", sans-serif;
  font-size: var(--font14);
  line-height: normal;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: calc(100% - var(--pad40));
  width: 100%;
}
.contacts input::placeholder, .contacts textarea::placeholder {
  color: var(--placeholder);
}
.contacts input:focus, .contacts textarea:focus {
  border-color: transparent;
  background: var(--field-bg-focus);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.15);
}
.contacts input.invalid, .contacts textarea.invalid {
  border-color: var(--error);
  box-shadow: inset 0 2px 6px rgba(255, 68, 68, 0.13);
}
.contacts textarea {
  border-radius: 20px;
  resize: none;
  min-height: 130px;
}
.contacts {
  /* ── Custom Select ── */
}
.contacts .select-wrapper {
  position: relative;
}
.contacts .select-trigger {
  background: var(--field-bg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: calc(var(--pad10) * 1.5) var(--pad20);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--placeholder);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contacts .select-trigger.has-value {
  color: var(--text);
}
.contacts .select-trigger.open,
.contacts .select-trigger:focus {
  border-color: transparent;
  background: var(--field-bg-focus);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.15);
  outline: none;
}
.contacts .select-trigger.invalid {
  border-color: var(--error);
  box-shadow: inset 0 2px 6px rgba(255, 68, 68, 0.13);
}
.contacts .arrow-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.25s;
  pointer-events: none;
  color: #666;
}
.contacts .select-trigger.open ~ .arrow-icon,
.contacts .select-wrapper.open .arrow-icon {
  transform: translateY(-50%) rotate(180deg);
}
.contacts .select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--field-bg-focus);
  border-radius: 16px;
  overflow: hidden;
  z-index: 50;
  box-shadow: inset 0 12px 32px rgba(0, 0, 0, 0.18);
  outline: none;
}
.contacts .select-wrapper.open .select-dropdown {
  display: block;
}
.contacts .select-option {
  padding: 13px 20px;
  font-size: 0.93rem;
  color: var(--text);
  cursor: pointer;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}
.contacts .select-option:hover {
  background: #eae9e4;
}
.contacts .select-option.selected {
  background: #f0e8e8;
  color: var(--red);
  font-weight: 600;
}
.contacts {
  /* ── Privacy ── */
}
.contacts .privacy-row {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  position: relative;
}
.contacts .privacy-row input[type=checkbox] {
  display: none;
}
.contacts .custom-checkbox {
  width: calc(var(--pad10) * 1.5);
  aspect-ratio: 1/1;
  border: 1px solid #FFF;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.contacts .custom-checkbox.checked {
  background: var(--red);
  border-color: var(--red);
}
.contacts .custom-checkbox.checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.contacts .custom-checkbox.invalid-cb {
  border-color: var(--error);
}
.contacts .privacy-label {
  font-size: var(--font14);
  line-height: normal;
  font-weight: 500;
  color: #FFF;
  cursor: pointer;
  width: 100%;
  padding-left: var(--pad20);
}
.contacts .privacy-label::after {
  left: calc(var(--pad10) * 2.5);
}
.contacts .privacy-label a {
  text-decoration: underline;
}
.contacts {
  /* ── Error msg ── */
}
.contacts .err-msg {
  font-size: var(--font14);
  line-height: normal;
  font-weight: 500;
  color: var(--error);
  margin-top: 2px;
  min-height: 14px;
  display: none;
}
.contacts .err-msg.show {
  display: block;
}
.contacts {
  /* ── Submit ── */
}
.contacts .submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--pad30);
}
.contacts {
  /* ── Form Banner (sucesso / erro) ── */
}
.contacts .form-banner {
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-size: var(--font14);
  line-height: normal;
  font-weight: 500;
  margin-bottom: var(--pad20);
  box-sizing: border-box;
  line-height: 1.5;
}
.contacts .form-banner .form-banner-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.contacts .form-banner.show {
  display: flex;
}
.contacts .form-banner.banner-success {
  background: rgba(0, 0, 0, 0.6);
  border-color: #2ecc71;
  color: #fff;
}
.contacts .form-banner.banner-success .form-banner-icon {
  background: transparent;
  color: #2ecc71;
  border: 1.5px solid #2ecc71;
}
.contacts .form-banner.banner-error {
  background: rgba(80, 0, 0, 0.55);
  border-color: var(--red);
  color: #fff;
  text-align: center;
  justify-content: center;
  gap: 10px;
}
.contacts .form-banner.banner-error .form-banner-icon {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  margin-bottom: 4px;
}
@media (max-width: 800px) {
  .contacts .contacts-box {
    max-width: 1440px;
    width: calc(100vw - var(--pad80));
    margin: auto;
  }
}
@media (max-width: 800px) and (max-width: 800px) {
  .contacts .contacts-box {
    width: calc(100vw - var(--pad60));
  }
}
@media (max-width: 800px) {
  .contacts .form {
    margin-top: var(--pad40);
    max-width: 800px;
    padding: 0;
  }
  .contacts .card {
    padding: 36px 24px;
  }
  .contacts .grid {
    grid-template-columns: 1fr;
  }
  .contacts .field.full {
    grid-column: 1;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay .modal {
  position: relative;
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
}
@media (max-width: 800px) {
  .modal-overlay .modal {
    width: calc(100vw - var(--pad60));
  }
}
.modal-overlay .modal {
  max-width: 1000px;
  max-height: calc(100vh - var(--pad50));
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.modal-overlay .modal-overlay.active .modal {
  transform: scale(1);
}
.modal-overlay .modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.modal-overlay .close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: var(--pad30);
  color: #00adef;
  cursor: pointer;
  z-index: 2;
  background: #000;
  font-weight: 600;
  text-align: center;
  width: var(--pad30);
  aspect-ratio: 1/1;
}

.modal-overlay.active {
  opacity: 1;
}

body {
  background-color: #101010;
  -webkit-font-smoothing: antialiased !important;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
main {
  width: 100vw;
  position: relative;
}

section {
  width: 100vw;
  position: relative;
}

.full-container {
  width: var(--fullContainer);
  margin: auto;
  position: relative;
}
@media (max-width: 800px) {
  .full-container {
    width: 100vw;
  }
}

.inner-container {
  margin: auto;
  position: relative;
  width: calc(100% - var(--pad40));
  max-width: var(--innerContainer);
}
@media (max-width: 1100px) {
  .inner-container {
    width: calc(100% - var(--pad40));
  }
}

.col-5 {
  width: 5%;
}
@media (max-width: 1100px) {
  .col-5 {
    width: 100%;
  }
}

.col-10 {
  width: 10%;
}
@media (max-width: 1100px) {
  .col-10 {
    width: 100%;
  }
}

.col-15 {
  width: 15%;
}
@media (max-width: 1100px) {
  .col-15 {
    width: 100%;
  }
}

.col-20 {
  width: 20%;
}
@media (max-width: 1100px) {
  .col-20 {
    width: 100%;
  }
}

.col-25 {
  width: 25%;
}
@media (max-width: 1100px) {
  .col-25 {
    width: 100%;
  }
}

.col-30 {
  width: 30%;
}
@media (max-width: 1100px) {
  .col-30 {
    width: 100%;
  }
}

.col-35 {
  width: 35%;
}
@media (max-width: 1100px) {
  .col-35 {
    width: 100%;
  }
}

.col-40 {
  width: 40%;
}
@media (max-width: 1100px) {
  .col-40 {
    width: 100%;
  }
}

.col-45 {
  width: 45%;
}
@media (max-width: 1100px) {
  .col-45 {
    width: 100%;
  }
}

.col-50 {
  width: 50%;
}
@media (max-width: 1100px) {
  .col-50 {
    width: 100%;
  }
}

.col-55 {
  width: 55%;
}
@media (max-width: 1100px) {
  .col-55 {
    width: 100%;
  }
}

.col-60 {
  width: 60%;
}
@media (max-width: 1100px) {
  .col-60 {
    width: 100%;
  }
}

.col-65 {
  width: 65%;
}
@media (max-width: 1100px) {
  .col-65 {
    width: 100%;
  }
}

.col-70 {
  width: 70%;
}
@media (max-width: 1100px) {
  .col-70 {
    width: 100%;
  }
}

.col-75 {
  width: 75%;
}
@media (max-width: 1100px) {
  .col-75 {
    width: 100%;
  }
}

.col-80 {
  width: 80%;
}
@media (max-width: 1100px) {
  .col-80 {
    width: 100%;
  }
}

.col-85 {
  width: 85%;
}
@media (max-width: 1100px) {
  .col-85 {
    width: 100%;
  }
}

.col-90 {
  width: 90%;
}
@media (max-width: 1100px) {
  .col-90 {
    width: 100%;
  }
}

.col-95 {
  width: 95%;
}
@media (max-width: 1100px) {
  .col-95 {
    width: 100%;
  }
}

b {
  font-weight: 600 !important;
}

p {
  font-size: var(--font20);
  line-height: normal;
  font-weight: 500;
}
@media (max-width: 800px) {
  p {
    font-size: var(--font18);
    line-height: "normal";
    font-weight: 500;
  }
}

h1 {
  font-size: var(--font180);
  line-height: 80%;
  font-weight: 700;
  letter-spacing: -4.954px;
}
@media (max-width: 800px) {
  h1 {
    font-size: var(--font90);
    line-height: "normal";
    font-weight: 700;
  }
}

h2 {
  font-size: var(--font70);
  line-height: 95%;
  font-weight: 700;
}
@media (max-width: 800px) {
  h2 {
    font-size: var(--font36);
    line-height: 95%;
    font-weight: 700;
  }
}

h3, .home-services .box-home-services .item-home-services .content-topics div {
  font-size: var(--font40);
  line-height: "normal";
  font-weight: 700;
}
@media (max-width: 800px) {
  h3, .home-services .box-home-services .item-home-services .content-topics div {
    font-size: var(--font28);
    line-height: "normal";
    font-weight: 700;
  }
}

h4 {
  font-size: var(--font30);
  line-height: "normal";
  font-weight: 600;
}
@media (max-width: 800px) {
  h4 {
    font-size: var(--font20);
    line-height: "normal";
    font-weight: 900;
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--pad20);
  height: var(--pad20);
  background: #F00;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}
@media (max-width: 800px) {
  .cursor {
    display: none;
  }
}

.no-cursor {
  cursor: default; /* volta cursor normal */
}

.slick-track {
  /* https://matthewlein.com/tools/ceaser */
  -webkit-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1000ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media (max-width: 800px) {
  .desk {
    display: none !important;
  }
}

@media (min-width: 800px) {
  .mob {
    display: none !important;
  }
}

.pp-content {
  max-width: 1440px;
  width: calc(100vw - var(--pad80));
  margin: auto;
  padding-top: 200px;
  padding-bottom: 100px;
}
.pp-content h1 {
  font-size: var(--font44);
  line-height: 126%;
  font-weight: 700;
  letter-spacing: 0px;
  color: #F00;
  padding-bottom: 60px;
}
.pp-content h2 {
  padding-top: 30px;
  font-size: var(--font26);
  line-height: 126%;
  font-weight: 700;
  color: #F00;
}
.pp-content p {
  color: #FFFFFF;
  font-size: var(--font20);
  line-height: 126%;
  font-weight: 400;
  margin-top: var(--pad20);
  margin-bottom: var(--pad20);
}
.pp-content ul, .pp-content li {
  color: #FFFFFF;
  font-size: var(--font18);
  line-height: 126%;
  font-weight: 400;
}
.pp-content div {
  width: 100%;
}
.pp-content div table {
  width: 100% !important;
}

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