/* ============================================================
   AVEC Context — Site institucional (one-pager)
   Builds on the AVEC Context design system tokens.
   Marketing-tuned palette per the brand brief.
   ============================================================ */

:root {
  --mkt-ink:        #22323C;   /* títulos */
  --mkt-body:       #41505E;   /* corpo */
  --mkt-muted:      #6E808D;   /* legendas mono */
  --mkt-accent:     #3DC1D0;   /* turquesa primário */
  --mkt-accent-ink: #0E6C79;   /* turquesa escuro (texto/links sobre claro) */
  --mkt-accent-soft:#DCF2F5;
  --mkt-ground:     #EEF3F7;   /* fundo claro alternado */
  --mkt-paper:      #FFFFFF;
  --mkt-line:       #D9E4EB;   /* hairlines */
  --mkt-line-soft:  #E9F0F4;
  --mkt-deep:       #0E2A31;   /* seção escura */
  --mkt-deep-2:     #0A2027;
  --mkt-deep-line:  rgba(160,201,208,.20);
  --mkt-deep-mut:   #9BB8BE;
  --mkt-danger:     #C0453B;
  --mkt-maxw:       1160px;
  --mkt-sh-sm:      0 1px 2px rgba(30,42,56,.05), 0 3px 10px rgba(30,42,56,.05);
  --mkt-sh-md:      0 12px 34px rgba(30,42,56,.12), 0 3px 8px rgba(30,42,56,.05);
  --mkt-sh-lg:      0 30px 60px rgba(20,48,58,.16), 0 8px 20px rgba(20,48,58,.08);
}

/* ---- page shell ---- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--mkt-paper);
  color: var(--mkt-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
#app-root { min-height: 100vh; }

.avec-site { position: relative; }
.avec-site img { max-width: 100%; display: block; }

.avec-site h1, .avec-site h2, .avec-site h3, .avec-site h4 {
  font-family: var(--font-display);
  color: var(--mkt-ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.avec-site p { margin: 0; }

.avec-site a { color: var(--mkt-accent-ink); text-decoration: none; }
.avec-site a:hover { color: #0a565f; }

.wrap { max-width: var(--mkt-maxw); margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px){ .wrap { padding: 0 20px; } }

/* Item de grid nasce com min-width:auto — um filho com white-space:nowrap
   (a URL no chrome do navegador) estica o track 1fr para além do container
   e vaza a página inteira. Deixar os itens encolherem resolve na raiz. */
.hero-grid > *, .feat > *, .build-grid > *, .cta-grid > *,
.prob-grid > *, .dif-grid > *, .aud-grid > *, .proof-grid > * { min-width: 0; }
.bframe-url .u { min-width: 0; }

/* ---- scroll progress (thin teal data-line) ---- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--mkt-accent), var(--mkt-accent-ink));
  z-index: 100; transition: width .08s linear;
}

/* ---- eyebrow: 3-bar data motif + mono label ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mkt-accent-ink);
  background: var(--mkt-accent-soft);
  padding: 7px 15px 7px 13px; border-radius: 999px;
}
.eyebrow .bars { display: block; width: 16px; height: 14px; flex: 0 0 auto; overflow: visible; }
.eyebrow .bars rect { transform-origin: left center; }
.eyebrow.on-deep { color: var(--mkt-accent); background: rgba(61,193,208,.14); }

/* animated draw of the bars on reveal */
.reveal .eyebrow .bars rect { transform: scaleX(0); transition: transform .5s var(--ease-out); }
.reveal .eyebrow .bars rect:nth-child(2){ transition-delay: .08s; }
.reveal .eyebrow .bars rect:nth-child(3){ transition-delay: .16s; }
.reveal.in .eyebrow .bars rect { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){
  .reveal .eyebrow .bars rect { transition: none; transform: scaleX(1); }
}

/* ---- source line (mono, echoes "Fonte dos dados") ---- */
.srcline {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .02em;
  color: var(--mkt-muted); display: inline-flex; align-items: center; gap: 9px;
}
.srcline .livedot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mkt-accent);
  flex: 0 0 auto; box-shadow: 0 0 0 3px rgba(61,193,208,.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
@media (prefers-reduced-motion: reduce){ .srcline .livedot { animation: none; } }

/* ---- section rhythm ---- */
.sec { padding: clamp(84px, 9vw, 116px) 0; position: relative; }
.sec.ground { background: var(--mkt-ground); }
.sec.tight { padding: clamp(56px, 6vw, 76px) 0; }
.sec-head { max-width: 780px; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 500; }
.sec-head .lead { margin-top: 20px; font-size: 1.15rem; color: var(--mkt-body); max-width: 66ch; }

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.80);
  backdrop-filter: saturate(1.15) blur(14px);
  -webkit-backdrop-filter: saturate(1.15) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { border-bottom-color: var(--mkt-line-soft); box-shadow: 0 1px 0 rgba(30,42,56,.02), 0 10px 30px -20px rgba(30,42,56,.4); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 24px; }
