/* ==========================================================
   Vertex Web Studio — estilos
   Cores e fontes: identidade/design-guide.md
   ========================================================== */

:root {
  /* marca */
  --navy: #011C45;
  --blue-deep: #003FAB;
  --blue-mid: #0562D3;
  --blue: #0A97F7;
  --blue-light: #1CB7FD;
  --fold: #002561;
  --grad: linear-gradient(135deg, #003FAB 0%, #0A97F7 55%, #1CB7FD 100%);

  /* tema escuro */
  --bg: #030B1A;
  --bg-2: #051129;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line: rgba(160, 196, 255, 0.12);
  --line-strong: rgba(160, 196, 255, 0.22);
  --text: #EEF4FF;
  --muted: #93A6C4;
  --dim: #5E7194;

  /* seção clara */
  --light-bg: #EFF4FB;
  --light-card: #FFFFFF;
  --light-line: #DCE5F2;
  --light-muted: #4D5E7C;

  --font-title: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --radius: 20px;
  --radius-lg: 28px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);

  interpolate-size: allow-keywords;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-title); margin: 0; line-height: 1.08; letter-spacing: -0.025em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: rgba(28, 183, 253, .35); }

:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px; border-radius: 8px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--blue-light); color: var(--navy); padding: 10px 16px; border-radius: 10px; font-weight: 700;
}
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- botões ---------- */
.btn {
  --h: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--h); padding: 0 24px;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { --h: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 56px; padding: 0 28px; font-size: 16px; }

.btn--primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 8px 24px -8px rgba(10, 151, 247, .55), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(28, 183, 253, .7), inset 0 1px 0 rgba(255, 255, 255, .3); }

.btn--ghost { color: var(--text); background: var(--surface); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(160, 196, 255, .35); transform: translateY(-2px); }

/* ---------- textos de seção ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-light);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--dark { color: var(--blue-mid); }

.section { position: relative; padding: clamp(80px, 10vw, 124px) 0; }
.section__head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__title { margin-top: 18px; font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; }
.section__lead { margin-top: 20px; font-size: clamp(1rem, 1.6vw, 1.125rem); color: var(--muted); max-width: 640px; }

/* ---------- animação de entrada ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ==========================================================
   NAV
   ========================================================== */
.nav { position: fixed; inset: 14px 0 auto; z-index: 50; padding: 0 var(--gutter); pointer-events: none; }
.nav__pill {
  position: relative; pointer-events: auto;
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 8px 8px 8px 18px;
  background: rgba(5, 14, 32, .84);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 40px -12px rgba(0, 0, 0, .6);
  overflow: hidden;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark { width: 34px; height: auto; }
.brand__name { font-family: var(--font-title); font-size: 18px; font-weight: 400; letter-spacing: -0.01em; color: #fff; white-space: nowrap; }
.brand__name strong { font-weight: 700; }

.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .2s, background-color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: #fff; background: var(--surface-2); }

.nav__progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--grad); transform-origin: left; transform: scaleX(0);
}

.nav__toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  cursor: pointer; position: relative;
}
.nav__toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease); }
.nav__toggle span:first-child { top: 17px; }
.nav__toggle span:last-child { top: 23px; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.nav__panel {
  pointer-events: auto;
  max-width: 1120px; margin: 10px auto 0;
  display: grid; gap: 4px; padding: 12px;
  background: rgba(5, 14, 32, .96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 24px;
}
.nav__panel[hidden] { display: none; }
.nav__panel a:not(.btn) { padding: 14px 16px; border-radius: 14px; font-weight: 500; }
.nav__panel a:not(.btn):hover { background: var(--surface-2); }
.nav__panel .btn { margin-top: 8px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero { position: relative; padding: clamp(130px, 16vw, 180px) 0 0; overflow: hidden; }

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.glow--a { width: 620px; height: 620px; right: -120px; top: 40px; background: radial-gradient(circle, rgba(10, 151, 247, .38), transparent 65%); }
.glow--b { width: 560px; height: 560px; left: -220px; top: 280px; background: radial-gradient(circle, rgba(0, 63, 171, .45), transparent 65%); }
.hero__bg::after {
  content: ""; 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 70% 60% at 50% 30%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 10%, transparent 75%);
  opacity: .45;
}
.network {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .12) 42%, #000 72%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .12) 42%, #000 72%);
}
.network__lines line { stroke: rgba(140, 180, 255, .22); stroke-width: 1; }
.network__dots circle { fill: var(--blue-light); animation: pulse 4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.network__dots circle:nth-child(2n) { fill: var(--blue); animation-delay: -1.3s; }
.network__dots circle:nth-child(3n) { animation-delay: -2.6s; }
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }

.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.02fr 1fr; align-items: center; gap: clamp(40px, 5vw, 72px);
}

