:root {
  /* Paleta estrita de 5 tons de azul baseada na logo */
  --azul-1: #E0F4FF; /* Azul quase branco */
  --azul-2: #A5E6FF; /* Azul claro */
  --azul-3: #00C2FF; /* Azul ciano vibrante */
  --azul-4: #1A4A8A; /* Azul médio */
  --azul-5: #0D2B5C; /* Azul escuro */
  --azul-6: #263e5a; /* Azul fundo */

  --ciano: var(--azul-3);
  --verde: var(--azul-3); /* Substituído pelo azul vibrante */
  --branco: #FFFFFF;
  --cinza: var(--azul-1); /* Textos secundários agora são azul claro */
  --cinza-escuro: var(--azul-4);
  --escuro: #060F1F; /* Azul noite profundo */
  --fundo: var(--azul-6);
  --card: rgba(165, 230, 255, 0.04);
  --borda: rgba(0, 194, 255, 0.22);

  /* Sistema misto claro/escuro da home:
     alterna superfícies escuras e claras sem depender do tema do SO.
     Todos os pares abaixo mantêm contraste AA minimo para texto/cromas principais. */
  --surface-dark-bg: #0D2B5C;
  --surface-dark-bg-alt: #263E5A;
  --surface-dark-text: #FFFFFF;
  --surface-dark-muted: #E0F4FF;
  --surface-dark-card: rgba(224, 244, 255, 0.05);
  --surface-dark-border: rgba(165, 230, 255, 0.18);

  --surface-light-bg: #F4FBFF;
  --surface-light-bg-alt: #E0F4FF;
  --surface-light-text: #0D2B5C;
  --surface-light-muted: #1A4A8A;
  --surface-light-card: rgba(13, 43, 92, 0.04);
  --surface-light-card-strong: rgba(13, 43, 92, 0.07);
  --surface-light-border: rgba(26, 74, 138, 0.18);
  --surface-focus: #00C2FF;
}

@media (prefers-color-scheme: light) {
  :root {
    --branco: #060F1F;
    --cinza: var(--azul-4); /* Textos no modo claro em azul médio */
    --fundo: var(--azul-1); /* Fundo claro em tom azulado */
    --escuro: #FFFFFF;
    --card: rgba(13, 43, 92, 0.04);
    --borda: rgba(26, 74, 138, 0.22);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--fundo);
  color: var(--branco);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px; /* Aumentado para no mínimo 16px conforme exigido */
}

/* ── HOME MIXED SURFACES ───────────────────────────────────
   Regras de aplicacao:
   1. Hero, solucoes, diagnostico e prova social usam superficie escura.
   2. Ticker, numeros, processo, blog e CTA usam superficie clara.
   3. Cada secao redefine localmente texto, texto secundario, card e borda
      via variaveis herdadas para preservar consistencia e acessibilidade.
   4. Focus visivel sempre usa --surface-focus para navegação por teclado. */
.hero,
.ticker-section,
.numbers-section,
.hscroll-wrapper,
.process-section,
.diagnosis-section,
.blog-section,
.proof-section,
.cta-section {
  position: relative;
  isolation: isolate;
  transition: background-color .45s ease, color .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.hero,
.hscroll-wrapper,
.diagnosis-section,
.proof-section {
  --branco: var(--surface-dark-text);
  --cinza: var(--surface-dark-muted);
  --card: var(--surface-dark-card);
  --borda: var(--surface-dark-border);
  --section-bg: linear-gradient(180deg, var(--surface-dark-bg) 0%, var(--surface-dark-bg-alt) 100%);
  background: var(--section-bg);
  color: var(--branco);
}

.ticker-section,
.numbers-section,
.process-section,
.blog-section,
.cta-section {
  --branco: var(--surface-light-text);
  --cinza: var(--surface-light-muted);
  --card: var(--surface-light-card);
  --borda: var(--surface-light-border);
  --section-bg: linear-gradient(180deg, var(--surface-light-bg) 0%, var(--surface-light-bg-alt) 100%);
  background: var(--section-bg);
  color: var(--branco);
}

.hero :is(a, button, [tabindex]):focus-visible,
.ticker-section :is(a, button, [tabindex]):focus-visible,
.numbers-section :is(a, button, [tabindex]):focus-visible,
.hscroll-wrapper :is(a, button, [tabindex]):focus-visible,
.process-section :is(a, button, [tabindex]):focus-visible,
.diagnosis-section :is(a, button, [tabindex]):focus-visible,
.blog-section :is(a, button, [tabindex]):focus-visible,
.proof-section :is(a, button, [tabindex]):focus-visible,
.cta-section :is(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--surface-focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(0, 194, 255, 0.18);
}

site-header,
site-footer {
  display: block;
}

global-widgets {
  display: block;
  height: 0;
  line-height: 0;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px; /* Modificado para usar min-height */
  min-height: 80px; /* Mínimo 80px de altura para header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, backdrop-filter .4s;
}

nav.scrolled {
  background: rgba(7, 13, 28, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borda);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--branco);
  text-decoration: none;
}

.nav-logo span {
  color: var(--ciano);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center; /* Garantir alinhamento vertical */
}

.nav-links a {
  font-size: 18px; /* Aumentado para mínimo 18px nos menus */
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  min-height: 48px; /* Mínimo 48px de altura para itens de menu */
  position: relative;
}

.nav-links a:hover {
  color: var(--ciano);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ciano);
  border-radius: 1px;
  transition: width 200ms ease;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--ciano);
  color: var(--escuro) !important; /* Alto contraste com ciano */
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px; /* Fonte aumentada */
  transition: transform .2s, box-shadow .2s !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px; /* Mínimo 44x44px conforme acessibilidade */
  min-width: 48px;
}

.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.6) !important;
  color: var(--escuro) !important;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(165, 230, 255, 0.12);
}

.hero-subpage {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 24px 100px 24px;
  position: relative;
  overflow: hidden;
}

.hero-subpage .hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-subpage .hero-badge {
  margin-bottom: 24px;
}

