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

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

.navbar__nav {
  list-style: none;
}

.navbar-mobile__nav {
  list-style: none;
}

.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; }


/* ─── TOKENS ─────────────────────────────────────────── */
: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);
  --purple-bg: #EBEDFF;
  --green: #00FDA9;
  --dark: #15253F;
  --dark-sec: #405560;
  --grey: #6B7582;
  --grey-b: #5C6068;
  --border: #E5E7EB;
  --border-b: #EBEDFF;
  --white: #FFFFFF;
  --check: #10B981;
  --link-color: #929EC7;
  --bg-card-genericos: rgba(235, 237, 255, .15);
}

/* ─── TOKENS ─────────────────────────────────────────── */
[data-theme="dark"] {
  /* CORES TEMA DARK (Ativado pelo seu JS) */
  --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: #0080FF;
  --blue-light: #9CCDFF;
  --blue-bg: rgba(30, 64, 175, 0.1);
  --blue-bg2: rgba(0, 170, 255, 0.05);
  --blue-bg3: rgba(30, 64, 175, 0.2);
  --purple-bg: #EBEDFF;
  --green: #00FDA9;
  --dark: #ffffff;
  --dark-sec: #405560;
  --grey: #9499a0;
  --grey-b: #ffffff;
  --border: #E5E7EB;
  --border-b: rgba(235, 237, 255, 0.05);
  --white: #FFFFFF;
  --check: #10B981;
  --link-color: #929EC7;
  --bg-card-genericos: rgba(235, 237, 255, 0.05);
}

/* ─── RESET ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* --- 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;
}

/* ─── IMAGE PLACEHOLDER ─────────────────────────────── */
.img-ph {
  background: #EEF2FF;
  border: 1px dashed rgba(30, 64, 175, .25);
  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;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 0 24px;
  height: 60px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  min-width: 240px;
}

.btn-primary img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--blue-light);
  border-radius: 5px;
  padding: 0 24px;
  height: 60px;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-b);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  min-width: 200px;
}

.btn-secondary img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .65;
}

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

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

.btn-partners {
  display: flex;
  align-items: center;
  gap: 48px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-b);
}

/* ─── NAV ─────────────────────────────────────────────── */
.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: 0 auto;
  padding: 0 51px;
  margin-top: 30px;
}

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

.hero-content {
  padding: 90px 0 90px 109px;
  max-width: 660px;
  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', serif;
  font-size: 48px;
  line-height: 55px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* "realmente precisam." aparece em bold no Figma */
.hero-title strong {
  font-weight: 700;
}

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

/* Hero image — colada no rodapé do container */
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  max-width: 880px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* ← era center: agora cola na base */
  justify-content: flex-end;
}

.hero-image img {
  height: 75%;
  /* ← era 70%: ocupa quase toda a altura */
  width: auto;
  max-width: none;
  /* permite a foto exceder a largura e ser cortada à esquerda */
  object-position: bottom center;
  display: block;
}

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

.stats-inner {
  /* Linhas contínuas topo e base — sem retângulo */
  border-top: 1px solid var(--border-b);
  border-bottom: 1px solid var(--border-b);
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 55px 0;
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: flex;
  align-items: flex-start;
  gap: 78px;
}

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

.stat-num {
  /* Gelica 54px bold — igual ao Figma */
  font-family: 'Gelica', serif;
  font-size: 54px;
  line-height: 60px;
  color: var(--blue);
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
  text-align: center;
  font-weight: 400;
}

/* ─── PROBLEM SECTION ─────────────────────────────────── */
.problem {
  max-width: 1920px;
  margin: 80px auto 0;
  padding: 0 51px;
  position: relative;
}

/* Nova classe responsiva */
.problem-section {
  max-width: 1920px;
  margin: 80px auto 0;
  padding: 0 51px;
}

