/* ════════════════════════════════════════════════
   GOKODE NOVO v3.0 · Nordic Enterprise Tech
   Outfit (display) + DM Sans (body) + JetBrains Mono
   Palette: #3ed6ff / #00bdff on pure white
   ════════════════════════════════════════════════ */

:root {
  /* Brand — herdam as cores do painel (tokens do contrato, injetados em
     theme_colors.html) com fallback no padrao do tema se nao personalizou. */
  --azul:       var(--primary, #00bdff);
  --azul-claro: var(--primary-light, #3ed6ff);
  --azul-texto: var(--primary-dark, #007eaa);
  --grad:       linear-gradient(135deg, var(--azul-claro) 0%, var(--azul) 100%);
  --grad-suave: linear-gradient(135deg, rgba(62,214,255,.10) 0%, rgba(0,189,255,.05) 100%);

  /* Superfícies */
  --fundo:       var(--background, #ffffff);
  --fundo-alt:   var(--background-alt, #f6fbfe);
  --fundo-card:  var(--surface, #ffffff);
  --fundo-escuro:#07152a;

  /* Texto */
  --txt:   var(--text, #07152a);
  --txt-2: var(--text-muted, #4a6d8c);
  --txt-3: #96b4c8;

  /* UI */
  --borda:    var(--border, #d0e9f5);
  --borda-h:  rgba(0,189,255,.45);

  /* Sombras */
  --s0: 0 1px 3px rgba(7,21,42,.06);
  --s1: 0 2px 10px rgba(7,21,42,.07);
  --s2: 0 8px 32px rgba(7,21,42,.08), 0 1px 4px rgba(0,189,255,.06);
  --s3: 0 20px 60px rgba(7,21,42,.10), 0 4px 16px rgba(0,189,255,.08);
  --glow: 0 0 48px rgba(0,189,255,.22);

  /* Tipografia */
  --f-display: 'Outfit', system-ui, sans-serif;
  --f-body:    'DM Sans', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Raios */
  --r:    12px;
  --r-sm:  7px;
  --r-xs:  4px;

  /* Transições */
  --t:  .25s cubic-bezier(.4,0,.2,1);
  --ts: .4s cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  background: var(--fundo);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Containers ─────────────────────────────── */
.gk-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.gk-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul-texto);
  margin-bottom: 20px;
}

.gk-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  flex-shrink: 0;
}

.gk-section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--txt);
  margin-bottom: 16px;
}

.gk-section-lead {
  font-size: 1.05rem;
  color: var(--txt-2);
  line-height: 1.75;
  max-width: 580px;
}

.gk-section-header {
  margin-bottom: 60px;
}

.gk-section-header.center {
  text-align: center;
}

.gk-section-header.center .gk-section-label {
  justify-content: center;
}

.gk-section-header.center .gk-section-lead {
  margin: 0 auto;
}

/* Destaque — gradient text */
.destaque {
  background: linear-gradient(135deg, var(--azul-texto) 0%, var(--azul) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Botões ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  border: none;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  color: var(--txt);
  border: 1.5px solid var(--borda);
}

.btn-outline:hover {
  border-color: var(--azul);
  color: var(--azul-texto);
  background: rgba(0,189,255,.04);
}

.btn-ghost {
  background: transparent;
  color: var(--azul-texto);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover { gap: 12px; }

/* ── Navbar ─────────────────────────────────── */
.gk-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 68px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(208,233,245,.7);
  transition: box-shadow var(--t);
}

.gk-nav.scrolled {
  box-shadow: var(--s1);
}

.gk-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.gk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.gk-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.gk-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: .78rem;
  font-weight: 500;
  color: #fff;
}

.gk-logo-text {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -.01em;
}

.gk-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}

.gk-nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--txt-2);
  padding: 8px 14px;
  border-radius: var(--r-xs);
  transition: var(--t);
}

.gk-nav-links a:hover {
  color: var(--azul-texto);
  background: rgba(0,189,255,.06);
}

.gk-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: #fff;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: var(--t);
  flex-shrink: 0;
  letter-spacing: .01em;
}

.gk-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow);
  filter: brightness(1.06);
}

.gk-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.gk-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--txt);
  border-radius: 2px;
  transition: var(--t);
}

