/* ============================================================
   GoEPI — Landing Page Styles
   Ground truth: index-test.html (Figma HTML export)
   Font: Outfit (primary), Inter (S06)
   ============================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #040A1F;
  --blue: #133DE3;
  --blue-mid: #1A2B5A;
  --blue-brand: #143EE5;
  --blue-2: #1E46EB;
  --blue-light: #1A5EB8;
  --yellow: #FAD11E;
  --yellow-2: #FFDF53;
  --slate: #59668C;
  --slate-lt: #7380AD;
  --text-muted: #C8CBD7;
  --light-bg: #EBF0F6;
  --light-bg-2: #EBEFF6;
  --white: #FFFFFF;

  --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1280px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 4rem);
}

/* ---- Section Label ---- */
/* "A SOLUÇÃO", "FLUXO OPERACIONAL", "IMPACTO REAL", etc. */
.section-label {
  display: block;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-label--yellow {
  color: var(--yellow);
}

.section-label--blue {
  color: var(--blue);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  width: 33px;
  height: 49px;
  margin: 3rem auto 3rem;
  display: block;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay {
  transition-delay: 0.15s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   BUTTONS
   Based on index-test.html sizes:
   height: 56px, padding: 18px 32px, border-radius: 10px
   font-size: 20px Outfit 400
   Circle icon: 30px, border-radius: 9999px
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 32px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

/* Yellow solid (navbar, CTA final) */
.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 0 13.5px rgba(250, 209, 30, 0.60);
}

.btn--yellow:hover {
  box-shadow: 0 0 24px rgba(250, 209, 30, 0.80);
  transform: translateY(-2px);
}

/* Yellow outline (Hero CTA 1) */
.btn--outline-yellow {
  background: transparent;
  color: #F5F7FA;
  outline: 1px solid var(--yellow);
  outline-offset: -1px;
}

.btn--outline-yellow:hover {
  background: rgba(250, 209, 30, 0.08);
  transform: translateY(-2px);
}

/* Dark (Hero CTA 2) */
.btn--dark {
  background: #071132;
  color: #F5F7FA;
}

.btn--dark:hover {
  background: #0d1d4a;
  transform: translateY(-2px);
}

/* Blue outline (form, FAQ) */
.btn--outline-blue {
  background: rgba(20, 62, 229, 0.08);
  color: #040A1F;
  outline: 1px solid var(--blue-brand);
  outline-offset: -1px;
}

.btn--outline-blue:hover {
  background: rgba(20, 62, 229, 0.14);
  transform: translateY(-2px);
}

/* White text variant for blue outline on dark bg */
.btn--outline-blue.btn--light-text {
  color: #F5F7FA;
}

/* Size modifier (default is already lg at 56px) */
.btn--lg {
  /* already the default */
}

/* Button circle icons */
.btn__circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
}

.btn__circle img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.btn__circle--yellow {
  background: var(--yellow);
}

.btn__circle--yellow2 {
  background: var(--yellow-2);
}

.btn__circle--blue {
  background: var(--blue-brand);
}

/* ============================================================
   01 · NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 10, 31, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  gap: 40px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--white);
}

.navbar .btn {
  margin-left: 1rem;
  /* Scale down navbar button slightly */
  height: 44px;
  padding: 0 24px;
  font-size: 15px;
}

