/* ══════════════════════════════════════════════════
   GPS EXPERIENCE - Design System (Salvy-inspired)
   Tema: claro, minimalista, tipografia Inter
══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg-base:        #F5F5F5;
  --bg-white:       #FFFFFF;
  --bg-section-alt: #F5F5F5;

  --text-primary:   #111111;
  --text-secondary: #6B6B6B;
  --text-muted:     #9B9B9B;

  --accent:         #5CC352;
  --accent-light:   rgba(122, 212, 112, 0.12);
  --accent-border:  rgba(122, 212, 112, 0.35);
  --accent-gradient: linear-gradient(135deg, #7AD470 0%, #3FB233 100%);

  --border-subtle:  #E8E8E8;
  --border-light:   #E0E0E0;

  --cta-bg:         #1A1A1A;
  --cta-text:       #FFFFFF;

  --radius-card:    16px;
  --radius-pill:    9999px;

  --section-py:     100px;
  --container-max:  1100px;

  --shadow-card:    0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
  scrollbar-width: thin;
  scrollbar-color: #5CC352 transparent;
}

/* ── Scrollbar (webkit) ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: #3FB233; }

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

/* ── Keyframes ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Layout ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section-white { background: var(--bg-white); }
.section-gray  { background: var(--bg-base); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-intro {
  max-width: 600px;
  margin: 0 auto;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 7px 20px;
  background: var(--bg-white);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-dark {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.btn-dark .btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

/* ── Cards ── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ── Feature cards grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card { padding: 28px; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── KPI / Numbers grid ── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kpi-card { padding: 28px 32px; }

.kpi-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.kpi-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.kpi-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Método GPS - tabs ── */
.metodo-layout {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

.metodo-list { display: flex; flex-direction: column; gap: 4px; }

.metodo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  user-select: none;
  border: 1px solid transparent;
}

.metodo-item:hover { background: var(--bg-base); }

.metodo-item.active {
  background: var(--accent-light);
  border-color: var(--accent-border);
}

.metodo-item-icon { font-size: 1.25rem; flex-shrink: 0; }
.metodo-item:not(.active) .metodo-item-icon { opacity: 0.4; }

.metodo-item-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex: 1;
  letter-spacing: -0.01em;
  transition: color 0.18s;
}

.metodo-item.active .metodo-item-label { color: var(--text-primary); }
.metodo-item-arrow { font-size: 1rem; color: transparent; transition: color 0.18s, transform 0.18s; }
.metodo-item:hover .metodo-item-arrow { color: var(--text-muted); transform: translateX(2px); }
.metodo-item.active .metodo-item-arrow { color: var(--accent); transform: translateX(2px); }

.metodo-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 420px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes slideOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(16px); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.metodo-text-panel.entering { animation: slideUp 260ms cubic-bezier(0.4,0,0.2,1) forwards; }
.metodo-text-panel.leaving  { animation: slideOut 160ms ease forwards; }

.metodo-text-panel { display: flex; flex-direction: column; gap: 12px; overflow: hidden; }

.mtp-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mtp-word {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.mtp-phrase {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.4;
}

.mtp-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 360px;
}

.metodo-tagline {
  text-align: center;
  padding: 40px 0 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.metodo-tagline .tag-highlight { color: var(--accent); font-weight: 600; }

/* ── Antes × Depois ── */
.transform-list { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }

.transform-row {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.18s;
}

.transform-row:hover { background: var(--bg-base); }

.tr-before {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 10px;
  padding: 10px 16px;
}
.tr-before .tr-icon { color: #EF4444; font-weight: 700; font-size: 0.75rem; flex-shrink: 0; }

.tr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-light);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.tr-after {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 500;
}
.tr-after .tr-icon { color: #7C3AED; font-size: 0.75rem; flex-shrink: 0; }

/* ── Como funciona ── */
.cf-list { display: flex; flex-direction: column; gap: 64px; }

.cf-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cf-item.reverse { direction: rtl; }
.cf-item.reverse > * { direction: ltr; }

.cf-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-base);
  aspect-ratio: 4/3;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cf-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.cf-placeholder-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}

