/* ============================================================
   AKA MARKETING — Design System v2
   Paleta: Azul (#2B35E8) + Rosa (#E040FB) + Dark
   Fonte: Sansation (headlines) + Inter (body)
   ============================================================ */

/* --- Fontes Sansation --- */
@font-face {
  font-family: 'Sansation';
  src: url('../fonts/Sansation-Regular.ttf') format('truetype');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Sansation';
  src: url('../fonts/Sansation-Bold.ttf') format('truetype');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Sansation';
  src: url('../fonts/Sansation-Light.ttf') format('truetype');
  font-weight: 300; font-display: swap;
}

/* --- Tokens de Cor --- */
:root {
  /* Brand */
  --aka-blue:        #2B35E8;               /* azul primário — CTAs, destaques */
  --aka-blue-mid:    #5865F0;               /* azul médio — hover, ativos */
  --aka-blue-soft:   #9DA6F8;               /* azul suave — labels, badges */
  --aka-blue-dark:   #15158A;               /* azul escuro — logo */
  --aka-pink:        #E040FB;               /* rosa/magenta — destaque */
  --aka-pink-mid:    #CC55EE;               /* rosa médio */
  --aka-gradient:    linear-gradient(135deg, #2B35E8 0%, #8B28CC 55%, #E040FB 100%);
  --aka-gradient-h:  linear-gradient(90deg,  #2B35E8 0%, #8B28CC 55%, #E040FB 100%);

  /* Superfícies */
  --aka-bg-primary:    #06060F;
  --aka-bg-elevated:   #0D0D20;
  --aka-bg-card:       #10102A;

  /* Texto */
  --aka-text-primary:   #FFFFFF;
  --aka-text-secondary: rgba(255,255,255,0.52);
  --aka-text-tertiary:  rgba(255,255,255,0.32);

  /* Bordas */
  --aka-border:        rgba(255,255,255,0.07);
  --aka-border-blue:   rgba(43,53,232,0.45);
  --aka-border-pink:   rgba(224,64,251,0.35);

  /* Layout */
  --container-max: 1200px;
  --container-px:  80px;
  --section-gap:   100px;

  /* Forma */
  --radius-card: 18px;
  --radius-btn:  9px;
  --radius-pill: 100px;

  /* Animação — Apple style */
  --ease-spring:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:  cubic-bezier(0.45, 0, 0.55, 1);
  --dur-reveal:   1000ms;
  --dur-fast:     220ms;
  --dur-medium:   400ms;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--aka-bg-primary);
  color: var(--aka-text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
.font-brand { font-family: 'Sansation', system-ui, sans-serif; }

.hero-headline {
  font-family: 'Sansation', system-ui, sans-serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--aka-text-primary);
}

.section-headline {
  font-family: 'Sansation', system-ui, sans-serif;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.subheadline {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--aka-text-secondary);
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--aka-text-secondary);
}

/* Marca-texto — destaque tipo marcador */
.text-marker {
  background: linear-gradient(180deg, transparent 52%, rgba(224, 64, 251, 0.38) 52%);
  color: inherit;
  padding: 0 3px;
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Gradient text */
.gradient-text {
  background: var(--aka-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(43, 53, 232, 0.12);
  border: 0.5px solid rgba(43, 53, 232, 0.35);
  color: var(--aka-blue-soft);
  margin-bottom: 20px;
}
.badge-pink {
  background: rgba(224, 64, 251, 0.10);
  border-color: rgba(224, 64, 251, 0.3);
  color: var(--aka-pink-mid);
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aka-gradient-h);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: filter var(--dur-fast) var(--ease-out), transform 120ms;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}
.btn-primary:hover  { filter: brightness(1.12); }
.btn-primary:active { transform: scale(0.975); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aka-blue);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--dur-fast), transform 120ms;
  white-space: nowrap;
}
.btn-blue:hover  { background: var(--aka-blue-mid); }
.btn-blue:active { transform: scale(0.975); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition:
    background     500ms var(--ease-out),
    border-color   500ms var(--ease-out),
    box-shadow     500ms var(--ease-out),
    backdrop-filter 500ms var(--ease-out);
  border-bottom: 0.5px solid transparent;
}

