/* ============================================================
   VIREON CLOUD — Design System v2.0 Microsoft Premium Light
   Fonte: Outfit (display) + DM Sans (body)
   Paleta v2.0: Azul-Premium #0078D4 · Azul-Profundo #003E7E · Mint #50E6FF · Light #F8FAFC
   Compatibilidade: nomes de tokens preservados do v1.0 (drop-in)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Tokens v2.0 (nomes preservados, valores swap) ── */
:root {
  /* Fundos (light) */
  --vc-bg:          #FFFFFF;
  --vc-bg-alt:      #F8FAFC;
  /* Navy (preservado pra contexto dark: hero, footer, CTAs) */
  --vc-navy:        #003E7E;
  --vc-navy-light:  #0064B3;
  /* Azuis acentuação */
  --vc-blue:        #003E7E;
  --vc-blue-bright: #0078D4;
  --vc-cyan:        #0078D4;   /* protagonista em fundo claro */
  --vc-mint:        #0078D4;   /* em paleta light, "mint" = azul premium */
  --vc-mint-dim:    rgba(0,120,212,0.06);
  --vc-mint-glow:   rgba(0,120,212,0.20);
  /* Texto (light) */
  --vc-text:        #1E293B;
  --vc-text-muted:  #64748B;
  --vc-text-dim:    #94A3B8;
  /* Bordas (light) */
  --vc-border:      #E2E8F0;
  --vc-border-mid:  #CBD5E1;
  /* Cards (white sobre bg light) */
  --vc-card-bg:     #FFFFFF;
  --vc-card-hover:  #F8FAFC;

  /* Mantidos do v1 */
  --vc-radius-sm:   8px;
  --vc-radius:      14px;
  --vc-radius-lg:   20px;
  --vc-radius-xl:   28px;

  --vc-space-xs:    8px;
  --vc-space-sm:    12px;
  --vc-space-md:    16px;
  --vc-space-lg:    24px;
  --vc-space-xl:    40px;
  --vc-space-2xl:   64px;
  --vc-space-3xl:   96px;

  --vc-font-display: 'Outfit', sans-serif;
  --vc-font-body:    'DM Sans', sans-serif;

  --vc-transition: 240ms cubic-bezier(0.4,0,0.2,1);
  --vc-transition-slow: 480ms cubic-bezier(0.4,0,0.2,1);

  /* Sombras light (mais suaves que v1 dark) */
  --vc-shadow-card: 0 4px 16px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --vc-shadow-glow: 0 0 30px rgba(0,120,212,0.08);
  --vc-shadow-blue: 0 6px 20px rgba(0,120,212,0.25);

  /* Tokens auxiliares v2.0 (novos, opcionais — não rompem v1) */
  --vc-dark-bg:        #003E7E;
  --vc-dark-bg-alt:    #0064B3;
  --vc-dark-text:      #FFFFFF;
  --vc-dark-text-mid:  rgba(255,255,255,0.78);
  --vc-dark-text-dim:  rgba(255,255,255,0.55);
  --vc-dark-border:    rgba(255,255,255,0.14);
  --vc-accent-cyan:    #50E6FF;   /* preservado pra hero dark + gradients */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--vc-font-body);
  background: var(--vc-bg);
  color: var(--vc-text);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(0,120,212,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 110%, rgba(80,230,255,0.025) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--vc-font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vc-text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.gradient-text {
  background: linear-gradient(135deg, #0078D4 0%, #003E7E 50%, #0064B3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-family: var(--vc-font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vc-cyan);
  margin-bottom: 12px;
  padding: 5px 12px;
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.20);
  border-radius: 100px;
}
.section-title { margin-bottom: 16px; color: var(--vc-text); }
.section-text {
  font-size: 1.05rem;
  color: var(--vc-text-muted);
  max-width: 620px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-text { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vc-font-display);
  font-weight: 600;
  border-radius: var(--vc-radius);
  transition: var(--vc-transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--vc-transition);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn--sm  { font-size: 0.85rem; padding: 9px 18px; }
.btn--md  { font-size: 0.95rem; padding: 12px 24px; }
.btn--lg  { font-size: 1rem;    padding: 15px 30px; }

.btn--primary {
  background: linear-gradient(135deg, #0078D4 0%, #003E7E 100%);
  color: #fff;
  box-shadow: var(--vc-shadow-blue);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,120,212,0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--vc-text);
  border: 1px solid var(--vc-border-mid);
}
.btn--ghost:hover {
  border-color: var(--vc-blue-bright);
  color: var(--vc-blue-bright);
  transform: translateY(-2px);
}
/* Ghost em fundo dark (apenas cta-banner e footer permanecem dark) */
.cta-banner .btn--ghost,
.footer .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.cta-banner .btn--ghost:hover,
.footer .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: #003E7E;
  font-weight: 700;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.4); }

.btn--cyan {
  background: var(--vc-accent-cyan);
  color: #003E7E;
  font-weight: 700;
}
.btn--cyan:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(80,230,255,0.4); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: var(--vc-transition-slow);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--vc-border);
  box-shadow: 0 4px 18px rgba(15,23,42,0.05);
}
.navbar__inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-hex {
  flex-shrink: 0;
  transition: filter var(--vc-transition);
}
.navbar__logo:hover .navbar__logo-hex {
  filter: drop-shadow(0 0 10px rgba(0,120,212,0.35));
}
.navbar__logo-text {
  font-family: var(--vc-font-display);
  font-size: 1.05rem;
  color: var(--vc-text);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.navbar__logo-text strong {
  font-weight: 800;
  color: var(--vc-text);
  letter-spacing: 0.04em;
  font-size: 1rem;
}
.navbar__logo-text span {
  font-weight: 400;
  color: var(--vc-blue-bright);
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__link {
  font-family: var(--vc-font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--vc-text-muted);
  text-decoration: none;
  padding: 8px 11px;
  border-radius: var(--vc-radius-sm);
  transition: var(--vc-transition);
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.navbar__link:hover, .navbar__link.active {
  color: var(--vc-text);
  background: rgba(0,120,212,0.06);
}
.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--vc-blue-bright);
  border-radius: 2px;
}

/* Pilar de destaque — Serviços Gerenciados (MSP) */
.navbar__link--pillar {
  color: var(--vc-blue-bright);
  font-weight: 600;
}
.navbar__link--pillar:hover, .navbar__link--pillar.active {
  color: var(--vc-blue);
  background: rgba(0,120,212,0.09);
}

/* Dropdown */
.navbar__dropdown { position: relative; }
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: var(--vc-transition);
  box-shadow: 0 16px 40px rgba(15,23,42,0.10);
}
/* Ponte invisivel: cobre o vao de 8px para o hover nao se perder no meio do caminho */
.navbar__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--vc-radius-sm);
  text-decoration: none;
  color: var(--vc-text-muted);
  font-size: 0.88rem;
  font-family: var(--vc-font-display);
  font-weight: 500;
  transition: var(--vc-transition);
}
.navbar__dropdown-item:hover {
  background: var(--vc-mint-dim);
  color: var(--vc-blue-bright);
}
.navbar__dropdown-item svg { color: var(--vc-blue-bright); flex-shrink: 0; }
.navbar__cta { margin-left: 16px; flex-shrink: 0; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--vc-text);
  border-radius: 2px;
  transition: var(--vc-transition);
}
.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--vc-border);
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-link {
  font-family: var(--vc-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vc-text-muted);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: var(--vc-radius);
  border: 1px solid transparent;
  transition: var(--vc-transition);
}
.navbar__mobile-link:hover {
  color: var(--vc-blue-bright);
  border-color: var(--vc-border);
  background: var(--vc-mint-dim);
}
.navbar__mobile-cta { margin-top: 16px; width: 100%; justify-content: center; }