/* Fundo temático farmácia de manipulação (moléculas + cápsulas + hexágonos) */
.hero-bg-pharma {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(0, 194, 255, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(165, 230, 255, 0.08), transparent 70%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='520' viewBox='0 0 520 520'><g fill='none' stroke='%2300C2FF' stroke-width='1.2' opacity='0.35'><polygon points='80,40 120,60 120,100 80,120 40,100 40,60'/><polygon points='340,90 380,110 380,150 340,170 300,150 300,110'/><polygon points='200,260 240,280 240,320 200,340 160,320 160,280'/><polygon points='430,300 470,320 470,360 430,380 390,360 390,320'/><polygon points='100,420 140,440 140,480 100,500 60,480 60,440'/><circle cx='80' cy='80' r='3' fill='%2300C2FF'/><circle cx='340' cy='130' r='3' fill='%2300C2FF'/><circle cx='200' cy='300' r='3' fill='%2300D68F'/><circle cx='430' cy='340' r='3' fill='%2300C2FF'/><circle cx='100' cy='460' r='3' fill='%2300D68F'/><line x1='120' y1='100' x2='200' y2='260'/><line x1='340' y1='170' x2='430' y2='300'/><line x1='200' y1='340' x2='100' y2='420'/><line x1='240' y1='280' x2='300' y2='150'/></g><g fill='none' stroke='%2300D68F' stroke-width='1' opacity='0.25'><rect x='250' y='30' rx='14' ry='14' width='60' height='26' transform='rotate(25 280 43)'/><rect x='40' y='220' rx='14' ry='14' width='60' height='26' transform='rotate(-15 70 233)'/><rect x='400' y='180' rx='14' ry='14' width='60' height='26' transform='rotate(40 430 193)'/><rect x='320' y='420' rx='14' ry='14' width='60' height='26' transform='rotate(-30 350 433)'/></g></svg>");
  background-size: auto, auto, 520px 520px;
  background-position: center, center, 0 0;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 50%, black 30%, transparent 95%);
  animation: pharma-drift 40s linear infinite;
}

@keyframes pharma-drift {
  0% {
    background-position: center, center, 0 0;
  }

  100% {
    background-position: center, center, 520px 520px;
  }
}

/* Grid de fundo animado */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 194, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

/* Orbs de fundo */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(165, 230, 255, 0.08) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  animation: orb-float 12s ease-in-out infinite reverse;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Partículas */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--ciano);
  border-radius: 50%;
  animation: particle-rise var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  bottom: -10px;
  opacity: 0;
}

@keyframes particle-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateY(-80vh) scale(0.3);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ciano);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up .6s ease forwards .2s;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ciano);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ciano);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: 'Space Grotesk', 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up .7s ease forwards .4s;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--ciano), var(--azul-3), var(--ciano));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--cinza);
  max-width: 580px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up .7s ease forwards .6s;
}

.hero-sub strong {
  color: var(--branco);
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fade-up .7s ease forwards .8s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ciano); /* Ciano mais vibrante e chamativo */
  color: var(--escuro); /* Texto escuro para contraste */
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px; /* Fonte aumentada */
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s, box-shadow .3s, background .3s;
  border: none;
  min-height: 56px; /* Maior área de clique */
  min-width: 48px;
  box-shadow: 0 4px 16px rgba(0, 194, 255, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #33ccff; /* Brilho maior no hover */
  box-shadow: 0 8px 24px rgba(0, 194, 255, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary svg {
  transition: transform .2s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--branco); /* Branco para contraste */
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 18px; /* Fonte aumentada */
  padding: 16px 32px;
  border-radius: 10px;
  border: 2px solid var(--ciano); /* Borda mais grossa com cor de destaque */
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
  min-height: 48px; /* Mínimo 44x44px */
  min-width: 48px;
}

.btn-outline:hover {
  background: var(--ciano);
  color: var(--escuro); /* Alto contraste no hover */
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--cinza); /* Já é de alto contraste */
  font-size: 18px; /* Fonte aumentada */
  text-decoration: none;
  transition: color .2s;
  min-height: 48px; /* Mínimo 44x44px */
  min-width: 48px;
  font-weight: 600;
}

.btn-ghost:hover {
  color: var(--branco);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--borda);
  opacity: 0;
  animation: fade-up .7s ease forwards 1s;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--branco);
}

.stat-num span {
  color: var(--ciano);
}

.stat-label {
  font-size: 14px;
  color: var(--cinza);
  margin-top: 4px;
}

/* Visual lado direito */
.hero-visual {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 820px;
  opacity: 0;
  animation: expand-center 2.5s cubic-bezier(.16, 1, .3, 1) forwards .5s; /* Expandir do centro com duração 2.5s */
  perspective: 1800px;
}

@keyframes expand-center {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* ── NOTEBOOK 3D REALISTA (CSS) ────────────────────────────── */
.notebook-3d {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-18deg) rotateZ(1deg);
  animation: notebook-float 7s ease-in-out infinite;
}

@keyframes notebook-float {
  0%, 100% { transform: rotateX(12deg) rotateY(-18deg) rotateZ(1deg) translateY(0); }
  /* Direção invertida: antes subia no meio do ciclo, agora desce. */
  50% { transform: rotateX(10deg) rotateY(-15deg) rotateZ(1deg) translateY(10px); }
}

/* TELA — Animação invertida no eixo X mantendo mesma duração/easing */
.notebook-screen {
  position: relative;
  background: linear-gradient(145deg, var(--azul-5) 0%, var(--azul-6) 50%, var(--escuro) 100%);
  border-radius: 16px 16px 0 0;
  padding: 24px 14px 16px;
  box-shadow:
    inset 0 1px 1px rgba(224, 244, 255,0.2),
    inset 0 0 0 2px var(--azul-4),
    inset 0 0 0 4px var(--escuro),
    0 -5px 15px rgba(6, 15, 31,0.5);
  transform-style: preserve-3d;
  transform-origin: bottom center;
  /* Direção invertida: parte do lado oposto do eixo de rotação. */
  transform: rotateX(-88deg); /* Fechado */
  animation: screen-open 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s; /* Movimento natural e realista sem bounce */
}

@keyframes screen-open {
  /* Trajetória invertida: antes 88 -> -40, agora -88 -> 40. */
  0% { transform: rotateX(-88deg); }
  100% { transform: rotateX(5deg); } /* Menos inclinado para trás no estado final */
}

/* Reflexo sutil na tela */
.notebook-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, rgba(224, 244, 255,0.15) 0%, transparent 40%, rgba(224, 244, 255,0.05) 100%);
  pointer-events: none;
  z-index: 10;
}

/* Borda interna fina (bezel preto da tela) */
.notebook-screen::before {
  content: '';
  position: absolute;
  inset: 20px 12px 12px;
  border-radius: 6px;
  background: var(--escuro);
  z-index: 0;
  box-shadow: inset 0 0 10px var(--escuro);
}

.notebook-screen > * {
  position: relative;
  z-index: 1;
}

.notebook-bezel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.notebook-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--escuro);
  box-shadow: inset 0 0 2px rgba(165, 230, 255, 0.8), 0 0 0 1px var(--azul-6);
}

/* BASE — teclado visto em perspectiva, com efeito 3D aprimorado */
.notebook-base {
  position: relative;
  margin: -2px 0 0;
  height: 140px; /* Mais profundidade */
  background: linear-gradient(180deg, var(--azul-2) 0%, var(--azul-4) 40%, var(--azul-5) 80%, var(--azul-6) 100%);
  border-radius: 0 0 16px 16px;
  transform-origin: top center;
  transform: rotateX(60deg);
  box-shadow:
    inset 0 2px 2px rgba(224, 244, 255, 0.7),
    inset 0 -4px 8px rgba(6, 15, 31, 0.5),
    0 15px 25px rgba(6, 15, 31, 0.7),
    0 5px 5px rgba(6, 15, 31,0.5);
  overflow: hidden;
  z-index: 1;
}