#nav.scrolled {
  /* Superfície elevada — mais clara que o bg da página para criar hierarquia */
  background: rgba(16, 16, 44, 0.96);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);

  /* Borda inferior com acento azul brand */
  border-bottom-color: rgba(43, 53, 232, 0.25);

  /* Sombra suave embaixo — separa o nav do conteúdo */
  box-shadow:
    0 1px 0 rgba(43, 53, 232, 0.18),
    0 4px 24px rgba(0, 0, 0, 0.45);
}

/* Links ficam mais visíveis quando nav tem bg */
#nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.75);
}
#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active {
  color: #fff;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--container-px);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Logo: class está no img diretamente, então selecionamos img.nav-logo */
img.nav-logo {
  height: 30px;
  width: auto;
  max-width: none; /* override do reset global img { max-width: 100% } */
}
/* Cobre todas as páginas: img dentro da âncora do logo no nav */
.nav-inner > a:first-child {
  flex-shrink: 0;  /* âncora não encolhe no flex */
  display: flex;
  align-items: center;
}
.nav-inner > a:first-child img {
  max-width: none; /* override global img { max-width: 100% } para não comprimir */
  width: auto;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Sansation', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  transition: color var(--dur-fast);
  font-weight: 450;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta { margin-left: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: transform 350ms var(--ease-spring), opacity 250ms;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(16, 16, 44, 0.98);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  padding: 28px var(--container-px);
  gap: 22px;
  border-top: 0.5px solid rgba(43, 53, 232, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; color: rgba(255,255,255,0.7); }
.mobile-menu a:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--aka-text-secondary);
  max-width: 480px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Globe container */
.hero-globe {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
}

#globe-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

/* Atmospheric glow around globe */
.hero-globe::before {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(43, 53, 232, 0.15) 0%,
    rgba(224, 64, 251, 0.05) 40%,
    transparent 70%
  );
  animation: globeGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes globeGlow {
    from { opacity: 0.5; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.05); }
  }
}

/* Left vignette blends globe into content */
.globe-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--aka-bg-primary) 0%,
    rgba(6,6,15,0.6) 35%,
    transparent 65%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

/* ============================================================
   STARFIELD BACKGROUND
   ============================================================ */
.hero-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--aka-border);
  border-bottom: 0.5px solid var(--aka-border);
}

.metric-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 0.5px solid var(--aka-border);
  position: relative;
  overflow: hidden;
}
.metric-item:last-child { border-right: none; }

.metric-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: var(--aka-gradient-h);
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.metric-item:hover::after { opacity: 1; }

.metric-number {
  font-family: 'Sansation', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  background: var(--aka-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 13px;
  color: var(--aka-text-secondary);
  line-height: 1.4;
}

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners-strip {
  border-bottom: 0.5px solid var(--aka-border);
  padding: 32px 0;
}

.partners-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aka-text-tertiary);
  font-weight: 500;
  white-space: nowrap;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 0.5px solid var(--aka-border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.partner-badge:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
}

.partner-badge svg, .partner-badge .partner-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   CLIENT LOGOS MARQUEE
   ============================================================ */
.client-logos-strip {
  padding: 28px 0 36px;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

.client-logos-strip::before,
.client-logos-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.client-logos-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--aka-bg-primary) 20%, transparent);
}
.client-logos-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--aka-bg-primary) 20%, transparent);
}

.client-logos-track {
  display: flex;
  width: max-content;
}

@media (prefers-reduced-motion: no-preference) {
  .client-logos-track {
    animation: toolsMarquee 50s linear infinite;
  }
  .client-logos-track:hover { animation-play-state: paused; }
}

.client-logos-set {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  flex-shrink: 0;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  height: 52px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background var(--dur-medium), border-color var(--dur-medium);
  cursor: default;
}
.client-logo-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.client-logo-card img {
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 130px;
  object-fit: contain;
  display: block;
  opacity: 0.55;
  transition: opacity 400ms var(--ease-out), transform 300ms var(--ease-out);
}
.client-logo-card:hover img {
  opacity: 0.9;
  transform: scale(1.12);
}