/* ── Hero (HOME — light, padrão v2.0 Premium Light) ── */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--vc-bg-alt);
  color: var(--vc-text);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(0,120,212,0.08) 0%, transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(80,230,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero h1, .hero h2, .hero h3 { color: var(--vc-text); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vc-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--vc-blue-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.20);
  border-radius: 100px;
}
.hero__kicker {
  font-family: var(--vc-font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--vc-text-muted);
  margin-bottom: 20px;
  min-height: 1.5em;
}
.hero__kicker::after {
  content: '|';
  animation: blink 1s step-end infinite;
  margin-left: 2px;
  color: var(--vc-blue-bright);
}
@keyframes blink { 50% { opacity: 0; } }
.hero__title {
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--vc-text);
}
.hero__title span { display: block; }
.hero__title .gradient-text {
  background: linear-gradient(135deg, #0078D4 0%, #003E7E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  font-size: 1.05rem;
  color: var(--vc-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--vc-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--vc-border);
  background: #fff;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
  z-index: 10;
  animation: floatChip 4s ease-in-out infinite;
  color: var(--vc-blue-bright);
}
.float-chip.security { top: 12%; left: -10%; animation-delay: 0s; }
.float-chip.csp      { top: 8%;  right: 0%;  animation-delay: 1.3s; }
.float-chip.cloud    { bottom: 12%; right: -5%; color: var(--vc-text); animation-delay: 2.6s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.hero-card-wrap {
  width: 100%;
  max-width: 420px;
  perspective: 1200px;
  cursor: default;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-xl);
  padding: 28px;
  box-shadow: 0 16px 50px rgba(15,23,42,0.10), 0 0 1px rgba(15,23,42,0.04);
  transition: transform 0.08s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--vc-blue-bright), transparent);
  pointer-events: none;
}
.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vc-border);
}
.hero-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--vc-text);
}
.hero-card__mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--vc-blue-bright), var(--vc-navy));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem; color: #fff;
}
.hero-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #16A34A;
  font-family: var(--vc-font-display);
  font-weight: 600;
}
.hero-card__status::before {
  content: '';
  width: 7px; height: 7px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 8px #16A34A;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-card__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--vc-text);
}
.hero-card__title span { color: var(--vc-blue-bright); }
.console-list { display: flex; flex-direction: column; gap: 12px; }
.console-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--vc-bg-alt);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  transition: var(--vc-transition);
}
.console-item:hover {
  background: rgba(0,120,212,0.05);
  border-color: var(--vc-blue-bright);
}
.console-item__icon {
  width: 36px; height: 36px;
  background: var(--vc-mint-dim);
  border-radius: var(--vc-radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--vc-blue-bright);
}
.console-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.console-item strong {
  font-family: var(--vc-font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vc-text);
}
.console-item span {
  font-size: 0.75rem;
  color: var(--vc-text-muted);
}

