/* ============================================================
   VinfoSmart Child Theme — main.css v2.0
   ============================================================ */

/* ── 1. Reset & Variáveis ─────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vs-p:    #0d47a1;
  --vs-pl:   #1976d2;
  --vs-pd:   #002171;
  --vs-s:    #00acc1;
  --vs-g:    #4caf50;
  --vs-wa:   #25d366;
  --vs-bg:   #f5f7fa;
  --vs-w:    #ffffff;
  --vs-t1:   #111827;
  --vs-t2:   #616161;
  --vs-t3:   #9e9e9e;
  --vs-b1:   #e0e0e0;
  --vs-b2:   #f0f4f8;
  --vs-r:    16px;
  --vs-ease: cubic-bezier(.16,1,.3,1);
  --vs-max:  1280px;
  --vs-gap:  clamp(16px, 3vw, 28px);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vs-t1);
  background: var(--vs-w);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Espaço para topbar + header fixos */
  padding-top: 97px;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; transition: color .2s; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--vs-bg); }
::-webkit-scrollbar-thumb { background: var(--vs-p); border-radius: 3px; }

/* ── 2. Utilities ─────────────────────────────────────────── */
.vs-wrap {
  width: 100%;
  max-width: var(--vs-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.vs-grad {
  background: linear-gradient(135deg, var(--vs-p), var(--vs-s));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 12px;
}
.vs-badge-blue  { background: rgba(13,71,161,.09); color: var(--vs-p); }
.vs-badge-green { background: rgba(76,175,80,.1);  color: var(--vs-g); }
.vs-badge-cyan  { background: rgba(0,172,193,.1);  color: var(--vs-s); }

/* Buttons */
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  transition: all .3s var(--vs-ease);
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
}
.vs-btn-primary {
  background: linear-gradient(135deg, var(--vs-p), var(--vs-pl));
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,71,161,.3);
}
.vs-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,71,161,.4); color: #fff; }
.vs-btn-outline {
  background: transparent;
  color: var(--vs-p);
  border: 2px solid var(--vs-p);
}
.vs-btn-outline:hover { background: var(--vs-p); color: #fff; transform: translateY(-2px); }
.vs-btn-wa {
  background: var(--vs-wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.vs-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.45); color: #fff; }
.vs-btn-lg { padding: 16px 34px; font-size: .95rem; }
.vs-btn-sm { padding: 9px 18px; font-size: .8rem; }
.vs-btn-full { width: 100%; }

/* Animate on scroll */
.vs-ao {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--vs-ease), transform .8s var(--vs-ease);
}
.vs-ao.vs-visible { opacity: 1; transform: none; }
.vs-ao-d2 { transition-delay: .15s; }
.vs-ao-d3 { transition-delay: .3s; }

/* Section header */
.vs-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}
.vs-sec-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-top: 8px; }
.vs-sec-head p { color: var(--vs-t2); max-width: 500px; font-size: .95rem; }
.vs-sec-head-center { flex-direction: column; align-items: center; text-align: center; }
.vs-sec-head-center p { margin: 0 auto; }

/* ── 3. Topbar ────────────────────────────────────────────── */
#vs-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--vs-p);
  color: #fff;
  font-size: .72rem;
  height: 34px;
}
.vs-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.vs-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
}
.vs-dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.vs-topbar-right { display: flex; align-items: center; gap: 14px; }
.vs-topbar-link {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.82);
  transition: color .2s;
  font-size: .72rem;
}
.vs-topbar-link:hover { color: #fff; }
.vs-topbar-socials { display: flex; gap: 8px; }
.vs-topbar-socials a {
  color: rgba(255,255,255,.7);
  display: flex; align-items: center;
  transition: color .2s;
}
.vs-topbar-socials a:hover { color: #fff; }

/* ── 4. Header / Navbar ───────────────────────────────────── */
#vs-header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: top .3s var(--vs-ease), box-shadow .3s;
}
#vs-header.vs-scrolled { top: 0; box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.vs-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 63px;
}
.vs-logo img { height: 42px; width: auto; display: block; }
.vs-logo .custom-logo { height: 42px; width: auto; }

.vs-nav-links { margin-left: auto; }
.vs-nav-links ul { display: flex; gap: clamp(18px,2.5vw,32px); }
.vs-nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--vs-t2);
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}
.vs-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--vs-p), var(--vs-s));
  transition: width .3s var(--vs-ease);
}
.vs-nav-links a:hover, .vs-nav-links .current-menu-item a { color: var(--vs-p); }
.vs-nav-links a:hover::after, .vs-nav-links .current-menu-item a::after { width: 100%; }