/* ============================================================
   CLIENTS DIVIDER
   ============================================================ */
.clients-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 80px;
  max-width: var(--container-max);
  margin: 0 auto 28px;
}

.clients-divider-line {
  flex: 1;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--aka-border) 30%, var(--aka-border) 70%, transparent);
}

.clients-divider-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--aka-text-tertiary);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .clients-divider { padding: 0 20px; margin-bottom: 40px; }
  .clients-divider-text { font-size: 10px; white-space: normal; text-align: center; }
}

/* ============================================================
   TOOLS MARQUEE
   ============================================================ */
.tools-strip {
  padding: 36px 0;
  border-bottom: 0.5px solid var(--aka-border);
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}

/* fade edges */
.tools-strip::before,
.tools-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.tools-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--aka-bg-primary) 30%, transparent);
}
.tools-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--aka-bg-primary) 30%, transparent);
}

.tools-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aka-text-tertiary);
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.tools-track {
  display: flex;
  width: max-content;
}

@media (prefers-reduced-motion: no-preference) {
  .tools-track {
    animation: toolsMarquee 60s linear infinite;
  }
  .tools-track:hover {
    animation-play-state: paused;
  }
  @keyframes toolsMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
}

.tools-set {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 22px;
  flex-shrink: 0;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.35;
  transition: opacity 500ms var(--ease-out);
  flex-shrink: 0;
  cursor: default;
}
.tool-item:hover { opacity: 0.8; }

.tool-item img {
  height: 22px;
  width: auto;
  max-width: 88px;
  filter: brightness(0) invert(1);
  display: block;
  object-fit: contain;
}

.tool-name {
  font-size: 9px;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
  letter-spacing: 0.07em;
  font-weight: 600;
  text-transform: uppercase;
}

/* text-only fallback for logos not available in Simple Icons */
.tool-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6);
  padding: 4px 10px;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  white-space: nowrap;
  font-family: 'Sansation', sans-serif;
}

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: var(--section-gap) 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header p {
  margin-top: 18px;
  color: var(--aka-text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--aka-bg-card);
  border: 0.5px solid var(--aka-border);
  border-radius: var(--radius-card);
  padding: 32px;
  transition:
    transform var(--dur-medium) var(--ease-out),
    border-color var(--dur-medium) var(--ease-out),
    background var(--dur-medium);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--aka-border-blue);
  background: rgba(16,16,42,0.9);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(43,53,232,0.15);
  border: 0.5px solid rgba(43,53,232,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.card-title {
  font-family: 'Sansation', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--aka-text-primary);
}

.card-text {
  font-size: 15px;
  color: var(--aka-text-secondary);
  line-height: 1.65;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

/* ============================================================
   METHODOLOGY STEPPER (dark theme)
   ============================================================ */
.stepper-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.stepper-track {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: pointer;
  position: relative;
}

.step-dot-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--aka-border);
  background: var(--aka-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sansation', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--aka-text-tertiary);
  transition: all var(--dur-medium) var(--ease-spring);
  position: relative;
  z-index: 2;
}

.step-dot-circle.active {
  background: var(--aka-gradient-h);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 20px rgba(43,53,232,0.4);
}

.step-dot-circle.done {
  background: rgba(43,53,232,0.12);
  border-color: var(--aka-blue);
  color: var(--aka-blue-soft);
}

.step-dot-label {
  font-size: 10px;
  color: var(--aka-text-tertiary);
  margin-top: 8px;
  text-align: center;
  max-width: 70px;
  line-height: 1.3;
  transition: color var(--dur-fast);
}
.step-dot-label.active { color: var(--aka-blue-soft); font-weight: 600; }

.step-connector {
  position: absolute;
  top: 19px;
  left: calc(50% + 19px);
  right: calc(-50% + 19px);
  height: 1px;
  background: var(--aka-border);
  z-index: 1;
  transition: background var(--dur-medium);
}
.step-connector.done { background: var(--aka-blue); opacity: 0.5; }

