/* ============================================================
   TRAW — Home (tema claro / elegante)
   Design system: navy + ciano, autoridade B2B
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #FAFBFC;
  --bg-2:      #F1F4F9;
  --surface:   #FFFFFF;

  /* Ink */
  --ink:       #0E1A2B;
  --ink-soft:  #243349;
  --muted:     #586577;
  --muted-2:   #8995A6;

  /* Lines */
  --line:      #E6EBF2;
  --line-2:    #D6DEE9;

  /* Brand */
  --navy:      #0E1A2B;
  --navy-2:    #142639;
  --cyan:      #14B3CC;
  --cyan-bri:  #2BD0E0;
  --blue:      #2E74F0;

  --grad:      linear-gradient(118deg, #25C5DC 0%, #2E74F0 100%);
  --grad-soft: linear-gradient(118deg, #16B6CE 0%, #2E74F0 100%);

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(14,26,43,.06), 0 1px 3px rgba(14,26,43,.05);
  --sh-md: 0 8px 22px -8px rgba(14,26,43,.14), 0 2px 6px rgba(14,26,43,.05);
  --sh-lg: 0 30px 70px -24px rgba(14,26,43,.26), 0 10px 26px -14px rgba(14,26,43,.12);
  --sh-cyan: 0 18px 42px -14px rgba(20,179,204,.45);

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --pill: 999px;

  /* Type */
  --display: 'Sora', system-ui, sans-serif;
  --body:    'Manrope', system-ui, sans-serif;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(46,116,240,.18); color: var(--ink); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #c6d0dd; border-radius: 99px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: #aab8c9; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad);
}
.eyebrow.center { justify-content: center; }

/* ---------- Gradient text ---------- */
.grad-text {
  background: var(--grad-soft);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 15.5px;
  border: none; border-radius: var(--pill);
  padding: 15px 26px; min-height: 52px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: var(--sh-cyan);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -16px rgba(20,179,204,.6); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: var(--surface); color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line-2), var(--sh-sm);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--cyan), var(--sh-md); color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--sh-md); }
.btn-dark:hover { transform: translateY(-3px); background: var(--navy-2); }
.btn-on-dark {
  background: rgba(255,255,255,.08); color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}
.btn-on-dark:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }

/* ---------- Section heading ---------- */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-title {
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 18px; letter-spacing: -0.035em;
}
.sec-sub {
  margin-top: 18px; color: var(--muted); font-size: clamp(16px,1.6vw,18.5px);
  line-height: 1.65;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250,251,252,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -18px rgba(14,26,43,.4);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 144px; width: auto; margin-block: -33px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-weight: 600; font-size: 15px; color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--pill); position: relative;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--ink); background: rgba(14,26,43,.045); }