/* ── Trust Bar ── */
.trust-bar {
  padding: 20px 0;
  border-top: 1px solid var(--vc-border);
  border-bottom: 1px solid var(--vc-border);
  background: var(--vc-bg-alt);
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  gap: 0;
  overflow: hidden;
}
.trust-bar__track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: trustScroll 24s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar__item {
  font-family: var(--vc-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--vc-text-dim);
  text-transform: uppercase;
  transition: var(--vc-transition);
  flex-shrink: 0;
}
.trust-bar__sep {
  color: var(--vc-border-mid);
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* ── Sections ── */
.section { padding: var(--vc-space-3xl) 0; position: relative; z-index: 1; }
.section--alt {
  background: var(--vc-bg-alt);
}
.section--alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(0,120,212,0.025) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Metrics ── */
.metrics { padding: 64px 0; position: relative; z-index: 1; }
.metrics__panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--vc-border);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  box-shadow: var(--vc-shadow-card);
}
.metric {
  background: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--vc-transition);
}
.metric:hover { background: var(--vc-bg-alt); }
.metric__value {
  font-family: var(--vc-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--vc-blue-bright) 0%, var(--vc-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.metric__label {
  font-size: 0.85rem;
  color: var(--vc-text-muted);
  line-height: 1.4;
}

/* ── Cards / Solutions Grid ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-top: 3px solid var(--vc-blue-bright);
  border-radius: var(--vc-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--vc-transition-slow);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vc-accent-cyan), transparent);
  opacity: 0;
  transition: var(--vc-transition);
}
.card:hover {
  border-color: var(--vc-border-mid);
  border-top-color: var(--vc-accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-card), var(--vc-shadow-glow);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 44px; height: 44px;
  background: var(--vc-mint-dim);
  border-radius: var(--vc-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--vc-blue-bright);
}
.card__number {
  font-family: var(--vc-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vc-text-dim);
  position: absolute;
  top: 24px; right: 24px;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vc-text);
}
.card__text {
  font-size: 0.88rem;
  color: var(--vc-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--vc-font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vc-blue-bright);
  transition: var(--vc-transition);
}
.card:hover .card__link { gap: 10px; }

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Testimonials ── */
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 500ms cubic-bezier(0.4,0,0.2,1); }
.testimonial-slide {
  min-width: 100%;
  padding: 48px;
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-xl);
  position: relative;
  box-shadow: var(--vc-shadow-card);
}
.testimonial-slide::before {
  content: '"';
  position: absolute;
  top: 24px; left: 40px;
  font-family: var(--vc-font-display);
  font-size: 6rem;
  color: var(--vc-blue-bright);
  opacity: 0.12;
  line-height: 1;
}
.testimonial__quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--vc-text);
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial__author {
  font-family: var(--vc-font-display);
  font-weight: 700;
  color: var(--vc-text);
  font-size: 0.95rem;
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--vc-text-muted);
  margin-top: 4px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vc-border-mid);
  transition: var(--vc-transition);
  cursor: pointer;
}
.testimonial-dot.active {
  background: var(--vc-blue-bright);
  width: 24px;
  border-radius: 4px;
}

