/* ==================================================
   Reset
================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
}

/* ==================================================
   Fontes
================================================== */
@font-face {
  font-family: "Neulis";
  src: url("assets/fonts/Neulis-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Neulis";
  src: url("assets/fonts/Neulis-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Neulis";
  src: url("assets/fonts/Neulis-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Neulis";
  src: url("assets/fonts/Neulis-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Neulis";
  src: url("assets/fonts/Neulis-ExtraBold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Neulis";
  src: url("assets/fonts/Neulis-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Cabinet Grotesk";
  src: url("assets/fonts/CabinetGrotesk-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

/* ==================================================
   Variáveis
================================================== */
:root {
  --blue: #0181ee;
  --blue-deep: #2744be;
  --lime: #baef01;
  --dark: #134450;
  --cream: #fffdf5;
  --cream-green: #faffe9;
  --ice: #e2f1ff;
  --green: #25c359;
  --black: #0f0f0f;
  --white: #ffffff;
  --container: 1220px;
  --section-pad: 112px;
  --shadow-blue: 0 18px 40px rgba(1, 129, 238, 0.18);
  --shadow-card: 0 14px 32px rgba(19, 68, 80, 0.14);
  --radius-card: 20px;
}

/* ==================================================
   Base
================================================== */
html {
  background: var(--cream);
}
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--dark);
  font-family: "Cabinet Grotesk", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding-block: var(--section-pad);
}
.section--cream {
  background: var(--cream);
}
.section--blue {
  background: var(--blue);
  color: var(--white);
}
.section-center {
  text-align: center;
}
.section-center h2,
.about h2,
.operation h2,
.faq h2,
.partners h2 {
  font-family: "Neulis", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-center h2 {
  margin-top: 16px;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.01;
  color: var(--blue);
}
.section-lead {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--blue);
}
.section-lead--blue {
  color: var(--blue);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 13px 4px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow--blue {
  background: var(--blue);
  color: var(--white);
}
.eyebrow--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--lime {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 12px 24px rgba(186, 239, 1, 0.22);
}
.button--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 195, 89, 0.25);
}
.button--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  color: var(--white);
}
.button--outline-light:hover {
  background: var(--white);
  color: var(--blue);
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

/* ==================================================
   Header
================================================== */
.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 30px;
  color: var(--white);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 132px;
  height: auto;
}
.button--header {
  min-height: 40px;
  padding-inline: 24px;
  font-size: 10px;
}

/* ==================================================
   Hero
================================================== */
.hero {
  position: relative;
  min-height: min(820px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 70px;
}
.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: 0;
}
.hero__copy h1 {
  font-family: "Neulis", sans-serif;
  font-size: clamp(56px, 4.85vw, 70px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.032em;
}
.hero__copy h1 span,
.about__copy h2 span,
.operation__copy h2 span {
  white-space: nowrap;
}
.hero__copy p {
  max-width: 505px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.48;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}
.hero__visual {
  position: relative;
  min-width: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero__picture {
  position: relative;
  width: min(100%, 600px);
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
  border-radius: 98px 64px 108px 54px;
  transform: rotate(-0.5deg);
  box-shadow: 0 26px 60px rgba(10, 45, 95, 0.28);
}
.hero__picture::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -45px;
  top: -56px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue);
}
.hero__picture::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -46px;
  bottom: -50px;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: var(--blue);
}
.hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.05);
}
.hero__tag {
  position: absolute;
  z-index: 5;
  width: 178px;
  height: auto;
}
.hero__tag--open {
  top: 38px;
  left: 18px;
  transform: rotate(-3deg);
}
.hero__tag--practical {
  right: -2px;
  bottom: 64px;
  transform: rotate(7deg);
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 27px;
  width: 32px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, 12px);
    opacity: 1;
  }
}