/* Área do teclado (recesso tridimensional) */
.notebook-base::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 6%;
  right: 6%;
  height: 64px;
  background: var(--escuro);
  border-radius: 6px;
  box-shadow: 
    inset 0 3px 6px rgba(6, 15, 31, 0.8),
    0 1px 0 rgba(224, 244, 255,0.2);
  /* "teclas" com relevo simulado via grid */
  background-image:
    linear-gradient(90deg, transparent 0, transparent 3px, var(--azul-5) 3px, var(--azul-5) calc(100%/15 - 3px), transparent calc(100%/15 - 3px), transparent calc(100%/15)),
    linear-gradient(0deg, transparent 0, transparent 3px, var(--azul-5) 3px, var(--azul-5) calc(100%/5 - 3px), transparent calc(100%/5 - 3px), transparent calc(100%/5));
  background-size: calc(100%/15) 100%, 100% calc(100%/5);
  background-position: 0 0;
}

/* Reflexo sutil no teclado (iluminação) */
.notebook-base::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 6%;
  right: 6%;
  height: 64px;
  background: linear-gradient(135deg, rgba(224, 244, 255,0.08) 0%, transparent 50%, rgba(224, 244, 255,0.02) 100%);
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

/* Dobradiça 3D e volume traseiro - movido para elemento separado para não conflitar com reflexo */
.notebook-hinge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(180deg, var(--azul-6) 0%, var(--escuro) 100%);
  box-shadow: 0 2px 3px rgba(6, 15, 31,0.5), inset 0 1px 0 rgba(224, 244, 255, 0.15);
  z-index: 3;
}

/* Trackpad com reflexo e profundidade */
.notebook-trackpad-area {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 34px;
  background: linear-gradient(180deg, var(--azul-4) 0%, var(--azul-2) 100%);
  border-radius: 6px;
  box-shadow:
    inset 0 2px 4px rgba(6, 15, 31, 0.3),
    inset 0 -1px 1px rgba(224, 244, 255, 0.4),
    0 1px 0 rgba(224, 244, 255,0.3);
}

.notebook-shadow {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -55px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(6, 15, 31, 0.55) 0%, rgba(0, 194, 255, 0.15) 40%, transparent 75%);
  filter: blur(22px);
  z-index: -1;
  animation: shadow-pulse 7s ease-in-out infinite;
}

@keyframes shadow-pulse {

  0%,
  100% {
    opacity: 0.85;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.06);
  }
}

.dashboard-mockup {
  background: var(--escuro);
  border: 1px solid rgba(0, 194, 255, 0.22);
  border-radius: 4px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(6, 15, 31, 0.8);
}

/* Efeito de brilho na tela */
.dashboard-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(224, 244, 255, 0.03), transparent);
  transform: skewX(-20deg);
  animation: screen-glare 8s infinite;
  pointer-events: none;
}

@keyframes screen-glare {
  0% {
    left: -150%;
  }

  20%,
  100% {
    left: 150%;
  }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(224, 244, 255, 0.06);
}

.dash-title-bar {
  flex: 1;
  background: rgba(224, 244, 255, 0.05);
  border-radius: 4px;
  height: 20px;
  margin: 0 12px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.kpi-card {
  background: rgba(0, 194, 255, 0.05);
  border: 1px solid rgba(0, 194, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
}

.kpi-label {
  font-size: 11px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.kpi-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.kpi-value.up {
  color: var(--azul-3);
}

.kpi-value.blue {
  color: var(--azul-2);
}

.kpi-trend {
  font-size: 12px;
  color: var(--azul-3);
  margin-top: 4px;
}

.chart-area {
  background: rgba(224, 244, 255, 0.02);
  border-radius: 10px;
  height: 110px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--azul-4), rgba(26, 74, 138, 0.2));
  animation: bar-grow .8s cubic-bezier(.16, 1, .3, 1) forwards;
  transform-origin: bottom;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.bar:nth-child(1) {
  height: 40%;
  animation-delay: 1.2s;
}

.bar:nth-child(2) {
  height: 65%;
  animation-delay: 1.3s;
}

.bar:nth-child(3) {
  height: 50%;
  animation-delay: 1.4s;
}

.bar:nth-child(4) {
  height: 80%;
  animation-delay: 1.5s;
}

.bar:nth-child(5) {
  height: 60%;
  animation-delay: 1.6s;
}

.bar:nth-child(6) {
  height: 90%;
  animation-delay: 1.7s;
  background: linear-gradient(180deg, var(--azul-3), rgba(0, 194, 255, 0.2));
}

.bar:nth-child(7) {
  height: 70%;
  animation-delay: 1.8s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TICKER / MARQUEE ────────────────────────────────────── */
.ticker-section {
  overflow: hidden;
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  padding: 16px 0;
  box-shadow: inset 0 1px 0 rgba(224, 244, 255, 0.35), inset 0 -1px 0 rgba(26, 74, 138, 0.08);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 14px;
  color: var(--cinza);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.ticker-item strong {
  color: var(--ciano);
}

.ticker-sep {
  color: rgba(0, 194, 255, 0.3);
  font-size: 20px;
}

/* ── SCROLL HORIZONTAL SECTION ──────────────────────────── */
.hscroll-wrapper {
  position: relative;
  height: 400vh;
  /* Aumentado para dar mais tempo de scroll */
  box-shadow: inset 0 1px 0 rgba(165, 230, 255, 0.12), inset 0 -1px 0 rgba(165, 230, 255, 0.08);
}

.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(224, 244, 255, 0.06) 0%, transparent 60%);
}

.hscroll-track {
  display: flex;
  gap: 60px;
  padding: 0 calc(max(50vw - 200px, 10vw)) 0 10vw;
  /* Padding dinâmico */
  will-change: transform;
  align-items: center;
}

.hscroll-section-title {
  text-align: left;
  /* Mudado para esquerda para melhor fluxo visual no parallax */
  margin-bottom: 0;
  flex-shrink: 0;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform, opacity;
}

.hscroll-section-title .eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ciano);
  margin-bottom: 16px;
  display: inline-block;
}

.hscroll-section-title h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
}

.hscroll-progress-container {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(224, 244, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 24px;
}

.hscroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--azul-3), var(--azul-1));
  width: 0%;
  border-radius: 4px;
  will-change: width;
}

.feature-card {
  flex-shrink: 0;
  width: 400px;
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  will-change: transform, opacity;
  transform-style: preserve-3d;
  opacity: 0;
  /* Começa invisível para a animação */
  transform: scale(0.8) rotateY(15deg) translateY(40px);
  /* Estado inicial 3D */
  /* A transição agora é controlada pelo JS via requestAnimationFrame para máxima performance, 
     mas mantemos um fallback suave para o hover */
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Força a mesma altura em grids/flex */
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ciano), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(0, 194, 255, 0.4);
  box-shadow: 0 20px 40px rgba(6, 15, 31, 0.4), 0 0 30px rgba(0, 194, 255, 0.1);
  /* O transform de hover foi removido daqui pois o JS controlará o transform base */
}