/* ── Cert Badges ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cert-badge {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: var(--vc-transition);
  box-shadow: var(--vc-shadow-card);
}
.cert-badge:hover {
  border-color: var(--vc-border-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}
.cert-badge__icon {
  width: 44px; height: 44px;
  background: var(--vc-mint-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--vc-blue-bright);
}
.cert-badge__name {
  font-family: var(--vc-font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--vc-text);
  letter-spacing: -0.01em;
}
.cert-badge__desc {
  font-size: 0.72rem;
  color: var(--vc-text-muted);
  line-height: 1.3;
}
.cert-badge--featured {
  position: relative;
  border-color: var(--vc-border-mid);
  background: linear-gradient(180deg, var(--vc-mint-dim) 0%, var(--vc-card-bg) 55%);
  box-shadow: 0 10px 28px rgba(0,120,212,0.10);
}
.cert-badge--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-mint);
  opacity: 0.5;
  pointer-events: none;
}
.cert-badge__tier {
  font-family: var(--vc-font-display);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vc-blue);
  background: rgba(0,120,212,0.10);
  padding: 3px 9px;
  border-radius: 999px;
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--vc-transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: var(--vc-shadow-card);
}
.blog-card:hover {
  border-color: var(--vc-border-mid);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}
.blog-card__thumb {
  aspect-ratio: 16/8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vc-mint-dim) 0%, rgba(80,230,255,0.04) 100%);
}
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-card__tag {
  display: inline-block;
  font-family: var(--vc-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vc-blue-bright);
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.20);
  border-radius: 100px;
  padding: 3px 10px;
  width: fit-content;
}
.blog-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--vc-text);
  flex: 1;
}
.blog-card__excerpt { font-size: 0.83rem; color: var(--vc-text-muted); line-height: 1.5; }
.blog-card__date { font-size: 0.75rem; color: var(--vc-text-dim); font-family: var(--vc-font-display); font-weight: 500; margin-top: auto; padding-top: 8px; }

/* ── CTA Banner (dark — canônico v2.0) ── */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,62,126,0.06) 0%, rgba(0,120,212,0.03) 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, #003E7E 0%, #0064B3 100%);
  border: 1px solid rgba(80,230,255,0.20);
  border-radius: var(--vc-radius-xl);
  box-shadow: 0 20px 60px rgba(0,62,126,0.20);
  color: #fff;
}
.cta-banner__inner h2,
.cta-banner__inner h3 { color: #fff; }
.cta-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  overflow: hidden;
  transition: var(--vc-transition);
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.faq-item.open { border-color: var(--vc-blue-bright); box-shadow: 0 4px 16px rgba(0,120,212,0.10); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--vc-font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--vc-text);
  gap: 16px;
  transition: var(--vc-transition);
}
.faq-question:hover { color: var(--vc-blue-bright); }
.faq-question svg {
  flex-shrink: 0;
  color: var(--vc-text-muted);
  transition: transform var(--vc-transition);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--vc-blue-bright); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--vc-text-muted);
  line-height: 1.7;
}

/* ── Advantages List ── */
.advantages-list { display: flex; flex-direction: column; gap: 18px; }
.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--vc-radius);
  border: 1px solid transparent;
  transition: var(--vc-transition);
}
.advantage-item:hover { background: var(--vc-bg-alt); border-color: var(--vc-border); }
.advantage-item__icon {
  width: 32px; height: 32px;
  background: var(--vc-mint-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--vc-blue-bright);
  margin-top: 2px;
}
.advantage-item strong { display: block; font-family: var(--vc-font-display); font-size: 0.97rem; font-weight: 600; margin-bottom: 4px; color: var(--vc-text); }
.advantage-item p { font-size: 0.87rem; color: var(--vc-text-muted); line-height: 1.5; }

