* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: clip;
  width: 100%;
  background-color: var(--bg-site);
}

.navbar__nav {
    list-style: none;
}

/* Troca de logo por tema */
.kz__logo { width: 220px; height: auto; }

.kz__logo--light { display: block !important; }
.kz__logo--dark  { display: none  !important; }

[data-theme="dark"] .kz__logo--light { display: none  !important; }
[data-theme="dark"] .kz__logo--dark  { display: block !important; }

.footer-kz__logo--light { display: block; }
.footer-kz__logo--dark  { display: none; }
[data-theme="dark"] .footer-kz__logo--light { display: none; }
[data-theme="dark"] .footer-kz__logo--dark  { display: block; }

/* Troca de ícones sociais por tema */
.social-icon--light { display: inline-block; }
.social-icon--dark  { display: none; }
[data-theme="dark"] .social-icon--light { display: none; }
[data-theme="dark"] .social-icon--dark  { display: inline-block; }

:root {
  /* CORES TEMA LIGHT (Padrão) */
  --bg-site: #ffffff;
  --navbar--normal: #0A121A;
  --navbar--hover: #1E40AF;
  --header-title: #1e40af;
  --header-text: #15253F;
  --header-text2: #15253F;
  --header-desc: #15253F;
  --btn-secondary-border: #d8d7ec;
  --text-note: #666d7a;
  --border: #1E40AF;
  --border--roxa-azul: rgba(30, 64, 175, 1);
  --border--transparente--cinza: rgba(235, 237, 255, 1);
  --purple: rgba(158, 163, 230, 1);
  --blue: #1E40AF;
  --blue-mid: #00AAFF;
  --blue-light: #9CCDFF;
  --blue-bg: rgba(30, 64, 175, 0.1);
  --blue-bg2: rgba(30, 64, 175, 0.05);
  --blue-bg3: rgba(30, 64, 175, 0.2);
  --blue-bg3: rgba(235, 237, 255, 1);
  --purple-bg: #EBEDFF;
  --green: #00FDA9;
  --dark: #15253F;
  --dark-sec: #405560;
  --grey: #6B7582;
  --grey-b: #5C6068;
  --border: #E5E7EB;
  --border-b: #EBEDFF;
  --white: #FFFFFF;
  --orange: #EE6C56;
  --link-color: #78BCFF;
}

/* CORES TEMA DARK (Ativado pelo seu JS) */
[data-theme="dark"] {
  --bg-site: #15253F;
  --navbar--normal: #FFFFFF;
  --navbar--hover: #0080FF;
  --header-title: #64B2FF;
  --header-text: #15253F;
  --header-text2: #15253F;
  --header-desc: #050505;
  --btn-secondary-border: var(--header-title);
  --text-note: #ffffff;
  --border: #1E40AF;
  --border--roxa-azul: rgba(0, 128, 255, 0.5);
  --border--transparente--cinza: rgba(76, 76, 76, 1);
  --purple: rgba(158, 163, 230, 1);
  --blue: #0080FF;
  --blue-mid: #00AAFF;
  --blue-light: #9CCDFF;
  --blue-bg: rgba(30, 64, 175, 0.1);
  --blue-bg2: rgba(30, 64, 175, 0.05);
  --blue-bg3: rgba(30, 64, 175, 0.2);
  --blue-bg4: rgba(235, 237, 255, 0.1);
  --purple-bg: rgb(22, 40, 74);
  --green: #00FDA9;
  --dark: #ffffff;
  --dark-sec: rgba(255, 255, 255, 0.5);
  --grey: rgba(255, 255, 255, 0.5);
  --grey-b: #ffffff;
  --border: #E5E7EB;
  --border-b: #EBEDFF;
  --white: #FFFFFF;
  --orange: #EE6C56;
  --link-color: #78BCFF;
}

/* --- GELICA FONT FAMILY --- */

/* Extra Light */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Extra-Light.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

/* Light */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* Regular */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

/* Italic (Regular) */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

/* Medium */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