.gk-mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  inset-inline: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--borda);
  padding: 20px 28px 28px;
  box-shadow: var(--s3);
}

.gk-mobile-menu.open { display: block; }

.gk-mobile-menu ul {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gk-mobile-menu ul a {
  display: block;
  padding: 11px 14px;
  font-size: .95rem;
  color: var(--txt-2);
  border-radius: var(--r-sm);
  transition: var(--t);
}

.gk-mobile-menu ul a:hover {
  color: var(--azul-texto);
  background: rgba(0,189,255,.05);
}

@media (max-width: 860px) {
  .gk-nav-links, .gk-nav-cta { display: none; }
  .gk-hamburger { display: flex; }
}

/* ── Hero ───────────────────────────────────── */
.gk-hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Foto de fundo com zoom sutil */
.gk-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: gk-hero-zoom 18s ease-out forwards;
}

@keyframes gk-hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}

/* Overlay: escuro à esquerda, transparente à direita */
.gk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(4,13,28,.97) 0%,
    rgba(7,21,42,.92) 32%,
    rgba(7,21,42,.65) 58%,
    rgba(7,21,42,.22) 100%
  );
}

/* Vinheta inferior */
.gk-hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(4,13,28,.75), transparent);
}

/* Conteúdo centralizado */
.gk-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 28px 100px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.gk-hero-inner > * {
  animation: gk-fade-up .8s cubic-bezier(.4,0,.2,1) both;
}
.gk-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.gk-hero-inner > *:nth-child(2) { animation-delay: .18s; }
.gk-hero-inner > *:nth-child(3) { animation-delay: .30s; }
.gk-hero-inner > *:nth-child(4) { animation-delay: .42s; }
.gk-hero-inner > *:nth-child(5) { animation-delay: .54s; }

@keyframes gk-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.gk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 28px;
  background: rgba(0,189,255,.1);
  border: 1px solid rgba(0,189,255,.28);
  padding: 7px 14px;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
}

.gk-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--azul);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--azul);
  animation: gk-blink 2s ease-in-out infinite;
}

@keyframes gk-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .15; }
}

.gk-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Gradiente no título — sobre fundo escuro */
.destaque-hero {
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul) 60%, var(--azul-texto) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gk-hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,.68);
  line-height: 1.78;
  max-width: 560px;
  margin: 0 auto 40px;
}

.gk-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Botão glass para o hero escuro */
.btn-glass {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.gk-hero-metrics {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.gk-hero-metric-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}

.gk-hero-metric-num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -.025em;
}

.gk-hero-metric-lbl {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: .02em;
}

/* ── Scroll hint ── */
.gk-hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: gk-fade-up .8s 1.1s both;
}

.gk-hero-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
  margin: 0 auto;
}

.gk-hero-scroll-wheel {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,.45);
  border-radius: 2px;
  animation: gk-scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes gk-scroll-wheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0);    }
  100% { opacity: 0; transform: translateX(-50%) translateY(11px); }
}

@media (max-width: 640px) {
  .gk-hero-inner { padding: 90px 24px 72px; }
  .gk-hero-metrics { gap: 20px; }
  .gk-hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .gk-hero-scroll-hint { display: none; }
}

/* ── Setores ────────────────────────────────── */
.gk-setores {
  padding: 100px 0;
  background: var(--fundo-alt);
  overflow: hidden;
}

.gk-setores-header {
  margin-bottom: 52px;
}

/* Wrapper com setas laterais */
.gk-setores-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Viewport: clips o track */
.gk-setores-viewport {
  flex: 1;
  overflow: hidden;
}

/* Track: fila de cards */
.gk-setores-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* Cada card */
.gk-setor-card {
  flex: 0 0 calc((100% - 40px) / 3);
  height: 360px;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gk-setor-card:hover .gk-setor-img {
  transform: scale(1.06);
}

.gk-setor-card:hover .gk-setor-overlay {
  opacity: .82;
}

.gk-setor-card:hover .gk-setor-content {
  transform: translateY(-6px);
}

/* Foto de fundo */
.gk-setor-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}

/* Overlay escuro gradiente */
.gk-setor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4,13,28,.18) 0%,
    rgba(4,13,28,.55) 50%,
    rgba(4,13,28,.92) 100%
  );
  transition: opacity var(--t);
}

