/* ============== RESET & BASE ============== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #ffffff;
  color: #1a1d2b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --card: #ffffff;
  --line: rgba(15, 18, 35, 0.08);
  --text: #1a1d2b;
  --muted: #5a6076;
  --primary: #6d4dff;
  --accent: #0ea5b7;
  --grad: linear-gradient(135deg, #6d4dff 0%, #06b6d4 100%);
  --radius: 16px;
  --radius-lg: 24px;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #0d0f1c;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow--light { color: #ffffff; opacity: 0.9; }

.section { padding: 110px 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head h2 { margin-bottom: 16px; }
.section__head p { font-size: 1.05rem; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(124,92,255,0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(124,92,255,0.7); }

.btn--ghost {
  background: #ffffff;
  border: 1px solid var(--line);
  color: #0d0f1c;
}
.btn--ghost:hover { background: #f6f7fb; border-color: rgba(109,77,255,0.3); }

/* ----- WhatsApp ----- */
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(37,211,102,0.55);
}
.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(37,211,102,0.7);
}
.btn--whatsapp svg { flex-shrink: 0; }

/* ----- Botão flutuante WhatsApp ----- */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 2px 6px rgba(0,0,0,0.12);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6), 0 4px 8px rgba(0,0,0,0.15);
  animation: none;
}
.whatsapp-float__tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0d0f1c;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.whatsapp-float__tip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #0d0f1c;
}
.whatsapp-float:hover .whatsapp-float__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
@media (max-width: 640px) {
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float__tip { display: none; }
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem; color: #0d0f1c; }
.logo__text span { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo__mark { display: inline-flex; }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav__links a:hover { color: #0d0f1c; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: #0d0f1c; border-radius: 2px; transition: .3s; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.orb--1 { width: 520px; height: 520px; background: #c7baff; top: -160px; left: -120px; }
.orb--2 { width: 460px; height: 460px; background: #a5f3fc; bottom: -180px; right: -100px; opacity: 0.45; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,18,35,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,18,35,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 90px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(109,77,255,0.08);
  border: 1px solid rgba(109,77,255,0.25);
  font-size: 0.82rem;
  color: #4b3fb8;
  margin-bottom: 24px;
  font-weight: 500;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(34,211,238,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34,211,238,0); }
}

.hero__lead {
  font-size: 1.12rem;
  margin: 22px 0 36px;
  color: #3a405a;
  max-width: 560px;
}
.hero__lead strong { color: #0d0f1c; font-weight: 600; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__proof {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong {
  font-size: 1.8rem;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__proof span { font-size: 0.85rem; color: var(--muted); }

/* HERO VISUAL */
.hero__visual {
  position: relative;
  height: 480px;
}
.card-ai {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #ffffff 0%, #f6f7fb 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px -20px rgba(15,18,35,0.15),
    0 0 0 1px rgba(109,77,255,0.06) inset;
  overflow: hidden;
}
.card-ai__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fafbff;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--r { background: #ff5f56; }
.dot--y { background: #ffbd2e; }
.dot--g { background: #27c93f; }
.card-ai__title { margin-left: 10px; font-size: 0.85rem; color: var(--muted); font-family: 'Space Grotesk', sans-serif; }

.card-ai__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.chat {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  max-width: 86%;
  line-height: 1.5;
}
.chat--in {
  background: #f1f2f8;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #2a2f47;
}
.chat--out {
  background: var(--grad);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  position: relative;
}
.chat--out b { color: #fff; }
.typing { display: inline-flex; gap: 3px; margin-right: 6px; vertical-align: middle; }
.typing i {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: typing 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: .15s; }
.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%,60%,100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.metrics {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.metrics > div {
  background: #fafbff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.metrics span { display: block; font-size: 0.72rem; color: var(--muted); margin-bottom: 4px; }
.metrics b { color: #0d0f1c; font-size: 0.95rem; font-family: 'Space Grotesk', sans-serif; }

.float-tag {
  position: absolute;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0d0f1c;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px -10px rgba(15,18,35,0.18);
  animation: float 4s ease-in-out infinite;
}
.tag--1 { top: -16px; left: -20px; animation-delay: 0s; }
.tag--2 { top: 40%; right: -30px; animation-delay: 1s; }
.tag--3 { bottom: -10px; left: 30%; animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* LOGOS BAR */
.logos {
  position: relative;
  z-index: 1;
  padding: 32px 0 60px;
  border-top: 1px solid var(--line);
}
.logos p { text-align: center; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 24px; color: var(--muted); }
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(15,18,35,0.4);
}
.logos__row span { transition: color .2s; }
.logos__row span:hover { color: #0d0f1c; }

/* ============== PAIN ============== */
.pain { background: var(--bg-soft); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 16px -8px rgba(15,18,35,0.06);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.pain__item:hover { transform: translateY(-4px); border-color: rgba(109,77,255,0.35); box-shadow: 0 12px 30px -12px rgba(109,77,255,0.2); }
.pain__item > span { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.pain__item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pain__item p { font-size: 0.92rem; }

/* ============== SERVICES ============== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 16px -8px rgba(15,18,35,0.06);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.service:hover {
  transform: translateY(-6px);
  border-color: rgba(109,77,255,0.4);
  box-shadow: 0 20px 50px -20px rgba(109,77,255,0.25);
}
.service__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(109,77,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
}
.service__icon svg { width: 24px; height: 24px; }
.service h3 { margin-bottom: 10px; }
.service > p { margin-bottom: 18px; font-size: 0.95rem; }
.service ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.service ul li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: var(--grad);
  opacity: 0.85;
  clip-path: polygon(0 50%, 40% 100%, 100% 0, 80% 0, 40% 70%, 15% 45%);
}
.service--highlight {
  border-color: rgba(109,77,255,0.4);
  background: linear-gradient(180deg, rgba(109,77,255,0.06) 0%, #ffffff 100%);
  box-shadow: 0 16px 40px -16px rgba(109,77,255,0.25);
}
.service__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============== SKILLS HUB (Diferencial) ============== */
.skills-hub {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f3f1ff 100%);
}
.skills-hub__bg { position: absolute; inset: 0; pointer-events: none; }
.orb--3 { width: 480px; height: 480px; background: #c7baff; top: -120px; right: -100px; opacity: 0.5; }
.orb--4 { width: 420px; height: 420px; background: #a5f3fc; bottom: -160px; left: -80px; opacity: 0.45; }

.skills-hub__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.skills-hub__text h2 { margin-bottom: 20px; }
.skills-hub__text > p { font-size: 1.05rem; margin-bottom: 36px; }
.skills-hub__text > p strong { color: #0d0f1c; }

.skills-hub__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(109,77,255,0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px -15px rgba(109,77,255,0.2);
}
.skills-hub__stats > div { text-align: center; }
.skills-hub__stats b {
  display: block;
  font-size: 1.9rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.skills-hub__stats span { font-size: 0.8rem; color: var(--muted); }

.skills-hub__list {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.skills-hub__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem;
  color: #2a2f47;
}
.skills-hub__list li > span {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.skills-hub__viz {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.constellation {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.constellation__lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.constellation__core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 170px; height: 170px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,92,255,0.95), rgba(34,211,238,0.95));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 80px rgba(124,92,255,0.5), 0 0 0 8px rgba(124,92,255,0.1);
  z-index: 2;
  animation: corePulse 3s ease-in-out infinite;
  text-align: center;
  padding: 12px;
}
@keyframes corePulse {
  0%,100% { box-shadow: 0 0 60px rgba(124,92,255,0.4), 0 0 0 8px rgba(124,92,255,0.08); }
  50% { box-shadow: 0 0 90px rgba(124,92,255,0.65), 0 0 0 14px rgba(124,92,255,0.12); }
}
.constellation__core b { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; margin-top: 4px; }
.constellation__core span { font-size: 0.75rem; opacity: 0.85; }

.skill-chip {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #0d0f1c;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px -10px rgba(15,18,35,0.18);
  animation: chipFloat 5s ease-in-out infinite;
  z-index: 3;
}
.chip--1  { top: 14%; left: 4%;   animation-delay: 0s; }
.chip--2  { top: 8%;  right: 6%;  animation-delay: .4s; }
.chip--3  { top: 2%;  left: 40%;  animation-delay: .8s; }
.chip--4  { top: 44%; left: -2%;  animation-delay: 1.2s; }
.chip--5  { top: 44%; right: -2%; animation-delay: 1.6s; }
.chip--6  { bottom: 14%; left: 4%; animation-delay: 2s; }
.chip--7  { bottom: 8%;  right: 6%; animation-delay: 2.4s; }
.chip--8  { bottom: 2%;  left: 38%; animation-delay: 2.8s; }
.chip--9  { top: 28%; left: 30%;  animation-delay: 3.2s; }
.chip--10 { bottom: 28%; right: 28%; animation-delay: 3.6s; }
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============== BENEFITS ============== */
.benefits { background: var(--bg-soft); }
.benefits__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.benefits__text h2 { margin-bottom: 18px; }
.benefits__text > p { font-size: 1.05rem; margin-bottom: 40px; }

.benefit-list { display: flex; flex-direction: column; gap: 24px; }
.benefit {
  display: flex; gap: 20px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px -8px rgba(15,18,35,0.06);
  transition: border-color .2s, box-shadow .2s;
}
.benefit:hover { border-color: rgba(14,165,183,0.4); box-shadow: 0 10px 25px -12px rgba(14,165,183,0.25); }
.benefit__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}
.benefit h4 { font-size: 1.05rem; margin-bottom: 4px; color: #0d0f1c; }
.benefit p { font-size: 0.9rem; }

.benefits__viz {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.ring {
  position: absolute;
  border: 1px dashed rgba(109,77,255,0.3);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.ring--1 { inset: 0; }
.ring--2 { inset: 12%; animation-duration: 24s; animation-direction: reverse; border-color: rgba(14,165,183,0.35); }
.ring--3 { inset: 26%; animation-duration: 18s; }
@keyframes spin { to { transform: rotate(360deg); } }

.core {
  position: relative;
  width: 140px; height: 140px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 80px rgba(124,92,255,0.45);
}
.core span { font-size: 0.85rem; font-weight: 600; margin-top: 4px; }

.kpi {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(15,18,35,0.15);
}
.kpi b { display: block; font-size: 1.3rem; font-family: 'Space Grotesk', sans-serif; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi span { font-size: 0.78rem; color: var(--muted); }
.kpi--a { top: 4%; right: 0; }
.kpi--b { bottom: 8%; left: -4%; }
.kpi--c { bottom: 18%; right: -2%; }

/* ============== PROCESS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px -8px rgba(15,18,35,0.06);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.steps li:hover { border-color: rgba(109,77,255,0.4); transform: translateY(-4px); box-shadow: 0 12px 30px -14px rgba(109,77,255,0.25); }
.steps__n {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(109,77,255,0.1);
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.steps li h3 { margin-bottom: 8px; font-size: 1.1rem; }
.steps li p { font-size: 0.92rem; }
.steps li:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: rgba(109,77,255,0.4);
  font-size: 1.5rem;
  z-index: 2;
}

/* ============== CASES ============== */
.cases { background: var(--bg-soft); }
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 16px -8px rgba(15,18,35,0.06);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.case:hover { transform: translateY(-4px); border-color: rgba(14,165,183,0.4); box-shadow: 0 16px 40px -18px rgba(14,165,183,0.3); }
.case__metric {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.case__metric b {
  display: block;
  font-size: 2.2rem;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.case__metric span { font-size: 0.85rem; color: var(--muted); }
.case__title { font-size: 1.15rem; font-weight: 700; color: #0d0f1c; margin: 0 0 10px; }
.case > p { font-size: 0.98rem; color: #2a2f47; margin-bottom: 24px; flex: 1; }
.case footer { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.case__tag {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  background: rgba(109,77,255,0.08);
  color: var(--primary);
  border: 1px solid rgba(109,77,255,0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.cases__disclaimer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}
.case footer b { display: block; color: #0d0f1c; font-size: 0.95rem; }
.case footer span { font-size: 0.82rem; color: var(--muted); }

/* ============== FAQ ============== */
.faq__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.faq__inner .section__head { margin-bottom: 0; position: sticky; top: 100px; }
.faq__inner .section__head a { color: var(--accent); text-decoration: underline; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 2px 10px -6px rgba(15,18,35,0.06);
  transition: border-color .2s;
}
.faq__list details[open] { border-color: rgba(109,77,255,0.35); }
.faq__list summary {
  font-weight: 600;
  color: #0d0f1c;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .3s;
  font-weight: 300;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p { margin-top: 12px; font-size: 0.95rem; }

/* ============== CTA ============== */
.cta {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #6d4dff 0%, #06b6d4 100%);
  overflow: hidden;
  color: #ffffff;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(255,255,255,0.15), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta__text h2 { margin-bottom: 18px; color: #ffffff; }
.cta__text h2 .grad { background: linear-gradient(135deg, #fff 0%, #d6f3ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta__text > p { font-size: 1.08rem; margin-bottom: 28px; color: rgba(255,255,255,0.9); }
.cta__bullets { display: flex; flex-direction: column; gap: 10px; }
.cta__bullets li { color: rgba(255,255,255,0.95); font-size: 0.98rem; }

.cta__action {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 30px 80px -20px rgba(15,18,35,0.35);
  color: #1a1d2b;
  text-align: center;
}
.cta__action h3 { margin: 0 0 10px; font-size: 1.45rem; color: #0d0f1c; }
.cta__action > p { margin: 0 0 24px; color: var(--muted); font-size: 0.98rem; }
.cta__action .btn--whatsapp { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px 22px; }
.cta__phone {
  margin: 18px 0 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0d0f1c;
  letter-spacing: 0.5px;
}
.cta__action small { display: block; font-size: 0.82rem; color: var(--muted); }

.form {
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 80px -20px rgba(15,18,35,0.35);
  color: #1a1d2b;
}
.form h3 { margin-bottom: 22px; font-size: 1.3rem; color: #0d0f1c; }
.form label { display: block; margin-bottom: 14px; }
.form label span { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #f6f7fb;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #0d0f1c;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(109,77,255,0.12);
}
.form select option { background: #ffffff; color: #0d0f1c; }
.form button { margin-top: 8px; }
.form small { display: block; margin-top: 12px; font-size: 0.78rem; color: var(--muted); text-align: center; }
.form__success {
  margin-top: 14px;
  padding: 12px;
  background: rgba(14,165,183,0.1);
  border: 1px solid rgba(14,165,183,0.3);
  border-radius: 10px;
  color: #0a6873 !important;
  text-align: center;
  font-size: 0.92rem !important;
}

/* ============== FOOTER ============== */
.footer { background: #0d0f1c; color: #c8ccdd; border-top: 1px solid var(--line); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__inner h4 { font-size: 0.95rem; margin-bottom: 16px; color: #ffffff; }
.footer__inner p { font-size: 0.9rem; margin-top: 14px; max-width: 320px; color: #9aa0b4; }
.footer__inner ul li { margin-bottom: 10px; font-size: 0.9rem; color: #9aa0b4; }
.footer__inner ul li a:hover { color: #ffffff; }
.footer .logo { color: #ffffff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
  color: #7a8094;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__inner, .faq__inner, .cta__inner { grid-template-columns: 1fr; gap: 50px; }
  .skills-hub__inner { grid-template-columns: 1fr; gap: 60px; }
  .skills-hub__viz { max-width: 520px; margin: 0 auto; width: 100%; }
  .faq__inner .section__head { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:not(:last-child)::after { display: none; }
  .cases__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .hero { padding-top: 48px; }
  .hero__proof { gap: 24px; flex-wrap: wrap; }
  .hero__proof strong { font-size: 1.4rem; }
  .pain__grid, .services__grid, .steps { grid-template-columns: 1fr; }
  .skills-hub__stats { grid-template-columns: 1fr; gap: 12px; }
  .skill-chip { font-size: 0.72rem; padding: 6px 10px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .form { padding: 24px; }
  .float-tag { font-size: 0.75rem; padding: 8px 12px; }
  .tag--1 { left: 0; }
  .tag--2 { right: 0; }
}
