/* ---------------------------------------------------------------
   TURM — Design Tokens
---------------------------------------------------------------- */
:root {
  --bg:           #080A0D;
  --surface:      #0A0F1A;
  --accent:       #0057D9;
  --accent-soft:  #00A3FF;
  --accent-deep:  #0B1F3A;
  --teal:         #7DE3FF;
  --ink-100:      #F4F7FA;
  --ink-300:      #D9E1EA;
  --ink-400:      #8B95A1;
  --ink-500:      #A7B0BA;
  --ink-600:      #6F7782;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease-out:     cubic-bezier(.2,.8,.2,1);
  --maxw:         1280px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; min-height: 100%; }
html { scroll-behavior: smooth; background: #060810; }
body {
  font-family: var(--font-body);
  color: var(--ink-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  background:
    radial-gradient(1200px 800px at 80% 6%,  rgba(0,87,217,0.10),  transparent 60%),
    radial-gradient(900px 700px  at 12% 26%, rgba(0,163,255,0.06), transparent 65%),
    radial-gradient(1100px 800px at 88% 52%, rgba(0,87,217,0.07),  transparent 60%),
    radial-gradient(900px 700px  at 8% 78%,  rgba(125,227,255,0.05), transparent 65%),
    linear-gradient(180deg, #070910 0%, #080A0D 35%, #070910 65%, #06080E 100%);
  background-attachment: fixed;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.6;
}
::selection { background: rgba(0,87,217,0.35); color: #fff; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, video { display: block; max-width: 100%; }
body::-webkit-scrollbar { display: none; }
body { scrollbar-width: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------------
   Navigation
---------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(8,10,13,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.brand-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0,163,255,0.35));
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 70%, #00A3FF 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: none; gap: 2rem; font-size: 13px; color: var(--ink-500); }
.nav-links a { transition: color .25s ease; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  transition: transform .3s var(--ease-out), background .3s, border-color .3s;
}
.nav-cta:hover { background: rgba(0,87,217,0.18); border-color: rgba(0,87,217,0.4); transform: translateY(-1px); }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ---------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: clip; overflow-y: visible;
  isolation: isolate;
  padding: 140px 0 96px;
  display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 70% 30%, rgba(0,87,217,0.28), transparent 60%),
    radial-gradient(700px 500px at 20% 80%, rgba(0,163,255,0.18), transparent 65%),
    linear-gradient(180deg, #060810 0%, #080A0D 100%);
}
.hero-bg-inner {
  position: absolute;
  inset: -8% -6%;
  will-change: transform;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #080A0D;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
  opacity: 0.85;
  transform: scale(0.90);
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(8,10,13,0) 0%, rgba(8,10,13,0.65) 70%, rgba(8,10,13,0.95) 100%),
    linear-gradient(180deg, rgba(8,10,13,0.55) 0%, rgba(8,10,13,0.25) 35%, rgba(8,10,13,0.85) 100%),
    linear-gradient(90deg, rgba(8,10,13,0.6) 0%, rgba(8,10,13,0) 50%, rgba(8,10,13,0.6) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}
.blob.b1 { width: 560px; height: 560px; background: #0B1F3A; top: -120px; left: -120px; }
.blob.b2 { width: 480px; height: 480px; background: #0057D9; bottom: -160px; right: -100px; opacity: .42; }
.blob.b3 { width: 360px; height: 360px; background: #7DE3FF; top: 40%; left: 45%; opacity: .15; }

.grid-bg {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  background-attachment: fixed;
  mask-image: none;
  -webkit-mask-image: none;
}

.scan-lines {
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  background: repeating-linear-gradient(
    to right,
    rgba(0,163,255,0.04) 0,
    rgba(0,163,255,0.04) 1px,
    transparent 1px,
    transparent 220px
  );
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

/* ---------------------------------------------------------------
   Hero Content — CENTERED
---------------------------------------------------------------- */
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
  width: 100%;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(0,87,217,0.08);
  border: 1px solid rgba(0,163,255,0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px -10px rgba(0,87,217,0.4);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  position: relative;
}
.eyebrow .dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--teal); opacity: .4;
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(.7); opacity: .6; } 100% { transform: scale(2.4); opacity: 0; } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 1.5rem 0 1.25rem;
  color: #fff;
  text-shadow: 0 0 40px rgba(255,255,255,0.18), 0 0 80px rgba(0,87,217,0.22);
}
.hero h1 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 45%, #00A3FF 80%, #0057D9 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .word { display: inline-block; }

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink-300);
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.cta-group {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
  white-space: nowrap;
}
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .35s var(--ease-out);
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease-out);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn-primary {
  background: linear-gradient(180deg, #D9E1EA 0%, #00A3FF 55%, #0057D9 100%);
  color: #061021;
  box-shadow:
    0 0 40px -5px rgba(0,87,217,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.45);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 60px -5px rgba(0,87,217,0.85),
    inset 0 0 0 1px rgba(255,255,255,0.55);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ink-300);
  backdrop-filter: blur(14px);
}
.btn-ghost:hover {
  transform: translateY(-2px) scale(1.02);
  color: #fff;
  border-color: rgba(0,163,255,0.45);
  background: rgba(0,87,217,0.12);
  box-shadow: 0 0 30px -8px rgba(0,163,255,0.5);
}

.trust {
  display: flex; align-items: center; gap: .75rem;
  color: var(--ink-500);
  font-size: 13px;
  justify-content: center;
}
.trust .divider {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,227,255,0.5), transparent);
}