.navbar .btn__circle {
  width: 22px;
  height: 22px;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   02 · HERO
   SVG: 1440×1328 | fundo #040A1F
   Foto warehouse começa em Y=628 (47% do height 1328)
   Dashboard mockup: x=355, y=780, 731×528
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  /* Sem overflow:hidden — o mockup deve sangrar para a seção seguinte */
  padding-top: clamp(100px, 9vw, 130px);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Radial glow azul (1000×560, centered, y=-120 → top portion) */
.hero__glow {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 69.4%;
  padding-bottom: 38.9%;
  border-radius: 50%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%,
      rgba(19, 61, 227, 0.20) 0%,
      rgba(19, 61, 227, 0.06) 60%,
      transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* Foto almoxarifado — cobre a metade inferior do hero.
   Em vez de usar clip-path percentual (que muda com a altura total),
   fixamos a posição de início em ~540px do topo (equivalente ao SVG Y=628). */
.hero__photo {
  position: absolute;
  /* Y=628 no SVG ÷ 1328 × ~1100px viewport height ≈ 540px */
  top: 700px;

  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Camada 2: capacetes com degradê — mesma posição vertical, sobre o dashboard mockup */
.hero__photo--capacetes {
  top: 540px;
  z-index: 2;
  pointer-events: none;
  /* acima do mockup e do almoxarifado */
}

.hero__photo--capacetes img {
  object-position: center center;
  opacity: 0.9;
}

.hero__photo {
  pointer-events: none;
}

/* Fades sobre a foto */
.hero__photo-fade {
  position: absolute;
  pointer-events: none;
}

/* Fade topo: esconde a borda superior da foto (40px de transição) */
.hero__photo-fade--top {
  inset: 0 0 auto 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 100%);
}

.hero__photo-fade--bottom {
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

.hero__photo-fade--left {
  inset: 0 auto 0 0;
  width: 7%;
  background: linear-gradient(to right, rgba(4, 10, 31, 0.60) 0%, transparent 100%);
}

.hero__photo-fade--right {
  inset: 0 0 0 auto;
  width: 7%;
  background: linear-gradient(to left, rgba(4, 10, 31, 0.60) 0%, transparent 100%);
}

/* Conteúdo centralizado */
.hero__inner {
  position: relative;
  z-index: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 0;
}

.hero__badge,
.hero__headline,
.hero__sub,
.hero__ctas,
.hero__fine {
  position: relative;
  z-index: 3;
}

/* Badge: 379×32, rx=100, left=531, top=144 */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero__badge-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--yellow);
}

/* Headline: 820×?, left=310, top=212, 58px Outfit 700, lh=70px */
.hero__headline {
  font-size: clamp(2rem, 4vw, 58px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

/* Sub: 680×?, 18px Outfit 400, lh=30px, color #A0A5B9 */
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 18px);
  font-weight: 400;
  color: #A0A5B9;
  max-width: 680px;
  line-height: 30px;
  margin-bottom: 2rem;
}

/* CTAs: left=413, top=562, gap=12 */
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Fine print: 560px, left=440, top=630, 13px, rgba(160,165,185,0.60) */
.hero__fine {
  font-size: 13px;
  font-weight: 400;
  color: rgba(160, 165, 185, 0.60);
  max-width: 560px;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

/* Dashboard mockup: x=355, y=780, 731×528
   Fica na parte inferior do hero, sobre a foto do almoxarifado */
.hero__mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 830px;
  margin-inline: auto;
  /* Sangra para baixo — próxima seção é #040A1F então sem problema visual */
}

.hero__mockup img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow:
    0 -8px 40px rgba(19, 61, 227, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ============================================================
   03 · O PROBLEMA
   Y 1427–2186 | fundo #040A1F | layout centrado
   ============================================================ */
.problema {
  background: var(--navy);
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: 0;
}

.problema__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Headline: 800px, 64px, Outfit 700, lh=70.4, #F5F7FA */
.problema__headline {
  font-size: clamp(2rem, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #F5F7FA;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* Highlight amarelo: "aparece."
   Replica o clip-mask do Figma com background amarelo inline */
.problema__highlight {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 4px;
  padding: 0.05em 0.2em;
}

/* Bloco de linhas com fade top/bottom */
.problema__lines-wrap {
  position: relative;
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.problema__lines {
  text-align: center;
  padding: 2rem 0 3rem;
}

/* Fade gradients sobre as linhas */
.problema__lines-fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 35%;
  z-index: 2;
  pointer-events: none;
}

.problema__lines-fade--top {
  top: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 100%);
}

.problema__lines-fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

/* Linhas de texto */
.problema__line {
  font-size: clamp(1.25rem, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: #F5F7FA;
  margin: 0.35rem 0;
}

.problema__line--blur {
  opacity: 0.18;
  filter: blur(0.25px);
}

.problema__line--solid {
  opacity: 1;
}

/* ============================================================
   04 · PERSONAS / CARDS EMPILHADOS
   Y 2186–3185 | fundo #040A1F
   ============================================================ */
.prob-card {
  background: var(--navy);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.prob-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(3rem, 5vw, 4rem);
}

/* Headline: 700px, 48px, Outfit 700, lh=55.2 */
.prob-card__heading {
  text-align: center;
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.prob-card__title {
  font-size: clamp(1.75rem, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #F5F7FA;
  margin-bottom: 1rem;
}

.prob-card__sub {
  font-size: clamp(0.9rem, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 247, 250, 0.55);
}

/* Stack de cards (700×520 cada) */
.prob-card__stack {
  position: relative;
  width: 100%;
  max-width: 730px;
  height: 580px;
  /* 520px card + offset */
}

/* Card traseiro: rotate(4deg), #0A152C */
.prob-card__back {
  position: absolute;
  inset: 18px 0 0 22px;
  background: #0A152C;
  border-radius: 20px;
  transform: rotate(3.5deg);
  transform-origin: top left;
  overflow: hidden;
  z-index: 1;
}

/* Card frontal: #0D1B38, box-shadow */
.prob-card__front {
  position: absolute;
  inset: 0;
  background: #0D1B38;
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.50);
}

/* Foto dentro de cada card (700×296 = ~57% da altura 520px) */
.prob-card__card-photo {
  width: 100%;
  height: 57%;
  overflow: hidden;
  background: #132241;
  border-bottom: 1px solid #1A2B5A;
}

.prob-card__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Corpo do card */
.prob-card__card-body {
  padding: 1.75rem 2rem;
}

/* Persona label: #FAD11E, 32px, Outfit 700, lh=38.4 */
.prob-card__persona {
  font-size: clamp(1.25rem, 2.2vw, 32px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

/* Persona text: opacity 0.80, #F5F7FA, 17px, lh=25.5 */
.prob-card__persona-text {
  font-size: clamp(0.875rem, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 247, 250, 0.80);
}

/* ============================================================
   05 · CRESCIMENTO VS CONTROLE
   Y 3185–4015 | fundo #EBEFF6 | 4 cards
   ============================================================ */
.crescimento {
  background: var(--light-bg-2);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.crescimento__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Headline: 48px, Outfit 700, lh=55.2 — two lines with mixed colors */
.crescimento__headline {
  font-size: clamp(1.75rem, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.crescimento__headline--blue {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 115%;
  /* or 55px */

  background: linear-gradient(90deg, #1A5EB8 0%, #040A1F 73.56%, #4D74B1 98.56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;


}

.crescimento__headline--dark {
  color: var(--navy);
  display: block;
}

/* 4 cards grid */
.crescimento__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}

/* Card base */
.crescimento__card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 6px 24px rgba(4, 10, 31, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 400px;
}

/* Highlighted card (Estoque invisível): blue outline + shadow */
.crescimento__card--highlight {
  box-shadow:
    0 20px 48px -4px rgba(26, 94, 184, 0.22),
    inset 0 2px 6px rgba(26, 94, 184, 0.08);
  outline: 1.5px solid rgba(26, 94, 184, 0.35);
  outline-offset: -1.5px;
}

.crescimento__card--highlight h3 {
  color: #1A5EB8;
}

/* Card icon: 40×40 box with inner outline */
.crescimento__card-icon {
  width: 40px;
  height: 40px;
  background: rgba(4, 10, 31, 0.06);
  border-radius: 10px;
  align-self: flex-end;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crescimento__card-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}



.crescimento__card h3 {
  font-size: clamp(1.1rem, 2vw, 32px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
}

.crescimento__card p {
  font-size: clamp(0.85rem, 1.1vw, 15px);
  font-weight: 400;
  color: rgba(4, 10, 31, 0.55);
  line-height: 1.55;
}

/* Bottom yellow bar: 318×4 */
.crescimento__card-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
  border-radius: 0 0 16px 16px;
}

/* ============================================================
   06 · RASTREABILIDADE — STATEMENT
   Y 4015–4915 | fundo #EBF0F6 | Inter font
   6 ícones decorativos amarelos + headline azul
   ============================================================ */
.rastreab-stmt {
  position: relative;
  background: var(--light-bg);
  padding-block: clamp(5rem, 9vw, 8rem);
  overflow: hidden;
}

/* 6 ícones decorativos amarelos (96px/88px, border-radius ~21px, rotated) */
.rastreab-stmt__icon {
  position: absolute;
  background: var(--yellow);
  border-radius: 21px;
  outline: 2px solid var(--navy);
  outline-offset: -1.5px;
  box-shadow:
    0 0 19px 1px rgba(250, 209, 30, 0.40),
    0 0 38px rgba(250, 209, 30, 0.17);
  /* inner black fill (icon placeholder) */
  padding: 10px;
}

.rastreab-stmt__icon>img {
  filter: brightness(0) saturate(100%);
}


.rastreab-stmt__icon--1 {
  padding: 17px;

  width: 96px;
  height: 96px;
  left: 16.8%;
  top: 9.3%;
  transform: rotate(7deg);
  transform-origin: top left;
}

.rastreab-stmt__icon--2 {
  padding: 17px;
  width: 96px;
  height: 96px;
  right: 11.7%;
  top: 9.3%;
  transform: rotate(-6deg);
  transform-origin: top left;
}

.rastreab-stmt__icon--3 {
  width: 88px;
  height: 88px;
  right: 7.6%;
  top: 44.2%;
}

.rastreab-stmt__icon--4 {
  width: 88px;
  height: 88px;
  right: 10.7%;
  bottom: 11%;
  transform: rotate(4deg);
  transform-origin: top left;
}

.rastreab-stmt__icon--5 {
  width: 88px;
  height: 88px;
  left: 17.1%;
  bottom: 11%;
  transform: rotate(-5deg);
  transform-origin: top left;
}

.rastreab-stmt__icon--6 {
  width: 88px;
  height: 88px;
  left: 8.4%;
  top: 44.2%;
}

.rastreab-stmt__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Ghost/muted headline: 40px Inter 600, rgba(4,10,31,0.55) */
.rastreab-stmt__ghost {
  font-family: var(--font-inter);
  font-size: clamp(1.25rem, 2.8vw, 40px);
  font-weight: 600;
  color: rgba(4, 10, 31, 0.55);
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Main headline: 48px Inter 700, #133DE3 */
.rastreab-stmt__headline {
  font-family: var(--font-inter);
  font-size: clamp(1.5rem, 3.3vw, 48px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.rastreab-stmt__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Body text: 15px Inter 400, opacity varies */
.rastreab-stmt__body p {
  font-family: var(--font-inter);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(4, 10, 31, 0.70);
  text-align: center;
}

/* ============================================================
   07 · A SOLUÇÃO
   Y 4915–6602 | fundo #040A1F
   2 colunas: lista esq (588px) | screenshot dir
   ============================================================ */
.solucao {
  background: var(--navy);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.solucao__inner {
  display: grid;
  grid-template-columns: 588fr 792fr;
  gap: var(--gap);
  align-items: start;
}

.solucao__bottom {
  padding-block: clamp(2rem, 5vw, 3rem);
}

.solucao__left-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solucao__list-grid {
  display: grid;
  grid-template-columns: 30% 60%;
  gap: 2rem;
  align-items: start;
}

.solucao__right-panel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.solucao__image-panel {
  width: 100%;
  min-height: 480px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(109, 133, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--slate);
  font-weight: 600;
  text-align: center;
}

.solucao__image-preview {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

@media (max-width: 1120px) {
  .solucao__list-grid {
    grid-template-columns: 1fr;
  }
}

/* Coluna esquerda */
.solucao__headline {
  font-size: clamp(1.5rem, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  max-width: 588px;
  margin-bottom: 1.25rem;
}

.solucao__sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate-lt);
  line-height: 26.35px;
  max-width: 588px;
  margin-bottom: 1.5rem;
}

.solucao__sep {
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: var(--blue-mid);
  margin: 1.5rem 0;
}

.solucao__practice {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0;
  max-width: 1200px;
}

/* Tabs nav */
.solucao__tabs {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 1.5rem 0 1rem;
  overflow-x: auto;
}

.solucao__tab {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  padding: 8px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.solucao__tab:hover {
  color: var(--white);
}

.solucao__tab--active {
  color: var(--white);
}

.solucao__tab-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  transition: color var(--transition);
}

.solucao__tab-num--active,
.solucao__tab--active .solucao__tab-num {
  color: var(--blue);
}

.solucao__tab-divider {
  width: 1px;
  height: 36px;
  background: var(--blue-mid);
  margin: 0 16px;
  flex-shrink: 0;
}

/* Lista de itens */
.solucao__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-top: 1px solid var(--blue-mid);
}

.solucao__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--blue-mid);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.4;
  transition: color var(--transition);
  cursor: pointer;
}

.solucao__item:hover {
  color: var(--text-muted);
}

.solucao__item--active {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.solucao__item-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  flex-shrink: 0;
  line-height: 1.8;
}

.solucao__item-num--active,
.solucao__item--active .solucao__item-num {
  color: var(--blue);
}

/* Active item has left blue bar (3px) */
.solucao__item--active {
  position: relative;
}

.solucao__item--active::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
}

/* Closing text */
.solucao__closing1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.3;
  margin-top: 1.5rem;
  text-align: center;

}

.solucao__closing2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  text-align: center;
}

/* Coluna direita: screenshot */
.solucao__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.solucao__screen {
  background: #091232;
  border-radius: 16px;
  outline: 1px solid var(--blue-mid);
  outline-offset: -1px;
  overflow: hidden;
  aspect-ratio: 792/464;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solucao__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solucao__menu-overlay {
  position: absolute;
  bottom: -59px;
  right: -22px;
  max-width: 158px;
  opacity: 0.8;
  pointer-events: none;
  border-radius: 12px;
}

/* ============================================================
   08 · FLUXO OPERACIONAL
   Y 6601–7702 | fundo #040A1F
   Header centrado + 4 etapas em carrossel horizontal
   ============================================================ */
.fluxo {
  background: var(--navy);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: 0;
  overflow: hidden;
}

.fluxo__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
}

/* Headline: 700px, 64px, Outfit 700, lh=71.68 */
.fluxo__headline {
  font-size: clamp(2rem, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  max-width: 700px;
  margin: 0.75rem auto 1rem;
}

.fluxo__sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--slate-lt);
  line-height: 1.5;
  max-width: 960px;
  margin: 0 auto;
}

/* Horizontal scroll area */
.fluxo__scroll-area {
  position: relative;
  padding: 0 clamp(1rem, 5vw, 4rem);
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.fluxo__carousel-track {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(1rem, 5vw, 4rem);
}

.fluxo__carousel-track::-webkit-scrollbar {
  display: none;
}

/* Cards container: 4 cards of 500px each */
.fluxo__cards {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.card {
  position: relative;
  flex-shrink: 0;
}

/* Individual card: responsive width with snap */
.fluxo__card {
  position: relative;
  width: min(500px, 90vw);
  height: 380px;
  background: #162060;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-inline-start: clamp(1rem, 5vw, 4rem);
}

.fluxo__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fluxo__card--placeholder {
  background: #162060;
}

/* Etapa label */
.fluxo__card-etapa {
  position: absolute;
  top: 32px;
  left: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.20px;
  color: var(--yellow);
  font-family: var(--font);
}

.fluxo__card-description {
  padding: 1.5rem;
  margin: 0;
  background: rgba(4, 10, 31, 0.98);
  border-radius: 0 0 16px 16px;
}

.fluxo__card-description p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}

.fluxo__carousel-control {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 10, 31, 0.9);
  color: #ffffff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.fluxo__carousel-control:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.fluxo__carousel-control--prev {
  left: 0.75rem;
}

.fluxo__carousel-control--next {
  right: 0.75rem;
}

.fluxo__carousel-control:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (max-width: 820px) {
  .fluxo__carousel-control {
    display: none;
  }
}

/* ============================================================
   09 · RESULTADOS POR PERFIL
   Y 7702–8940 | fundo #EBF0F6
   Label centrado + headline centrado + 2-col grid
   ============================================================ */
.perfil {
  background: var(--light-bg);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.perfil__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Headline: 700px, 44px, Outfit 700, lh=50.6, #040A1F */
.perfil__headline {
  font-size: clamp(1.75rem, 3vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  text-align: center;
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
}

/* Grid layout: TÉCNICO 60% spanning 2 rows | GESTOR 40% | DIRETOR 40% + ALMOXARIFE 60% */
.perfil__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  width: 100%;
  align-items: start;
}

/* TÉCNICO: spans full height on left */
.perfil__card--blue.perfil__card--tall {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* Right column: GESTOR tall */
.perfil__right-col {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Bottom row: DIRETOR + ALMOXARIFE side by side */
.perfil__bottom-row {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.25rem;
}

/* Base card */
.perfil__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.perfil__card--blue {
  background: #1E46EB;
}

.perfil__card--white {
  background: var(--white);
}

/* Tall card (left TÉCNICO: 440px | right GESTOR: 440px) */
.perfil__card--tall .perfil__card-image {
  height: 100%;
}

/* Short bottom cards */
.perfil__card:not(.perfil__card--tall) .perfil__card-image {
  height: 100%;
}

.perfil__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 0;
}

.perfil__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__image-1x4 {
  background: linear-gradient(187.3deg, rgba(24, 56, 189, 0) 65.28%, #1E46EB 85.15%), url(assets/resultado-perfil/image-1x4.png);
  background-position: 252px 12px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #1E46EB;
}

.perfil__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

/* Card labels */
.perfil__card-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.10px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.perfil__card-label--light {
  color: rgba(255, 255, 255, 0.9);
}

.perfil__card-label--blue {
  color: #133DE3;
}

/* h3 / p within cards */
.perfil__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.perfil__card p {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Dark text variants */
.perfil__card-h3--dark {
  color: #040A1F !important;
}

.perfil__card-p--muted {
  color: #7380AD !important;
}

/* ============================================================
   10 · IMPACTO REAL
   Y 8940–9692 | fundo #EBF0F6
   Label + 2-line headline + 4 stats com divisórias verticais
   ============================================================ */
.stats {
  background: var(--light-bg);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.stats__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Headline: 700px, 40px, Outfit 700, lh=46, #040A1F */
.stats__headline {
  font-size: clamp(1.5rem, 2.8vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 0.75rem;
}

/* Sub line: same size but blue */
.stats__sub {
  font-size: clamp(1.5rem, 2.8vw, 40px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* Stats grid: 4 items with vertical dividers */
.stats__grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 1200px;
}

.stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.stats__item:first-child {
  padding-left: 0;
}

.stats__divider {
  width: 1px;
  height: 260px;
  background: #C8D2E1;
  align-self: center;
  flex-shrink: 0;
}

/* Stat label: 13px Outfit 400, #7380AD */
.stats__label {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-lt);
  line-height: 1.45;
  text-align: left;
  margin-bottom: 0.75rem;
}

.stats__label--blue {
  color: var(--blue);
}

/* Stat number: 72px Outfit 700, #040A1F (100% is 88px blue) */
.stats__number {
  font-size: clamp(2.5rem, 5vw, 72px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats__number--blue {
  font-size: clamp(2.5rem, 6vw, 88px);
  color: var(--blue);
  text-shadow: 0 22px 48px rgba(19, 61, 227, 0.20);
}

/* ============================================================
   11 · RASTREABILIDADE REVEAL
   Y 9692–10349 | fundo #EBF0F6
   Headline com "rastreabilidade." invisível → azul
   ============================================================ */
.rastreab-reveal {
  background: linear-gradient(180deg, #EBF0F6 10%, rgba(235, 240, 246, 0) 150%), url(assets/background-impacto-real.png);
  background-position: bottom;
  background-size: auto;
  background-repeat: no-repeat;
  padding-block: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.rastreab-reveal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rastreab-reveal__content {
  text-align: center;
  max-width: 700px;
}

/* Pre: 28px Outfit 700, #040A1F */
.rastreab-reveal__pre {
  font-size: clamp(1.1rem, 2vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

/* Main headline: "Está na falta de [rastreabilidade.]" */
.rastreab-reveal__headline {
  font-size: clamp(1.5rem, 3vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* "rastreabilidade." appears in blue */
.rastreab-reveal__word {
  color: var(--blue);
}

/* Stacked lines with varying opacity */
.rastreab-reveal__lines {
  position: relative;
  overflow: hidden;
  height: 120px;
}

.rastreab-reveal__line {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
}

.rastreab-reveal__line--ghost-top {
  top: -34px;
  opacity: 0.12;
}

.rastreab-reveal__line--main {
  top: 4px;
  opacity: 0.85;
}

.rastreab-reveal__line--mid {
  top: 38px;
  opacity: 0.65;
}

.rastreab-reveal__line--fade {
  top: 72px;
  opacity: 0.40;
}

.rastreab-reveal__line--ghost-bottom {
  top: 106px;
  opacity: 0.12;
}

/* ============================================================
   12 · FORMULÁRIO
   Y 10349–11205 | fundo #040A1F + radial glow
   Inputs pill-shaped (border-radius: 100px)
   ============================================================ */
.form-section {
  background:
    radial-gradient(ellipse 111.11% 100% at 0% -110%, rgba(19, 61, 227, 0.35) 0%, rgba(19, 61, 227, 0) 100%),
    radial-gradient(ellipse 66.67% 58.82% at 0% 70.59%, rgba(19, 61, 227, 0.65) 0%, rgba(19, 61, 227, 0) 100%),
    url(assets/background-form-degrade.png);
  background-size: cover;
  padding-block: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.form-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

/* Headline: 700px, 44px, white */
.form-section__headline {
  font-size: clamp(1.75rem, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* Sub: 16px, rgba(255,255,255,0.60) */
.form-section__sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.55;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

/* Fine print below button */
.form-section__fine {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.4;
  margin-top: 1.25rem;
}

/* Form */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  text-align: left;
}

.demo-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Form group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.88px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font);
}

/* Pill inputs */
.form-group input {
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 0 1.25rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.form-group input:focus {
  border-color: rgba(19, 61, 227, 0.60);
  background: rgba(255, 255, 255, 0.10);
}

/* Pill chips (Segmento, Múltiplas unidades) */
.form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.pill {
  height: 34px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-radius: 100px;
  outline: 1px solid rgba(255, 255, 255, 0.22);
  outline-offset: -1px;
  color: rgba(255, 255, 255, 0.70);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.pill:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.pill.active {
  background: rgba(19, 61, 227, 0.20);
  outline-color: var(--blue-brand);
  color: var(--white);
}

/* Submit button area */
.demo-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.demo-form__actions .btn--outline-blue {
  color: #F5F7FA;
}

/* ============================================================
   13 · FAQ
   Y 11205–11705 | fundo #EBF0F6
   2 colunas: esquerda (título) | direita (accordion)
   ============================================================ */
.faq {
  background: var(--light-bg);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.faq__inner {
  display: grid;
  grid-template-columns: 380fr 740fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* Left column */
.faq__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

/* Headline: 44px, Outfit 700, #040A1F */
.faq__headline {
  font-size: clamp(1.75rem, 3vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}

/* Sub: 15px, rgba(4,10,31,0.50) */
.faq__sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(4, 10, 31, 0.50);
  line-height: 1.5;
}

.faq__left .btn--outline-blue {
  color: var(--navy);
}

/* Right column: accordion */
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(4, 10, 31, 0.10);
}

.faq__item {
  border-bottom: 1px solid rgba(4, 10, 31, 0.10);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  line-height: 1.3;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--blue);
}

/* Chevron: simple line-box shape */
.faq__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 8px;
  border: 1.5px solid #828790;
  display: block;
  transition: transform var(--transition), border-color var(--transition);
}

.faq__chevron--open {
  transform: rotate(180deg);
  border-color: var(--blue-brand);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
  border-color: var(--blue-brand);
}

.faq__answer {
  padding: 0 0 1.25rem;
}

.faq__answer[hidden] {
  display: none;
}

.faq__answer p {
  font-size: 15px;
  font-weight: 400;
  color: #737882;
  line-height: 1.55;
}

.faq__answer p strong {
  color: rgba(4, 10, 31, 0.85);
  font-weight: 600;
}

/* ============================================================
   14 · CTA FINAL
   Y 11705–12305 | fundo #EBF0F6
   ============================================================ */
.cta-final {
  background: var(--light-bg);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* Headline: 780px, 48px, Outfit 600+700, #040A1F */
.cta-final__headline {
  font-size: clamp(1.75rem, 3.3vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  max-width: 780px;
  margin-bottom: 2rem;
}

.cta-final .btn--yellow {
  font-size: clamp(15px, 1.5vw, 20px);
}

/* Fine print */
.cta-final__fine {
  font-size: 15px;
  font-weight: 400;
  color: rgba(4, 10, 31, 0.50);
  line-height: 1.55;
  max-width: 700px;
  margin-top: 1.25rem;
}

.cta-final__fine strong {
  font-weight: 600;
  color: rgba(4, 10, 31, 0.65);
}

/* ============================================================
   15 · FOOTER
   Y 12304–12784 | fundo #040A1F
   ============================================================ */
.footer {
  background: var(--navy);
  padding-top: 4rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 320fr 200fr 200fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 3rem;
}

.footer__logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
  max-width: 320px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__nav-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.88px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 1rem;
}

.footer__nav-col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 0;
  transition: color var(--transition);
  display: block;
}

.footer__nav-col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-block: 1.5rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  .solucao__inner {
    grid-template-columns: 1fr;
  }

  .solucao__right {
    order: -1;
  }

  .solucao__screen {
    aspect-ratio: 4/3;
  }

  .crescimento__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .perfil__grid {
    grid-template-columns: 1fr 1fr;
  }

  .perfil__right-col {
    display: contents;
  }

  .perfil__bottom-row {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr;
  }

  .fluxo__card-description {
    padding-inline: 1.5rem;
  }

  .fluxo__card-description p {
    width: auto;
  }

  .stats__grid {
    flex-wrap: wrap;
  }

  .stats__item {
    flex: 1 0 45%;
  }

  .stats__divider {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Navbar */
  .navbar__links {
    display: none;
  }

  .navbar .btn:not(.navbar__burger) {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar.menu-open .navbar__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 70px;
    background: rgba(4, 10, 31, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    gap: 1.5rem;
    font-size: 1.25rem;
    z-index: 999;
  }

  .navbar.menu-open .btn--yellow {
    display: inline-flex;
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding-top: 88px;
  }

  .hero__photo {
    top: 380px;
  }

  .hero__headline {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .hero__sub {
    font-size: 0.95rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  .hero__mockup {
    max-width: 95vw;
  }

  /* Buttons */
  .btn {
    height: 48px;
    font-size: 16px;
    padding: 0 24px;
  }

  .btn__circle {
    width: 24px;
    height: 24px;
  }

  /* S03 Problema */
  .problema__headline {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .problema__line {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  /* S04 Prob-card */
  .prob-card__stack {
    max-width: 100%;
    height: auto;
  }

  .prob-card__back {
    display: none;
  }

  .prob-card__front {
    position: relative;
    inset: auto;
  }

  .prob-card__card-photo {
    height: 200px;
  }

  /* S05 Crescimento */
  .crescimento__cards {
    grid-template-columns: 1fr;
  }

  .crescimento__card {
    min-height: auto;
  }

  /* S06 Rastreab-stmt */
  .rastreab-stmt__icon {
    display: none;
  }

  /* S07 Solução */
  .solucao__practice {
    font-size: 1.5rem;
  }

  .solucao__tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .solucao__tab-divider {
    display: none;
  }

  /* S08 Fluxo */
  .fluxo__card-description {
    padding-inline: clamp(1rem, 5vw, 4rem);
  }

  .fluxo__card-description p {
    width: auto;
  }

  /* S09 Perfil */
  .perfil__grid {
    grid-template-columns: 1fr;
  }

  .perfil__right-col {
    display: flex;
  }

  .perfil__bottom-row {
    grid-template-columns: 1fr;
  }

  /* S10 Stats */
  .stats__grid {
    flex-direction: column;
    align-items: stretch;
  }

  .stats__item {
    padding: 0;
  }

  .stats__divider {
    width: 100%;
    height: 1px;
  }

  /* S11 Rastreab-reveal */
  .rastreab-reveal__lines {
    height: 140px;
  }

  /* S12 Form */
  .demo-form__row {
    grid-template-columns: 1fr;
  }

  /* S13 FAQ */
  .faq__inner {
    grid-template-columns: 1fr;
  }

  /* S14 CTA final */
  .cta-final__headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* S15 Footer */
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero__ctas .btn {
    width: 100%;
  }

  .crescimento__cards {
    grid-template-columns: 1fr;
  }

  .stats__item {
    padding-inline: 0;
  }
}