.vs-header-ctas { display: flex; gap: 10px; flex-shrink: 0; }
.vs-header-ctas .vs-btn { padding: 9px 18px; font-size: .8rem; }

/* Hamburger */
.vs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.vs-hamburger:hover { background: var(--vs-b2); }
.vs-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--vs-t1);
  border-radius: 2px;
  transition: all .3s var(--vs-ease);
}
.vs-hamburger.vs-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vs-hamburger.vs-open span:nth-child(2) { opacity: 0; }
.vs-hamburger.vs-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.vs-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  border-top: 1px solid var(--vs-b1);
}
.vs-mobile-menu.vs-open { display: flex; }
.vs-mobile-menu nav ul { display: flex; flex-direction: column; }
.vs-mobile-menu nav a {
  display: block;
  padding: 14px clamp(16px,4vw,40px);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--vs-b2);
  transition: color .2s, background .2s;
}
.vs-mobile-menu nav a:hover { color: var(--vs-p); background: var(--vs-b2); }
.vs-mobile-ctas {
  display: flex;
  gap: 10px;
  padding: 16px clamp(16px,4vw,40px);
  flex-wrap: wrap;
}
.vs-mobile-ctas .vs-btn { flex: 1; min-width: 140px; }

/* ── 5. Page Wrap ─────────────────────────────────────────── */
#vs-page-wrap { min-height: 60vh; }

/* ── 6. Hero ──────────────────────────────────────────────── */
.vs-hero {
  background: linear-gradient(180deg, var(--vs-bg) 0%, #fff 100%);
  padding: clamp(60px,8vw,120px) 0 0;
  position: relative;
  overflow: hidden;
}
.vs-hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.vs-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.vs-blob-1 { width: 480px; height: 480px; top: 5%; left: 10%; background: rgba(13,71,161,.05); }
.vs-blob-2 { width: 360px; height: 360px; bottom: 10%; right: 8%; background: rgba(0,172,193,.05); }

.vs-hero-inner { text-align: center; position: relative; z-index: 1; }
.vs-hero-text { margin-bottom: clamp(48px,6vw,80px); }
.vs-hero-text h1 {
  font-size: clamp(2.2rem,5.5vw,3.8rem);
  margin: 16px 0 18px;
}
.vs-hero-sub {
  font-size: clamp(.95rem,1.5vw,1.1rem);
  color: var(--vs-t2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.vs-hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Services grid */
.vs-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vs-gap);
  position: relative;
  z-index: 1;
}

.vs-svc-card {
  display: block;
  position: relative;
  border-radius: var(--vs-r);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform .4s var(--vs-ease), box-shadow .4s var(--vs-ease);
}
.vs-svc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(13,71,161,.18); }
.vs-svc-img { aspect-ratio: 4/3; overflow: hidden; }
.vs-svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--vs-ease); }
.vs-svc-card:hover .vs-svc-img img { transform: scale(1.08); }
.vs-svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.vs-svc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
}
.vs-svc-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  color: #fff;
  margin-bottom: 4px;
}
.vs-svc-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--vs-s);
  font-size: .75rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: all .3s;
}
.vs-svc-card:hover .vs-svc-cta { opacity: 1; transform: none; }

/* Trust row */
.vs-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-bottom: 64px;
}
.vs-trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--vs-r);
  padding: 16px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border: 1px solid var(--vs-b2);
}
.vs-trust-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.vs-trust-label {
  font-weight: 600;
  font-size: .875rem;
  display: flex;
  flex-direction: column;
}
.vs-trust-label span { font-weight: 400; font-size: .75rem; color: var(--vs-t3); }