/* ---------------------------------------------------------------
   Service cards stage — BELOW the text (scattered/floating)
---------------------------------------------------------------- */
.service-stage {
  position: relative;
  width: 100%;
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.glass-card {
  position: relative;
  padding: 1.05rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 40%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.2);
  border-left-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.55), inset 0 0 40px rgba(255,255,255,0.02);
  display: flex; align-items: center; gap: .85rem;
  min-width: 230px;
  text-align: left;
  transition: box-shadow .5s var(--ease-out);
  will-change: transform;
}
.glass-card:hover {
  box-shadow: 0 30px 80px -12px rgba(0,87,217,0.4), inset 0 0 40px rgba(255,255,255,0.03);
}
.glass-card .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(0,163,255,0.18), rgba(0,87,217,0.08));
  border: 1px solid rgba(0,163,255,0.25);
  color: var(--teal);
  flex-shrink: 0;
}
.glass-card .icon svg { width: 18px; height: 18px; }
.glass-card .meta { display: flex; flex-direction: column; gap: 2px; }
.glass-card .label { font-size: 13px; font-weight: 500; color: #fff; }
.glass-card .tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.c1, .c2, .c3, .c4, .c5 { top: auto; left: auto; right: auto; }

.stats {
  position: relative;
  z-index: 4;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  z-index: 4;
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(125,227,255,0.6), transparent);
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ''; position: absolute; top: -50%; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, #7DE3FF, transparent);
  animation: scrollMove 2s ease-in-out infinite;
}
@keyframes scrollMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(240%); }
}

@keyframes animationIn {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.js-ready .reveal { opacity: 0; }
.js-ready .reveal.is-visible { animation: animationIn 0.8s ease-out both; }

@media (max-width: 760px) {
  .hero { padding: 120px 0 80px; }
  .stats { margin-top: 3rem; }
  .stats .stat .num { font-size: 1.4rem; }
  .scroll-cue { display: none; }
}

/* ---------------------------------------------------------------
   Dobra 2 — Identificação do Problema
---------------------------------------------------------------- */
.problem {
  position: relative;
  padding: 8rem 0 9rem;
  overflow-x: clip; overflow-y: visible;
  isolation: isolate;
  background: transparent;
}
.problem .grid-bg-static {
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
}

.problem-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto 4rem;
}
.problem h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 1.25rem 0 1.25rem;
  color: #fff;
}
.problem h2 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 50%, #00A3FF 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.problem-lede {
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.65;
  color: var(--ink-300);
  max-width: 720px;
}

