/* VitalSynk — CSS principal.
   Sistema visual baseado no Brandbook v0 (../../../Marca/Vitalsynk-Brandbook-v0.docx).
   Tokens, tipografia e regras seguem a especificação aprovada. */

:root {
  /* Paleta */
  --vs-teal: #0B4F5A;
  --vs-teal-deep: #04342C;
  --vs-pulse: #34D6A2;
  --vs-pulse-hover: #2BBF8E;
  --vs-sand: #F5EFE4;
  --vs-graphite: #1A2329;
  --vs-mist: #E8EDEF;
  --vs-white: #FFFFFF;

  /* Tipografia */
  --vs-font-display: 'Fraunces', Georgia, serif;
  --vs-font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Grid base 8px */
  --vs-space-1: 8px;
  --vs-space-2: 16px;
  --vs-space-3: 24px;
  --vs-space-4: 32px;
  --vs-space-6: 48px;
  --vs-space-8: 64px;
  --vs-space-12: 96px;
  --vs-space-16: 128px;

  --vs-container: 1200px;
  --vs-narrow: 720px;
  --vs-radius: 12px;
  --vs-radius-lg: 20px;
  --vs-shadow-sm: 0 1px 2px rgba(11, 79, 90, 0.06), 0 4px 12px rgba(11, 79, 90, 0.04);
  --vs-shadow-md: 0 4px 24px rgba(11, 79, 90, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--vs-font-body);
  color: var(--vs-graphite);
  background: var(--vs-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--vs-teal); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--vs-pulse-hover); }
p { margin: 0 0 var(--vs-space-2); }
h1, h2, h3, h4 { font-family: var(--vs-font-display); color: var(--vs-teal); letter-spacing: -0.01em; }

/* -------- Container -------- */
.vs-container {
  max-width: var(--vs-container);
  margin: 0 auto;
  padding-left: var(--vs-space-4);
  padding-right: var(--vs-space-4);
}
.vs-narrow { max-width: var(--vs-narrow); }

/* -------- Navegação -------- */
.vs-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--vs-mist);
}
.vs-nav__inner {
  max-width: var(--vs-container);
  margin: 0 auto;
  padding: var(--vs-space-2) var(--vs-space-4);
  display: flex; justify-content: space-between; align-items: center;
}
.vs-nav__logo img { display: block; }
.vs-nav__links {
  display: flex; align-items: center;
  gap: var(--vs-space-4);
}
.vs-nav__links a {
  font-weight: 500;
  color: var(--vs-graphite);
  font-size: 15px;
}
.vs-nav__links a:hover { color: var(--vs-teal); }

/* -------- Hero -------- */
.vs-hero {
  background: var(--vs-sand);
  padding: var(--vs-space-12) 0 var(--vs-space-12);
  text-align: center;
}
.vs-hero--home {
  text-align: left;
  padding: var(--vs-space-8) 0 var(--vs-space-12);
}
.vs-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-6);
  align-items: center;
}
@media (min-width: 900px) {
  .vs-hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: var(--vs-space-8);
  }
}
.vs-hero__title-accent {
  color: var(--vs-pulse);
  font-style: italic;
  font-weight: 600;
}
.vs-hero--editorial {
  padding: var(--vs-space-8) 0 var(--vs-space-12);
  text-align: left;
}
.vs-hero--editorial .vs-hero__sub { margin-left: 0; }
.vs-hero--home .vs-hero__sub { margin-left: 0; margin-right: 0; max-width: 540px; }
.vs-hero--home .vs-hero__actions { justify-content: flex-start; }
.vs-eyebrow--center { text-align: center; }
.vs-eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--vs-teal);
  margin: 0 0 var(--vs-space-2);
}
.vs-hero__title {
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--vs-teal);
  margin: 0 0 var(--vs-space-3);
}
.vs-hero__sub {
  max-width: 640px;
  margin: 0 auto var(--vs-space-4);
  font-size: 18px;
  color: var(--vs-graphite);
}
.vs-hero__sub--long { max-width: 760px; }
.vs-hero__actions {
  display: flex; gap: var(--vs-space-3);
  justify-content: center; align-items: center; flex-wrap: wrap;
  margin-top: var(--vs-space-3);
}
.vs-hero--editorial .vs-hero__actions { justify-content: flex-start; }