/* ── 7. Blog Section ──────────────────────────────────────── */
.vs-blog-section { padding: clamp(60px,7vw,90px) 0; background: #fff; overflow: hidden; }

.vs-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.vs-marquee-wrap::before,.vs-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px,8vw,120px);
  z-index: 5;
  pointer-events: none;
}
.vs-marquee-wrap::before { left: 0; background: linear-gradient(to right,#fff,transparent); }
.vs-marquee-wrap::after  { right: 0; background: linear-gradient(to left,#fff,transparent); }
.vs-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: vs-marquee 38s linear infinite;
  padding: 0 22px;
}
.vs-marquee-track:hover { animation-play-state: paused; }
@keyframes vs-marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.vs-blog-card {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 340px);
  background: #fff;
  border-radius: var(--vs-r);
  overflow: hidden;
  border: 1px solid var(--vs-b2);
  transition: all .4s var(--vs-ease);
}
.vs-blog-card:hover {
  box-shadow: 0 14px 40px rgba(13,71,161,.12);
  border-color: rgba(13,71,161,.18);
  transform: translateY(-4px);
}
.vs-blog-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.vs-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--vs-ease); }
.vs-blog-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,.4),transparent);
}
.vs-blog-card:hover .vs-blog-img img { transform: scale(1.06); }
.vs-blog-body { padding: 18px; }
.vs-blog-meta { display: flex; gap: 14px; font-size: .7rem; color: var(--vs-t3); margin-bottom: 9px; }
.vs-blog-meta span { display: flex; align-items: center; gap: 4px; }
.vs-blog-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
  line-height: 1.4;
}
.vs-blog-title a:hover,.vs-blog-card:hover .vs-blog-title a { color: var(--vs-p); }
.vs-blog-exc {
  font-size: .78rem;
  color: var(--vs-t2);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vs-blog-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--vs-p);
  font-size: .8rem;
  font-weight: 600;
  transition: gap .2s;
}
.vs-blog-link:hover { gap: 10px; color: var(--vs-p); }