.nav-logo { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a { color: var(--mkt-body); font-size: 15px; font-weight: 500; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--mkt-accent); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease-out);
}
.nav-links a:hover { color: var(--mkt-ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 16px; align-items: center; }
.nav-enter {
  color: var(--mkt-accent-ink); font-size: 14.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 8px; border: 1.5px solid #A8E6ED;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.nav-enter:hover { color: var(--mkt-accent-ink); border-color: var(--mkt-accent); background: var(--mkt-accent-soft); }

/* ---- burger: the logo's 3-bar motif doubles as the menu icon ---- */
.nav-burger {
  display: none; position: relative; width: 44px; height: 44px; flex: 0 0 auto;
  margin-right: -8px; padding: 0; border: 0; background: transparent; cursor: pointer;
  border-radius: 10px; -webkit-tap-highlight-color: transparent;
}
.nav-burger:hover { background: var(--mkt-accent-soft); }
.nav-burger span {
  position: absolute; left: 12px; height: 2.5px; border-radius: 2px;
  background: var(--mkt-ink);
  transition: top .26s var(--ease-out), width .26s var(--ease-out),
              transform .26s var(--ease-out), opacity .18s ease;
}
.nav-burger span:nth-child(1){ top: 14px; width: 20px; }
.nav-burger span:nth-child(2){ top: 20.5px; width: 12px; }
.nav-burger span:nth-child(3){ top: 27px; width: 16px; }
.nav-burger.is-open span:nth-child(1){ top: 20.5px; width: 20px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity: 0; transform: scaleX(.2); }
.nav-burger.is-open span:nth-child(3){ top: 20.5px; width: 20px; transform: rotate(-45deg); }

/* ---- mobile drawer ---- */
.nav-backdrop {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  height: 100vh; height: 100dvh;   /* dvh: desconta a barra do navegador do celular */
  background: rgba(14,42,49,.46);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease-out), visibility 0s linear .28s;
}
.nav-backdrop.show { opacity: 1; visibility: visible; transition-delay: 0s; }

.nav-menu {
  position: fixed; top: 0; right: 0; z-index: 71;
  height: 100vh; height: 100dvh;
  width: min(86vw, 340px);
  display: flex; flex-direction: column;
  padding: 18px 22px calc(26px + env(safe-area-inset-bottom, 0px));
  background: var(--mkt-paper);
  border-left: 1px solid var(--mkt-line-soft);
  box-shadow: -24px 0 60px -20px rgba(14,42,49,.45);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transform: translateX(100%); visibility: hidden;
  transition: transform .3s var(--ease-out), visibility 0s linear .3s;
}
.nav-menu.open { transform: none; visibility: visible; transition-delay: 0s; }
@media (prefers-reduced-motion: reduce){
  .nav-backdrop, .nav-menu { transition-duration: 0s; }
}

.nav-menu-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-menu-k {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--mkt-muted);
}
.nav-close {
  width: 44px; height: 44px; margin-right: -10px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 0; background: transparent; border-radius: 10px; cursor: pointer;
  color: var(--mkt-body); -webkit-tap-highlight-color: transparent;
}
.nav-close:hover { background: var(--mkt-ground); color: var(--mkt-ink); }

.nav-menu-links { display: flex; flex-direction: column; margin-top: 14px; }
.nav-menu-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 56px; padding: 6px 2px;
  font-size: 1.08rem; font-weight: 500; color: var(--mkt-ink);
  border-bottom: 1px solid var(--mkt-line-soft);
}
.nav-menu-links a:hover { color: var(--mkt-accent-ink); }
.nav-menu-links .chev { color: var(--mkt-accent); font-size: 1.1rem; transition: transform .2s var(--ease-out); }
.nav-menu-links a:hover .chev { transform: translateX(3px); }

