/* =====================================================
   KS TEC — Site institucional
   Palette: institutional navy + white + cool gray
            with vibrant blue + cyan accents
   Typeface: Manrope
   ===================================================== */

:root {
  --navy-900: #061534;
  --navy-800: #0A1E3F;
  --navy-700: #122a55;
  --navy-600: #1c3a6e;
  --blue-500: #1E5BFF;        /* logo / primary */
  --blue-600: #1747d6;
  --blue-400: #4f7bff;
  --cyan-400: #22D3EE;
  --cyan-300: #67E3F2;
  --gold:     #F5B642;
  --whats:    #25D366;
  --whats-d:  #1ebe57;

  --ink:      #0B1729;
  --ink-2:    #1f2a3d;
  --muted:    #5b6478;
  --muted-2:  #8892a4;
  --line:     #E6EAF1;
  --line-2:   #D6DCE7;
  --bg:       #ffffff;
  --bg-soft:  #F4F6FA;
  --bg-soft-2:#EEF2F8;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-1: 0 1px 2px rgba(11,23,41,.04), 0 4px 14px rgba(11,23,41,.06);
  --shadow-2: 0 6px 18px rgba(11,23,41,.07), 0 20px 40px rgba(11,23,41,.10);
  --shadow-blue: 0 12px 30px -10px rgba(30,91,255,.55);

  --container: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; font-weight: 700; color: var(--ink); }
p  { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 18px rgba(11,23,41,.04);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 44px; width: auto; }