.symptoms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 auto 3.5rem;
  max-width: 1080px;
}
@media (min-width: 700px) {
  .symptoms { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (min-width: 1080px) {
  .symptoms { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.symptom {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.008) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.07);
  border-top-color: rgba(255,255,255,0.15);
  border-left-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 50px -14px rgba(0,0,0,0.55), inset 0 0 30px rgba(255,255,255,0.015);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s;
}
.symptom::before {
  content: '';
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,227,255,0.45), transparent);
  opacity: .6;
}
.symptom:hover {
  transform: translateY(-4px);
  border-color: rgba(0,163,255,0.32);
  box-shadow: 0 28px 60px -16px rgba(0,87,217,0.35), inset 0 0 30px rgba(125,227,255,0.04);
}
.symptom .ic {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(0,163,255,0.18), rgba(0,87,217,0.06));
  border: 1px solid rgba(0,163,255,0.28);
  color: var(--teal);
}
.symptom .ic svg { width: 18px; height: 18px; }
.symptom .num {
  position: absolute;
  top: 1.2rem; right: 1.3rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-600);
}
.symptom p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-300);
}
.symptom p b {
  color: #fff;
  font-weight: 500;
}

.support-block {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(0,87,217,0.10) 0%, rgba(0,87,217,0.04) 50%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(0,163,255,0.22);
  border-top-color: rgba(125,227,255,0.32);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 24px 60px -18px rgba(0,87,217,0.35), inset 0 0 50px rgba(0,163,255,0.04);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.support-block .marker {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(0,163,255,0.28), rgba(0,87,217,0.12));
  border: 1px solid rgba(125,227,255,0.4);
  color: var(--teal);
  box-shadow: 0 0 24px -6px rgba(0,163,255,0.6);
}
.support-block .marker svg { width: 20px; height: 20px; }
.support-block p {
  font-size: clamp(.98rem, 1.15vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink-300);
}
.support-block p b {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 760px) {
  .problem { padding: 5rem 0 6rem; }
  .support-block { padding: 1.5rem 1.25rem; flex-direction: column; gap: 1rem; }
  .problem-head { margin-bottom: 2.5rem; }
}

/* ---------------------------------------------------------------
   Dobra 3 — Solução
---------------------------------------------------------------- */
.solution {
  position: relative;
  padding: 8rem 0 9rem;
  overflow-x: clip; overflow-y: visible;
  isolation: isolate;
  background: transparent;
}
.solution::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
}
.solution .sol-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}
.solution .sol-blob.a { width: 520px; height: 520px; background: #0057D9; opacity: .10; top: 10%; left: -120px; }
.solution .sol-blob.b { width: 480px; height: 480px; background: #7DE3FF; opacity: .05; bottom: -80px; right: -100px; }

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 980px) {
  .solution-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 4rem; }
}