/* Conteúdo sobre a foto */
.gk-setor-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.gk-setor-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,189,255,.2);
  border: 1px solid rgba(0,189,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-claro);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.gk-setor-name {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.gk-setor-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
  font-family: var(--f-body);
}

/* Botões de navegação */
.gk-setores-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--borda);
  background: var(--fundo-card);
  color: var(--txt-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--s1);
  z-index: 2;
}

.gk-setores-nav:hover:not(:disabled) {
  border-color: var(--azul);
  color: var(--azul-texto);
  transform: scale(1.08);
  box-shadow: var(--s2);
}

.gk-setores-nav:disabled {
  opacity: .35;
  cursor: default;
}

.gk-setores-nav--prev { margin-right: 16px; }
.gk-setores-nav--next { margin-left: 16px; }

/* Dots */
.gk-setores-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.gk-setores-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--borda);
  cursor: pointer;
  transition: var(--t);
  padding: 0;
}

.gk-setores-dot.active {
  background: var(--azul);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,189,255,.4);
}

/* Responsivo */
@media (max-width: 1024px) {
  .gk-setor-card { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 640px) {
  .gk-setores { padding: 72px 0; }
  .gk-setor-card { flex: 0 0 100%; height: 300px; }
  .gk-setores-nav { width: 38px; height: 38px; }
  .gk-setores-nav--prev { margin-right: 10px; }
  .gk-setores-nav--next { margin-left: 10px; }
}

/* ── Proposta ───────────────────────────────── */
.gk-proposta {
  background: var(--fundo);
  overflow: hidden;
}

.gk-proposta-header {
  padding: 110px 0 72px;
  max-width: 680px;
}

/* ── Pilares ── */
.gk-pilares {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: var(--s1);
}

.gk-pilar {
  display: grid;
  grid-template-columns: 56px 52px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--fundo-card);
  border-bottom: 1px solid var(--borda);
  transition: var(--t);
  position: relative;
}

.gk-pilar:last-child { border-bottom: none; }

.gk-pilar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.gk-pilar:hover {
  background: var(--fundo-alt);
  transform: translateX(4px);
}

.gk-pilar:hover::before { transform: scaleY(1); }

.gk-pilar-num {
  font-family: var(--f-mono);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(0,189,255,.3);
  letter-spacing: .06em;
  line-height: 1;
  user-select: none;
}

.gk-pilar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--grad-suave);
  border: 1px solid rgba(0,189,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-texto);
  flex-shrink: 0;
  transition: var(--t);
}

.gk-pilar:hover .gk-pilar-icon {
  background: rgba(0,189,255,.14);
  border-color: rgba(0,189,255,.35);
}

.gk-pilar-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.gk-pilar-desc {
  font-size: .85rem;
  color: var(--txt-2);
  line-height: 1.6;
}

.gk-pilar-tag {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azul-texto);
  background: rgba(0,189,255,.08);
  border: 1px solid rgba(0,189,255,.2);
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Faixa de métricas ── */
.gk-proposta-metricas {
  background: var(--fundo-escuro);
  padding: 64px 0;
}

.gk-metricas-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 0;
}

.gk-metricas-divider {
  background: rgba(255,255,255,.1);
  height: 60px;
  align-self: center;
}

.gk-metrica {
  padding: 0 40px;
  text-align: center;
}

.gk-metrica-num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--azul-claro) 0%, var(--azul) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.gk-metrica-lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .gk-pilar { grid-template-columns: 56px 52px 1fr; }
  .gk-pilar-tag { display: none; }
}

@media (max-width: 700px) {
  .gk-proposta-header { padding: 72px 0 48px; }
  .gk-pilar { grid-template-columns: 40px 1fr; gap: 16px; padding: 22px 20px; }
  .gk-pilar-num { display: none; }
  .gk-pilar:hover { transform: none; }
  .gk-metricas-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gk-metricas-divider { display: none; }
  .gk-proposta-metricas { padding: 52px 0; }
}

/* ── Serviços ───────────────────────────────── */
.gk-servicos {
  padding: 110px 0;
  background: var(--fundo-alt);
}

.gk-service-list {
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--s1);
}

.gk-service-row {
  background: #fff;
  border-bottom: 1px solid var(--borda);
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  transition: var(--t);
  cursor: default;
}