.feature-card .card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  top: -80px;
  right: -80px;
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.feature-card:hover .card-glow {
  opacity: 0.3;
}

.feature-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cinza);
  flex-grow: 1; /* Faz o texto empurrar a tag para baixo */
}

.feature-card .card-tag {
  display: inline-block;
  margin-top: 32px;
  align-self: flex-start; /* Evita que a tag estique */
  font-size: 12px;
  color: var(--ciano);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  background: rgba(0, 194, 255, 0.06);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 100px;
  transition: background 0.3s ease, color 0.3s ease;
  margin-bottom: 24px;
}

.card-action {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 244, 255, 0.08);
  color: var(--ciano);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: gap 0.3s ease;
}

.feature-card:hover .card-action {
  gap: 18px;
}

.arrow-icon {
  animation: arrow-bounce 1.5s infinite ease-in-out;
}

@keyframes arrow-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

.feature-card:hover .card-tag {
  background: var(--ciano);
  color: var(--escuro);
}

/* Partículas flutuantes da seção HScroll */
.hscroll-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--ciano);
  pointer-events: none;
  will-change: transform;
}

/* Suporte para prefers-reduced-motion removido para manter efeito de scroll */

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ciano), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: rgba(0, 194, 255, 0.3);
  transform: translateY(-4px);
}

.feature-card .card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  top: -70px;
  right: -70px;
  opacity: 0.18;
}

.feature-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cinza);
  flex-grow: 1; /* Garante alinhamento em todos os cards de feature */
}

.feature-card .card-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 24px;
  font-size: 12px;
  color: var(--ciano);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  background: rgba(0, 194, 255, 0.08);
  border-radius: 100px;
}

/* ── BLOG SECTION ────────────────────────────────────────── */
.blog-section {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(224, 244, 255, 0.45), inset 0 -1px 0 rgba(26, 74, 138, 0.08);
}

.blog-section .deco-line {
  margin: 0 auto 20px auto;
}

.blog-section .section-sub {
  margin: 0 auto 60px auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

.blog-card {
  background: var(--surface-light-card);
  border: 1px solid var(--surface-light-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 43, 92, 0.16);
  border-color: rgba(0, 194, 255, 0.3);
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ciano);
  color: var(--escuro);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--cinza);
  margin-bottom: 12px;
}

.blog-read-time::before {
  content: '•';
  margin-right: 12px;
  color: rgba(26, 74, 138, 0.28);
}

.blog-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-title a {
  color: var(--branco);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-title a:hover {
  color: var(--ciano);
}

.blog-excerpt {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ciano);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  width: max-content;
}

.blog-link svg {
  transition: transform 0.2s;
}

.blog-link:hover {
  color: var(--azul-2);
}

.blog-link:hover svg {
  transform: translateX(4px);
}

/* ── SOCIAL PROOF ────────────────────────────────────────── */
.proof-section {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(165, 230, 255, 0.12), inset 0 -1px 0 rgba(165, 230, 255, 0.08);
}

.proof-section .deco-line {
  margin: 0 auto 20px auto;
}

.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ciano);
  margin-bottom: 12px;
}

/* Ajuste de contraste para seções com fundo claro (WCAG 2.1 Ratio 4.5:1) */
.ticker-section .section-eyebrow,
.numbers-section .section-eyebrow,
.process-section .section-eyebrow,
.blog-section .section-eyebrow,
.cta-section .section-eyebrow {
  color: var(--surface-light-muted); /* #1A4A8A - Garante contraste adequado em fundos claros */
  font-weight: 600;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.8px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--cinza);
  font-size: 18px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 70px auto;
}

.testimonials-carousel-wrapper {
  margin-top: 70px;
  position: relative;
  width: 100%;
  padding: 40px clamp(16px, 5vw, 72px);
  overflow: hidden;
}

.testimonialsSwiper {
  width: 100%;
  padding-top: 30px !important;
  padding-bottom: 80px !important;
  overflow: visible !important;
}

.testimonialsSwiper .swiper-slide {
  width: 480px !important;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #E0F4FF;
  cursor: pointer;
  padding: 8px;
  z-index: 1001; /* Ficar acima do menu aberto */
  transition: color 0.3s;
}

.mobile-menu-toggle:hover {
  color: var(--ciano);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(7, 13, 28, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 24px;
    font-weight: 600;
    min-height: auto;
  }

  .nav-cta {
    margin-top: 16px;
    width: 80%;
    max-width: 300px;
  }
}

.testimonialsSwiper .swiper-slide {
  height: auto; /* Permite que os slides estiquem de acordo com o maior conteúdo */
}

@media (max-width: 640px) {
  .testimonialsSwiper .swiper-slide {
    width: 90vw !important;
  }

  .testimonials-carousel-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 28px;
  padding: 44px 36px 36px;
  position: relative;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(6, 15, 31, 0.2);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--azul-3), var(--azul-1), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.swiper-slide-active .testimonial-card::before {
  opacity: 1;
}

.swiper-slide-active .testimonial-card {
  border-color: rgba(0, 194, 255, 0.3);
  background: rgba(0, 194, 255, 0.04);
  box-shadow: 0 24px 48px rgba(6, 15, 31, 0.35), 0 0 40px rgba(0, 194, 255, 0.1);
  transform: scale(1.03);
}

.test-quote {
  position: absolute;
  top: 28px;
  right: 36px;
  opacity: 0.6;
  transition: opacity .3s;
}

.swiper-slide-active .test-quote {
  opacity: 1;
}

.test-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.star-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 4px rgba(0, 194, 255, 0.3));
}

.test-rating {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--azul-2);
  margin-left: 8px;
  letter-spacing: -0.02em;
}

.test-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cinza);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.test-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(165, 230, 255, 0.08);
  border: 1px solid rgba(165, 230, 255, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--azul-2);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(224, 244, 255, 0.06);
  padding-top: 24px;
}

.test-avatar-container {
  position: relative;
  flex-shrink: 0;
}

.test-avatar-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-3), var(--azul-1));
  opacity: 0;
  transition: opacity .4s;
}

.swiper-slide-active .test-avatar-container::before {
  opacity: 0.6;
}

.test-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 2px solid var(--fundo);
}

.test-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--branco);
  letter-spacing: -0.02em;
}

.test-role {
  font-size: 13px;
  color: var(--cinza);
  margin-top: 2px;
}

.test-company {
  font-size: 12px;
  color: var(--ciano);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
  color: var(--ciano) !important;
  background: rgba(0, 194, 255, 0.06);
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  border: 1px solid rgba(0, 194, 255, 0.2);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  top: auto !important;
  bottom: 10px !important;
  z-index: 10;
}

.testimonialsSwiper .swiper-button-next {
  right: calc(50% - 100px) !important;
}

.testimonialsSwiper .swiper-button-prev {
  left: calc(50% - 100px) !important;
}

