@charset "UTF-8";
:root {
  --color-brand: #C9E269;
  --color-brand-strong: color-mix(in srgb, #C9E269 83%, black);
  --color-ink: #07140f;
  --color-ink-2: #10271d;
  --color-ink-3: #173527;
  --color-surface: #f2f6f4;
  --color-surface-2: #e8f0e8;
  --color-white: #ffffff;
  --color-muted: #6e7d75;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-line-dark: rgba(10, 29, 21, 0.12);
  --font-family-base: Inter;
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 48px);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 24px 80px rgba(7, 20, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-ink);
  color: var(--color-white);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--color-ink);
}

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin: 0 auto;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  box-shadow: 0 0 0 rgba(201, 226, 105, 0);
}
.button--primary:hover {
  box-shadow: 0 14px 34px rgba(201, 226, 105, 0.22);
}

.button img {
  width: 16px;
  height: 16px;
}

.button--primary {
  background: var(--color-brand);
  color: var(--color-ink);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--color-white);
}

.button--login {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-white);
  white-space: nowrap;
  flex-shrink: 0;
}
.button--login img {
  width: 16px;
  height: 16px;
}

.button--large {
  min-height: 56px;
  min-width: 232px;
  padding-inline: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-ink);
  font-weight: 800;
}
.text-link::after {
  content: "â†’";
}

.text-link--light {
  color: var(--color-brand);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 620ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--left {
  transform: translate3d(-32px, 0, 0);
}

.reveal--right {
  transform: translate3d(32px, 0, 0);
}

.reveal--scale {
  transform: translate3d(0, 22px, 0) scale(0.96);
}

.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 800;
}
.eyebrow::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr) auto;
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin: 0 auto;
  padding: 25px 0 0;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 228px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}

.brand--footer small {
  color: rgba(255, 255, 255, 0.55);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 16px;
}
.header-actions .button--primary {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 16px;
}

.hero {
  position: relative;
  min-height: 858px;
  background: url("../assets/images/imagem-fundo-sessao-1.png") center top/cover no-repeat var(--color-ink);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 801px;
  flex-direction: column;
  justify-content: space-between;
  padding: 134px 0 0;
}

.hero__copy {
  max-width: 640px;
}
.hero__copy h1 {
  max-width: 640px;
  margin: 0 0 32px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}
.hero__copy p {
  max-width: 530px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.specialist-link {
  position: absolute;
  right: 0;
  bottom: 194px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-brand);
  font-size: 16px;
  font-weight: 500;
}

.specialist-link__arrow {
  width: 15px;
  height: 14px;
}

.specialist-link__avatars {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 36px;
}
.specialist-link__avatars img {
  position: absolute;
  top: 0;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-brand);
  border-radius: 999px;
  object-fit: cover;
}
.specialist-link__avatars img:first-child {
  left: 0;
  opacity: 0.32;
  filter: grayscale(1);
}
.specialist-link__avatars img:last-child {
  left: 18px;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px 16px 0 0;
}
.hero__highlights article {
  min-height: 148px;
  padding: 35px 42px 30px;
  border-right: 3px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}