/* -------- CTA -------- */
.vs-cta {
  display: inline-block;
  background: var(--vs-pulse);
  color: var(--vs-teal-deep);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease;
  border: 0;
  cursor: pointer;
}
.vs-cta:hover {
  text-decoration: none; color: var(--vs-teal-deep);
  background: var(--vs-pulse-hover);
  transform: translateY(-1px);
}
.vs-cta--sm { padding: 8px 18px; font-size: 14px; }
.vs-cta--lg { padding: 16px 36px; font-size: 16px; }

.vs-link-arrow {
  font-weight: 500;
  font-size: 15px;
  color: var(--vs-teal);
}
.vs-link-arrow:hover { color: var(--vs-pulse-hover); }

/* -------- Section -------- */
.vs-section {
  padding: var(--vs-space-12) 0;
}
.vs-section--sand { background: var(--vs-sand); }
.vs-section--teal {
  background: var(--vs-teal);
  color: var(--vs-white);
}
.vs-section--teal h2,
.vs-section--teal h3 { color: var(--vs-white); }

.vs-section__title {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  text-align: center;
  margin: 0 0 var(--vs-space-2);
}
.vs-section__lede {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--vs-space-6);
  color: var(--vs-graphite);
  font-size: 17px;
  opacity: 0.85;
}
.vs-section--teal .vs-section__lede { color: rgba(255,255,255,0.85); }

.vs-h2-mark {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 var(--vs-space-3);
  padding-bottom: var(--vs-space-1);
  border-bottom: 2px solid var(--vs-pulse);
  display: inline-block;
}

/* -------- Pillars / cards -------- */
.vs-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vs-space-3);
}
.vs-pillars__grid--detailed {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .vs-pillars__grid--detailed {
    grid-template-columns: repeat(2, 1fr);
  }
}
.vs-card {
  padding: var(--vs-space-4);
  background: var(--vs-white);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-mist);
}
.vs-section--sand .vs-card { background: var(--vs-white); }
.vs-card h3 {
  font-size: 22px;
  margin: 0 0 var(--vs-space-1);
}
.vs-card p { margin: 0; font-size: 15px; line-height: 1.6; }

/* -------- Steps (Como funciona) -------- */
.vs-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--vs-space-4);
}
.vs-step {
  padding: var(--vs-space-4);
  background: var(--vs-sand);
  border-radius: var(--vs-radius);
  border-top: 3px solid var(--vs-pulse);
}
.vs-step__num {
  display: inline-block;
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--vs-pulse);
  margin-bottom: var(--vs-space-1);
}
.vs-step h3 {
  font-size: 22px;
  margin: 0 0 var(--vs-space-1);
}
.vs-step p { margin: 0; font-size: 15px; line-height: 1.6; }

/* -------- Para quem é / Somos / Não somos -------- */
.vs-fit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vs-space-4);
}
.vs-fit__col h3 {
  font-size: 22px;
  margin: 0 0 var(--vs-space-2);
}
.vs-list { list-style: none; padding: 0; margin: 0; }
.vs-list li {
  padding: var(--vs-space-1) 0 var(--vs-space-1) var(--vs-space-4);
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid var(--vs-mist);
}
.vs-list li:last-child { border-bottom: 0; }
.vs-list--check li::before,
.vs-list--x li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--vs-pulse);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/12px no-repeat;
}
.vs-list--x li::before {
  background: var(--vs-graphite);
  opacity: 0.6;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>") center/12px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>") center/12px no-repeat;
}
.vs-list--bullets li::before {
  content: "";
  position: absolute;
  left: 4px; top: 17px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vs-pulse);
}
.vs-list--bullets li {
  padding-left: var(--vs-space-3);
  border-bottom: 0;
}

/* -------- Features (Produto) -------- */
.vs-feature {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--vs-space-4);
  align-items: start;
  padding: var(--vs-space-6) 0;
  border-bottom: 1px solid var(--vs-mist);
}
.vs-feature:last-child { border-bottom: 0; }
.vs-feature__num {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--vs-pulse);
}
.vs-feature__content h3 {
  font-size: 26px;
  margin: 0 0 var(--vs-space-2);
}
.vs-feature__content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vs-graphite);
  margin: 0 0 var(--vs-space-3);
}

/* -------- Quote (Manifesto) -------- */
.vs-quote {
  margin: var(--vs-space-6) 0;
  padding: var(--vs-space-4) var(--vs-space-6);
  background: var(--vs-sand);
  border-left: 4px solid var(--vs-pulse);
  font-family: var(--vs-font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--vs-teal);
  border-radius: var(--vs-radius);
}
.vs-quote cite {
  display: block;
  margin-top: var(--vs-space-2);
  font-family: var(--vs-font-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--vs-graphite);
  opacity: 0.7;
  text-transform: uppercase;
}

