/* tekImob — landing page
   Paleta: navy #06153A · azul #1B6BF5 · tinta #0A1B3D · claro #F7F9FE */

:root {
  --navy: #06153A;
  --navy-2: #0B2E7A;
  --blue: #1B6BF5;
  --blue-soft: #8CC0FF;
  --ink: #0A1B3D;
  --text: #33415C;
  --muted: #5A6A87;
  --muted-2: #8494B0;
  --line: #E7EDF8;
  --paper: #FFFFFF;
  --paper-2: #F7F9FE;
  --radius: 14px;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, ol, figure, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy-2); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--ink); padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 860px; }
.center { text-align: center; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: background .18s, color .18s, border-color .18s;
  text-align: center; white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; font-weight: 800; border-radius: 12px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(27,107,245,.28); }
.btn-primary:hover { background: var(--navy-2); color: #fff; }
.btn-ghost { border-color: #C9DAF6; color: var(--navy-2); }
.btn-ghost:hover { background: #EEF4FF; color: var(--navy-2); }
.btn-light { background: #fff; color: var(--navy-2); box-shadow: 0 14px 34px rgba(3,12,38,.35); }
.btn-light:hover { background: var(--blue-soft); color: var(--navy); }
.btn-outline { border-color: rgba(10,27,61,.22); color: var(--ink); }
.btn-outline:hover { background: rgba(10,27,61,.06); color: var(--ink); }
.pricing .btn-outline, .final-cta .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.pricing .btn-outline:hover, .final-cta .btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- cabeçalho fixo ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; color: inherit; }
.brand:hover { color: inherit; }
.brand-mark {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  background: linear-gradient(140deg, var(--blue), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 20px; font-weight: 800; letter-spacing: -.6px; color: var(--ink); }
.brand-text strong em { font-style: normal; color: var(--blue); }
.brand-text small { font-size: 11px; font-weight: 600; color: var(--muted-2); }

.nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 500; }
.nav > a { color: #42526E; white-space: nowrap; }
.nav > a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(165deg, #06153A 0%, #0B2E7A 52%, #1257D6 100%);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: saturate(.75); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(6,21,58,.94) 0%, rgba(6,21,58,.78) 42%, rgba(11,46,122,.5) 100%); }
.hero-glow { position: absolute; top: -180px; right: -140px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(78,150,255,.45), transparent 62%); }
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(36px, 5vw, 64px); padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(64px, 8vw, 110px);
}
.pill-badge {
  display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--blue-soft);
}
.pill-badge::before {
  content: ""; width: 34px; height: 1.5px; border-radius: 2px;
  background: var(--blue-soft); opacity: .7;
}
.pill-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-soft); margin-left: -6px; }
.hero h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.75rem); line-height: 1.05; font-weight: 800;
  letter-spacing: -1.6px; text-wrap: pretty; margin-bottom: 20px;
}
.hero h1 span { color: var(--blue-soft); }
.lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.6; color: #C9DBFA; max-width: 520px; text-wrap: pretty; margin-bottom: 32px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14.5px; color: #B7CDF2; font-weight: 500; margin-top: 26px; }