.testimonialsSwiper .swiper-button-next:after,
.testimonialsSwiper .swiper-button-prev:after {
  font-size: 20px !important;
}

.testimonialsSwiper .swiper-button-next:hover,
.testimonialsSwiper .swiper-button-prev:hover {
  background: var(--ciano);
  color: var(--escuro) !important;
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.3);
}

.testimonialsSwiper .swiper-pagination {
  bottom: 33px !important;
  z-index: 10;
}

.testimonialsSwiper .swiper-pagination-bullet {
  background: var(--cinza) !important;
  opacity: 0.3;
  width: 10px !important;
  height: 10px !important;
  margin: 0 6px !important;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: var(--ciano) !important;
  opacity: 1;
  width: 28px !important;
  border-radius: 5px !important;
}

/* ── DIAGNÓSTICO ────────────────────────────────────────── */
.diagnosis-section {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(165, 230, 255, 0.12), inset 0 -1px 0 rgba(165, 230, 255, 0.08);
}

.diagnosis-section .section-title,
.diagnosis-section .section-sub,
.diagnosis-section .section-eyebrow,
.diagnosis-section .deco-line {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.diagnosis-section .deco-line {
  margin: 0 auto 20px auto;
  margin-left: auto;
  margin-right: auto;
}

/* Nova interface interativa de Diagnóstico */
.diagnosis-interactive {
  max-width: 1200px;
  margin: 60px auto 0;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  min-height: 520px;
}

.diag-nav {
  width: 38%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.diag-progress-line {
  position: absolute;
  left: 23px;
  /* Centralizado com o dot de 48px */
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: rgba(224, 244, 255, 0.05);
  z-index: 1;
}

.diag-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, var(--azul-3), var(--azul-1));
  height: 0%;
  transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.5);
}

.diag-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.diag-step:hover {
  background: rgba(224, 244, 255, 0.02);
}

.diag-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fundo);
  border: 2px solid rgba(224, 244, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.diag-step-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ciano);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.diag-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cinza);
  transition: color 0.3s ease, transform 0.3s ease;
}

.diag-step.active .diag-step-dot {
  border-color: var(--ciano);
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.3);
  transform: scale(1.2);
}

.diag-step.active .diag-step-dot::after {
  opacity: 1;
  transform: scale(1);
}

.diag-step.active .diag-step-title {
  color: var(--branco);
  transform: translateX(4px);
}

.diag-content-display {
  width: 62%;
  position: relative;
}

.diag-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.diag-panel.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  position: relative;
  visibility: visible;
  z-index: 5;
}

.diag-panel-inner {
  background: rgba(224, 244, 255, 0.02);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(6, 15, 31, 0.2);
}

.diag-panel-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ciano), transparent);
  opacity: 0.5;
}

.diag-panel-inner .diag-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(0, 194, 255, 0.1);
  color: var(--ciano);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.5s ease;
}

.diag-panel.active .diag-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.diag-panel-inner h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--branco);
  letter-spacing: -0.5px;
}

.diag-panel-inner p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cinza);
  margin-bottom: 32px;
}

.diag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.diag-list li {
  font-size: 16px;
  color: var(--cinza);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(224, 244, 255, 0.02);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(224, 244, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.diag-list li:hover {
  transform: translateX(8px);
  border-color: rgba(0, 194, 255, 0.2);
}

.diag-list li span {
  color: var(--azul-3);
  font-weight: 800;
  font-size: 18px;
}

/* ── DIAGNÓSTICO — DECK SCROLL-DRIVEN ────────────────────── */
.diagnosis-interactive-LEGACY {
  display: none !important;
}

.diagnosis-scroll {
  position: relative;
  height: 300vh;
  /* scroll-space para a animação */
  margin-top: 60px;
}

.diagnosis-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 24px;
}

.diag-progress-track {
  width: min(640px, 80%);
  height: 3px;
  background: rgba(224, 244, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 60px;
}

.diag-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--azul-3), var(--azul-1));
  transition: width .15s linear;
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.5);
}

.diag-deck {
  position: relative;
  width: min(1200px, 95%);
  height: 360px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.diag-card {
  --i: 0;
  --n: 6;
  --offset: calc(var(--i) - (var(--n) - 1) / 2);
  --cardScale: 0.96;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 320px;
  margin: -160px 0 0 -140px;
  background: linear-gradient(160deg, rgba(13, 43, 92, 0.95), rgba(38, 62, 90, 0.95));
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 24px 50px -20px rgba(6, 15, 31, 0.6);
  backdrop-filter: blur(8px);
  /* Estado inicial: empilhadas com leve fan */
  transform:
    translateX(calc(var(--i) * 6px)) translateY(calc(var(--i) * -3px)) rotate(calc(var(--i) * 1.5deg - 4deg)) scale(var(--cardScale));
  opacity: 0;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    background 0.3s ease-in-out,
    border-color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  z-index: calc(10 - var(--i));
}

/* Estado aberto (leque) */
.diag-deck.is-open .diag-card {
  --cardScale: 1;
  opacity: 1;
  transform:
    translateX(calc(var(--offset) * 165px)) translateY(calc(var(--offset) * var(--offset) * 8px)) rotate(calc(var(--offset) * 4deg)) scale(var(--cardScale));
  transition-delay: calc(var(--i) * 70ms);
}

/* Estado completo (verde + check) */
.diag-card.completed {
  --cardScale: 1.03;
  background: linear-gradient(160deg, rgba(0, 194, 255, 0.18), rgba(0, 194, 255, 0.08));
  border-color: var(--ciano);
  box-shadow:
    0 0 0 1px var(--ciano),
    0 24px 50px -10px rgba(6, 15, 31, 0.6),
    inset 0 0 30px rgba(0, 194, 255, 0.08);
}

.diag-card.completed .diag-card-icon {
  background: rgba(0, 194, 255, 0.20);
  color: var(--ciano);
  border-color: rgba(0, 194, 255, 0.55);
}

.diag-card.is-spotlight {
  --cardScale: 1.02;
  background: linear-gradient(160deg, rgba(0, 194, 255, 0.10), rgba(10, 15, 24, 0.95));
  border-color: rgba(0, 194, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(0, 194, 255, 0.55),
    0 24px 50px -10px rgba(6, 15, 31, 0.65),
    inset 0 0 30px rgba(0, 194, 255, 0.10);
  z-index: 200;
}

.diag-card.completed.is-spotlight {
  --cardScale: 1.04;
}

.diag-card.is-spotlight .diag-card-icon,
.diag-card.completed .diag-card-icon {
  background: rgba(0, 194, 255, 0.20);
  color: var(--ciano);
  border-color: rgba(0, 194, 255, 0.55);
}

.diag-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 194, 255, 0.1);
  color: var(--ciano);
  border: 1px solid rgba(0, 194, 255, 0.2);
  margin-bottom: 18px;
  transition: all .4s ease;
}

.diag-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 10px;
  line-height: 1.25;
}

.diag-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cinza);
}