/* Semi Bold */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Semi-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* Black */
@font-face {
  font-family: 'Gelica';
  src: url('../assets/fonts/fonnts.com-Gelica-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

.azul-escuro {
  color: var(--blue);
}

/* placeholder de imagem */
.img-ph {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 64, 175, .45);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  padding: 12px;
}

h1,
h2 {
  font-family: "Gelica", serif;
  font-weight: 600;
}

h3,
h4,
h5,
h6 {
  font-family: "Gelica", serif;
  font-weight: 400;
}

body {
  font-family: "Inter", sans-serif;
}

.text-bold {
  font-weight: 600;
}

.text-bold-blue-light {
  font-weight: 600;
  color: var(--blue-mid);
}

.navbar {
  background: var(--bg-site);
  padding: 18px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar__container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__brand {
  flex-shrink: 0;
}

.navbar__brand img {
  width: 220px;
  height: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--navbar--normal);
  transition: color 0.2s ease;
}

.navbar__nav a:hover,
.navbar__nav a.is-active {
  color: var(--navbar--hover);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 24px;
}

.navbar__cta {
  min-height: 48px;
  padding: 0 38px;
  background: var(--header-title);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(138, 128, 255, 0.24);
  border-radius: 5px;
    cursor: pointer;
}

.navbar__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.navbar__toggle span {
  width: 18px;
  height: 2px;
  background: var(--navbar--normal);
  display: block;
}

/* THEME TOGGLE */
.theme-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.theme-toggle__track {
  width: 54px;
  height: 28px;
  border-radius: 999px;
  background: #eef1f6;
  border: 1px solid #d8d7ec;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--bg-site);
  box-shadow: 0 2px 8px rgba(31, 42, 68, 0.16);
  transition: transform 0.25s ease;
}

.theme-toggle__icon {
  position: relative;
  z-index: 2;
  font-size: 11px;
  line-height: 1;
  color: var(--navbar--normal);
}

html[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(26px);
}

.navbar-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.navbar-mobile.is-open {
  display: block;
}

.navbar-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 23, 0.55);
}

.navbar-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 360px);
  height: 100dvh;
  background: var(--bg-site);
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 24px rgba(31, 42, 68, 0.12);
}

.navbar-mobile__top {
  display: flex;
  justify-content: space-between;
  margin-block: 32px;
}

.navbar-mobile__close {
  width: 36px;
  height: 36px;
  border: 1px solid #d8d7ec;
  border-radius: 8px;
  background: var(--bg-fundo-card);
  color: var(--navbar--normal);
  fill: #405560;
  font-size: 20px;
  cursor: pointer;
}

.navbar-mobile__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.navbar-mobile__brand img {
  width: 140px;
  height: auto;
  display: block;
}

.navbar-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.navbar-mobile__nav a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navbar--normal);
  padding: 14px 12px;
  border-radius: 10px;
}

.navbar-mobile__nav a:hover,
.navbar-mobile__nav a.is-active {
  background: var(--bg-fundo-card2);
}

.navbar-mobile__cta {
  margin-top: 18px;
  min-height: 48px;
  background: var(--header-title);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  padding-left: 16px;
  position: relative;
  /* necessário pro absolute do filho */
    cursor: pointer;
}

.navbar-mobile__cta-line {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  /* espessura da barra */
  height: 18px;
  /* altura da barra */
  background: #FFA17E;
  border-radius: 2px;
}