/* mockups */
.mock { border-radius: 18px; padding: 12px; }
.mock-dark { background: var(--ink); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 40px 80px rgba(2,9,30,.55); }
.mock-light { background: #fff; border: 1px solid #E4EBF7; box-shadow: 0 26px 54px rgba(10,27,61,.12); border-radius: 16px; }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 4px 6px 12px; }
.mock-bar .d { width: 10px; height: 10px; border-radius: 50%; background: #E3E9F4; }
.mock-bar .red { background: #FF6058; } .mock-bar .yellow { background: #FFBD2E; } .mock-bar .green { background: #28CA41; }
.mock-bar span { margin-left: 10px; font-size: 12.5px; color: #7B93BD; font-weight: 500; }
.mock-bar.light span { flex: 1; margin-left: 4px; text-align: center; color: var(--muted); }
.mock-screen { position: relative; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.mock-screen img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.mock-screen img:not([src]) { display: none; }
.shot-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #8494B0; text-align: center; padding: 12px;
}
.dark-hint { color: #7B93BD; }
.mock-screen img[src] + .shot-hint { display: none; }
.ratio-16-10 { aspect-ratio: 16 / 10; }
.ratio-4-3 { aspect-ratio: 4 / 3; }

/* ---------- faixa de integrações ---------- */
.band { background: #fff; border-bottom: 1px solid #EEF2FA; padding: clamp(38px, 5vw, 58px) 0 clamp(38px, 5vw, 54px); }
.eyebrow { font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.eyebrow.muted { color: var(--muted); margin-bottom: 22px; }
.eyebrow.accent { color: var(--blue); }
.eyebrow.light { color: var(--blue-soft); }
.marquee {
  overflow: hidden; padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; width: max-content; gap: 12px; animation: marquee 26s linear infinite; }
.chip { border: 1px solid #E2E9F6; background: var(--paper-2); border-radius: 999px; padding: 11px 22px; font-size: 15.5px; font-weight: 700; color: var(--text); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.band-note { margin-top: 20px; font-size: 15.5px; color: var(--muted); max-width: 640px; margin-left: auto; margin-right: auto; text-wrap: pretty; }

/* ---------- seções ---------- */
.section { padding: clamp(58px, 7vw, 96px) 0; }
.section.alt { background: var(--paper-2); }
.section h2, .section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem); line-height: 1.12; font-weight: 800;
  letter-spacing: -1.1px; text-wrap: pretty; margin-bottom: 18px;
}
.body { font-size: 17px; line-height: 1.65; color: #4A5B78; max-width: 520px; text-wrap: pretty; margin-bottom: 26px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 60px); align-items: center; }
.split.reverse > div:first-child { order: 2; }
.section-head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .body { margin-left: auto; margin-right: auto; }
.note { margin-top: 14px; font-size: 14px; color: var(--muted); }

.checks { display: grid; gap: 14px; max-width: 520px; }
.checks li { position: relative; padding-left: 34px; font-size: 16px; color: var(--text); line-height: 1.5; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: #E3EDFF; color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800;
}
.checks b { color: var(--ink); }

.minicards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; max-width: 520px; }
.minicards > div { border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.minicards h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.minicards p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

.kanban {
  background: var(--paper-2); border: 1px solid #E4EBF7; border-radius: 16px; padding: 18px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px;
  box-shadow: 0 22px 48px rgba(10,27,61,.1);
}
.col-title { font-size: 12.5px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.kanban article { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; margin-bottom: 10px; }
.kanban article:last-child { margin-bottom: 0; }
.kanban article b { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.kanban article span { font-size: 13px; color: var(--muted); }
.kanban article.hot { background: var(--blue); border-color: var(--blue); color: #fff; }
.kanban article.hot span { color: #C9DBFA; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.steps li.dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.steps span { display: block; font-size: 13px; font-weight: 800; letter-spacing: 1px; color: #8CB6F5; margin-bottom: 14px; }
.steps h3 { font-size: 18px; font-weight: 800; letter-spacing: -.4px; margin-bottom: 8px; }
.steps p { font-size: 15px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
.steps li.dark p { color: #C0D5F5; }

/* ---------- planos ---------- */
.pricing { background: linear-gradient(180deg, #06153A 0%, #0B2E7A 100%); color: #fff; padding: clamp(58px, 7vw, 96px) 0; }
.pricing h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.1; font-weight: 800; letter-spacing: -1.2px; margin-bottom: 16px; text-wrap: pretty; }
.pricing .body.light { color: #C0D5F5; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 16px; align-items: stretch; }
.plan {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 16px;
  padding: 24px 20px; display: flex; flex-direction: column; gap: 14px;
}
.plan header { position: relative; }
.plan h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.plan header p { font-size: 13.5px; color: #A8C2EA; line-height: 1.45; }
.plan .price { font-size: 34px; font-weight: 800; letter-spacing: -1.2px; line-height: 1; font-variant-numeric: tabular-nums; }
.plan .price small { font-size: 15px; font-weight: 600; color: #A8C2EA; }
.plan .limit { font-size: 14.5px; font-weight: 700; color: var(--blue-soft); }
.plan ul { display: grid; gap: 9px; font-size: 14.5px; color: #D2E1F8; line-height: 1.45; }
.plan .btn { margin-top: auto; }
.plan.featured { background: #fff; color: var(--ink); border-color: var(--blue-soft); padding: 28px 22px; box-shadow: 0 26px 60px rgba(3,12,38,.45); }
.plan.featured header p { color: var(--muted); }
.plan.featured .price small { color: var(--muted); }
.plan.featured .limit { color: var(--blue); }
.plan.featured ul { color: var(--text); }
.plan .tag {
  position: absolute; top: 0; right: 0; background: var(--blue); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
}
.pricing-note { text-align: center; margin-top: 22px; font-size: 14.5px; color: #A8C2EA; }

/* ---------- tabela comparativa ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); margin-top: 26px; }
table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 15px; }
thead tr { background: var(--paper-2); }
th { padding: 16px 14px; font-weight: 800; color: var(--ink); border-bottom: 1px solid var(--line); text-align: center; }
th:first-child { text-align: left; padding-left: 18px; }
th.hi { color: var(--blue); }
td { padding: 15px 14px; text-align: center; color: var(--text); border-bottom: 1px solid #EEF2FA; }
td:first-child { text-align: left; padding-left: 18px; font-weight: 600; }
tbody tr:last-child td { border-bottom: none; }
td.hi { background: #F5F9FF; color: var(--ink); font-weight: 700; }
td.yes { color: var(--blue); font-weight: 800; }
td.no { color: var(--muted-2); }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; margin-top: 26px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; font-size: 16.5px; font-weight: 700; color: var(--ink); list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--blue); font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq summary:hover { background: var(--paper-2); }
.faq p { padding: 0 20px 20px; font-size: 16px; line-height: 1.6; color: #4A5B78; text-wrap: pretty; }

/* ---------- cta final ---------- */
.final-cta {
  background: linear-gradient(140deg, var(--navy-2), var(--blue)); border-radius: 20px; color: #fff;
  padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center;
}
.final-cta h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.12; letter-spacing: -1.1px; margin-bottom: 12px; }
.final-cta p { font-size: 17px; line-height: 1.6; color: #D8E6FB; text-wrap: pretty; }

/* ---------- botão flutuante da demo ---------- */
.demo-dock { position: fixed; inset: auto 0 24px 0; z-index: 70; display: flex; justify-content: center; padding: 0 18px; pointer-events: none; }
.demo-pill {
  pointer-events: auto; display: flex; align-items: stretch; max-width: 100%;
  background: var(--navy); border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  box-shadow: 0 18px 44px rgba(3,12,38,.4); overflow: hidden;
}
.demo-pill > a { display: inline-flex; align-items: center; gap: 12px; color: #fff; padding: 13px 12px 13px 16px; font-size: 15.5px; font-weight: 700; }
.demo-pill > a:hover { background: rgba(255,255,255,.08); color: #fff; }
.demo-pill .play { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.demo-text { display: flex; flex-direction: column; line-height: 1.25; width: max-content; }
.demo-text b { white-space: nowrap; }
.demo-text small { font-size: 12px; font-weight: 400; color: #A8C2EA; white-space: nowrap; }
.demo-min { flex: none; background: none; border: none; border-left: 1px solid rgba(255,255,255,.16); color: #A8C2EA; padding: 0 16px; cursor: pointer; font-size: 18px; font-family: inherit; }
.demo-min:hover { background: rgba(255,255,255,.08); color: #fff; }
.demo-fab {
  display: none; pointer-events: auto; width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy); border: 1px solid rgba(255,255,255,.18); color: #fff; cursor: pointer;
  align-items: center; justify-content: center; box-shadow: 0 14px 34px rgba(3,12,38,.38);
}
.demo-fab:hover { background: var(--blue); }
/* estado minimizado */
.demo-dock.min { justify-content: flex-start; padding-left: 22px; }
.demo-dock.min .demo-pill { display: none; }
.demo-dock.min .demo-fab { display: flex; }

/* ---------- rodapé ---------- */
.site-footer { background: var(--navy); color: #A8C2EA; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; padding-top: clamp(40px, 5vw, 60px); padding-bottom: 28px; }
.footer-brand { margin-bottom: 12px; }
.footer-brand strong { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.claim { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; max-width: 280px; }
.site-footer p { font-size: 14.5px; line-height: 1.6; }
.col-head { font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 700; color: #fff; margin-bottom: 12px; }
.site-footer ul { display: grid; gap: 9px; font-size: 14.5px; }
.site-footer a { color: #A8C2EA; }
.site-footer a:hover { color: #fff; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; padding-bottom: 96px; font-size: 13.5px;
}
.footer-base a { color: #fff; font-weight: 700; }

/* ---------- tablet ---------- */
@media (max-width: 1000px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 0; }
  .final-cta { grid-template-columns: 1fr; }
  .lede, .body, .checks, .minicards { max-width: none; }
}

/* ---------- menu mobile ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 8px 22px 18px;
    box-shadow: 0 20px 40px rgba(10,27,61,.12);
  }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .nav.open { display: flex; }
  .nav > a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 14px; }
  .nav-actions .btn { width: 100%; padding: 14px 20px; }
}

/* ---------- mobile ---------- */
@media (max-width: 620px) {
  .wrap { padding: 0 18px; }
  .hero h1 { letter-spacing: -1px; }
  .cta-row .btn { width: 100%; }
  .plan.featured { padding: 24px 20px; }
  .demo-dock { bottom: 16px; }
  .demo-text small { display: none; }
  .footer-base { padding-bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-video { display: none; }
}