.solution-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 540px;
}
.solution h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 1.25rem 0 1.25rem;
  color: #fff;
}
.solution h2 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 50%, #00A3FF 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.solution-lede {
  font-size: clamp(.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--ink-300);
  margin-bottom: 1.75rem;
}
.solution-mini {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.solution-mini .divider {
  width: 28px; height: 1px;
  background: linear-gradient(90deg, rgba(125,227,255,0.5), transparent);
}

.hub {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: visible;
}
.hub-globe {
  position: absolute;
  inset: -25% -25% -25% -40%;
  z-index: 0;
  pointer-events: none;
}
.hub-globe canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hub-pillar {
  position: absolute;
  z-index: 2;
  display: flex; align-items: center; gap: .8rem;
  padding: .85rem 1.15rem;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(14,22,40,0.92) 0%, rgba(10,15,26,0.85) 55%, rgba(8,12,22,0.82) 100%);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(125,227,255,0.45);
  border-top-color: rgba(255,255,255,0.5);
  box-shadow:
    0 18px 44px -10px rgba(0,0,0,0.75),
    0 0 0 1px rgba(0,163,255,0.08),
    0 0 36px -8px rgba(0,163,255,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
  white-space: nowrap;
  animation: floatPillar 6s ease-in-out infinite;
}
.hub-pillar:hover {
  border-color: rgba(0,163,255,0.5);
  box-shadow: 0 20px 50px -10px rgba(0,87,217,0.55), 0 0 40px -8px rgba(0,163,255,0.5);
}
.hub-pillar .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(0,163,255,0.45), rgba(0,87,217,0.22));
  border: 1px solid rgba(125,227,255,0.55);
  color: #B6ECFF;
  box-shadow: 0 0 16px -4px rgba(0,163,255,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hub-pillar .ic svg { width: 17px; height: 17px; }
.hub-pillar .label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.hub-pillar.p1 { top: 12%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hub-pillar.p2 { top: 36%; right: 6%; animation-delay: 1.2s; }
.hub-pillar.p3 { bottom: 14%; right: 18%; animation-delay: 2.4s; }
.hub-pillar.p4 { bottom: 14%; left: 18%; animation-delay: 3.6s; }
.hub-pillar.p5 { top: 36%; left: 6%; animation-delay: 4.8s; }

@keyframes floatPillar {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
.hub-pillar.p1:hover { transform: translateX(-50%) scale(1.06); }
.hub-pillar.p2:hover, .hub-pillar.p3:hover,
.hub-pillar.p4:hover, .hub-pillar.p5:hover { transform: scale(1.06); }

.complement {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(0,87,217,0.10) 0%, rgba(0,87,217,0.04) 50%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(0,163,255,0.22);
  border-top-color: rgba(125,227,255,0.32);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 24px 60px -18px rgba(0,87,217,0.35), inset 0 0 50px rgba(0,163,255,0.04);
  text-align: center;
}
.complement p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.4;
  color: var(--ink-100);
  letter-spacing: -0.01em;
}
.complement p b {
  color: #fff;
  font-weight: 400;
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .hub { max-width: 560px; }
}
@media (max-width: 720px) {
  .solution { padding: 5rem 0 6rem; }
  .hub { max-width: 460px; aspect-ratio: 1 / 1; }
  .hub-pillar { padding: .55rem .75rem; }
  .hub-pillar .label { font-size: 11.5px; }
  .complement { padding: 1.5rem 1.25rem; }
}

/* ---------------------------------------------------------------
   SERVICES — Dobra 4
---------------------------------------------------------------- */
.services {
  position: relative;
  padding: 7rem 0 8rem;
  background: transparent;
  overflow-x: clip; overflow-y: visible;
}
.services::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  opacity: 0;
}
.services .container { position: relative; z-index: 2; }

.services-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
  margin-bottom: 3.5rem;
}
.services-head .eyebrow { margin-bottom: 1.25rem; }
.services h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-100);
}
.services h2 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 55%, #00A3FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-lede {
  margin-top: 1.25rem;
  color: var(--ink-500);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 560px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.05);
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.4,0,.2,1),
              box-shadow .45s cubic-bezier(.4,0,.2,1),
              border-color .45s cubic-bezier(.4,0,.2,1),
              background .45s cubic-bezier(.4,0,.2,1);
}
.service-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
  border-color: rgba(255,255,255,.12);
  box-shadow:
    0 25px 80px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.12),
    0 0 70px rgba(0,87,217,.28);
}

.service-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--ink-300);
  flex-shrink: 0;
  transition: background .45s ease, border-color .45s ease, color .45s ease;
}
.service-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.service-card:hover .service-icon {
  background: rgba(0,87,217,.15);
  border-color: rgba(0,87,217,.3);
  color: var(--teal);
}

.service-index {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--ink-600);
}

.service-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--ink-100);
}
.service-desc {
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.55;
}