/* Blog full cards (archive) */
.vs-blog-card-full { width: 100%; flex-shrink: initial; }
.vs-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.vs-pagination ul { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.vs-pagination li a, .vs-pagination li span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--vs-b1);
  font-weight: 600;
  font-size: .875rem;
  transition: all .2s;
}
.vs-pagination li.active span,
.vs-pagination li a:hover { background: var(--vs-p); color: #fff; border-color: var(--vs-p); }

/* ── 8. About ─────────────────────────────────────────────── */
.vs-about-section {
  padding: clamp(60px,7vw,90px) 0;
  background: var(--vs-bg);
  position: relative;
  overflow: hidden;
}
.vs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: center;
  margin-bottom: clamp(48px,6vw,80px);
}
.vs-about-text h2 { font-size: clamp(1.6rem,3.5vw,2.3rem); margin: 14px 0 20px; }
.vs-about-text p { color: var(--vs-t2); font-size: .95rem; line-height: 1.75; margin-bottom: 14px; }
.vs-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.vs-stat {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.vs-stat span { display: block; font-family: 'Poppins',sans-serif; font-weight: 800; font-size: 1.7rem; }
.vs-stat small { font-size: .72rem; color: var(--vs-t3); }

.vs-about-img-wrap { position: relative; }
.vs-about-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg,rgba(13,71,161,.07),rgba(0,172,193,.07));
  border-radius: 24px;
  filter: blur(20px);
}
.vs-about-img { position: relative; border-radius: var(--vs-r); overflow: hidden; }
.vs-about-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.vs-about-badge {
  position: absolute;
  bottom: 20px; left: 16px; right: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vs-about-badge-icon {
  width: 44px; height: 44px;
  background: rgba(76,175,80,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.vs-about-badge p { font-weight: 700; font-size: .875rem; }
.vs-about-badge small { font-size: .72rem; color: var(--vs-t3); }

/* Diffs */
.vs-diffs h3 { font-size: clamp(1.4rem,3vw,2rem); text-align: center; margin-bottom: 36px; }
.vs-diffs-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.vs-diff-card {
  background: #fff;
  border-radius: var(--vs-r);
  padding: 22px;
  border: 1px solid var(--vs-b2);
  transition: all .4s var(--vs-ease);
}
.vs-diff-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(13,71,161,.1); border-color: rgba(13,71,161,.18); }
.vs-diff-icon { font-size: 1.5rem; margin-bottom: 12px; }
.vs-diff-card h4 { font-size: .85rem; font-weight: 600; margin-bottom: 5px; font-family: 'Poppins',sans-serif; }
.vs-diff-card p { font-size: .75rem; color: var(--vs-t3); }
.vs-diff-note { text-align: center; font-size: .78rem; color: var(--vs-t3); margin-top: 20px; }

/* ── 9. Location ──────────────────────────────────────────── */
.vs-local-section {
  padding: clamp(60px,7vw,90px) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.vs-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,71,161,.025) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(13,71,161,.025) 1px,transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.vs-loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vs-loc-card {
  background: #fff;
  border-radius: var(--vs-r);
  padding: clamp(22px,3vw,32px);
  border: 1px solid var(--vs-b2);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: all .4s var(--vs-ease);
}
.vs-loc-card:hover { box-shadow: 0 12px 40px rgba(13,71,161,.12); }
.vs-loc-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.vs-loc-pin { font-size: 1.8rem; flex-shrink: 0; }
.vs-loc-head h3 { font-size: 1.15rem; margin-bottom: 3px; }
.vs-loc-unit { font-size: .78rem; color: var(--vs-s); font-weight: 500; }
.vs-loc-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.vs-loc-info p { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--vs-t2); }
.vs-loc-info svg { flex-shrink: 0; margin-top: 2px; color: var(--vs-t3); }
.vs-loc-info a { color: var(--vs-p); font-weight: 600; }
.vs-loc-hours {
  background: var(--vs-bg);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.vs-loc-hours strong { display: block; font-size: .85rem; margin-bottom: 10px; }
.vs-loc-hours div { display: flex; justify-content: space-between; font-size: .8rem; margin-bottom: 5px; }
.vs-loc-hours div span:first-child { color: var(--vs-t3); }
.vs-closed { color: var(--vs-t3) !important; }
.vs-loc-ctas { display: flex; gap: 10px; }
.vs-loc-ctas .vs-btn { flex: 1; font-size: .82rem; padding: 12px 14px; }

/* CTA block */
.vs-cta-block {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--vs-p), var(--vs-pl));
  border-radius: var(--vs-r);
  padding: clamp(36px,5vw,56px) clamp(24px,4vw,40px);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.vs-cta-block h3 { font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.vs-cta-block p { color: rgba(255,255,255,.82); margin-bottom: 26px; font-size: .95rem; }

/* ── 10. Page Template (serviços, páginas) ────────────────── */
.vs-page-hero {
  padding: clamp(48px,6vw,80px) 0 clamp(32px,4vw,56px);
  background: linear-gradient(180deg, var(--vs-bg) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.vs-page-hero-inner { position: relative; z-index: 1; }
.vs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--vs-t3);
  margin-bottom: 16px;
}
.vs-breadcrumb a { color: var(--vs-p); transition: opacity .2s; }
.vs-breadcrumb a:hover { opacity: .75; }
.vs-page-title {
  font-size: clamp(1.8rem,4vw,2.8rem);
  margin-bottom: 28px;
}
.vs-page-hero-img {
  border-radius: var(--vs-r);
  overflow: hidden;
  max-height: 380px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.vs-page-hero-img img { width: 100%; height: 380px; object-fit: cover; }

.vs-page-content-section { padding: clamp(40px,5vw,64px) 0 80px; }
.vs-page-content-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(32px,4vw,56px);
  align-items: start;
}
.vs-page-content { min-width: 0; }
.vs-entry-content h1,.vs-entry-content h2 {
  font-size: clamp(1.4rem,2.8vw,1.9rem);
  margin: 32px 0 16px;
}
.vs-entry-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.vs-entry-content p { color: var(--vs-t2); font-size: .95rem; line-height: 1.8; margin-bottom: 16px; }
.vs-entry-content img { border-radius: var(--vs-r); margin: 24px 0; box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.vs-entry-content ul,.vs-entry-content ol { margin: 0 0 16px 24px; color: var(--vs-t2); font-size: .95rem; }
.vs-entry-content ul { list-style: disc; }
.vs-entry-content ol { list-style: decimal; }
.vs-entry-content li { margin-bottom: 6px; line-height: 1.7; }
.vs-entry-content a { color: var(--vs-p); text-decoration: underline; }
.vs-entry-content strong { color: var(--vs-t1); }
.vs-entry-content blockquote {
  border-left: 4px solid var(--vs-p);
  padding: 16px 20px;
  background: var(--vs-b2);
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  color: var(--vs-t2);
  font-style: italic;
}

/* Sidebar */
.vs-page-sidebar { position: sticky; top: 110px; }
.vs-sidebar-cta {
  background: #fff;
  border: 1px solid var(--vs-b2);
  border-radius: var(--vs-r);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  margin-bottom: 20px;
}
.vs-sidebar-cta h3 { font-size: 1rem; margin-bottom: 10px; }
.vs-sidebar-cta p { font-size: .85rem; color: var(--vs-t2); margin-bottom: 16px; line-height: 1.6; }
.vs-sidebar-cta .vs-btn { margin-bottom: 10px; }
.vs-sidebar-info { margin-top: 16px; border-top: 1px solid var(--vs-b2); padding-top: 14px; }
.vs-sidebar-info p { font-size: .8rem; color: var(--vs-t3); margin-bottom: 7px; display: flex; align-items: center; gap: 6px; }

.vs-sidebar-services {
  background: #fff;
  border: 1px solid var(--vs-b2);
  border-radius: var(--vs-r);
  padding: 20px;
  margin-bottom: 20px;
}
.vs-sidebar-services h4 { font-size: .9rem; margin-bottom: 14px; }
.vs-sidebar-services ul { display: flex; flex-direction: column; gap: 4px; }
.vs-sidebar-services a {
  display: block;
  font-size: .85rem;
  color: var(--vs-t2);
  padding: 8px 10px;
  border-radius: 8px;
  transition: all .2s;
}
.vs-sidebar-services a:hover { background: var(--vs-b2); color: var(--vs-p); }

/* ── 11. Single Post ──────────────────────────────────────── */
.vs-post-hero { padding: clamp(48px,6vw,80px) 0 clamp(28px,3vw,44px); background: var(--vs-bg); position: relative; overflow: hidden; }
.vs-post-hero-inner { position: relative; z-index: 1; }
.vs-post-cats { margin-bottom: 12px; }
.vs-post-cats a { background: rgba(13,71,161,.09); color: var(--vs-p); padding: 4px 14px; border-radius: 99px; font-size: .75rem; font-weight: 600; }
.vs-post-hero h1 { font-size: clamp(1.7rem,4vw,2.8rem); margin-bottom: 16px; max-width: 780px; }
.vs-post-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .82rem; color: var(--vs-t3); }
.vs-post-meta span { display: flex; align-items: center; gap: 6px; }
.vs-post-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(32px,4vw,56px);
  align-items: start;
  padding: clamp(40px,5vw,64px) 0 80px;
}
.vs-post-featured-img {
  border-radius: var(--vs-r);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
}
.vs-post-featured-img img { width: 100%; max-height: 400px; object-fit: cover; }
.vs-post-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.vs-post-tags a { background: var(--vs-b2); color: var(--vs-t2); padding: 5px 14px; border-radius: 99px; font-size: .78rem; transition: all .2s; }
.vs-post-tags a:hover { background: var(--vs-p); color: #fff; }
.vs-post-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--vs-b2);
}
.vs-post-nav-link {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--vs-b2);
  border-radius: 12px;
  transition: all .3s;
}
.vs-post-nav-link:hover { background: var(--vs-p); color: #fff; }
.vs-post-nav-link span { font-size: .75rem; color: var(--vs-t3); }
.vs-post-nav-link:hover span { color: rgba(255,255,255,.7); }
.vs-post-nav-link strong { font-size: .875rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vs-post-nav-next { text-align: right; }

/* Recent posts sidebar */
.vs-sidebar-recent { background: #fff; border: 1px solid var(--vs-b2); border-radius: var(--vs-r); padding: 20px; margin-bottom: 20px; }
.vs-sidebar-recent h4 { font-size: .9rem; margin-bottom: 14px; }
.vs-sidebar-post { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--vs-b2); transition: opacity .2s; }
.vs-sidebar-post:last-child { border: none; }
.vs-sidebar-post:hover { opacity: .75; }
.vs-sp-img { width: 64px; height: 48px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.vs-sp-img img { width: 100%; height: 100%; object-fit: cover; }
.vs-sp-info p { font-size: .82rem; font-weight: 500; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vs-sp-info small { font-size: .72rem; color: var(--vs-t3); }

/* Archive hero */
.vs-archive-hero { padding: clamp(60px,7vw,90px) 0 clamp(32px,4vw,48px); background: var(--vs-bg); position: relative; overflow: hidden; }
.vs-archive-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); margin: 12px 0 14px; }
.vs-archive-hero p { color: var(--vs-t2); max-width: 520px; }
.vs-archive-wrap { padding-top: clamp(40px,5vw,64px); }

/* ── 12. WhatsApp Float ───────────────────────────────────── */
#vs-wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: var(--vs-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  animation: vs-wa-pulse 2.2s ease-in-out infinite;
  transition: transform .3s var(--vs-ease);
}
#vs-wa-float:hover { transform: scale(1.1); }
#vs-wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes vs-wa-pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  55%      { box-shadow: 0 4px 18px rgba(37,211,102,.45), 0 0 0 13px rgba(37,211,102,0); }
}