.gk-service-row:last-child { border-bottom: none; }

.gk-service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 2.5px;
  background: var(--grad);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--t);
}

.gk-service-row:hover {
  background: var(--fundo-alt);
}

.gk-service-row:hover::before {
  transform: scaleY(1);
}

.gk-service-num {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  color: var(--txt-3);
  letter-spacing: .08em;
}

.gk-service-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
}

.gk-service-desc {
  font-size: .85rem;
  color: var(--txt-2);
  line-height: 1.55;
}

.gk-service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gk-service-tag {
  font-family: var(--f-mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--azul-texto);
  background: rgba(0,189,255,.08);
  border: 1px solid rgba(0,189,255,.18);
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}

.gk-servicos-cta {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 700px) {
  .gk-service-row { grid-template-columns: 36px 1fr; padding: 22px 24px; }
  .gk-service-tags { display: none; }
}

/* ── Sobre ──────────────────────────────────── */
.gk-sobre {
  padding: 110px 0;
  background: var(--fundo);
}

.gk-sobre-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}

/* Coluna foto */
.gk-sobre-foto-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.gk-sobre-foto {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--s3);
}

.gk-sobre-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}

.gk-sobre-foto:hover img { transform: scale(1.04); }

.gk-sobre-foto-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(7,21,42,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  text-align: center;
}

.gk-sobre-badge-num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}

.gk-sobre-badge-lbl {
  font-family: var(--f-mono);
  font-size: .62rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 3px;
}

.gk-sobre-stack {
  background: var(--fundo-alt);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: 18px 20px;
}

.gk-sobre-stack-label {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 12px;
}

.gk-sobre-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gk-sobre-stack-tags span {
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  color: var(--azul-texto);
  background: rgba(0,189,255,.08);
  border: 1px solid rgba(0,189,255,.18);
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: .04em;
}

/* Coluna conteúdo */
.gk-sobre-text {
  margin-bottom: 40px;
}

.gk-sobre-text p {
  font-size: .97rem;
  color: var(--txt-2);
  line-height: 1.85;
  margin-bottom: 16px;
}

.gk-sobre-text p:last-child { margin-bottom: 0; }

/* Valores */
.gk-valores {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
}

.gk-valor {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--borda);
  transition: background var(--t);
}

.gk-valor:last-child { border-bottom: none; }

.gk-valor:hover { background: var(--fundo-alt); }

.gk-valor-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--grad-suave);
  border: 1px solid rgba(0,189,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-texto);
  flex-shrink: 0;
  margin-top: 1px;
  transition: var(--t);
}

.gk-valor:hover .gk-valor-icon {
  background: rgba(0,189,255,.12);
  border-color: rgba(0,189,255,.3);
}

.gk-valor-title {
  font-family: var(--f-display);
  font-size: .925rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 4px;
  letter-spacing: -.005em;
}

.gk-valor-desc {
  font-size: .82rem;
  color: var(--txt-2);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .gk-sobre-grid { grid-template-columns: 1fr; gap: 52px; }
  .gk-sobre-foto-col { position: static; }
  .gk-sobre-foto { aspect-ratio: 16/9; }
}

/* ── Processo ───────────────────────────────── */
.gk-processo {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

/* Foto de fundo */
.gk-processo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

/* Overlay escuro denso */
.gk-processo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4,13,28,.97) 0%,
    rgba(7,21,42,.93) 50%,
    rgba(4,13,28,.97) 100%
  );
}

/* Label da seção em branco */
.gk-processo-label {
  color: var(--azul) !important;
}

/* Grid de cards */
.gk-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Card de cada etapa */
.gk-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.gk-step:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(0,189,255,.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(0,189,255,.15);
}

/* Foto do step */
.gk-step-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.gk-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  filter: brightness(.7) saturate(.85);
}

.gk-step:hover .gk-step-img img {
  transform: scale(1.07);
  filter: brightness(.8) saturate(1);
}

/* Overlay sobre a foto */
.gk-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,13,28,.7) 100%);
}

/* Número sobre a foto */
.gk-step-num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
  background: rgba(0,189,255,.25);
  border: 1px solid rgba(0,189,255,.4);
  padding: 3px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  z-index: 1;
}