.nav-link.active { color: var(--cyan); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--surface); box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line);
  border: none; position: relative;
}
.nav-burger span {
  position: absolute; left: 13px; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .3s, opacity .2s;
}
.nav-burger span:nth-child(1) { top: 17px; }
.nav-burger span:nth-child(2) { top: 23px; }
.nav-burger span:nth-child(3) { top: 29px; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 auto 0; top: 0; z-index: 99;
  background: rgba(250,251,252,.98); backdrop-filter: blur(14px);
  padding: 96px var(--gut) 36px; transform: translateY(-110%);
  transition: transform .42s cubic-bezier(.5,.1,.2,1);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 26px; color: var(--ink); padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .btn { width: 100%; margin-top: 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 150px; padding-bottom: clamp(60px, 8vw, 110px); position: relative; overflow: hidden;
  background: linear-gradient(162deg, #F6FAFE 0%, #EDF3FF 44%, #F2EEFF 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-blob {
  position: absolute; width: 720px; height: 720px; border-radius: 50%;
  filter: blur(50px); opacity: .5;
}
.hero-blob.b1 { top: -260px; right: -160px; background: radial-gradient(circle at 30% 30%, rgba(43,200,220,.35), transparent 62%); }
.hero-blob.b2 { bottom: -340px; left: -200px; background: radial-gradient(circle at 60% 40%, rgba(46,116,240,.2), transparent 60%); }

/* Pills inspirados no A-More — shapes cápsulas flutuantes em cyan/blue */
.hero-pill { position: absolute; border-radius: 999px; pointer-events: none; z-index: 0; }
.hero-pill.hp1 {
  width: 240px; height: 88px;
  background: var(--grad); opacity: .14;
  top: 140px; right: 3%; transform: rotate(26deg);
}
.hero-pill.hp2 {
  width: 155px; height: 58px;
  background: linear-gradient(118deg, var(--cyan-bri), var(--blue)); opacity: .12;
  bottom: 16%; left: 2%; transform: rotate(-20deg);
}
.hero-pill.hp3 {
  width: 96px; height: 36px;
  background: var(--blue); opacity: .1;
  top: 44%; left: 44%; transform: rotate(14deg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, #000 0%, transparent 75%);
  opacity: .6;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line);
  border-radius: var(--pill); padding: 8px 16px 8px 10px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
}
.hero-chip .dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff;
}
.hero h1 {
  font-size: clamp(37px, 5vw, 60px);
  margin-top: 26px; letter-spacing: -0.038em; line-height: 1.08;
}
.hero h1 .grad-text { display: inline-block; }
.hero-lead {
  margin-top: 26px; max-width: 480px; color: var(--muted);
  font-size: clamp(16.5px, 1.8vw, 19px); line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 13.5px; font-weight: 600;
}
.hero-trust .tcheck { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.hero-trust svg { color: var(--cyan); }
.hero-trust .divider { width: 1px; height: 16px; background: var(--line-2); }

/* hero visual */
.hero-visual { position: relative; }
.browser {
  background: var(--surface); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(.4deg);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  background: #fbfcfe;
}
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser-bar .dots i:nth-child(1){ background:#FF5F57; }
.browser-bar .dots i:nth-child(2){ background:#FEBC2E; }
.browser-bar .dots i:nth-child(3){ background:#28C840; }
.browser-url {
  flex: 1; margin-left: 8px; background: var(--bg-2); border-radius: 8px;
  padding: 7px 14px; font-size: 12.5px; color: var(--muted-2); font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.browser-url svg { color: var(--cyan); }
.browser-shot { width: 100%; display: block; }

.float-card {
  position: absolute; background: var(--surface);
  border-radius: var(--r); box-shadow: var(--sh-lg);
  border: 1px solid var(--line); padding: 14px 16px;
}
.float-card.perf {
  left: -34px; bottom: 42px; display: flex; align-items: center; gap: 13px;
}
.ring {
  width: 46px; height: 46px; border-radius: 50%;
  background: conic-gradient(var(--cyan) 0% 96%, #E7ECF3 96% 100%);
  display: grid; place-items: center; flex: none;
}
.ring::after { content: ""; position: absolute; width: 34px; height: 34px; border-radius: 50%; background: var(--surface); }
.ring b { position: relative; z-index: 1; font-family: var(--display); font-size: 13px; color: var(--ink); }
.float-card.perf .lbl small { display: block; color: var(--muted-2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.float-card.perf .lbl b { font-family: var(--display); font-size: 15px; color: var(--ink); }
.float-card.live {
  right: -22px; top: 40px; display: flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.float-card.live .pulse { width: 9px; height: 9px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34,197,94,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.5);} 70%{box-shadow:0 0 0 10px rgba(34,197,94,0);} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0);} }

.float-mark {
  position: absolute; right: -30px; bottom: -26px;
  width: 76px; height: 76px; border-radius: 20px; background: var(--grad);
  box-shadow: var(--sh-cyan); display: grid; place-items: center; color: #fff;
  transform: rotate(-6deg);
}
@media (prefers-reduced-motion: no-preference) {
  .floaty { animation: floaty 6s ease-in-out infinite; }
  .floaty.d1 { animation-delay: -2s; }
  @keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
}

/* ============================================================
   PHONE MOCKUP — visível só no mobile via media query
   ============================================================ */
.hero-mock-mobile { display: none; }
.hero-mock-desktop { display: block; }

.mob-hero-img {
  width: 100%; height: auto; display: block;
}

/* ============================================================
   LOGOS / PROVA SOCIAL
   ============================================================ */
.logos { padding-block: 37px; border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.logos-track {
  display: flex; align-items: center; width: max-content;
  animation: logos-scroll 22s linear infinite;
}
.logos-track .mark {
  font-family: var(--display); font-weight: 700; font-size: clamp(17px, 2.2vw, 24px);
  color: #9aa6b5; letter-spacing: -.02em; white-space: nowrap;
  padding-inline: clamp(22px, 4vw, 52px);
}
.logos-track .mark span { color: var(--cyan); }
.logos-track .mark-sep {
  color: var(--cyan); opacity: .35; font-size: 1.1em; flex-shrink: 0;
}
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.svc-grid {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(43,200,220,.07), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-card:hover::after { opacity: 1; }
.svc-ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(135deg, #EAFBFE, #E9F1FE); color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(46,116,240,.12);
}
.svc-card:hover .svc-ic { background: var(--grad); color: #fff; box-shadow: var(--sh-cyan); transition: background .3s, color .3s, box-shadow .3s; }
.svc-card h3 { font-size: 21px; margin-top: 22px; letter-spacing: -.02em; }
.svc-card p { margin-top: 11px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.svc-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 7px; }
.svc-tags span {
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--bg-2); border-radius: var(--pill); padding: 5px 12px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--surface); border-block: 1px solid var(--line); }
.proc-grid {
  margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
  position: relative;
}
.proc-line {
  position: absolute; top: 28px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.proc-step { position: relative; z-index: 1; }
.proc-num {
  width: 56px; height: 56px; border-radius: 16px; background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line-2); display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 20px; color: var(--ink);
  transition: background .3s, color .3s, box-shadow .3s, transform .3s;
}
.proc-step:hover .proc-num { background: var(--grad); color: #fff; box-shadow: var(--sh-cyan); transform: translateY(-4px); }
.proc-step h3 { font-size: 19px; margin-top: 20px; }
.proc-step p { margin-top: 9px; color: var(--muted); font-size: 15px; line-height: 1.58; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-copy p { margin-top: 20px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.about-copy p strong { color: var(--ink); font-weight: 700; }
.about-list { margin-top: 28px; display: grid; gap: 13px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 16px; font-weight: 500; }
.about-list .ck { flex: none; width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(135deg,#EAFBFE,#E9F1FE); color: var(--blue); display: grid; place-items: center; margin-top: 1px; }

.about-cards { display: grid; gap: 16px; }
.about-c {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; box-shadow: var(--sh-sm);
  transition: transform .3s, box-shadow .3s;
}
.about-c:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.about-c .top { display: flex; align-items: center; gap: 14px; }
.about-c .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--grad); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-cyan); flex: none; }
.about-c h4 { font-size: 19px; }
.about-c p { margin-top: 13px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ============================================================
   PROJECTS
   ============================================================ */
.projects { background: var(--surface); border-top: 1px solid var(--line); }
.proj-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proj-dots { display: none; }
.proj-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--surface);
  border: 1px solid var(--line); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.proj-shot { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.proj-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.proj-card:hover .proj-shot img { transform: scale(1.05); }
.proj-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
  padding: 6px 12px; border-radius: var(--pill); box-shadow: var(--sh-sm);
}
.proj-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.proj-body h3 { font-size: 21px; }
.proj-body p { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.proj-link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; color: var(--blue);
}
.proj-link svg { transition: transform .25s; }
.proj-card:hover .proj-link svg { transform: translate(3px,-3px); }

/* ============================================================
   CTA FINAL (dark band)
   ============================================================ */
.cta { background: var(--bg); }
.cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 140% at 85% 0%, #163350 0%, #0E1A2B 52%);
  border-radius: var(--r-xl); padding: clamp(44px, 6vw, 80px);
  box-shadow: var(--sh-lg);
}
.cta-band .glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-band .glow.g1 { top: -260px; right: -120px; background: radial-gradient(circle, rgba(43,200,220,.45), transparent 62%); }
.cta-band .glow.g2 { bottom: -300px; left: -140px; background: radial-gradient(circle, rgba(46,116,240,.32), transparent 62%); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.cta-band .eyebrow { color: var(--cyan-bri); }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-top: 18px; letter-spacing: -.035em; }
.cta-band p { color: #AEBDD0; margin-top: 18px; font-size: 18px; line-height: 1.6; max-width: 560px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-info .eyebrow { color: var(--cyan-bri); }
.cta-info h2 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); margin-top: 16px; letter-spacing: -.03em; }
.cta-info > p { color: #AEBDD0; margin-top: 16px; font-size: 17px; line-height: 1.65; }
.cta-wa { margin-top: 28px; }
.cta-contact { margin-top: 22px; display: grid; gap: 12px; }
.cta-contact a { display: inline-flex; align-items: center; gap: 11px; color: #C7D3E2; font-size: 15px; font-weight: 600; transition: color .2s; }
.cta-contact a:hover { color: #fff; }
.cta-contact .ic { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); display: grid; place-items: center; color: var(--cyan-bri); flex: none; }

/* ============================================================
   FORMULÁRIO DE CONTATO
   ============================================================ */
.cta-form-wrap {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 36px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label {
  font-size: 13px; font-weight: 700; color: #C7D3E2;
  letter-spacing: .03em;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(174,189,208,.55); }
.cf-field select option { background: #142639; color: #fff; }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--cyan-bri);
  box-shadow: 0 0 0 3px rgba(43,208,224,.18);
  background: rgba(255,255,255,.1);
}

.cf-field textarea { resize: vertical; min-height: 110px; }

.cf-error {
  display: flex; align-items: center; gap: 8px;
  color: #FF8080; font-size: 14px; font-weight: 600;
}

.cf-submit {
  width: 100%; justify-content: center;
  margin-top: 4px;
}
.cf-submit:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }

/* Estado de sucesso */
.cf-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px; padding: 32px 16px;
}
.cf-success-ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; box-shadow: var(--sh-cyan);
}
.cf-success h3 { color: #fff; font-size: 22px; margin: 0; }
.cf-success p  { color: #AEBDD0; font-size: 16px; line-height: 1.6; margin: 0; }
.cf-success .btn { margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); padding-block: 56px 40px; border-top: none; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand img { height: 180px; width: auto; margin-block: -36px; }
.footer-brand p { margin-top: 16px; color: var(--muted); font-size: 15px; max-width: 300px; line-height: 1.6; }
.footer-cols { display: flex; gap: clamp(40px, 7vw, 88px); flex-wrap: wrap; }
.footer-col h5 { font-family: var(--display); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 700; }
.footer-col a { display: block; margin-top: 13px; color: var(--ink-soft); font-size: 15px; font-weight: 500; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 13.5px; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 11px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line), var(--sh-sm); display: grid; place-items: center; color: var(--ink-soft); transition: color .2s, transform .2s; }
.footer-bottom .socials a:hover { color: var(--cyan); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 540px; }
  .about-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-line { display: none; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .cf-row { grid-template-columns: 1fr; }
}
/* ============================================================
   MOBILE — redesign UX/UI diferencial (≤ 760px)
   ============================================================ */

/* Scroll hint (carousels) — oculto no desktop */
.scroll-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-2);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.sh-dots { display: flex; gap: 4px; align-items: center; }
.sh-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.sh-dots span.on { width: 20px; border-radius: var(--pill); background: var(--grad); }

/* FAB WhatsApp — oculto no desktop */
.mob-wa-fab {
  display: none;
  position: fixed;
  bottom: 22px; right: 18px;
  z-index: 200;
  background: #25D366;
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--pill);
  box-shadow: 0 8px 36px rgba(37,211,102,.5);
  align-items: center;
  gap: 9px;
  text-decoration: none;
  animation: fab-in .5s cubic-bezier(.2,.7,.3,1) .8s both;
  transition: transform .2s, box-shadow .2s;
}
.mob-wa-fab:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(37,211,102,.6); color: #fff; }

@keyframes fab-in {
  from { transform: translateY(100px) scale(.8); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

@media (max-width: 760px) {

  /* ---- NAV ---- */
  .nav-links, .nav-cta .btn { display: none; }
  .nav-burger { display: block; }
  .nav-logo img { height: 100px; margin-block: -22px; }

  /* ---- HERO ---- */
  .hero { padding-top: 104px; padding-bottom: 48px; overflow-x: hidden; }
  /* hero-text vira "contents" p/ ordenar texto + imagem + botões juntos */
  .hero-inner {
    display: flex; flex-direction: column; align-items: center;
    gap: 22px; text-align: center;
  }
  .hero-text { display: contents; }
  .hero-chip  { order: 1; font-size: 12px; max-width: 100%; }
  .hero h1    { order: 2; font-size: clamp(25px, 7.4vw, 33px); margin-top: 6px; }
  .hero-lead  { order: 3; margin: 0 auto; }
  /* hero-visual: posição relativa para ancorar os float cards */
  .hero-visual {
    order: 4; position: relative;
    width: 100%; max-width: 270px; margin: 0 auto;
    padding-top: 14px; padding-bottom: 48px;
  }
  .hero-actions { order: 5; width: 100%; flex-direction: column; gap: 12px; margin-top: 0; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { order: 6; justify-content: center; margin-top: 4px; }
  .hero-trust {
    flex-wrap: wrap; justify-content: center;
    gap: 8px 14px; overflow-x: visible; width: 100%;
  }
  .hero-trust .divider { display: none; }
  .tcheck { white-space: nowrap; flex: none; }

  /* Troca o browser mockup pela imagem 3D do celular */
  .hero-mock-desktop { display: none; }
  .hero-mock-mobile { display: block; }
  .mob-hero-img {
    width: 100%; height: auto; display: block;
    filter: drop-shadow(0 18px 40px rgba(14,26,43,.4));
  }

  /* Float cards: colados nas bordas da imagem, escala reduzida */
  .float-card.live {
    display: flex;
    right: -10px; top: 22px;
    transform: scale(0.82); transform-origin: right top;
  }
  .float-card.perf {
    display: flex;
    left: -10px; bottom: 10px;
    transform: scale(0.82); transform-origin: left bottom;
  }
  .float-mark { display: none; }

  /* ---- SERVIÇOS — carrossel horizontal com snap ---- */
  .svc-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin-top: 36px;
    padding-bottom: 8px;
  }
  .svc-grid::-webkit-scrollbar { display: none; }
  .svc-card {
    flex: 0 0 84%;
    min-width: 0;
    scroll-snap-align: start;
  }
  .scroll-hint { display: flex; }

  /* ---- PROCESSO — timeline vertical ---- */
  .proc-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0;
    margin-top: 40px;
    padding-left: 44px;
    position: relative;
  }
  .proc-grid::before {
    content: "";
    position: absolute;
    left: 16px; top: 26px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan) 0%, rgba(20,179,204,.06) 100%);
  }
  .proc-step {
    position: relative;
    text-align: left;
    padding-bottom: 40px;
  }
  .proc-step:last-child { padding-bottom: 0; }
  .proc-step::before {
    content: "";
    position: absolute;
    left: -36px; top: 12px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 0 5px rgba(43,200,224,.2);
  }
  .proc-num {
    display: inline-flex;
    width: auto; height: auto;
    padding: 5px 14px;
    border-radius: var(--pill);
    font-size: 13px;
    margin-bottom: 10px;
  }
  .proc-step h3 { font-size: 17px; margin-top: 6px; }
  .proc-step p  { font-size: 14.5px; }

  /* ---- ABOUT — cards com acento lateral ---- */
  .about-cards { gap: 12px; }
  .about-c {
    padding: 16px 18px;
    border-left: 3px solid var(--cyan);
    border-radius: var(--r);
  }
  .about-c .top { gap: 10px; }
  .about-c .ic  { width: 38px; height: 38px; border-radius: 10px; }
  .about-c h4   { font-size: 16px; }
  .about-c > p  { margin-top: 10px; font-size: 14px; }

  /* ---- PROJETOS — carrossel horizontal com snap ---- */
  .proj-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin-top: 36px;
    padding-bottom: 8px;
  }
  .proj-grid::-webkit-scrollbar { display: none; }
  .proj-card {
    flex: 0 0 87%;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* ---- dots do carrossel ---- */
  .proj-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .proj-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s, width .25s;
  }
  .proj-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
  }

  /* ---- CTA / FORMULÁRIO ---- */
  .cta-band { padding: 32px 22px; border-radius: 20px; }
  .cta-info h2 { font-size: clamp(24px, 7vw, 32px); }
  .cta-form-wrap { padding: 22px 18px; }
  .cf-row { grid-template-columns: 1fr; }

  /* ---- FAB WhatsApp ---- */
  .mob-wa-fab { display: inline-flex; }
}

/* ============================================================
   DECORATIVE BACKGROUNDS — Tech / Cyber depth
   Raios da marca como watermarks + dot grids + gradientes
   ============================================================ */

/* Bolt clip-path — reutilizado via ::before/::after */
.section { isolation: isolate; }

/* Serviços — gradiente azul-tintado + raio watermark direita */
.services {
  background: linear-gradient(162deg, #FAFBFC 0%, #EDF3FF 55%, #FAFBFC 100%);
}
.services::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: -40px; top: 60px; width: 260px; height: 440px;
  clip-path: polygon(35% 0%, 75% 0%, 52% 44%, 90% 44%, 65% 100%, 25% 100%, 48% 56%, 10% 56%);
  background: var(--grad); opacity: .08;
}
.services::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -50px; bottom: 40px; width: 180px; height: 300px;
  clip-path: polygon(35% 0%, 75% 0%, 52% 44%, 90% 44%, 65% 100%, 25% 100%, 48% 56%, 10% 56%);
  background: var(--cyan); opacity: .06;
}

/* Processo — dot grid tech + raio esquerda + bloom ciano */
.process {
  background-color: var(--surface);
  background-image: radial-gradient(circle, rgba(14,26,43,.065) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.process::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -60px; bottom: 30px; width: 240px; height: 400px;
  clip-path: polygon(35% 0%, 75% 0%, 52% 44%, 90% 44%, 65% 100%, 25% 100%, 48% 56%, 10% 56%);
  background: var(--cyan); opacity: .09;
}
.process::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: 12%; top: -80px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,116,240,.14), transparent 65%);
  filter: blur(22px);
}