.stepper-panel {
  border: 0.5px solid var(--aka-border);
  border-radius: var(--radius-card);
  background: var(--aka-bg-card);
  overflow: hidden;
}

.stepper-panel-header {
  padding: 28px 32px 24px;
  border-bottom: 0.5px solid var(--aka-border);
}

.stepper-phase-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  background: rgba(43,53,232,0.12);
  border: 0.5px solid rgba(43,53,232,0.3);
  color: var(--aka-blue-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stepper-phase-title {
  font-family: 'Sansation', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--aka-text-primary);
  margin-bottom: 8px;
}

.stepper-phase-sub {
  font-size: 14px;
  color: var(--aka-text-secondary);
  line-height: 1.6;
}

.stepper-panel-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stepper-col {
  padding: 24px 32px;
}
.stepper-col:first-child { border-right: 0.5px solid var(--aka-border); }

.stepper-col-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aka-text-tertiary);
  margin-bottom: 14px;
  font-weight: 600;
}

.stepper-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  border: 0.5px solid var(--aka-border);
  margin: 3px;
  color: var(--aka-text-secondary);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.stepper-tag:hover { border-color: var(--aka-border-blue); color: var(--aka-blue-soft); }

.stepper-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--aka-text-secondary);
  line-height: 1.5;
}

.stepper-result-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aka-blue);
  margin-top: 5px;
  flex-shrink: 0;
}

.stepper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-top: 0.5px solid var(--aka-border);
}

.stepper-nav-btn {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
  border: 0.5px solid var(--aka-border);
  background: transparent;
  color: var(--aka-text-primary);
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
  font-family: inherit;
  font-weight: 500;
}
.stepper-nav-btn:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.2); }
.stepper-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.stepper-nav-btn.primary {
  background: var(--aka-gradient-h);
  border-color: transparent;
  color: #fff;
}
.stepper-nav-btn.primary:hover { filter: brightness(1.1); }

/* Barra de progresso do auto-avanço */
.stepper-progress {
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  overflow: hidden;
}

.stepper-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--aka-gradient-h);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.stepper-cycle-badge {
  font-size: 12px;
  color: var(--aka-blue-soft);
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 0.5px solid var(--aka-border-blue);
  background: rgba(43,53,232,0.08);
}

/* ============================================================
   PHASES (accordion — inner pages)
   ============================================================ */
.phases-list { display: flex; flex-direction: column; gap: 2px; }

.phase-item {
  background: var(--aka-bg-card);
  border: 0.5px solid var(--aka-border);
  border-radius: 12px;
  overflow: hidden;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 32px;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.phase-header:hover { background: rgba(43,53,232,0.05); }

.phase-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aka-blue-soft);
  min-width: 60px;
}

.phase-title {
  font-family: 'Sansation', sans-serif;
  font-size: 17px;
  font-weight: 700;
  flex: 1;
}

.phase-chevron {
  width: 20px; height: 20px;
  color: var(--aka-text-secondary);
  transition: transform 400ms var(--ease-spring);
}
.phase-item.open .phase-chevron { transform: rotate(180deg); }

.phase-body { max-height: 0; overflow: hidden; transition: max-height 450ms var(--ease-spring); }
.phase-item.open .phase-body { max-height: 560px; }

.phase-body-inner {
  padding: 0 32px 28px 112px;
  font-size: 15px;
  color: var(--aka-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   CASE CARDS
   ============================================================ */
.case-card {
  background: var(--aka-bg-card);
  border: 0.5px solid var(--aka-border);
  border-radius: var(--radius-card);
  padding: 40px;
  transition: border-color 400ms var(--ease-out);
}
.case-card:hover { border-color: var(--aka-border-blue); }

.case-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aka-blue-soft);
  font-weight: 600;
  margin-bottom: 12px;
}