.primary-nav {
  display: flex; gap: 30px; flex: 1; justify-content: center;
}
.primary-nav a {
  font-weight: 600; font-size: 15px; color: var(--ink-2);
  position: relative; padding: 8px 0;
  transition: color .2s;
}
.primary-nav a:hover { color: var(--blue-500); }
.primary-nav a::after {
  content:""; position:absolute; left:0; right:0; bottom: 2px;
  height: 2px; background: var(--blue-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.btn {
  --pad-y: 12px; --pad-x: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 600; font-size: 14.5px; line-height: 1;
  border: 1px solid transparent;
  cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 8px 22px -8px rgba(37,211,102,.65); }
.btn-whats:hover { background: var(--whats-d); }
.btn-primary { background: var(--blue-500); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-600); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-500); background: rgba(30,91,255,.04); }
.btn-outline-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { --pad-y: 16px; --pad-x: 26px; font-size: 15.5px; }
.btn-sm { --pad-y: 10px; --pad-x: 14px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px; background: transparent;
  border: 1px solid var(--line-2);
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 16px 28px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.mobile-menu a.btn-whats {
  border-bottom: 0; margin-top: 12px; color: #fff;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 50px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 100%);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,91,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,91,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 30%, #000 30%, transparent 75%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
}
.hero-glow-1 { width: 480px; height: 480px; background: #BFD1FF; top: -120px; left: -100px; }
.hero-glow-2 { width: 380px; height: 380px; background: #C7F4FB; top: 100px; right: -80px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: 0 1px 3px rgba(11,23,41,.05);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(30,91,255,.18);
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 22px 0 20px;
}
.grad {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-cyan {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--cyan-400) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 580px;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-tags {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 8px 6px;
  font-size: 13.5px; color: var(--muted);
  align-items: center;
}
.hero-tags .dot { opacity: .5; }

/* Hero strip */
.hero-strip {
  margin-top: 56px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.strip-item { font-size: 14.5px; color: var(--muted); }
.strip-item b { color: var(--ink); font-weight: 700; }
.strip-divider { width: 1px; height: 22px; background: var(--line); }

/* Hero visual: dashboard mock */
.hero-visual { position: relative; min-height: 460px; }
.dash { position: relative; }
.dash-window {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.dash-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #FAFBFD;
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; background: #DDE3EE; }
.chrome-dot:nth-child(1) { background: #FF6B6B; }
.chrome-dot:nth-child(2) { background: #FFC857; }
.chrome-dot:nth-child(3) { background: #4CD3A0; }
.chrome-url {
  margin-left: 10px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
}
.dash-body { display: grid; grid-template-columns: 168px 1fr; min-height: 320px; }
.dash-side {
  background: #FAFBFD;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.side-brand { display: flex; gap: 10px; align-items: center; padding: 4px 6px 14px; }
.side-hex {
  width: 32px; height: 36px;
  background:
    conic-gradient(from 90deg, var(--blue-500), var(--cyan-400), var(--blue-500));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.side-title { font-size: 13px; font-weight: 800; color: var(--ink); }
.side-sub { font-size: 11px; color: var(--muted-2); }
.side-item {
  font-size: 12.5px; color: var(--muted);
  padding: 9px 10px; border-radius: 8px;
  display: flex; align-items: center; gap: 10px;
}
.side-item .ic { width: 14px; height: 14px; border-radius: 4px; background: #E1E7F2; }
.side-item.active { background: rgba(30,91,255,.10); color: var(--blue-500); font-weight: 700; }
.side-item.active .ic { background: var(--blue-500); }

.dash-main { padding: 16px 18px; }
.dash-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 12px;
}
.kpi-label { font-size: 10.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .08em; }
.kpi-value { font-size: 20px; font-weight: 800; margin-top: 4px; color: var(--ink); }
.kpi-delta { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.kpi-delta.up { color: #16a34a; }

.dash-chart {
  background: #FAFBFD; border: 1px solid var(--line);
  border-radius: 10px; padding: 8px; height: 110px;
  margin-bottom: 12px;
}
.dash-chart svg { width: 100%; height: 100%; }

.dash-list { display: flex; flex-direction: column; gap: 6px; }
.dash-list .row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: #FAFBFD;
  border: 1px solid var(--line); border-radius: 8px;
  font-size: 12px; color: var(--muted);
}
.dash-list .row b { color: var(--ink); font-weight: 600; margin-right: 4px; }
.dash-list .status { width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }
.dash-list .status.warn { background: var(--gold); }
.row-tag {
  margin-left: auto;
  background: rgba(22,163,74,.12); color: #15803d;
  font-size: 10.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.row-tag.tag-warn { background: rgba(245,182,66,.18); color: #a06a00; }

/* Floating cards */
.float-card, .float-card-2 {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card { left: -28px; top: 70px; }
.float-card-2 { right: -22px; bottom: 30px; animation-delay: -2.5s; }
.fc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(30,91,255,.10); color: var(--blue-500);
  display: grid; place-items: center;
}
.fc-icon.cyan { background: rgba(34,211,238,.14); color: #0991a8; }
.fc-title { font-size: 13px; font-weight: 700; }
.fc-sub { font-size: 11.5px; color: var(--muted); }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ SECTION BASE ============ */
.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }

.section-eyebrow {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--cyan-300); }
.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 820px;
}
.section-lede {
  font-size: 17.5px; color: var(--muted);
  max-width: 720px;
  margin-top: 16px;
  text-wrap: pretty;
}
.section-lede.light { color: #B7C5E1; }
.section-head { margin-bottom: 56px; }
.section-head.light .section-title { color: #fff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.sobre-body p { color: var(--muted); font-size: 17px; }
.sobre-body p + p { margin-top: 16px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}

/* ============ MVV ============ */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mvv-card::before {
  content:""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(30,91,255,.06), transparent 60%);
  opacity: 0; transition: opacity .25s;
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: #cdd6e7; }
.mvv-card:hover::before { opacity: 1; }
.mvv-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,91,255,.12), rgba(34,211,238,.12));
  color: var(--blue-500);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.mvv-icon svg { width: 26px; height: 26px; }
.mvv-card h3 { font-size: 22px; margin-bottom: 12px; }
.mvv-card p  { color: var(--muted); font-size: 15.5px; }
.value-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
}
.value-list li {
  position: relative; padding-left: 20px;
  font-size: 14.5px; color: var(--ink-2);
}
.value-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 12px; height: 2px; background: var(--blue-500); border-radius: 2px;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content:""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, var(--blue-500), var(--cyan-400));
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: #cdd6e7; }
.service-card:hover::after { transform: scaleY(1); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(30,91,255,.08);
  color: var(--blue-500);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -.01em; }
.service-card p  { color: var(--muted); font-size: 14.5px; }

/* ============ ÁREA PÚBLICA (dark) ============ */
.section-dark {
  position: relative;
  padding: 110px 0 120px;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #DDE4F1;
  isolation: isolate;
  overflow: hidden;
}
.dark-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.dark-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 25%, transparent 80%);
}
.dark-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; top: -200px; right: -150px;
  background: radial-gradient(closest-side, rgba(34,211,238,.22), transparent 70%);
  filter: blur(60px);
}
.section-dark .section-title { color: #fff; }
.section-dark .section-lede  { color: #B7C5E1; }

.public-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.public-text p { color: #B7C5E1; font-size: 17px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #DDE4F1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.chip:hover { background: rgba(34,211,238,.12); border-color: rgba(34,211,238,.4); }

.public-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.public-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 22px 22px 24px;
  transition: transform .25s, background .25s, border-color .25s;
}
.public-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(34,211,238,.35);
  transform: translateY(-3px);
}
.pc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(34,211,238,.14); color: var(--cyan-300);
  display: grid; place-items: center;
}
.pc-icon svg { width: 20px; height: 20px; }
.public-card h3 { font-size: 17px; color: #fff; }
.public-card p  { font-size: 14.5px; color: #B7C5E1; }

/* ============ SOLUÇÕES (PRODUCTS) ============ */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: #cdd6e7; }

.prod-visual {
  height: 240px;
  position: relative;
  padding: 22px;
  display: flex; align-items: stretch; justify-content: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.sigal-vis   { background: linear-gradient(135deg, #EEF3FF 0%, #DDE8FF 100%); }
.prisma-vis  { background: linear-gradient(135deg, #E8F8FB 0%, #D8F1F8 100%); }
.carteira-vis{ background: linear-gradient(135deg, #F4EEFF 0%, #E5DBFF 100%); }
.staas-vis   { background: linear-gradient(135deg, #FFF4E5 0%, #FFE6C9 100%); }

.pv-chip {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(11,23,41,.06);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 10px; border-radius: 999px;
  color: var(--ink-2);
}
.pv-mock {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 30px -16px rgba(11,23,41,.25), 0 2px 4px rgba(11,23,41,.04);
  padding: 14px;
  border: 1px solid rgba(11,23,41,.05);
  display: flex; flex-direction: column;
}
.pv-bar { display: flex; gap: 5px; margin-bottom: 12px; }
.pv-bar span { width: 8px; height: 8px; border-radius: 50%; background: #DDE3EE; }
.pv-bar span:nth-child(1) { background: #FF6B6B; }
.pv-bar span:nth-child(2) { background: #FFC857; }
.pv-bar span:nth-child(3) { background: #4CD3A0; }
.pv-rows { display: flex; flex-direction: column; gap: 6px; }
.pv-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; background: #F8FAFD;
  border-radius: 8px; font-size: 12px; color: var(--ink-2);
}
.pv-dot { width: 7px; height: 7px; border-radius: 50%; background: #C8D1E3; }
.pv-dot.ok { background: #16a34a; }
.pv-dot.warn { background: var(--gold); }
.pv-tag {
  margin-left: auto;
  background: rgba(22,163,74,.12); color: #15803d;
  font-size: 10px; font-weight: 700;
  padding: 3px 7px; border-radius: 999px;
}
.pv-tag.warn { background: rgba(245,182,66,.18); color: #a06a00; }
.pv-tag.idle { background: #EFF2F8; color: var(--muted); }

/* PRISMA mock */
.prisma-mock { gap: 12px; }
.prisma-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.prisma-kpis > div {
  background: #F8FAFD; border-radius: 8px; padding: 8px 10px;
}
.pk-l { font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .07em; }
.pk-v { font-size: 17px; font-weight: 800; color: var(--ink); margin-top: 2px; }
.prisma-bars {
  display: flex; gap: 6px; align-items: flex-end;
  height: 70px; padding: 8px 4px 0;
  border-top: 1px dashed var(--line);
}
.prisma-bars .bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--cyan-400), var(--blue-500));
  border-radius: 4px 4px 0 0;
  opacity: .85;
}

/* CARTEIRA mock */
.carteira-mock { padding: 0; background: transparent; border: 0; box-shadow: none; }
.cart {
  background: linear-gradient(135deg, #1747d6 0%, #061534 100%);
  color: #fff; border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 16px 30px -16px rgba(11,23,41,.5);
}
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9.5px; letter-spacing: .12em; opacity: .85;
}
.cart-id { background: rgba(255,255,255,.12); padding: 3px 8px; border-radius: 999px; }
.cart-body {
  display: flex; gap: 14px; margin-top: 12px; align-items: center;
}
.cart-avatar {
  width: 56px; height: 64px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
}
.cart-fields { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.cf { display: flex; flex-direction: column; gap: 3px; }
.cf > span { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.cf-bar { height: 6px; background: rgba(255,255,255,.18); border-radius: 4px; }
.cf-bar.w70 { width: 70%; }
.cf-bar.w50 { width: 50%; }
.cf-bar.w40 { width: 40%; }
.cart-foot {
  margin-top: 12px;
  font-size: 10px; letter-spacing: .04em;
  opacity: .8;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 8px;
}

/* STAAS mock */
.staas-mock { gap: 14px; }
.staas-flow { display: flex; align-items: center; gap: 0; }
.sf-node {
  flex: 1;
  background: #F8FAFD;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  font-size: 10.5px; font-weight: 700; color: var(--ink-2);
}
.sf-node.active {
  background: var(--blue-500); color: #fff; border-color: var(--blue-500);
}
.sf-line { flex: 0 0 12px; height: 2px; background: #DDE3EE; }
.staas-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.staas-meta > div {
  background: #F8FAFD; border-radius: 8px; padding: 8px 10px;
}

.prod-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.prod-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 8px;
}
.prod-body h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.prod-body > p { color: var(--muted); font-size: 14.5px; }
.tag-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 16px 0 18px;
}
.tag-list li {
  font-size: 12px; font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-soft);
  padding: 5px 10px; border-radius: 6px;
}
.text-link {
  margin-top: auto;
  font-weight: 700; font-size: 14.5px;
  color: var(--blue-500);
  align-self: flex-start;
  position: relative;
}
.text-link:hover { color: var(--blue-600); }
.text-link.sm { font-size: 13.5px; }

/* ============ PORTFOLIO ============ */
.featured-video {
  margin-bottom: 36px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-1);
}
.fv-ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(30,91,255,.85), rgba(6,21,52,.95)),
    radial-gradient(120% 80% at 80% 20%, rgba(34,211,238,.5), transparent 70%);
  background-blend-mode: overlay;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fv-ratio::before {
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .6;
}
.fv-overlay {
  position: relative; z-index: 2; text-align: center; color: #fff;
}
.fv-play {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--blue-500);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  transition: transform .2s;
}
.fv-play:hover, .featured-video:hover .fv-play { transform: scale(1.06); }
.fv-eyebrow {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan-300); margin-bottom: 6px;
}
.fv-title { font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; }
.fv-placeholder {
  position: absolute; bottom: 14px; right: 18px;
  font-size: 11px; color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.port-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.port-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: #cdd6e7; }
.port-thumb {
  aspect-ratio: 16 / 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(11,23,41,.45);
  font-size: 13.5px; font-weight: 600;
  text-align: center; padding: 16px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.port-thumb small { font-size: 11.5px; font-weight: 500; opacity: .7; margin-top: 4px; }
.port-thumb::before {
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,23,41,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,23,41,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.thumb-1 { background: linear-gradient(135deg, #EEF3FF, #DDE8FF); }
.thumb-2 { background: linear-gradient(135deg, #E8F8FB, #D8F1F8); }
.thumb-3 { background: linear-gradient(135deg, #F4EEFF, #E5DBFF); }
.thumb-4 { background: linear-gradient(135deg, #E8F3EE, #D6EBDE); }
.thumb-5 { background: linear-gradient(135deg, #FFF4E5, #FFE6C9); }
.thumb-6 { background: linear-gradient(135deg, #F3F4FA, #E1E5F2); }

.port-body { padding: 20px 22px 22px; }
.port-tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue-500); margin-bottom: 8px;
}
.port-card h4 { font-size: 17px; margin-bottom: 6px; }
.port-card p  { color: var(--muted); font-size: 14px; margin-bottom: 12px; }

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: #cdd6e7; }
.why-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 600;
  color: var(--blue-500);
  background: rgba(30,91,255,.08);
  padding: 4px 9px; border-radius: 6px;
  margin-bottom: 18px;
}
.why-card h4 { font-size: 18px; margin-bottom: 8px; }
.why-card p  { color: var(--muted); font-size: 14.5px; }

/* ============ CTA ============ */
.cta-section {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(135deg, var(--navy-800) 0%, #051028 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-copy .section-title { color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  color: #DDE4F1;
  font-size: 15.5px;
}
.cta-phone span { font-weight: 700; }

.cta-side {
  display: flex; flex-direction: column; gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-xl);
  padding: 26px;
}
.cs-block { display: flex; gap: 14px; align-items: center; }
.cs-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(34,211,238,.14); color: var(--cyan-300);
  display: grid; place-items: center; flex: 0 0 auto;
}
.cs-icon svg { width: 22px; height: 22px; }
.cs-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #97A6C5; font-weight: 700; }
.cs-value { font-size: 15px; color: #fff; font-weight: 600; }

/* ============ FOOTER ============ */
.site-footer {
  background: #04102A;
  color: #97A6C5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 70px 28px 50px;
}
.foot-logo {
  height: 56px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
  width: auto;
}
.foot-tag { color: #B7C5E1; margin-top: 16px; font-size: 15px; max-width: 320px; }
.foot-legal { margin-top: 22px; font-size: 13px; line-height: 1.7; color: #97A6C5; }
.foot-legal b { color: #DDE4F1; font-weight: 700; display: block; }
.foot-title { color: #fff; font-weight: 700; font-size: 14px; letter-spacing: .04em; margin-bottom: 18px; text-transform: uppercase; }
.foot-list { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.foot-list a { transition: color .2s; }
.foot-list a:hover { color: var(--cyan-300); }

.foot-bar { border-top: 1px solid rgba(255,255,255,.08); }
.foot-bar-inner {
  padding: 22px 28px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 13px; color: #7384A6;
  flex-wrap: wrap;
}
.foot-bar-msg { color: #97A6C5; }

/* ============ FAB ============ */
.fab-whats {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whats); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 30px -10px rgba(37,211,102,.65), 0 6px 14px rgba(0,0,0,.18);
  transition: transform .2s;
}
.fab-whats::before {
  content:""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.85); opacity: .9; }
  100% { transform: scale(1.3); opacity: 0; }
}
.fab-whats:hover { transform: scale(1.06); }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 0; }
  .float-card, .float-card-2 { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .public-grid { grid-template-columns: 1fr; gap: 36px; }
  .prod-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 60px 28px 40px; }
}
@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .section-dark { padding: 80px 0 90px; }
  .header-cta .btn-whats { display: none; }
  .hero { padding: 50px 0 30px; }
  .hero-title { font-size: 34px; }
  .hero-strip { padding: 14px 18px; gap: 10px; }
  .strip-divider { display: none; }
  .strip-item { flex: 1 1 45%; font-size: 13.5px; }
  .services-grid, .portfolio-grid, .why-grid, .public-cards { grid-template-columns: 1fr; }
  .value-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 50px 24px 30px; }
  .foot-bar-inner { flex-direction: column; gap: 6px; text-align: left; }
  .fab-whats { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .prod-visual { height: 200px; padding: 16px; }
  .dash-window { transform: none; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; gap: 6px; overflow-x: auto; padding: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .side-brand { padding: 0 8px 0 0; flex: 0 0 auto; border-right: 1px solid var(--line); margin-right: 6px; padding-right: 12px; }
  .side-item { flex: 0 0 auto; }
}


/* =====================================================
   v2 ADDITIONS — INPI products + real portfolio thumbs
   ===================================================== */

/* 3-column grid for the 3 INPI-registered products */
.prod-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* INPI badge */
.pv-chip-inpi {
  background: #fff;
  color: var(--blue-500);
  border: 1px solid rgba(30,91,255,.25);
  display: inline-flex; align-items: center; gap: 5px;
  letter-spacing: .14em;
}
.pv-chip-inpi .r-mark {
  display: inline-grid; place-items: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-500); color: #fff;
  font-size: 9px; font-weight: 800; line-height: 1;
}
.prod-label .reg {
  display: inline-grid; place-items: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-500); color: #fff;
  font-size: 9px; font-weight: 800; line-height: 1;
  margin-left: 4px; vertical-align: middle;
}
.inpi-note {
  margin-top: 28px; text-align: center;
  color: var(--muted); font-size: 13.5px;
}
.inpi-note .reg {
  display: inline-grid; place-items: center;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue-500); color: #fff;
  font-size: 8px; font-weight: 800; line-height: 1;
  vertical-align: super; margin-left: 1px;
}

/* === PRISMA visual === */
.prisma-vis { background: linear-gradient(135deg, #1B1340 0%, #2A1B6B 60%, #432A9C 100%); }
.prisma-vis .pv-chip-inpi {
  background: rgba(255,255,255,.94);
  color: #6B47FF;
  border-color: transparent;
}
.prisma-vis .pv-chip-inpi .r-mark { background: #6B47FF; }
.prisma-screen {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  padding: 14px;
  color: #fff;
  display: flex; flex-direction: column; gap: 10px;
  backdrop-filter: blur(4px);
}
.ps-head { display: flex; align-items: center; justify-content: space-between; }
.ps-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: -.01em; }
.ps-tri {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #8B6BFF, #C7B6FF);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.ps-pill {
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(139,107,255,.22); color: #C7B6FF;
  padding: 4px 8px; border-radius: 999px;
}
.ps-title { font-size: 13.5px; font-weight: 700; line-height: 1.25; letter-spacing: -.01em; }
.prisma-vis .prisma-bars {
  display: flex; gap: 5px; align-items: flex-end;
  height: 50px; padding-top: 6px;
  border-top: 1px dashed rgba(255,255,255,.12);
}
.prisma-vis .prisma-bars .bar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, #C7B6FF, #6B47FF);
  border-radius: 3px 3px 0 0;
  opacity: .9;
}
.ps-kpis {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.ps-kpis > div {
  background: rgba(255,255,255,.06);
  border-radius: 8px; padding: 6px 9px;
}
.ps-kpis .pk-l { font-size: 9px; color: rgba(199,182,255,.8); text-transform: uppercase; letter-spacing: .08em; }
.ps-kpis .pk-v { font-size: 14px; font-weight: 800; color: #fff; }

/* === SIGAL visual === */
.sigal-vis { background: linear-gradient(135deg, #0B3D2E 0%, #14593F 50%, #1B7A55 100%); }
.sigal-vis .pv-chip-inpi {
  background: rgba(255,255,255,.94);
  color: #0e7d4f;
}
.sigal-vis .pv-chip-inpi .r-mark { background: #0e7d4f; }
.sigal-screen {
  width: 100%;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink);
}
.ss-head { display: flex; align-items: center; justify-content: space-between; }
.ss-brand {
  font-weight: 900; letter-spacing: .04em;
  font-size: 14px;
  color: #0e7d4f;
}
.ss-pill {
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
  background: #0099E5; color: #fff;
  padding: 4px 8px; border-radius: 999px;
}
.ss-title { font-size: 12.5px; font-weight: 700; line-height: 1.25; }
.sigal-row { background: #F5FBF7; }
.sigal-row .pv-tag { background: rgba(14,125,79,.14); color: #0e7d4f; }
.sigal-row .pv-tag.warn { background: rgba(245,182,66,.18); color: #a06a00; }

/* === SIDEC visual === */
.sidec-vis { background: linear-gradient(135deg, #2B0E4F 0%, #4A1B82 55%, #6B26B5 100%); }
.sidec-vis .pv-chip-inpi {
  background: rgba(255,255,255,.94);
  color: #6B26B5;
}
.sidec-vis .pv-chip-inpi .r-mark { background: #6B26B5; }
.sidec-screen {
  width: 100%;
  color: #fff;
  display: flex; flex-direction: column; gap: 10px;
}
.sd-head { display: flex; align-items: center; justify-content: space-between; }
.sd-brand { display: flex; align-items: center; gap: 8px; font-weight: 900; letter-spacing: .04em; font-size: 14px; }
.sd-mark {
  width: 18px; height: 22px;
  background: linear-gradient(135deg, #E0A7FF, #BB6BFF);
  border-radius: 4px;
  position: relative;
}
.sd-mark::after {
  content:""; position: absolute; bottom: 4px; left: 3px; right: 3px;
  height: 3px; background: rgba(0,0,0,.25); border-radius: 2px;
}
.sd-pill {
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em;
  background: rgba(224,167,255,.22); color: #E0A7FF;
  padding: 4px 8px; border-radius: 999px;
  text-transform: uppercase;
}
.sidec-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px;
}
.sidec-card .sc-row { display: flex; gap: 12px; align-items: center; }
.sc-avatar {
  width: 40px; height: 50px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,.3), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
}
.sc-fields { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.sidec-card .cf > span { color: rgba(255,255,255,.65); }
.sidec-card .cf-bar { background: rgba(255,255,255,.22); }
.sc-foot {
  margin-top: 10px; font-size: 9.5px;
  color: rgba(255,255,255,.7);
  padding-top: 8px; border-top: 1px solid rgba(255,255,255,.1);
  letter-spacing: .04em;
}
.sd-meta { display: flex; flex-wrap: wrap; gap: 5px; }
.sd-tag {
  font-size: 9.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #E0A7FF;
}

/* === Portfolio subsections === */
.port-sub { margin-bottom: 22px; margin-top: 8px; }
.port-sub:not(:first-child) { margin-top: 48px; }
.port-sub-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--blue-500);
  margin-bottom: 8px;
}
.port-sub-title { font-size: 22px; letter-spacing: -.02em; }

.portfolio-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Portfolio thumbnail base tweak — keep existing .port-thumb styles
   but provide custom inner content per project. */
.port-thumb { padding: 0; }
.port-thumb > * { position: relative; z-index: 1; }

/* === thumb: FORÇA-TAREFA === */
.thumb-forca {
  background:
    linear-gradient(135deg, rgba(14,125,79,.85), rgba(11,61,46,.92)),
    radial-gradient(120% 80% at 20% 20%, rgba(255,255,255,.2), transparent 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; gap: 12px;
}
.ft-badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ft-shield {
  width: 56px; height: 64px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 12%, 100% 70%, 50% 100%, 0 70%, 0 12%);
  position: relative;
}
.ft-shield::before {
  content:"FT";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-weight: 900; color: #0e7d4f; font-size: 22px; letter-spacing: -.03em;
}
.ft-name {
  font-weight: 900; text-align: center;
  font-size: 14px; letter-spacing: .12em;
  line-height: 1.2;
}
.ft-name span { font-weight: 600; opacity: .85; font-size: 11px; }
.ft-foot {
  position: absolute; bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-size: 10.5px; color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}

/* === thumb: CHAMADOS DTI === */
.thumb-chamados {
  background: #F0F4F8;
  display: flex; flex-direction: column;
  padding: 16px;
}
.ch-bar { display: flex; gap: 4px; margin-bottom: 10px; }
.ch-bar span { width: 7px; height: 7px; border-radius: 50%; background: #C8D1E3; }
.ch-bar span:nth-child(1) { background: #FF6B6B; }
.ch-bar span:nth-child(2) { background: #FFC857; }
.ch-bar span:nth-child(3) { background: #4CD3A0; }
.ch-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  margin-bottom: 10px;
}
.ch-tile {
  font-size: 9.5px; font-weight: 700;
  padding: 8px 4px; border-radius: 8px;
  text-align: center; color: #fff;
  line-height: 1.1;
}
.ch-tile.a { background: #2DB0E5; }
.ch-tile.b { background: #F2C400; color: #4A3A00; }
.ch-tile.c { background: #2DD4D4; }
.ch-tile.d { background: linear-gradient(135deg, #F472B6, #E879A9); }
.ch-rows { display: flex; flex-direction: column; gap: 4px; }
.ch-row { height: 8px; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.ch-row:nth-child(2) { width: 86%; }
.ch-row:nth-child(3) { width: 70%; }

/* === thumb: ARENA CLUB === */
.thumb-arena {
  background: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.ac-stripes {
  position: absolute; left: 10%; top: 10%; bottom: 10%;
  display: flex; gap: 4px; align-items: flex-end;
}
.ac-stripes span {
  width: 6px; background: #F2C400; border-radius: 2px;
}
.ac-stripes span:nth-child(1) { height: 50%; }
.ac-stripes span:nth-child(2) { height: 75%; }
.ac-stripes span:nth-child(3) { height: 90%; }
.ac-card {
  position: relative; z-index: 2;
  background: #161616;
  border: 1px solid rgba(242,196,0,.25);
  border-radius: 10px;
  padding: 12px;
  width: 80%;
  color: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.ac-vip { font-size: 9px; letter-spacing: .25em; color: #aaa; font-weight: 700; }
.ac-brand {
  font-weight: 900; font-size: 18px;
  letter-spacing: .03em;
  font-family: 'Manrope', sans-serif;
  font-style: italic;
}
.ac-brand i { color: #F2C400; font-style: italic; font-weight: 900; }
.ac-foot { display: flex; gap: 6px; margin-top: 10px; align-items: center; }
.ac-qr {
  width: 28px; height: 28px;
  background:
    linear-gradient(#fff,#fff) center/4px 4px no-repeat,
    repeating-conic-gradient(#fff 0 25%, #161616 0 50%) 0 0/8px 8px;
  border-radius: 2px;
}
.ac-photo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #F2C400, #d6a800);
  border-radius: 4px;
}

/* === thumb: CONMAC === */
.thumb-conmac {
  background:
    linear-gradient(180deg, rgba(45,212,212,.16) 0%, rgba(245,160,80,.10) 100%),
    #FAFBFD;
  padding: 16px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px;
}
.cm-logo { display: flex; align-items: center; gap: 10px; }
.cm-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 28px; height: 28px;
}
.cm-tiles i {
  background: #2DD4D4; border-radius: 2px;
  display: block;
}
.cm-tiles i:nth-child(2) { background: #F5A050; }
.cm-tiles i:nth-child(3) { background: #2DD4D4; opacity: .6; }
.cm-tiles i:nth-child(4) { background: #2DD4D4; }
.cm-name {
  font-weight: 900; font-size: 22px;
  letter-spacing: -.01em;
  color: #2A7A7A;
}
.cm-stripe {
  width: 80%; height: 6px;
  background: linear-gradient(90deg, #2DD4D4, #F5A050);
  border-radius: 3px;
  opacity: .7;
}
.cm-foot {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: .04em;
}

/* === thumb: PROCLAM === */
.thumb-proclam {
  background:
    linear-gradient(135deg, rgba(34,108,52,.85), rgba(50,140,72,.92)),
    radial-gradient(80% 60% at 80% 30%, rgba(160,220,140,.4), transparent 60%);
  padding: 16px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pr-arc {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
}
.pr-logo { display: flex; align-items: center; gap: 8px; }
.pr-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  position: relative;
}
.pr-mark::after {
  content:""; position: absolute; left: 6px; top: 6px;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, #5BC85B, #2A7A35);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.pr-name { font-weight: 900; font-size: 18px; letter-spacing: .08em; }
.pr-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: auto; }
.pr-cards span {
  height: 32px;
  background: rgba(255,255,255,.14);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.16);
}

/* === thumb: Vanessa Bastos === */
.thumb-vb {
  background: linear-gradient(135deg, #F5EEE5 0%, #E8D9C5 100%);
  padding: 18px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  text-align: center;
  color: #1a2238;
}
.vb-mono {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #1a2238;
  line-height: 1;
}
.vb-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  letter-spacing: .14em;
  color: #1a2238;
}
.vb-name small {
  display: block;
  font-size: 9.5px; letter-spacing: .14em;
  margin-top: 4px;
  color: rgba(26,34,56,.7);
  font-family: 'Manrope', sans-serif;
}
.vb-line { width: 60px; height: 1px; background: rgba(26,34,56,.4); margin-top: 6px; }

/* === thumb: Boulevard Villa da Graça === */
.thumb-villa {
  background:
    linear-gradient(135deg, #FBF6EE 0%, #F1E4D2 100%);
  padding: 18px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px;
  text-align: center;
  color: #4a3328;
}
.vg-mark {
  width: 38px; height: 38px;
  background:
    radial-gradient(closest-side, #B9784E 30%, transparent 32%) center/12px 12px no-repeat,
    conic-gradient(from 0deg, #B9784E 0 12.5%, transparent 0 25%, #B9784E 25% 37.5%, transparent 0 50%, #B9784E 50% 62.5%, transparent 0 75%, #B9784E 75% 87.5%, transparent 0);
  border-radius: 50%;
  mask: radial-gradient(closest-side, transparent 32%, #000 33%);
  -webkit-mask: radial-gradient(closest-side, transparent 32%, #000 33%);
}
.vg-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px; line-height: 1.2;
  letter-spacing: .04em;
  color: #4a3328;
}
.vg-foot {
  font-size: 10.5px; letter-spacing: .1em;
  color: #B9784E;
  font-weight: 700;
}

/* === Responsive === */
@media (max-width: 1080px) {
  .prod-grid-3 { grid-template-columns: 1fr 1fr; }
  .portfolio-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .prod-grid-3 { grid-template-columns: 1fr; }
  .portfolio-grid-4 { grid-template-columns: 1fr; }
  .port-sub:not(:first-child) { margin-top: 36px; }
}


/* =====================================================
   v3 — Real screenshot images for products + portfolio
   ===================================================== */

/* Product image visual (replaces synthetic mocks) */
.prod-visual-img {
  padding: 0;
  height: 260px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.prod-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.prod-visual-img .pv-chip-inpi {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(11,23,41,.18);
}

/* Portfolio thumb image */
.port-thumb-img {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.port-thumb-img::before { display: none; } /* hide the dotted overlay */
.port-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.port-card:hover .port-img { transform: scale(1.04); }
.port-thumb-dark { background: #0a0a0a; }

@media (max-width: 720px) {
  .prod-visual-img { height: 220px; }
}


/* =====================================================
   v4 — Featured project (Recadastramento) + Mídia
   ===================================================== */

/* ----- Featured project: Recadastramento ----- */
.featured-project {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform .25s, box-shadow .25s;
}
.featured-project:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.fp-media {
  position: relative;
  background:
    radial-gradient(120% 100% at 80% 20%, rgba(34,211,238,.18), transparent 60%),
    linear-gradient(135deg, #E8F2EE 0%, #D6E9DE 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  overflow: hidden;
}
.fp-media img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 18px 40px -16px rgba(11,23,41,.35), 0 4px 10px rgba(11,23,41,.08);
}
.fp-year {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  font-weight: 800; font-size: 12px;
  letter-spacing: .14em;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(11,23,41,.18);
}
.fp-body {
  padding: 36px 38px;
  display: flex; flex-direction: column; gap: 16px;
}
.fp-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--blue-500);
}
.fp-title {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.fp-sub { color: var(--muted); font-size: 15.5px; text-wrap: pretty; }

.fp-credit {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(30,91,255,.06), rgba(34,211,238,.05));
  border: 1px solid rgba(30,91,255,.12);
  border-radius: 14px;
}
.fp-avatar {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), #4f7bff);
  color: #fff; font-weight: 800; font-size: 14px;
  display: grid; place-items: center;
  flex: 0 0 auto;
  letter-spacing: -.01em;
}
.fp-credit-label {
  font-size: 11px; font-weight: 700;
  color: var(--blue-500);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 2px;
}
.fp-credit-value {
  font-size: 14px; color: var(--ink-2);
  line-height: 1.4;
}
.fp-credit-value b { font-weight: 700; color: var(--ink); }

.fp-highlights {
  display: flex; flex-direction: column; gap: 7px;
  margin: 4px 0 0;
}
.fp-highlights li {
  display: flex; align-items: start; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.fp-check {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(22,163,74,.14);
  color: #15803d;
  font-size: 11px; font-weight: 800;
  flex: 0 0 18px;
  margin-top: 2px;
}
.fp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.fp-tag {
  font-size: 12px; font-weight: 600;
  background: var(--bg-soft);
  color: var(--ink-2);
  padding: 5px 10px; border-radius: 6px;
}

/* ----- Mídia section ----- */
.midia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.midia-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .25s;
}
.midia-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: #cdd6e7; }
.midia-thumb {
  position: relative;
  background: var(--bg-soft);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
}
.midia-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.midia-card:hover .midia-thumb img { transform: scale(1.05); }
.midia-body {
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.midia-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.midia-outlet {
  font-size: 11.5px; font-weight: 800;
  padding: 5px 10px; border-radius: 6px;
  letter-spacing: .04em;
}
.midia-outlet-atarde { background: #0F7BC8; color: #fff; letter-spacing: .14em; }
.midia-outlet-jva { background: #1B3D87; color: #fff; }
.midia-outlet-r1 { background: #0E4DA4; color: #fff; }
.midia-date {
  font-size: 11.5px; color: var(--muted-2); font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.midia-headline {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--ink);
}
.midia-deck {
  font-size: 13.5px;
  color: var(--muted);
  text-wrap: pretty;
}
.midia-project {
  display: inline-block;
  margin-top: auto;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue-500);
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.midia-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(30,91,255,.05), rgba(34,211,238,.04));
  border: 1px solid rgba(30,91,255,.1);
  border-radius: var(--r-md);
  text-align: center;
  color: var(--ink-2);
  font-size: 14.5px;
  text-wrap: pretty;
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .featured-project { grid-template-columns: 1fr; }
  .fp-media { min-height: 260px; }
  .midia-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .fp-body { padding: 26px 22px; }
  .fp-media { min-height: 220px; }
  /* midia-card already stacks vertically */
}

/* Tighten primary-nav spacing slightly to fit 8 items */
@media (min-width: 1080px) {
  .primary-nav { gap: 24px; }
}


/* =====================================================
   v5 — More animation + fluidity polish
   ===================================================== */

/* Smoother reveal with cubic-bezier and slight blur */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition:
    opacity .85s cubic-bezier(.2,.7,.2,1),
    transform .85s cubic-bezier(.2,.7,.2,1),
    filter .85s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; filter: none; opacity: 1; }
}

/* Stagger inside grids — the JS sets --i index */
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

/* Animated hero glows — slow drift */
.hero-glow-1 { animation: drift-1 18s ease-in-out infinite alternate; }
.hero-glow-2 { animation: drift-2 22s ease-in-out infinite alternate; }
@keyframes drift-1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes drift-2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-50px, 30px) scale(1.05); }
}

/* Dark section glow drifts too */
.dark-glow { animation: drift-3 26s ease-in-out infinite alternate; }
@keyframes drift-3 {
  0%   { transform: translate(0,0); opacity: 1; }
  100% { transform: translate(-80px, 60px); opacity: .8; }
}

/* Service card icon micro-interaction */
.service-card .svc-icon { transition: transform .4s cubic-bezier(.2,.7,.2,1), background-color .25s, color .25s; }
.service-card:hover .svc-icon {
  transform: translateY(-2px) rotate(-3deg) scale(1.06);
  background: var(--blue-500);
  color: #fff;
}

/* MVV icon hover */
.mvv-card .mvv-icon { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.mvv-card:hover .mvv-icon { transform: rotate(-6deg) scale(1.06); }

/* Why card number hover lift */
.why-card .why-num { transition: transform .35s cubic-bezier(.2,.7,.2,1), background-color .25s; }
.why-card:hover .why-num {
  transform: translateY(-1px);
  background: var(--blue-500);
  color: #fff;
}

/* Chip / pill subtle pulse on hover */
.chip, .pill, .fp-tag, .tag-list li { transition: transform .25s cubic-bezier(.2,.7,.2,1), background-color .2s, border-color .2s, color .2s; }
.chip:hover, .pill:hover, .fp-tag:hover, .tag-list li:hover { transform: translateY(-1px); }

/* Button shine on hover */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.btn:hover::before { transform: translateX(100%); }
.btn-ghost::before, .btn-outline-light::before {
  background: linear-gradient(120deg, transparent 30%, rgba(30,91,255,.12) 50%, transparent 70%);
}

/* Text-link arrow slide */
.text-link {
  display: inline-flex; align-items: center; gap: 4px;
  position: relative;
}
.text-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.text-link:hover::after { transform: scaleX(1); }

/* Public-card glow ring on hover */
.public-card { position: relative; overflow: hidden; isolation: isolate; }
.public-card::before {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(34,211,238,.16), transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.public-card:hover::before { opacity: 1; }

/* Header logo hover */
.brand { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.brand:hover { transform: scale(1.03); }

/* Smooth nav underline (replace the prior scale anim with sweeping) */
.primary-nav a::after {
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

/* Dashboard chart line draw on hero load */
@keyframes draw-line {
  from { stroke-dashoffset: 700; }
  to   { stroke-dashoffset: 0; }
}
.dash-chart svg path[stroke="#1E5BFF"],
.dash-chart svg path[stroke="#22D3EE"] {
  stroke-dasharray: 700;
  animation: draw-line 2.2s cubic-bezier(.2,.7,.2,1) forwards;
}
.dash-chart svg path[stroke="#22D3EE"] {
  animation-delay: .4s;
}

/* PRISMA bars grow on reveal */
.prisma-vis .prisma-bars .bar {
  transform-origin: bottom;
  animation: grow-bar .9s cubic-bezier(.2,.7,.2,1) both;
}
.prisma-vis .prisma-bars .bar:nth-child(1) { animation-delay: .05s; }
.prisma-vis .prisma-bars .bar:nth-child(2) { animation-delay: .12s; }
.prisma-vis .prisma-bars .bar:nth-child(3) { animation-delay: .19s; }
.prisma-vis .prisma-bars .bar:nth-child(4) { animation-delay: .26s; }
.prisma-vis .prisma-bars .bar:nth-child(5) { animation-delay: .33s; }
.prisma-vis .prisma-bars .bar:nth-child(6) { animation-delay: .40s; }
.prisma-vis .prisma-bars .bar:nth-child(7) { animation-delay: .47s; }
@keyframes grow-bar {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Floating cards in hero - keep float, add tilt */
.float-card, .float-card-2 { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.float-card:hover, .float-card-2:hover { transform: translateY(-2px) rotate(-1deg) scale(1.04); }

/* Subtle scroll cue: header logo rotates slightly on scroll past hero */
.site-header.scrolled .brand-logo { filter: drop-shadow(0 1px 1px rgba(0,0,0,.05)); }

/* CTA card breathing border */
.cta-side { position: relative; }
.cta-side::after {
  content:""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(34,211,238,.4), transparent 60%, rgba(30,91,255,.4));
  z-index: -1; opacity: .35;
  filter: blur(20px);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { opacity: .25; transform: scale(.98); }
  50%     { opacity: .5;  transform: scale(1.02); }
}

/* FAB whatsapp - slight bob */
.fab-whats { animation: bob 4.5s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.fab-whats:hover { animation: none; transform: scale(1.08); }

/* Section title underline accent */
.section-title { position: relative; }

/* Tweak responsive midia */
@media (max-width: 720px) {
  .midia-grid { gap: 18px; }
}


/* Footer Instagram link icon alignment */
.foot-insta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s, transform .25s;
}
.foot-insta:hover { color: var(--cyan-300); transform: translateX(2px); }

/* CTA contact aside — clickable Instagram block */
.cs-link { text-decoration: none; cursor: pointer; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.cs-link:hover { transform: translateX(3px); }
.cs-link:hover .cs-icon { background: rgba(232,121,255,.16); color: #f6a3ff; }