/* Quem Somos — azul acinzentado suave + raio direita */
.about {
  background: linear-gradient(165deg, #F5F8FD 0%, #EBF1FF 100%);
}
.about::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: 4%; top: 50px; width: 200px; height: 340px;
  clip-path: polygon(35% 0%, 75% 0%, 52% 44%, 90% 44%, 65% 100%, 25% 100%, 48% 56%, 10% 56%);
  background: var(--grad); opacity: .09;
}

/* Projetos — gradiente muito sutil + bloom ciano esquerda */
.projects {
  background: linear-gradient(175deg, #FFFFFF 0%, #F3F7FE 100%);
}
.projects::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -50px; bottom: -30px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,179,204,.11), transparent 65%);
  filter: blur(22px);
}
.projects::after {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  right: 8%; top: 80px; width: 170px; height: 290px;
  clip-path: polygon(35% 0%, 75% 0%, 52% 44%, 90% 44%, 65% 100%, 25% 100%, 48% 56%, 10% 56%);
  background: var(--grad); opacity: .07;
}

/* CTA escura — grid de circuito tech */
.cta-band {
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px),
    radial-gradient(120% 140% at 85% 0%, #163350 0%, #0E1A2B 52%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
  background-color: #0E1A2B;
}

/* Hero — dot grid secundário + aurora suave no bottom */
.hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14,26,43,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 60%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 60%, black 0%, transparent 70%);
}

