/* ==========================================================================
   Unipile-style landing page — v2
   Tokens e medidas extraídos da página original (unipile.com/br) ao vivo
   ========================================================================== */

:root {
  --navy: #0f2736;
  --navy-2: #0f2836;
  --ink: #1e293b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --gray-6: #666666;
  --yellow: #dddf4c;
  --yellow-hover: #d2d43e;
  --green: #3bb98b;
  --blue: #0a66c2;
  --border: #e5e7eb;
  --bg-soft: #f4f5f7;
  --bg-soft-2: #eef0f3;
  --white: #ffffff;
  --hero-grad: radial-gradient(50% 1000px at 50% 227px, #004d76, #0d0e0f);
  --content: 823px;
  --content-wide: 1200px;
  --shadow-card: 0 1px 3px rgba(15, 39, 54, 0.06), 0 10px 30px rgba(15, 39, 54, 0.08);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Poppins", "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h2, h3 { font-family: var(--font-head); }

.container { max-width: calc(var(--content-wide) + 40px); margin: 0 auto; padding: 0 20px; }

/* ------------------------------------------------------------------ */
/* Botões                                                              */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  padding: 13px 28px;
  border-radius: 8px;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #163a4f; }
.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  font-weight: 600;
}
.btn-outline-yellow:hover { background: rgba(221, 223, 76, 0.1); }
.btn-outline {
  background: var(--white);
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 15.2px; }
.btn-hero { padding: 13px 32px; font-size: 16px; font-weight: 600; border-radius: 8px; gap: 10px; }
.btn .arr { width: 16px; height: 16px; }

/* ------------------------------------------------------------------ */
/* Header / navegação                                                  */
/* ------------------------------------------------------------------ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--white);
}
.logo-marks { width: 40px; height: 22px; flex-shrink: 0; }

.main-nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15.2px;
  line-height: 1.5;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
}
.nav-item > a:hover,
.nav-item > button:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-item .chev { transition: transform 0.2s ease; width: 16px; height: 16px; }
.nav-item.open .chev { transform: rotate(180deg); }

.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  padding: 22px;
  display: none;
  gap: 28px;
  min-width: 560px;
  max-width: calc(100vw - 32px);
  color: var(--ink);
}
.nav-item:nth-child(n+3) .mega { left: auto; right: 0; }
.nav-item.open .mega { display: flex; }
.mega-col { min-width: 160px; }
.mega-col .mega-h {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-bottom: 10px;
  font-weight: 700;
}
.mega-col a {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
}
.mega-col a:hover { background: var(--bg-soft); }
.mega-col a span { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; }

.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-actions .login {
  color: var(--yellow); font-size: 14px; font-weight: 600; line-height: 1.5;
  border: 1px solid var(--yellow);
  border-radius: 8px; padding: 10px 20px;
  transition: background 0.15s;
}
.header-actions .login:hover { background: rgba(221, 223, 76, 0.08); }
.header-actions .btn-yellow { padding: 10px 20px; border-radius: 8px; font-size: 14px; }

.nav-toggle { display: none; color: #fff; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ------------------------------------------------------------------ */
/* Hero (banda escura: conteúdo + visual + faixa de clientes)          */
/* ------------------------------------------------------------------ */
.hero {
  background: #0d0e0f;
  background-image: var(--hero-grad);
  color: var(--white);
  padding: 103px 0 80px;
  overflow: hidden;
}
.hero .container { max-width: 1196px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(221, 223, 76, 0.3);
  background: rgba(221, 223, 76, 0.1);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.kicker-pill::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.96px;
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 17.6px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.hero-note {
  font-size: 14.4px; font-weight: 500; color: var(--white);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-note svg { width: 18px; height: 18px; color: var(--green); }

/* --- pilha visual do hero (medidas RENDERIZADAS do original: 0.77x) --- */
.hero-visual { position: relative; min-height: 560px; display: flex; align-items: flex-start; justify-content: center; padding-top: 20px; }
.hero-stack { position: relative; width: 385px; }

.app-window {
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  width: 385px;
  overflow: hidden;
}
.app-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--bg-soft-2);
}
.app-topbar .app-name {
  font-size: 12px; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
}
.app-topbar .app-name svg { width: 19px; height: 19px; color: var(--muted-2); }
.app-topbar .top-dots { margin-left: auto; display: flex; gap: 4px; }
.app-topbar .top-dots i { width: 6px; height: 6px; border-radius: 50%; background: #e0e0e0; display: block; }

.app-contact { display: flex; align-items: center; gap: 12px; padding: 15px 18px 4px; }
.avatar-xl {
  width: 43px; height: 43px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(160deg, #cfe3f0, #8fb6cf);
  border: 2px solid #eeeeee;
  display: grid; place-items: center; overflow: hidden;
}
.avatar-xl svg { width: 32px; height: 32px; color: #57768c; margin-top: 8px; }
.app-contact .ac-name { font-size: 15px; font-weight: 600; letter-spacing: -0.2px; margin-bottom: 5px; }
.prov-row { display: flex; gap: 8px; align-items: center; }
.prov-row .pv { width: 21px; height: 21px; }
.prov-row .pv svg { width: 21px; height: 21px; }
.pv { flex-shrink: 0; display: grid; place-items: center; }
.pv.plus { color: var(--muted-2); font-weight: 700; font-size: 13px; width: 21px; height: 21px; }

.app-tabs { display: flex; gap: 6px; align-items: center; padding: 10px 18px 4px; }
.app-tab {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  padding: 6px 14px; border-radius: 20px;
}
.app-tab .dt { width: 5px; height: 5px; border-radius: 50%; background: #cbd5e1; }
.app-tab.on { background: rgba(59, 185, 139, 0.1); color: var(--green); }
.app-tab.on .dt { background: var(--green); }

.act-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 18px 8px; }
.act-head .t { font-weight: 700; font-size: 11.5px; }
.act-actions { display: flex; gap: 6px; }
.badge-sync {
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 5px 12px; border-radius: 7px;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge-sync svg { width: 9px; height: 9px; }
.badge-new {
  background: var(--white); color: #666;
  font-size: 10px; font-weight: 600;
  padding: 5px 10px; border-radius: 7px;
  border: 1px solid #e5e5e5;
}
.feed-list { padding: 0 18px 15px; }
.feed-item {
  display: flex; gap: 11px; align-items: center;
  background: #f8f9fa; border-radius: 10px;
  padding: 6px 11px; margin-bottom: 8px;
}
.feed-item:last-child { margin-bottom: 0; }
.feed-ico { width: 26px; height: 26px; flex-shrink: 0; display: grid; place-items: center; }
.feed-ico svg { width: 22px; height: 22px; }
.feed-txt { flex: 1; min-width: 0; }
.feed-txt p { font-size: 11px; font-weight: 600; line-height: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-txt time { font-size: 10px; color: var(--muted-2); }
.feed-re { color: #cbd5e1; flex-shrink: 0; }
.feed-re svg { width: 13px; height: 13px; }

/* card flutuante de APIs — tema escuro como o original */
.float-api {
  position: absolute;
  top: 0;
  right: -90px;
  width: 169px;
  background: #1a2332;
  color: var(--white);
  border: 1px solid rgba(59, 185, 139, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 185, 139, 0.1);
  padding: 14px 15px 11px;
  z-index: 3;
}
.fa-slide { display: none; }
.fa-slide.on { display: block; animation: faFade 0.45s ease; }
@keyframes faFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.fa-head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 11.5px; letter-spacing: -0.1px;
  color: var(--white);
  margin-bottom: 10px;
}
.fa-ico { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; }
.fa-ico svg { width: 14px; height: 14px; }
.fa-ico.i-msg { background: rgba(2, 132, 199, 0.25); color: #7dd3fc; }
.fa-ico.i-mail { background: rgba(221, 223, 76, 0.18); color: var(--yellow); }
.fa-ico.i-cal { background: rgba(59, 185, 139, 0.2); color: var(--green); }
.fa-provs { display: flex; gap: 6px; margin-bottom: 10px; }
.fa-provs .pv {
  width: 24px; height: 24px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.fa-provs .pv svg { width: 14px; height: 14px; }
.fa-dots { display: flex; gap: 4px; justify-content: center; }
.fa-dots i { width: 5px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.2); transition: all 0.3s; }
.fa-dots i.on { width: 14px; background: var(--green); }

/* terminal — paleta e posição do original */
.terminal-card {
  position: absolute;
  left: -90px;
  bottom: -110px;
  width: 323px;
  background: #1a1f2e;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  font-size: 10.5px;
  z-index: 2;
}
.terminal-head {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8; font-size: 10px; font-weight: 600;
}
.win-dots { display: flex; gap: 5px; align-items: center; }
.win-dots i { width: 8px; height: 8px; border-radius: 50%; display: block; }
.win-dots i:nth-child(1) { background: #ff5f57; }
.win-dots i:nth-child(2) { background: #febc2e; }
.win-dots i:nth-child(3) { background: #28c840; }
.term-pill {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(59, 185, 139, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px; font-weight: 500;
  padding: 5px 11px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.term-pill svg { width: 10px; height: 10px; color: var(--green); }
.terminal-body {
  padding: 11px 13px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  overflow-x: auto;
}
.terminal-body .tk-cmd { color: rgba(255, 255, 255, 0.9); }
.terminal-body .tk-flag { color: #c678dd; }
.terminal-body .tk-str { color: #98c379; }
.terminal-body .tk-dim { color: rgba(255, 255, 255, 0.4); }

/* --- faixa de clientes DENTRO da banda escura --- */
.trust-band { margin-top: 110px; text-align: center; }
.trust-band > p {
  font-size: 20.8px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
  margin-bottom: 36px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  justify-content: center;
  column-gap: 72px;
  row-gap: 36px;
}
.client-logo {
  height: 58px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--white);
  opacity: 0.75;
  font-weight: 800; font-size: 22px; letter-spacing: -0.4px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.client-logo:hover { opacity: 1; }
.client-logo .lg-mark { width: 20px; height: 20px; border-radius: 6px; background: rgba(255, 255, 255, 0.85); display: inline-block; }
.client-logo.serif { font-family: Georgia, serif; font-weight: 700; }
.client-logo.mono { font-family: Consolas, monospace; font-weight: 600; letter-spacing: 0; font-size: 19px; }
.client-logo.caps { text-transform: uppercase; font-size: 17px; letter-spacing: 0.12em; }

/* ------------------------------------------------------------------ */
/* Cabeçalhos de seção                                                 */
/* ------------------------------------------------------------------ */
.section { padding: 80px 20px; background: var(--bg-soft); }
.section-head { text-align: center; max-width: var(--content); margin: 0 auto 56px; }
.section-head h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-head p { font-size: 16px; line-height: 1.6; color: var(--navy); }

/* ------------------------------------------------------------------ */
/* Seção APIs (fundo branco, 4 colunas, fileira de provedores)         */
/* ------------------------------------------------------------------ */
.section-apis { background: var(--white); padding: 80px 20px; }
.apis-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 20px; flex-wrap: wrap;
  margin: 0 auto 50px;
}
.apis-logos .pv { width: 36px; height: 36px; }
.apis-logos .pv svg { width: 36px; height: 36px; }

.api-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.api-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.api-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); border-color: rgba(221, 223, 76, 0.8); }
.api-card .mock {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 40px 0 0 28px;
  height: 210px;
  overflow: hidden;
  position: relative;
}
.mini-window {
  background: var(--white);
  border: 0;
  border-radius: 10px 0 0 0;
  box-shadow: rgba(0, 0, 0, 0.04) -2px -2px 12px;
  height: 100%;
  overflow: hidden;
}
.mini-head {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  font-size: 11px; font-weight: 700;
}
.mini-tabs {
  display: flex; gap: 14px;
  padding: 0 12px 6px;
  border-bottom: 1px solid #f5f7fa;
  color: var(--muted-2); font-weight: 500; font-size: 10.5px;
}
.mini-tabs .on { color: var(--ink); font-weight: 700; }
.mini-body { padding: 8px 12px; }

.pill {
  display: inline-block; font-size: 9.5px; font-weight: 600;
  padding: 3px 8px; border-radius: 3px; letter-spacing: 0.03em;
}
.pill-post { background: #dbeafe; color: #2563eb; }
.pill-get { background: #d1fae5; color: #059669; }
.action-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 6px 2px;
  border-bottom: 1px solid #f8fafc;
  font-size: 10.5px; font-weight: 500;
}
.action-row:last-child { border-bottom: 0; }
.action-row .a-ic { width: 16px; height: 16px; flex-shrink: 0; }
.action-row .a-ic svg { width: 16px; height: 16px; }
.action-row span:first-of-type { flex: 1; }

.inbox-row { display: flex; align-items: center; gap: 8px; padding: 6px 2px; border-bottom: 1px solid #f8fafc; }
.inbox-row:last-child { border: 0; }
.inbox-row .who { font-size: 10.5px; font-weight: 700; }
.inbox-row .preview { font-size: 9.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px; }
.inbox-row .p-ic { margin-left: auto; }
.inbox-row .p-ic svg { width: 13px; height: 13px; }

.chat-filters { display: flex; gap: 5px; margin: 4px 0 8px; flex-wrap: wrap; }
.chat-filter {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--bg-soft-2); border-radius: 999px; padding: 3px 8px;
}
.chat-filter.on { border-color: var(--blue); color: var(--blue); }
.chat-filter svg { width: 10px; height: 10px; }
.chat-band { font-size: 8px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted-2); margin: 4px 0 6px; text-transform: uppercase; }
.bubble {
  max-width: 88%; font-size: 9.5px; line-height: 1.45;
  padding: 6px 9px; border-radius: 9px; margin-bottom: 6px;
  background: var(--bg-soft-2);
  border-bottom-left-radius: 3px;
}
.bubble.out { background: #0a66c2; color: #fff; margin-left: auto; border-bottom-left-radius: 9px; border-bottom-right-radius: 3px; }

.cal-head { font-size: 10.5px; font-weight: 700; padding: 2px 2px 8px; }
.cal-row { display: flex; gap: 7px; align-items: stretch; margin-bottom: 5px; }
.cal-time { font-size: 8.5px; color: var(--muted-2); width: 42px; padding-top: 4px; flex-shrink: 0; }
.cal-event {
  flex: 1; font-size: 9.5px; font-weight: 600;
  padding: 5px 8px; border-radius: 6px;
  border-left: 2px solid;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  white-space: nowrap; overflow: hidden;
}
.cal-event svg { width: 11px; height: 11px; flex-shrink: 0; }
.cal-event.e-b { background: #eff6ff; border-color: #3b82f6; color: #1d4ed8; }
.cal-event.e-g { background: #f0fdf4; border-color: #22c55e; color: #15803d; }
.cal-event.e-y { background: #fefce8; border-color: #eab308; color: #a16207; }
.cal-event.e-p { background: #faf5ff; border-color: #a855f7; color: #7e22ce; }

.api-info { padding: 24px; }
.card-icons { display: flex; gap: 8px; margin-bottom: 16px; }
.card-icons .pv { width: 28px; height: 28px; }
.card-icons .pv svg { width: 28px; height: 28px; }
.api-card h3 {
  font-size: 18.4px; font-weight: 700; letter-spacing: 0.184px;
  line-height: 1.3; color: var(--ink); margin-bottom: 8px;
}
.api-card p { font-size: 14.4px; line-height: 1.6; color: var(--muted); margin-bottom: 14px; }
.link-arrow {
  font-size: 13.6px; font-weight: 500; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.15s; }
.link-arrow:hover { color: var(--navy); }
.link-arrow:hover svg { transform: translateX(3px); }
.mini-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}
.mini-avatar.sm { width: 22px; height: 22px; font-size: 8.5px; }
.mini-avatar.av-p { background: linear-gradient(135deg, #ec4899, #db2777); }
.mini-avatar.av-g { background: linear-gradient(135deg, #10b981, #059669); }
.mini-avatar.av-o { background: linear-gradient(135deg, #f59e0b, #f97316); }

/* ------------------------------------------------------------------ */
/* Seção divulgação — lista interativa + mockup único                  */
/* ------------------------------------------------------------------ */
.outreach-grid {
  display: grid;
  grid-template-columns: minmax(0, 525px) minmax(0, 525px);
  gap: 60px;
  justify-content: center;
  align-items: start;
}
.up-cards-list { display: grid; gap: 14px; }
.up-card {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-align: left;
  width: 100%;
  display: block;
}
.up-card h3 {
  font-size: 20px; font-weight: 600; line-height: 1.3;
  color: var(--ink);
}
.up-card p {
  font-size: 14.4px; line-height: 1.6; color: var(--muted);
  margin-top: 10px;
  display: none;
}
.up-card.on {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.up-card.on p { display: block; }

.mockup-stage { position: relative; }
.mock-slide { display: none; }
.mock-slide.on { display: block; animation: faFade 0.4s ease; }
.mockup-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: 22px;
  min-height: 480px;
}
.mock-app-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted-2); text-transform: uppercase; margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.mock-app-label .btn { padding: 6px 12px; font-size: 11px; }
.search-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.filter-tag {
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: var(--bg-soft-2); border-radius: 999px; padding: 5px 12px;
}
.result-count { font-size: 12px; color: var(--muted-2); margin-bottom: 10px; }
.person-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 10px; margin-bottom: 4px;
}
.person-row.alt { background: var(--bg-soft); }
.person-row .p-info { flex: 1; min-width: 0; }
.person-row .p-name { font-size: 13.5px; font-weight: 700; }
.person-row .p-title { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 10.5px; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.avatar.av-g { background: linear-gradient(135deg, #10b981, #059669); }
.avatar.av-o { background: linear-gradient(135deg, #f59e0b, #f97316); }
.avatar.av-b { background: linear-gradient(135deg, #0ea5e9, #2563eb); }
.avatar.av-p { background: linear-gradient(135deg, #ec4899, #db2777); }
.tag-enriched {
  font-size: 10.5px; font-weight: 700; color: #15803d;
  background: #dcfce7; padding: 3px 9px; border-radius: 999px;
}
.mock-footer-cta {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--bg-soft-2);
  font-size: 12.5px; color: var(--muted);
  flex-wrap: wrap;
}
.mock-footer-cta .btn { padding: 8px 16px; font-size: 12.5px; }

.seq-step { display: flex; gap: 14px; position: relative; padding-bottom: 22px; }
.seq-step::before {
  content: ""; position: absolute; left: 17px; top: 38px; bottom: 0;
  width: 2px; background: var(--bg-soft-2);
}
.seq-step:last-child { padding-bottom: 0; }
.seq-step:last-child::before { display: none; }
.seq-ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; z-index: 1; background: var(--bg-soft);
}
.seq-ico svg { width: 18px; height: 18px; }
.seq-info { flex: 1; }
.seq-info .s-title { font-size: 14px; font-weight: 700; }
.seq-info .s-when { font-size: 12px; color: var(--muted-2); }
.seq-status {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  align-self: center;
}
.st-ok { background: #dcfce7; color: #15803d; }
.st-open { background: #e0f2fe; color: #0369a1; }
.st-sched { background: #fef9c3; color: #a16207; }
.st-wait { background: var(--bg-soft-2); color: var(--muted); }

.inbox-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.inbox-tab {
  font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: var(--bg-soft-2); color: var(--muted);
  display: inline-flex; gap: 6px; align-items: center;
}
.inbox-tab.on { background: var(--navy); color: #fff; }

/* ------------------------------------------------------------------ */
/* Tabela de endpoints                                                 */
/* ------------------------------------------------------------------ */
.endpoints-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  max-width: 1080px;
  margin: 0 auto;
}
.et-head, .et-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 500px) minmax(0, 280px);
  justify-content: space-between;
  gap: 20px;
}
.et-head {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.6px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 16px 24px;
}
.et-row { padding: 24px; border-bottom: 1px solid #f1f5f9; align-items: start; }
.et-row:last-child { border-bottom: 0; }
.et-type { font-size: 17px; font-weight: 500; color: var(--gray-6); }
.et-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.et-chip {
  font-size: 13.12px; font-weight: 500;
  background: #f1f5f9; border: 0;
  padding: 6px 12px; border-radius: 6px; color: #475569;
}
.et-chip.more {
  background: transparent; color: var(--green);
  border: 1px dashed #cbd5e1; font-weight: 600;
}
.et-desc { font-size: 14.4px; font-weight: 500; color: var(--muted); line-height: 1.6; }

/* ------------------------------------------------------------------ */
/* Plataforma — bento grid claro                                       */
/* ------------------------------------------------------------------ */
.section-platform { background: var(--bg-soft); padding: 100px 20px; }
.section-platform .section-head h2 { font-size: 42px; line-height: 1.2; color: var(--navy); }
.section-platform .section-head p { font-size: 18px; color: #383838; line-height: 1.6; }

.stats-row { display: flex; justify-content: center; gap: 64px; margin: 0 auto 26px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--green); line-height: 1.2; }
.stat .lbl { font-size: 13.6px; font-weight: 500; color: var(--gray-6); }
.tag-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 60px; flex-wrap: wrap; }
.tag-white {
  background: var(--white); color: var(--navy);
  font-size: 12px; font-weight: 700;
  padding: 10px 14px; border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(15, 39, 54, 0.06);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  min-width: 0;
}
.bento-large { grid-column: span 8; }
.bento-medium { grid-column: span 4; }
.bento-wide { grid-column: span 6; }
.bento-card .dc-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.bento-card h3 { font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.bento-card > p { font-size: 14.4px; font-weight: 500; color: var(--gray-6); line-height: 1.6; margin-bottom: 18px; }

.code-block {
  background: #0b1220;
  border-radius: 12px;
  padding: 18px 20px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.75;
  color: #cbd5e1;
  overflow-x: auto;
}
.code-block .c-comment { color: #64748b; }
.code-block .c-key { color: #7dd3fc; }
.code-block .c-str { color: #98c379; }
.code-block .c-kw { color: #c678dd; }

.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: center; font-size: 14.4px; font-weight: 500; color: var(--ink); }
.check-list .ck {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: #dcfce7; color: #15803d;
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}

.vs-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.vs-col { border-radius: 12px; padding: 18px; }
.vs-col.bad { background: #fef2f2; border: 1px solid #fecaca; }
.vs-col.good { background: #f0fdf4; border: 1px solid #bbf7d0; }
.vs-col h4 { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; margin-bottom: 12px; }
.vs-col.bad h4 { color: #dc2626; }
.vs-col.good h4 { color: #15803d; }
.vs-col li { font-size: 13.5px; color: var(--ink); padding: 5px 0; display: flex; gap: 8px; align-items: baseline; }
.vs-col.bad li::before { content: "✕"; color: #ef4444; font-size: 11px; }
.vs-col.good li::before { content: "✓"; color: #16a34a; font-size: 12px; }

.resource-links { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; max-width: 1160px; margin: 24px auto 0; }
.resource-link {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.resource-link:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.resource-link b { display: block; font-size: 14.5px; margin-bottom: 3px; color: var(--navy); }
.resource-link span { font-size: 12.5px; color: var(--muted); }

/* ------------------------------------------------------------------ */
/* Dashboard                                                           */
/* ------------------------------------------------------------------ */
.section-dash .kicker { color: var(--green); }
.dash-wrap { position: relative; max-width: 1044px; margin: 0 auto 40px; }
.dashboard-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.dash-crumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 500; }
.dash-crumb b { color: var(--ink); }
.dash-toplinks { display: flex; gap: 18px; font-size: 13px; color: var(--muted); font-weight: 500; }
.dash-user {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-size: 11.5px; font-weight: 700;
}
.dash-body { display: grid; grid-template-columns: 200px minmax(0, 1fr); min-height: 480px; }
.dash-side { border-right: 1px solid var(--border); padding: 18px 12px; background: var(--bg-soft); }
.dash-side a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  padding: 9px 12px; border-radius: 9px; margin-bottom: 2px;
}
.dash-side a.active { background: var(--white); color: var(--navy); font-weight: 700; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.dash-side svg { width: 16px; height: 16px; }
.dash-main { padding: 22px 24px; }
.dash-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head-row .dash-title { font-family: var(--font-head); font-size: 22.4px; font-weight: 700; color: var(--navy); }
.dash-counters { display: flex; gap: 22px; margin-bottom: 14px; flex-wrap: wrap; border-bottom: 1px solid var(--bg-soft-2); padding-bottom: 12px; }
.dash-counter { font-size: 12px; color: var(--muted); font-weight: 500; display: inline-flex; gap: 6px; align-items: baseline; }
.dash-counter b { font-size: 12px; font-weight: 600; color: var(--green); }
.dash-filters { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.dash-filter {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px;
  background: var(--white);
}
.dash-filter.on { background: var(--navy); color: #fff; border-color: var(--navy); }

.acc-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.acc-table th {
  text-align: left; font-size: 12px; font-weight: 600;
  color: var(--muted);
  padding: 10px 12px; border-bottom: 1px solid var(--border);
}
.acc-table td { padding: 15px 12px; border-bottom: 1px solid var(--bg-soft-2); }
.acc-table .cell-name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.acc-table .prov-ico { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; flex-shrink: 0; }
.prov-ico svg { width: 14px; height: 14px; }
.prov-ico.p-li { background: #e8f1fb; color: #0a66c2; }
.prov-ico.p-wa { background: #e7f9ee; color: #25d366; }
.prov-ico.p-gm { background: #fdeaea; color: #ea4335; }
.prov-ico.p-ig { background: #fce7f3; color: #db2777; }
.acc-table .mono { font-family: Consolas, monospace; font-size: 12px; color: var(--green); }
.status-ok { font-size: 12px; font-weight: 500; color: #34a853; }
.cell-linked { line-height: 1.4; }
.cell-linked .lk-lbl { display: block; font-size: 11.2px; color: var(--muted-2); }
.cell-linked .lk-date { font-size: 12px; color: var(--green); }
.dash-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.connect-modal {
  position: absolute;
  right: -16px;
  bottom: -34px;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  padding: 22px;
  z-index: 3;
}
.connect-modal .cm-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.cm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.cm-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 4px; font-size: 10.5px; font-weight: 600; color: var(--muted);
  text-align: center;
}
.cm-item:hover { border-color: var(--navy); color: var(--navy); }
.cm-item svg { width: 20px; height: 20px; }
.cm-actions .btn { width: 100%; padding: 12px; font-size: 14.4px; border-radius: 10px; }

/* ------------------------------------------------------------------ */
/* Comparativo construir × comprar (banda escura)                      */
/* ------------------------------------------------------------------ */
.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: 100px 20px;
}
.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.75); }

.compare-table {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 32px;
  max-width: 1080px;
}
.cmp-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cmp-row:first-child { border-top: 0; background: rgba(255, 255, 255, 0.06); }
.cmp-cell { padding: 18px 24px; font-size: 15px; }
.cmp-row:first-child .cmp-cell {
  font-family: var(--font-head);
  font-size: 22.4px; font-weight: 700; text-align: center;
}
.cmp-row:first-child .cmp-head-build { color: var(--muted-2); }
.cmp-row:first-child .cmp-head-buy { color: var(--yellow); background: transparent; }
.cmp-cell.crit { font-weight: 700; color: rgba(255, 255, 255, 0.92); }
.cmp-cell.build { color: rgba(255, 255, 255, 0.6); display: flex; gap: 10px; align-items: baseline; }
.cmp-cell.build::before { content: "✕"; color: #ea4335; font-size: 13px; flex-shrink: 0; }
.cmp-cell.buy { color: var(--white); font-weight: 600; background: rgba(59, 185, 139, 0.08); display: flex; gap: 10px; align-items: baseline; }
.cmp-cell.buy::before { content: "✓"; color: var(--green); font-size: 14px; flex-shrink: 0; }

.time-saved-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  flex-wrap: wrap;
  max-width: 1080px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 32px;
}
.tsb-stat .big { font-family: var(--font-head); font-size: 28.8px; font-weight: 700; color: var(--white); line-height: 1.2; }
.tsb-stat p { font-size: 14px; color: rgba(255, 255, 255, 0.7); }
.time-saved-bar .btn { padding: 17px 36px; font-size: 16px; }

/* ------------------------------------------------------------------ */
/* Quick start (banda escura)                                          */
/* ------------------------------------------------------------------ */
.section-quickstart { background: var(--navy); color: var(--white); padding: 90px 20px; }
.quickstart-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 64px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.quickstart-grid > * { min-width: 0; }
.qs-copy h2 {
  font-size: 38.4px; font-weight: 700; line-height: 1.25;
  color: var(--white); margin-bottom: 30px;
}
.steps { display: grid; gap: 22px; margin-bottom: 32px; }
.step { display: flex; gap: 16px; align-items: baseline; }
.step-num { color: var(--yellow); font-size: 16px; font-weight: 700; flex-shrink: 0; }
.step b { display: block; font-size: 16.8px; font-weight: 700; color: var(--white); }
.step span { font-size: 14.5px; color: rgba(255, 255, 255, 0.7); }
.qs-visual { position: relative; }
.qs-visual .terminal-card { position: static; width: 100%; font-size: 13px; }
.qs-visual .terminal-head { font-size: 12px; padding: 12px 16px; }
.qs-visual .terminal-body { padding: 16px 18px; }
.badge-2days {
  position: absolute; top: -20px; right: 18px; z-index: 2;
  background: var(--yellow); color: var(--navy);
  border-radius: 12px; padding: 12px 18px; text-align: center;
  font-weight: 800; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transform: rotate(3deg);
}
.badge-2days .b1 { font-size: 20px; letter-spacing: -0.5px; display: block; line-height: 1.1; }
.badge-2days .b2 { font-size: 10.5px; letter-spacing: 0.12em; }

/* ------------------------------------------------------------------ */
/* Segurança                                                           */
/* ------------------------------------------------------------------ */
.security { background: var(--bg-soft); }
.security .section-head h2 { font-size: 38px; }
.sec-link { color: var(--green); font-size: 14px; font-weight: 600; text-decoration: underline; }
.sec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.sec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.sec-card .sc-ico {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 14px; background: var(--bg-soft-2); color: var(--navy);
  display: grid; place-items: center;
}
.sec-card .sc-ico svg { width: 26px; height: 26px; }
.sec-card .sc-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); }
.sec-card .sc-title.big { font-size: 36px; color: var(--green); }
.sec-card .sc-sub {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em;
  color: var(--green); text-transform: uppercase; margin-bottom: 10px;
}
.sec-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  text-align: left;
  font-size: 17.6px; font-weight: 600; color: var(--navy);
}
.faq-q .q-num { font-size: 11.2px; font-weight: 600; color: var(--green); font-variant-numeric: tabular-nums; }
.faq-q .q-toggle {
  margin-left: auto; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-size: 16px; color: var(--muted);
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .q-toggle { transform: rotate(45deg); background: var(--navy); color: #fff; border-color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 26px 24px 70px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-a-inner a { color: var(--navy); font-weight: 600; text-decoration: underline; }
.faq-a-inner table { border-collapse: collapse; margin-top: 12px; font-size: 14px; }
.faq-a-inner td { border: 1px solid var(--border); padding: 8px 14px; }
.faq-cta { text-align: center; margin-top: 44px; }
.faq-cta p { color: var(--muted); margin-bottom: 16px; }

/* ------------------------------------------------------------------ */
/* Banda CTA final "Vamos integrar em 2 dias"                          */
/* ------------------------------------------------------------------ */
.footer-cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 72px 20px;
}
.fcta-top {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 48px;
  align-items: center;
  max-width: 1160px; margin: 0 auto 48px;
}
.fcta-top h2 {
  font-size: 48px; font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 28px;
}
.fcta-top h2 .y { color: var(--yellow); }
.video-thumb {
  position: relative; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #123c58, #0b1f2e);
  aspect-ratio: 16 / 9;
  max-width: 560px;
  display: grid; place-items: center;
  justify-self: end;
  width: 100%;
}
.play-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--yellow); color: var(--navy);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.fcta-guides {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 48px;
  max-width: 1160px; margin: 0 auto;
}
.fcta-guides a {
  font-size: 17px; font-weight: 500; color: rgba(255, 255, 255, 0.85);
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fcta-guides a:hover { color: var(--yellow); }

/* ------------------------------------------------------------------ */
/* Footer (banda navy)                                                 */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--navy-2); color: var(--white); padding: 70px 20px 0; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  max-width: 1160px; margin: 0 auto 48px;
  flex-wrap: wrap;
}
.footer-top .logo { color: var(--white); }
.footer-top .brand-blurb { font-size: 14px; color: rgba(255, 255, 255, 0.6); max-width: 280px; margin-top: 14px; }
.community-card {
  border: 0.8px solid rgba(59, 185, 139, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 380px;
}
.community-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.community-card p { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-bottom: 12px; }
.community-card a { color: var(--green); font-size: 13.6px; font-weight: 600; }
.community-card a:hover { text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  max-width: 1160px; margin: 0 auto;
  padding-bottom: 56px;
}
.footer-col .fc-h {
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 13.6px; color: var(--white);
  padding: 3px 0; font-weight: 500; line-height: 1.9;
  opacity: 0.92;
}
.footer-col a:hover { opacity: 1; color: var(--yellow); }
.soc-links { display: flex; gap: 10px; margin-top: 18px; }
.soc-links a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.8);
  display: grid; place-items: center;
}
.soc-links a:hover { background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
.soc-links svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13.6px; color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--yellow); }

/* ------------------------------------------------------------------ */
/* Widgets fixos                                                       */
/* ------------------------------------------------------------------ */
.lang-float {
  position: fixed; left: 126px; bottom: 0; z-index: 95;
  display: inline-flex; align-items: center; gap: 9px;
  background: #1e1e1e; color: var(--white);
  border-radius: 8px 8px 0 0;
  padding: 17px 24px; font-weight: 600; font-size: 14.5px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}
.lang-float svg { width: 21px; height: 15px; border-radius: 2px; }
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: #10222e; color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s;
}
.chat-fab:hover { transform: scale(1.06); }
.chat-fab svg { width: 25px; height: 25px; }

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

/* ------------------------------------------------------------------ */
/* Responsivo                                                          */
/* ------------------------------------------------------------------ */
@media (max-width: 1220px) {
  .api-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; }
  .bento-large, .bento-medium, .bento-wide { grid-column: span 12; }
  .resource-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #0d141a;
    flex-direction: column; align-items: stretch;
    padding: 16px; gap: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .nav-item .mega {
    position: static; min-width: 0; max-width: none; box-shadow: none;
    background: rgba(255, 255, 255, 0.04); color: #fff;
    flex-direction: column; gap: 16px; margin-top: 4px;
  }
  .mega-col a { color: rgba(255, 255, 255, 0.85); }
  .mega-col a:hover { background: rgba(255, 255, 255, 0.08); }
  .mega-col a span { color: rgba(255, 255, 255, 0.5); }
  .nav-toggle { display: block; margin-left: auto; }
  .header-actions .login { display: none; }

  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero h1 { font-size: 38px; }
  .hero-visual { min-height: 0; margin-top: 24px; padding-top: 0; }
  .hero-stack { width: 100%; max-width: 420px; }
  .app-window { width: 100%; }
  .float-api { display: none; }
  .terminal-card { position: static; width: 100%; margin-top: 20px; left: auto; bottom: auto; }
  .trust-band { margin-top: 70px; }
  .clients-grid { grid-template-columns: repeat(2, 160px); column-gap: 40px; row-gap: 20px; }
  .client-logo { height: 44px; font-size: 18px; }

  .outreach-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; max-width: 560px; margin: 0 auto; }
  .quickstart-grid { grid-template-columns: minmax(0, 1fr); }
  .et-head { display: none; }
  .et-row { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .dash-body { grid-template-columns: minmax(0, 1fr); }
  .dash-side { display: flex; overflow-x: auto; gap: 4px; border-right: 0; border-bottom: 1px solid var(--border); }
  .dash-side a { white-space: nowrap; }
  .connect-modal { position: static; width: 100%; max-width: 420px; margin: 24px auto 0; }
  .fcta-top { grid-template-columns: minmax(0, 1fr); }
  .fcta-top h2 { font-size: 38px; }
  .video-thumb { justify-self: start; }
  .section-platform .section-head h2 { font-size: 32px; }
  .time-saved-bar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero h1 { font-size: 31px; letter-spacing: -0.6px; }
  .section, .section-apis { padding: 60px 16px; }
  .section-dark, .section-platform, .section-quickstart { padding: 60px 16px; }
  .section-head h2, .qs-copy h2 { font-size: 27px; }
  .section-dark .section-head h2 { font-size: 28px; }
  .api-grid { grid-template-columns: minmax(0, 1fr); max-width: 400px; }
  .sec-grid, .vs-cols { grid-template-columns: minmax(0, 1fr); }
  .resource-links { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fcta-guides { grid-template-columns: minmax(0, 1fr); }
  .cmp-row { grid-template-columns: minmax(0, 1fr); }
  .cmp-cell { padding: 12px 20px; }
  .cmp-cell.crit { background: rgba(255, 255, 255, 0.06); font-size: 13px; }
  .cmp-cell.crit:empty { display: none; }
  .cmp-row:first-child .cmp-cell { font-size: 18px; text-align: left; }
  .faq-a-inner { padding-left: 26px; }
  .acc-table .col-id, .acc-table .col-linked { display: none; }
  .dash-toplinks { display: none; }
  .dash-main { overflow-x: auto; }
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .time-saved-bar { padding: 22px 20px; }
  .time-saved-bar .btn { white-space: normal; width: 100%; padding: 14px 20px; }
  .tsb-stat .big { font-size: 24px; }
  .lang-float { left: 12px; padding: 12px 18px; }
  .chat-fab { right: 12px; bottom: 12px; width: 50px; height: 50px; }
  .footer-top { flex-direction: column; }
}

/* ==========================================================================
   Secao de preco (#assinar)
   ========================================================================== */

.section-price { background: var(--bg-soft); }

.price-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.price-currency { font-size: 28px; font-weight: 600; color: var(--muted); }
.price-value {
  font-family: var(--font-head);
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.price-period { font-size: 17px; color: var(--muted); margin-left: 4px; }

.price-list {
  list-style: none;
  text-align: left;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.price-list li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  color: var(--ink);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 12px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

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

.price-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .price-card { padding: 32px 24px; }
  .price-value { font-size: 56px; }
}

/* ==========================================================================
   Checkout (modal)
   ========================================================================== */

/* :not([hidden]) e essencial: um `display` de autor vence o `display:none` que
   o navegador aplica ao atributo hidden, e o modal ficaria sempre aberto. */
.co-overlay:not([hidden]) {
  display: flex;
}

.co-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 39, 54, 0.6);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  overflow-y: auto;
}

.co-modal {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  padding: 36px 32px 32px;
  box-shadow: 0 20px 60px rgba(15, 39, 54, 0.3);
  margin: auto;
}

.co-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}
.co-close:hover { background: var(--bg-soft); color: var(--ink); }

.co-head { margin-bottom: 24px; }
.co-head h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.co-head p { font-size: 15px; color: var(--muted); line-height: 1.5; }

.co-field { display: block; margin-bottom: 16px; }
.co-field span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.co-field input {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}
.co-field input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15, 39, 54, 0.08);
}
.co-field input[aria-invalid="true"] { border-color: #dc2626; }

.co-erro {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.co-submit { width: 100%; justify-content: center; margin-top: 4px; }
.co-submit[disabled] { opacity: 0.6; cursor: progress; }

.co-legal {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 14px;
  text-align: center;
}

.co-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.co-qr img {
  width: 220px;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  background: var(--white);
}

.co-copia { display: flex; gap: 8px; }
.co-copia input {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  background: var(--bg-soft);
}
.co-copia .btn { flex-shrink: 0; }

.co-proximos {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.co-proximos strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}
.co-proximos ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}
.co-proximos li { font-size: 14px; color: var(--muted); line-height: 1.5; }

@media (max-width: 520px) {
  .co-modal { padding: 32px 20px 24px; }
  .co-qr img { width: 180px; height: 180px; }
}