/* Corpo do card */
.gk-step-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Ícone SVG */
.gk-step-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(0,189,255,.15);
  border: 1px solid rgba(0,189,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-claro);
  margin-bottom: 14px;
  transition: var(--t);
}

.gk-step:hover .gk-step-icon-wrap {
  background: rgba(0,189,255,.25);
  border-color: rgba(0,189,255,.5);
}

.gk-step h4 {
  font-family: var(--f-display);
  font-size: .97rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.gk-step p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  flex: 1;
}

.gk-step-badge {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  color: var(--azul);
  background: rgba(0,189,255,.1);
  border: 1px solid rgba(0,189,255,.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 16px;
  text-transform: uppercase;
  align-self: flex-start;
}

/* Conector entre cards */
.gk-step-connector {
  position: absolute;
  right: -20px;
  top: calc(16% + 10px);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,189,255,.5);
  z-index: 2;
}

@media (max-width: 960px) {
  .gk-steps { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gk-step-connector { display: none; }
}

@media (max-width: 540px) {
  .gk-steps { grid-template-columns: 1fr; }
  .gk-processo { padding: 80px 0; }
}

/* ── Case Study ─────────────────────────────── */
.gk-case {
  padding: 110px 0;
  background: var(--fundo);
}

.gk-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.gk-case-text p {
  font-size: .93rem;
  color: var(--txt-2);
  line-height: 1.8;
  margin-bottom: 14px;
}

.gk-case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding: 28px;
  background: var(--fundo-alt);
  border: 1px solid var(--borda);
  border-radius: var(--r);
}

.gk-result-num {
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--azul-texto);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.gk-result-lbl {
  font-size: .75rem;
  color: var(--txt-2);
  line-height: 1.4;
}

.gk-case-card {
  background: var(--fundo-alt);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--s1);
}

.gk-case-card-header {
  background: #0c1e38;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.gk-case-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--azul);
  box-shadow: 0 0 12px var(--azul);
}

.gk-case-card-title {
  font-family: var(--f-display);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}

.gk-case-card-body {
  padding: 4px 0;
}

.gk-case-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--borda);
}

.gk-case-detail:last-child { border-bottom: none; }

.gk-case-detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.gk-case-detail h5 {
  font-family: var(--f-display);
  font-size: .87rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 3px;
}

.gk-case-detail p {
  font-size: .8rem;
  color: var(--txt-2);
  line-height: 1.5;
}

@media (max-width: 840px) {
  .gk-case-grid { grid-template-columns: 1fr; }
  .gk-case-results { grid-template-columns: repeat(3, 1fr); }
}

/* ── Depoimentos ────────────────────────────── */
.gk-depos {
  padding: 110px 0;
  background: var(--fundo-alt);
}

.gk-depos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gk-depo {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--t);
  box-shadow: var(--s0);
  position: relative;
}

.gk-depo::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: rgba(0,189,255,.08);
  line-height: 1;
}

.gk-depo:hover {
  transform: translateY(-4px);
  box-shadow: var(--s2);
  border-color: rgba(0,189,255,.25);
}

.gk-stars {
  display: flex;
  gap: 2px;
}

.gk-star { color: #fbbf24; font-size: .82rem; }

.gk-depo-text {
  font-size: .88rem;
  color: var(--txt-2);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.gk-depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--borda);
}

.gk-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.gk-author-name {
  font-family: var(--f-display);
  font-size: .87rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 1px;
}

.gk-author-role {
  font-size: .75rem;
  color: var(--txt-3);
}

@media (max-width: 840px) {
  .gk-depos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── FAQ ────────────────────────────────────── */
.gk-faq {
  padding: 110px 0;
  background: var(--fundo);
}

.gk-faq-wrap {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--s1);
}

.gk-faq-item {
  background: #fff;
  border-bottom: 1px solid var(--borda);
}

.gk-faq-item:last-child { border-bottom: none; }

.gk-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--f-display);
  font-size: .93rem;
  font-weight: 600;
  color: var(--txt);
  text-align: left;
  transition: var(--t);
}

.gk-faq-q:hover { background: var(--fundo-alt); }

.gk-faq-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  border: 1.5px solid var(--borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--azul-texto);
  transition: var(--t);
}