/* Logos — fundo levemente tintado */
.logos {
  background: linear-gradient(180deg, var(--surface) 0%, #F7F9FD 100%);
}

/* Footer — softer entry (already has dot grid) */
.footer {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(14,26,43,.045) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  background-repeat: repeat;
}

/* ============================================================
   SECTION BLEND EDGES
   Gradient fades nas junções — sem bordas duras entre seções
   ============================================================ */

/* Remove bordas hard entre seções */
.logos { border: none; }
.process { border-top: none; border-bottom: none; }
.projects { border-top: none; }

/* Logos — fundida com o hero (mesmo gradiente, sem separação) */
.logos {
  border: none;
  background:
    linear-gradient(to top, var(--surface), transparent 70px) 0 100% / 100% 70px no-repeat,
    linear-gradient(162deg, #F6FAFE 0%, #EDF3FF 44%, #F2EEFF 100%);
  position: relative;
}
.logos::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  right: 8%; top: 50%; transform: translateY(-50%);
  width: 130px; height: 48px; border-radius: 999px;
  background: var(--grad); opacity: .1;
}
.logos::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  left: 5%; top: 40%; transform: translateY(-50%);
  width: 80px; height: 30px; border-radius: 999px;
  background: var(--blue); opacity: .09;
}
.logos .logos-track { position: relative; z-index: 1; }