.problem-title {
  /* Gelica correta + bold no trecho "ausência no trabalho." */
  font-family: 'Gelica', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  text-align: center;
  max-width: 824px;
  margin: 0 auto 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* "ausência no trabalho." aparece em bold no Figma */
.problem-title strong {
  font-weight: 700;
}

.problem-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
  text-align: center;
  max-width: 696px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── Wrapper da imagem + pills (desktop) ── */
.problem-visual-wrap {
  position: relative;
  height: 580px;
  margin-top: 40px;
  overflow: visible;
}

.problem-img-main {
  width: 580px;
  max-width: 90%;
  height: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  object-fit: contain;
}

/* Pills — posicionadas como no Figma desktop */
.question-pill {
  position: absolute;
  background: var(--blue-bg2);
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}

.qp-1 {
  top: 0;
  right: calc(50% - 520px);
}

.qp-2 {
  top: 55px;
  left: calc(50% - 310px);
}

.qp-3 {
  top: 163px;
  left: calc(50% - 480px);
}

.qp-4 {
  top: 163px;
  right: calc(50% - 530px);
}

.problem-callout {
  max-width: 563px;
  margin: 30px auto 0;
  background: var(--blue-bg2);
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 20px 26px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--dark);
  text-align: center;
}

/* Floating question pills (legado) */
.problem-visual {
  position: relative;
  height: 580px;
  margin-top: 30px;
}

.problem-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 616px;
  height: 531px;
  top: 0;
}

.question-pill {
  position: absolute;
  background: var(--blue-bg2);
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}

.q1 {
  top: 0;
  right: 240px;
}

.q2 {
  top: 150px;
  left: 180px;
}

.q3 {
  top: 55px;
  left: 300px;
}

.q4 {
  top: 163px;
  right: 210px;
}

.problem-callout {
  max-width: 563px;
  margin: 30px auto 0;
  background: var(--blue-bg2);
  border: 1px solid var(--blue);
  border-radius: 5px;
  padding: 20px 26px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--dark);
  text-align: center;
}

/* ─── QUOTE STRIP ──────────────────────────────────────── */
.quote-strip {
  max-width: 1920px;
  margin: 60px auto 0;
  padding: 0 51px;
}