/* ── Pillars Card ── */
.pillars-card {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-xl);
  padding: 36px;
  box-shadow: var(--vc-shadow-card);
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.pillar-item {
  padding: 20px;
  background: var(--vc-bg-alt);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius);
  text-align: center;
  transition: var(--vc-transition);
}
.pillar-item:hover { background: var(--vc-mint-dim); border-color: var(--vc-blue-bright); }
.pillar-item__emoji { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.pillar-item strong { font-family: var(--vc-font-display); font-size: 0.88rem; font-weight: 600; color: var(--vc-text); display: block; }
.pillar-item__desc { display: block; margin-top: 8px; font-size: 0.78rem; line-height: 1.45; color: var(--vc-text-muted); }

/* ── Footer (dark — closing institucional v2.0) ── */
.footer {
  background: #1E293B;
  border-top: 1px solid var(--vc-border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.78);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer .navbar__logo-text strong,
.footer .navbar__logo-text { color: #fff; }
.footer .navbar__logo-text span { color: var(--vc-accent-cyan); }
.footer__brand-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 16px 0 24px;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--vc-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--vc-accent-cyan);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  transition: var(--vc-transition);
}
.footer__social-btn:hover { background: var(--vc-accent-cyan); color: #003E7E; border-color: var(--vc-accent-cyan); }
.footer__col-title {
  font-family: var(--vc-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--vc-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__link:hover { color: var(--vc-accent-cyan); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer__contact-item svg { color: var(--vc-accent-cyan); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.50); }
.footer__cnpj {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
  font-family: var(--vc-font-display);
  font-weight: 500;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: var(--vc-transition);
  animation: floatWA 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
@keyframes floatWA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--vc-border-mid);
  border-radius: var(--vc-radius-lg);
  padding: 20px 24px;
  z-index: 800;
  box-shadow: 0 16px 48px rgba(15,23,42,0.16);
  transform: translateY(0);
  transition: var(--vc-transition-slow);
}
.cookie-banner.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner p { font-size: 0.85rem; color: var(--vc-text-muted); line-height: 1.5; margin-bottom: 16px; }
.cookie-banner a { color: var(--vc-blue-bright); }
.cookie-banner__actions { display: flex; gap: 10px; }

/* ── Form ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--vc-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vc-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-label span { color: var(--vc-blue-bright); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--vc-border-mid);
  border-radius: var(--vc-radius);
  padding: 13px 16px;
  font-family: var(--vc-font-body);
  font-size: 0.95rem;
  color: var(--vc-text);
  transition: var(--vc-transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--vc-text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--vc-blue-bright);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #fff; color: var(--vc-text); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Hero interno (páginas de solução) — light ── */
.page-hero {
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--vc-bg-alt);
  color: var(--vc-text);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(0,120,212,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero h1, .page-hero h2, .page-hero h3 { color: var(--vc-text); }
.page-hero__content { max-width: 680px; position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--vc-text-muted);
  margin-bottom: 20px;
  font-family: var(--vc-font-display);
}
.page-hero__breadcrumb a { color: var(--vc-text-muted); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--vc-blue-bright); }
.page-hero__breadcrumb span { color: var(--vc-text-dim); }

/* ── Scroll Reveal ── */
/* Visível por padrão (LCP-safe): nada fica escondido esperando o JS.
   O JS esconde (.sr-hidden) só o que está ABAIXO da dobra e revela (.visible) no scroll. */
.sr-up {
  opacity: 1;
  transform: none;
}
.sr-up.sr-hidden {
  opacity: 0;
  transform: translateY(32px);
}
.sr-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 640ms cubic-bezier(0.4,0,0.2,1), transform 640ms cubic-bezier(0.4,0,0.2,1);
}
.sr-stagger > * {
  opacity: 1;
  transform: none;
}
.sr-stagger.sr-hidden > * {
  opacity: 0;
  transform: translateY(28px);
}
.sr-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms cubic-bezier(0.4,0,0.2,1), transform 560ms cubic-bezier(0.4,0,0.2,1);
}
.sr-stagger.visible > *:nth-child(1)  { transition-delay: 0ms; }
.sr-stagger.visible > *:nth-child(2)  { transition-delay: 80ms; }
.sr-stagger.visible > *:nth-child(3)  { transition-delay: 160ms; }
.sr-stagger.visible > *:nth-child(4)  { transition-delay: 240ms; }
.sr-stagger.visible > *:nth-child(5)  { transition-delay: 320ms; }
.sr-stagger.visible > *:nth-child(6)  { transition-delay: 400ms; }
.sr-stagger.visible > *:nth-child(7)  { transition-delay: 480ms; }
.sr-stagger.visible > *:nth-child(8)  { transition-delay: 560ms; }