.gk-faq-item[open] .gk-faq-icon {
  transform: rotate(180deg);
  background: rgba(0,189,255,.08);
  border-color: rgba(0,189,255,.3);
}

.gk-faq-a {
  display: none;
  padding: 0 26px 20px;
  font-size: .88rem;
  color: var(--txt-2);
  line-height: 1.75;
}

.gk-faq-item[open] .gk-faq-a {
  display: block;
}

/* ── CTA ────────────────────────────────────── */
.gk-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #e8f8fe 0%, #f0fbff 100%);
  position: relative;
  overflow: hidden;
}

.gk-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(62,214,255,.18) 0%, transparent 65%);
  pointer-events: none;
}

.gk-cta-inner {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gk-cta-inner .gk-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.gk-cta-inner .gk-section-lead {
  margin: 0 auto 36px;
}

.gk-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Blog Preview ───────────────────────────── */
.gk-blog-preview {
  padding: 110px 0;
  background: var(--fundo-alt);
}

.gk-blog-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.gk-blog-preview-all {
  flex-shrink: 0;
  white-space: nowrap;
}

.gk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.gk-blog-card {
  background: var(--fundo-card);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--t);
  box-shadow: var(--s0);
}

.gk-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s2);
  border-color: rgba(0,189,255,.25);
}

/* Imagem */
.gk-blog-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--fundo-alt);
  flex-shrink: 0;
}

.gk-blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.gk-blog-card:hover .gk-blog-card-img-wrap img {
  transform: scale(1.05);
}

.gk-blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fundo-alt);
  color: var(--txt-3);
}

/* Categoria sobre a imagem */
.gk-blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azul-texto);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,189,255,.2);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* Corpo */
.gk-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gk-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--txt-3);
  margin-bottom: 12px;
  font-family: var(--f-mono);
  letter-spacing: .03em;
}

.gk-blog-card-dot { opacity: .5; }

.gk-blog-card-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  flex: 1;
}

.gk-blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t);
}

.gk-blog-card-title a:hover { color: var(--azul-texto); }

.gk-blog-card-excerpt {
  font-size: .83rem;
  color: var(--txt-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.gk-blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--azul-texto);
  text-decoration: none;
  transition: gap var(--t), color var(--t);
  margin-top: auto;
}

.gk-blog-card-link:hover {
  gap: 10px;
  color: var(--azul);
}

@media (max-width: 900px) {
  .gk-blog-grid { grid-template-columns: 1fr 1fr; }
  .gk-blog-preview-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .gk-blog-grid { grid-template-columns: 1fr; }
  .gk-blog-preview { padding: 72px 0; }
}

/* ── Footer ─────────────────────────────────── */
.gk-footer {
  background: var(--fundo-escuro);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 0 36px;
}

.gk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}

.gk-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.gk-footer-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.gk-footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: .7rem;
  color: #fff;
}

.gk-footer-brand-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.gk-footer-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  margin-bottom: 22px;
}

.gk-footer-social {
  display: flex;
  gap: 9px;
}

.gk-social-btn {
  width: 35px; height: 35px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: var(--t);
}

.gk-social-btn:hover {
  background: rgba(62,214,255,.12);
  border-color: rgba(62,214,255,.3);
  color: var(--azul-claro);
}

.gk-footer-col-title {
  font-family: var(--f-mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-bottom: 18px;
}

.gk-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.gk-footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  transition: color var(--t);
  text-decoration: none;
}

.gk-footer-links a:hover { color: var(--azul-claro); }

.gk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gk-footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.2);
}

.gk-footer-copy span { color: var(--azul-claro); }

.gk-footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
}

.gk-footer-legal a {
  font-size: .76rem;
  color: rgba(255,255,255,.2);
  transition: color var(--t);
}

.gk-footer-legal a:hover { color: var(--azul-claro); }

@media (max-width: 860px) {
  .gk-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .gk-footer-grid { grid-template-columns: 1fr; }
}

/* ── Blog ───────────────────────────────────── */
.gk-blog {
  padding: 110px 0;
  background: var(--fundo-alt);
}

.gk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gk-blog-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  box-shadow: var(--s0);
}

.gk-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s2);
  border-color: rgba(0,189,255,.25);
}

.gk-blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, rgba(62,214,255,.1), rgba(0,189,255,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.gk-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }

.gk-blog-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gk-blog-cat {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--azul-texto);
  margin-bottom: 10px;
}

.gk-blog-title {
  font-family: var(--f-display);
  font-size: .97rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.38;
  margin-bottom: 10px;
}

.gk-blog-excerpt {
  font-size: .83rem;
  color: var(--txt-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.gk-blog-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--azul-texto);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}

.gk-blog-link:hover { gap: 10px; }

@media (max-width: 840px) { .gk-blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ── Contato ────────────────────────────────── */
.gk-contato {
  padding: 110px 0;
  background: var(--fundo);
  min-height: 85vh;
}

.gk-contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gk-form-box {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--s1);
}

.gk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gk-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.gk-form-group label {
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--txt-2);
  letter-spacing: .02em;
}

.gk-form-group input,
.gk-form-group select,
.gk-form-group textarea {
  background: var(--fundo-alt);
  border: 1px solid var(--borda);
  border-radius: var(--r-sm);
  padding: 12px 15px;
  font-family: var(--f-body);
  font-size: .9rem;
  color: var(--txt);
  transition: var(--t);
  width: 100%;
  outline: none;
  appearance: none;
}

.gk-form-group input:focus,
.gk-form-group select:focus,
.gk-form-group textarea:focus {
  border-color: var(--azul);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,189,255,.1);
}

.gk-form-group textarea { min-height: 130px; resize: vertical; }

.gk-btn-submit {
  width: 100%;
  background: var(--grad);
  color: #fff;
  font-family: var(--f-display);
  font-size: .9rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  letter-spacing: .02em;
  margin-top: 6px;
}

.gk-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  filter: brightness(1.05);
}

.gk-contato-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gk-contato-info-head {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 6px;
}

.gk-contato-info-sub {
  font-size: .9rem;
  color: var(--txt-2);
  line-height: 1.65;
  margin-bottom: 6px;
}

.gk-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--fundo-card);
  border: 1px solid var(--borda);
  border-radius: var(--r);
  padding: 18px;
  transition: var(--t);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--s0);
}

.gk-contact-card:hover {
  border-color: rgba(0,189,255,.3);
  transform: translateX(4px);
  box-shadow: var(--s1);
}

.gk-contact-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }

.gk-contact-card h4 {
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 3px;
}

.gk-contact-card p { font-size: .8rem; color: var(--txt-2); }

@media (max-width: 840px) {
  .gk-contato-grid { grid-template-columns: 1fr; }
  .gk-form-row { grid-template-columns: 1fr; }
}

/* ── Pages / Blog Detail ────────────────────── */
.gk-page {
  padding: 100px 0;
  min-height: 80vh;
}

.gk-page-hero {
  background: var(--fundo-alt);
  border-bottom: 1px solid var(--borda);
  padding: 80px 0 64px;
  text-align: center;
}

.gk-page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--txt);
  margin-bottom: 18px;
}

.gk-page-hero p {
  font-size: 1.05rem;
  color: var(--txt-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.gk-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: .7rem;
  color: var(--txt-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  justify-content: center;
  margin-top: 20px;
}

.gk-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 28px;
  font-size: .97rem;
  color: var(--txt-2);
  line-height: 1.85;
}

.gk-content h1, .gk-content h2, .gk-content h3 {
  font-family: var(--f-display);
  color: var(--txt);
  margin: 40px 0 16px;
  line-height: 1.25;
}

.gk-content h1 { font-size: 1.9rem; }
.gk-content h2 { font-size: 1.4rem; }
.gk-content h3 { font-size: 1.15rem; }
.gk-content p { margin-bottom: 18px; }
.gk-content a { color: var(--azul-texto); text-decoration: underline; }
.gk-content img { border-radius: var(--r); margin: 28px 0; border: 1px solid var(--borda); }
.gk-content ul, .gk-content ol { padding-left: 22px; margin-bottom: 18px; }
.gk-content li { margin-bottom: 6px; }
.gk-content blockquote {
  border-left: 3px solid var(--azul);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--fundo-alt);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
}

.gk-content code {
  font-family: var(--f-mono);
  font-size: .84em;
  background: var(--fundo-alt);
  border: 1px solid var(--borda);
  padding: 2px 6px;
  border-radius: var(--r-xs);
}