/* -------- CTA block (final) -------- */
.vs-cta-block {
  text-align: center;
  max-width: 720px;
}
.vs-cta-block h2 {
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 var(--vs-space-2);
}
.vs-cta-block p {
  font-size: 17px;
  opacity: 0.9;
  margin: 0 0 var(--vs-space-4);
}

/* -------- Chips (Produto — integrações) -------- */
.vs-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vs-space-1);
  justify-content: center;
}
.vs-chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--vs-white);
  border: 1px solid var(--vs-mist);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--vs-graphite);
}

/* Lede dentro dos features da página produto */
.vs-feature__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vs-graphite);
  margin: 0 0 var(--vs-space-3);
}

/* Grupos de integrações */
.vs-integrations {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-4);
  max-width: 920px;
  margin: var(--vs-space-3) auto 0;
}
@media (min-width: 720px) {
  .vs-integrations { grid-template-columns: repeat(2, 1fr); }
}
.vs-int-group h3 {
  font-family: var(--vs-font-body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--vs-teal);
  margin: 0 0 var(--vs-space-2);
  font-weight: 600;
}
.vs-int-group .vs-chips {
  justify-content: flex-start;
}
.vs-int-group--wide {
  grid-column: 1 / -1;
}

/* Logos das integrações (com imagem real ou wordmark) */
.vs-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vs-space-2);
  align-items: flex-start;
}
.vs-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--vs-white);
  border: 1px solid var(--vs-mist);
  border-radius: 999px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.vs-logo:hover {
  border-color: var(--vs-pulse);
  box-shadow: var(--vs-shadow-sm);
  transform: translateY(-1px);
}
.vs-logo img,
.vs-logo__svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.vs-logo span {
  font-size: 14px;
  font-weight: 500;
  color: var(--vs-graphite);
  line-height: 1;
}
/* Wordmark — quando não há logo oficial, mostra um quadradinho com letra */
.vs-logo__mark {
  width: 20px; height: 20px;
  border-radius: 4px;
  background: var(--vs-teal);
  color: var(--vs-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.vs-logo__mark--microsoft {
  background: #0078D4;
}
.vs-logo__mark--mono {
  background: var(--vs-graphite);
}

/* ERPs — wordmark BR estilizado, mais discreto, sem ícone */
.vs-erps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vs-space-1);
}
.vs-erp {
  display: inline-block;
  padding: 8px 14px;
  background: var(--vs-white);
  border: 1px solid var(--vs-mist);
  border-radius: 8px;
  font-family: var(--vs-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--vs-teal);
  letter-spacing: -0.01em;
}

/* -------- Contato -------- */
.vs-contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vs-space-4);
  margin-bottom: var(--vs-space-8);
}
.vs-contact__card {
  display: block;
  padding: var(--vs-space-4);
  border-radius: var(--vs-radius-lg);
  background: var(--vs-white);
  border: 1px solid var(--vs-mist);
  color: var(--vs-graphite);
  box-shadow: var(--vs-shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.vs-contact__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--vs-shadow-md);
  text-decoration: none;
  color: var(--vs-graphite);
}
.vs-contact__card--primary {
  background: var(--vs-teal);
  color: var(--vs-white);
  border-color: var(--vs-teal);
}
.vs-contact__card--primary:hover {
  color: var(--vs-white);
}
.vs-contact__card--primary h2,
.vs-contact__card--primary .vs-link-arrow {
  color: var(--vs-pulse);
}
.vs-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(52, 214, 162, 0.12);
  color: var(--vs-pulse);
  margin-bottom: var(--vs-space-2);
}
.vs-contact__card--primary .vs-contact__icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--vs-pulse);
}
.vs-contact__card h2 {
  margin: 0 0 var(--vs-space-1);
  font-size: 24px;
  color: var(--vs-teal);
}
.vs-contact__card p {
  margin: 0 0 var(--vs-space-2);
  font-size: 15px;
}
.vs-contact__card--primary p { color: rgba(255,255,255,0.9); }
.vs-contact__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--vs-space-4);
  padding-top: var(--vs-space-6);
  border-top: 1px solid var(--vs-mist);
}
.vs-contact__meta h3 {
  font-family: var(--vs-font-body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--vs-teal);
  margin: 0 0 var(--vs-space-1);
}
.vs-contact__meta p {
  font-size: 15px;
  margin: 0;
}

