@font-face {
  font-family: Aileron;
  src: url("../fontes/Aileron/Aileron-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aileron;
  src: url("../fontes/Aileron/Aileron-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aileron;
  src: url("../fontes/Aileron/Aileron-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aileron;
  src: url("../fontes/Aileron/Aileron-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aileron;
  src: url("../fontes/Aileron/Aileron-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fontes/Inter/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #2e3a3d;
  --ink-soft: #5c686b;
  --black: #0b0c0e;
  --black-2: #141619;
  --white: #ffffff;
  --mist: #f4f5f7;
  --line: #e3e6ea;
  --line-dark: #24262b;
  --gold: #c4a46a;
  --gold-2: #d4bc8a;
  --danger: #b42318;
  --ok: #067647;
  --header-h: 84px;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(11, 12, 14, 0.12);
  --font-display: Aileron, Helvetica, "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, Helvetica, "Helvetica Neue", Arial, sans-serif;
  --font-meta: Helvetica, "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-optical-sizing: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
.hero__slide h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.7em;
}

h1,
.hero__slide h2 {
  font-size: clamp(2.35rem, 5.4vw, 4.6rem);
}

.hero h1,
.hero__slide h2 {
  font-weight: 300;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.visually-hidden,
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 120;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  top: 12px;
  padding: 0.6rem 0.9rem;
  background: var(--white);
  color: var(--black);
}

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow--light {
  color: var(--gold-2);
}

.section-light {
  background: var(--white);
}

.section-mist {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 245, 247, 0.92)),
    url("../img/texture-wave.webp") center / cover no-repeat;
}

.page-main {
  min-height: 50vh;
}

.is-inner .page-main {
  padding-top: var(--header-h);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-meta);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-2);
  color: var(--black);
}

.btn--ink {
  background: var(--ink);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--light {
  background: var(--white);
  color: var(--black);
}

.btn.is-disabled,
.btn.is-disabled:hover {
  transform: none;
  cursor: default;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(11, 12, 14, 0.55), rgba(11, 12, 14, 0));
  transition: background 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(11, 12, 14, 0.9);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-110%);
  pointer-events: none;
  box-shadow: none;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  flex: 0 0 auto;
}

.brand__logo {
  width: 148px;
  height: auto;
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-meta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--white);
}

.nav__link.is-disabled,
a.is-disabled {
  cursor: default;
  pointer-events: none;
}

.nav__link.is-disabled:hover {
  color: rgba(255, 255, 255, 0.78);
}

.header-cta {
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease;
}