.service-ideal {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .85rem 0 0;
  border-top: 1px dashed rgba(255,255,255,.08);
}
.service-ideal .label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.service-ideal p {
  color: var(--ink-300);
  font-size: .88rem;
  line-height: 1.5;
}

.service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--ink-100);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  width: fit-content;
}
.service-cta:hover {
  background: rgba(0,163,255,.12);
  border-color: rgba(0,163,255,.4);
  transform: translateX(2px);
}
.service-cta svg { width: 14px; height: 14px; }

.services-close {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(0,87,217,.10), rgba(125,227,255,.04));
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.services-close .pulse {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 0 rgba(0,163,255,.6);
  animation: pulseDot 2.2s infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(0,163,255,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(0,163,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,163,255,0); }
}
.services-close p {
  color: var(--ink-300);
  font-size: 1.02rem;
  line-height: 1.55;
}
.services-close p b {
  color: #fff;
  font-weight: 500;
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 720px) {
  .services { padding: 5rem 0 6rem; }
  .services-close { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
}

/* ============ DOBRA 5 — BENEFITS (Split Capabilities) ============ */
.benefits {
  position: relative;
  padding: 8rem 0 9rem;
  overflow-x: clip; overflow-y: visible;
  isolation: isolate;
  background: transparent;
}
.benefits::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1; pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
}
.benefits .container { position: relative; z-index: 1; }

.benefits-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 960px) {
  .benefits-split { grid-template-columns: 1fr; gap: 3.5rem; }
}

.benefits-left .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.benefits-left .eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}
.benefits-left h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 1.25rem 0 1.75rem;
  color: #fff;
}
.benefits-left h2 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefits-left p {
  color: var(--ink-300);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 460px;
}
.benefits-cta {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.75rem;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: #fff;
  background: linear-gradient(120deg, var(--accent) 0%, #4ad5ff 60%, #7DE3FF 100%);
  border: 1px solid rgba(125,227,255,.4);
  box-shadow: 0 8px 26px -10px rgba(0,163,255,.55);
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
}
.benefits-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px -10px rgba(0,163,255,.7);
}
.benefits-cta svg { width: 14px; height: 14px; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 4vw, 3.5rem);
  row-gap: clamp(2.5rem, 4vw, 3.25rem);
}
@media (max-width: 540px) {
  .cap-grid { grid-template-columns: 1fr; row-gap: 2rem; }
}