/* -------- Blog empty -------- */
.vs-empty {
  text-align: center;
  padding: var(--vs-space-6) 0;
}
.vs-empty p { font-size: 17px; }

/* -------- Blog list -------- */
.vs-posts {
  display: flex;
  flex-direction: column;
  gap: var(--vs-space-6);
}
.vs-post-card {
  padding: var(--vs-space-4) 0;
  border-bottom: 1px solid var(--vs-mist);
}
.vs-post-card:last-child { border-bottom: 0; }
.vs-post-card__meta {
  font-size: 13px;
  color: var(--vs-graphite);
  opacity: 0.65;
  margin-bottom: var(--vs-space-1);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.vs-post-card__dot { opacity: 0.5; }
.vs-post-card__title {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  margin: 0 0 var(--vs-space-2);
}
.vs-post-card__title a {
  color: var(--vs-teal);
  text-decoration: none;
}
.vs-post-card__title a:hover { color: var(--vs-pulse-hover); }
.vs-post-card__excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vs-graphite);
  margin: 0 0 var(--vs-space-2);
}
.vs-post-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--vs-space-2);
}
.vs-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--vs-sand);
  color: var(--vs-teal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* -------- Blog post detail -------- */
.vs-post {
  padding-bottom: var(--vs-space-8);
}
.vs-post__header {
  background: var(--vs-sand);
  padding: var(--vs-space-8) 0 var(--vs-space-6);
  margin-bottom: var(--vs-space-6);
}
.vs-post__back {
  color: var(--vs-teal);
  text-decoration: none;
  font-size: 12px;
}
.vs-post__back:hover { color: var(--vs-pulse-hover); }
.vs-post__title {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--vs-teal);
  margin: 0 0 var(--vs-space-3);
}
.vs-post__meta {
  font-size: 13px;
  color: var(--vs-graphite);
  opacity: 0.7;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.vs-post__body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--vs-graphite);
}
.vs-post__body h2 {
  font-family: var(--vs-font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  margin: var(--vs-space-6) 0 var(--vs-space-3);
  color: var(--vs-teal);
  letter-spacing: -0.01em;
}
.vs-post__body h3 {
  font-family: var(--vs-font-display);
  font-weight: 600;
  font-size: 22px;
  margin: var(--vs-space-4) 0 var(--vs-space-1);
  color: var(--vs-teal);
}
.vs-post__body p {
  margin: 0 0 var(--vs-space-3);
}
.vs-post__body strong { color: var(--vs-teal); font-weight: 600; }
.vs-post__body em { color: var(--vs-graphite); }
.vs-post__body code {
  background: var(--vs-mist);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--vs-teal);
}
.vs-post__body ul,
.vs-post__body ol {
  margin: 0 0 var(--vs-space-3);
  padding-left: var(--vs-space-3);
}
.vs-post__body li {
  margin-bottom: var(--vs-space-1);
  line-height: 1.65;
}
.vs-post__body a {
  color: var(--vs-teal);
  text-decoration: underline;
  text-decoration-color: rgba(11, 79, 90, 0.3);
  text-underline-offset: 3px;
}
.vs-post__body a:hover {
  color: var(--vs-pulse-hover);
  text-decoration-color: var(--vs-pulse);
}
.vs-post__footer {
  margin-top: var(--vs-space-6);
  padding-top: var(--vs-space-3);
  border-top: 1px solid var(--vs-mist);
  font-style: italic;
  color: var(--vs-graphite);
  opacity: 0.85;
}
.vs-post__cta {
  margin-top: var(--vs-space-8);
  padding: var(--vs-space-6);
  background: var(--vs-sand);
  border-radius: var(--vs-radius-lg);
  text-align: center;
}
.vs-post__cta h3 {
  font-family: var(--vs-font-display);
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 var(--vs-space-1);
  color: var(--vs-teal);
}
.vs-post__cta p {
  font-size: 16px;
  margin: 0 0 var(--vs-space-3);
  color: var(--vs-graphite);
}