/* ==================================================
   Zero investimento
================================================== */
.investment {
  min-height: 675px;
  display: grid;
  place-items: center;
}
.investment .section-center {
  transform: translateY(-4px);
}
.investment__title {
  margin-top: 30px;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(52px, 5.05vw, 72px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.investment__value {
  margin-top: 16px;
  color: var(--lime);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(72px, 6.5vw, 96px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.investment__value span {
  font-size: 0.84em;
}
.investment__description {
  margin: 24px auto 30px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
}

/* ==================================================
   Benefícios
================================================== */
.about {
  min-height: 790px;
  display: grid;
  align-items: center;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 76px;
  align-items: center;
}
.about__copy h2 {
  margin-top: 22px;
  font-size: clamp(48px, 4.1vw, 60px);
  line-height: 1.02;
}
.about__copy > p {
  max-width: 580px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.55;
}
.about__highlight {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 34px;
  max-width: 600px;
}
.about__highlight p {
  font-size: 15px;
  line-height: 1.5;
}
.icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--dark);
}
.icon-tile svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.stat-card {
  min-height: 222px;
  padding: 34px 20px 25px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  color: var(--blue-deep);
  box-shadow: var(--shadow-card);
  transition:
    translate 0.35s ease,
    box-shadow 0.35s ease;
}
.stat-card:hover {
  translate: 0 -8px;
  box-shadow: 0 24px 44px rgba(19, 68, 80, 0.22);
}
.stat-card strong {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(54px, 5.2vw, 76px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.045em;
}
.stat-card__value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stat-card:hover .stat-card__value {
  transform: scale(1.055);
}
.stat-card__number {
  font-size: 1em;
}
.stat-card__unit {
  font-size: 1em;
}
.stat-card__unit--small {
  margin-left: 2px;
  font-size: 0.46em;
  letter-spacing: -0.02em;
}
.stat-card.is-counted {
  animation: statComplete 0.48s ease both;
}
@keyframes statComplete {
  0% {
    scale: 1;
  }
  45% {
    scale: 1.045;
  }
  100% {
    scale: 1;
  }
}

.stat-card > span:not(.stat-card__prefix) {
  margin-top: 20px;
  color: var(--dark);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}
.stat-card__prefix {
  align-self: flex-start;
  margin-left: 30px;
  margin-bottom: -4px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 800;
}
.stats__button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 17px;
}

/* ==================================================
   Processo
================================================== */
.process {
  min-height: 990px;
}
.process .section-center h2 {
  color: var(--blue);
}
.process__flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr)
    42px minmax(0, 1fr);
  align-items: center;
  margin-top: 78px;
}
.step-card {
  position: relative;
  min-height: 345px;
  padding: 34px 24px 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  transition:
    translate 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.38s ease,
    filter 0.38s ease;
}
.step-card::after {
  content: "";
  position: absolute;
  inset: -55% auto -55% -35%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: rotate(16deg) translateX(-220%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.step-card:hover {
  translate: 0 -10px;
  box-shadow: 0 28px 54px rgba(1, 129, 238, 0.28);
  filter: saturate(1.06);
}
.step-card:hover::after {
  transform: rotate(16deg) translateX(520%);
}
.step-card__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--blue-deep);
  transition:
    transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.38s ease;
}
.step-card:hover .step-card__icon {
  transform: translateY(-3px) scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 24px rgba(13, 44, 92, 0.18);
}
.step-card__icon svg {
  width: 37px;
  height: 37px;
  fill: currentColor;
}
.step-card h3 {
  margin-top: 22px;
  font-family: "Neulis", sans-serif;
  font-size: 24px;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.step-card p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.42;
}
.process-arrow {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
}
.process-arrow svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}
.process-arrow circle {
  fill: var(--green);
}
.process-arrow path {
  fill: none;
  stroke: var(--white);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 74px;
  padding-top: 40px;
  border-top: 1px solid rgba(19, 68, 80, 0.13);
}
.process__footer p {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* ==================================================
   Vídeo e tecnologia
================================================== */
.operation {
  min-height: 980px;
  padding-block: 92px 82px;
}
.operation__top {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}
.operation__copy h2 {
  margin-top: 20px;
  font-size: clamp(48px, 3.9vw, 58px);
  line-height: 1.01;
}
.benefit-list {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}
.benefit-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
}
.benefit-list__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--dark);
}
.benefit-list__icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.benefit-list strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}
.benefit-list p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}
.video-card {
  position: relative;
}
.video-card__link {
  position: relative;
  display: block;
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  border-radius: 36px 28px 44px 24px;
  box-shadow: 0 22px 54px rgba(10, 45, 95, 0.32);
}
.video-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 31, 54, 0.28));
}
.video-card__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
  transition: transform 0.45s ease;
}
.video-card__link:hover img {
  transform: scale(1.025);
}
.video-card__play {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}
.video-card__play circle {
  fill: var(--cream);
}
.video-card__play path {
  fill: var(--dark);
}
.technology {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 58px;
  align-items: end;
  margin-top: 70px;
}
.technology h3 {
  font-family: "Neulis", sans-serif;
  font-size: clamp(43px, 3.8vw, 54px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.technology h3 span {
  white-space: nowrap;
}
.technology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.technology__grid article {
  min-height: 132px;
  padding: 23px 18px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  background: var(--lime);
  color: var(--dark);
}
.technology__grid article > span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
}
.technology__grid svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
.technology__grid strong {
  font-size: 15px;
  line-height: 1.07;
  font-weight: 900;
}
.technology__grid p {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.25;
}

/* ==================================================
   Ambientes
================================================== */
.environments {
  padding-top: 90px;
  padding-bottom: 86px;
}
.environments .section-center h2 {
  color: var(--blue);
}
.gallery {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 230px;
  grid-template-rows: auto 38px;
  gap: 14px 26px;
  align-items: stretch;
  margin-top: 54px;
}
.gallery__tabs {
  grid-row: 1;
  display: grid;
  gap: 12px;
  align-content: center;
}
.gallery-tab {
  width: 100%;
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 9px;
  align-items: center;
  text-align: left;
  background: #d9dee0;
  color: var(--dark);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.gallery-tab:hover {
  transform: translateX(3px);
}
.gallery-tab.is-active {
  background: var(--blue);
  color: var(--white);
}
.gallery-tab span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.32);
}
.gallery-tab svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.gallery__stage {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 495px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ice);
  box-shadow: 0 10px 26px rgba(19, 68, 80, 0.1);
}
.gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.22s ease,
    transform 0.35s ease;
}