.case-title {
  font-family: 'Sansation', sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.case-challenge {
  font-size: 14px;
  color: var(--aka-text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
  padding-top: 28px;
  border-top: 0.5px solid var(--aka-border);
}

.case-metric-value {
  font-family: 'Sansation', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--aka-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.case-metric-label {
  font-size: 12px;
  color: var(--aka-text-secondary);
  line-height: 1.4;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--aka-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.service-item {
  background: var(--aka-bg-card);
  padding: 36px 32px;
  transition: background var(--dur-medium);
}
.service-item:hover { background: rgba(13,13,32,0.85); }

.service-icon { font-size: 26px; margin-bottom: 16px; }

.service-name {
  font-family: 'Sansation', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--aka-text-secondary);
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--aka-bg-elevated);
  border-top: 0.5px solid var(--aka-border);
  border-bottom: 0.5px solid var(--aka-border);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(43,53,232,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-headline { max-width: 560px; margin: 0 auto 16px; }
.cta-section > .container > p { max-width: 440px; margin: 0 auto 40px; color: var(--aka-text-secondary); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 0.5px solid var(--aka-border);
}

.compare-table th,
.compare-table td {
  padding: 16px 24px;
  font-size: 14px;
  text-align: left;
  border-bottom: 0.5px solid var(--aka-border);
}

.compare-table th {
  background: var(--aka-bg-elevated);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--aka-text-secondary);
}

.compare-table td:first-child {
  color: var(--aka-text-secondary);
  background: rgba(255,255,255,0.015);
}

.compare-table td:last-child {
  color: var(--aka-blue-soft);
  font-weight: 500;
}

.compare-table tr:last-child td { border-bottom: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.values-list { display: flex; flex-direction: column; gap: 14px; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--aka-bg-card);
  border: 0.5px solid var(--aka-border);
  border-radius: 12px;
  transition: border-color var(--dur-medium);
}
.value-item:hover { border-color: var(--aka-border-blue); }

.value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aka-gradient-h);
  margin-top: 6px;
  flex-shrink: 0;
}

.value-text {
  font-size: 15px;
  color: var(--aka-text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-wrapper {
  background: var(--aka-bg-card);
  border: 0.5px solid var(--aka-border);
  border-radius: var(--radius-card);
  padding: 48px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.01em;
}

.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--aka-border);
  border-radius: var(--radius-btn);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--aka-text-primary);
  font-family: inherit;
  transition: border-color var(--dur-fast);
  width: 100%;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--aka-blue-mid);
}

.form-select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.35)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-select option { background: #0D0D20; }
.form-textarea { resize: vertical; min-height: 100px; }

.form-checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 0.5px solid var(--aka-border);
  background: transparent;
  border-radius: 4px;
  margin-top: 2px;
  accent-color: var(--aka-blue);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox-text { font-size: 13px; color: var(--aka-text-secondary); line-height: 1.5; }
.form-checkbox-text a { color: var(--aka-blue-soft); text-decoration: underline; }

.form-hint { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; }
.form-error-msg { font-size: 12px; color: #f87171; margin-top: 4px; }
.input-error { border-color: rgba(248,113,113,0.5) !important; }

.form-success { text-align: center; padding: 40px; display: none; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 40px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.form-success p { color: var(--aka-text-secondary); font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #000000;
  border-top: 0.5px solid rgba(255,255,255,0.06);
  padding: 72px 0 36px;
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--aka-text-secondary);
  line-height: 1.7;
  margin: 18px 0 24px;
  max-width: 260px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 0.5px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.footer-social a svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.footer-social a:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--aka-text-secondary); transition: color var(--dur-fast); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 0.5px solid var(--aka-border);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
  margin-top: 4px;
}
.footer-address a {
  color: rgba(255,255,255,0.28);
  display: block;
  transition: color var(--dur-fast);
}
.footer-address a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 170px 0 90px;
  text-align: center;
}
.page-hero .subheadline { max-width: 560px; margin: 18px auto 0; }

/* ============================================================
   BLOG / INSIGHTS
   ============================================================ */
.post-card {
  background: var(--aka-bg-card);
  border: 0.5px solid var(--aka-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--dur-medium), transform var(--dur-medium) var(--ease-out);
}
.post-card:hover { border-color: var(--aka-border-blue); transform: translateY(-4px); }

.post-card-body { padding: 28px 28px 32px; }

.post-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aka-blue-soft);
  font-weight: 600;
  margin-bottom: 10px;
}