.nav-toggle__lines {
  margin: 0 auto;
  position: relative;
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__lines::before {
  top: -6px;
}

.nav-toggle__lines::after {
  top: 6px;
}

.nav-drawer {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero__slides {
  position: relative;
  min-height: 100vh;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 14, 0.82) 0%, rgba(11, 12, 14, 0.42) 58%, rgba(11, 12, 14, 0.2) 100%),
    linear-gradient(180deg, rgba(11, 12, 14, 0.2) 0%, rgba(11, 12, 14, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100vh;
  padding: calc(var(--header-h) + 4rem) 0 8rem;
}

.hero__kicker {
  margin-bottom: 1rem;
  font-family: var(--font-meta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.hero__lead {
  max-width: 34rem;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.hero__controls {
  position: absolute;
  right: 0;
  bottom: 2.2rem;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__dots {
  display: flex;
  gap: 0.45rem;
}

.hero__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--gold);
}

.hero__progress {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.hero__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.hero.is-playing .hero__progress span {
  animation: hero-progress 5s linear forwards;
}

@keyframes hero-progress {
  to {
    width: 100%;
  }
}

.hero-bridge {
  height: 170px;
  margin-top: -1px;
  background:
    linear-gradient(180deg, #0b0c0e 0%, #1a1c20 28%, #9aa0a8 68%, #f4f5f7 100%);
}

.split {
  padding: 6.5rem 0;
}

.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.split--media-left .split__media {
  order: 0;
}

.split__copy p {
  color: var(--ink-soft);
}

.split__copy .btn {
  margin-top: 0.6rem;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius);
}

.split--media-left .split__media img {
  min-height: 320px;
  object-fit: contain;
  background: var(--white);
  padding: 1.4rem 1.2rem;
  box-shadow: 0 18px 40px rgba(11, 12, 14, 0.06);
}

.split--text-left .split__media img {
  background: var(--mist);
  padding: 1.2rem;
}

.backdrop {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 7rem 0;
  color: var(--white);
  overflow: hidden;
}

.backdrop__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 14, 0.62), rgba(11, 12, 14, 0.28)),
    url("../img/brand-panel.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.backdrop__card {
  position: relative;
  max-width: 36rem;
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(11, 12, 14, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.backdrop__card p {
  color: rgba(255, 255, 255, 0.78);
}

.backdrop__card .btn {
  margin-top: 0.8rem;
}

.metrics {
  padding: 6.5rem 0 7rem;
}

.metrics__intro {
  max-width: 38rem;
  margin-bottom: 2.8rem;
}

.metrics__intro p {
  color: var(--ink-soft);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric-card {
  padding: 1.85rem 1.45rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.metric-card__value {
  display: block;
  margin: 0 0 1.05rem;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.86;
  color: var(--black);
}

.metric-card__value::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.9rem;
  background: var(--gold);
}

.metric-card h3 {
  margin-bottom: 0.35rem;
}

.metric-card p:not(.metric-card__value) {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.page-hero {
  padding: 4.5rem 0 2.2rem;
  background:
    linear-gradient(180deg, #0b0c0e 0%, #17191d 100%);
  color: var(--white);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero__lead {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.72);
}

.page-block {
  padding: 4.5rem 0 5.5rem;
}

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--ink-soft);
}

.solutions-list,
.report-list,
.contact-sheet {
  display: grid;
  gap: 1rem;
}

.solutions-list {
  grid-template-columns: repeat(2, 1fr);
}

.solution-card,
.report-card,
.contact-sheet article,
.partners-frame {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.solution-card li + li,
.contact-sheet p + p {
  margin-top: 0.35rem;
}

.solution-card li {
  color: var(--ink-soft);
}

.report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.report-card h2 {
  font-size: 1.4rem;
  font-weight: 400;
}

.report-card__status {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.partners-frame {
  padding: 1.5rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.prospect {
  padding: 5.5rem 0 4.5rem;
  background:
    linear-gradient(180deg, #101215 0%, #0b0c0e 100%);
  border-bottom: 1px solid var(--line-dark);
}

.prospect__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.prospect h2,
.footer-core h3,
.modal h2 {
  color: var(--white);
}

.prospect__points {
  margin-top: 1.4rem;
}

.prospect__points li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
}

.prospect__points li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.form {
  padding: 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: var(--black-2);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form label {
  display: block;
  margin-bottom: 0.85rem;
}

.form label span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-meta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.8rem 0.85rem;
  border: 1px solid #2b2e34;
  border-radius: 10px;
  background: #0e1013;
  color: var(--white);
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
}

.form__check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.form__check input {
  width: 1rem;
  margin-top: 0.3rem;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
}

.form__alert {
  margin-bottom: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form__alert.is-ok {
  background: rgba(6, 118, 71, 0.15);
  color: #73e2a3;
}

.form__alert.is-error {
  background: rgba(180, 35, 24, 0.15);
  color: #ffb4ab;
}

.footer-core {
  padding: 3.5rem 0;
}

.footer-core__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.1fr;
  gap: 2rem;
}

.footer-core h3 {
  margin-bottom: 1rem;
  font-family: var(--font-meta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 168px;
  margin-bottom: 1rem;
}

.footer-core a,
.link-button {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
}

.footer-core li + li,
.footer-core address + address {
  margin-top: 0.55rem;
}

.footer-core address strong {
  display: block;
  color: var(--white);
}

.link-button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.footer-core a:hover,
.link-button:hover {
  color: var(--gold);
}

.footer-data dl {
  margin: 0;
}

.footer-data div + div {
  margin-top: 0.7rem;
}

.footer-data dt {
  font-family: var(--font-meta);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.footer-data dd {
  margin: 0.15rem 0 0;
}

.seals {
  border-top: 1px solid var(--line-dark);
  padding: 1.4rem 0;
}

.seals__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.seals p {
  font-family: var(--font-meta);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.seals li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-size: 0.8rem;
}

.seals span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
}

.legal {
  padding: 1.2rem 0 1.8rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.legal__row {
  display: grid;
  gap: 0.7rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal__dialog {
  position: relative;
  width: min(92vw, 460px);
  margin: 18vh auto 0;
  padding: 2rem 1.6rem 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: var(--black-2);
  color: rgba(255, 255, 255, 0.78);
}

.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal a {
  color: var(--gold-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-drawer {
    display: block;
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    padding: 0.5rem 1.25rem 1.4rem;
    background: rgba(11, 12, 14, 0.96);
  }

  .nav-drawer[hidden] {
    display: none;
  }

  .nav-drawer a {
    display: block;
    padding: 0.85rem 0;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-drawer .btn {
    width: 100%;
    margin-top: 1rem;
    border-bottom: 0;
  }

  .split__grid,
  .prospect__grid,
  .metrics__grid,
  .footer-core__grid,
  .solutions-list,
  .form__row {
    grid-template-columns: 1fr;
  }

  .split--media-left .split__media {
    order: -1;
  }

  .seals__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__content {
    padding-bottom: 7rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .split,
  .metrics,
  .prospect {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .backdrop {
    min-height: auto;
    padding: 4.5rem 0;
  }

  .backdrop__media {
    background-attachment: scroll;
  }

  .report-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