.diag-card-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--azul-3);
  color: var(--escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity .35s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1);
}

.diag-card.completed .diag-card-check {
  opacity: 1;
  transform: scale(1);
}

.diag-pinned {
  position: relative;
  /* margin-top: 20px; */
}

.diag-pin-stage {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
}

.diag-layout {
  display: flex;
  align-items: center;
  gap: 100px;
  width: 100%;
  max-width: 1200px;
}

.diag-sidebar {
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 40px;
}

.diag-v-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 2px;
  background: rgba(224, 244, 255, 0.08);
  border-radius: 2px;
}

.diag-v-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--azul-3), var(--azul-1));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.4);
}

.diag-step-dot {
  position: absolute;
  left: -15px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-dark-bg);
  border: 2px solid rgba(224, 244, 255, 0.15);
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  text-indent: -1px; /* Ajuste óptico para centralizar números na fonte Space Grotesk */
  color: var(--cinza);
  transition: all 0.3s ease;
  z-index: 2;
}

.diag-step-dot[data-step="1"] {
  top: 0%;
  transform: translateY(-50%);
}

.diag-step-dot[data-step="2"] {
  top: 50%;
  transform: translateY(-50%);
}

.diag-step-dot[data-step="3"] {
  top: 100%;
  transform: translateY(-50%);
}

.diag-step-dot.active {
  border-color: var(--ciano);
  color: var(--branco);
  background: var(--fundo);
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.3);
}

.diag-pin-deck {
  flex: 1;
  position: relative;
  height: 500px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

body.diag-card-open {}

/* Background overlay when a card is open */
body.diag-card-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 80px 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .diag-pin-stage {
    padding: 28px 18px;
    height: auto;
    /* Altura automática para permitir scroll */
    min-height: auto;
    /* Remover altura mínima */
    overflow: visible;
  }

  .diag-layout {
    flex-direction: column;
    gap: 30px;
  }

  .diag-sidebar {
    display: none;
    /* Ocultar sidebar no mobile */
  }

  .diag-pin-deck {
    width: 100%;
    height: auto;
    /* Altura automática para empilhar cards */
    display: flex;
    flex-direction: column;
    /* Empilhar cards verticalmente */
    justify-content: center;
    perspective: none;
    /* Remover perspectiva */
    gap: 16px;
    /* Espaçamento entre os cards */
  }

  .diag-pin-card {
    position: relative !important;
    /* Posicionamento relativo para empilhamento */
    top: auto !important;
    left: auto !important;
    margin: 0 auto !important;
    /* Centralizar e remover margens absolutas */
    width: min(360px, 100%) !important;
    transform: none !important;
    /* Remover transformações de animação */
    opacity: 1 !important;
    /* Garantir visibilidade */
    box-shadow: 0 10px 30px rgba(6, 15, 31, 0.4);
    /* Sombra simples para separação */
  }

  .diag-pin-card.is-expanded {
    width: min(360px, 92vw) !important;
    /* Manter largura padrão, sem expansão */
  }

  .diag-pin-details {
    max-height: none !important;
    /* Detalhes sempre visíveis */
    opacity: 1 !important;
    /* Garantir visibilidade */
    margin-top: 16px;
    /* Espaçamento acima dos detalhes */
  }

  .diag-pin-btn {
    display: none;
    /* Ocultar botão "Ver detalhes" */
  }
}

.diag-pin-card {
  --i: 0;
  --n: 3;
  --offset: calc(var(--i) - (var(--n) - 1) / 2);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: auto;
  min-height: 420px;
  margin: -210px 0 0 -190px;
  background: linear-gradient(160deg, var(--azul-5), var(--azul-6));
  /* Fundo ligeiramente mais claro para contraste */
  border: 1px solid rgba(0, 194, 255, 0.35);
  /* Borda mais visível */
  border-top: 1.5px solid rgba(0, 194, 255, 0.6);
  /* Borda superior forte para separar os cards */
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 10px 40px -10px rgba(6, 15, 31, 0.8), 0 -4px 12px rgba(6, 15, 31, 0.4);
  /* Sombra ao redor e acima para separar */
  transform:
    translateX(calc(var(--i) * 8px)) translateY(calc(var(--i) * -4px)) rotate(calc(var(--i) * 1.7deg - 3deg)) scale(0.96);
  opacity: 1;
  z-index: calc(10 - var(--i));
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out, scale 0.3s ease-in-out;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.diag-pin-card.is-spotlight {
  border-color: rgba(0, 194, 255, 0.85);
  box-shadow: 0 30px 60px -15px rgba(6, 15, 31, 0.85), 0 0 0 1px rgba(0, 194, 255, 0.65);
  scale: 1.02;
  z-index: 130 !important;
}

.diag-pin-card.is-complete.is-spotlight {
  scale: 1.03;
}

.diag-pin-card.is-spotlight .diag-pin-details,
.diag-pin-card.is-complete .diag-pin-details {
  max-height: 250px;
  opacity: 1;
}

.diag-pin-card.is-spotlight .diag-pin-btn::after,
.diag-pin-card.is-complete .diag-pin-btn::after {
  content: '-';
}

@media (max-width: 768px) {
  .diag-pin-card:active {
    filter: brightness(1.15) !important;
    /* Feedback visual no touch */
    border-color: rgba(0, 194, 255, 0.8);
  }
}

.diag-pin-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--cinza);
  font-size: 13.5px;
}

@media (hover: hover) and (pointer: fine) {
  .diag-pin-card:hover .diag-pin-details {
    max-height: 250px;
    opacity: 1;
  }

  .diag-pin-card:hover .diag-pin-btn::after {
    content: '-';
  }

  .diag-pin-card:hover {
    box-shadow: 0 30px 60px -15px rgba(6, 15, 31, 0.8), 0 0 0 1px var(--ciano);
    z-index: 100 !important;
  }
}

.diag-pin-details ul {
  padding-left: 18px;
  margin-top: 12px;
  margin-bottom: 0;
}

.diag-pin-details li {
  margin-bottom: 6px;
}

.diag-pin-btn {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--ciano);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.diag-pin-btn::after {
  content: '+';
  margin-left: 4px;
  font-size: 16px;
  font-weight: 400;
}

.diag-pin-deck.has-expanded {
  z-index: 9999;
}

.diag-pin-deck.has-expanded .diag-pin-card:not(.is-expanded) {
  opacity: 0.3 !important;
  filter: blur(2px);
  pointer-events: none;
}

.diag-pin-card.is-expanded {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  margin: 0 !important;
  transform: translate(-50%, -50%) scale(1.05) rotate(0deg) !important;
  z-index: 10000 !important;
  box-shadow: 0 40px 120px rgba(6, 15, 31, 0.95), 0 0 0 1px var(--ciano) !important;
  background: linear-gradient(160deg, var(--azul-5), var(--azul-6));
  max-width: 90vw;
}

.diag-pin-card.is-expanded .diag-pin-details {
  max-height: 200px;
  opacity: 1;
}