.hero__highlights article:last-child {
  border-right: 0;
}
.hero__highlights img {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
}
.hero__highlights p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.hero__highlights strong {
  display: block;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.proof-about-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(48% 56% at 82% 47%, rgba(19, 223, 206, 0.12) 0%, rgba(201, 226, 105, 0.08) 42%, rgba(235, 239, 234, 0) 78%), radial-gradient(34% 42% at 96% 38%, rgba(201, 226, 105, 0.09) 0%, rgba(19, 223, 206, 0.06) 46%, rgba(235, 239, 234, 0) 80%), linear-gradient(90deg, #f2f6f4 0%, #f2f6f4 54%, #e4f0ea 76%, #d8efe8 100%);
  color: var(--color-ink);
}
.proof-about-section::after {
  content: "";
  position: absolute;
  right: -22%;
  top: 170px;
  z-index: -1;
  width: 72%;
  height: 660px;
  background: radial-gradient(ellipse at center, rgba(19, 223, 206, 0.14) 0%, rgba(201, 226, 105, 0.1) 44%, rgba(235, 239, 234, 0) 78%);
  filter: blur(68px);
  pointer-events: none;
}

.proof-about__social {
  padding: 66px var(--gutter) 64px;
  text-align: center;
}
.proof-about__social p {
  margin: 0 0 32px;
  color: #202824;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  row-gap: 28px;
}
.brand-row img {
  width: auto;
  max-width: 150px;
  max-height: 44px;
  object-fit: contain;
}

.brand-row__name {
  color: #202824;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-about__about {
  position: relative;
  overflow: hidden;
  padding: 64px 0 32px;
  color: #202824;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 632px) minmax(480px, 571px);
  align-items: start;
  justify-content: space-between;
  gap: 72px;
}

.about-copy {
  max-width: 632px;
}
.about-copy h2 {
  margin: 32px 0 16px;
  color: #202824;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}
.about-copy p {
  max-width: 588px;
  margin: 0 0 32px;
  color: rgba(32, 40, 36, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.about-kicker {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  color: #202824;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.about-kicker::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: var(--border-radius-container-small, 2px);
  background: #C9E269;
}

.about-button {
  min-width: 217px;
  min-height: 48px;
  margin-top: 7px;
  padding-inline: 24px;
  font-weight: 600;
}

.about-image {
  position: relative;
  width: 571px;
  height: 419px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}
.about-image > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image__shape {
  position: absolute;
  z-index: 2;
  right: -203px;
  bottom: -298px;
  width: 711px;
  height: 944.85px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 69px;
}
.about-stats article {
  position: relative;
  min-height: 157px;
  padding: 30px 40px 0;
}
.about-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 157px;
  background: linear-gradient(180deg, rgba(201, 226, 105, 0) 0%, #C9E269 48.56%, rgba(201, 226, 105, 0) 100%);
}
.about-stats strong {
  display: block;
  color: #202824;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px;
}
.about-stats span {
  display: block;
  color: #202824;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.section {
  padding: var(--space-9) 0;
}

.section--light {
  background: var(--color-surface);
  color: var(--color-ink);
}

.solutions-section {
  overflow: hidden;
  padding: 64px 0;
  background: #202824;
  color: #fff;
}

.solutions-heading {
  position: relative;
  text-align: center;
}
.solutions-heading > span {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.solutions-heading > span::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: var(--border-radius-container-small, 2px);
  background: #C9E269;
}
.solutions-heading h2 {
  margin: 26px 0 0;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}
.solutions-heading .solutions-heading__lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.solutions-nav {
  position: absolute;
  right: 148px;
  bottom: -83px;
  display: inline-flex;
  gap: 25px;
  margin-bottom: 16px;
}
.solutions-nav button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(16, 31, 24, 0.42);
  color: #C9E269;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.solutions-nav button:disabled {
  color: rgba(201, 226, 105, 0.28);
  cursor: not-allowed;
  opacity: 0.45;
}

.solutions-carousel {
  margin-top: 78px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-card-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 22px 22px 24px;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.solution-card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.solution-card strong {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
.solution-card small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.solution-card--active {
  border-bottom-color: #C9E269;
  background: rgba(255, 255, 255, 0.08);
}

.solution-card__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.solution-detail {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(420px, 560px);
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding-top: 52px;
}

.solution-detail__copy h3 {
  margin: 0 0 29px;
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
.solution-detail__copy ul {
  display: grid;
  gap: 32px;
  margin: 0 0 49px;
  padding: 0;
  list-style: none;
}
.solution-detail__copy li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 14px;
  animation: solutionItemIn 520ms ease both;
}
.solution-detail__copy li:nth-child(2) {
  animation-delay: 90ms;
}
.solution-detail__copy li:nth-child(3) {
  animation-delay: 180ms;
}
.solution-detail__copy strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.solution-detail__copy p {
  max-width: 588px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.solution-button {
  min-width: 198px;
  min-height: 48px;
  padding-inline: 24px;
  font-weight: 600;
}

.solution-visual,
.dossier-highlight__image {
  position: relative;
  margin: 0;
}

.solution-visual {
  min-height: 390px;
  animation: solutionVisualIn 700ms ease both;
}
.solution-visual::before, .solution-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.solution-visual::before {
  right: -96px;
  top: -8px;
  width: 620px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(19, 223, 206, 0.22) 0%, rgba(54, 134, 92, 0.18) 42%, rgba(32, 40, 36, 0) 76%);
  filter: blur(58px);
}
.solution-visual::after {
  right: 34px;
  bottom: -150px;
  width: 470px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(201, 226, 105, 0.2) 0%, rgba(127, 231, 83, 0.12) 46%, rgba(32, 40, 36, 0) 78%);
  filter: blur(70px);
}
.solution-visual > img {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin-left: auto;
  object-fit: contain;
}

.solution-visual__shape,
.dossier-highlight__shape {
  display: none;
}

.solution-visual__shape {
  right: -165px;
  top: -150px;
}

.solution-visual__shape--base {
  opacity: 0.82;
  transform: translate(-18px, 14px) rotate(-1deg);
}

.solution-visual__shape--glow {
  z-index: 1;
  opacity: 0.7;
  mix-blend-mode: soft-light;
  transform: translate(22px, -10px) rotate(1deg);
}

.dossier-highlight {
  display: grid;
  grid-template-columns: minmax(420px, 548px) minmax(0, 580px);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-top: 64px;
}

.dossier-highlight__image {
  min-height: 536px;
}
.dossier-highlight__image::before, .dossier-highlight__image::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.dossier-highlight__image::before {
  left: -124px;
  top: -42px;
  width: 620px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(19, 223, 206, 0.18) 0%, rgba(54, 134, 92, 0.16) 42%, rgba(32, 40, 36, 0) 76%);
  filter: blur(64px);
}
.dossier-highlight__image::after {
  left: -42px;
  bottom: -80px;
  width: 430px;
  height: 330px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(201, 226, 105, 0.16) 0%, rgba(127, 231, 83, 0.1) 46%, rgba(32, 40, 36, 0) 78%);
  filter: blur(74px);
}
.dossier-highlight__image > img {
  position: relative;
  z-index: 2;
  width: min(100%, 548px);
  object-fit: contain;
  animation: solutionVisualIn 700ms ease both;
}

.dossier-highlight__shape {
  left: -302px;
  top: -188px;
}

.dossier-highlight__shape--base {
  opacity: 0.82;
  transform: translate(20px, 12px) rotate(-1deg);
}

.dossier-highlight__shape--glow {
  z-index: 1;
  opacity: 0.7;
  mix-blend-mode: soft-light;
  transform: translate(-20px, -12px) rotate(1deg);
}

.dossier-highlight__copy > span {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.dossier-highlight__copy > span::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: var(--border-radius-container-small, 2px);
  background: #C9E269;
}
.dossier-highlight__copy h2 {
  margin: 24px 0;
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}
.dossier-highlight__copy p {
  max-width: 558px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.dossier-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
  margin-bottom: 40px;
}
.dossier-check-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}

@keyframes solutionItemIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes solutionVisualIn {
  from {
    opacity: 0;
    transform: translate3d(56px, 0, -40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.section--dark {
  background: var(--color-ink-2);
  color: var(--color-white);
}

.section--cta {
  background: var(--color-ink-2);
  padding-top: 0;
}

.section-heading {
  margin-bottom: var(--space-8);
}
.section-heading h2 {
  max-width: 760px;
  margin: var(--space-4) 0 0;
  font-size: clamp(34px, 3.5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}
.section-heading p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.section-heading--center {
  text-align: center;
}
.section-heading--center .eyebrow {
  justify-content: center;
}
.section-heading--center h2,
.section-heading--center p {
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.split--center {
  align-items: center;
}

.split--solution {
  margin-top: var(--space-8);
}

.split--reverse {
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  margin-top: var(--space-9);
}

.split--api {
  grid-template-columns: minmax(320px, 540px) minmax(0, 1fr);
}

.split--testimonial {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
}

.section-copy h2 {
  margin: var(--space-4) 0 var(--space-5);
  font-size: clamp(34px, 3.6vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-copy h3 {
  margin: var(--space-4) 0 var(--space-5);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.08;
}
.section-copy p {
  margin: 0 0 var(--space-6);
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}
.section--dark .section-copy p, .testimonials .section-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.image-card,
.portrait {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.image-card {
  aspect-ratio: 1.35;
}

.portrait {
  aspect-ratio: 0.78;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-8);
  border-top: 1px solid var(--color-line-dark);
}
.stats article {
  padding: var(--space-7) var(--space-5) 0;
  border-right: 1px solid var(--color-line-dark);
}
.stats article:first-child {
  padding-left: 0;
}
.stats strong {
  display: block;
  font-size: clamp(32px, 3vw, 54px);
}
.stats span {
  color: var(--color-muted);
}

.segments-section {
  padding: 64px 0;
  background: var(--color-surface);
  color: #202824;
  text-align: center;
}

.segments-heading > span {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #202824;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.segments-heading > span::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: var(--border-radius-container-small, 2px);
  background: #C9E269;
}
.segments-heading h2 {
  margin: 24px 0 0;
  color: #202824;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.segments-grid {
  display: grid;
  grid-template-columns: minmax(420px, 700px) minmax(420px, 714px);
  grid-auto-rows: 295px;
  gap: 24px;
  margin-top: 53px;
  justify-content: center;
  text-align: left;
}

.segment-card {
  position: relative;
  display: flex;
  min-height: 295px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--border-radius-container-medium, 6px);
  background-position: center;
  background-size: cover;
  color: #fff;
}
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(210deg, rgba(32, 40, 36, 0) 18.47%, rgba(32, 40, 36, 0.4) 40.64%, rgba(32, 40, 36, 0.8) 95.48%);
}
.segment-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 30px 32px 28px;
}
.segment-card div > img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: left center;
}
.segment-card h3 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0;
}
.segment-card p {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.segment-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #C9E269;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.segment-card a img {
  width: 8px;
  height: 10px;
}

.segment-card--featured {
  grid-row: span 2;
  min-height: 614px;
}

.footer-hours-block p {
  margin: 0;
  max-width: 280px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.segments-button {
  display: none;
}

.features-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: #202824;
  color: #fff;
}

.section-kicker {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #202824;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.section-kicker::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: var(--border-radius-container-small, 2px);
  background: #C9E269;
}

.section-kicker--light {
  color: #fff;
}

.features-dots {
  position: absolute;
  pointer-events: none;
}

.features-dots--top {
  top: 8px;
  right: 555px;
  width: 84px;
  height: auto;
}

.features-intro {
  text-align: center;
}
.features-intro h2 {
  margin: 24px 0 0;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
}

.feature-card {
  display: flex;
  min-height: 137px;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px;
  border: 0;
}
.feature-card img {
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
}
.feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}
.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.feature-card:nth-child(1) {
  border: 2px solid #313935;
  border-radius: 0 0 16px 0;
  border-bottom: 1px solid #313935;
}
.feature-card:nth-child(2) {
  border-top: 2px solid #313935;
  border-right: 2px solid #313935;
  border-bottom: 1px solid #313935;
  border-radius: 0 0 16px 16px;
}
.feature-card:nth-child(3) {
  border-top: 2px solid #313935;
  border-right: 2px solid #313935;
  border-bottom: 1px solid #313935;
  border-radius: 0 0 0 16px;
}
.feature-card:nth-child(4) {
  border: 2px solid #313935;
  border-top: 1px solid #313935;
  border-bottom: 1px solid #313935;
  border-radius: 0 16px 16px 0;
}
.feature-card:nth-child(5) {
  border-top: 1px solid #313935;
  border-right: 2px solid #313935;
  border-bottom: 1px solid #313935;
  border-radius: 16px;
}
.feature-card:nth-child(6) {
  border-top: 1px solid #313935;
  border-right: 2px solid #313935;
  border-bottom: 1px solid #313935;
  border-radius: 16px 0 0 16px;
}
.feature-card:nth-child(7) {
  border: 2px solid #313935;
  border-radius: 0 16px 0 0;
  border-top: 1px solid #313935;
}
.feature-card:nth-child(8) {
  border-top: 1px solid #313935;
  border-right: 2px solid #313935;
  border-bottom: 2px solid #313935;
  border-radius: 16px 16px 0 0;
}
.feature-card:nth-child(9) {
  border-top: 1px solid #313935;
  border-right: 2px solid #313935;
  border-bottom: 2px solid #313935;
  border-radius: 16px 0 0 0;
}

.specialist-link--inline {
  position: static;
  display: flex;
  margin: 58px auto 0;
  justify-content: center;
  width: fit-content;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(320px, 470px);
  align-items: center;
  justify-content: center;
  column-gap: 142px;
}

.feature-split--support {
  margin-top: 64px;
}

.feature-split--api {
  margin-top: 64px;
}

.feature-copy h2 {
  margin: 24px 0;
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}
.feature-copy h2 strong {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
}
.feature-copy p {
  max-width: 464px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.feature-copy p strong {
  color: #fff;
  font-weight: 700;
}

.feature-button {
  min-width: 180px;
  min-height: 48px;
  padding-inline: 24px;
  font-weight: 600;
}

.feature-button--icon {
  min-width: 252px;
}

.feature-media {
  position: relative;
  width: 470px;
  margin: 0;
  isolation: isolate;
}
.feature-media::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 760px;
  height: 720px;
  right: -250px;
  bottom: -170px;
  border-radius: 46% 54% 58% 42%/38% 44% 56% 62%;
  background: radial-gradient(ellipse at 66% 26%, rgba(19, 223, 206, 0.15) 0%, rgba(19, 223, 206, 0.08) 32%, rgba(19, 223, 206, 0) 70%), radial-gradient(ellipse at 30% 74%, rgba(74, 118, 57, 0.2) 0%, rgba(74, 118, 57, 0.12) 36%, rgba(74, 118, 57, 0) 72%), linear-gradient(136deg, rgba(19, 223, 206, 0.025) 0%, rgba(94, 136, 74, 0.075) 100%);
  filter: blur(88px);
  opacity: 0.78;
  transform: rotate(-13deg);
}

.feature-media__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 470px;
  height: 672px;
  aspect-ratio: 114/163;
  border-radius: var(--border-radius-container-medium, 6px);
  object-fit: cover;
  animation: imageReveal 900ms ease both;
}

.feature-media__dots {
  position: absolute;
  z-index: 2;
  width: 102px;
  height: auto;
  pointer-events: none;
}

.feature-media--support .feature-media__image {
  object-position: 55% center;
}
.feature-media--support .feature-media__dots {
  right: -60px;
  bottom: -60px;
  transform: rotate(180deg);
}

.feature-media--api .feature-media__image {
  height: 550px;
  object-position: center;
}
.feature-media--api .feature-media__dots {
  left: -44px;
  bottom: -60px;
  transform: rotate(180deg);
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translate3d(46px, 20px, 0) scale(0.96);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}
.database-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: #1a201d;
  color: #fff;
}