/* ── 13. Footer ───────────────────────────────────────────── */
#vs-footer { background: #0f172a; color: #fff; margin-top: auto; }
.vs-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(24px,4vw,48px);
  padding: clamp(40px,6vw,64px) 0;
}
.vs-footer-logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px; }
.vs-footer-brand p { font-size: .875rem; color: #94a3b8; line-height: 1.7; margin-bottom: 20px; }
.vs-footer-socials { display: flex; gap: 10px; }
.vs-footer-socials a {
  width: 38px; height: 38px;
  background: #1e293b;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  transition: all .3s;
}
.vs-footer-socials a:hover { color: #fff; }
.vs-social-fb:hover { background: #1877f2 !important; }
.vs-social-ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important; }
.vs-social-yt:hover { background: #ef4444 !important; }
.vs-social-g:hover  { background: #fff !important; }
.vs-footer-col h4 { font-family: 'Poppins',sans-serif; font-size: .9rem; color: #fff; margin-bottom: 18px; }
.vs-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.vs-footer-col ul a { font-size: .85rem; color: #94a3b8; transition: color .2s; }
.vs-footer-col ul a:hover { color: #60a5fa; }
.vs-footer-contact { display: flex; flex-direction: column; gap: 14px; }
.vs-fc-unit { display: flex; flex-direction: column; gap: 5px; }
.vs-fc-name { font-weight: 700; font-size: .85rem; color: #e2e8f0; }
.vs-fc-unit a { font-size: .8rem; color: #94a3b8; display: flex; align-items: flex-start; gap: 6px; transition: color .2s; }
.vs-fc-unit a:hover { color: #60a5fa; }
.vs-fc-unit svg { flex-shrink: 0; margin-top: 2px; color: #4caf50; }
.vs-fc-hours { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: #94a3b8; }
.vs-fc-hours svg { color: #4caf50; flex-shrink: 0; }
.vs-footer-bar {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.vs-footer-bar p,.vs-footer-bar a { font-size: .78rem; color: #64748b; }
.vs-footer-bar a:hover { color: #60a5fa; }

/* ── 14. Kava Overrides — apagar elementos do pai ─────────── */
.site-header,.header-container,
.main-navigation,.nav-menu,
.site-footer,.footer-area,
.footer-widgets,.footer-copyright,
.cherry-breadcrumbs,
.jet-breadcrumbs { display: none !important; }

/* Remove padding/margin do wrapper do Kava */
.site,.site-content,.content-area,
#primary,.hentry { padding: 0 !important; margin: 0 !important; }

/* Remove títulos de página duplicados do Kava */
.page-title-section,
.entry-header .entry-title:first-of-type,
.single .entry-header { display: none !important; }

/* ── 15. Responsive ───────────────────────────────────────── */
@media (max-width: 1199px) {
  .vs-services-grid { grid-template-columns: repeat(2,1fr); }
  .vs-diffs-grid    { grid-template-columns: repeat(2,1fr); }
  .vs-footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1023px) {
  body { padding-top: 87px; }
  #vs-topbar { height: 30px; }
  #vs-header { top: 30px; }
  #vs-header.vs-scrolled { top: 0; }
  .vs-hamburger { display: flex; }
  .vs-nav-links,.vs-header-ctas { display: none; }
  .vs-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .vs-loc-grid   { grid-template-columns: 1fr; }
  .vs-page-content-wrap { grid-template-columns: 1fr; }
  .vs-post-wrap  { grid-template-columns: 1fr; }
  .vs-page-sidebar { position: static; }
}

@media (max-width: 767px) {
  .vs-services-grid { grid-template-columns: 1fr 1fr; }
  .vs-trust-row     { flex-direction: column; align-items: stretch; }
  .vs-trust-card    { justify-content: center; }
  .vs-stats-row     { grid-template-columns: 1fr 1fr; }
  .vs-footer-grid   { grid-template-columns: 1fr; }
  .vs-topbar-left   { font-size: .65rem; }
  .vs-topbar-right  { gap: 8px; }
  .vs-topbar-socials { display: none; }
}

@media (max-width: 479px) {
  .vs-services-grid { grid-template-columns: 1fr; }
  .vs-hero-ctas     { flex-direction: column; align-items: stretch; }
  .vs-hero-ctas .vs-btn { justify-content: center; }
  .vs-loc-ctas      { flex-direction: column; }
  .vs-diffs-grid    { grid-template-columns: 1fr; }
  .vs-post-nav      { flex-direction: column; }
  .vs-post-nav-next { text-align: left; }
}