.navbar-mobile__theme {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.navbar-mobile__social {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 26px;
}

.navbar-mobile__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-mobile__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.navbar-mobile__copyright {
  margin-top: 18px;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: var(--dark);
}

/* TABLET / MOBILE */
@media (max-width: 900px) {
  .navbar {
    padding: 10px 12px;
  }

  .navbar__container {
    gap: 12px;
  }

  .navbar__brand img {
    width: 135px;
  }

  .navbar__nav,
  .navbar__actions {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }
}

/* MOBILE MENOR */
@media (max-width: 640px) {
  .navbar-mobile__panel {
    width: 100%;
    max-width: 100%;
    padding: 16px 14px 24px;
  }

  .navbar-mobile__brand img {
    width: 125px;
  }

  .navbar-mobile__nav a {
    font-size: 15px;
    padding: 12px 10px;
  }

  .navbar-mobile__cta {
    font-size: 14px;
    min-height: 44px;
  }

  .navbar-mobile__copyright {
    font-size: 11px;
  }
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  max-width: 1920px;
  margin: 30px auto 0;
  padding: 0 51px;
}

.hero-inner {
  background: var(--blue-bg);
  border-radius: 20px;
  min-height: 716px;
  display: flex;
  align-items: center;
  /* MUDOU DE flex-end PARA center */
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 40px 0 40px 40px;
  /* REDUZIDO O PADDING VERTICAL (de 90px para 40px) */
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--dark);
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 42px;
  line-height: 55px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.text-bold {
  font-weight: 600;
}

.hero-sub {
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
  max-width: 601px;
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 20px 20px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  min-width: 294px;
  height: 60px;
  position: relative;
}

.btn-primary .btn-icon {
  width: 40px;
  height: 40px;
}

.btn-secondary {
  border: 1px solid #9CCDFF;
  color: var(--grey-b);
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  width: 224px;
  height: 60px;
}

.btn-icon-play {
  width: 20px;
  height: 20px;
  border: 1px solid var(--grey-b);
  border-radius: 3px;
}

.btn-partners {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-b);
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
}

.hero-image .img-ph {
  height: 100%;
  width: auto;
  padding: 0;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.hero-image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ─── DOTS DIVIDER ──────────────────────────────────────── */
.dots-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
}

.dots-divider span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dots-divider span:nth-child(odd) {
  background: var(--blue);
}

.dots-divider span:nth-child(even) {
  background: var(--blue-mid);
}

/* ─── STATS STRIP ──────────────────────────────────────── */
.stats-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 51px;
}

.stats-inner {
  max-width: 1821px;
  margin: 0 auto;
  border-top: 1px solid var(--border-b);
  border-bottom: 1px solid var(--border-b);
  padding: 55px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 220px;
}

.stat-num {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 48px;
  line-height: 56px;
  color: var(--blue);
  font-weight: 600;
  text-align: center;
}

.stat-label {
  font-size: 16px;
  line-height: 25px;
  color: var(--dark-sec);
  text-align: center;
}

/* ─── STATS NARRATIVE ─────────────────────────────────── */
.stats-narrative {
  max-width: 1142px;
  margin: 40px auto 0;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
  text-align: center;
}

/* ─── SECTIONS ──────────────────────────────────────────── */
.section {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 51px;
}

.section-inner {
  max-width: 1342px;
  margin: 0 auto;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-30 {
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.sec-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
}

.sec-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 30px;
}

.sec-title em {
  font-style: italic;
}

.sec-title-lg {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 36px;
  line-height: 40px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 30px;
}

.sec-title-italic {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 32px;
  line-height: 36px;
  color: var(--blue-mid);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
}

.sec-sub {
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
  text-align: center;
  max-width: 1142px;
  margin: 0 auto 30px;
}

/* ─── CARD BASE ─────────────────────────────────────────── */
.card {
  background: var(--blue-bg4);
  border: 1px solid var(--grey);
  border-radius: 10px;
  padding: 34px 30px 33px;
}

.card-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 22px;
  line-height: 25px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 10px;
}

.card-divider {
  border: none;
  border-top: 1px dashed #0022FF;
  margin: 0 0 15px;
}

.card-body {
  font-size: 15px;
  line-height: 20px;
  color: var(--grey);
}

/* ─── PREÇOS ─────────────────────────────────────────────── */
.price-cards {
  display: flex;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.price-card {
  flex: 1;
}

.price-info-cards {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-info-card {
  flex: 1;
  background: var(--blue-bg2);
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 20px 26px 19px;
}

.price-info-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.price-info-body {
  font-size: 12px;
  line-height: 15px;
  color: var(--grey);
}

/* ─── HOW IT WORKS ──────────────────────────────────────── */
.how-cards {
  display: flex;
  gap: 20px;
}

.how-card {
  flex: 1;
}

/* ─── SUS ALIGNMENT ─────────────────────────────────────── */
.sus-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sus-cards {
  display: flex;
  gap: 26px;
  padding-bottom: 8px;
  min-width: max-content;
}

.sus-card {
  background: rgba(235, 237, 255, 0.15);
  border: 1px solid var(--border-b);
  border-radius: 15px;
  padding: 48px 40px 48px;
  width: 420px;
  flex-shrink: 0;
}

.sus-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
}

.sus-card-icon>img {
  width: 80px;
  height: 80px;
  margin-bottom: 00px;
}

.sus-card-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 26px;
  line-height: 35px;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 15px;
}