/* -------- Footer -------- */
.vs-footer {
  background: var(--vs-graphite);
  color: var(--vs-white);
  padding: var(--vs-space-8) 0 var(--vs-space-4);
}
.vs-footer__inner {
  max-width: var(--vs-container);
  margin: 0 auto;
  padding: 0 var(--vs-space-4);
}
.vs-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vs-space-3);
  flex-wrap: wrap;
}
.vs-footer__row + .vs-footer__row {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--vs-space-4);
  padding-top: var(--vs-space-3);
}
.vs-footer__tagline {
  font-family: var(--vs-font-display);
  font-style: italic;
  font-size: 18px;
  margin: var(--vs-space-1) 0 0;
  color: var(--vs-pulse);
}
.vs-footer__links {
  display: flex; gap: var(--vs-space-3); flex-wrap: wrap;
}
.vs-footer__links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.vs-footer__links a:hover { color: var(--vs-pulse); }
.vs-footer__row--meta { font-size: 13px; opacity: 0.75; }
.vs-footer__row--meta a { color: var(--vs-pulse); }

/* -------- Cookie banner LGPD -------- */
.vs-cookie-banner {
  position: fixed;
  left: var(--vs-space-2); right: var(--vs-space-2);
  bottom: var(--vs-space-2);
  z-index: 100;
  background: var(--vs-white);
  border: 1px solid var(--vs-mist);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow-md);
}
.vs-cookie-banner[hidden] { display: none; }
.vs-cookie-banner__inner {
  max-width: var(--vs-container);
  margin: 0 auto;
  padding: var(--vs-space-3) var(--vs-space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vs-space-3);
  flex-wrap: wrap;
}
.vs-cookie-banner__title {
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 4px;
  color: var(--vs-teal);
}
.vs-cookie-banner__text {
  font-size: 13px;
  margin: 0;
  color: var(--vs-graphite);
}
.vs-cookie-banner__actions {
  display: flex; gap: var(--vs-space-1);
  flex-shrink: 0;
}
.vs-cookie-banner__btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}
.vs-cookie-banner__btn--solid {
  background: var(--vs-pulse);
  color: var(--vs-teal-deep);
}
.vs-cookie-banner__btn--solid:hover { background: var(--vs-pulse-hover); }
.vs-cookie-banner__btn--ghost {
  background: transparent;
  color: var(--vs-graphite);
  border-color: var(--vs-mist);
}
.vs-cookie-banner__btn--ghost:hover { background: var(--vs-mist); }

/* -------- WhatsApp FAB -------- */
.vs-whatsapp-fab {
  position: fixed;
  right: var(--vs-space-3);
  bottom: var(--vs-space-3);
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--vs-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform .15s ease;
}
.vs-whatsapp-fab:hover {
  color: var(--vs-white);
  text-decoration: none;
  transform: translateY(-2px) scale(1.04);
}

/* -------- Responsive -------- */
@media (max-width: 720px) {
  .vs-nav__inner { padding: var(--vs-space-2); }
  .vs-nav__links { gap: var(--vs-space-2); }
  .vs-nav__links a:not(.vs-cta) { display: none; }
  .vs-hero { padding: var(--vs-space-8) 0; }
  .vs-section { padding: var(--vs-space-8) 0; }
  .vs-feature {
    grid-template-columns: 1fr;
    gap: var(--vs-space-2);
  }
  .vs-feature__num { font-size: 40px; }
  .vs-cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .vs-cookie-banner__actions { justify-content: flex-end; }
}

/* -------- A11y -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}

/* Focus visible */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--vs-pulse);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   Phone mockup + WhatsApp chat animado (HTML/CSS puro)
   ============================================================ */
.vs-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vs-space-2);
}
.vs-phone__frame {
  position: relative;
  width: 320px;
  max-width: 100%;
  border-radius: 36px;
  background: #0d0f12;
  padding: 14px 12px 18px;
  box-shadow:
    0 18px 40px rgba(11, 79, 90, 0.18),
    0 4px 12px rgba(11, 79, 90, 0.08),
    inset 0 0 0 2px #1a1f24;
}
.vs-phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 18px;
  background: #0d0f12;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.vs-phone__screen {
  background: #ECE5DD;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.vs-phone__caption {
  font-size: 13px;
  color: var(--vs-graphite);
  opacity: 0.65;
  margin: 0;
  text-align: center;
  max-width: 280px;
}