.nav-menu-foot { margin-top: 26px; display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.nav-menu-enter {
  display: flex; align-items: center; justify-content: center; min-height: 46px;
  font-size: 15px; font-weight: 600; color: var(--mkt-accent-ink);
  border: 1.5px solid #A8E6ED; border-radius: 10px;
}
.nav-menu-enter:hover { border-color: var(--mkt-accent); background: var(--mkt-accent-soft); }

@media (max-width: 900px){
  .nav-links { display: none; }
  .nav-enter { display: none; }
  .nav-burger { display: block; }
  .nav-cta { gap: 12px; }
}
@media (max-width: 560px){
  .nav-in { height: 64px; gap: 12px; }
  .nav-logo { height: 32px; }
  .nav-cta-btn { display: none; }   /* the CTA lives in the drawer */
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 82% -12%, rgba(61,193,208,.16), transparent 62%),
    linear-gradient(180deg, #F6FAFB 0%, #EEF3F7 100%);
  border-bottom: 1px solid var(--mkt-line-soft);
  padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 92px);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 480px) 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.35rem, 4.7vw, 3.4rem); font-weight: 300; margin: 22px 0 0; letter-spacing: -0.03em; line-height: 1.12; }
.hero h1 .accent { font-weight: 600; color: var(--mkt-accent-ink); }
.hero .sub { margin-top: 24px; font-size: 1.2rem; color: var(--mkt-body); max-width: 34ch; line-height: 1.6; }
.hero .sub strong { color: var(--mkt-accent-ink); font-weight: 600; }
.hero .sub-2 { margin-top: 14px; }
.hero .micro {
  margin-top: 26px; font-family: var(--font-mono); font-size: 14px; line-height: 1.55;
  color: var(--mkt-accent-ink); border-left: 2px solid var(--mkt-accent); padding: 2px 0 2px 14px; max-width: 42ch;
}
.hero-cta { margin-top: 34px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hero-see { font-weight: 600; font-size: 15px; color: var(--mkt-body); display: inline-flex; align-items: center; gap: 7px; }
.hero-see:hover { color: var(--mkt-accent-ink); }
.hero-see .arr { transition: transform .2s var(--ease-out); }
.hero-see:hover .arr { transform: translateY(2px); }

.shot {
  position: relative; border-radius: 16px; background: #fff;
  border: 1px solid var(--mkt-line); box-shadow: var(--mkt-sh-lg); overflow: hidden;
}
.shot::after { /* subtle top sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.5), transparent 12%);
}
.shot img { width: 100%; display: block; }

/* hero product figure — larger, layered, app chrome + trust chip */
.hero .hero-figure { position: relative; }
@media (min-width: 1180px){
  .hero .hero-figure { margin-right: calc((100vw - min(100vw, var(--mkt-maxw))) / -2 + 16px); }
}
/* explícito (e não só implícito) para que o preview de celular, que resolve
   as media queries por largura simulada, não herde o sangramento do desktop */
@media (max-width: 1179px){ .hero .hero-figure { margin-right: 0; } }
.hero .hero-figure .glow {
  position: absolute; inset: -16% -12% -22% -6%; z-index: 0; border-radius: 44px;
  background: radial-gradient(56% 60% at 64% 36%, rgba(61,193,208,.32), transparent 72%);
  filter: blur(14px);
}
.hero .appshot { position: relative; z-index: 1; border-radius: 16px; }
.hero .appbar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid var(--mkt-line-soft);
  background: linear-gradient(180deg, #FFFFFF, #F6FAFB);
}
.hero .appbar .bars { width: 15px; height: 13px; flex: 0 0 auto; }
.hero .appbar .appurl {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--mkt-muted);
  background: var(--mkt-ground); border: 1px solid var(--mkt-line-soft);
  border-radius: 999px; padding: 3px 12px;
}
.hero .appscreen { overflow: hidden; }
.hero .appscreen img { width: 100%; display: block; }
.hero .srcline { margin-top: 16px; }
@media (max-width: 900px){
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero .sub { max-width: none; }
  .hero .hero-figure .glow { inset: -8% -6% -10% -6%; }
}

/* ============================================================
   BROWSER FRAME — pitch-style product chrome
   ============================================================ */
.bframe { position: relative; z-index: 1; background: #fff; border: 1px solid var(--mkt-line); border-radius: 14px; overflow: hidden; box-shadow: var(--mkt-sh-lg); }
.bframe-bar { display: flex; align-items: center; gap: 14px; height: 44px; padding: 0 16px; background: linear-gradient(180deg, #F7FAFC, #F1F6F9); border-bottom: 1px solid var(--mkt-line-soft); }
.bframe-dots { display: flex; gap: 7px; flex: 0 0 auto; }
.bframe-dots span { width: 11px; height: 11px; border-radius: 50%; }
.bframe-dots span:nth-child(1){ background: #E5736B; }
.bframe-dots span:nth-child(2){ background: #E9B95E; }
.bframe-dots span:nth-child(3){ background: #74C08A; }
.bframe-url { flex: 1; min-width: 0; display: flex; align-items: center; gap: 8px; height: 28px; padding: 0 14px; background: #fff; border: 1px solid var(--mkt-line-soft); border-radius: 8px; }
.bframe-url svg { flex: 0 0 auto; color: #74C08A; }
.bframe-url .u { font-family: var(--font-mono); font-size: 12.5px; color: #7C8D9C; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bframe-url .path { color: #B8C4CE; }
.bframe-live { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .04em; color: var(--mkt-accent-ink); }
.bframe-live .livedot { width: 8px; height: 8px; border-radius: 50%; background: var(--mkt-accent); box-shadow: 0 0 0 3px rgba(61,193,208,.22); animation: pulse 2.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .bframe-live .livedot { animation: none; } }
.bframe-screen { position: relative; background: #fff; }
.bframe-screen img { width: 100%; display: block; }
.bframe-screen.clip { max-height: 520px; overflow: hidden; }
.bframe-screen.clip::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 66px; background: linear-gradient(rgba(255,255,255,0), #fff); pointer-events: none; }
.bframe-screen.scroll { overflow: hidden; }
.bframe-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 54px; background: linear-gradient(rgba(255,255,255,0), #fff); pointer-events: none; z-index: 2; }
.bframe-fade.dark { background: linear-gradient(rgba(83,87,90,0), #53575A); }
.bframe-screen.pdf { background: #53575A; }
.bframe-screen.pdf .pdfpages { display: flex; flex-direction: column; align-items: stretch; gap: 16px; padding: 20px 28px 34px; }
.bframe-screen.pdf .pdfpages img { width: 100%; height: auto; display: block; border-radius: 2px; box-shadow: 0 5px 18px rgba(0,0,0,.42); }
@media (max-width: 560px){ .bframe-live { display: none; } .bframe-bar { height: 40px; } }

/* ============================================================
   PROBLEMA — error cards
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.errcard .err-top { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.errcard .err-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--red-100); color: var(--red-700); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.errcard .tag { font-family: var(--font-mono); font-size: 12px; color: var(--mkt-danger); letter-spacing: .03em; font-weight: 500; }
.errcard h3 { font-size: 1.12rem; font-weight: 600; margin: 0 0 9px; }
.errcard p { font-size: .98rem; color: var(--mkt-body); margin-bottom: 18px; }
.errcard .err-out { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; color: var(--red-700); background: var(--red-100); border: 1px solid #F1CDCB; border-radius: 999px; padding: 4px 11px; }
.errcard code {
  font-family: var(--font-mono); font-size: .88em; background: var(--mkt-ground);
  padding: 1px 6px; border-radius: 5px; color: var(--mkt-ink); border: 1px solid var(--mkt-line-soft);
}
@media (max-width: 820px){ .prob-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PLATAFORMA — feature rows + acervo
   ============================================================ */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 60px; }
.feat.rev .feat-txt { order: 2; }
.feat-k { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--mkt-accent-ink); font-weight: 600; background: var(--mkt-accent-soft); padding: 6px 14px; border-radius: 999px; }
.feat-k::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.feat h3 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 500; margin: 12px 0 16px; }
.feat p { font-size: 1.08rem; color: var(--mkt-body); max-width: 46ch; }
.feat .feat-quote { color: var(--mkt-ink); font-weight: 500; }
.feat p strong { color: var(--mkt-accent-ink); font-weight: 600; }
.feat .feat-punch {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal-200); border-radius: 12px; padding: 11px 18px 11px 15px;
}
.feat .feat-punch svg { flex: 0 0 auto; }
.feat .shot img { max-height: 470px; object-fit: cover; object-position: top center; }
.feat .shotwrap { position: relative; }
@media (max-width: 900px){
  .feat { grid-template-columns: 1fr; gap: 28px; }
  .feat.rev .feat-txt { order: 0; }
  .feat p { max-width: none; }
}

.agente-meta { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px 22px; flex-wrap: wrap; }
.dl-link { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--mkt-accent-ink); }
.dl-link:hover { color: #0a565f; }
.dl-link svg { flex: 0 0 auto; }

.acervo { margin-top: 68px; }
.acervo .feat-k { color: var(--mkt-accent-ink); }
.acervo h3 { font-size: 1.28rem; font-weight: 500; margin: 12px 0 20px; color: var(--mkt-ink); max-width: 30ch; }
.chips { display: flex; flex-wrap: wrap; gap: 11px; }
.acervo .note { margin-top: 20px; }
.acervo-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--mkt-line-soft); }
.acervo-stat { display: flex; align-items: baseline; gap: 9px; }
.acervo-stat .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--mkt-accent-ink); line-height: 1; letter-spacing: -0.01em; }
.acervo-stat .lab { font-family: var(--font-mono); font-size: 12px; color: var(--mkt-muted); letter-spacing: .02em; }

/* ============================================================
   POR QUE FUNCIONA — differential cards
   ============================================================ */
.dif-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.dif .dificon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--mkt-accent-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.dif h3 { font-size: 1.16rem; font-weight: 600; margin: 0 0 10px; }
.dif p { color: var(--mkt-body); font-size: 1rem; }
@media (max-width: 760px){ .dif-grid { grid-template-columns: 1fr; } }

/* ============================================================
   EXEMPLOS REAIS — proof cards
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pcard { display: flex; flex-direction: column; overflow: hidden; }
.pcard .pimg { background: var(--mkt-ground); border-bottom: 1px solid var(--mkt-line-soft); aspect-ratio: 4/3.15; overflow: hidden; position: relative; }
.pcard .pimg img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .5s var(--ease-out); }
.pcard:hover .pimg img { transform: scale(1.03); }
.pcard .pbody { padding: 22px 24px 26px; }
.pcard .pk { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--mkt-accent-ink); font-weight: 500; }
.pcard h3 { font-size: 1.12rem; font-weight: 600; margin: 8px 0 0; }
.pcard p { font-size: .96rem; color: var(--mkt-body); margin-top: 10px; }
.disclaim { margin-top: 30px; font-family: var(--font-mono); font-size: 12px; color: var(--mkt-muted); display: flex; gap: 9px; align-items: flex-start; max-width: 76ch; line-height: 1.6; }
.disclaim svg { flex: 0 0 auto; margin-top: 2px; color: var(--mkt-muted); }
@media (max-width: 900px){ .proof-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* ============================================================
   PARA QUEM SERVE — audience cards (left teal border)
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
@media (min-width: 761px) {
  .aud-grid > .reveal:last-child:nth-child(odd) { grid-column: 1 / -1; display: flex; justify-content: center; }
  .aud-grid > .reveal:last-child:nth-child(odd) > * { width: calc(50% - 11px); }
}
.aud h3 { font-size: 1.14rem; font-weight: 600; margin: 0 0 9px; }
.aud p { font-size: 1rem; color: var(--mkt-body); }
@media (max-width: 760px){ .aud-grid { grid-template-columns: 1fr; } }

/* ============================================================
   OBJEÇÃO — dark section (pico)
   ============================================================ */
.deep {
  position: relative; color: #E6F1F2; overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% -5%, rgba(61,193,208,.14), transparent 58%),
    radial-gradient(700px 400px at 92% 108%, rgba(61,193,208,.08), transparent 60%),
    var(--mkt-deep);
}
.deep .eyebrow { color: var(--mkt-accent); }
.deep .obj { max-width: 1040px; }
.deep .q { font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 300; color: #fff; margin: 20px 0 0; letter-spacing: -0.02em; line-height: 1.14; }
.deep .obj p { color: #C6DCDE; font-size: 1.16rem; margin-top: 26px; max-width: 62ch; line-height: 1.62; }
.deep .punch { margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--mkt-deep-line); }
.deep .obj > .punch:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.deep .punch-line { display: flex; gap: 16px; align-items: flex-start; }
.deep .punch-line .bars { width: 28px; height: 25px; flex: 0 0 auto; margin-top: 7px; }
.deep .punch strong { display: block; font-family: var(--font-display); font-size: clamp(1.35rem, 2.7vw, 1.9rem); color: #fff; font-weight: 500; line-height: 1.24; letter-spacing: -0.01em; max-width: 46ch; }
.deep .punch .sig { margin-top: 16px; font-family: var(--font-mono); font-size: 13.5px; color: var(--mkt-accent); letter-spacing: .02em; }
.deep .obj .btnrow { margin-top: 28px; }
.sec.deep { padding-top: clamp(52px, 5vw, 72px); padding-bottom: clamp(52px, 5vw, 72px); }

/* ============================================================
   GARTNER band
   ============================================================ */
.gart-in { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.gart-badge {
  font-family: var(--font-mono); font-weight: 600; color: var(--mkt-ink); font-size: 13.5px; line-height: 1.4;
  border: 1px solid var(--mkt-line); background: #fff; border-radius: 14px; padding: 24px 26px; text-align: center;
  box-shadow: var(--mkt-sh-sm); min-width: 172px;
}
.gart-badge .num { display: block; font-family: var(--font-display); font-size: 2.5rem; color: var(--mkt-accent-ink); letter-spacing: -0.02em; font-weight: 600; line-height: 1; margin-bottom: 6px; }
.gart-badge .lab { display: block; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: var(--mkt-muted); }
.gart-quote { background: #F4FBFC; border: 1px solid #CDEBEF; border-left: 3px solid var(--mkt-accent); border-radius: 12px; padding: 26px 32px; }
.gart-quote .q-pt { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.12rem, 1.7vw, 1.42rem); line-height: 1.42; color: #2B3A48; }
.gart-quote .q-pt b { font-weight: 600; color: var(--mkt-accent-ink); }
.gart-quote .q-en { font-family: var(--font-sans); font-style: italic; font-size: 1rem; line-height: 1.5; color: #6F8090; margin-top: 14px; }
.gart-quote .attr { font-family: var(--font-mono); font-size: 12px; color: var(--mkt-muted); margin-top: 16px; }
.gart-quote .attr span { font-style: italic; }
@media (max-width: 760px){ .gart-in { grid-template-columns: 1fr; gap: 26px; } }

/* ============================================================
   QUEM CONSTRÓI — team
   ============================================================ */
.build-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; margin-top: 36px; align-items: stretch; }
.sec.build { padding-top: clamp(56px, 6vw, 78px); padding-bottom: clamp(56px, 6vw, 78px); }
.founder-orgs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.founder {
  position: relative; overflow: hidden; height: 100%; max-width: none;
  background: #fff; border: 1px solid var(--mkt-line); border-left: 3px solid var(--mkt-accent);
  border-radius: 12px; padding: 34px 36px; box-shadow: var(--mkt-sh-sm);
}
.founder-bars { position: absolute; top: 28px; right: 30px; opacity: .14; }
.founder-bars .bars { width: 34px; height: 30px; display: block; }
.founder-head { display: flex; gap: 20px; align-items: center; margin-bottom: 22px; }
.founder-head > div { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.mono-av {
  width: 56px; height: 56px; flex: 0 0 auto; border-radius: 13px;
  background: linear-gradient(140deg, #3DC1D0, #0E6C79); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 18px;
  font-family: var(--font-mono); letter-spacing: .02em; box-shadow: 0 6px 16px rgba(14,108,121,.28);
}
.mono-av.lg { width: 74px; height: 74px; border-radius: 17px; font-size: 24px; }
.founder h3 { font-size: 1.42rem; font-weight: 600; margin: 0; letter-spacing: -0.01em; line-height: 1.2; white-space: nowrap; }
.founder .role { font-family: var(--font-mono); font-size: 12px; color: var(--mkt-accent-ink); text-transform: uppercase; letter-spacing: .1em; }
.founder-bio { font-size: 1.04rem; color: var(--mkt-body); line-height: 1.66; max-width: 58ch; }
.usina-card {
  position: relative; overflow: hidden; height: 100%; margin: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  background: linear-gradient(165deg, #F4FBFC, #E8F5F7);
  border: 1px solid #CDEBEF; border-radius: 12px; padding: 38px 34px;
}
.usina-card .quote-mark { font-family: var(--font-display); font-size: 4.6rem; line-height: .6; color: var(--mkt-accent); font-weight: 600; height: 42px; }
.usina-card blockquote { margin: 0; font-family: var(--font-display); font-weight: 300; font-size: clamp(1.9rem, 3vw, 2.5rem); color: var(--mkt-accent-ink); letter-spacing: -0.02em; line-height: 1.05; }
.usina-card figcaption { font-size: .98rem; color: var(--mkt-body); line-height: 1.55; max-width: 36ch; }
@media (max-width: 860px){ .build-grid { grid-template-columns: 1fr; } .founder-bio { max-width: none; } }

/* ============================================================
   CONTATO
   ============================================================ */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-grid h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); font-weight: 500; }
.cta-grid .lead { margin-top: 20px; font-size: 1.12rem; color: var(--mkt-body); max-width: 46ch; }
.trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 20px; }
.trust span { font-family: var(--font-mono); font-size: 12.5px; color: var(--mkt-muted); display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mkt-accent); flex: 0 0 auto; }
.formcard { }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.cmethod {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--mkt-line); border-radius: 14px;
  padding: 20px 22px; box-shadow: var(--mkt-sh-sm); color: var(--mkt-ink);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .18s ease;
}
.cmethod:hover { transform: translateY(-2px); box-shadow: var(--mkt-sh-md); border-color: var(--mkt-accent); }
.cmethod-ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: var(--mkt-accent-soft); color: var(--mkt-accent-ink); display: flex; align-items: center; justify-content: center; }
.cmethod-ic.wa { background: #DDF3E1; color: #1F7350; }
.cmethod-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cmethod-k { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mkt-muted); }
.cmethod-v { font-size: 1.05rem; font-weight: 600; color: var(--mkt-ink); word-break: break-word; }
.cmethod-arr { margin-left: auto; color: var(--mkt-accent-ink); font-size: 1.25rem; flex: 0 0 auto; transition: transform .18s var(--ease-out); }
.cmethod:hover .cmethod-arr { transform: translateX(3px); }
.field { margin-bottom: 17px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--mkt-ink); margin-bottom: 7px; }
.field label .req { color: var(--mkt-accent-ink); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.formnote { margin-top: 16px; font-family: var(--font-mono); font-size: 11.5px; color: var(--mkt-muted); line-height: 1.55; text-align: center; }
.okmsg { text-align: center; padding: 10px 6px; }
.okmsg .okic { width: 46px; height: 46px; border-radius: 50%; background: var(--green-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.okmsg h3 { font-size: 1.2rem; font-weight: 600; margin: 0 0 8px; }
.okmsg p { font-size: .98rem; color: var(--mkt-body); max-width: 40ch; margin: 0 auto; }
@media (max-width: 900px){ .cta-grid { grid-template-columns: 1fr; gap: 40px; } .cta-grid .lead { max-width: none; } }
@media (max-width: 480px){ .frow { grid-template-columns: 1fr; } }

/* ============================================================
   RODAPÉ
   ============================================================ */
.foot { background: var(--mkt-deep-2); color: var(--mkt-deep-mut); padding: 56px 0; }
.foot-in { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.foot-logo { height: 34px; width: auto; margin-bottom: 16px; }
.foot .tag { font-family: var(--font-display); color: #EAF3F4; font-size: 1.15rem; font-weight: 400; }
.foot .who { margin-top: 8px; font-size: 13px; color: var(--mkt-deep-mut); }
.foot .foot-r { text-align: right; }
.foot a { color: var(--mkt-accent); font-family: var(--font-mono); font-size: 13.5px; }
.foot a:hover { color: #7fdbe6; }
.foot .copy { margin-top: 12px; font-family: var(--font-mono); font-size: 11.5px; color: #5f7f86; }
@media (max-width: 600px){ .foot-in { align-items: flex-start; } .foot .foot-r { text-align: left; } }

/* ============================================================
   CELULAR — ritmo, escala e alvos de toque
   O layout já empilha nos breakpoints de cada seção; aqui a
   página deixa de ser "o desktop estreito" e vira leitura de
   polegar: menos respiro vertical, tipos menores, cartões com
   padding curto e nada dependente de hover.
   ============================================================ */
@media (max-width: 640px){
  body { font-size: 16px; }

  /* ritmo vertical — o scroll no celular já é longo por natureza */
  .sec { padding: 62px 0; }
  .sec.tight { padding: 46px 0; }
  .sec.deep { padding-top: 52px; padding-bottom: 52px; }
  .sec.build { padding-top: 54px; padding-bottom: 54px; }
  .sec-head h2 { font-size: 1.62rem; }
  .sec-head .lead { margin-top: 16px; font-size: 1.04rem; }
  .eyebrow { font-size: 11.5px; letter-spacing: .1em; padding: 6px 13px 6px 11px; }
  .eyebrow .bars { width: 14px; height: 12px; }
  .srcline { font-size: 11.5px; }

  /* hero */
  .hero { padding: 40px 0 54px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: 2.05rem; margin-top: 18px; }
  .hero .sub { margin-top: 18px; font-size: 1.06rem; }
  .hero .sub-2 { margin-top: 12px; }
  .hero .micro { margin-top: 20px; font-size: 13px; padding-left: 12px; }
  .hero-cta { margin-top: 26px; gap: 18px; }

  /* alvos de toque: nada clicável abaixo de 44px de altura */
  .nav-in > a { display: flex; align-items: center; min-height: 44px; }
  .hero-see { min-height: 44px; padding: 6px 0; }
  .dl-link { min-height: 44px; }
  .foot-r a { display: inline-flex; align-items: center; min-height: 44px; }

  /* chrome do navegador nos screenshots — no celular mostra só o domínio,
     como faz a barra de endereço de um celular de verdade */
  .bframe-bar { gap: 9px; padding: 0 11px; }
  .bframe-url { padding: 0 10px; gap: 6px; }
  .bframe-url .u { font-size: 11.5px; }
  .bframe-url .path { display: none; }
  .bframe-screen.pdf .pdfpages { gap: 10px; padding: 12px 12px 22px; }

  /* cartões: o padding lg do design system encurta no celular
     (o componente aplica padding inline via var — redefinir o
     token no próprio cartão é o caminho sem !important) */
  .errcard, .dif, .aud, .acervo { --space-8: 22px; }
  .prob-grid, .dif-grid, .aud-grid { gap: 16px; margin-top: 32px; }
  .errcard h3, .dif h3, .aud h3 { font-size: 1.08rem; }
  .errcard p, .dif p, .aud p { font-size: .97rem; }
  .dif .dificon { width: 36px; height: 36px; margin-bottom: 13px; }

  /* plataforma */
  .feat { margin-top: 42px; gap: 22px; }
  .feat h3 { font-size: 1.45rem; margin: 10px 0 13px; }
  .feat p { font-size: 1.02rem; }
  .feat .feat-punch { margin-top: 15px; padding: 10px 15px 10px 13px; gap: 8px; }
  .agente-meta { margin-top: 13px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .acervo { margin-top: 44px; }
  .acervo h3 { font-size: 1.15rem; margin: 10px 0 16px; max-width: none; }
  .chips { gap: 8px; }
  .acervo-stats { gap: 22px; margin-top: 22px; padding-top: 20px; }
  .acervo-stat .num { font-size: 1.6rem; }

  /* objeção (faixa escura) */
  .deep .punch-line { gap: 12px; }
  .deep .punch-line .bars { width: 22px; height: 20px; margin-top: 5px; }
  .deep .punch strong { font-size: 1.28rem; }
  .deep .punch .sig { margin-top: 13px; font-size: 12.5px; }
  .deep .obj .btnrow { margin-top: 22px; }

  /* quem constrói */
  .build-grid { gap: 18px; margin-top: 28px; }
  .founder { padding: 26px 22px; }
  .founder-bars { display: none; }
  .founder-head { gap: 14px; margin-bottom: 18px; }
  .mono-av { width: 48px; height: 48px; border-radius: 11px; font-size: 16px; }
  .founder h3 { font-size: 1.28rem; white-space: normal; }
  .founder-bio { font-size: 1rem; }
  .founder-orgs { margin-top: 18px; }
  .usina-card { padding: 28px 24px; gap: 13px; }
  .usina-card .quote-mark { font-size: 3.6rem; height: 32px; }
  .usina-card blockquote { font-size: 1.65rem; }
  .usina-card figcaption { max-width: none; }

  /* contato */
  .cta-grid { gap: 30px; }
  .cta-grid h2 { font-size: 1.6rem; }
  .cta-grid .lead { margin-top: 16px; font-size: 1.04rem; }
  .trust { margin-top: 22px; }
  .cmethod { padding: 16px; gap: 13px; border-radius: 12px; }
  .cmethod-ic { width: 42px; height: 42px; border-radius: 11px; }
  .cmethod-v { font-size: .98rem; }

  /* rodapé */
  .foot { padding: 40px 0; }
  .foot-in { gap: 24px; }
}

/* aparelhos estreitos (360–390) — só o que ainda aperta */
@media (max-width: 420px){
  .wrap { padding: 0 16px; }
  .nav-logo { height: 29px; }
  .hero h1 { font-size: 1.88rem; }
  .sec-head h2 { font-size: 1.5rem; }
  .feat h3 { font-size: 1.34rem; }
  .cta-grid h2 { font-size: 1.5rem; }
  .usina-card blockquote { font-size: 1.5rem; }
  .acervo-stats { gap: 16px; }
  .acervo-stat .num { font-size: 1.45rem; }
  .founder { padding: 24px 18px; }
  .usina-card { padding: 24px 20px; }
  .dl-link { white-space: normal; }
}

/* nada de efeito preso ao hover em tela de toque */
@media (hover: none){
  .pcard:hover .pimg img { transform: none; }
  .cmethod:hover { transform: none; box-shadow: var(--mkt-sh-sm); border-color: var(--mkt-line); }
  .nav-menu-links a:hover .chev { transform: none; }
}