.sus-card-title.normal {
  font-weight: 400;
}

.sus-card-body {
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
}

/* ─── TIMELINE ──────────────────────────────────────────── */
.timeline-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 36px;
  line-height: 44px;
  color: var(--blue);
  font-weight: 400;
  text-align: center;
  max-width: 920px;
  margin: 0 auto 55px;
  /* corrige o conflito de margin anterior */
}

/* duas colunas: imagem + cards */
.timeline-wrap {
  display: flex;
  gap: 0px;
  align-items: center;
  /* centraliza a imagem na altura dos cards */
  margin-bottom: 45px;
}

.timeline-left {
  flex: 0 0 50%;
  /* era 46% — dá mais largura à imagem */
}

.timeline-left-img {
  width: 100%;
  transform: scaleX(-1);
}

.timeline-left-img img {
  display: block;
  width: auto;
  align-items: start;
  height: 826px;
  position: absolute;
  top: -450px;
  transform: scale(1.1);
}

.timeline-right {
  flex: 1;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-step {
  background: rgba(235, 237, 255, 0.15);
  border: 1px solid var(--border-b);
  border-radius: 12px;
  padding: 30px 22px;
}

.timeline-step-icon {
  width: 30px;
  height: 30px;
  color: var(--blue-mid);
  margin-bottom: 16px;
}

.timeline-step-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.timeline-week {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 24px;
  line-height: 24px;
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: 16px;
}

.timeline-step-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 16px;
}

.timeline-step-body {
  font-size: 17px;
  line-height: 20px;
  color: var(--grey);
}

/* ── entrega final: largura total ── */
.timeline-delivery {
  background: rgba(238, 108, 86, 0.05);
  border-radius: 8px;
  padding: 22px 26px;
  margin-bottom: 55px;
}

.timeline-delivery-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.timeline-delivery-body {
  font-size: 15px;
  line-height: 22px;
  color: var(--dark);
}

/* ── métricas: largura total ── */
.timeline-metrics-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 56px;
}

.metrics-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

.metric-item {
  flex: 1;
  font-size: 13px;
  line-height: 18px;
  color: var(--dark);
  text-align: center;
}

.metric-divider {
  width: 1px;
  background: var(--border-b);
  align-self: stretch;
  flex-shrink: 0;
}

/* ─── PRÓXIMOS PASSOS ───────────────────────────────────── */
.next-steps {
  max-width: 1920px;
  margin: 80px auto 0;
  padding: 0 51px;
}

.next-steps-box {
  position: relative;
  overflow: hidden;
  background: var(--purple-bg);
  border-radius: 20px;
  padding: 70px 40px 64px;
}

/* círculos decorativos (ajuste tom/posição conforme a paleta) */
.ns-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: rgba(99, 102, 241, 0.06);
}

.ns-blob-1 {
  width: 260px;
  height: 260px;
  top: -70px;
  left: -60px;
  background: rgba(99, 102, 241, 0.06);
}

.ns-blob-2 {
  width: 300px;
  height: 300px;
  top: 20px;
  right: 120px;
}

.ns-blob-3 {
  width: 220px;
  height: 220px;
  bottom: 40px;
  left: 110px;
}

.ns-blob-4 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  right: 90px;
  background: rgba(99, 102, 241, 0.06);
}

.ns-blob-5 {
  width: 150px;
  height: 150px;
  top: 300px;
  left: 400px;
}

.next-steps-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.next-steps-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 40px;
  line-height: 46px;
  color: var(--blue);
  font-weight: 400;
  text-align: center;
  margin-bottom: 44px;
}