.post-title {
  font-family: 'Sansation', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
  transition: color var(--dur-fast);
}
.post-card:hover .post-title { color: var(--aka-blue-soft); }

.post-excerpt { font-size: 14px; color: var(--aka-text-secondary); line-height: 1.65; }
.post-date { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 16px; }

/* ============================================================
   POLICY
   ============================================================ */
.policy-content { max-width: 760px; margin: 0 auto; }
.policy-content h2 { font-size: 20px; font-weight: 700; margin: 40px 0 12px; color: #fff; }
.policy-content p, .policy-content li {
  font-size: 15px; color: var(--aka-text-secondary); line-height: 1.75; margin-bottom: 12px;
}
.policy-content ul { padding-left: 20px; list-style: disc; }

/* ============================================================
   ANIMAÇÕES — Apple Luxury
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity var(--dur-reveal) var(--ease-spring),
      transform var(--dur-reveal) var(--ease-spring);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-delay-1 { transition-delay: 120ms; }
  .reveal-delay-2 { transition-delay: 240ms; }
  .reveal-delay-3 { transition-delay: 360ms; }
  .reveal-delay-4 { transition-delay: 480ms; }
  .reveal-delay-5 { transition-delay: 600ms; }
  .reveal-delay-6 { transition-delay: 720ms; }

  /* Hero animations */
  .hero-badge-anim  { animation: heroFadeUp 900ms  var(--ease-spring) 200ms both; }
  .hero-title-anim  { animation: heroReveal 1100ms var(--ease-spring) 350ms both; }
  .hero-sub-anim    { animation: heroFadeUp 900ms  var(--ease-spring) 600ms both; }
  .hero-cta-anim    { animation: heroFadeUp 900ms  var(--ease-spring) 800ms both; }

  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(14px); clip-path: inset(0 0 30% 0); }
    to   { opacity: 1; transform: translateY(0);    clip-path: inset(0 0 0% 0); }
  }
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes globeEntrance {
    from { opacity: 0; transform: translateY(-50%) scale(0.92); }
    to   { opacity: 1; transform: translateY(-50%) scale(1); }
  }
  .hero-globe { animation: globeEntrance 1600ms var(--ease-spring) 400ms both; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { position: sticky; top: 120px; }
.contact-info h2 { font-family: 'Sansation', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.contact-info p { color: var(--aka-text-secondary); font-size: 15px; line-height: 1.65; margin-bottom: 32px; }

.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-detail-icon { font-size: 16px; margin-top: 2px; color: var(--aka-blue-soft); }
.contact-detail-content { font-size: 14px; }
.contact-detail-content strong { display: block; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 2px; }
.contact-detail-content span { color: var(--aka-text-secondary); }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 32, 0.95);
  backdrop-filter: blur(20px);
  border: 0.5px solid var(--aka-border);
  border-radius: 14px;
  padding: 20px 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  width: calc(100% - 48px);
  font-size: 13px;
  color: var(--aka-text-secondary);
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
  transition: opacity 400ms, transform 400ms var(--ease-spring);
}
#cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
#cookie-banner p { flex: 1; line-height: 1.5; }
#cookie-banner a { color: var(--aka-blue-soft); text-decoration: underline; }
#cookie-banner .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--aka-bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(43,53,232,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(43,53,232,0.55); }

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible { outline: 2px solid var(--aka-blue-mid); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --container-px: 40px; --section-gap: 88px; }
  .hero-globe { width: 400px; height: 400px; right: -50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-top: 0.5px solid var(--aka-border); }
  .metric-item:nth-child(4) { border-top: 0.5px solid var(--aka-border); border-right: none; }
}