.cap-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}
.cap-arrow {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.cap-arrow svg { width: 26px; height: 26px; stroke-width: 1.6; }
.cap-item:hover .cap-arrow {
  transform: translate(2px, -2px);
  border-color: rgba(0,163,255,.35);
  background: rgba(0,163,255,.06);
}

.cap-item.t-blue   .cap-arrow svg { stroke: #00A3FF; }
.cap-item.t-teal   .cap-arrow svg { stroke: #7DE3FF; }
.cap-item.t-cyan   .cap-arrow svg { stroke: #4ad5ff; }
.cap-item.t-violet .cap-arrow svg { stroke: #b78bff; }
.cap-item.t-amber  .cap-arrow svg { stroke: #ffb86b; }
.cap-item.t-rose   .cap-arrow svg { stroke: #ff7ab0; }

.ai-bolt svg { animation: ai-bolt-pulse 1.8s ease-in-out infinite; transform-origin: center; }
@keyframes ai-bolt-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); opacity: .9; }
  50%      { transform: scale(1.12); filter: drop-shadow(0 0 6px rgba(0,163,255,.55)); opacity: 1; }
}

.ai-target .target-ping {
  animation: ai-target-ping 2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes ai-target-ping {
  0%   { transform: scale(1);   opacity: .85; }
  75%  { transform: scale(2.5); opacity: 0;   }
  100% { transform: scale(2.5); opacity: 0;   }
}

.ai-trend .trend-line {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: ai-trend-draw 2.4s ease-in-out infinite;
}
@keyframes ai-trend-draw {
  0%   { stroke-dashoffset: 28; }
  55%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -28; }
}

.ai-gear svg { animation: ai-gear-spin 6s linear infinite; transform-origin: center; }
@keyframes ai-gear-spin { to { transform: rotate(360deg); } }

.ai-eye .eye-pupil {
  transform-origin: center;
  animation: ai-eye-look 3.6s ease-in-out infinite;
}
@keyframes ai-eye-look {
  0%, 100%   { transform: translate(0,0); }
  20%        { transform: translate(2.5px,0); }
  45%        { transform: translate(-2.5px,0); }
  65%, 75%   { transform: scaleY(.15); }
  80%        { transform: translate(0,0) scaleY(1); }
}

.ai-sync svg { animation: ai-sync-rot 3.2s ease-in-out infinite; transform-origin: center; }
@keyframes ai-sync-rot {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(180deg); }
}

@media (prefers-reduced-motion: reduce) {
  .ai-bolt svg, .ai-target .target-ping, .ai-gear svg, .ai-sync svg,
  .ai-trend .trend-line, .ai-eye .eye-pupil { animation: none; }
}

.cap-title {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 .65rem;
  text-decoration: none;
  transition: color .3s ease;
}
.cap-title .chev {
  width: 14px; height: 14px;
  color: var(--ink-300);
  transition: transform .3s ease, color .3s ease;
}
.cap-item:hover .cap-title { color: var(--accent-soft); }
.cap-item:hover .cap-title .chev { transform: translateX(3px); color: var(--accent-soft); }

.cap-desc {
  color: var(--ink-400);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 360px;
}

@media (max-width: 720px) {
  .benefits { padding: 5rem 0 6rem; }
  .benefits-left h2 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .cap-item { grid-template-columns: 48px 1fr; gap: .85rem; }
  .cap-arrow { width: 42px; height: 42px; }
  .cap-arrow svg { width: 22px; height: 22px; }
  .cap-title { font-size: 1.2rem; }
}

/* ---------------------------------------------------------------
   DOBRA 6 — Diagnóstico
---------------------------------------------------------------- */
.diagnostic {
  position: relative;
  padding: 7rem 0 8rem;
  overflow-x: clip; overflow-y: visible;
  isolation: isolate;
}
.diagnostic::before {
  display: none;
}
.diagnostic .container { position: relative; z-index: 1; }

.diagnostic-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}
.diagnostic-head .eyebrow { margin-bottom: 1.5rem; }
.diagnostic-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.diagnostic-head h2 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 50%, #00A3FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.diagnostic-head p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink-300);
  max-width: 680px;
}

.method-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.method-head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.method-head h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: -0.015em;
  color: var(--ink-100);
}
.method-head .count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.12em;
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.method-grid::before {
  content: "";
  position: absolute;
  top: 66px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(125,227,255,0.18) 12%,
    rgba(0,163,255,0.35) 50%,
    rgba(125,227,255,0.18) 88%,
    transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.method-step {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  transition: transform .4s var(--ease-out), border-color .35s, background .35s;
  overflow: hidden;
}
.method-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(400px 200px at 20% 0%, rgba(0,163,255,0.08), transparent 65%);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  pointer-events: none;
}
.method-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0,163,255,0.28);
  background: linear-gradient(180deg, rgba(0,87,217,0.06) 0%, rgba(255,255,255,0.015) 100%);
}
.method-step:hover::after { opacity: 1; }

.method-node {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: radial-gradient(circle at 30% 30%, rgba(0,163,255,0.25), rgba(0,87,217,0.05) 70%);
  border: 1px solid rgba(0,163,255,0.35);
  box-shadow:
    0 0 0 6px rgba(8,10,13,0.9),
    0 0 30px -4px rgba(0,87,217,0.5),
    inset 0 0 14px rgba(125,227,255,0.18);
}
.method-node svg {
  width: 22px; height: 22px;
  color: var(--teal);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-node .pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(125,227,255,0.45);
  animation: methodPulse 2.6s ease-out infinite;
}
@keyframes methodPulse {
  0%   { transform: scale(.85); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.method-step .num {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-600);
}
.method-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: .55rem;
}
.method-step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-500);
}