/* timeline com linha tracejada */
.ns-steps {
  position: relative;
  padding-bottom: 34px;
}

.ns-steps::before {
  /* linha tracejada vertical */
  content: "";
  position: absolute;
  left: 16px;
  /* centro do círculo de 34px */
  top: 17px;
  bottom: 16px;
  border-left: 2px dashed var(--blue-mid);
  opacity: 0.45;
  z-index: 0;
}

.ns-steps::after {
  /* ponto final da linha */
  content: "";
  position: absolute;
  left: 13px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-mid);
  opacity: 0.6;
  z-index: 0;
}

.ns-row {
  position: relative;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 34px;
}

.ns-row:last-child {
  padding-bottom: 0;
}

.ns-num {
  position: relative;
  z-index: 1;
  /* fica por cima da linha */
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-bg2);
  color: var(--blue);
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-content {
  padding-top: 2px;
}

.ns-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 6px;
}

.ns-step-desc {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark);
}

.ns-step-desc strong {
  font-weight: 700;
}

/* botão */
.next-steps-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-gov-cta {
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}

.btn-gov-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ─── responsivo (mobile) ─── */
@media (max-width: 768px) {
  .next-steps {
    padding: 0 16px;
  }

  .next-steps-box {
    padding: 48px 22px 44px;
  }

  .next-steps-title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 34px;
  }

  .ns-row {
    gap: 16px;
  }

  .btn-gov-cta {
    width: 100%;
    justify-content: center;
  }

  .sus-scroll-wrap {
    scroll-snap-type: x mandatory;

    /* full-bleed: encosta nas bordas da tela */
    margin: 0 -16px;
    padding: 0 16px;

    scrollbar-width: none;
    /* Firefox */
  }

  .sus-scroll-wrap::-webkit-scrollbar {
    display: none;
  }

  /* Chrome/Safari */

  .sus-cards {
    gap: 20px;
    min-width: 0;
    max-width: 300px;
  }

  .sus-card {
    width: 82%;
    /* 1 card + espia o próximo */
    padding: 32px 30px;
    scroll-snap-align: start;
  }

  .sus-card-icon {
    margin-bottom: 24px;
  }

  .sus-card-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 12px;
  }

  .sus-card-body {
    font-size: 15px;
    line-height: 20px;
  }
}

/* ── responsivo ── */
@media (max-width: 860px) {
  .timeline-wrap {
    flex-direction: column;
  }

  .timeline-left {
    flex: none;
    max-width: 340px;
    margin: 0 auto;
  }

  .metrics-grid {
    flex-wrap: wrap;
  }

  .metric-divider {
    display: none;
  }

  .metric-item {
    flex: 1;
    font-size: 13px;
    line-height: 18px;
    color: var(--dark);
    text-align: center;
  }
}

/* ─── NEXT STEPS (numbered list) ────────────────────────── */
.next-steps-wrap {
  max-width: 783px;
  margin: 0 auto;
}

.next-steps-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.next-step-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-b);
}

.next-step-row:first-child {
  border-top: 1px solid var(--border-b);
}

.step-num-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--blue-bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--blue);
}

.step-content {
  flex: 1;
}

.step-title-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--blue-mid);
  margin-bottom: 5px;
}

.step-desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  line-height: 20px;
}

.next-steps-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-gov-cta {
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 314px;
  height: 60px;
  justify-content: center;
}

/* ─── PARCEIROS ─────────────────────────────────────────── */
.partners-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.partners-grid {
  display: flex;
  gap: 15px;
}