/* Services — fade in desde o gradiente hero/logos */
.services {
  background:
    linear-gradient(to bottom, #EDF3FF, transparent 90px) 0 0 / 100% 90px no-repeat,
    linear-gradient(to top, var(--surface), transparent 90px) 0 100% / 100% 90px no-repeat,
    linear-gradient(162deg, #FAFBFC 0%, #EDF3FF 55%, #FAFBFC 100%);
}

/* Process — fade in/out sobre dot grid */
.process {
  background:
    linear-gradient(to bottom, var(--surface), transparent 90px) 0 0 / 100% 90px no-repeat,
    linear-gradient(to top, var(--surface), transparent 90px) 0 100% / 100% 90px no-repeat,
    radial-gradient(circle, rgba(14,26,43,.065) 1.5px, transparent 1.5px) 0 0 / 28px 28px;
  background-color: var(--surface);
}

/* About — fade in/out sobre gradiente azul */
.about {
  background:
    linear-gradient(to bottom, var(--surface), transparent 90px) 0 0 / 100% 90px no-repeat,
    linear-gradient(to top, #F3F7FE, transparent 90px) 0 100% / 100% 90px no-repeat,
    linear-gradient(165deg, #F5F8FD 0%, #EBF1FF 100%);
}

/* Projects — fade in/out sobre gradiente */
.projects {
  background:
    linear-gradient(to bottom, #EBF1FF, transparent 90px) 0 0 / 100% 90px no-repeat,
    linear-gradient(to top, #FAFBFC, transparent 90px) 0 100% / 100% 90px no-repeat,
    linear-gradient(175deg, #FFFFFF 0%, #F3F7FE 100%);
}

/* CTA wrapper — fade suave de claro para escuro */
.cta {
  background:
    linear-gradient(to bottom, #F3F7FE, transparent 70px) 0 0 / 100% 70px no-repeat,
    linear-gradient(to top, var(--bg), transparent 70px) 0 100% / 100% 70px no-repeat,
    var(--bg);
}

/* CTA dark band — entrada com blur suave (backdrop topo) */
.cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 90px; z-index: 1; pointer-events: none; border-radius: inherit;
  background: linear-gradient(to bottom, rgba(255,255,255,.07), transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

/* Footer — fade topo suave (sobre dot grid) */
.footer {
  background-color: var(--bg);
  background-image:
    linear-gradient(to bottom, #FAFBFC, transparent 60px),
    radial-gradient(circle, rgba(14,26,43,.045) 1px, transparent 1px);
  background-size: 100% 60px, 24px 24px;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, repeat;
}