.diag-pin-card.is-expanded .diag-pin-btn::after {
  content: '-';
}

.diag-pin-cardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.diag-pin-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 194, 255, 0.14);
  color: var(--ciano);
  border: 1px solid rgba(0, 194, 255, 0.22);
}

.diag-pin-check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(224, 244, 255, 0.08);
  border: 1px solid rgba(224, 244, 255, 0.12);
  color: rgba(224, 244, 255, 0.6);
  display: grid;
  place-items: center;
  transform: scale(0.9);
  opacity: 0.8;
}

.diag-pin-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 10px;
}

.diag-pin-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--cinza);
}

.diag-pin-card.is-complete {
  border-color: rgba(0, 194, 255, 0.85);
  box-shadow: 0 30px 60px -15px rgba(6, 15, 31, 0.85), 0 0 0 1px rgba(0, 194, 255, 0.65);
  z-index: 120 !important;
  scale: 1.02;
}

.diag-pin-card.is-complete .diag-pin-icon {
  background: rgba(0, 194, 255, 0.20);
  border-color: rgba(0, 194, 255, 0.40);
}

.diag-pin-card.is-complete .diag-pin-check {
  background: var(--azul-3);
  border-color: rgba(0, 194, 255, 0.9);
  color: var(--escuro);
  opacity: 1;
  transform: scale(1);
}

.accent-text {
  background: linear-gradient(135deg, var(--azul-3), var(--azul-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Drop shadow para textos em degradê em seções claras para melhor contraste */
:is(.ticker-section, .numbers-section, .process-section, .blog-section, .cta-section) .accent-text {
  background: none;
  -webkit-text-fill-color: var(--azul-4);
  color: var(--azul-4);
  filter: none;
}

/* ── PROCESSO ────────────────────────────────────────────── */
.process-section {
  padding: 120px 48px;
  position: relative;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(224, 244, 255, 0.45), inset 0 -1px 0 rgba(26, 74, 138, 0.08);
}

.process-section .deco-line {
  margin: 0 auto 20px auto;
}

.process-section .section-title {
  margin-left: auto;
  margin-right: auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  margin-top: 70px;
  position: relative;
  isolation: isolate;
}


.process-step {
  background: var(--card);
  border: 1px solid var(--borda);
  padding: 36px 30px;
  position: relative;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  overflow: visible;
}

.process-step:first-child {
  border-radius: 16px 0 0 16px;
}

.process-step:last-child {
  border-radius: 0 16px 16px 0;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ciano), var(--azul-2));
  opacity: 0;
  transition: opacity .4s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  background: var(--surface-light-card-strong);
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: 0 12px 30px rgba(13, 43, 92, 0.08);
  z-index: 10;
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(0, 194, 255, 0.12);
  line-height: 1;
  transition: color 0.4s ease;
  margin-bottom: 20px;
}

.process-step:hover .step-num {
  color: rgba(0, 194, 255, 0.25);
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.7;
}

.process-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 28px;
  height: 28px;
  background: var(--surface-light-bg);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ciano);
  font-size: 12px;
  box-shadow: 0 0 0 3px var(--surface-light-bg);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .process-arrow {
  background: var(--ciano);
  color: var(--escuro);
  transform: translateY(-50%) scale(1.1);
}


/* ── CTA FINAL ───────────────────────────────────────────── */
.cta-section {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(224, 244, 255, 0.45);
}

.cta-glow {
  position: absolute;
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section .section-title {
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-section .section-sub {
  margin: 0 auto 40px;
  text-align: center;
}

.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 25px;
  font-size: 14px;
  color: var(--cinza);
}

.cta-note span {
  color: var(--ciano);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--borda);
  background: var(--escuro);
  padding: 60px 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  align-items: center;
  /* justify-content: center; */
  display: flex;
}

.footer-logo span {
  color: var(--ciano);
}

.footer-desc {
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-contact a {
  display: block;
  font-size: 14px;
  color: var(--branco);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--ciano);
}

.footer-contact p {
  font-size: 13px;
  color: var(--cinza);
}

.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 14px;
  color: var(--cinza);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ciano);
}

.footer-bottom {
  border-top: 1px solid rgba(224, 244, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-copy {
  font-size: 13px;
  color: var(--cinza);
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ── COUNTER ANIMATION ───────────────────────────────────── */
.counter {
  display: inline-block;
}

/* ── LINHA DECORATIVA ────────────────────────────────────── */
.deco-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--azul-3), var(--azul-1));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── MÓDULOS PILLS ───────────────────────────────────────── */
.modules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.module-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  border: 1px solid var(--borda);
  color: var(--cinza);
  transition: all .2s;
  cursor: none;
}

.module-pill:hover {
  background: rgba(0, 194, 255, 0.08);
  border-color: var(--ciano);
  color: var(--ciano);
}

.module-pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ── NÚMEROS GRANDES ─────────────────────────────────────── */
.numbers-section {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
  box-shadow: inset 0 1px 0 rgba(224, 244, 255, 0.35), inset 0 -1px 0 rgba(26, 74, 138, 0.08);
}

.number-item {
  padding: 48px 32px;
  border-right: 1px solid var(--borda);
  text-align: center;
}

.number-item:last-child {
  border-right: none;
}

.number-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--branco), var(--ciano));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.number-label {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.6;
}