.database-section__bg {
  position: absolute;
  top: -18px;
  right: -52px;
  width: 860px;
  height: 1033px;
  aspect-ratio: 244/293;
  object-fit: cover;
  opacity: 0.18;
  filter: brightness(0.68) contrast(0.9);
  pointer-events: none;
}

.database-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}
.database-heading h2 {
  margin: 24px 0;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.database-specialist {
  margin-top: 0;
}

.source-tags {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1308px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 74px;
}
.source-tags span {
  display: flex;
  width: max-content;
  min-height: 52px;
  align-items: center;
  gap: 16px;
  border-radius: var(--border-radius-container-medium, 6px);
  padding: 16px 24px;
  background: #202824;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  white-space: nowrap;
}
.source-tags img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.source-tags__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.database-link {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 64px auto 0;
  color: #C9E269;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.database-link img {
  width: 15px;
  height: 14px;
}

.code-window {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #050b09;
  box-shadow: var(--shadow-soft);
}
.code-window pre {
  margin: 0;
  padding: var(--space-7);
  overflow-x: auto;
  color: #b6f7a2;
  font-size: 15px;
  line-height: 1.7;
}

.code-window__bar {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-line);
}
.code-window__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-brand);
}

.testimonial-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  background: #0a1812;
}
.testimonial-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.testimonial-card div {
  padding: var(--space-7);
}
.testimonial-card strong {
  color: var(--color-brand);
}
.testimonial-card p {
  margin: var(--space-4) 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.5;
}
.testimonial-card span {
  color: rgba(255, 255, 255, 0.58);
}