.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line);
}
.chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-light); box-shadow: 0 0 0 4px rgba(28, 183, 253, .18); }

.hero__title { margin-top: 24px; font-size: clamp(2.5rem, 5.6vw, 4.5rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; }
.hero__lead { margin-top: 24px; max-width: 560px; font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--muted); }
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__proof { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 14px; color: var(--muted); }
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof svg { width: 18px; height: 18px; fill: none; stroke: var(--blue-light); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* composição ilustrativa */
.hero__visual { position: relative; padding: 64px 12px 84px 28px; }

.browser {
  position: relative;
  border-radius: 18px; overflow: hidden;
  background: #071734;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .02), 0 0 90px -30px rgba(10, 151, 247, .5);
}
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: rgba(255, 255, 255, .04); border-bottom: 1px solid var(--line); }
.browser__bar > span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.browser__url {
  margin-left: 14px; flex: 1; max-width: 260px;
  display: flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px; background: rgba(0, 0, 0, .25);
  font-size: 12px; color: var(--muted);
}
.browser__url svg { width: 12px; height: 12px; fill: none; stroke: var(--muted); stroke-width: 2; }

.browser__page { padding: 16px 20px 22px; background: linear-gradient(180deg, #F7FAFE, #EAF1FA); color: var(--navy); }
.mini-nav { display: flex; align-items: center; gap: 14px; }
.mini-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); }
.mini-links { display: flex; gap: 8px; margin-left: auto; }
.mini-links i { width: 36px; height: 6px; border-radius: 4px; background: #CBD7E8; }
.mini-btn { font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: var(--navy); color: #fff; }

.mini-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; align-items: center; margin-top: 22px; }
.mini-kicker { font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-mid); }
.mini-title { margin-top: 6px; font-family: var(--font-title); font-weight: 700; font-size: clamp(15px, 1.6vw, 20px); line-height: 1.12; letter-spacing: -0.02em; }
.mini-cta { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 700; padding: 7px 12px; border-radius: 999px; background: var(--grad); color: #fff; }
.mini-image {
  aspect-ratio: 4 / 3.2; border-radius: 12px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .55), transparent 40%),
    linear-gradient(145deg, #0562D3, #1CB7FD);
  position: relative; overflow: hidden;
}
.mini-image::after { content: ""; position: absolute; left: 14%; right: 14%; bottom: -30%; height: 70%; border-radius: 50% 50% 0 0; background: rgba(1, 28, 69, .28); }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.mini-cards i { height: 46px; border-radius: 10px; background: #fff; box-shadow: 0 4px 14px -6px rgba(1, 28, 69, .2); }

.float-card {
  position: absolute;
  background: rgba(8, 22, 48, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, .75);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.float-card--google { right: -22px; top: -6px; width: 250px; padding: 14px 16px; background: #fff; color: #202124; border-color: transparent; }
.g-sponsored { font-size: 10.5px; font-weight: 700; color: #202124; }
.g-url { font-size: 11px; color: #4D5156; margin-top: 2px; }
.g-title { font-size: 14px; color: #1A0DAB; margin-top: 4px; line-height: 1.3; font-weight: 500; }
.g-line { height: 6px; border-radius: 4px; background: #E3E6EA; margin-top: 8px; }
.g-line--short { width: 64%; margin-top: 5px; }

.float-card--insta { right: -26px; bottom: 0; width: 180px; padding: 10px; animation-delay: -2.4s; }
.ig-head { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; color: var(--text); padding: 2px 2px 8px; }
.ig-avatar { width: 20px; height: 20px; border-radius: 50%; background: conic-gradient(from 200deg, #1CB7FD, #003FAB, #0A97F7, #1CB7FD); box-shadow: 0 0 0 2px #081630, 0 0 0 3px rgba(28, 183, 253, .6); }
.ig-post {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  aspect-ratio: 4 / 5; padding: 12px; border-radius: 10px;
  background: linear-gradient(160deg, #011C45 10%, #003FAB 70%, #0A97F7);
  overflow: hidden;
}
.ig-post::before { content: ""; position: absolute; width: 120px; height: 120px; right: -40px; top: -40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); }
.ig-tag { align-self: flex-start; font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 7px; border-radius: 999px; background: rgba(255, 255, 255, .16); color: #fff; }
.ig-title { font-family: var(--font-title); font-weight: 700; font-size: 14px; line-height: 1.15; color: #fff; }
.ig-dots { display: flex; gap: 4px; margin-top: 4px; }
.ig-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .35); }
.ig-dots i.on { background: #fff; }

.float-card--notify {
  left: 0; bottom: 34px;
  display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px;
  animation-delay: -4.2s;
}
.notify-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); }
.notify-icon svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.float-card--notify strong { display: block; font-size: 13px; line-height: 1.2; }
.float-card--notify small { display: block; font-size: 11.5px; color: var(--muted); }

/* segmentos */
.segments {
  position: relative; margin-top: clamp(56px, 8vw, 96px);
  display: flex; align-items: center; gap: 28px;
  padding: 22px var(--gutter);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .015);
}
.segments__label { flex-shrink: 0; font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); }
.marquee {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track li {
  display: inline-flex; align-items: center; gap: 28px; padding-right: 28px;
  font-family: var(--font-title); font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 500; color: var(--muted); white-space: nowrap;
}
.marquee__track li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================
   O QUE FAZEMOS
   ========================================================== */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  padding: 16px 16px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s;
}
.service::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent 0 70%, var(--blue-light) 85%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s;
}
.service:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service:hover::before { opacity: 1; animation: spin-border 3s linear infinite; }
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin-border { to { --angle: 360deg; } }

.service__visual {
  height: 190px; border-radius: 18px; margin-bottom: 26px;
  display: grid; place-items: center; overflow: hidden; position: relative;
  background:
    radial-gradient(circle at 50% 120%, rgba(10, 151, 247, .35), transparent 60%),
    linear-gradient(180deg, #081a3b, #06122a);
  border: 1px solid var(--line);
}
.service__tag, .service__title, .service__text, .checklist { padding: 0 12px; }
.service__tag { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-light); }
.service__title { margin-top: 10px; font-size: 1.6rem; font-weight: 600; }
.service__text { margin-top: 12px; color: var(--muted); font-size: 15px; }

.checklist { margin-top: 22px; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--text); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(28, 183, 253, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231CB7FD' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4L18 8.5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* visual: site */
.sv-browser { width: 74%; border-radius: 12px; overflow: hidden; background: #F4F8FD; box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .8); transform: translateY(26px); transition: transform .5s var(--ease); }
.service:hover .sv-browser { transform: translateY(14px); }
.sv-bar { display: flex; gap: 5px; padding: 8px 10px; background: #DDE6F2; }
.sv-bar span { width: 7px; height: 7px; border-radius: 50%; background: #B4C3D8; }
.sv-body { padding: 16px 16px 40px; display: grid; gap: 8px; }
.sv-title { display: block; height: 12px; width: 78%; border-radius: 4px; background: var(--navy); }
.sv-line { display: block; height: 7px; width: 92%; border-radius: 4px; background: #C9D5E6; }
.sv-line--s { width: 60%; }
.sv-btn { display: block; margin-top: 6px; height: 20px; width: 42%; border-radius: 999px; background: var(--grad); }

/* visual: instagram */
.sv-grid { display: grid; grid-template-columns: repeat(3, 58px); gap: 6px; transform: rotate(-8deg) translateY(6px); transition: transform .5s var(--ease); }
.service:hover .sv-grid { transform: rotate(-4deg) translateY(0); }
.sv-grid i { aspect-ratio: 4 / 5; border-radius: 8px; background: linear-gradient(160deg, #0B2A5E, #0562D3); opacity: .75; }
.sv-grid i:nth-child(odd) { background: linear-gradient(160deg, #103A7A, #0A97F7); }
.sv-grid .sv-grid__hl { opacity: 1; background: var(--grad); box-shadow: 0 0 0 2px rgba(255, 255, 255, .7), 0 12px 30px -8px rgba(28, 183, 253, .8); transform: scale(1.08); }

/* visual: google */
.sv-search { width: 80%; display: grid; gap: 10px; transition: transform .5s var(--ease); }
.service:hover .sv-search { transform: translateY(-6px); }
.sv-search__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: #fff; color: #3C4043; font-size: 12.5px; box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .8); }
.sv-search__bar svg { width: 15px; height: 15px; fill: none; stroke: #5F6368; stroke-width: 2.2; stroke-linecap: round; }
.sv-search__result { display: grid; gap: 6px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 255, 255, .96); }
.sv-search__result b { font-size: 10px; color: #202124; }
.sv-search__result .sv-title { background: #1A0DAB; width: 84%; height: 10px; }

/* ==========================================================
   COMO FUNCIONA
   ========================================================== */
.section--steps { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }

.steps { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.steps__sticky { position: sticky; top: 140px; display: grid; gap: 6px; }
.steps__num {
  font-family: var(--font-title); font-weight: 700; font-size: clamp(5rem, 11vw, 9rem); line-height: .9; letter-spacing: -0.05em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.steps__name { font-family: var(--font-title); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
.steps__num, .steps__name { transition: opacity .3s; }
.steps__sticky.is-changing .steps__num, .steps__sticky.is-changing .steps__name { opacity: 0; }

.steps__list { border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 34px 0; border-bottom: 1px solid var(--line);
  opacity: .38; transition: opacity .5s var(--ease);
}
.step.is-active { opacity: 1; }
.step__num { font-family: var(--font-title); font-weight: 600; font-size: 15px; color: var(--blue-light); padding-top: 4px; }
.step__title { font-size: 1.45rem; font-weight: 600; }
.step__text { margin-top: 10px; color: var(--muted); max-width: 540px; }

/* ==========================================================
   QUEM FAZ (seção clara)
   ========================================================== */
.section--light {
  background: var(--light-bg); color: var(--navy);
  border-radius: 44px 44px 0 0;
}
.section--light .section__title { color: var(--navy); }

.team { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
/* editor colaborativo */
.team__visual { --dev-g: #1CB7FD; --dev-l: #9AA8FF; min-width: 0; }

.editor {
  position: relative; overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 151, 247, .22), transparent 45%),
    linear-gradient(180deg, #081a3b, #051129);
  border: 1px solid rgba(1, 28, 69, .12);
  box-shadow: 0 40px 80px -34px rgba(1, 28, 69, .65);
  color: #DCE6F5;
}
.editor__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: rgba(255, 255, 255, .04); border-bottom: 1px solid var(--line); }
.editor__dots { display: flex; gap: 6px; margin-right: 10px; }
.editor__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.editor__tab { font-size: 12px; padding: 5px 12px; border-radius: 8px; color: var(--dim); }
.editor__tab.is-active { color: var(--text); background: rgba(255, 255, 255, .07); }
.editor__people { display: flex; margin-left: auto; }
.editor__avatar {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  font-style: normal; font-size: 11px; font-weight: 700; color: var(--navy);
  box-shadow: 0 0 0 2px #0a1d40;
}
.editor__avatar--g { background: var(--dev-g); }
.editor__avatar--l { background: var(--dev-l); margin-left: -3px; }

.editor__code {
  padding: 22px 0 26px;
  font-family: ui-monospace, "Cascadia Code", SFMono-Regular, Consolas, monospace;
  font-size: 13.5px; line-height: 2;
}
.editor__code p { display: grid; grid-template-columns: 48px 1fr; white-space: pre; }
.editor__code p.is-editing { background: rgba(154, 168, 255, .07); }
.editor__code code { font: inherit; }
.editor__code .ln { text-align: right; padding-right: 18px; color: #3F5378; user-select: none; }
.editor__code .t { color: #5CC8FF; }
.editor__code .a { color: #A5B4FC; }
.editor__code .s { color: #86E3B8; }

.cursor { position: relative; display: inline-block; width: 2px; height: 1.25em; margin-left: 1px; vertical-align: -0.25em; }
.cursor::before { content: ""; position: absolute; inset: 0; background: currentColor; animation: caret 1.1s steps(1) infinite; }
.cursor--g { color: var(--dev-g); }
.cursor--l { color: var(--dev-l); }
.cursor--l::before { animation-delay: -.5s; }
.cursor__tag {
  position: absolute; left: 0; bottom: 100%;
  padding: 1px 7px; border-radius: 6px 6px 6px 0;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700; line-height: 1.6; color: var(--navy);
  white-space: nowrap;
}
.cursor--g .cursor__tag { background: var(--dev-g); }
.cursor--l .cursor__tag { background: var(--dev-l); bottom: auto; top: 100%; border-radius: 0 6px 6px 6px; }
@keyframes caret { 0%, 100% { opacity: 1; } 50% { opacity: .15; } }

.editor__status {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 16px; border-top: 1px solid var(--line);
  font-size: 11.5px; color: var(--muted); background: rgba(0, 0, 0, .18);
}
.editor__status span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.editor__live { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 3px rgba(52, 211, 153, .2); }

.members { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.member {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 16px;
  background: var(--light-card); border: 1px solid var(--light-line);
}
.member__mark { flex-shrink: 0; width: 10px; height: 34px; border-radius: 6px; }
.member__mark--g { background: linear-gradient(180deg, #1CB7FD, #0562D3); }
.member__mark--l { background: linear-gradient(180deg, #9AA8FF, #4B5BD6); }
.member strong { display: block; font-family: var(--font-title); font-size: 1rem; font-weight: 600; line-height: 1.3; }
.member small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--light-muted); }

.team__text { margin-top: 20px; font-size: 1.06rem; color: var(--light-muted); max-width: 560px; }

.values { margin-top: clamp(56px, 8vw, 88px); display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value {
  display: flex; gap: 14px; padding: 22px 24px;
  background: var(--light-card); border: 1px solid var(--light-line); border-radius: 18px;
}
.value svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; fill: none; stroke: var(--blue-mid); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; }
.value p { margin-top: 4px; font-size: 14.5px; color: var(--light-muted); }

/* ==========================================================
   DÚVIDAS
   ========================================================== */
.section--rounded { margin-top: -44px; background: var(--bg); border-radius: 44px 44px 0 0; }
.faq-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-wrap .section__head { position: sticky; top: 140px; margin-bottom: 0; }

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 26px 56px 26px 0;
  font-family: var(--font-title); font-size: 1.15rem; font-weight: 500;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--blue-light); }
.faq__item summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 32px; height: 32px; margin-top: -16px;
  border-radius: 50%; border: 1px solid var(--line-strong);
  background:
    linear-gradient(var(--text), var(--text)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--text), var(--text)) center / 1.5px 12px no-repeat;
  transition: transform .35s var(--ease), background-color .35s, border-color .35s;
}
.faq__item[open] summary::after {
  transform: rotate(45deg); border-color: transparent;
  background-color: rgba(28, 183, 253, .16);
}
.faq__item::details-content { block-size: 0; overflow: hidden; transition: block-size .4s var(--ease), content-visibility .4s allow-discrete; }
.faq__item[open]::details-content { block-size: auto; }
.faq__body p { padding: 0 56px 28px 0; color: var(--muted); }

/* ==========================================================
   CONTATO
   ========================================================== */
.section--contact { background: radial-gradient(ellipse 60% 50% at 80% 40%, rgba(0, 63, 171, .25), transparent 70%), var(--bg); }
.contact { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 6vw, 80px); align-items: start; }

.contact__points { margin-top: 36px; display: grid; gap: 12px; }
.value--dark { background: var(--surface); border-color: var(--line); }
.value--dark svg { stroke: var(--blue-light); }
.value--dark p { color: var(--muted); }

.wa-card {
  margin-top: 12px;
  display: flex; align-items: center; gap: 16px; padding: 18px 22px;
  border-radius: 18px; border: 1px solid rgba(37, 211, 102, .28);
  background: linear-gradient(135deg, rgba(37, 211, 102, .1), rgba(37, 211, 102, .02));
  transition: transform .3s var(--ease), border-color .3s;
}
.wa-card:hover { transform: translateY(-3px); border-color: rgba(37, 211, 102, .55); }
.wa-card__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: #25D366; }
.wa-card__icon svg { width: 26px; height: 26px; fill: #fff; }
.wa-card__text { flex: 1; min-width: 0; }
.wa-card__text small { display: block; font-size: 12.5px; color: var(--muted); }
.wa-card__text strong { display: block; font-family: var(--font-title); font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
.wa-card__text span { display: block; font-size: 13px; color: var(--muted); }
.wa-card__arrow { width: 20px; height: 20px; fill: none; stroke: var(--text); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.form-card {
  position: relative;
  padding: clamp(24px, 3.5vw, 40px);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 26, 56, .9), rgba(6, 16, 36, .9));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8);
}

.form { display: grid; gap: 18px; }
.form[hidden] { display: none; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hidden-field { position: absolute; left: -9999px; }

.field { display: grid; gap: 8px; min-width: 0; margin: 0; padding: 0; border: 0; }
.field label, .field legend { font-size: 14px; font-weight: 600; padding: 0; }
.field em { font-style: normal; font-weight: 400; color: var(--dim); }

.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border-radius: 12px; border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, .22);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none; cursor: pointer; padding-right: 40px;
  background: rgba(0, 0, 0, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393A6C4' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center / 18px no-repeat;
}
.field select:invalid { color: var(--dim); }
.field select option { color: #0B1A33; }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background-color: rgba(0, 0, 0, .3);
  box-shadow: 0 0 0 4px rgba(10, 151, 247, .18);
}

.field__error { display: none; font-size: 13px; color: #FF8A8A; }
.field.has-error input, .field.has-error select { border-color: #FF6B6B; }
.field.has-error .field__error { display: block; }

.options { display: flex; flex-wrap: wrap; gap: 8px; }
.option { position: relative; cursor: pointer; }
.option input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.option span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line-strong); background: rgba(0, 0, 0, .18);
  transition: all .2s;
}
.option input:checked + span { color: #fff; border-color: var(--blue); background: rgba(10, 151, 247, .18); }
.option input:focus-visible + span { outline: 2px solid var(--blue-light); outline-offset: 2px; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--muted); cursor: pointer; }
.consent input { flex-shrink: 0; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--blue); cursor: pointer; }
.consent.has-error span { color: #FF8A8A; }

.form__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.form__progress { font-size: 13px; color: var(--dim); }
.form__progress.is-complete { color: var(--blue-light); }

.form-success { text-align: center; padding: 48px 12px; }
.form-success[hidden] { display: none; }
.form-success:focus { outline: none; }
.form-success__icon { width: 64px; height: 64px; margin: 0 auto; border-radius: 20px; display: grid; place-items: center; background: var(--grad); box-shadow: 0 16px 40px -12px rgba(28, 183, 253, .6); }
.form-success__icon svg { width: 32px; height: 32px; fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin-top: 24px; font-size: 1.7rem; }
.form-success p { margin: 10px auto 28px; max-width: 360px; color: var(--muted); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { padding: 72px 0 36px; border-top: 1px solid var(--line); background: #020814; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin-top: 16px; max-width: 320px; font-size: 14.5px; color: var(--muted); }
.footer__col { display: grid; align-content: start; gap: 12px; font-size: 15px; color: var(--muted); }
.footer__col a:hover { color: var(--text); }
.footer__title { font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: 13px; color: var(--dim); }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7);
  transform: translateY(120px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s, box-shadow .3s;
}
.wa-float.is-visible { transform: none; opacity: 1; }
.wa-float:hover { box-shadow: 0 18px 40px -10px rgba(37, 211, 102, .9); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ==========================================================
   RESPONSIVO
   ========================================================== */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .nav__toggle { display: block; margin-left: 0; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 720px; }
  .hero__visual { max-width: 640px; width: 100%; margin: 0 auto; }

  .services { grid-template-columns: 1fr; max-width: 640px; }
  .service { display: grid; grid-template-columns: 1fr; }

  .team { grid-template-columns: 1fr; }
  .team__visual { max-width: 620px; }
  .team__copy { order: -1; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-wrap .section__head { position: static; margin-bottom: 8px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .nav { inset: 10px 0 auto; }
  .nav__pill { padding: 6px 6px 6px 14px; gap: 10px; }
  .nav__cta { display: none; }
  .nav__toggle { margin-left: auto; }
  .brand__mark { width: 30px; }
  .brand__name { font-size: 16.5px; }

  .hero__actions .btn { width: 100%; }
  .hero__visual { padding: 56px 0 96px; }
  .float-card--google { right: -6px; top: 0; width: 205px; padding: 10px 12px; }
  .g-title { font-size: 12.5px; }
  .float-card--insta { right: -6px; bottom: 0; width: 124px; padding: 7px; }
  .ig-title { font-size: 10.5px; }
  .ig-tag { font-size: 7px; letter-spacing: .06em; white-space: nowrap; }
  .chip { font-size: 12px; }
  .ig-head { font-size: 9.5px; padding-bottom: 6px; }
  .float-card--notify { left: -4px; bottom: 22px; padding: 8px 12px 8px 8px; }
  .notify-icon { width: 28px; height: 28px; border-radius: 8px; }
  .float-card--notify strong { font-size: 12px; }
  .float-card--notify small { font-size: 10.5px; }
  .mini-links { display: none; }
  .mini-hero { grid-template-columns: 1fr; }
  .mini-image { display: none; }
  .mini-title { font-size: 17px; }

  .segments { flex-direction: column; align-items: flex-start; gap: 12px; }
  .marquee { width: 100%; }

  .steps { grid-template-columns: 1fr; }
  .steps__sticky { display: none; }
  .step { opacity: 1; grid-template-columns: 40px 1fr; gap: 12px; padding: 26px 0; }

  .section--light, .section--rounded { border-radius: 30px 30px 0 0; }
  .section--rounded { margin-top: -30px; }
  .editor__code { font-size: 11px; padding: 18px 0 20px; }
  .editor__code p { grid-template-columns: 34px 1fr; }
  .editor__code .ln { padding-right: 12px; }
  .editor__tab:not(.is-active) { display: none; }
  .members { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .value { padding: 18px; }

  .faq__item summary { font-size: 1.05rem; padding: 22px 48px 22px 0; }
  .faq__body p { padding-right: 0; }

  .form__row { grid-template-columns: 1fr; }
  .form__footer { flex-direction: column-reverse; align-items: stretch; text-align: center; }
  .form__footer .btn { width: 100%; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee__track li[aria-hidden="true"] { display: none; }
}