.gallery__stage img.gallery-image--contain {
  object-fit: contain;
  padding: clamp(16px, 2vw, 30px);
  background: var(--ice);
}

.gallery__stage.is-changing img {
  opacity: 0.35;
  transform: scale(1.015);
}
.gallery__thumbs {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.gallery-thumb {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: var(--ice);
  border: 3px solid transparent;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.gallery-thumb:hover {
  transform: translateX(-3px);
}
.gallery-thumb.is-active {
  border-color: var(--blue);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__pagination {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.gallery__pagination button {
  color: #818b8d;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.gallery__pagination button.is-active {
  color: var(--blue);
}

/* ==================================================
   Marcas
================================================== */
.partners {
  padding-top: 56px;
  padding-bottom: 108px;
}
.partners__grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 66px;
  align-items: center;
}
.partners h2 {
  color: var(--blue);
  font-size: clamp(50px, 4.7vw, 68px);
  line-height: 1;
}
.partner-logos {
  width: min(100%, 800px);
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 36px;
  align-items: center;
}
.partner-logo {
  min-width: 0;
  min-height: 86px;
  display: grid;
  place-items: center;
}
.partner-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 86px;
  object-fit: contain;
}

/* ==================================================
   CTA
================================================== */
.proposal {
  position: relative;
  overflow: hidden;
  background: var(--lime);
}
.proposal__content {
  position: relative;
  min-height: 742px;
  display: grid;
  place-items: center;
  padding-block: 34px;
}
.proposal__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.proposal__desktop-art {
  position: relative;
  width: min(100%, 1240px);
}
.proposal__desktop-art > img {
  width: 100%;
  height: auto;
}
.proposal__button {
  position: absolute;
  z-index: 4;
  top: 84.85%;
  min-height: 0;
  height: 9.1%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: clamp(10px, 1.12vw, 14px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}
.proposal__button:hover {
  transform: translate(-50%, -2px);
  filter: brightness(1.03);
}
.proposal__button--primary {
  left: 59.35%;
  width: 22.65%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(1, 129, 238, 0.18);
  transform: translateX(-50%);
}
.proposal__button--secondary {
  left: 81.1%;
  width: 18.1%;
  background: var(--dark);
  color: var(--white);
  transform: translateX(-50%);
}
.proposal__mobile-card,
.proposal__mobile-actions {
  display: none;
}

/* ==================================================
   FAQ
================================================== */
.faq {
  min-height: 650px;
  display: grid;
  align-items: center;
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.77fr 1.23fr;
  gap: 76px;
  align-items: center;
}
.faq__intro h2 {
  margin-top: 20px;
  color: var(--dark);
  font-size: clamp(48px, 4.3vw, 60px);
  line-height: 1;
}
.faq__intro p {
  max-width: 430px;
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.55;
}
.faq__email {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  border-radius: 7px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.06);
  opacity: 0.82;
}

.social-links img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.accordion {
  display: grid;
  gap: 13px;
}
.accordion__item {
  border-radius: 20px;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(1, 129, 238, 0.2);
  transition:
    box-shadow 0.45s ease,
    transform 0.45s ease;
}
.accordion__item:has(.accordion__trigger[aria-expanded="true"]) {
  box-shadow: 0 18px 34px rgba(1, 129, 238, 0.28);
  transform: translateY(-2px);
}
.accordion__trigger {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.accordion__plus {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.accordion__plus::before,
.accordion__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.accordion__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__trigger[aria-expanded="true"] .accordion__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.accordion__panel {
  height: auto;
  overflow: hidden;
  opacity: 1;
  padding-inline: 24px;
  transition:
    height 0.62s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.46s ease;
}
.accordion__panel-inner {
  padding-bottom: 18px;
}
.accordion__panel p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.accordion.is-enhanced .accordion__panel {
  height: 0;
  opacity: 0;
}
.accordion.is-enhanced .accordion__panel.is-open {
  opacity: 1;
}
.accordion.is-enhanced .accordion__panel[hidden] {
  display: none;
}

/* ==================================================
   Footer
================================================== */
.site-footer {
  min-height: 270px;
  padding-block: 42px 28px;
  background: var(--dark);
  color: var(--white);
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.brand--footer img {
  width: 92px;
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 7px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.site-footer__social a:hover {
  transform: translateY(-3px) scale(1.06);
  opacity: 0.78;
}

.site-footer__social img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11px;
}

/* ==================================================
   Vídeo modal
================================================== */
.video-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.video-modal[hidden] {
  display: none;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 30, 40, 0.82);
  cursor: pointer;
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  border-radius: 22px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}
.video-modal__header {
  min-height: 64px;
  padding: 0 20px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.video-modal__header h2 {
  font-family: "Neulis", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.video-modal__close {
  position: relative;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.video-modal__close span {
  position: absolute;
  left: 9px;
  top: 18px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transform: rotate(45deg);
}
.video-modal__close span + span {
  transform: rotate(-45deg);
}
.video-modal video {
  width: 100%;
  max-height: 76vh;
  background: #000;
}
body.modal-open {
  overflow: hidden;
}

/* ==================================================
   Animações
================================================== */
.reveal {
  opacity: 1;
  transform: none;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease var(--reveal-delay, 0ms),
    transform 0.65s ease var(--reveal-delay, 0ms);
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   Responsividade — notebook
================================================== */
@media (max-width: 1366px) {
  :root {
    --container: 1160px;
    --section-pad: 96px;
  }
  .hero {
    min-height: min(720px, 100svh);
  }
  .hero__grid {
    gap: 42px;
  }
  .hero__picture {
    width: 520px;
  }
  .hero__visual {
    min-height: 490px;
  }
  .about__grid {
    gap: 58px;
  }
  .process__flow {
    grid-template-columns:
      minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr)
      38px minmax(0, 1fr);
  }
  .process-arrow,
  .process-arrow svg {
    width: 38px;
    height: 38px;
  }
  .step-card {
    min-height: 326px;
    padding-inline: 19px;
  }
  .gallery {
    grid-template-columns: 156px minmax(0, 1fr) 208px;
    margin-inline: 20px;
  }
  .gallery__stage {
    min-height: 455px;
  }
  .proposal__content {
    min-height: 680px;
    padding-block: 30px;
  }
}

@media (min-width: 1025px) and (max-height: 820px) {
  .site-header {
    padding-top: 18px;
  }
  .hero {
    min-height: 100svh;
    padding-block: 78px 30px;
  }
  .hero__grid {
    gap: 36px;
    padding-top: 24px;
  }
  .hero__copy h1 {
    font-size: clamp(48px, 4.25vw, 59px);
  }
  .hero__copy p {
    margin-top: 20px;
    font-size: 16px;
  }
  .hero__actions {
    margin-top: 24px;
  }
  .hero__visual {
    min-height: 460px;
  }
  .hero__picture {
    width: min(100%, 500px);
  }
  .hero__tag {
    width: 150px;
  }
  .hero__tag--open {
    top: 20px;
  }
  .hero__tag--practical {
    bottom: 42px;
  }
  .scroll-cue {
    bottom: 12px;
  }
}

/* ==================================================
   Responsividade — tablet
================================================== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 84px;
  }
  .container {
    width: min(calc(100% - 44px), var(--container));
  }
  .site-header {
    padding-top: 22px;
  }
  .hero {
    min-height: auto;
    padding: 140px 0 92px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__copy p {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    min-height: auto;
  }
  .hero__picture {
    width: min(100%, 700px);
    aspect-ratio: 1.4 / 1;
  }
  .hero__tag--open {
    top: 18px;
    left: 8%;
  }
  .hero__tag--practical {
    right: 6%;
    bottom: 38px;
  }
  .scroll-cue {
    display: none;
  }
  .investment {
    min-height: 600px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about__copy {
    text-align: center;
  }
  .about__copy > p,
  .about__highlight {
    margin-inline: auto;
  }
  .about__highlight {
    text-align: left;
  }
  .stats {
    max-width: 720px;
    margin-inline: auto;
    width: 100%;
  }
  .process__flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 760px;
  }
  .process-arrow {
    display: none;
  }
  .process__footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .operation__top {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .operation__copy {
    text-align: center;
  }
  .benefit-list {
    max-width: 720px;
    margin-inline: auto;
    text-align: left;
  }
  .video-card {
    max-width: 820px;
    margin-inline: auto;
    width: 100%;
  }
  .technology {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .technology__grid {
    max-width: 850px;
    margin-inline: auto;
    width: 100%;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .gallery__tabs {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery__stage {
    grid-column: 1;
    grid-row: 2;
    min-height: 470px;
  }
  .gallery__thumbs {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(6, minmax(118px, 1fr));
    grid-template-rows: 110px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .gallery__pagination {
    grid-column: 1;
    grid-row: 4;
  }
  .gallery-tab {
    min-height: 66px;
  }
  .partners__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .proposal__content {
    min-height: 560px;
    padding-block: 26px;
  }
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq__intro {
    text-align: center;
  }
  .faq__intro p {
    margin-inline: auto;
  }
  .social-links {
    justify-content: center;
  }
  .accordion {
    max-width: 800px;
    margin-inline: auto;
    width: 100%;
  }
}

/* ==================================================
   Responsividade — mobile
================================================== */
@media (max-width: 767px) {
  :root {
    --section-pad: 66px;
  }
  .container {
    width: min(calc(100% - 32px), var(--container));
  }
  .site-header {
    padding-top: 18px;
  }
  .brand img {
    width: 112px;
  }
  .button--header {
    min-height: 36px;
    padding-inline: 16px;
    font-size: 8px;
  }
  .button {
    min-height: 44px;
    padding-inline: 22px;
    font-size: 10px;
  }
  .desktop-only {
    display: none;
  }
  .hero {
    padding: 116px 0 74px;
  }
  .hero__grid {
    gap: 38px;
  }
  .hero__copy h1 {
    max-width: 100%;
    font-size: clamp(35px, 10.2vw, 44px);
  }
  .hero__copy p {
    margin-top: 22px;
    font-size: 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
  }
  .hero__actions .button {
    width: min(100%, 270px);
  }
  .hero__picture {
    aspect-ratio: 1.02 / 1;
    border-radius: 52px 35px 62px 31px;
  }
  .hero__picture::before,
  .hero__picture::after {
    width: 96px;
    height: 96px;
  }
  .hero__picture::before {
    left: -28px;
    top: -32px;
  }
  .hero__picture::after {
    right: -30px;
    bottom: -34px;
  }
  .hero__tag {
    width: 120px;
  }
  .hero__tag--open {
    top: 8px;
    left: 4%;
  }
  .hero__tag--practical {
    right: 0;
    bottom: 24px;
  }
  .section-center h2 {
    font-size: clamp(39px, 11.8vw, 50px);
  }
  .investment {
    min-height: auto;
  }
  .investment__title {
    font-size: clamp(43px, 12.6vw, 58px);
  }
  .investment__value {
    font-size: clamp(68px, 20vw, 90px);
  }
  .investment__description {
    font-size: 14px;
  }
  .about__copy h2,
  .operation__copy h2 {
    font-size: clamp(39px, 10.7vw, 47px);
  }
  .about__copy > p {
    font-size: 15px;
  }
  .about__highlight {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }
  .icon-tile {
    width: 50px;
    height: 50px;
  }
  .stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .stat-card {
    min-height: 190px;
  }
  .process__flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card {
    min-height: auto;
    padding: 30px 24px;
  }
  .process__footer {
    margin-top: 50px;
  }
  .process__footer p {
    max-width: 300px;
    line-height: 1.45;
  }
  .operation {
    padding-top: 72px;
  }
  .benefit-list li {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }
  .benefit-list__icon {
    width: 48px;
    height: 48px;
  }
  .video-card__link {
    aspect-ratio: 1.28 / 1;
    border-radius: 24px 20px 30px 18px;
  }
  .video-card__play {
    width: 68px;
    height: 68px;
  }
  .technology {
    margin-top: 54px;
  }
  .technology h3 {
    font-size: 45px;
  }
  .technology__grid {
    grid-template-columns: 1fr;
  }
  .technology__grid article {
    min-height: 110px;
  }
  .environments {
    padding-top: 68px;
  }
  .gallery {
    margin-top: 38px;
  }
  .gallery__tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }
  .gallery-tab {
    flex: 0 0 154px;
    min-height: 68px;
    scroll-snap-align: start;
  }
  .gallery__stage {
    min-height: 0;
    aspect-ratio: 1.22 / 1;
    border-radius: 14px;
  }
  .gallery__thumbs {
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    grid-template-rows: 92px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .gallery__pagination {
    gap: 18px;
  }
  .partners {
    padding-top: 30px;
    padding-bottom: 72px;
  }
  .partners__grid {
    gap: 34px;
  }
  .partner-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 14px;
    width: 100%;
  }
  .partner-logo {
    min-height: 70px;
  }
  .partner-logo img {
    max-height: 68px;
  }
  .partners h2 {
    font-size: 52px;
  }
  .proposal {
    padding-block: 58px 44px;
  }
  .proposal__content {
    min-height: 0;
    width: min(calc(100% - 28px), 560px);
    display: block;
    place-items: initial;
    padding: 0;
    overflow: visible;
  }
  .proposal__desktop-art {
    display: none;
  }
  .proposal__title {
    position: relative;
    z-index: 5;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--dark);
    font-family: "Neulis", sans-serif;
    font-size: clamp(34px, 10.2vw, 46px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.035em;
  }
  .proposal__mobile-card {
    position: relative;
    display: block;
    min-height: clamp(390px, 108vw, 505px);
    overflow: hidden;
    border-radius: 34px;
    background: #efffb5;
  }
  .proposal__mobile-copy {
    position: absolute;
    z-index: 4;
    top: 44px;
    left: 22px;
    color: var(--blue);
    font-family: "Neulis", sans-serif;
    font-size: clamp(29px, 8.5vw, 39px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
  .proposal__people {
    position: absolute;
    z-index: 3;
    right: -16%;
    bottom: -15px;
    width: 117%;
    max-width: none;
    height: auto;
  }
  .proposal__open-tag {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 10px;
    width: clamp(118px, 35vw, 158px);
    height: auto;
    transform: rotate(-3deg);
  }
  .proposal__mobile-actions {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }
  .proposal__mobile-button {
    min-height: 46px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-size: clamp(8px, 2.45vw, 10px);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    transition:
      transform 0.2s ease,
      filter 0.2s ease;
  }
  .proposal__mobile-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
  }
  .proposal__mobile-button--primary {
    background: var(--blue);
  }
  .proposal__mobile-button--secondary {
    background: var(--dark);
  }
  .faq {
    min-height: auto;
  }
  .faq__intro h2 {
    font-size: 49px;
  }
  .accordion__trigger {
    min-height: 56px;
    padding-inline: 18px;
    font-size: 12px;
  }
  .site-footer {
    min-height: 250px;
  }
  .site-footer__top {
    min-height: 104px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .proposal__mobile-card {
    min-height: 430px;
  }
  .proposal__people {
    right: -27%;
    width: 128%;
  }
  .proposal__mobile-copy {
    top: 50px;
    left: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }
  .hero__copy h1 {
    font-size: 35px;
  }
  .button--header {
    padding-inline: 12px;
  }
  .gallery__pagination {
    gap: 14px;
  }
  .proposal__title {
    font-size: 34px;
  }
  .proposal__mobile-card {
    min-height: 408px;
  }
  .proposal__people {
    right: -27%;
    width: 135%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

/* Sondas invisíveis para validar todos os pesos locais exigidos */
.font-probes {
  position: fixed;
  left: -10000px;
  top: -10000px;
  width: 10px;
  height: 10px;
  overflow: hidden;
  opacity: 0.001;
  pointer-events: none;
}
.font-probe {
  display: block;
  font-size: 48px;
  line-height: 1;
}
.font-probe--n700 {
  font-family: "Neulis";
  font-weight: 700;
}
.font-probe--n800 {
  font-family: "Neulis";
  font-weight: 800;
}
.font-probe--n900 {
  font-family: "Neulis";
  font-weight: 900;
}
.font-probe--c700 {
  font-family: "Cabinet Grotesk";
  font-weight: 700;
}
.font-probe--c800 {
  font-family: "Cabinet Grotesk";
  font-weight: 800;
}
.font-probe--c900 {
  font-family: "Cabinet Grotesk";
  font-weight: 900;
}
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
    gap: 20px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .social-links img {
    width: 29px;
    height: 29px;
  }

  .site-footer__social {
    gap: 18px;
  }

  .site-footer__social a {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-footer__social img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 768px) {
  .gallery__stage img.gallery-image--contain {
    padding: 12px;
  }
}