@media (max-width: 980px) {
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid::before { display: none; }
}
@media (max-width: 560px) {
  .method-grid { grid-template-columns: 1fr; }
}

.diagnostic-cta {
  position: relative;
  margin-top: 5rem;
  padding: 3.5rem 3rem;
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(0,87,217,0.18) 0%, rgba(0,163,255,0.06) 45%, rgba(11,31,58,0.4) 100%);
  border: 1px solid rgba(0,163,255,0.22);
  overflow: hidden;
  isolation: isolate;
}
.diagnostic-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 350px at 90% 0%, rgba(125,227,255,0.18), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(0,87,217,0.25), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.diagnostic-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 30%, transparent 85%);
  z-index: -1;
  pointer-events: none;
  opacity: .6;
}

.diagnostic-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .diagnostic-cta { padding: 2.5rem 1.75rem; }
  .diagnostic-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.diagnostic-cta h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.diagnostic-cta h3 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 60%, #00A3FF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.diagnostic-cta p {
  color: var(--ink-300);
  font-size: 15px;
  line-height: 1.6;
  max-width: 480px;
}

.diagnostic-actions {
  display: flex; flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.diagnostic-actions .btn { justify-content: center; width: 100%; }
.diagnostic-actions .btn-whats {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(125,227,255,0.25);
  color: var(--ink-100);
  backdrop-filter: blur(14px);
}
.diagnostic-actions .btn-whats:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(125,227,255,0.5);
  background: rgba(125,227,255,0.08);
}
.diagnostic-micro {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-top: .4rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  background: rgba(8,10,13,0.45);
  border: 1px dashed rgba(125,227,255,0.18);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--ink-500);
}
.diagnostic-micro svg {
  flex: 0 0 14px;
  width: 14px; height: 14px;
  color: var(--teal);
  margin-top: 2px;
}

@media (max-width: 720px) {
  .diagnostic { padding: 5rem 0 6rem; }
  .diagnostic-cta { margin-top: 3.5rem; }
}

/* ---------------------------------------------------------------
   Skip to content
---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .6rem 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------------------------------------------------------------
   Hamburger menu (mobile)
---------------------------------------------------------------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink-300);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s, width .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  z-index: 49;
  background: rgba(6,8,16,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink-300);
  transition: color .25s;
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .mobile-cta {
  margin-top: 1rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #D9E1EA 0%, #00A3FF 55%, #0057D9 100%);
  color: #061021;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0 40px -5px rgba(0,87,217,0.7);
}

/* ---------------------------------------------------------------
   DOBRA 8 — Contato
---------------------------------------------------------------- */
.contato {
  position: relative;
  padding: 8rem 0 9rem;
  overflow-x: clip; overflow-y: visible; isolation: isolate;
  background: transparent;
}
.contato::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 85%);
}
.contato-blob {
  position: absolute; border-radius: 50%; filter: blur(130px);
  z-index: -1; pointer-events: none;
}
.contato-blob.a { width: 600px; height: 600px; background: #0057D9; opacity: .10; top: -100px; left: -150px; }
.contato-blob.b { width: 400px; height: 400px; background: #7DE3FF; opacity: .05; bottom: -80px; right: -80px; }

.contato-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 4rem; align-items: start;
}
@media (min-width: 960px) {
  .contato-inner { grid-template-columns: 1fr 1.1fr; }
}

.contato-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.contato h2 {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08; letter-spacing: -0.025em; color: #fff;
}
.contato h2 .grad {
  background: linear-gradient(120deg, #ffffff 0%, #7DE3FF 50%, #00A3FF 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contato-desc {
  font-size: clamp(1rem, 1.15vw, 1.05rem);
  line-height: 1.65; color: var(--ink-300); max-width: 480px;
}
.contato-whats {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1rem 1.5rem; border-radius: 999px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4ade80; font-weight: 500; font-size: 15px;
  transition: transform .35s var(--ease-out), background .35s, box-shadow .35s;
  width: fit-content;
}
.contato-whats:hover {
  transform: translateY(-2px);
  background: rgba(37,211,102,0.18);
  box-shadow: 0 8px 28px -8px rgba(37,211,102,0.35);
}
.contato-whats svg { width: 20px; height: 20px; }

.contato-info { display: flex; flex-direction: column; gap: 1rem; margin-top: .5rem; }
.contato-info-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: 14px; color: var(--ink-500);
}
.contato-info-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }

.contato-form {
  position: relative;
  padding: 2.5rem 2.25rem;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.008) 100%);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.5), inset 0 0 40px rgba(255,255,255,0.015);
}
.contato-form::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,227,255,0.4), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: .85rem 1rem;
  font-family: var(--font-body); font-size: 14px; color: #fff;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-600); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,163,255,0.45);
  background: rgba(0,163,255,0.06);
  box-shadow: 0 0 0 3px rgba(0,87,217,0.15);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: #080A0D; color: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 1rem; border-radius: 999px;
  background: linear-gradient(180deg, #D9E1EA 0%, #00A3FF 55%, #0057D9 100%);
  color: #061021; font-weight: 600; font-size: 15px;
  box-shadow: 0 0 40px -5px rgba(0,87,217,0.6);
  transition: transform .35s var(--ease-out), box-shadow .35s;
  cursor: pointer; border: none; font-family: var(--font-body);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px -5px rgba(0,87,217,0.8);
}
.form-micro {
  margin-top: .85rem; text-align: center;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.1em; color: var(--ink-600);
}

@media (max-width: 720px) {
  .contato { padding: 5rem 0 6rem; }
  .contato-form { padding: 1.75rem 1.5rem; }
}

/* ---------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: transparent;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .brand { font-size: 1.25rem; }
.footer-tagline {
  font-size: 13.5px; line-height: 1.6; color: var(--ink-500); max-width: 280px;
}
.footer-social {
  display: flex; gap: .75rem; margin-top: .5rem;
}
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-500);
  transition: color .25s, border-color .25s, background .25s;
}
.footer-social a:hover { color: #fff; border-color: rgba(0,163,255,0.4); background: rgba(0,163,255,0.08); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a {
  font-size: 13.5px; color: var(--ink-500);
  transition: color .25s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--ink-600);
}
.footer-legal {
  display: flex; gap: 1.5rem;
}
.footer-legal a {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--ink-600);
  transition: color .25s;
}
.footer-legal a:hover { color: var(--ink-300); }

/* ---------------------------------------------------------------
   Banner LGPD
---------------------------------------------------------------- */
.lgpd-banner {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 3rem); max-width: 720px;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  background: rgba(8,10,18,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 48px -8px rgba(0,0,0,0.6);
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
  transition: opacity .4s, transform .4s;
}
.lgpd-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
.lgpd-text {
  flex: 1; font-size: 12.5px; line-height: 1.55; color: var(--ink-400);
  min-width: 240px;
}
.lgpd-text a { color: var(--accent-soft); text-decoration: underline; }
.lgpd-actions { display: flex; gap: .65rem; flex-shrink: 0; }
.lgpd-accept {
  padding: .55rem 1.1rem; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 500; cursor: pointer; border: none;
  font-family: var(--font-body);
  transition: background .25s;
}
.lgpd-accept:hover { background: var(--accent-soft); }
.lgpd-dismiss {
  padding: .55rem 1.1rem; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink-500); font-size: 12px; cursor: pointer;
  font-family: var(--font-body);
  transition: border-color .25s, color .25s;
}
.lgpd-dismiss:hover { border-color: rgba(255,255,255,0.2); color: var(--ink-300); }
</content>
</invoke>