.partner-card {
  flex: 1;
  background: var(--blue-bg2);
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 20px 26px 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partner-header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.partner-badge {
  background: var(--blue-bg3);
  border-radius: 5px;
  padding: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.partner-logo {
  display: flex;
  align-items: center;
}

.logo-ceia {
  width: auto;
  height: 60px;
}

.logo-embrapi {
  width: auto;
  height: 40px;
}

.partner-logo-ph {
  background: #EEF2FF;
  border: 1px dashed rgba(30, 64, 175, .25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 64, 175, .45);
  font-size: 10px;
  text-align: center;
  padding: 6px;
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.partner-desc {
  font-size: 12px;
  line-height: 15px;
  color: var(--grey);
}

/* ─── COMPLIANCE ─────────────────────────────────────────── */
.compliance-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.compliance-row {
  display: flex;
  gap: 15px;
}

.compliance-card {
  flex: 1;
  background: rgba(235, 237, 255, 0.15);
  border: 1px solid var(--border-b);
  border-radius: 10px;
  padding: 34px 30px 33px;
}

.compliance-card-sem-fundo {
  flex: 1;
  border-radius: 10px;
  padding: 34px 30px 33px;
}

.compliance-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 20px;
  line-height: 20px;
  color: var(--blue-mid);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 15px;
}

.compliance-body {
  font-size: 15px;
  line-height: 20px;
  color: var(--dark);
}

.compliance-icon {
  width: 100%;
  height: auto;
}

/* ─── FINAL CTA ─────────────────────────────────────────── */
.final-cta {
  max-width: 1920px;
  margin: 80px auto 0;
  padding: 0 51px;
}

.final-cta-inner {
  background: var(--purple-bg);
  border-radius: 20px;
  min-height: 844px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.final-cta-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 863px;
  height: 714px;
  display: flex;
  align-items: flex-end;
}

.final-cta-content {
  margin-left: auto;
  padding: 80px 193px 80px 0;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: 'Gelica', 'Georgia', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}

.final-cta-sub {
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
  text-align: center;
}

.final-cta-wrap-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.final-cta-btn {
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  min-width: 314px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer-wrap {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 51px 80px;
  position: relative;
}

.footer-bg {
  background: var(--blue-bg);
  border-radius: 20px;
  min-height: 534px;
  position: relative;
  overflow: hidden;
}

footer {
  max-width: 1420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px 40px;
  position: relative;
  bottom: -112px;
}

.footer-top {
  display: flex;
  gap: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  width: 272px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo {
  width: 175px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 17px;
  color: var(--dark);
  max-width: 253px;
}

.footer-social {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-social-icon {
  width: 13px;
  height: 13px;
  background: var(--dark);
  border-radius: 2px;
  opacity: .7;
}

.footer-nav {
  display: flex;
  gap: 60px;
  flex: 1;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col a {
  font-size: 14px;
  color: var(--link-color);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--dark);
  line-height: 17px;
}

/* ─── CARD WITH ICON INLINE ─────────────────────────────── */
.icon-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.icon-box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-ph {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

/* ─── LINK ──────────────────────────────────────────────── */
.card-link {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.card-link-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-mid);
}

.card-link-arrow {
  width: 24px;
  height: 24px;
  color: var(--blue-mid);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Figma Mobile Light (402px canvas)
   ═══════════════════════════════════════════════════ */

/* ── 900px ── */
@media (max-width:900px) {
  .nav-wrap {
    padding: 20px 20px 0;
  }

  nav {
    padding: 0 20px;
  }

  .nav-links li:nth-child(n+3) {
    display: none;
  }

  .hero {
    padding: 0 20px;
    margin-top: 20px;
  }

  .hero-inner {
    min-height: 560px;
  }

  .hero-content {
    padding: 60px 0 60px 40px;
    max-width: 55%;
    gap: 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .section {
    padding: 0 20px;
  }

  .sec-title {
    font-size: 36px;
    line-height: 42px;
  }

  .stats-wrap {
    padding: 0 20px;
  }

  .stats-grid {
    gap: 40px;
  }

  .price-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* full-bleed até as bordas + espia o próximo card */
    margin: 0 -16px;
    padding: 0 16px 14px;

    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
  }

  .price-cards::-webkit-scrollbar {
    display: none;
  }

  /* Chrome/Safari */
  .price-cards.is-dragging {
    cursor: grabbing;
  }

  .price-card {
    flex: 0 0 80%;
    /* 1 card + prévia do próximo */
    scroll-snap-align: start;
  }

  .price-info-cards {
    display: flex;
    flex-direction: column;
    /* força coluna única (no desktop deve estar em 2 colunas) */
    gap: 16px;
    margin-top: 20px;
  }

  .price-info-card {
    width: 100%;
  }

  .how-cards {
    flex-direction: column;
  }

  .sus-card {
    width: 300px;
    padding: 30px 30px;
  }

  .sus-card-icon {
    width: 80px;
    height: 80px;
  }

  .sus-card-title {
    font-size: 24px;
    line-height: 28px;
  }

  .timeline-wrap {
    flex-direction: column;
  }

  .timeline-left {
    flex: none;
    width: 100%;
  }

  .timeline-left-img {
    width: 100%;
    height: auto;
  }

  .partners-grid {
    flex-direction: column;
  }

  .compliance-row {
    flex-direction: column;
  }

  .compliance-icon {
    display: none;
  }

  .final-cta {
    padding: 0 20px;
  }

  .final-cta-inner {
    min-height: auto;
    flex-direction: column;
  }

  .final-cta-image {
    position: relative;
    width: 100%;
    height: 320px;
    left: auto;
    bottom: auto;
  }

  .final-cta-content {
    padding: 40px 40px 40px 0;
    margin-left: 0;
    max-width: 100%;
  }

  .footer-top {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-nav {
    gap: 30px;
  }
}

/* ── 680px ── */
@media (max-width:680px) {
  .nav-links {
    display: none;
  }

  .nav-wrap {
    padding: 16px 16px 0;
  }

  .hero {
    padding: 0 16px;
    margin-top: 16px;
  }

  .hero-inner {
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-content {
    padding: 40px 27px 50px;
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: 30px;
    line-height: 34px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-image {
    position: absolute;
    align-self: flex-end;   /* empurra p/ direita no flex-column */
    width: 42%;
    height: 170px;
    border-radius: 0;
  }

  .btn-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-primary {
    font-size: 13px;
    height: 55px;
    padding: 20px 20px;
  }

  .btn-secondary {
    font-size: 13px;
    height: 60px;
    max-width: 183px;
    width: 183px;
  }

  .section {
    padding: 0 27px;
  }

  .sec-title {
    font-size: 32px;
    line-height: 36px;
  }

  .sec-title-lg {
    font-size: 32px;
    line-height: 36px;
  }

  .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .stat-item {
    width: 45%;
    min-width: 160px;
  }

  .how-cards {
    flex-direction: column;
  }

  .sus-cards {
    min-width: auto;
  }

  .sus-card {
    width: 100%;
    padding: 30px 20px;
  }

  .timeline-wrap {
    flex-direction: column;
  }

  .timeline-left {
    display: none;
  }

  .partners-grid {
    flex-direction: column;
  }

  .compliance-row {
    flex-direction: column;
  }

  .final-cta {
    padding: 0;
    margin-top: 60px;
  }

  .final-cta-inner {
    flex-direction: column;
    border-radius: 0;
    min-height: auto;
  }

  .final-cta-image {
    position: relative;
    width: 100%;
    height: 280px;
    left: auto;
    bottom: auto;
  }

  .final-cta-content {
    padding: 40px 27px;
    margin-left: 0;
    max-width: 100%;
    gap: 20px;
  }

  .final-cta-title {
    font-size: 32px;
    line-height: 36px;
  }

  .next-steps-title {
    font-size: 32px;
    line-height: 36px;
  }

  .step-title-text {
    font-size: 16px;
  }

  .metrics-grid {
    flex-direction: column;
  }

  .metric-divider {
    width: 100%;
    height: 2px;
    align-self: auto;
  }

  footer {
    padding: 30px 16px 40px;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ── 420px — Figma Mobile exact ── */
@media (max-width:420px) {
  .nav-wrap {
    padding: 16px 16px 0;
  }

  nav {
    height: auto;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .hero {
    padding: 0;
    margin-top: 0;
  }

  .hero-inner {
    border-radius: 0;
  }

  .hero-content {
    padding: 64px 27px 30px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 40px;
  }

  .btn-primary {
    max-width: 244px;
    height: 55px;
    font-size: 13px;
    min-width: auto;
  }

  .btn-secondary {
    max-width: 183px;
    height: 60px;
    font-size: 13px;
    width: 183px;
  }

  .section {
    padding: 0 27px;
  }

  .sec-title {
    font-size: 32px;
    line-height: 36px;
  }

  .stats-wrap {
    padding: 0 27px;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    width: calc(50% - 10px);
  }

  .stat-num {
    font-size: 28px;
    line-height: 48px;
  }

  .sus-cards {
    overflow-x: scroll;
    flex-direction: row;
  }

  .sus-card {
    width: 230px;
    min-width: 230px;
    padding: 30px 20px;
    flex-shrink: 0;
  }

  .sus-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }

  .sus-card-title {
    font-size: 20px;
    line-height: 22px;
  }

  .sus-card-body {
    font-size: 14px;
    line-height: 17px;
  }

  .compliance-row {
    flex-direction: column;
  }

  .final-cta-inner {
    flex-direction: column;
    border-radius: 0;
  }

  .final-cta-image {
    position: relative;
    width: 100%;
    height: 216px;
    left: auto;
    bottom: auto;
  }

  .final-cta-content {
    padding: 28px 27px 40px;
    margin-left: 0;
    max-width: 100%;
  }

  .final-cta-title {
    font-size: 32px;
    line-height: 36px;
  }

  .footer-wrap {
    padding: 0;
    margin-top: 60px;
  }

  .footer-bg {
    border-radius: 0;
  }

  footer {
    padding: 30px 27px 40px;
    bottom: 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col h4 {
    font-size: 16px;
    color: var(--blue);
    padding-bottom: 12px;
    margin-bottom: 0;
    border-bottom: .5px solid #DEE0E2;
  }

  .footer-col ul {
    gap: 0;
  }

  .footer-col li {
    border-bottom: .5px solid #DEE0E2;
  }

  .footer-col a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: #0A121A;
  }

  .footer-bottom p {
    font-size: 14px;
    color: #0A121A;
  }

  .metrics-grid {
    flex-direction: column;
  }

  .metric-divider {
    width: 100%;
    height: 2px;
    align-self: auto;
  }

  .next-steps-wrap {
    max-width: 100%;
  }

  .step-num-circle {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

.footer-kz {
  padding: 42px 28px 28px;
  background: var(--bg-site);
}

.footer-kz__container {
  max-width: 760px;
  margin: 0 auto;
}

.footer-kz__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-kz__brand img {
  width: 160px;
  margin-bottom: 14px;
}

.footer-kz__social {
  display: flex;
  gap: 14px;
}

.footer-kz__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.footer-kz__links {
  display: flex;
  gap: 80px;
}

.footer-kz__column h4 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--header-title);
  margin-bottom: 14px;
}

.footer-kz__column ul {
  list-style: none;
}

.footer-kz__column li {
  margin-bottom: 12px;
}

.footer-kz__column a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--navbar--normal);
  transition: color 0.2s ease;
}

.footer-kz__column a:hover {
  color: var(--navbar--normal);
}

.footer-kz__divider {
  margin: 28px 0;
  height: 1px;
  background: #ececf4;
}

.footer-kz__bottom {
  text-align: center;
}

.footer-kz__address {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--navbar--normal);
  margin-bottom: 16px;
}

.footer-kz__address a {
  color: var(--navbar--normal);
  text-decoration: none;
}

.footer-kz__copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--navbar--normal);
}

/* MOBILE */
@media (max-width: 640px) {
  .footer-kz {
    padding: 20px 40px;
  }

  .footer-kz__social {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .footer-kz__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    width: 20px;
    height: 18px;
  }

  .footer-kz__social img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
  }

  .footer-kz__top {
    flex-direction: column;
    gap: 26px;
  }

  .footer-kz__brand img {
    width: 140px;
  }

  .footer-kz__links {
    flex-direction: column;
    gap: 22px;
    width: 100%;
  }

  .footer-kz__column h4 {
    margin-bottom: 10px;
  }

  .footer-kz__column li {
    margin-bottom: 10px;
  }

  .footer-kz__divider {
    margin: 24px 0;
  }

  .footer-kz__address {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-kz__copyright {
    font-size: 11px;
  }
}