.quote-strip-inner {
  background:
    /* canto superior direito (cluster) */
    radial-gradient(circle at 95% 6%, rgba(150, 175, 235, .30) 0 95px, transparent 96px),
    radial-gradient(circle at 78% -8%, rgba(150, 175, 235, .20) 0 130px, transparent 131px),
    /* direita */
    radial-gradient(circle at 103% 62%, rgba(150, 175, 235, .25) 0 70px, transparent 71px),
    /* inferior direito */
    radial-gradient(circle at 90% 112%, rgba(150, 175, 235, .22) 0 115px, transparent 116px),
    /* inferior esquerdo */
    radial-gradient(circle at 4% 108%, rgba(150, 175, 235, .25) 0 100px, transparent 101px),
    /* esquerda */
    radial-gradient(circle at -2% 32%, rgba(150, 175, 235, .20) 0 85px, transparent 86px),
    /* tint azul que estava no ::before */
    linear-gradient(rgba(0, 170, 255, .1), rgba(0, 170, 255, .1)),
    /* fundo base */
    var(--bg-site);
  border-radius: 20px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.quote-text {
  font-family: 'Gelica', serif;
  font-size: 24px;
  line-height: 30px;
  color: var(--blue);
  text-align: center;
  max-width: 824px;
  margin: 0 auto 15px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.quote-body {
  font-size: 20px;
  line-height: 30px;
  color: var(--dark);
  text-align: center;
  max-width: 696px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── FRICTION CARDS ───────────────────────────────────── */
.friction {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.friction-card {
  background: var(--blue-bg);
  border: 1px solid var(--border-b);
  border-radius: 10px;
  padding: 34px 30px 33px;
  width: 251px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ÍCONE: extrair do Figma — Frame 2147226429 svg6177 */
.friction-icon {
  width: 50px;
  height: 25px;
  background: #EEF2FF;
  border-radius: 4px;
}

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

/* ─── COMPARISON TABLE ─────────────────────────────────── */
.comparison {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 50px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  font-size: 15px;
  line-height: 20px;
  border-bottom: 1px solid rgba(30, 64, 175, .2);
  text-align: left;
}

.comparison-table thead tr {
  border-top: 2px solid var(--blue);
  border-bottom: none;
}

.comparison-table thead td:first-child {
  border-top: 2px solid var(--blue);
}

.comparison-table thead th {
  font-weight: 400;
  color: var(--dark);
  border-top: 2px solid var(--blue);
}

.comparison-table thead th:nth-child(2) {
  background: rgba(30, 64, 175, .05);
}

.comparison-table td:nth-child(2) {
  background: rgba(30, 64, 175, .05);
}

.comparison-table .row-label {
  font-weight: 600;
  color: var(--dark);
}

.check-yes {
  color: var(--check);
  font-weight: 700;
  font-size: 16px;
}

.dash {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  vertical-align: middle;
}

.comparison-cta {
  text-align: center;
  margin-top: 30px;
}

/* ─── HOW IT WORKS (3 cards) ───────────────────────────── */
.how-works {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 50px;
}

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

.section-title strong {
  font-weight: 700;
}

.how-cards {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.how-card {
  flex: 1;
  background: var(--blue-bg);
  border: 1px solid var(--border-b);
  border-radius: 10px;
  padding: 34px 30px 33px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ÍCONES: extrair do Figma — Frame 384756428/429/430 svg6177 */
.how-card-icon {
  width: 40px;
  height: 40px;
  background: #EEF2FF;
  border-radius: 6px;
}

.how-card-title {
  font-family: 'Gelica', serif;
  font-size: 22px;
  line-height: 25px;
  color: var(--dark);
  font-weight: 600;
}

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

.how-card-highlight {
  background: var(--blue-bg3);
  border-radius: 10px;
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--grey);
}

/* ─── KPI METRICS ──────────────────────────────────────── */
.kpi {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 50px;
}

.kpi-subtitle {
  /* Figma: Gelica italic bold, cor #00AAFF (blue-mid) */
  font-family: 'Gelica', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue-mid);
  text-align: center;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.kpi-subtitle-azul-escuro {
  /* Figma: Gelica italic bold, cor #00AAFF (blue-mid) */
  font-family: 'Gelica', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  text-align: center;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}

.kpi-cards {
  display: flex;
  gap: 20px;
}

.kpi-card {
  flex: 1;
  background: var(--blue-bg);
  border: 1px solid var(--border-b);
  border-radius: 10px;
  padding: 34px 30px 33px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kpi-num {
  /* Figma: Inter 14px, uppercase, azul escuro */
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.kpi-divider {
  width: 100%;
  border: none;
  border-top: 1px dashed var(--blue);
}

.kpi-title {
  /* Figma: Inter bold, dark, não Gelica */
  font-family: 'Gelica', sans-serif;
  font-size: 22px;
  line-height: 25px;
  color: var(--dark);
  font-weight: 700;
}

.kpi-body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: var(--grey);
  font-weight: 400;
}

/* ─── IMPLEMENTATION TIMELINE ──────────────────────────── */
.implementation {
  max-width: 1040px;
  margin: 80px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* TÍTULO */
.impl-title {
  font-family: 'Gelica', serif;
  font-size: 34px;
  line-height: 42px;
  color: var(--blue-mid);
  /* azul royal do modelo */
  text-align: center;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

.impl-title strong {
  font-weight: 700;
}

/* LINHA: FOTO À ESQUERDA, CARDS À DIREITA */
.impl-body-row {
  display: flex;
  align-items: flex-start;
  /* cabeça alinhada ao topo do 1º card */
  justify-content: center;
  /* bloco centralizado na página */
  gap: 12px;
  /* respiro mínimo entre foto e cards */
}

/* FOTO — recorte grande, INTEIRO (sem corte) e sem caixa */
.impl-image {
  flex-shrink: 0;
}

.impl-image img {
  height: 648px;
  /* TAMANHO da foto — só mexer aqui */
  width: auto;
  /* mantém a proporção, nunca distorce */
  display: block;
  transform: scaleX(-1);
  /* mantém o espelhamento atual; remova se a pose inverter */
}

/* COLUNA DOS CARDS — estreita, como no modelo */
.impl-right {
  width: 530px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* CARDS */
.impl-card {
  background: var(--blue-bg2);
  border: 1px solid var(--blue-bg2);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(20, 30, 60, .03);
}

/* ÍCONE */
.impl-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* TEXTOS DOS CARDS */
.impl-phase {
  font-family: 'Gelica', serif;
  font-size: 21px;
  line-height: 26px;
  color: #0AA0E0;
  /* azul claro dos títulos */
  font-weight: 600;
  margin: 0;
}

.impl-week {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 2px 0 4px;
}

.impl-body {
  font-size: 14px;
  line-height: 21px;
  color: var(--grey);
  margin: 0;
}

/* ─── PILOT ─────────────────────────────────────────────── */
.pilot {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 50px;
}

.pilot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E9EEFF;
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 auto 20px;
  display: block;
  width: fit-content;
}

.pilot-card {
  background: var(--blue-bg);
  border: 1px solid var(--border-b);
  border-radius: 10px;
  padding: 45px 30px;
  text-align: center;
  margin-bottom: 20px;
}

.pilot-title {
  font-family: 'Gelica', serif;
  font-size: 48px;
  line-height: 52px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 15px;
}

.pilot-sub {
  font-size: 16px;
  line-height: 25px;
  color: var(--dark);
  max-width: 618px;
  margin: 0 auto 30px;
}

.pricing-row {
  display: flex;
  gap: 20px;
}

.pricing-card {
  flex: 1;
  background: var(--blue-bg);
  border: 1px solid var(--border-b);
  border-radius: 10px;
  padding: 34px 30px 33px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ÍCONE: extrair do Figma — g7615 (árvore/planta) e Group (cesta/caixa) */
.pricing-icon {
  width: 50px;
  height: 35px;
  background: #EEF2FF;
  border-radius: 4px;
  margin-bottom: 18px;
}

.pricing-title {
  font-family: 'Gelica', serif;
  font-size: 22px;
  line-height: 25px;
  color: var(--dark);
  font-weight: 600;
}

.pricing-divider {
  width: 100%;
  border: none;
  border-top: 1px dashed #0022FF;
}

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

/* ─── FOOTER ─────────────────────────────────────────── */
.footer-kz {
  padding: 0px 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-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-size: 12px;
  color: var(--navbar--normal);
  transition: color 0.2s ease;
}

.footer-kz__divider {
  margin: 28px 0;
  height: 1px;
  background: var(--btn-secondary-border);
}

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

.footer-kz__copyright {
  font-size: 12px;
  color: var(--navbar--normal);
}

@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__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__copyright {
    font-size: 11px;
  }
}

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

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

/* círculos decorativos */
.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 0;
}

.cta-blob-1 {
  width: 260px;
  height: 260px;
  top: -80px;
  left: 22%;
}

.cta-blob-2 {
  width: 380px;
  height: 380px;
  top: 45%;
  right: -90px;
}

.cta-blob-3 {
  width: 200px;
  height: 200px;
  bottom: -70px;
  left: 39%;
}

/* FOTO — encostada na esquerda, alinhada ao rodapé */
.final-cta-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  max-width: 660px;
  z-index: 1;
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  display: block;
  overflow: visible;
}

/* TEXTO — à direita */
.final-cta-content {
  margin-left: auto;
  width: 50%;
  padding: 60px 80px 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: 'Gelica', serif;
  font-size: 44px;
  line-height: 50px;
  color: var(--blue);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.final-cta-title strong {
  font-weight: 700;
}

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



/* ─── UTILS ──────────────────────────────────────────────── */
.center {
  text-align: center;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 3 breakpoints do Figma Mobile Light (402px)
   ═══════════════════════════════════════════════════════════ */

/* ── 900px: tablet landscape ─────────────────────────────── */
@media (max-width: 900px) {

  /* NAV */
  .nav-wrap {
    padding: 20px 20px 0;
  }

  nav {
    padding: 0 20px;
    gap: 20px;
  }

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

  /* esconde links extras */

  /* HERO */
  .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: 36px;
    line-height: 42px;
  }

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

  .hero-image {
    width: 48%;
    display: none;
  }

  .btn-primary {
    font-size: 13px;
  }

  .btn-secondary {
    font-size: 13px;
  }

  /* STATS */
  .stats {
    padding: 0 20px;
  }

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

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

  .stat-item {
    width: 180px;
  }

  /* PROBLEM */
  .problem-section {
    padding: 0 20px;
  }

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

  .problem-visual-wrap {
    height: 500px;
  }

  .problem-img-main {
    width: 460px;
  }

  .qp-1 {
    right: calc(50% - 420px);
  }

  .qp-3 {
    left: calc(50% - 380px);
  }

  .qp-4 {
    right: calc(50% - 430px);
  }

  /* HOW WORKS */
  .how-works {
    padding: 0 20px;
  }

  .how-cards {
    flex-wrap: wrap;
  }

  .how-card {
    min-width: calc(50% - 10px);
  }

  /* KPI */
  .kpi {
    padding: 0 20px;
  }

  .kpi-subtitle {
    font-size: 36px;
    line-height: 42px;
  }

  .kpi-cards {
    flex-wrap: wrap;
    gap: 16px;
  }

  .kpi-card {
    min-width: calc(50% - 8px);
  }

  /* IMPLEMENTATION */
  .implementation {
    padding: 0 20px;
  }

  .impl-body-row {
    flex-direction: column;
    gap: 30px;
  }

  .impl-image {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  /* PILOT */
  .pilot {
    padding: 0 20px;
  }

  .pricing-row {
    flex-direction: column;
    gap: 16px;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 0 20px;
  }

  .final-cta-inner {
    min-height: 440px;
  }

  .final-cta-content {
    padding: 60px 40px 60px 0;
  }

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

  .final-cta-image {
    width: 380px;
    height: auto;
    left: 40px;
  }

  /* COMPARISON */
  .comparison {
    padding: 0 20px;
    overflow-x: auto;
  }
}

/* ── 680px: tablet portrait ──────────────────────────────── */
@media (max-width: 680px) {

  /* NAV — esconde links, mantém logo + cta */
  .nav-links {
    display: none;
  }

  nav {
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  /* HERO — empilha verticalmente */
  .hero {
    padding: 0 16px;
    margin-top: 16px;
  }

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

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

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

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

  .hero-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 300px;
    border-radius: 0;
  }

  .btn-primary {
    font-size: 13px;
    height: 55px;
    width: 100%;
    max-width: 294px;
  }

  .btn-secondary {
    font-size: 13px;
    height: 55px;
  }

  .btn-partners {
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
  }

  /* STATS — 2x2 grid */
  .stats {
    padding: 0 16px;
  }

  .stats-inner {
    padding: 30px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .stat-item {
    width: auto;
  }

  .stat-num {
    font-size: 32px;
    line-height: 60px;
  }

  .stat-label {
    font-size: 13px;
    line-height: 15px;
  }

  /* PROBLEM */
  section[style*="1920px"] {
    padding: 0 16px !important;
  }

  .problem-section {
    padding: 0 16px;
  }

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

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

  /* No 680px: visual wrap passa a ser relativo e a imagem flui normalmente */
  .problem-visual-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    
  }

  .problem-img-main {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 342px;
    padding: 50px;
  }

  /* Pills reposicionadas como no Figma mobile: absolutas sobre o wrapper */
  .question-pill {
    font-size: 12px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  .qp-1 {
    top: 0;
    right: 0;
    left: auto;
  }

  .qp-2 {
    top: 56px;
    left: 20px;
    right: auto;
  }

  .qp-3 {
    top: 296px;
    left: 0;
    right: auto;
  }

  .qp-4 {
    top: 267px;
    right: 0;
    left: auto;
  }

  /* QUOTE STRIP */
  .quote-strip {
    padding: 0 16px;
  }

  .quote-text {
    font-size: 16px !important;
    line-height: 20px !important;
    padding: 20px;
  }

  .quote-body {
    font-size: 13px !important;
    line-height: 17px !important;
    padding: 0 20px;
  }

  .quote-strip-inner {
    padding: 30px 0;
  }

  /* FRICTION CARDS — scroll horizontal */
  div[style*="friction"],
  div[style*="gap:30px"][style*="justify-content:center"] {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding: 0 16px !important;
    gap: 16px !important;
  }

  /* COMPARISON TABLE */
  .comparison {
    padding: 0 16px;
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 700px;
    font-size: 13px;
  }

  /* SECTION TITLES */
  .section-title {
    font-size: 32px;
    line-height: 36px;
  }

  .how-works {
    padding: 0 16px;
  }

  /* HOW CARDS — scroll horizontal */
  .how-cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
  }

  .how-card {
    min-width: 279px;
    flex-shrink: 0;
  }

  /* KPI */
  .kpi {
    padding: 0 16px;
  }

  .kpi-subtitle {
    font-size: 32px;
    line-height: 36px;
  }

  .kpi-cards {
    flex-direction: column;
    gap: 20px;
  }

  .kpi-card {
    min-width: auto;
    width: 100%;
  }

  /* IMPLEMENTATION */
  .implementation {
    padding: 0 16px;
  }

  .impl-title {
    font-size: 32px;
    line-height: 36px;
    text-align: center;
  }

  .impl-body-row {
    flex-direction: column;
    gap: 20px;
  }

  .impl-image {
    width: 100%;
    height: auto;
    min-height: 0px;
  }

  .impl-image img {
    width: 76%;
    height: auto;
    min-height: 20px;
  }

  .impl-card {
    /* Garante que o card ocupe o espaço disponível, mas nunca passe da tela */
    width: 100%;
    max-width: 350px;
    /* Altere para a largura máxima que você deseja no desktop */

    /* Evita que o padding "empurre" o card para fora da tela */
    box-sizing: border-box;

    /* Seus estilos atuais (background, padding, border-radius, etc) */
    padding: 24px;
  }

  /* PILOT */
  .pilot {
    padding: 0 16px;
  }

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

  .pricing-row {
    flex-direction: column;
    gap: 16px;
  }

  /* FINAL CTA */
  .final-cta {
    padding: 0 16px;
  }

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

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

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

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

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

/* ── 420px: mobile (Figma Mobile Light — 402px) ─────────── */
@media (max-width: 420px) {

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

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

  nav img {
    height: 20px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 6px;
  }

  /* HERO — Figma: 402px wide, hero content 348px, left 27px */
  .hero {
    padding: 0;
    margin-top: 0;
  }

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

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

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

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

  .hero-image {
    height: 380px;
  }

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

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

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

  .btn-partners {
    flex-direction: column;
    gap: 5px;
  }

  /* STATS — Figma: 2x2, Gelica 32px */
  .stats {
    padding: 0;
  }

  .stats-inner {
    padding: 20px;
    margin: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px 20px;
    width: 340px;
    margin: 0 auto;
  }

  .stat-num {
    font-size: 32px;
    line-height: 60px;
  }

  .stat-label {
    font-size: 13px;
    line-height: 15px;
  }

  /* PROBLEM — Figma: 32px/36px, visual wrap 349px, pills absolutas */
  .problem-section {
    padding: 0 27px;
    margin-top: 60px;
  }

  .problem-title {
    font-size: 32px;
    line-height: 36px;
    max-width: 349px;
  }

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

  /* Wrapper: altura fixa para pills ficarem posicionadas — Figma: 344px */
  .problem-visual-wrap {
    height: 344px;
    display: block;
    position: relative;
    margin-top: 30px;
    overflow: visible;
    
  }

  .problem-img-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    max-width: 260px;
    top: 41px;
  }

  /* Pills — Figma mobile exact positions */
  .question-pill {
    font-size: 12px;
    padding: 9px 20px;
    white-space: nowrap;
  }

  .qp-1 {
    top: 0;
    right: 0;
    left: auto;
  }

  /* Vai ao pronto-socorro: top 0, right 141px → simplificado */
  .qp-2 {
    top: 45px;
    left: 20px;
    right: auto;
  }

  /* Fica em casa: top 56, left 20 */
  .qp-3 {
    top: 326px;
    left: 0;
    right: auto;
  }

  /* Espera até amanhã: top 306, left 0 */
  .qp-4 {
    top: 282px;
    right: 0;
    left: auto;
  }

  /* Vai trabalhar preocupado: top 267, right 157 → 0 */
  .problem-callout {
    max-width: 349px;
    font-size: 14px;
    line-height: 20px;
  }

  /* QUOTE STRIP — Figma: 16px Gelica, 13px Inter */
  .quote-strip {
    padding: 0;
  }

  .quote-strip-inner {
    border-radius: 20px;
    margin: 0 0;
    padding: 20px;
  }

  .quote-text {
    font-size: 16px !important;
    line-height: 20px !important;
    max-width: 308px;
    margin: 0 auto;
  }

  .quote-body {
    font-size: 13px !important;
    line-height: 17px !important;
    max-width: 308px;
    margin: 0 auto;
  }

  /* SECTION TITLES */
  .section-title {
    font-size: 32px;
    line-height: 36px;
  }

  .section-title strong {
    font-size: inherit;
  }

  /* HOW CARDS — Figma: overflow-x scroll, cards 279-280px */
  .how-works {
    padding: 0 27px;
  }

  .how-cards {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    margin: 0 -27px;
    padding-left: 27px;
    padding-right: 27px;
  }

  .how-card {
    scroll-snap-align: start;
    min-width: 279px;
    flex-shrink: 0;
  }

  /* KPI — Figma: 32px italic bold, cards stacked */
  .kpi {
    padding: 0 27px;
  }

  .kpi-subtitle {
    font-size: 32px;
    line-height: 36px;
  }

  .kpi-cards {
    flex-direction: column;
    gap: 20px;
  }

  .kpi-card {
    width: 100%;
  }

  /* IMPLEMENTATION — Figma: título 32px, cards stacked, sem imagem lateral */
  .implementation {
    padding: 0 27px;
    gap: 30px;
  }

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

  .impl-body-row {
    flex-direction: column;
    gap: 20px;
  }

  .impl-image {
    width: 100%;
    height: 280px;
    border-radius: 10px;
  }

  .impl-card {
    padding: 30px 24px 28px;
  }

  .impl-phase {
    font-size: 22px;
  }

  /* COMPARISON — Figma: horizontal scroll 1143px inner */
  .comparison {
    padding: 0 27px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table {
    min-width: 700px;
    font-size: 13px;
  }

  /* PILOT */
  .pilot {
    padding: 0 27px;
  }

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

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

  .pricing-row {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 24px 28px;
  }

  /* FINAL CTA — Figma: imagem 347px abaixo, texto 348px acima */
  .final-cta {
    padding: 0;
    margin-top: 60px;
    margin-bottom: 200px;
  }

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

  .final-cta-image {
    position: relative;
    left: auto;
    bottom: auto;
    width: 347px;
    height: 266px;
    margin: 0 auto;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .btn-row .btn-primary {
    max-width: 100%;
    width: 100%;
  }

  .btn-row .btn-secondary {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
}