/* Chat header (WhatsApp-like) */
.vs-chat__header {
  background: #0B4F5A;
  color: var(--vs-white);
  padding: 36px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-chat__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vs-pulse);
  color: var(--vs-teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.vs-chat__name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.vs-chat__status {
  font-size: 11px;
  margin: 0;
  opacity: 0.75;
}
.vs-chat__body {
  background: #ECE5DD;
  background-image:
    radial-gradient(rgba(11, 79, 90, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  padding: var(--vs-space-2) var(--vs-space-2) var(--vs-space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.vs-chat__day {
  align-self: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 10px;
  color: var(--vs-graphite);
  opacity: 0.7;
  margin-bottom: 4px;
}
.vs-bubble {
  max-width: 78%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  word-wrap: break-word;
  opacity: 0;
  transform: translateY(8px);
}
.vs-bubble--in {
  align-self: flex-start;
  background: var(--vs-white);
  color: var(--vs-graphite);
  border-bottom-left-radius: 4px;
}
.vs-bubble--out {
  align-self: flex-end;
  background: #DCF8C6;
  color: var(--vs-graphite);
  border-bottom-right-radius: 4px;
}
.vs-bubble__meta {
  display: inline-block;
  background: rgba(11, 79, 90, 0.08);
  border-radius: 8px;
  padding: 4px 8px;
  margin: 4px 0;
  font-size: 12px;
  color: var(--vs-teal);
  line-height: 1.4;
}

/* Typing indicator */
.vs-typing {
  align-self: flex-start;
  background: var(--vs-white);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  display: inline-flex;
  gap: 4px;
  opacity: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.vs-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vs-teal);
  opacity: 0.5;
  animation: vs-blink 1.4s infinite;
}
.vs-typing span:nth-child(2) { animation-delay: 0.2s; }
.vs-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes vs-blink {
  0%, 80%, 100% { transform: scale(0.85); opacity: 0.4; }
  40% { transform: scale(1.1); opacity: 0.95; }
}

/* Sequência de animação — bubbles entram em cadência */
@keyframes vs-bubble-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vs-bubble-stay {
  from, to { opacity: 1; transform: translateY(0); }
}
.vs-anim-1 { animation: vs-bubble-in 0.4s ease-out 0.6s forwards; }
.vs-anim-2 { animation: vs-bubble-stay 1.6s ease-out 1.4s forwards; opacity: 0; }
.vs-anim-3 { animation: vs-bubble-in 0.4s ease-out 3.2s forwards; }
.vs-anim-4 { animation: vs-bubble-in 0.4s ease-out 4.4s forwards; }
.vs-anim-5 { animation: vs-bubble-stay 1.2s ease-out 5.2s forwards; opacity: 0; }
.vs-anim-6 { animation: vs-bubble-in 0.4s ease-out 6.6s forwards; }

/* ============================================================
   6 Módulos (substitui o grid antigo de pilares na home)
   ============================================================ */
.vs-modules {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-3);
  margin-top: var(--vs-space-4);
}
@media (min-width: 640px) {
  .vs-modules { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .vs-modules { grid-template-columns: repeat(3, 1fr); }
}
.vs-module {
  background: var(--vs-white);
  border: 1px solid var(--vs-mist);
  border-radius: var(--vs-radius);
  padding: var(--vs-space-4);
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.vs-module:hover {
  transform: translateY(-2px);
  box-shadow: var(--vs-shadow-md);
}
.vs-module__num {
  font-family: var(--vs-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--vs-pulse);
  letter-spacing: 0.08em;
  margin-bottom: var(--vs-space-1);
}
.vs-module h3 {
  font-size: 20px;
  margin: 0 0 var(--vs-space-1);
  color: var(--vs-teal);
}
.vs-module p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--vs-graphite);
}

/* ============================================================
   4 S em banda estreita (substitui cards na home)
   ============================================================ */
.vs-pillars-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vs-space-2);
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .vs-pillars-band { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .vs-pillars-band { grid-template-columns: repeat(4, 1fr); }
}
.vs-pillar {
  padding: var(--vs-space-3);
  border-left: 3px solid var(--vs-pulse);
  background: var(--vs-white);
  border-radius: 0 var(--vs-radius) var(--vs-radius) 0;
}
.vs-pillar strong {
  display: block;
  font-family: var(--vs-font-display);
  font-size: 18px;
  color: var(--vs-teal);
  margin-bottom: 4px;
}
.vs-pillar span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--vs-graphite);
}
.vs-band-link {
  text-align: center;
  margin-top: var(--vs-space-4);
}

/* Responsivo do hero da home */
@media (max-width: 899px) {
  .vs-hero--home { padding-top: var(--vs-space-6); padding-bottom: var(--vs-space-8); }
  .vs-phone { margin-top: var(--vs-space-4); }
  .vs-hero--home .vs-hero__sub { max-width: none; }
}