@media (max-width: 768px) {
  :root { --container-px: 20px; --section-gap: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 80px; align-items: flex-start; padding-bottom: 60px; min-height: unset; }
  .hero-content { max-width: 100%; }
  .hero-globe { display: none; }
  .metrics-strip { grid-template-columns: 1fr 1fr; border-top: none; border-bottom: none; }
  .metric-item { padding: 28px 20px; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-top: 0.5px solid var(--aka-border); }
  .metric-item:nth-child(4) { border-top: 0.5px solid var(--aka-border); border-right: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .phase-body-inner { padding-left: 32px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .stepper-panel-body { grid-template-columns: 1fr; }
  .stepper-col:first-child { border-right: none; border-bottom: 0.5px solid var(--aka-border); }
  .partners-inner { gap: 16px; }
  .page-hero { padding: 140px 0 60px; }
}

/* ============================================================
   RESPONSIVE — Ampliado 2026
   Breakpoints: 1440 · 1200 · 1024 · 900 · 768 · 600 · 480 · 360
   ============================================================ */

/* ── 1440px+ — Monitores grandes ── */
@media (min-width: 1440px) {
  :root { --container-px: 100px; }
  .hero-globe { width: 620px; height: 620px; right: -100px; }
  #globe-canvas { width: 620px; height: 620px; }
}

/* ── 1200–1440px — MacBook 14/16, Desktop padrão ── */
@media (min-width: 1200px) and (max-width: 1440px) {
  .hero-globe { width: 500px; height: 500px; right: -70px; }
  #globe-canvas { width: 500px; height: 500px; }
}

/* ── 1024–1200px — MacBook 13, Notebooks ── */
@media (min-width: 1024px) and (max-width: 1200px) {
  :root { --container-px: 48px; }
  .hero-globe { width: 380px; height: 380px; right: -40px; }
  #globe-canvas { width: 380px; height: 380px; }
  .hero-headline { font-size: clamp(38px, 5vw, 60px); }
  .metrics-strip { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ── 900–1024px — iPad landscape, Tablet ── */
@media (min-width: 900px) and (max-width: 1024px) {
  :root { --container-px: 36px; --section-gap: 80px; }
  .hero { padding-top: 90px; }
  .hero-globe { width: 300px; height: 300px; right: -30px; }
  #globe-canvas { width: 300px; height: 300px; }
  .hero-headline { font-size: clamp(34px, 4.5vw, 52px); }
  .metrics-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-top: 0.5px solid var(--aka-border); }
  .metric-item:nth-child(4) { border-top: 0.5px solid var(--aka-border); border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .stepper-panel-body { grid-template-columns: 1fr; }
  .stepper-col:first-child { border-right: none; border-bottom: 0.5px solid var(--aka-border); }
}

/* ── 768–900px — iPad portrait, Tablet pequeno ── */
@media (min-width: 768px) and (max-width: 900px) {
  :root { --container-px: 28px; --section-gap: 72px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 80px; min-height: auto; padding-bottom: 64px; }
  .hero-globe { display: none; }
  .hero-content { max-width: 100%; }
  .hero-headline { font-size: clamp(32px, 6vw, 48px); }
  .metrics-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3),
  .metric-item:nth-child(4) { border-top: 0.5px solid var(--aka-border); }
  .metric-item:nth-child(4) { border-right: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .partners-inner { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .partner-badge { font-size: 12px; padding: 6px 12px; }
  .section-headline { font-size: clamp(26px, 4vw, 38px); }
  .cta-section { padding: 80px 0; }
  .stepper-wrap { max-width: 100%; }
  .tools-strip::before, .tools-strip::after { width: 80px; }
}

/* ── 600–768px — Mobile grande ── */
@media (min-width: 600px) and (max-width: 768px) {
  :root { --container-px: 20px; --section-gap: 64px; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .metric-number { font-size: 36px; }
  .metric-item { padding: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-headline { font-size: clamp(28px, 7vw, 42px); }
  .section-headline { font-size: clamp(24px, 5vw, 34px); }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ── 480–600px — iPhone grande, Android padrão ── */
@media (max-width: 600px) {
  :root { --container-px: 18px; --section-gap: 56px; }
  .hero-headline { font-size: clamp(26px, 8vw, 38px); letter-spacing: -0.02em; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .section-headline { font-size: clamp(22px, 6vw, 30px); }
  .subheadline { font-size: clamp(15px, 4vw, 18px); }
  .metrics-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .metric-number { font-size: 32px; }
  .metric-item { padding: 20px 14px; }
  .badge { font-size: 10px; padding: 4px 10px; }
  .page-hero { padding: 110px 0 48px; }
  .partners-inner { gap: 10px; }
  .partner-badge { font-size: 11px; padding: 6px 10px; gap: 6px; }
  .partner-badge svg.partner-icon { width: 14px; height: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:nth-child(2),
  .footer-grid .footer-col:nth-child(3) { display: none; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .footer-legal-links a { color: rgba(255,255,255,.28); font-size: 12px; }
  /* Oculta título redundante da página de contato */
  .contact-info-title { display: none; }
  .form-wrapper { padding: 20px 16px; }
  .client-logos-strip { padding: 20px 0 24px; }
  #cookie-banner { flex-direction: column; gap: 16px; padding: 16px 20px; }
  #cookie-banner .cookie-actions { width: 100%; justify-content: flex-end; }
  .stepper-track { margin-bottom: 0; }
  .step-dot-label { font-size: 9px; max-width: 55px; }
  .step-dot-circle { width: 32px; height: 32px; font-size: 12px; }
  .tools-strip::before, .tools-strip::after { width: 60px; }
  .nav-inner { padding: 14px var(--container-px); }
  .hero { padding-top: 72px; }
}

/* ── 360–480px — iPhone SE, Android pequeno ── */
@media (max-width: 480px) {
  :root { --container-px: 16px; --section-gap: 48px; }
  .hero-headline { font-size: clamp(24px, 9vw, 34px); }
  .metrics-strip { grid-template-columns: 1fr 1fr !important; }
  .metric-number { font-size: 28px; letter-spacing: -0.03em; }
  .section-headline { font-size: clamp(20px, 7vw, 28px); }
  .page-hero { padding: 100px 0 40px; }
  .form-grid { grid-template-columns: 1fr !important; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .clients-logo-tile { height: 56px; padding: 8px 10px; }
  .clients-logo-tile img { max-height: 26px; }
  .footer-social a { width: 32px; height: 32px; }
  img.nav-logo, .nav-inner > a:first-child img { height: 24px !important; }
}

/* ── Correções universais mobile ── */
@media (max-width: 768px) {
  /* Evita overflow horizontal */
  body { overflow-x: hidden; }
  .container { overflow-x: hidden; }

  /* Responsivo: grids de 2 colunas que precisam virar 1 */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Espaçamento de seções assimétrico */
  [style*="padding:100px 0"] { padding: 64px 0 !important; }
  [style*="padding: 100px 0"] { padding: 64px 0 !important; }

  /* CTAs de fechamento em mobile: stack */
  [style*="grid-template-columns:1fr 1fr;gap:80px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Stepper full-width */
  .stepper-wrap { max-width: 100%; }
  .stepper-nav { flex-wrap: wrap; gap: 10px; }
  .stepper-nav-btn { flex: 1; min-width: 100px; }

  /* Clientes divider texto menor */
  .clients-divider-text { font-size: 9px; }

  /* Ferramenta marquee */
  .tools-set { gap: 28px; }
  .tool-item img { max-height: 18px; }
  .tool-name { font-size: 8px; }

  /* Partners compacto */
  .partner-label { display: none; }
}

/* ── Touch targets mínimos (acessibilidade mobile) ── */
@media (pointer: coarse) {
  .btn-primary:not(.nav-cta), .btn-ghost:not(.nav-cta), .btn-blue,
  .nav-links a, .footer-col a,
  .module-cta, .case-inline-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .hamburger { padding: 8px; }
  .step-dot { padding: 8px 4px; }
  input, select, textarea { font-size: 16px; } /* Evita zoom no iOS */
}
/* Garante que o nav-cta permaneça oculto em dispositivos touch — regra separada para evitar nesting de @media */
@media (pointer: coarse) and (max-width: 900px) {
  .nav-cta { display: none !important; }
}

/* ── Print ── */
@media print {
  nav, #cookie-banner, .hero-globe, footer, #stars-canvas { display: none; }
  body { background: white; color: black; }
  .container { max-width: 100%; padding: 0 20px; }
}
