:root {
  --paper: #FFFFFF;
  --paper-raised: #FFFFFF;
  --ink: #142440;
  --ink-muted: #56647F;
  --ink-faint: #8592AC;
  --line: #E1E8F7;
  --card: #FFFFFF;
  --accent: #2563EB;
  --accent-strong: #1B45B0;
  --accent-ink: #FFFFFF;
  --accent-tint: #E9F0FF;
  --navy: #FFFFFF;
  --navy-deep: #FFFFFF;
  --navy-line: #E1E8F7;
  --navy-text: #142440;
  --navy-text-muted: #56647F;
  --blue: #2E64EB;
  --blue-soft: #6C93F5;
  --shadow-sm: 0 8px 20px -12px rgba(20, 36, 64, 0.18);
  --shadow-lg: 0 30px 60px -25px rgba(20, 36, 64, 0.28);
  --good: #1E8E5A;
  --dev: #3B4B70;
  --dev-tint: #E9EDF7;
  --dev-line: rgba(59, 75, 112, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
.preloader.split-screen .split {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.preloader.split-screen .split.left { left: 0; }
.preloader.split-screen .split.right { right: 0; }

.preloader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 20, 36, 0.85); /* Overlay azul escuro/transparente */
  z-index: 2;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.preloader .wordmark {
  color: #ffffff;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .preloader.split-screen .split {
    width: 100%;
    height: 50%;
  }
  .preloader.split-screen .split.left { top: 0; left: 0; }
  .preloader.split-screen .split.right { top: 50%; left: 0; right: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; text-wrap: balance; color: var(--ink); }

.display {
  font-family: "Big Shoulders Display", "Arial Narrow", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.mono {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

p { margin: 0; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.container {
  width: 92%;
  max-width: 1320px; /* Reduzido de 1920px para não esticar demais os textos */
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container { 
    width: 90%; /* Dá respiro nas bordas do celular */
  }
}

p {
  max-width: 75ch; /* Limita o tamanho da linha para a leitura não ficar cansativa */
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 12px 24px -10px rgba(37, 99, 235, 0.5);
}
.btn-accent:hover { background: var(--accent-strong); box-shadow: 0 16px 30px -10px rgba(27, 69, 176, 0.55); }

/* Pulse Animation for main CTA */
@keyframes pulse-soft {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.btn-pulse {
  animation: pulse-soft 2s infinite;
}
.btn-pulse:hover {
  animation: none;
}

.btn-ghost-dark {
  background: transparent;
  border-color: var(--navy-line);
  color: var(--navy-text);
}
.btn-ghost-dark:hover { background: var(--accent-tint); border-color: var(--accent-strong); color: var(--accent-strong); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent-strong); color: var(--accent-strong); }

/* ---------- NAV ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
  transition: box-shadow 0.3s ease;
}
.topnav.scrolled {
  box-shadow: var(--shadow-sm);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.wordmark {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--navy-text);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.wordmark span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 150ms ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--navy-line);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy-text);
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn { display: none; } /* Esconde o botão no cabeçalho no celular para não estourar a tela */
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
  padding: 8px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy-text-muted);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--navy-line);
  font-size: 0.95rem;
}
.mobile-menu a.active { color: var(--accent); font-weight: 600; }

/* ---------- HERO ---------- */
.hero {
  background: var(--navy);
  background-image: radial-gradient(ellipse 900px 500px at 85% -10%, rgba(37,99,235,0.10), transparent 60%);
  color: var(--navy-text);
  padding: 76px 0 110px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--navy-line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border: 1px solid rgba(37,99,235,0.3);
  background: var(--accent-tint);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  color: var(--navy-text);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-lead {
  margin-top: 22px;
  font-size: 1.14rem;
  color: var(--navy-text-muted);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-strip {
  margin-top: 46px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--navy-line);
  padding-top: 24px;
}
.hero-strip div { display: flex; flex-direction: column; gap: 2px; }
.hero-strip strong { font-family: "Big Shoulders Display"; font-size: 1.7rem; color: var(--navy-text); font-weight: 700; }
.hero-strip span { font-size: 0.8rem; color: var(--navy-text-muted); }

/* device mockup shells reused across hero + telas section */
.device-browser {
  background: #1A2544;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.device-browser .chrome-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #141D38;
}
.chrome-dot { width: 9px; height: 9px; border-radius: 50%; background: #3A4568; }
.device-browser .chrome-url {
  margin-left: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  color: #7C8AB0;
  background: #0F1830;
  border-radius: 6px;
  padding: 3px 10px;
}
.app-frame {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 300px;
  background: #0E1830;
}
.app-sidebar {
  background: #0B1327;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.app-sidebar .sb-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #6E7EA8;
}
.app-sidebar .sb-icon.active { background: rgba(46,100,235,0.18); color: var(--blue-soft); }
.app-main { padding: 18px 20px; color: #DCE3F5; }
.app-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.app-title { font-weight: 700; font-size: 0.95rem; color: #F1F4FC; }
.app-badge {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(46,100,235,0.18);
  color: var(--blue-soft);
}
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.kpi-tile {
  background: #101C38;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
}
.kpi-tile .num { font-family: "IBM Plex Mono", monospace; font-size: 1.25rem; font-weight: 600; color: #F1F4FC; }
.kpi-tile .lbl { font-size: 0.66rem; color: #7C8AB0; margin-top: 2px; }
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.mini-bars i { flex: 1; background: linear-gradient(180deg, var(--blue-soft), var(--blue)); border-radius: 3px 3px 0 0; display: block; }
.list-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem; color: #C4CEE8;
}
.list-row:last-child { border-bottom: none; }
.chip { font-family: "IBM Plex Mono", monospace; font-size: 0.62rem; padding: 2px 7px; border-radius: 5px; }
.chip.ok { background: rgba(30,142,90,0.18); color: #4FCE93; }
.chip.warn { background: rgba(233,153,44,0.18); color: #F0A83E; }
.chip.wait { background: rgba(108,147,245,0.18); color: #9AB4F8; }

.hero-visual { position: relative; height: 420px; }
.hero-visual .device-browser.primary {
  position: absolute; top: 0; left: 0; width: 92%;
}
.device-phone {
  position: absolute;
  right: -6px;
  bottom: -18px;
  width: 190px;
  background: #101C38;
  border: 4px solid #1A2544;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  padding: 10px 10px 14px;
}
.device-phone .ph-notch { width: 46px; height: 5px; background: #1A2544; border-radius: 4px; margin: 0 auto 10px; }
.device-phone .ph-head { font-size: 0.7rem; font-weight: 700; color: #F1F4FC; margin-bottom: 8px; }
.ph-item {
  background: #0B1327;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 7px;
  display: flex; align-items: center; gap: 8px;
}
.ph-check {
  width: 16px; height: 16px; border-radius: 5px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
.ph-check.on { background: var(--good); color: #fff; }
.ph-check.off { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); }
.ph-item span { font-size: 0.66rem; color: #C4CEE8; flex: 1; }
.ph-item svg { width: 13px; height: 13px; color: #7C8AB0; flex-shrink: 0; }
.ph-progress { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.08); margin-top: 10px; overflow: hidden; }
.ph-progress i { display: block; height: 100%; width: 68%; background: var(--accent); }
.ph-progress-label { font-size: 0.62rem; color: #7C8AB0; margin-top: 6px; font-family: "IBM Plex Mono", monospace; }

/* ---------- SECTION HEADERS ---------- */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-head p { margin-top: 14px; color: var(--ink-muted); font-size: 1.04rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- PROBLEMA ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 800px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-item {
  background: var(--paper-raised);
  padding: 32px 28px;
  transition: background 0.3s ease;
}
.pain-item:hover {
  background: var(--paper);
}
.pain-item .mono { color: var(--accent-strong); font-size: 0.72rem; letter-spacing: 0.1em; }
.pain-item h3 { margin-top: 14px; font-size: 1.1rem; }
.pain-item p { margin-top: 10px; color: var(--ink-muted); font-size: 0.95rem; }

/* ---------- MODULOS ---------- */
.modules-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 800px) { .modules-lead { grid-template-columns: 1fr; } }
.module-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--accent-strong); }
.module-card.lead { padding: 30px; }
.module-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.module-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--accent-tint);
  color: var(--accent-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.module-card:hover .module-icon {
  transform: scale(1.1);
}
.module-icon svg { width: 22px; height: 22px; }
.module-card h3 { margin-top: 16px; font-size: 1.12rem; }
.module-card > p.desc { margin-top: 8px; color: var(--ink-muted); font-size: 0.92rem; }
.module-feats { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.module-feats li {
  font-size: 0.84rem; color: var(--ink-muted);
  display: flex; align-items: center; gap: 8px;
}
.module-feats li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-strong);
  flex-shrink: 0;
}
.badge-dev {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dev);
  background: var(--dev-tint);
  border: 1px dashed var(--dev-line);
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 940px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .modules-grid { grid-template-columns: 1fr; } }

/* ---------- TELAS ---------- */
.screens-band { background: var(--paper-raised); color: var(--navy-text); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.screens-band .section-head h2, .screens-band .eyebrow { color: var(--navy-text); }
.screens-band .eyebrow { color: var(--accent); }
.screens-band .section-head p { color: var(--navy-text-muted); }
.screens-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 940px) { .screens-layout { grid-template-columns: 1fr; } }
.screen-block { display: flex; flex-direction: column; gap: 14px; }
.screen-block.offset { margin-top: 56px; }
@media (max-width: 940px) { .screen-block.offset { margin-top: 0; } }
.screen-caption { font-size: 0.86rem; color: var(--navy-text-muted); max-width: 42ch; }
.screen-caption b { color: var(--navy-text); font-weight: 600; }

.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 4px; }
.kanban-col h4 { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7C8AB0; margin-bottom: 8px; font-weight: 600; }
.os-card {
  background: #0B1327; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
  padding: 9px; margin-bottom: 8px; font-size: 0.68rem; color: #C4CEE8;
  transition: transform 0.2s ease;
}
.os-card:hover { transform: scale(1.02); }
.os-card .os-id { font-family: "IBM Plex Mono", monospace; color: #7C8AB0; font-size: 0.62rem; }
.os-card .os-plate { font-family: "IBM Plex Mono", monospace; font-weight: 600; color: #F1F4FC; margin-top: 3px; }

.donut-report { display: flex; gap: 16px; align-items: center; }
.donut-legend { list-style: none; margin: 0; padding: 0; font-size: 0.7rem; color: #C4CEE8; }
.donut-legend li { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.donut-legend i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }

/* ---------- FLUXO ---------- */
.flow-list { display: flex; flex-direction: column; }
.flow-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.flow-item:last-child { border-bottom: 1px solid var(--line); }
.flow-num {
  font-family: "Big Shoulders Display";
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--line);
  line-height: 1;
  transition: color 0.3s ease;
}
.flow-item:hover .flow-num { color: var(--accent); }
.flow-body h3 { font-size: 1.08rem; }
.flow-body p { margin-top: 6px; color: var(--ink-muted); font-size: 0.95rem; max-width: 62ch; }

/* ---------- DIFERENCIAIS ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 760px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-item { background: var(--paper-raised); padding: 30px; display: flex; gap: 16px; transition: background 0.3s ease; }
.diff-item:hover { background: var(--paper); }
.diff-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent-strong);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.diff-item:hover .diff-icon {
  background: var(--accent); color: white; transform: rotate(5deg) scale(1.1);
}
.diff-icon svg { width: 20px; height: 20px; }
.diff-item h3 { font-size: 1rem; }
.diff-item p { margin-top: 6px; color: var(--ink-muted); font-size: 0.9rem; }

/* ---------- CTA ---------- */
.cta-band {
  background: var(--navy-deep);
  color: var(--navy-text);
  border-top: 1px solid var(--navy-line);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; } }
.cta-inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy-text); }
.cta-inner .lead { margin-top: 16px; color: var(--navy-text-muted); max-width: 46ch; font-size: 1.02rem; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--navy-line);
  transition: opacity 150ms ease, transform 150ms ease;
}
.contact-row:hover { opacity: 0.72; transform: translateX(5px); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.contact-row div { display: flex; flex-direction: column; }
.contact-row .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-text-muted); }
.contact-row .val { font-family: "IBM Plex Mono", monospace; font-size: 0.92rem; color: var(--navy-text); }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-deep);
  color: var(--navy-text-muted);
  padding: 28px 0;
  font-size: 0.82rem;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.fade-in {
  transform: translateY(0);
}
.reveal.slide-left {
  transform: translateX(-30px);
}
.reveal.slide-right {
  transform: translateX(30px);
}

/* A classe active DEVE vir depois para sobrescrever as de cima */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ---------- TRUST BAR (LOGOS) ---------- */
.trust-bar {
  padding: 40px 0;
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.trust-bar p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}
.trust-logos:hover {
  opacity: 1;
}
.trust-logos img {
  height: 32px;
  max-width: 120px;
  object-fit: contain;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 80px 0;
  background: var(--paper);
}
.testim-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .testim-grid { grid-template-columns: 1fr; }
}
.testim-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testim-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  font-size: 4rem;
  color: var(--accent-tint);
  line-height: 1;
  z-index: 0;
}
.testim-card p {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}
.testim-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testim-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-weight: bold;
}
.testim-author div {
  display: flex;
  flex-direction: column;
}
.testim-author strong {
  color: var(--ink);
  font-size: 0.95rem;
}
.testim-author span {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

/* ---------- FAQ (ACCORDION) ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question svg {
  transition: transform 0.3s ease;
  color: var(--accent);
}
.faq-item.faq-open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  color: var(--ink-muted);
}
.faq-item.faq-open .faq-answer {
  padding-bottom: 24px;
}