.cf-placeholder span { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); }

.cf-text { display: flex; flex-direction: column; gap: 14px; }

.cf-step {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  width: fit-content;
}

.cf-title {
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cf-desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; }

.cf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s;
}

.cf-link:hover { opacity: 0.75; }

/* ── Plataforma ── */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.platform-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.platform-quote {
  padding: 16px 20px;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
  margin-top: 20px;
}

.platform-mockup {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.pm-header {
  background: var(--bg-base);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.pm-header-title { font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); }
.pm-dots { display: flex; gap: 5px; }
.pm-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-light); }

.pm-body { padding: 20px; }
.pm-label { font-size: 0.6875rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }

.pm-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.pm-tool {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 8px 10px;
  transition: border-color 0.2s;
}

.pm-tool:hover { border-color: var(--accent-border); background: var(--accent-light); }
.pm-tool-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.pm-tool-name { font-size: 0.75rem; font-weight: 500; color: var(--text-secondary); }

/* ── Para quem ── */
.pq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.pq-block { padding: 28px 32px; border-radius: var(--radius-card); }
.pq-block.yes { background: var(--accent-light); border: 1px solid var(--accent-border); }
.pq-block.no  { background: var(--bg-white); border: 1px solid var(--border-subtle); }

.pq-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pq-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.pq-icon.yes { background: var(--accent); color: #fff; }
.pq-icon.no  { background: rgba(239,68,68,0.12); color: #EF4444; }
.pq-title { font-size: 1rem; font-weight: 600; color: var(--text-primary); }

.pq-list { display: flex; flex-direction: column; gap: 10px; }
.pq-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text-secondary); }
.pq-bullet { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.pq-bullet.yes { background: var(--accent); color: #fff; }
.pq-bullet.no  { background: rgba(239,68,68,0.12); color: #EF4444; }

/* ── FAQ ── */
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--text-primary); }

.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-base);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
  transition: transform 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.75; }

/* ══════════════════════════════════════
   COMO FUNCIONA - scroll journey
══════════════════════════════════════ */
.cfj-section {
  background: var(--bg-white);
  height: 300vh;
  position: relative;
}

.cfj-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cfj-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 44px;
  padding-top: 48px;
}

.cfj-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  align-items: center;
  gap: 80px;
  position: relative;
}

/* Left */
.cfj-left {
  display: flex;
  flex-direction: column;
  position: relative;
}

.cfj-label {
  display: block;
  text-align: center;
  white-space: nowrap;
}

.cfj-bg-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 700;
  color: #EFEFEF;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: -12px 0 -16px -4px;
  user-select: none;
  transition: opacity 0.2s ease;
}

.cfj-left-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cfj-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.05;
}

.cfj-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 380px;
}

.cfj-footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.cfj-dots { display: flex; gap: 6px; }

.cfj-dot {
  height: 3px;
  width: 20px;
  border-radius: 9999px;
  background: var(--border-light);
  transition: background 0.35s ease, width 0.35s ease;
}
.cfj-dot.active { background: var(--accent); width: 36px; }

.cfj-counter {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.cfj-counter span {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* Right card */
.cfj-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cfj-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 460px;
}

.cfj-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.cfj-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.cfj-card-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.cfj-card-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.cfj-resultado {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
}

.cfj-resultado-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 6px;
}

.cfj-resultado-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-style: italic;
}

/* Progress line */
.cfj-line-track {
  height: 2px;
  background: var(--border-subtle);
  position: relative;
  flex-shrink: 0;
}

.cfj-line-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  border-radius: 9999px;
}

/* Animations */
@keyframes cfjIn  { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cfjOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-10px); } }

.cfj-entering { animation: cfjIn  0.28s cubic-bezier(0.4,0,0.2,1) forwards; }
.cfj-leaving  { animation: cfjOut 0.18s ease forwards; }

/* Mobile */
@media (max-width: 768px) {
  .cfj-section { height: auto; }
  .cfj-sticky { position: relative; height: auto; padding: 60px 0; }
  .cfj-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }
  .cfj-bg-number { font-size: clamp(5rem, 22vw, 8rem); }
  .cfj-desc { max-width: 100%; }
  .cfj-line-track { display: none; }
}