.faq-list {
  max-width: 1120px;
}
.faq-list details {
  border-top: 1px solid var(--color-line);
  padding: var(--space-6) 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--color-line);
}
.faq-list summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  font-weight: 800;
}
.faq-list p {
  max-width: 900px;
  margin: var(--space-4) 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--color-brand);
  color: var(--color-ink);
}
.cta-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.cta-panel div {
  padding: var(--space-8);
}
.cta-panel h2 {
  max-width: 560px;
  margin: 0 0 var(--space-5);
  font-size: clamp(40px, 4vw, 70px);
  line-height: 1;
}
.cta-panel p {
  max-width: 520px;
  margin: 0 0 var(--space-7);
  color: rgba(7, 20, 15, 0.7);
  font-size: 18px;
  line-height: 1.6;
}
.cta-panel .button--primary {
  border-color: var(--color-ink);
}

.reputation-section {
  overflow: hidden;
  padding: 64px 0;
  background: #202824;
  color: #fff;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.testimonial-copy h2 {
  margin: 24px 0;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.testimonial-specialist {
  margin: 0;
}

.testimonial-carousel {
  min-width: 0;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-nav button {
  width: 64px;
  height: 64px;
  border: 0;
  background: #1a201d;
  color: #C9E269;
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}
.testimonial-nav button:not(:disabled):hover {
  transform: translateY(-2px);
}
.testimonial-nav button:disabled {
  cursor: default;
  opacity: 0.28;
}
.testimonial-nav span {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}

.testimonial-stage {
  position: relative;
  min-height: 540px;
}

.testimonial-stage--text-only {
  min-height: auto;
}
.testimonial-stage--text-only .testimonial-content {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 760px;
}
.testimonial-stage--text-only .testimonial-content p {
  font-size: 16px;
  line-height: 24px;
}

.testimonial-client {
  color: #C9E269;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testimonial-photo {
  display: block;
  width: 560px;
  height: 540px;
  border-radius: var(--border-radius-container-medium, 6px);
  object-fit: cover;
  object-position: center;
}

.testimonial-content {
  position: absolute;
  right: -120px;
  bottom: 12px;
  display: inline-flex;
  width: min(760px, 72%);
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 23px;
  border-radius: var(--border-radius-container-medium, 6px);
  background: #1a201d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.testimonial-content p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.testimonial-content strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
.testimonial-content span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testimonial-logo {
  max-width: 154px;
  max-height: 42px;
  object-fit: contain;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-stars img {
  width: 11px;
  height: 11px;
}

.faq-block {
  margin-top: 64px;
}

.faq-heading {
  text-align: center;
}
.faq-heading h2 {
  margin: 24px 0 64px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.faq-list {
  max-width: 100%;
}
.faq-list .faq-item {
  display: flex;
  padding: 32px 32px 44px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-top: 0;
  border-bottom: 1px solid #313935;
}
.faq-list .faq-item:last-child {
  border-bottom: 1px solid #313935;
}
.faq-list button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 44px;
  padding: 0;
  text-align: left;
  transition: color 220ms ease;
}
.faq-list button:hover {
  color: #C9E269;
}
.faq-list .faq-item--open button {
  color: #C9E269;
}
.faq-list p {
  max-width: 1280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: grid-template-rows 280ms ease, opacity 220ms ease, transform 280ms ease;
}
.faq-answer p {
  min-height: 0;
}

.faq-item--open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-arrow {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.faq-arrow__icon {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 24px;
  transition: opacity 220ms ease, transform 280ms ease;
}

.faq-arrow__icon--closed {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-arrow__icon--open {
  opacity: 0;
  transform: rotate(-180deg);
}

.faq-item--open .faq-arrow__icon--closed {
  opacity: 0;
  transform: rotate(180deg);
}
.faq-item--open .faq-arrow__icon--open {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 32px auto 0;
  color: #C9E269;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}
.faq-link img {
  width: 15px;
  height: 15px;
}

.final-cta {
  display: grid;
  width: min(1440px, 100% - var(--gutter) * 2);
  min-height: 443px;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.92fr);
  align-items: stretch;
  overflow: hidden;
  margin-top: 64px;
  border-radius: var(--border-radius-container-medium, 6px);
  background: #1a201d;
}

.final-cta__image {
  width: 100%;
  height: 100%;
  min-height: 443px;
  object-fit: cover;
  object-position: center;
}

.final-cta__content {
  display: flex;
  padding: 32px 64px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.final-cta__content h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  line-height: 49px;
}
.final-cta__content p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.site-footer {
  padding: 44px 0 48px;
  background: #202824;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  padding-right: 85px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand img {
  display: block;
  width: 245px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.footer-contact-strip,
.footer-whatsapp,
.footer-contact-strip strong,
.footer-whatsapp strong,
.back-to-top,
.footer-legal nav {
  display: flex;
  align-items: center;
}

.footer-contact-strip,
.footer-whatsapp {
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.footer-contact-strip:hover {
  color: #fff;
}

.footer-contact-strip:hover strong {
  color: #fff;
}

.footer-contact-strip strong,
.footer-whatsapp strong {
  gap: 8px;
  color: #C9E269;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.footer-whatsapp span {
  color: #fff;
}

.footer-avatars {
  margin-right: 2px;
}
.footer-avatars img {
  width: 38px;
  height: 38px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr 1.3fr 1.35fr;
  gap: 64px;
  padding: 64px 0;
}
.footer-grid--launch {
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(260px, 1.2fr);
}
.footer-grid nav,
.footer-grid .footer-service,
.footer-grid .footer-address,
.footer-grid .footer-hours-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid nav {
  gap: 12px;
}
.footer-grid h3 {
  position: relative;
  margin: 0 0 26px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.footer-grid h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 18px;
  height: 2px;
  border-radius: var(--border-radius-container-small, 2px);
  background: #C9E269;
}
.footer-grid a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.footer-service {
  gap: 16px;
}

.footer-service-card {
  display: flex;
  width: 100%;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: var(--border-radius-container-medium, 6px);
  background: #1a201d;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.footer-service-card img {
  width: 24px;
  height: 24px;
}

.footer-hours {
  margin: 8px 0 44px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.footer-hours strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.footer-address {
  margin-top: 0;
}
.footer-address p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
}
.footer-bottom p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.back-to-top {
  gap: 12px;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.back-to-top img {
  width: 24px;
  height: 24px;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}
.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.footer-legal nav {
  justify-content: flex-end;
  gap: 44px;
  margin-top: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.segment-page {
  background: #202824;
}

.site-nav__link--active {
  color: #C9E269;
}

.site-header--segment {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}

.segment-hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: linear-gradient(180deg, #202824 0%, rgba(32, 40, 36, 0) 38.46%, rgba(32, 40, 36, 0) 100%), linear-gradient(180deg, rgba(12, 15, 13, 0.44) 0%, rgba(12, 15, 13, 0.52) 100%), url("../assets/images/segments-page/fundo-tela-segmentos.png") center/cover no-repeat;
}

.segment-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  text-align: center;
}

.segment-hero__chip {
  display: inline-flex;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  border-radius: var(--border-radius-container-medium, 6px);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.segment-hero__chip img {
  width: 18px;
  height: 18px;
}

.segment-hero h1 {
  max-width: 760px;
  margin: 24px 0 16px;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0;
}

.segment-hero p {
  max-width: 635px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.specialist-link--segment {
  position: static;
  margin-top: 34px;
}

.segment-dossier-section {
  padding: 99px 0 142px;
  background: #f2f6f4;
  color: #202824;
}

.segment-dossier {
  display: grid;
  grid-template-columns: minmax(420px, 548px) minmax(0, 600px);
  align-items: center;
  justify-content: space-between;
  gap: 96px;
}

.segment-dossier__image {
  position: relative;
  min-height: 536px;
  margin: 0;
}

.segment-dossier__photo {
  position: relative;
  z-index: 2;
  width: min(100%, 548px);
  border-radius: var(--border-radius-container-medium, 6px);
  object-fit: contain;
}

.section-kicker--dark {
  color: #202824;
}

.segment-dossier__copy h2 {
  margin: 24px 0;
  color: #202824;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.segment-dossier__copy p {
  max-width: 560px;
  margin: 0 0 18px;
  color: rgba(32, 40, 36, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.segment-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 56px;
  margin: 24px 0;
}
.segment-check-grid strong {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #202824;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
}
.segment-check-grid img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.segment-dossier__button {
  min-width: 214px;
  min-height: 48px;
  font-weight: 600;
}

.segment-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 96px;
  overflow: hidden;
  border: 3px solid rgba(32, 40, 36, 0.08);
  border-radius: 16px 16px 0 0;
}
.segment-highlights article {
  min-height: 148px;
  padding: 35px 42px 30px;
  border-right: 3px solid rgba(32, 40, 36, 0.08);
}
.segment-highlights article:last-child {
  border-right: 0;
}
.segment-highlights img {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(10%) saturate(606%) hue-rotate(95deg) brightness(92%) contrast(89%);
}
.segment-highlights p {
  margin: 0;
  color: #202824;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.segment-highlights strong {
  display: block;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.segment-spacer {
  min-height: 232px;
  background: #f2f6f4;
}

.segment-footer-cta {
  background: #202824;
}

.final-cta--segment {
  margin-top: 0;
}

.brand-row img,
.about-image > img,
.solution-visual img,
.dossier-highlight__image > img,
.split__image img,
.segment-dossier__photo,
.final-cta__image {
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

.brand-row img:hover {
  transform: translateY(-4px) scale(1.04);
}

.about-image:hover > img,
.solution-visual:hover img,
.dossier-highlight__image:hover > img,
.split__image:hover img,
.segment-dossier__image:hover .segment-dossier__photo,
.final-cta:hover .final-cta__image {
  transform: scale(1.025);
}

.solution-card,
.segment-card,
.feature-card,
.source-chip,
.faq-item,
.testimonial-content {
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.solution-card:hover,
.segment-card:hover,
.feature-card:hover,
.source-chip:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 226, 105, 0.46);
}

.feature-card:hover,
.source-chip:hover,
.testimonial-content:hover {
  box-shadow: 0 24px 70px rgba(5, 18, 12, 0.16);
}

.specialist-link {
  transition: color 180ms ease, transform 180ms ease;
}
.specialist-link:hover {
  transform: translateX(4px);
}

.specialist-link__arrow,
.button img {
  transition: transform 180ms ease;
}

.specialist-link:hover .specialist-link__arrow,
.button:hover img {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .button,
  .solution-card,
  .segment-card,
  .feature-card,
  .source-chip,
  .faq-item,
  .testimonial-content,
  .brand-row img,
  .specialist-link,
  .about-image > img,
  .solution-visual img,
  .dossier-highlight__image > img,
  .split__image img,
  .segment-dossier__photo,
  .final-cta__image {
    transition: none !important;
    transform: none !important;
  }
  .reveal-on-scroll {
    opacity: 1;
  }
}
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-nav {
    display: none;
  }
  .hero__highlights,
  .stats,
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-nav {
    right: 0;
  }
  .solutions-card-row {
    grid-template-columns: repeat(6, minmax(190px, 1fr));
    overflow-x: auto;
  }
  .solution-detail,
  .dossier-highlight,
  .testimonial-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    width: min(100%, 571px);
  }
  .segments-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-stage {
    padding-left: 0;
  }
  .testimonial-photo {
    width: 62%;
  }
  .testimonial-content {
    width: 58%;
  }
  .final-cta {
    height: auto;
  }
  .final-cta__image {
    height: 360px;
  }
}
@media (max-width: 820px) {
  .header-actions {
    display: none;
  }
  .site-header {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    background: url("../assets/images/imagem-fundo-sessao-1.png") center top/cover no-repeat var(--color-ink);
  }
  .hero__content {
    min-height: auto;
    padding: var(--space-8) 0 0;
  }
  .hero__copy {
    padding-bottom: var(--space-8);
  }
  .hero__copy p {
    font-size: 18px;
  }
  .hero__highlights,
  .stats,
  .about-stats,
  .segments-grid,
  .split,
  .split--reverse,
  .split--api,
  .split--testimonial,
  .cta-panel,
  .testimonial-card,
  .testimonial-layout,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .segments-heading h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .segments-grid {
    grid-auto-rows: auto;
  }
  .segment-card,
  .segment-card--featured {
    grid-row: auto;
    min-height: 280px;
  }
  .solutions-section {
    padding-top: var(--space-8);
  }
  .solutions-heading h2,
  .dossier-highlight__copy h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .solutions-nav {
    position: static;
    justify-content: center;
    margin-top: var(--space-5);
  }
  .solutions-carousel {
    margin-top: var(--space-7);
  }
  .solution-detail {
    gap: var(--space-7);
  }
  .solution-visual,
  .dossier-highlight__image {
    min-height: auto;
  }
  .solution-visual__shape,
  .dossier-highlight__shape {
    width: 520px;
    height: 690px;
  }
  .dossier-check-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: var(--space-8) 0;
  }
  .proof-about__about {
    padding-top: var(--space-8);
  }
  .about-copy h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .about-image {
    height: auto;
    aspect-ratio: 571/419;
  }
  .stats article {
    padding: var(--space-5) 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line-dark);
  }
  .about-stats article {
    padding: var(--space-5) 0;
  }
  .about-stats article::before {
    display: none;
  }
  .cta-panel div {
    padding: var(--space-6);
  }
  .reputation-section {
    padding: var(--space-8) 0;
  }
  .testimonial-copy h2,
  .faq-heading h2,
  .final-cta__content h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .testimonial-nav {
    justify-content: flex-start;
    margin-bottom: var(--space-5);
  }
  .testimonial-stage {
    min-height: auto;
  }
  .testimonial-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .testimonial-content {
    position: static;
    width: 100%;
  }
  .faq-block {
    margin-top: var(--space-8);
  }
  .faq-list summary {
    font-size: 24px;
    line-height: 32px;
  }
  .final-cta {
    width: min(100%, 100% - var(--gutter) * 2);
    margin-top: var(--space-8);
  }
  .final-cta__image {
    height: auto;
    aspect-ratio: 16/9;
  }
  .final-cta__content {
    padding: var(--space-6);
  }
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-4);
  }
}