/* ── Sobre page extras ── */
.team-card {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--vc-transition);
  box-shadow: var(--vc-shadow-card);
}
.team-card:hover { border-color: var(--vc-border-mid); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,0.08); }
.team-card__avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--vc-blue-bright), var(--vc-navy));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--vc-font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,120,212,0.25);
}
.team-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--vc-text); }
.team-card__role { font-size: 0.83rem; color: var(--vc-blue-bright); font-family: var(--vc-font-display); font-weight: 600; margin-bottom: 12px; }
.team-card__bio { font-size: 0.85rem; color: var(--vc-text-muted); line-height: 1.55; }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 640px; }
.timeline-item { display: flex; gap: 24px; position: relative; }
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px; top: 44px;
  width: 2px;
  bottom: -1px;
  background: var(--vc-border);
}
.timeline-item__dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vc-mint-dim);
  border: 2px solid var(--vc-blue-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--vc-blue-bright);
  z-index: 1;
}
.timeline-item__content { padding-bottom: 36px; }
.timeline-item__year {
  font-family: var(--vc-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vc-blue-bright);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline-item__title { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; color: var(--vc-text); }
.timeline-item__text { font-size: 0.85rem; color: var(--vc-text-muted); line-height: 1.55; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 120px 0 60px; }
  .float-chip { display: none; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .metrics__panel { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

/* Navbar colapsa para hambúrguer mais cedo (1120px) para acomodar o pilar
   "Serviços Gerenciados" sem estourar o botão de CTA. */
@media (max-width: 1120px) {
  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
}

@media (max-width: 580px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics__panel { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__inner { padding: 40px 24px; }
  .testimonial-slide { padding: 32px 24px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Utility ── */
.mt-auto { margin-top: auto; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Express Form (home hero — light context) ── */
.express-form {
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-xl);
  padding: 28px 32px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.08);
  margin-top: 28px;
}
.express-form__label {
  font-family: var(--vc-font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vc-blue-bright);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.express-form__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vc-blue-bright);
  box-shadow: 0 0 8px var(--vc-blue-bright);
  animation: pulse-green 2s ease-in-out infinite;
}
.express-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 10px;
  align-items: end;
}
.express-form__field { display: flex; flex-direction: column; gap: 5px; }
.express-form__field-label { font-size: 0.72rem; color: var(--vc-text-muted); font-family: var(--vc-font-display); font-weight: 500; }
.express-form__input {
  background: var(--vc-bg-alt);
  border: 1px solid var(--vc-border-mid);
  border-radius: var(--vc-radius);
  padding: 10px 13px;
  font-family: var(--vc-font-body);
  font-size: 0.88rem;
  color: var(--vc-text);
  outline: none;
  transition: var(--vc-transition);
  width: 100%;
}
.express-form__input::placeholder { color: var(--vc-text-dim); }
.express-form__input:focus {
  background: #fff;
  border-color: var(--vc-blue-bright);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.12);
}
.express-form__select {
  background: var(--vc-bg-alt);
  border: 1px solid var(--vc-border-mid);
  border-radius: var(--vc-radius);
  padding: 10px 13px;
  font-family: var(--vc-font-body);
  font-size: 0.88rem;
  color: var(--vc-text);
  outline: none;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  transition: var(--vc-transition);
}
.express-form__select:focus {
  background-color: #fff;
  border-color: var(--vc-blue-bright);
  box-shadow: 0 0 0 3px rgba(0,120,212,0.12);
}
.express-form__select option { background: #fff; color: var(--vc-text); }
.express-form__note { font-size: 0.7rem; color: var(--vc-text-dim); margin-top: 9px; }

@media (max-width: 900px) {
  .express-form__row { grid-template-columns: 1fr 1fr; }
  .express-form__row .btn { grid-column: 1 / -1; width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .express-form__row { grid-template-columns: 1fr; }
  .express-form { padding: 20px 18px; }
}

/* ── Microsoft Partner Badge ── */
.ms-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 10px;
  background: rgba(0,120,212,0.06);
  border: 1px solid rgba(0,120,212,0.20);
  border-radius: var(--vc-radius);
  text-decoration: none;
  transition: var(--vc-transition);
}
.ms-partner-badge:hover { background: rgba(0,120,212,0.10); border-color: rgba(0,120,212,0.35); }
.ms-partner-badge__top { font-size: 0.6rem; font-family: var(--vc-font-display); font-weight: 500; color: var(--vc-text-muted); letter-spacing: 0.04em; line-height: 1; display: block; }
.ms-partner-badge__bottom { font-size: 0.78rem; font-family: var(--vc-font-display); font-weight: 700; color: var(--vc-text); letter-spacing: -0.01em; line-height: 1.3; display: block; }

/* ── Social Proof Bar ── */
.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  flex-wrap: wrap;
  box-shadow: 0 4px 12px rgba(15,23,42,0.04);
}
.sp-item { display: flex; align-items: center; gap: 10px; }
.sp-item__val {
  font-family: var(--vc-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--vc-blue-bright) 0%, var(--vc-navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sp-item__label { font-size: 0.76rem; color: var(--vc-text-muted); line-height: 1.35; }
.sp-divider { width: 1px; height: 28px; background: var(--vc-border); flex-shrink: 0; }

@media (max-width: 640px) {
  .social-proof-bar { gap: 14px; padding: 12px 16px; }
  .sp-divider { display: none; }
  .sp-item__val { font-size: 1.05rem; }
}

/* ── Lead Magnet ── */
.lead-magnet {
  background: linear-gradient(135deg, rgba(0,120,212,0.06) 0%, rgba(80,230,255,0.03) 100%);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: var(--vc-space-xl);
  flex-wrap: wrap;
  transition: var(--vc-transition);
}
.lead-magnet:hover { border-color: var(--vc-blue-bright); }
.lead-magnet__icon { width: 48px; height: 48px; background: var(--vc-mint-dim); border-radius: var(--vc-radius); display: flex; align-items: center; justify-content: center; color: var(--vc-blue-bright); flex-shrink: 0; }
.lead-magnet__text { flex: 1; min-width: 180px; }
.lead-magnet__title { font-family: var(--vc-font-display); font-size: 0.93rem; font-weight: 700; margin-bottom: 3px; color: var(--vc-text); }
.lead-magnet__desc { font-size: 0.8rem; color: var(--vc-text-muted); }

/* ── Testimonial upgrades ── */
.testimonial__stars { color: #FFB800; font-size: 0.88rem; letter-spacing: 1px; margin-bottom: 6px; display: block; }
.testimonial__meta { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--vc-font-display); font-weight: 800; font-size: 1.1rem; color: #fff; flex-shrink: 0; }
.testimonial__info { display: flex; flex-direction: column; gap: 1px; }
.testimonial__author { font-family: var(--vc-font-display); font-weight: 700; color: var(--vc-text); font-size: 0.93rem; }
.testimonial__company { font-size: 0.76rem; color: var(--vc-blue-bright); font-family: var(--vc-font-display); font-weight: 600; }
.testimonial__role { font-size: 0.76rem; color: var(--vc-text-muted); }

/* ── Contato page: urgency bar ── */
.urgency-bar {
  background: linear-gradient(135deg, rgba(255,169,77,0.10) 0%, rgba(255,107,107,0.06) 100%);
  border: 1px solid rgba(255,169,77,0.30);
  border-radius: var(--vc-radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.urgency-bar__dot { width: 8px; height: 8px; border-radius: 50%; background: #F59E0B; box-shadow: 0 0 8px #F59E0B; animation: pulse-green 1.5s ease-in-out infinite; flex-shrink: 0; }
.urgency-bar p { font-size: 0.85rem; color: var(--vc-text); font-family: var(--vc-font-display); font-weight: 500; }
.urgency-bar strong { color: #D97706; }

/* ── Bookings embed card ── */
.bookings-card {
  background: var(--vc-card-bg);
  border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--vc-transition);
  box-shadow: var(--vc-shadow-card);
}
.bookings-card:hover { border-color: var(--vc-blue-bright); box-shadow: 0 12px 32px rgba(0,120,212,0.10); }
.bookings-card__icon { width: 56px; height: 56px; background: var(--vc-mint-dim); border-radius: var(--vc-radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--vc-blue-bright); }
.bookings-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--vc-text); }
.bookings-card__desc { font-size: 0.85rem; color: var(--vc-text-muted); line-height: 1.6; margin-bottom: 20px; }
.bookings-card__tag { display: inline-block; font-size: 0.7rem; font-family: var(--vc-font-display); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--vc-blue-bright); background: rgba(0,120,212,0.08); border: 1px solid rgba(0,120,212,0.20); border-radius: 100px; padding: 3px 10px; margin-bottom: 16px; }

/* ── Or divider ── */
.or-divider { display: flex; align-items: center; gap: 16px; margin: 28px 0; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--vc-border); }
.or-divider span { font-size: 0.78rem; color: var(--vc-text-dim); font-family: var(--vc-font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }

/* ── Secondary CTA Block Global ── */
.secondary-cta-block {
  transition: var(--vc-transition);
}
.secondary-cta-block:hover {
  border-color: var(--vc-blue-bright) !important;
  box-shadow: var(--vc-shadow-glow);
}
@media (max-width: 640px) {
  .secondary-cta-block {
    flex-direction: column;
    text-align: center;
  }
  .secondary-cta-block .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Tabela comparativa global (.compare-table) ── */
.compare-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed; min-width: 620px; background: var(--vc-card-bg); border: 1px solid var(--vc-border); border-radius: var(--vc-radius-lg); overflow: hidden; }
.compare-table col.compare-col--label { width: 30%; }
.compare-table col.compare-col--data { width: 35%; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; font-size: 0.9rem; vertical-align: top; border-bottom: 1px solid var(--vc-border); }
.compare-table thead th { font-family: var(--vc-font-display); font-weight: 700; font-size: 0.86rem; color: var(--vc-text); background: var(--vc-mint-dim); border-bottom: 1px solid var(--vc-border-mid); }
.compare-table tbody td:first-child { font-weight: 600; color: var(--vc-text); }
.compare-table td { color: var(--vc-text-muted); line-height: 1.5; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .col-vireon { border-left: 1px solid var(--vc-border); background: rgba(0,120,212,0.04); }
.compare-table thead .col-vireon { color: var(--vc-blue); background: rgba(0,120,212,0.09); }
.compare-table tbody tr:last-child td { font-weight: 500; }
@media (max-width: 600px) { .compare-table th, .compare-table td { padding: 12px 14px; font-size: 0.84rem; } }

/* ── Serviços Gerenciados (MSP) — seção da home ── */
.mng-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-lg); padding: 16px 18px;
  transition: var(--vc-transition);
}
.mng-item:hover {
  border-color: var(--vc-blue-bright);
  box-shadow: 0 6px 20px rgba(0,120,212,0.08);
  transform: translateY(-2px);
}
.mng-item__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 9px;
  background: rgba(0,120,212,0.08); color: var(--vc-blue-bright);
  display: flex; align-items: center; justify-content: center;
}
.mng-item strong {
  display: block; font-family: var(--vc-font-display);
  font-size: 0.92rem; color: var(--vc-text); margin-bottom: 2px;
}
.mng-item span { font-size: 0.8rem; color: var(--vc-text-muted); line-height: 1.35; }

.mng-proof {
  background: #fff; border: 1px solid var(--vc-border);
  border-radius: var(--vc-radius-xl); padding: 36px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 36px; align-items: center;
}
.mng-proof__title {
  font-family: var(--vc-font-display); font-size: 1.4rem;
  color: var(--vc-text); margin: 10px 0 12px; line-height: 1.25;
}
.mng-proof__text { font-size: 0.92rem; color: var(--vc-text-muted); line-height: 1.6; }
.mng-proof__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mng-proof__item { display: flex; gap: 12px; align-items: flex-start; }
.mng-proof__icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px;
  background: rgba(0,120,212,0.08); color: var(--vc-blue-bright);
  display: flex; align-items: center; justify-content: center;
}
.mng-proof__item strong {
  display: block; font-family: var(--vc-font-display);
  font-size: 0.9rem; color: var(--vc-text); margin-bottom: 3px;
}
.mng-proof__item p { font-size: 0.8rem; color: var(--vc-text-muted); line-height: 1.45; }

@media (max-width: 860px) {
  .mng-proof { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .mng-proof__grid { grid-template-columns: 1fr; }
}

/* ── Cross-link "Operação Gerenciada" (MSP) — páginas de solução ── */
.managed-xlink {
  background: linear-gradient(135deg, rgba(0,120,212,0.06) 0%, rgba(80,230,255,0.04) 100%);
  border: 1px solid rgba(0,120,212,0.16);
  border-radius: var(--vc-radius-xl);
  padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.managed-xlink__body { flex: 1; min-width: 280px; }
.managed-xlink__title {
  font-family: var(--vc-font-display); font-size: 1.35rem;
  color: var(--vc-text); line-height: 1.25; margin: 8px 0 10px;
}
.managed-xlink__text {
  font-size: 0.92rem; color: var(--vc-text-muted);
  line-height: 1.6; max-width: 640px;
}
.managed-xlink__cta { flex-shrink: 0; }
@media (max-width: 640px) {
  .managed-xlink { padding: 26px; }
  .managed-xlink__cta { width: 100%; justify-content: center; }
}