/* ── CTA Final ── */
.cta-section {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.cta-card {
  background: url('images/cta-bg.webp') center / cover no-repeat;
  border-radius: 24px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-blob--tl {
  width: 280px; height: 280px;
  top: -80px; left: -80px;
  background: rgba(180, 180, 210, 0.22);
}
.cta-blob--tr {
  width: 160px; height: 160px;
  top: -40px; right: 12%;
  background: rgba(180, 180, 210, 0.13);
}
.cta-blob--br {
  width: 420px; height: 420px;
  bottom: -130px; right: -90px;
  background: rgba(180, 180, 210, 0.18);
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub { font-size: 1.0625rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-micro { font-size: 0.8125rem; color: var(--text-muted); }

/* ── Footer ── */
footer {
  background: var(--bg-white);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; max-width: 280px; }

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom-flex {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--text-primary); }

/* ══════════════════════════════════════
   BENTO GPS
══════════════════════════════════════ */
.bento-section {
  background: var(--bg-base);
}

.bento-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 40px;
  line-height: 1.15;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.bento-card--1 { grid-column: span 2; min-height: 420px; }
.bento-card--2 { grid-column: span 1; min-height: 420px; }
.bento-card--3 { grid-column: span 1; min-height: 320px; }
.bento-card--4 { grid-column: span 2; min-height: 320px; }

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.bento-card--1::before { background-image: url('images/bento-gestao.webp'); }
.bento-card--2::before { background-image: url('images/bento-pessoas.webp'); }
.bento-card--3::before { background-image: url('images/bento-sistemas.webp'); }
.bento-card--4::before { background-image: url('images/bento-resultado.webp'); }

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 8px;
}

.bento-card-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--1,
  .bento-card--2,
  .bento-card--3,
  .bento-card--4 {
    grid-column: span 1;
    min-height: 280px;
  }
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.08s; }
.fade-in-delay-2 { transition-delay: 0.16s; }
.fade-in-delay-3 { transition-delay: 0.24s; }
.fade-in-delay-4 { transition-delay: 0.32s; }
.fade-in-delay-5 { transition-delay: 0.40s; }
.fade-in-delay-6 { transition-delay: 0.48s; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 24px 0;
}

.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  user-select: none;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-pill {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: 9999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-pill.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: var(--border-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

@media (min-width: 768px) {
  .nav-pill { display: flex; }
}

.nav-link {
  padding: 7px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 9999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--text-primary); background: var(--bg-base); }

.nav-cta {
  display: none;
  align-items: center;
  padding: 9px 20px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

@media (min-width: 768px) {
  .nav-cta { display: inline-flex; }
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--text-secondary);
  border-radius: 9999px;
}

.nav-burger span:nth-child(1),
.nav-burger span:nth-child(2) { width: 20px; }
.nav-burger span:nth-child(3) { width: 14px; }

@media (min-width: 768px) { .nav-burger { display: none; } }

/* ══════════════════════════════════════
   HERO  (tema claro)
══════════════════════════════════════ */
@font-face {
  font-family: 'SpriteGraffiti';
  src: url('fonts/SpriteGraffiti-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

/* ── Hero Journey (hero + união fundidos) ── */
.hero-journey {
  position: relative;
  height: 280vh;
  background: var(--bg-white);
}

.journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--bg-white);
}

.journey-hands {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.journey-hand-left,
.journey-hand-right {
  position: absolute;
  width: 44vw;
  max-width: 640px;
  height: auto;
  will-change: transform;
}

.journey-hand-left  { left: 0;  top: 30%; transform: translateY(-50%) translateX(-110%); }
.journey-hand-right { right: 0; top: 70%; transform: translateY(-50%) translateX(110%);  }

@media (max-width: 768px) {
  .journey-hand-left,
  .journey-hand-right { width: 56vw; }
}

@media (max-width: 480px) {
  .journey-hands { display: none; }
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 24px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: opacity;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 0.12em;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-marker {
  font-family: 'SpriteGraffiti', cursive;
  display: block;
  text-transform: uppercase;
  font-size: clamp(1rem, 5vw, 6.5rem);
  white-space: nowrap;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: rotate(-3deg);
  margin-top: -0.1em;
  line-height: 1.1;
  animation: fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.hero-sub {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-weight: 300;
  text-transform: lowercase;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin-top: 2rem;
  font-size: 0.8125rem;
  max-width: 600px;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

.hero-cta-wrap {
  margin-top: 2.5rem;
  animation: fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-cta-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.hero-cta-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ── União text (dentro do hero-journey) ── */
.uniao-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 24px;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}

.uniao-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.uniao-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 0.85;
  margin-bottom: -12px;
}

.uniao-marker {
  font-family: 'SpriteGraffiti', cursive;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  white-space: nowrap;
}

.uniao-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 20px;
  letter-spacing: 0.03em;
}

.uniao-logo {
  margin-top: 20px;
  height: 20px;
  width: auto;
  object-fit: contain;
}

/* ══════════════════════════════════════
   PILARES GPS - scroll-driven card stack
══════════════════════════════════════ */

.pilares-section {
  background: #0A0A0A;
  position: relative;
  height: 220vh;
}

.pilares-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 44px;
  padding-top: 48px;
  padding-bottom: 24px;
}

.pilares-sticky::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 212, 112, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.pilares-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pilares-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pilares-label {
  display: inline-block;
  margin: 0 auto;
  white-space: nowrap;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}

.pilares-heading {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.pilares-word {
  display: inline-block;
  color: #FFFFFF;
  opacity: 0.2;
  transition: opacity 0.4s ease;
}

.pilares-word--accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pilares-word.active { opacity: 1; }

.pilares-sub {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 360px;
}

.pilares-right {
  position: relative;
}

/* Card 1 fica no fluxo e define a altura do container */
.gps-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 40px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20), 0 1px 4px rgba(0,0,0,0.08);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Imagem de fundo por card */
.gps-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.gps-card:nth-child(1)::before { background-image: url('images/gps-gestao.webp'); }
.gps-card:nth-child(2)::before { background-image: url('images/gps-pessoas.webp'); }
.gps-card:nth-child(3)::before { background-image: url('images/gps-sistema.webp'); }

/* Overlay escuro com gradiente topo→rodapé */
.gps-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

/* Destaque sutil no card Pessoas (eixo central do método) */
.gps-card:nth-child(2) {
  border: 2px solid var(--accent);
}

/* Todo conteúdo acima do overlay */
.gps-card > * {
  position: relative;
  z-index: 2;
}

.gps-card:nth-child(1) { position: relative; z-index: 1; }

/* Cards 2 e 3 são absolutos - se estendem abaixo sem cortar */
.gps-card:nth-child(2) { position: absolute; top: 0; left: 0; right: 0; z-index: 2; }
.gps-card:nth-child(3) { position: absolute; top: 0; left: 0; right: 0; z-index: 3; }

.gps-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.gps-card-brief {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

@media (max-width: 768px) {
  .pilares-section { height: auto; }
  .pilares-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    display: block;
    padding: 60px 0;
  }
  .pilares-sticky::after { display: none; }
  .pilares-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }
  .pilares-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .gps-card:nth-child(1),
  .gps-card:nth-child(2),
  .gps-card:nth-child(3) {
    position: relative;
    top: auto; left: auto; right: auto;
    transform: none !important;
  }
  .pilares-word { opacity: 1 !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cf-item { gap: 36px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .metodo-layout { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .pq-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .cf-item, .cf-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-grid-4 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom-flex { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .metodo-list { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
  .metodo-item { flex-shrink: 0; padding: 8px 14px; white-space: nowrap; }
  .metodo-item-arrow { display: none; }
  .metodo-visual { max-height: 240px; aspect-ratio: 16/9; }

  .transform-row { grid-template-columns: 1fr; gap: 4px; }
  .tr-arrow { transform: rotate(90deg); }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: 1fr; }
  .cta-btns, .hero-ctas { flex-direction: column; }
  .cta-btns .btn, .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-grid-4 { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
}