/* ── PROGRESS LINE SCROLL ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azul-3), var(--azul-1));
  z-index: 9999;
  width: 0%;
  transition: width .1s;
}

/* ── WIDGETS GLOBAIS (COOKIES E WHATSAPP) ────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--escuro);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  z-index: 99999;
  box-shadow: 0 20px 40px rgba(6, 15, 31, 0.5);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--ciano);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-cookie.accept {
  background: var(--ciano);
  color: var(--escuro);
}

.btn-cookie.accept:hover {
  background: var(--azul-2);
}

.btn-cookie.decline {
  background: transparent;
  color: var(--cinza);
  border: 1px solid var(--borda);
}

.btn-cookie.decline:hover {
  color: var(--branco);
  border-color: var(--ciano);
}

.whatsapp-wrapper {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.whatsapp-microcopy {
  background: rgba(6, 15, 31, 0.95);
  color: #00ff8a;
  border: 1px solid #00ff8a;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 12px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(6, 15, 31, 0.35);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.whatsapp-wrapper:hover .whatsapp-microcopy {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #00ff8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--escuro);
  border: 1px solid rgba(224, 255, 243, 0.16);
  box-shadow: 0 10px 26px rgba(0, 255, 128, 0.45);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 16px;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .whatsapp-wrapper {
    bottom: 24px;
    right: 24px;
  }

  .whatsapp-microcopy {
    display: none;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ── RESPONSIVIDADE ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-visual {
    width: 50%;
  }

  .hero-title {
    font-size: clamp(36px, 5vw, 64px);
  }
}

@media (max-width: 1024px) {
  nav {
    padding: 20px 24px;
  }

  .hero {
    padding: 140px 24px 80px;
  }

  .hero-visual {
    opacity: 0.2 !important;
    right: -20%;
    z-index: 0;
    pointer-events: none;
  }

  .hero-content {
    z-index: 2;
    position: relative;
  }

  .diagnosis-section {
    padding: 80px 24px;
  }

  /* Mobile: empilha vertical, sem sticky */
  .diagnosis-scroll {
    height: auto;
  }

  .diagnosis-sticky {
    position: relative;
    height: auto;
    padding: 20px 16px 40px;
    overflow: visible;
  }

  .diag-deck {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    perspective: none;
  }

  .diag-card {
    --cardScale: 1;
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 180px;
    transform: translateY(20px) scale(var(--cardScale));
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, scale 0.3s ease-in-out;
  }

  .diag-deck.is-open .diag-card {
    transform: translateY(0) scale(var(--cardScale));
    opacity: 1;
  }

  .diagnosis-interactive {
    flex-direction: column;
    gap: 40px;
  }

  .diag-nav {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 12px;
  }

  .diag-progress-line {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    width: 100%;
  }

  .diag-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--azul-3), var(--azul-1));
    transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .diag-step {
    flex-direction: column;
    text-align: center;
    flex: 0 0 auto;
    width: 140px;
    padding: 10px;
  }

  .diag-step-title {
    font-size: 14px;
  }

  .diag-step.active .diag-step-title {
    transform: translateY(-4px);
    translateX(0);
  }

  .diag-content-display {
    width: 100%;
  }

  .proof-section {
    padding: 80px 24px;
  }

  .numbers-section {
    padding: 80px 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: none;
    border: none;
    --branco: var(--surface-dark-text);
    --cinza: var(--surface-dark-muted);
    --borda: var(--surface-dark-border);
  }

  .number-item {
    border: 1px solid var(--borda);
    border-radius: 16px;
    background: var(--surface-dark-card);
  }

  .hscroll-wrapper {
    height: auto !important;
  }

  .hscroll-sticky {
    position: relative;
    height: auto;
    padding: 80px 24px;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
  }

  .hscroll-track {
    flex-direction: column;
    padding: 0;
    transform: none !important;
    width: 100%;
    gap: 24px;
  }

  .hscroll-section-title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .feature-card {
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
    min-height: 70px;
  }

  /* Oculta links no mobile para focar no CTA */

  .hero-title {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    padding-top: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary {
    justify-content: center;
  }

  .btn-ghost {
    justify-content: center;
  }

  /* Desativa scroll horizontal no mobile */
  .hscroll-wrapper {
    height: auto !important;
  }

  .hscroll-sticky {
    position: relative;
    height: auto;
    padding: 80px 24px;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
  }

  .hscroll-track {
    flex-direction: column;
    padding: 0;
    transform: none !important;
    width: 100%;
    gap: 24px;
  }

  .hscroll-section-title {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .feature-card {
    width: 100%;
    padding: 24px;
  }

  .process-section {
    padding: 80px 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-grid::before,
  .process-grid::after {
    display: none;
  }

  .process-step {
    border-radius: 16px !important;
    padding: 24px;
  }

  .process-arrow {
    display: none;
  }

  .cta-section {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 32px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .diag-panel-inner {
    padding: 32px 24px;
  }

  .diag-panel-inner h3 {
    font-size: 24px;
  }

  .diag-panel-inner p {
    font-size: 15px;
  }

  .diag-list li {
    font-size: 14px;
    padding: 12px 16px;
  }

  .testimonial-card {
    padding: 32px 24px 28px;
    min-height: auto;
  }

  .test-text {
    font-size: 14px;
  }

  .test-avatar-img {
    width: 44px;
    height: 44px;
  }

  .proof-section {
    padding: 60px 16px;
  }

  .numbers-section {
    grid-template-columns: 1fr;
    padding: 60px 16px;
  }

  .number-item {
    padding: 32px 24px;
  }

  .hero-title {
    font-size: 30px;
  }
}

/* ── QUEM SOMOS (NOVO DESIGN) ───────────────────────────────────────────── */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.mvv-card {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ciano), var(--azul-3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-card:hover {
  transform: translateY(-8px);
  background: var(--surface-light-card-strong);
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: 0 16px 40px rgba(13, 43, 92, 0.1);
}

.mvv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(0, 194, 255, 0.1);
  color: var(--ciano);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--ciano);
  color: var(--escuro);
}

.mvv-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.mvv-card p {
  color: var(--cinza);
  line-height: 1.7;
  font-size: 15px;
}

/* History Section */
.history-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.05) 0%, transparent 70%);
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.history-desc {
  color: var(--cinza);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 24px;
}

.history-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--ciano);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.history-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(0, 194, 255, 0.2);
  border-radius: 50%;
  animation: rotate-ring 30s linear infinite;
}

.visual-ring.ring-2 {
  inset: 60px;
  border: 1px solid rgba(0, 194, 255, 0.1);
  animation: rotate-ring 20s linear infinite reverse;
}

.visual-center {
  width: 100px;
  height: 100px;
  background: var(--surface-dark-bg);
  border: 2px solid rgba(0, 194, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 194, 255, 0.2);
}

.floating-badge {
  position: absolute;
  background: var(--surface-light-bg);
  border: 1px solid rgba(0, 194, 255, 0.2);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ciano);
  backdrop-filter: blur(8px);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.badge-1 { top: 10%; right: -5%; animation: float-badge 6s ease-in-out infinite; }
.badge-2 { bottom: 20%; left: -10%; animation: float-badge 7s ease-in-out infinite 1s; }
.badge-3 { bottom: 5%; right: 10%; animation: float-badge 8s ease-in-out infinite 2s; }

@keyframes rotate-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* History Section — overrides para fundo claro (#f0f7ff) */
.history-section .history-stats {
  border-top: 1px solid rgba(0, 194, 255, 0.22);
}

.history-section .visual-center {
  box-shadow: 0 0 50px rgba(0, 194, 255, 0.28), 0 8px 32px rgba(13, 31, 53, 0.12);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-8px);
  background: var(--surface-light-card-strong);
  border-color: rgba(0, 194, 255, 0.3);
  box-shadow: 0 16px 40px rgba(13, 43, 92, 0.08);
}

.team-photo-container {
  position: relative;
  margin-bottom: 32px;
}

.team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--surface-dark-bg);
  box-shadow: 0 0 0 2px var(--ciano);
  position: relative;
  z-index: 2;
}

.team-quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ciano);
  color: var(--escuro);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  z-index: 3;
  transform: translate(25%, -25%);
  box-shadow: 0 4px 12px rgba(0, 194, 255, 0.3);
}

.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
}

.team-role {
  color: var(--ciano);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}

.team-desc {
  color: var(--cinza);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
}

.team-social {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.team-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 194, 255, 0.05);
  border: 1px solid rgba(0, 194, 255, 0.15);
  color: var(--ciano);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--ciano);
  color: var(--escuro);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .history-container {
    grid-template-columns: 1fr !important;
  }
  .history-visual {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
