:root { color-scheme: light; }
* { box-sizing: border-box; }
body { margin:0; font-family: var(--font-body); color:var(--text); background:var(--background); line-height:1.6; }
a { color:inherit; text-decoration:none; }
a:hover { color:var(--accent); }
.container { width:min(var(--container-max), calc(100% - 32px)); margin-inline:auto; }
.site-header { border-bottom:1px solid var(--line); background:var(--background); position:sticky; top:0; z-index:10; }
.header-inner { display:flex; justify-content:space-between; align-items:center; padding:16px 0; }
.logo { font-weight:800; font-size:1.35rem; color:var(--brand); }
.lang-nav { display:flex; gap:12px; font-size:.9rem; }
.main-content { padding:32px 0; }
.category-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:14px; margin:24px 0; }
.category-card { border:1px solid var(--line); border-radius:calc(var(--radius) - 2px); padding:18px; font-weight:700; background:var(--surface); }
.article-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.article-card { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:white; box-shadow:var(--card-shadow); }
.article-card img { width:100%; height:180px; object-fit:cover; display:block; }
.article-card h2 { font-size:1.05rem; padding:16px 16px 0; margin:0; }
.article-card p { color:var(--muted); padding:0 16px 16px; margin:8px 0 0; }
.article-detail, .page-detail { max-width:var(--content-max); margin-inline:auto; }
.breadcrumb { color:var(--muted); font-size:.92rem; }
.article-detail h1, .page-detail h1 { font-size:clamp(2rem, 4vw, 3.2rem); line-height:1.1; }
.hero { width:100%; border-radius:calc(var(--radius) + 2px); margin:20px 0; }
.article-body img { max-width:100%; height:auto; border-radius:14px; }
.article-body table { width:100%; border-collapse:collapse; overflow:auto; display:block; }
.article-body td, .article-body th { border:1px solid var(--line); padding:8px; }
.banner-strip { margin:24px 0; display:grid; gap:14px; }
.affiliate-banner { display:flex; align-items:center; gap:16px; border:1px solid var(--line); border-radius:calc(var(--radius) + 2px); padding:12px; background:var(--surface); overflow:hidden; }
.affiliate-banner img { width:220px; height:90px; object-fit:cover; border-radius:14px; display:block; }
.banner-copy { display:flex; flex-direction:column; gap:4px; }
.banner-copy small { color:var(--muted); }
.banner-copy em { display:inline-block; font-style:normal; color:white; background:var(--accent); padding:6px 10px; border-radius:var(--button-radius); width:max-content; margin-top:4px; }
.site-footer { border-top:1px solid var(--line); color:var(--muted); padding:28px 0; font-size:.92rem; }
@media (max-width:720px) { .affiliate-banner { flex-direction:column; align-items:flex-start; } .affiliate-banner img { width:100%; height:auto; } }

.logo {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
.site-logo-img {
    display: block;
    max-height: 46px;
    width: auto;
}
.site-logo-text {
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  text-decoration: none;
}
.read-more::after {
  content: "→";
}
.article-teaser {
  color: #4b5563;
}
.article-body hr.vv-read-more {
  display: none;
}


.article-meta {
  display:flex;
  flex-wrap:wrap;
  gap:.6rem 1rem;
  align-items:center;
  color:var(--muted);
  font-size:.95rem;
  margin: -0.25rem 0 1.25rem;
}
.article-meta-item {
  display:inline-flex;
  align-items:center;
  gap:.25rem;
}
.article-meta-label {
  color:#4b5563;
  font-weight:700;
}
.article-meta a {
  color:var(--accent);
  font-weight:700;
}
.article-author small {
  color:var(--muted);
  margin-left:.25rem;
}
.article-card-meta {
  display:flex;
  flex-wrap:wrap;
  gap:.25rem;
  color:var(--muted);
  font-size:.82rem;
  padding:8px 16px 0;
}

/* Sumário automático e blocos editoriais profissionais */
.article-toc {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}
.article-toc strong { display: block; margin-bottom: .6rem; }
.article-toc ol { margin: 0; padding-left: 1.25rem; }
.article-toc li { margin: .35rem 0; }
.article-toc .toc-h3 { margin-left: 1rem; }
.article-toc .toc-h4 { margin-left: 2rem; }
.article-toc .toc-h5 { margin-left: 3rem; font-size: .95em; }
.article-toc .toc-h6 { margin-left: 4rem; font-size: .9em; }
.vv-comparison-table { overflow-x: auto; }
.vv-product-card, .vv-review-box, .vv-affiliate-cta, .vv-summary-box, .vv-faq-block {
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  padding: 1rem;
  margin: 1.2rem 0;
  background: #f8fafc;
}
.vv-affiliate-cta { background: #eff6ff; border-color: #bfdbfe; }
.vv-cta-button { display: inline-block; padding: .72rem 1rem; border-radius: 10px; background: #111827; color: #fff; text-decoration: none; font-weight: 700; }
.vv-pros-cons { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 760px) { .vv-pros-cons { grid-template-columns: 1fr; } }

/* Comparador de produtos */
.comparison-detail .comparison-summary {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 1.25rem;
}
.comparison-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0;
}
.comparison-product-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.25rem;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}
.comparison-product-card.is-winner {
    border-color: #111827;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .12);
}
.comparison-product-card img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    margin-bottom: .75rem;
}
.comparison-badge,
.comparison-label {
    display: inline-block;
    margin: 0 .35rem .6rem 0;
    padding: .28rem .55rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    background: #111827;
    color: #fff;
}
.comparison-label { background: #eef2ff; color: #3730a3; }
.table-responsive { overflow-x: auto; }
.vv-comparison-matrix th,
.vv-comparison-matrix td { vertical-align: top; }
.comparison-pros-cons-item { margin: 1.5rem 0; }
.rating { color: #111827; }
.muted { color: #6b7280; }
.vv-comparison-embed,
.vv-product-card {
    border: 1px solid #dbeafe;
    background: #eff6ff;
    border-radius: 16px;
    padding: 1rem;
    margin: 1.25rem 0;
}
.vv-product-card img { max-width: 240px; max-height: 180px; object-fit: contain; display: block; margin-bottom: .75rem; }


/* Menus configuráveis */
.menu-container { padding-bottom: .85rem; }
.vv-menu-list,
.vv-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vv-menu-header .vv-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .9rem;
  align-items: center;
}
.vv-menu-item { position: relative; }
.vv-menu-item > a,
.vv-submenu-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: .45rem .65rem;
  border-radius: 10px;
  color: #111827;
  font-weight: 650;
}
.vv-menu-item > a:hover,
.vv-submenu-item > a:hover { background: #f1f5f9; color: var(--accent); }
.vv-menu-item.is-button > a,
.vv-submenu-item.is-button > a {
  background: #111827;
  color: #fff;
  padding-inline: .9rem;
}
.vv-menu-item.has-children > a::after {
  content: "▾";
  font-size: .75rem;
  margin-left: .35rem;
}
.vv-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 220px;
  padding: .4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}
.vv-menu-item:hover > .vv-submenu,
.vv-menu-item:focus-within > .vv-submenu { display: block; }
.vv-submenu-item > a { width: 100%; justify-content: flex-start; }
.vv-menu-footer { margin-bottom: 1rem; }
.vv-menu-footer .vv-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
}
.vv-menu-footer a { color: #4b5563; }
@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; gap: .8rem; }
  .vv-menu-header .vv-menu-list { flex-direction: column; align-items: stretch; }
  .vv-menu-item > a { width: 100%; }
  .vv-submenu { position: static; display: block; box-shadow: none; border: 0; padding-left: 1rem; background: transparent; }
}


/* Galerias de imagens */
.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}
.article-gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.article-gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.article-gallery-item figcaption {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .7rem .85rem;
  color: #4b5563;
  font-size: .92rem;
}
.article-gallery-item figcaption span { color: #6b7280; font-size: .85rem; }
.product-gallery-thumbs {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin: .45rem 0 .7rem;
}
.product-gallery-thumbs img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}


/* Perfis de usuários/grupos com imagem */
.article-author {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.article-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,.08);
    background: #f3f4f6;
}

/* ============================================================
   Responsividade mobile first
   ============================================================ */
:root {
  --container-max: 1120px;
  --container-pad: clamp(16px, 4vw, 32px);
  --radius-lg: 20px;
  --shadow-soft: 0 10px 32px rgba(15, 23, 42, .06);
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { overflow-x: hidden; }
img, svg, video, canvas, iframe { max-width: 100%; }
img { height: auto; }
iframe { border: 0; }
.container { width: min(var(--container-max), calc(100% - (var(--container-pad) * 2))); }
.main-content { padding-block: clamp(20px, 4vw, 40px); }

/* Tipografia fluida */
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); line-height: 1.08; letter-spacing: -.035em; }
h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); line-height: 1.18; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); line-height: 1.25; }
p, li { overflow-wrap: anywhere; }

/* Cabeçalho e menu */
.site-header { backdrop-filter: saturate(180%) blur(10px); }
.header-inner { gap: 1rem; }
.lang-nav { margin-left: auto; flex-wrap: wrap; align-items: center; }
.lang-nav a { padding: .25rem .35rem; border-radius: 8px; }
.lang-nav a:hover { background: #f1f5f9; }
.vv-mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: .55rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 750;
  padding: .58rem .75rem;
  cursor: pointer;
}
.vv-mobile-menu-toggle:focus-visible,
.vv-menu a:focus-visible,
.lang-nav a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .25);
  outline-offset: 2px;
}
.vv-mobile-menu-icon,
.vv-mobile-menu-icon::before,
.vv-mobile-menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  content: "";
}
.vv-mobile-menu-icon { position: relative; }
.vv-mobile-menu-icon::before { position: absolute; top: -6px; left: 0; }
.vv-mobile-menu-icon::after { position: absolute; top: 6px; left: 0; }
.vv-mobile-menu-toggle[aria-expanded="true"] .vv-mobile-menu-icon { background: transparent; }
.vv-mobile-menu-toggle[aria-expanded="true"] .vv-mobile-menu-icon::before { top: 0; transform: rotate(45deg); }
.vv-mobile-menu-toggle[aria-expanded="true"] .vv-mobile-menu-icon::after { top: 0; transform: rotate(-45deg); }

/* Grids e cards */
.category-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); }
.article-grid, .vv-article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(16px, 2.5vw, 28px); }
.article-card, .vv-card { min-width: 0; }
.article-card img, .vv-card img { aspect-ratio: 16 / 9; height: auto; object-fit: cover; }
.article-teaser { padding: 0 16px 16px; }
.vv-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.vv-card h2, .vv-card p, .vv-card .vv-read-more-link { margin-inline: 16px; }
.vv-card .vv-read-more-link { display: inline-flex; margin-bottom: 16px; font-weight: 800; }

/* Artigo e páginas */
.article-detail, .page-detail, .comparison-detail { width: min(100%, 900px); margin-inline: auto; }
.article-detail > h1, .page-detail > h1, .comparison-detail > h1 { margin-bottom: .8rem; }
.hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: clamp(14px, 2vw, 22px); }
.article-body { font-size: clamp(1rem, 1.25vw, 1.08rem); }
.article-body > * { max-width: 100%; }
.article-body pre { overflow-x: auto; white-space: pre; border-radius: 14px; padding: 1rem; background: #0f172a; color: #f8fafc; }
.article-body code { overflow-wrap: anywhere; }
.article-body iframe,
.article-body video,
.article-body .vv-video-embed,
.article-body .vv-embed-responsive {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
}
.article-body figure { margin-inline: 0; }
.article-body figcaption { color: var(--muted); font-size: .9rem; margin-top: .45rem; }
.article-body table { min-width: 640px; }
.article-body .table-responsive,
.table-responsive,
.vv-comparison-table { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Galerias */
.article-gallery,
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.article-gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.article-gallery-item img,
.product-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.article-gallery-item figcaption { padding: .65rem .8rem; color: var(--muted); font-size: .9rem; }
.article-gallery-item figcaption span { display: block; margin-top: .2rem; }

/* Banners e afiliados */
.banner-strip { margin-block: clamp(18px, 3vw, 30px); }
.affiliate-banner { min-width: 0; }
.affiliate-banner img { flex: 0 0 auto; }
.vv-affiliate-cta, .vv-product-card, .vv-review-box, .vv-summary-box, .vv-faq-block { overflow-wrap: anywhere; }
.vv-pros-cons { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* Comparações e produtos */
.comparison-products { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.comparison-product-card { min-width: 0; }
.comparison-product-card img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: contain; }
.vv-comparison-matrix { min-width: 720px; width: 100%; }
.product-gallery-thumbs { grid-template-columns: repeat(4, minmax(44px, 1fr)); gap: .45rem; margin: .65rem 0; }
.product-gallery-thumbs img { border-radius: 10px; aspect-ratio: 1 / 1; object-fit: cover; }

/* Busca */
.vv-search-form { display: flex; gap: .75rem; align-items: stretch; margin: 1rem 0 1.5rem; }
.vv-search-form input[type="search"] { flex: 1 1 auto; min-width: 0; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; font: inherit; }
.vv-search-form button { border: 0; border-radius: 12px; padding: .8rem 1rem; font: inherit; font-weight: 800; background: #111827; color: #fff; cursor: pointer; }

@media (max-width: 900px) {
  .header-inner { padding: 12px 0; }
  .site-logo-img { max-height: 40px; }
  .vv-mobile-menu-toggle { display: inline-flex; }
  .menu-container { display: none; padding-bottom: 1rem; }
  body.vv-menu-open .menu-container { display: block; }
  .vv-menu-header .vv-menu-list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .vv-menu-item > a, .vv-submenu-item > a { width: 100%; justify-content: space-between; padding: .65rem .8rem; }
  .vv-submenu { position: static; display: block; min-width: 0; box-shadow: none; border: 0; border-left: 2px solid #e5e7eb; border-radius: 0; padding: .2rem 0 .2rem .75rem; background: transparent; }
  .article-toc { max-height: 45vh; overflow: auto; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container-max)); }
  .header-inner { flex-wrap: wrap; }
  .lang-nav { order: 3; width: 100%; justify-content: flex-start; }
  .vv-mobile-menu-toggle { margin-left: auto; }
  .article-meta { gap: .35rem .75rem; font-size: .9rem; }
  .affiliate-banner { flex-direction: column; align-items: stretch; }
  .affiliate-banner img { width: 100%; max-height: none; aspect-ratio: 16 / 9; object-fit: cover; }
  .banner-copy em, .vv-cta-button { width: 100%; text-align: center; }
  .vv-search-form { flex-direction: column; }
  .article-toc .toc-h3,
  .article-toc .toc-h4,
  .article-toc .toc-h5,
  .article-toc .toc-h6 { margin-left: .75rem; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 22px, var(--container-max)); }
  .main-content { padding-block: 18px; }
  .category-card { padding: 14px; border-radius: 14px; }
  .article-card h2 { font-size: 1rem; }
  .article-card-meta { font-size: .78rem; }
  .hero { border-radius: 14px; }
  .article-gallery { grid-template-columns: 1fr; }
  .comparison-products { grid-template-columns: 1fr; }
  .site-footer { padding: 22px 0; }
}


/* Design configurável */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--brand); }
.theme-editorial .site-header { backdrop-filter: blur(12px); background: color-mix(in srgb, var(--background) 88%, transparent); }
.theme-editorial .article-card { border: 0; box-shadow: var(--card-shadow); }
.theme-dark { color-scheme: dark; }
.theme-dark .site-header, .theme-dark .site-footer, .theme-dark .article-card, .theme-dark .comparison-product-card { background: #0f172a; border-color: #334155; }
.theme-dark .category-card, .theme-dark .article-toc, .theme-dark .vv-product-card, .theme-dark .vv-review-box, .theme-dark .vv-affiliate-cta, .theme-dark .vv-summary-box, .theme-dark .vv-faq-block { background: #111827; border-color: #334155; }
.layout-magazine .article-grid { grid-template-columns: repeat(var(--home-columns), minmax(0, 1fr)); }
.layout-compact .main-content { padding: 20px 0; }
.layout-compact .article-card h2 { font-size: 1rem; }
.cards-bordered .article-card { box-shadow: none; border-width: 1px; }
.cards-flat .article-card { box-shadow: none; border-color: transparent; }
.header-centered .header-inner { justify-content: center; flex-direction: column; }
.header-split .header-inner { border-bottom: 1px solid var(--line); }
.vv-cta-button, .read-more, .banner-copy em { border-radius: var(--button-radius); }
@media (max-width: 920px) { .layout-magazine .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px) { .layout-magazine .article-grid { grid-template-columns: 1fr; } }


/* Relacionados */
.related-section { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--vv-color-border, #e5e7eb); }
.related-section h2 { margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.product-card, .comparison-card { background: var(--vv-color-surface, #f8fafc); border: 1px solid var(--vv-color-border, #e5e7eb); border-radius: var(--vv-border-radius, 18px); padding: 1rem; box-shadow: var(--vv-card-shadow, 0 8px 25px rgba(15,23,42,.04)); }
.product-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: calc(var(--vv-border-radius, 18px) * .75); }
.product-hero { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: 2rem; align-items: start; }
.product-gallery-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.product-gallery-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: .75rem; border: 1px solid var(--vv-color-border, #e5e7eb); }
@media (max-width: 760px) { .product-hero { grid-template-columns: 1fr; } }

/* ============================================================
   Layouts configuráveis para artigos,
   produtos e relacionados
   ============================================================ */
.vv-content-section { margin-block: clamp(24px, 4vw, 44px); }
.vv-section-header { display:flex; align-items:end; justify-content:space-between; gap:1rem; margin-bottom:1rem; }
.vv-section-header h2 { margin:0; }
.vv-article-layout,
.vv-product-listing,
.vv-related-layout .related-grid {
  --vv-grid-cols: 3;
  display:grid;
  grid-template-columns:repeat(var(--vv-grid-cols), minmax(0, 1fr));
  gap:clamp(16px, 2.4vw, 28px);
}
.vv-cols-1 { --vv-grid-cols: 1; }
.vv-cols-2 { --vv-grid-cols: 2; }
.vv-cols-3 { --vv-grid-cols: 3; }
.vv-cols-4 { --vv-grid-cols: 4; }
.vv-cols-5 { --vv-grid-cols: 5; }
.vv-cols-6 { --vv-grid-cols: 6; }
.vv-article-layout.vv-cols-3 { --vv-grid-cols: var(--category-article-columns, 3); }
.vv-products-section .vv-product-listing { --vv-grid-cols: var(--product-columns, 4); }
.vv-related-layout .related-grid { --vv-grid-cols: var(--related-columns, 4); }

.vv-card,
.article-card,
.product-card,
.comparison-card,
.vv-product-card-public {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--card-shadow);
  min-width:0;
}
.vv-card-media { display:block; background:#f8fafc; }
.vv-card-media img,
.vv-product-card-public img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.vv-card-body { padding:1rem; }
.vv-card-body h2,
.vv-card-body h3 { margin:.1rem 0 .55rem; }
.vv-card-body p { color:var(--muted); margin:.45rem 0; padding:0; }
.vv-card-body .vv-cta-button { margin-top:.5rem; }

/* Grade padrão */
.vv-layout-grid,
.vv-layout-cards_price { display:grid; }

/* Lista vertical: imagem lateral no desktop */
.vv-layout-list { grid-template-columns:1fr; }
.vv-layout-list .article-card,
.vv-layout-list .vv-product-card-public,
.vv-layout-list .comparison-card {
  display:grid;
  grid-template-columns:minmax(180px, 280px) 1fr;
  align-items:stretch;
}
.vv-layout-list .vv-card-media img,
.vv-layout-list .vv-product-card-public img { height:100%; min-height:170px; aspect-ratio:auto; }

/* Compacto: sem excesso visual para listas densas */
.vv-layout-compact { grid-template-columns:1fr; gap:.85rem; }
.vv-layout-compact .article-card,
.vv-layout-compact .vv-product-card-public,
.vv-layout-compact .comparison-card {
  display:grid;
  grid-template-columns:92px 1fr;
  border-radius:14px;
  box-shadow:none;
}
.vv-layout-compact .vv-card-media img,
.vv-layout-compact .vv-product-card-public img { width:92px; height:92px; aspect-ratio:1/1; object-fit:cover; }
.vv-layout-compact .vv-card-body { padding:.7rem .85rem; }
.vv-layout-compact .vv-card-body h2,
.vv-layout-compact .vv-card-body h3 { font-size:1rem; margin:0 0 .25rem; }
.vv-layout-compact .vv-card-body p { font-size:.9rem; margin:.2rem 0; }

/* Magazine e destaque + grade */
.vv-layout-magazine,
.vv-layout-featured_grid { grid-template-columns:repeat(var(--home-article-columns, 3), minmax(0, 1fr)); }
.vv-layout-magazine.has-featured .article-card.is-first,
.vv-layout-featured_grid.has-featured .article-card.is-first,
.vv-home-hero-magazine + .category-grid + .vv-layout-magazine .article-card.is-first {
  grid-column:span 2;
  grid-row:span 2;
}
.vv-layout-magazine .article-card.is-first .vv-card-media img,
.vv-layout-featured_grid .article-card.is-first .vv-card-media img { aspect-ratio:16/10; }
.vv-layout-magazine .article-card.is-first h2,
.vv-layout-featured_grid .article-card.is-first h2 { font-size:clamp(1.35rem, 3vw, 2.1rem); }

/* Carrossel horizontal para relacionados */
.vv-related-layout.vv-layout-carousel .related-grid {
  display:flex;
  gap:1rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:.4rem;
}
.vv-related-layout.vv-layout-carousel .related-grid > * {
  flex:0 0 min(82vw, 310px);
  scroll-snap-align:start;
}

/* Misto editorial para relacionados */
.vv-related-layout.vv-layout-mixed .related-grid { grid-template-columns:1.25fr 1fr 1fr; }
.vv-related-layout.vv-layout-mixed .related-grid > :first-child { grid-row:span 2; }

/* Produto em formato tabela comparativa */
.vv-product-layout.vv-layout-comparison_table .vv-product-listing,
.vv-products-section.vv-layout-comparison_table .vv-product-listing {
  display:block;
  overflow-x:auto;
}
.vv-product-layout.vv-layout-comparison_table .vv-product-card-public,
.vv-products-section.vv-layout-comparison_table .vv-product-card-public {
  display:grid;
  grid-template-columns:96px minmax(220px,1fr) 140px 160px;
  align-items:center;
  gap:1rem;
  border-radius:0;
  border-width:0 0 1px;
  box-shadow:none;
  min-width:720px;
}
.vv-product-layout.vv-layout-comparison_table .vv-product-card-public .vv-card-media img,
.vv-products-section.vv-layout-comparison_table .vv-product-card-public .vv-card-media img { width:96px; height:72px; aspect-ratio:auto; object-fit:contain; }
.vv-product-layout.vv-layout-comparison_table .vv-product-card-public .vv-card-body,
.vv-products-section.vv-layout-comparison_table .vv-product-card-public .vv-card-body { display:contents; }
.vv-product-layout.vv-layout-comparison_table .vv-product-card-public h3,
.vv-products-section.vv-layout-comparison_table .vv-product-card-public h3 { margin:0; }

@media (max-width: 980px) {
  .vv-article-layout,
  .vv-product-listing,
  .vv-related-layout .related-grid { --vv-grid-cols:2; }
  .vv-layout-magazine.has-featured .article-card.is-first,
  .vv-layout-featured_grid.has-featured .article-card.is-first { grid-column:span 2; }
}
@media (max-width: 720px) {
  .vv-article-layout,
  .vv-product-listing,
  .vv-related-layout .related-grid { --vv-grid-cols:1; }
  .vv-layout-list .article-card,
  .vv-layout-list .vv-product-card-public,
  .vv-layout-list .comparison-card,
  .vv-layout-compact .article-card,
  .vv-layout-compact .vv-product-card-public,
  .vv-layout-compact .comparison-card { grid-template-columns:1fr; }
  .vv-layout-compact .vv-card-media img,
  .vv-layout-compact .vv-product-card-public img { width:100%; height:auto; aspect-ratio:16/9; }
  .vv-layout-magazine.has-featured .article-card.is-first,
  .vv-layout-featured_grid.has-featured .article-card.is-first { grid-column:auto; grid-row:auto; }
  .vv-related-layout.vv-layout-mixed .related-grid { grid-template-columns:1fr; }
  .vv-related-layout.vv-layout-mixed .related-grid > :first-child { grid-row:auto; }
}

/* seletor de idiomas com bandeiras */
.lang-nav {
  align-items: center;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.lang-link:hover,
.lang-link:focus-visible {
  border-color: var(--line);
  background: var(--surface);
  color: var(--accent);
}
.lang-flag-img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .08);
}
.lang-flag-svg {
  display: block;
  width: 26px;
  height: 19px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .10);
  overflow: hidden;
  flex: 0 0 auto;
}
.lang-label {
  font-weight: 700;
  font-size: .86rem;
}
.lang-code {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}
@media (max-width: 720px) {
  .lang-link { padding: .35rem .45rem; }
  .lang-label { display: none; }
  .lang-code { font-size: .7rem; }
}

/* paginação e navegação anterior/próxima */
.vv-pagination { display:flex; flex-wrap:wrap; gap:.5rem; align-items:center; justify-content:center; margin:2rem 0; }
.vv-page-link, .vv-page-ellipsis { display:inline-flex; align-items:center; justify-content:center; min-width:2.4rem; min-height:2.4rem; padding:.45rem .75rem; border:1px solid var(--line); border-radius:var(--button-radius); text-decoration:none; color:var(--text); background:#fff; }
.vv-page-link:hover { border-color:var(--accent); color:var(--accent); }
.vv-page-link.is-current { background:var(--brand); color:#fff; border-color:var(--brand); font-weight:700; }
.vv-page-link.is-disabled { opacity:.45; cursor:not-allowed; }
.vv-article-prev-next { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin:2rem 0; }
.vv-article-nav-card { display:block; padding:1rem; border:1px solid var(--line); border-radius:var(--radius); text-decoration:none; background:var(--surface); color:var(--text); }
.vv-article-nav-card .label { display:block; color:var(--muted); font-size:.875rem; margin-bottom:.35rem; }
.vv-article-nav-card.next { text-align:right; }
.vv-article-nav-card.is-empty { visibility:hidden; }
@media (max-width: 640px) { .vv-article-prev-next { grid-template-columns:1fr; } .vv-article-nav-card.next { text-align:left; } .vv-article-nav-card.is-empty { display:none; } }

/* ============================================================
   Visual público profissional
   ============================================================ */
.vv-public {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .12), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #f6f8fb 45%, #ffffff 100%);
  color: var(--text);
}
.vv-public a { transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.vv-skip-link { position:absolute; left:-999px; top:10px; z-index:9999; background:#0f172a; color:#fff; padding:10px 14px; border-radius:999px; }
.vv-skip-link:focus { left:12px; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(226, 232, 240, .9); background: rgba(255,255,255,.88); backdrop-filter: blur(18px) saturate(160%); box-shadow: 0 10px 35px rgba(15,23,42,.05); }
.vv-topbar { border-bottom: 1px solid rgba(226, 232, 240, .65); font-size: .82rem; color: var(--muted); }
.vv-topbar-inner { display:flex; align-items:center; justify-content:space-between; gap: 1rem; min-height: 42px; }
.header-inner { min-height: 74px; padding: 0; }
.logo { color: var(--brand); }
.vv-logo-mark { display:inline-grid; place-items:center; width: 40px; height: 40px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-weight: 900; box-shadow: 0 16px 34px rgba(37, 99, 235, .22); }
.site-logo-text { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.lang-nav { margin-left: 0; gap: .4rem; }
.lang-link { background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 4px 14px rgba(15,23,42,.04); }
.lang-link:hover { transform: translateY(-1px); box-shadow: 0 9px 22px rgba(15,23,42,.08); }
.menu-container { padding: 0 0 12px; }
.vv-menu-header .vv-menu-list { gap: .45rem; }
.vv-menu-item > a, .vv-submenu-item > a { color: #172033; padding: .58rem .85rem; border-radius: 999px; font-weight: 780; }
.vv-menu-item > a:hover, .vv-submenu-item > a:hover { background: #eef6ff; color: var(--accent); }
.main-content { padding-block: clamp(28px, 5vw, 54px); }
.vv-home-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(22px, 4vw, 46px); align-items: stretch; margin: 0 0 clamp(28px, 4vw, 44px); padding: clamp(28px, 5vw, 60px); border: 1px solid rgba(219, 227, 239, .95); border-radius: clamp(24px, 4vw, 38px); background: linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(239,246,255,.96) 58%, rgba(224,242,254,.9) 100%); box-shadow: 0 30px 90px rgba(15,23,42,.10); overflow:hidden; }
.vv-home-hero::after { content:""; position:absolute; width: 360px; height: 360px; right:-140px; top:-120px; border-radius:999px; background: radial-gradient(circle, rgba(37,99,235,.20), transparent 66%); pointer-events:none; }
.vv-hero-copy { position:relative; z-index:1; display:flex; flex-direction:column; justify-content:center; }
.vv-kicker { display:inline-flex; width:max-content; margin-bottom: 16px; padding: 8px 12px; border: 1px solid #bfdbfe; border-radius:999px; color:#1d4ed8; background:#eff6ff; font-weight: 900; letter-spacing:.08em; text-transform:uppercase; font-size:.76rem; }
.vv-hero-copy h1 { margin: 0; max-width: 760px; font-size: clamp(2.5rem, 6.5vw, 5.4rem); line-height: .94; letter-spacing: -.07em; color:#0f172a; }
.vv-hero-copy p { max-width: 620px; margin: 22px 0 0; color:#475569; font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.vv-hero-actions { display:flex; gap: 12px; flex-wrap:wrap; margin-top: 28px; }
.vv-primary-action, .vv-secondary-action { display:inline-flex; align-items:center; justify-content:center; min-height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 900; }
.vv-primary-action { background: #0f172a; color:#fff; box-shadow: 0 18px 36px rgba(15,23,42,.18); }
.vv-primary-action:hover { color:#fff; transform: translateY(-2px); }
.vv-secondary-action { background:#fff; border:1px solid #dbe3ef; color:#0f172a; }
.vv-hero-categories { position:relative; z-index:1; display:flex; flex-direction:column; gap: 10px; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.75); border: 1px solid rgba(219,227,239,.9); box-shadow: inset 0 1px 0 rgba(255,255,255,.7); }
.vv-hero-panel-title { color:#64748b; font-weight:900; font-size:.8rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:2px; }
.vv-hero-category { display:flex; align-items:center; justify-content:space-between; gap:12px; min-height:54px; padding: 12px 14px; border:1px solid #e2e8f0; border-radius:16px; background:#fff; color:#172033; font-weight:850; box-shadow: 0 8px 20px rgba(15,23,42,.04); }
.vv-hero-category:hover { transform: translateY(-2px); border-color:#bfdbfe; box-shadow: 0 18px 34px rgba(37,99,235,.12); }
.vv-category-section, .vv-content-section { margin-block: clamp(28px, 4vw, 52px); }
.vv-section-header { align-items:flex-start; }
.vv-section-header p { color: var(--muted); margin: .35rem 0 0; }
.vv-section-header-full { grid-column: 1 / -1; display:block; margin-bottom: -6px; }
.category-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.category-card { display:flex; align-items:center; justify-content:space-between; gap: 12px; min-height: 96px; padding: 20px; background: rgba(255,255,255,.95); border:1px solid #dbe3ef; border-radius: 22px; box-shadow: 0 16px 36px rgba(15,23,42,.06); color:#172033; }
.category-card strong { font-size:.8rem; color:#2563eb; background:#eff6ff; padding:6px 9px; border-radius:999px; }
.category-card:hover { transform: translateY(-3px); border-color:#bfdbfe; box-shadow: 0 24px 50px rgba(37,99,235,.13); }
.vv-empty-state { grid-column: 1 / -1; padding: 28px; border: 1px dashed #bfd1e7; border-radius: 22px; background: #fff; color:#64748b; }
.vv-empty-state strong { display:block; color:#0f172a; font-size:1.1rem; margin-bottom:4px; }
.article-card, .vv-card, .product-card, .comparison-card, .vv-product-card-public { border-color:#dbe3ef; border-radius: 24px; box-shadow: 0 18px 50px rgba(15,23,42,.08); }
.article-card:hover, .vv-product-card-public:hover, .comparison-card:hover { transform: translateY(-3px); box-shadow: 0 24px 65px rgba(15,23,42,.12); }
.vv-card-body { padding: 18px; }
.vv-card-body h2, .vv-card-body h3 { color:#0f172a; letter-spacing:-.025em; }
.read-more, .vv-read-more-link { color:#2563eb; font-weight:900; }
.site-footer { margin-top: clamp(34px, 6vw, 80px); padding: 36px 0; background:#0f172a; color:#cbd5e1; border-top:0; }
.site-footer .logo { color:#fff; }
.vv-footer-grid { display:grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr); gap: 28px; align-items:start; }
.vv-footer-brand p { max-width: 620px; color:#94a3b8; }
.vv-footer-menu .vv-menu-footer .vv-menu-list { justify-content:flex-end; }
.vv-footer-menu a { color:#e2e8f0; }
@media (max-width: 900px) { .vv-home-hero { grid-template-columns:1fr; padding: 28px; } .vv-topbar-inner { flex-direction:column; align-items:flex-start; padding-block:8px; } .vv-footer-grid { grid-template-columns:1fr; } .vv-footer-menu .vv-menu-footer .vv-menu-list { justify-content:flex-start; } }
@media (max-width: 640px) { .vv-hero-copy h1 { font-size: clamp(2.2rem, 15vw, 3.4rem); } .vv-home-hero { border-radius: 24px; padding: 22px; } .category-grid { grid-template-columns:1fr; } }

/* ============================================================
   Ajuste visual público profissional,
   menu público recursivo e correção de composição da home.
   ============================================================ */
html, body { width: 100%; max-width: 100%; }
body.vv-public {
  display: block !important;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(37,99,235,.10), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #f6f8fb 52%, #fff 100%) !important;
}
.vv-public .site-header,
.vv-public .main-content,
.vv-public .site-footer {
  display: block;
  width: 100%;
  max-width: none;
  clear: both;
}
.vv-public .container {
  width: min(1180px, calc(100% - 40px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.vv-public .site-header {
  left: 0;
  right: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(226,232,240,.96);
}
.vv-public .vv-topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.vv-public .header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.vv-public .logo { min-width: max-content; }
.vv-public .menu-container {
  display: block;
  position: relative;
  padding: 0 0 12px;
  overflow: visible;
}
.vv-public .vv-menu-header .vv-menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.vv-public .vv-menu-item { position: relative; }
.vv-public .vv-menu-item > a,
.vv-public .vv-submenu .vv-menu-item > a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #0f172a;
  font-weight: 850;
  white-space: nowrap;
}
.vv-public .vv-menu-item > a:hover,
.vv-public .vv-menu-item:focus-within > a {
  background: #eef6ff;
  color: #2563eb;
}
.vv-public .vv-menu-item.has-children > a::after { content: "▾"; margin-left: 6px; font-size: .72rem; }
.vv-public .vv-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  display: block;
  min-width: 240px;
  padding: 8px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15,23,42,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .14s ease, visibility .14s ease, transform .14s ease;
}
.vv-public .vv-menu-item:hover > .vv-submenu,
.vv-public .vv-menu-item:focus-within > .vv-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.vv-public .vv-submenu .vv-submenu {
  top: -8px;
  left: calc(100% + 8px);
}
.vv-public .vv-submenu .vv-menu-item > a {
  width: 100%;
  justify-content: space-between;
  border-radius: 12px;
  padding: 0 12px;
}
.vv-public .main-content {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(34px, 5vw, 64px);
}
.vv-public .vv-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  width: 100%;
  max-width: 100%;
  min-height: 420px;
  margin: 0 0 clamp(32px, 5vw, 56px);
  padding: clamp(30px, 4.6vw, 56px);
  overflow: hidden;
}
.vv-public .vv-hero-copy {
  min-width: 0;
  max-width: 720px;
}
.vv-public .vv-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  line-height: .98;
  letter-spacing: -.065em;
  overflow-wrap: normal;
  word-break: normal;
}
.vv-public .vv-hero-copy p {
  max-width: 620px;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}
.vv-public .vv-hero-categories {
  min-width: 0;
  max-width: 430px;
  justify-self: end;
  background: rgba(255,255,255,.88);
}
.vv-public .vv-hero-category {
  min-height: 50px;
  border-radius: 15px;
}
.vv-public .vv-category-section,
.vv-public .vv-content-section {
  position: relative;
  z-index: 1;
}
.vv-public .category-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.vv-public .site-footer {
  position: relative;
  z-index: 1;
  margin-top: 0;
}
@media (max-width: 1100px) {
  .vv-public .vv-home-hero { grid-template-columns: 1fr; min-height: 0; }
  .vv-public .vv-hero-categories { justify-self: stretch; max-width: none; }
}
@media (max-width: 900px) {
  .vv-public .container { width: min(100% - 28px, 1180px); }
  .vv-public .vv-topbar-inner { align-items: flex-start; flex-direction: column; padding: 8px 0; }
  .vv-public .vv-mobile-menu-toggle { display: inline-flex; }
  .vv-public .menu-container { display: none; }
  body.vv-menu-open .menu-container { display: block; }
  .vv-public .vv-menu-header .vv-menu-list { display: grid; gap: 4px; }
  .vv-public .vv-menu-item > a { width: 100%; justify-content: space-between; }
  .vv-public .vv-submenu,
  .vv-public .vv-submenu .vv-submenu {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    border: 0;
    border-left: 2px solid #dbe3ef;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 2px 0 2px 14px;
  }
}
@media (max-width: 640px) {
  .vv-public .container { width: min(100% - 22px, 1180px); }
  .vv-public .vv-home-hero { padding: 22px; border-radius: 24px; }
  .vv-public .vv-hero-copy h1 { font-size: clamp(2.2rem, 13vw, 3.35rem); }
}

/* ============================================================
   Ajustes finais do site público.
   Cabeçalho mais compacto, menu recursivo legível e hero alinhado.
   ============================================================ */
.vv-public .site-header { background: rgba(255,255,255,.96); backdrop-filter: blur(16px) saturate(150%); }
.vv-public .vv-topbar-inner { min-height: 34px; padding-block: 4px; }
.vv-public .header-inner { padding: 14px 0 10px; }
.vv-public .menu-container { padding-bottom: 12px; }
.vv-public .main-content { padding-top: clamp(22px, 3vw, 34px); }
.vv-public .vv-menu-header .vv-menu-list { gap: 8px 16px; }
.vv-public .vv-submenu { z-index: 30; }
.vv-public .vv-submenu .vv-submenu { top: -8px; left: calc(100% + 8px); }
.vv-public .vv-home-hero {
  width: min(1180px, 100%);
  margin: clamp(18px, 3vw, 28px) auto clamp(30px, 4vw, 46px);
  min-height: 420px;
}
.vv-public .vv-hero-copy h1 { max-width: 680px; font-size: clamp(3rem, 6vw, 4.6rem); }
.vv-public .vv-hero-categories { align-self: center; max-width: 260px; justify-self: end; }
.vv-public .vv-category-section,
.vv-public .vv-content-section { margin-inline: auto; }
@media (max-width: 900px) {
  .vv-public .vv-home-hero { min-height: 0; }
  .vv-public .vv-hero-categories { max-width: none; justify-self: stretch; }
  .vv-public .vv-submenu .vv-submenu { left: auto; top: auto; }
}

/* Centro Documental público e responsivo */
.vv-document-public { max-width: min(1040px, calc(100vw - 32px)); margin: 32px auto; }
.vv-document-public-card { background: var(--vv-surface, #fff); border: 1px solid var(--vv-border, #e5e7eb); border-radius: 18px; padding: clamp(18px, 4vw, 34px); box-shadow: var(--vv-card-shadow, 0 8px 25px rgba(15,23,42,.04)); }
.vv-document-description { color: var(--vv-muted, #6b7280); font-size: 1.05rem; }
.vv-document-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 24px 0; }
.vv-document-meta div { border: 1px solid var(--vv-border, #e5e7eb); border-radius: 12px; padding: 12px; background: #f8fafc; overflow-wrap: anywhere; }
.vv-document-meta dt { color: var(--vv-muted, #6b7280); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; }
.vv-document-meta dd { margin: 4px 0 0; font-weight: 700; }
.vv-document-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.vv-document-frame { width: 100%; min-height: min(80vh, 760px); border: 1px solid var(--vv-border, #e5e7eb); border-radius: 14px; margin-top: 20px; background: #f8fafc; }
.vv-document-image { max-width: 100%; height: auto; display: block; border-radius: 14px; margin-top: 20px; }
.vv-document-placeholder { border: 1px dashed var(--vv-border, #cbd5e1); background: #f8fafc; border-radius: 14px; padding: 20px; margin-top: 20px; }
@media (max-width: 720px) {
  .vv-document-public { max-width: calc(100vw - 20px); margin: 16px auto; }
  .vv-document-actions .vv-button { width: 100%; text-align: center; }
  .vv-document-frame { min-height: 520px; }
}


/* validação documental pública */
.vv-office-validation-page { padding: clamp(24px, 4vw, 56px) 0; }
.vv-document-validation-card {
  max-width: 980px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
  padding: clamp(22px, 4vw, 42px);
}
.vv-document-validation-card .vv-kicker {
  margin: 0 0 8px;
  color: #2563eb;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}
.vv-validation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.vv-validation-grid > div {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  background: #f8fafc;
  padding: 14px 16px;
}
.vv-validation-grid dt {
  color: #64748b;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vv-validation-grid dd { margin: 5px 0 0; color: #0f172a; font-weight: 700; overflow-wrap: anywhere; }
.vv-validation-grid code { background: #e0f2fe; color: #075985; border-radius: 8px; padding: 2px 6px; }
.vv-validation-wide { grid-column: 1 / -1; }
.vv-document-notes {
  border-left: 4px solid #2563eb;
  background: #eff6ff;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 18px 0;
}
@media (max-width: 720px) {
  .vv-validation-grid { grid-template-columns: 1fr; }
  .vv-document-validation-card { border-radius: 18px; }
}


.vv-document-validations {
  margin: 22px 0;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 18px;
  background: #eff6ff;
  padding: 16px 18px;
}
.vv-document-validations h2 { margin-top: 0; font-size: 1.1rem; }
.vv-document-validations ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.vv-document-validations li { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.vv-document-validations span { color: #475569; }
.vv-document-validations a { font-weight: 800; color: #1d4ed8; }

/* ajuste: busca pública integrada e ícones sem dependência de fonte externa */
.vv-site-header-search {
  flex: 1 1 360px;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: clamp(12px, 2vw, 28px);
  padding: 6px;
  border: 1px solid rgba(148, 163, 184, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}
.vv-site-search-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #475569;
  background: #f8fafc;
  font-size: 1rem;
  line-height: 1;
  font-family: system-ui, -apple-system, Segoe UI Symbol, Noto Color Emoji, sans-serif;
}
.vv-site-header-search input[type="search"] {
  min-width: 0;
  flex: 1 1 auto;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
}
.vv-site-header-search button {
  border: 0;
  border-radius: 999px;
  padding: .55rem .9rem;
  background: var(--accent, #2563eb);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.vv-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  min-width: 1.35em;
  height: 1.35em;
  margin-right: .35rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, .08);
  color: #1d4ed8;
  font-family: system-ui, -apple-system, Segoe UI Symbol, Noto Color Emoji, sans-serif;
  font-size: .9em;
  line-height: 1;
  vertical-align: -0.12em;
}
.vv-search-hero {
  padding: clamp(18px, 4vw, 42px);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(14, 165, 233, .08));
  box-shadow: var(--card-shadow);
}
.vv-search-hero h1 { margin: .35rem 0 .4rem; }
.vv-search-hero p { margin: 0; color: var(--muted); max-width: 740px; }
.vv-search-kicker,
.vv-result-type {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
}
.vv-search-summary { color: var(--muted); }
.vv-search-section { margin-top: clamp(24px, 4vw, 42px); }
.vv-search-section h2 { margin-bottom: 1rem; }
.vv-search-result-list {
  display: grid;
  gap: 14px;
}
.vv-search-result-card {
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .055);
}
.vv-search-result-card h3 { margin: .35rem 0 .45rem; }
.vv-search-result-card p { margin: 0; color: var(--muted); }
.vv-search-chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.vv-search-chip {
  display: inline-flex;
  padding: .65rem .9rem;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 800;
  text-decoration: none;
}
.vv-search-empty {
  margin-top: 24px;
  padding: 24px;
  border: 1px dashed rgba(148, 163, 184, .7);
  border-radius: 18px;
  background: #f8fafc;
}
@media (max-width: 980px) {
  .vv-site-header-search { order: 3; flex-basis: 100%; max-width: none; margin: 12px 0 0; }
}
@media (max-width: 640px) {
  .vv-site-header-search { border-radius: 18px; }
  .vv-site-header-search button { padding-inline: .75rem; }
  .vv-search-form { flex-direction: column; }
}
.vv-menu-badge {
  margin-left: .4rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .02em;
}

/* Compartilhamento social de artigos e produtos */
.vv-social-share {
  margin: 1.1rem 0 1.5rem;
  padding: .95rem;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #f8fafc;
}
.vv-social-share-title {
  display: block;
  margin-bottom: .65rem;
  color: #64748b;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vv-social-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.vv-social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: .55rem .8rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  font-size: .9rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,23,42,.05);
}
.vv-social-button:hover { border-color: #2563eb; color: #1d4ed8; transform: translateY(-1px); }
.vv-social-whatsapp { background: #ecfdf5; border-color: #bbf7d0; color: #047857; }
.vv-social-facebook { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.vv-social-x { background: #f8fafc; border-color: #cbd5e1; color: #0f172a; }
.vv-social-linkedin { background: #eef6ff; border-color: #bae6fd; color: #0369a1; }
.vv-social-telegram { background: #f0f9ff; border-color: #bae6fd; color: #0284c7; }
.vv-social-pinterest { background: #fff1f2; border-color: #fecdd3; color: #be123c; }
.vv-social-native, .vv-social-copy { background: #eef2ff; border-color: #c7d2fe; color: #3730a3; }
.vv-social-button.is-copied { background: #dcfce7; border-color: #86efac; color: #166534; }
@media (max-width: 640px) {
  .vv-social-share-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vv-social-button { width: 100%; }
}

/* Ícones e seletor de idiomas por bandeiras */
.vv-cms-icon{display:inline-block;width:1.1em;height:1.1em;min-width:1.1em;vertical-align:-.18em;stroke:currentColor;fill:none;}
.vv-sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}
.lang-nav{display:flex;align-items:center;gap:.45rem;flex-wrap:wrap;}
.lang-link.lang-link-flag-only{display:inline-flex;align-items:center;justify-content:center;width:38px;height:34px;padding:.35rem;border-radius:999px;background:rgba(255,255,255,.72);border:1px solid transparent;line-height:1;white-space:nowrap;}
.lang-link.lang-link-flag-only:hover,.lang-link.lang-link-flag-only:focus-visible{border-color:var(--line);background:var(--surface);color:var(--accent);transform:translateY(-1px);box-shadow:0 8px 18px rgba(15,23,42,.10);}
.lang-link.lang-link-flag-only .lang-flag-img{width:28px;height:21px;object-fit:cover;border-radius:4px;box-shadow:0 0 0 1px rgba(15,23,42,.10);}
.lang-link.lang-link-flag-only .lang-flag-svg{width:28px;height:21px;border-radius:4px;box-shadow:0 0 0 1px rgba(15,23,42,.10);overflow:hidden;}
.vv-social-share-title{display:inline-flex;align-items:center;gap:.45rem;}
.vv-social-share-title .vv-cms-icon{width:18px;height:18px;}
.vv-social-button{display:inline-flex!important;align-items:center;justify-content:center;gap:.45rem;}
.vv-social-button .vv-cms-icon{width:17px;height:17px;}

/* Rodapé público com navegação de fallback. */
.vv-footer-menu { display: block; min-width: 0; }
.vv-footer-menu .vv-menu-footer { display: block; }
.vv-footer-menu .vv-menu-footer .vv-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  align-items: center;
}
.vv-footer-menu .vv-menu-footer .vv-menu-item > a {
  color: #e2e8f0 !important;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(226,232,240,.12);
  border-radius: 999px;
  min-height: 38px;
  padding: 8px 12px;
}
.vv-footer-menu .vv-menu-footer .vv-menu-item > a:hover,
.vv-footer-menu .vv-menu-footer .vv-menu-item > a:focus-visible {
  color: #fff !important;
  background: rgba(255,255,255,.12);
}
@media (max-width: 900px) {
  .vv-footer-menu .vv-menu-footer .vv-menu-list { justify-content: flex-start; }
}

/* Blocos editoriais profissionais: CTA afiliado, vídeo e widgets externos */
.article-body .vv-affiliate-cta {
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 34px rgba(15,23,42,.07);
}
.article-body .vv-affiliate-cta-primary { background: linear-gradient(135deg,#eff6ff,#fff); border-color: #bfdbfe; }
.article-body .vv-affiliate-cta-success { background: linear-gradient(135deg,#ecfdf5,#fff); border-color: #86efac; }
.article-body .vv-affiliate-cta-warning { background: linear-gradient(135deg,#fffbeb,#fff); border-color: #fcd34d; }
.article-body .vv-affiliate-cta-dark { background: linear-gradient(135deg,#111827,#1f2937); border-color: #0f172a; color: #fff; }
.article-body .vv-affiliate-badge {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: .22rem .6rem;
  margin-bottom: .55rem;
  background: rgba(29,78,216,.1);
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.article-body .vv-affiliate-disclosure { display:block; color:#64748b; font-size:.84rem; margin-top:.55rem; }
.article-body .vv-affiliate-cta-dark .vv-affiliate-disclosure { color:#cbd5e1; }
.article-body .vv-affiliate-manual-embed,
.article-body .vv-affiliate-embed-placeholder {
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 1rem;
  margin: 1.1rem 0;
  background: linear-gradient(180deg,#fff,#f8fbff);
}
.article-body .vv-video { margin: 1.4rem 0; }
.article-body .vv-video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #0f172a; border-radius: 16px; overflow: hidden; }
.article-body .vv-video-frame iframe,
.article-body .vv-video video { width: 100%; height: 100%; display: block; border: 0; }
.article-body .vv-video video { max-height: 560px; background: #0f172a; border-radius: 16px; }
@media (max-width: 640px) { .article-body .vv-affiliate-cta { padding: 1rem; } }

/* VeseVale CMS Production - helpers de disclosure/CTA afiliado */
@import url("./vesevale_affiliate_compliance.945894b65538.css");

/* Production — vídeo novo CMS: embed responsivo e fallback seguro */
.article-body .vv-video-frame,
.page-body .vv-video-frame,
.vv-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
}
.article-body .vv-video-frame iframe,
.page-body .vv-video-frame iframe,
.vv-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.article-body .vv-video-fallback,
.page-body .vv-video-fallback,
.vv-video-fallback {
  margin: .6rem 0 0;
  font-size: .92rem;
}
.article-body .vv-video-fallback a,
.page-body .vv-video-fallback a,
.vv-video-fallback a {
  font-weight: 800;
  text-decoration: none;
}
.article-body .vv-video-fallback a:hover,
.page-body .vv-video-fallback a:hover,
.vv-video-fallback a:hover { text-decoration: underline; }


/* Production — vídeo lazy/click-to-load para evitar Erro 153 antes do clique */
.article-body .vv-video-lazy,
.page-body .vv-video-lazy,
.vv-video-lazy {
  border: 1px solid #dbeafe;
  background: #f8fbff;
  border-radius: 18px;
  padding: 14px;
}
.article-body .vv-video-poster,
.page-body .vv-video-poster,
.vv-video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111827;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.article-body .vv-video-poster img,
.page-body .vv-video-poster img,
.vv-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-body .vv-video-play,
.page-body .vv-video-play,
.vv-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.94);
  color: #111827;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.article-body .vv-video-poster-text,
.page-body .vv-video-poster-text,
.vv-video-poster-text,
.article-body .vv-video-provider-label,
.page-body .vv-video-provider-label,
.vv-video-provider-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.78);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}
.vv-video-loaded .vv-video-frame { margin-bottom: .65rem; }

/* Production — runtime público consolidado, acessibilidade e proteção contra cortes */
.vv-public-runtime-production,
.vv-public-runtime-production * {
  min-width: 0;
}
.article-body,
.page-body,
.vv-content-flow {
  overflow-wrap: anywhere;
  word-break: normal;
}
.article-body :where(img, video, iframe, embed, object),
.page-body :where(img, video, iframe, embed, object),
.vv-content-flow :where(img, video, iframe, embed, object) {
  max-width: 100%;
}
.article-body :where(pre, code),
.page-body :where(pre, code),
.vv-content-flow :where(pre, code) {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.table-responsive,
.vv-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
}
.table-responsive table,
.vv-table-scroll table {
  min-width: min(720px, 100%);
}
.vv-embed-responsive,
.vv-public-embed-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
}
.vv-embed-responsive > iframe,
.vv-public-embed-frame > iframe,
.vv-public-embed-frame > video,
.vv-embed-responsive > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vv-public-runtime-production a[target="_blank"]:focus-visible,
.vv-public-runtime-production button:focus-visible,
.vv-public-runtime-production input:focus-visible,
.vv-public-runtime-production select:focus-visible,
.vv-public-runtime-production textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .55);
  outline-offset: 3px;
}
.vv-public-runtime-production .article-card,
.vv-public-runtime-production .affiliate-banner,
.vv-public-runtime-production .comparison-card,
.vv-public-runtime-production .product-card {
  min-width: 0;
}
.vv-public-runtime-production .article-card :where(h2, h3, p, a),
.vv-public-runtime-production .affiliate-banner :where(h2, h3, p, a, small, em),
.vv-public-runtime-production .product-card :where(h2, h3, p, a, small, strong) {
  overflow-wrap: anywhere;
}
.vv-public-runtime-production img[loading="lazy"] {
  content-visibility: auto;
}
@media (max-width: 760px) {
  .article-body,
  .page-body,
  .vv-content-flow {
    font-size: 1rem;
  }
  .table-responsive,
  .vv-table-scroll {
    margin-inline: -4px;
    padding-bottom: 6px;
  }
  .vv-public-runtime-production .article-grid,
  .vv-public-runtime-production .category-grid,
  .vv-public-runtime-production .comparison-grid,
  .vv-public-runtime-production .product-grid {
    grid-template-columns: 1fr !important;
  }
}



/* vv-accessibility-semantics-production — acessibilidade pública e semântica */
.vv-sr-only,
.vv-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.vv-skip-link:focus,
.vv-skip-link:focus-visible {
  left: 12px;
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.article-body :where(h2, h3, h4, h5, h6),
.page-body :where(h2, h3, h4, h5, h6) {
  scroll-margin-top: 96px;
}
.article-body :where(img, iframe, video, table),
.page-body :where(img, iframe, video, table) {
  max-width: 100%;
}


/* vv-search-experience-production — busca pública mais robusta, acessível e sem cortes */
.vv-search-experience-production {
  overflow-wrap: anywhere;
}
.vv-search-experience-production .vv-search-form {
  align-items: stretch;
}
.vv-search-input-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: min(100%, 260px);
  display: flex;
}
.vv-search-input-wrap input[type="search"] {
  width: 100%;
  padding-right: 5.25rem;
}
.vv-search-clear {
  position: absolute;
  right: .45rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}
.vv-search-help {
  margin: -.85rem 0 1.4rem;
  color: var(--muted);
  font-size: .92rem;
}
.vv-search-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1rem;
  margin: 1rem 0;
}
.vv-search-toolbar .vv-search-summary {
  margin: 0;
}
.vv-search-language {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .28rem .7rem;
  border: 1px solid rgba(148, 163, 184, .35);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}
.vv-search-tips {
  margin: .8rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.vv-search-tips li + li { margin-top: .25rem; }
.vv-search-experience-production input[aria-invalid="true"] {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
}
@media (max-width: 640px) {
  .vv-search-input-wrap {
    min-width: 100%;
  }
  .vv-search-input-wrap input[type="search"] {
    padding-right: 1rem;
  }
  .vv-search-clear {
    position: static;
    transform: none;
    margin-left: .5rem;
    align-self: center;
  }
  .vv-search-toolbar {
    align-items: stretch;
  }
}

/* vv-navigation-ia-production — navegação pública, arquitetura de informação e proteção contra cortes */
[data-vv-navigation-root] {
  max-width: 100%;
}
[data-vv-navigation-root] .vv-menu-list,
[data-vv-navigation-root] .vv-submenu {
  min-width: 0;
}
[data-vv-navigation-root] .vv-menu-item > a {
  max-width: min(100%, 360px);
  overflow-wrap: anywhere;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}
[data-vv-navigation-root] .vv-menu-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-vv-navigation-root] .vv-menu-long-title {
  white-space: normal;
  line-height: 1.2;
}
[data-vv-navigation-root] .vv-submenu {
  max-width: min(92vw, 360px);
}
[data-vv-navigation-root] .vv-submenu .vv-menu-item > a {
  white-space: normal;
  overflow-wrap: anywhere;
}
[data-vv-navigation-root] .vv-menu-link-blocked {
  opacity: .65;
  cursor: not-allowed;
}
[data-vv-navigation-root] .vv-menu-item.is-submenu-open > .vv-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.vv-navigation-ia-production a:focus-visible,
[data-vv-navigation-root] a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .45);
  outline-offset: 3px;
}
@media (max-width: 760px) {
  [data-vv-navigation-root] .vv-menu-item > a {
    max-width: 100%;
  }
  [data-vv-navigation-root] .vv-submenu {
    max-width: 100%;
  }
}

/* vv-link-integrity-production — proteção visual mínima para links públicos auditados */
.vv-link-integrity-production,
.vv-link-integrity-checked { overflow-wrap: anywhere; word-break: normal; }
.vv-link-disabled,
a.vv-link-disabled { cursor: not-allowed; opacity: .68; text-decoration-style: dotted; }
.vv-link-http-warning { text-decoration-style: dotted; text-underline-offset: .18em; }
.article-body a.vv-link-integrity-checked,
.page-body a.vv-link-integrity-checked { overflow-wrap: anywhere; }


/* vv-business-suite-production — formulários, CRM, blocos, pixels, automações, quiz, backup e loja */
.vv-business-suite { overflow-wrap: anywhere; }
.vv-native-form, .vv-quiz-form, .vv-shop-product { display: grid; gap: 1rem; }
.vv-form-field { display: grid; gap: .35rem; margin: .85rem 0; }
.vv-form-field input:not([type="checkbox"]), .vv-form-field textarea, .vv-form-field select {
  width: 100%; min-height: 44px; border: 1px solid var(--line, #d1d5db); border-radius: 12px; padding: .7rem .85rem; font: inherit;
}
.vv-form-field textarea { min-height: 140px; resize: vertical; }
.vv-checkbox { display: inline-flex; align-items: flex-start; gap: .5rem; }
.vv-field-error { color: #b91c1c; font-size: .92rem; }
.vv-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.vv-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: .72rem 1rem; border-radius: 999px; background: #111827; color: #fff; font-weight: 800; border: 0; cursor: pointer; text-decoration: none; width: max-content; max-width: 100%; }
.vv-quiz-question { border: 1px solid var(--line, #e5e7eb); border-radius: 16px; padding: 1rem; margin: 1rem 0; }
.vv-quiz-choice { display: flex; gap: .5rem; margin: .55rem 0; }
.vv-quiz-result, .vv-alert { border: 1px solid #bfdbfe; background: #eff6ff; border-radius: 16px; padding: 1rem; }
.vv-reusable-block { margin: 1.4rem 0; }
.vv-price { font-size: 1.35rem; }
@media (max-width: 720px) { .vv-button { width: 100%; } }


/* vv-shop-index-production - índice público defensivo da loja Business Suite */
.vv-shop-index{overflow-wrap:anywhere;}
.vv-shop-index__header{margin-bottom:1rem;}
.vv-shop-search{border:1px solid rgba(15,23,42,.12);border-radius:18px;padding:1rem;margin:1rem 0 1.25rem;background:rgba(255,255,255,.75);}
.vv-shop-search label{display:block;font-weight:700;margin-bottom:.45rem;}
.vv-shop-search__row{display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;}
.vv-shop-search input[type="search"]{min-height:44px;min-width:min(100%,260px);flex:1 1 280px;border:1px solid rgba(15,23,42,.22);border-radius:12px;padding:.65rem .8rem;font:inherit;}
.vv-shop-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;margin:1rem 0;}
.vv-shop-card{border:1px solid rgba(15,23,42,.12);border-radius:18px;padding:1rem;background:#fff;box-shadow:0 8px 24px rgba(15,23,42,.06);min-width:0;}
.vv-shop-card img{width:100%;height:auto;border-radius:14px;object-fit:cover;}
.vv-shop-card h2{font-size:1.15rem;line-height:1.25;margin:.75rem 0 .4rem;overflow-wrap:anywhere;}
.vv-shop-card p{overflow-wrap:anywhere;}
.vv-price{font-size:1.05rem;}
.vv-alert{border-left:4px solid #b45309;background:#fffbeb;padding:.6rem .75rem;border-radius:10px;}
.vv-empty-state{border:1px dashed rgba(15,23,42,.25);border-radius:18px;padding:1.25rem;background:rgba(248,250,252,.85);}
.vv-shop-pagination{display:flex;gap:.75rem;flex-wrap:wrap;align-items:center;margin-top:1rem;}
@media (max-width:640px){.vv-shop-search__row{align-items:stretch}.vv-shop-search__row .vv-button,.vv-shop-search__row .vv-button-secondary{width:100%;text-align:center}.vv-shop-search input[type="search"]{width:100%;}}

/* VeseVale CMS Production — textareas públicas redimensionáveis. Marcador técnico: vv-textarea-resize-production */
.vv-form-field textarea,
.vv-public-runtime-production textarea,
textarea.vv-resizable-textarea {
  resize: both !important;
  overflow: auto !important;
  min-width: min(260px, 100%) !important;
  min-height: 120px !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* vv-shop-native-checkout-production — carrinho/checkout nativo da loja */
.vv-add-cart-inline,
.vv-product-purchase,
.vv-cart-coupon .vv-shop-search__row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}
.vv-cart-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.vv-cart-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.vv-cart-table th,
.vv-cart-table td { padding: .85rem; border-bottom: 1px solid rgba(15, 23, 42, .12); text-align: left; vertical-align: top; }
.vv-cart-qty { width: 6rem; max-width: 100%; }
.vv-cart-summary { margin: 1.5rem 0; padding: 1rem; border: 1px solid rgba(15, 23, 42, .14); border-radius: 16px; background: rgba(248, 250, 252, .72); }
.vv-checkout-form label { display: block; font-weight: 700; margin-bottom: .35rem; }
.vv-checkout-form input[type="text"],
.vv-checkout-form input[type="email"],
.vv-checkout-form input:not([type]),
.vv-checkout-form textarea,
.vv-cart-coupon input { width: 100%; max-width: 720px; }
.vv-consent-row label { display: flex; gap: .5rem; align-items: flex-start; font-weight: 500; }

/* vv-shop-complete-production: loja nativa completa */
.vv-checkout-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.vv-cart-table-wrap { overflow-x:auto; }
.vv-cart-table { width:100%; border-collapse:collapse; min-width: 680px; }
.vv-cart-table th, .vv-cart-table td { padding:.65rem; border-bottom:1px solid rgba(148,163,184,.35); vertical-align:top; }
.vv-payment-instructions { white-space: pre-wrap; padding: 1rem; border-radius: 12px; background: rgba(148,163,184,.14); }
.vv-coupon-form { display:flex; flex-wrap:wrap; gap:.75rem; align-items:flex-end; margin: 1rem 0; }
.vv-shop-receipt { max-width: 980px; }

/* vv-shop-affiliate-mode-production: produto próprio x afiliado sem gateway obrigatório */
.vv-shop-kind{display:inline-flex;align-items:center;gap:.35rem;width:max-content;max-width:100%;padding:.28rem .65rem;border-radius:999px;background:rgba(15,23,42,.08);font-size:.9rem;}
.vv-affiliate-note,.vv-affiliate-disclosure{font-size:.94rem;color:#475569;}
.vv-affiliate-box{border:1px solid rgba(180,83,9,.28);background:#fffbeb;border-radius:18px;padding:1rem;margin:1rem 0;display:grid;gap:.65rem;}
.vv-affiliate-box p{margin:0;}


/* vv-new-cms-content-structure-production */
.vv-page-hero-pro{padding:clamp(1.5rem,4vw,3rem);border:1px solid var(--vv-border,#e5e7eb);border-radius:28px;background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(245,247,250,.92));box-shadow:0 18px 45px rgba(15,23,42,.08);margin-bottom:1.5rem}
.vv-page-hero-pro .vv-kicker{display:inline-flex;align-items:center;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;font-weight:800;color:var(--vv-primary,#1f6feb);margin-bottom:.75rem}
.vv-page-hero-pro h1{font-size:clamp(2rem,5vw,4rem);line-height:1.02;margin:.25rem 0 .75rem}
.vv-page-lead{font-size:clamp(1rem,2vw,1.25rem);max-width:780px;color:var(--vv-muted,#667085)}
.vv-hub-section{margin-top:2rem}
.vv-hub-category-grid{margin:1rem 0 2rem}
.vv-hub-shop-grid,.vv-shop-grid{gap:1rem}
.vv-page-layout-shop_hub .vv-content-section{margin-top:1rem}

/* Production — bandeiras por contexto e menus recursivos responsivos */
.vv-public .vv-menu-list,
.vv-public .vv-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vv-public .vv-menu-item {
  position: relative;
  min-width: 0;
}
.vv-public .vv-menu-item > a {
  max-width: 100%;
  min-width: 0;
}
.vv-public .vv-menu-title {
  min-width: 0;
  overflow-wrap: anywhere;
}
.vv-public .vv-menu-item.has-children > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .45rem;
}
.vv-public .vv-submenu .vv-menu-item.has-children > a::after {
  content: "›";
  font-size: .9rem;
  margin-left: .4rem;
}
.vv-public .vv-menu-level-0 > .vv-menu-item.has-children > a::after {
  content: "▾";
  font-size: .75rem;
  margin-left: .35rem;
}
.vv-public .vv-submenu .vv-submenu {
  top: -.5rem;
  left: calc(100% + .5rem);
}
.vv-public .vv-menu-item:hover > .vv-submenu,
.vv-public .vv-menu-item:focus-within > .vv-submenu,
.vv-public .vv-menu-item.is-submenu-open > .vv-submenu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1024px), (hover: none) {
  .vv-public .vv-mobile-menu-toggle { display: inline-flex; }
  .vv-public .menu-container {
    display: none;
    max-height: min(72vh, 680px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.vv-menu-open .vv-public .menu-container,
  body.vv-menu-open .menu-container { display: block; }
  .vv-public .vv-menu-header .vv-menu-list {
    display: grid;
    gap: .25rem;
    align-items: stretch;
  }
  .vv-public .vv-menu-item > a,
  .vv-public .vv-submenu .vv-menu-item > a {
    width: 100%;
    white-space: normal;
    border-radius: 12px;
    padding: .72rem .85rem;
  }
  .vv-public .vv-submenu,
  .vv-public .vv-submenu .vv-submenu {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    min-width: 0;
    max-width: 100%;
    border: 0;
    border-left: 2px solid #dbe3ef;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: .15rem 0 .15rem .8rem;
    margin-left: .15rem;
  }
  .vv-public .vv-submenu .vv-submenu { margin-left: .35rem; }
  .vv-public .vv-submenu .vv-menu-item.has-children > a::after,
  .vv-public .vv-menu-level-0 > .vv-menu-item.has-children > a::after {
    content: "▾";
  }
}
/* Production — menus recursivos reais + busca única por escopo/idioma */
.vv-public .vv-menu-item.has-children,
.vv-shop-category-menu .vv-menu-item.has-children {
  position: relative;
}
.vv-public .vv-menu-item.has-children > a,
.vv-shop-category-menu .vv-menu-item.has-children > a {
  padding-right: 2.55rem;
}
.vv-public .vv-menu-item.has-children > a::after,
.vv-shop-category-menu .vv-menu-item.has-children > a::after {
  content: none !important;
}
.vv-submenu-toggle {
  position: absolute;
  top: 50%;
  right: .35rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .06);
  color: #475569;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.vv-submenu-toggle:hover,
.vv-submenu-toggle:focus-visible {
  background: rgba(37, 99, 235, .12);
  color: var(--accent);
  outline: 0;
}
.vv-submenu-toggle span {
  display: inline-flex;
  transition: transform .18s ease;
}
.vv-menu-item.is-submenu-open > .vv-submenu-toggle span,
.vv-menu-item:hover > .vv-submenu-toggle span,
.vv-menu-item:focus-within > .vv-submenu-toggle span {
  transform: rotate(180deg);
}
.vv-submenu .vv-menu-item.has-children > .vv-submenu-toggle span {
  transform: rotate(-90deg);
}
.vv-submenu .vv-menu-item.has-children.is-submenu-open > .vv-submenu-toggle span,
.vv-submenu .vv-menu-item.has-children:hover > .vv-submenu-toggle span,
.vv-submenu .vv-menu-item.has-children:focus-within > .vv-submenu-toggle span {
  transform: rotate(90deg);
}

.vv-shop-category-menu {
  display: block;
  margin: 0 0 1.2rem;
  padding: .75rem 0;
  border-bottom: 1px solid #e5eaf3;
  overflow: visible;
}
.vv-shop-category-menu > .vv-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .75rem;
  align-items: center;
}
.vv-shop-category-menu .vv-shop-category-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  max-width: min(78vw, 320px);
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid #dbe4f3;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.vv-shop-category-menu .vv-shop-category-link:hover,
.vv-shop-category-menu .vv-shop-category-link:focus-visible,
.vv-shop-category-menu .vv-shop-category-link.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
}
.vv-shop-category-menu .vv-submenu {
  display: none;
  position: absolute;
  top: calc(100% + .35rem);
  left: 0;
  z-index: 35;
  min-width: 240px;
  max-width: min(92vw, 360px);
  padding: .45rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}
.vv-shop-category-menu .vv-submenu .vv-submenu {
  top: -.45rem;
  left: calc(100% + .45rem);
}
.vv-shop-category-menu .vv-menu-item:hover > .vv-submenu,
.vv-shop-category-menu .vv-menu-item:focus-within > .vv-submenu,
.vv-shop-category-menu .vv-menu-item.is-submenu-open > .vv-submenu {
  display: block;
}
.vv-shop-category-menu .vv-submenu .vv-shop-category-link {
  width: 100%;
  max-width: none;
  justify-content: flex-start;
  border-radius: 12px;
  border-color: transparent;
  background: transparent;
}
.vv-shop-category-menu .vv-submenu .vv-shop-category-link:hover,
.vv-shop-category-menu .vv-submenu .vv-shop-category-link:focus-visible,
.vv-shop-category-menu .vv-submenu .vv-shop-category-link.is-active {
  background: #f1f5f9;
  border-color: transparent;
  color: var(--accent);
}
.vv-shop-header-search {
  border-color: rgba(37, 99, 235, .22);
  background: rgba(255, 255, 255, .9);
}
.vv-shop-header-search .vv-site-search-icon {
  background: #eff6ff;
  color: #1d4ed8;
}
.vv-shop-search-summary {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1.25rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 16px;
  background: #eff6ff;
}
.vv-shop-search-summary p { margin: 0; color: #1e293b; }

@media (max-width: 1024px), (hover: none) {
  .vv-submenu-toggle {
    top: .46rem;
    right: .45rem;
    transform: none;
  }
  .vv-submenu .vv-menu-item.has-children > .vv-submenu-toggle span,
  .vv-submenu .vv-menu-item.has-children.is-submenu-open > .vv-submenu-toggle span,
  .vv-submenu .vv-menu-item.has-children:hover > .vv-submenu-toggle span,
  .vv-submenu .vv-menu-item.has-children:focus-within > .vv-submenu-toggle span {
    transform: none;
  }
  .vv-menu-item.is-submenu-open > .vv-submenu-toggle span { transform: rotate(180deg); }
  .vv-public .vv-menu-item:not(.is-submenu-open) > .vv-submenu,
  .vv-shop-category-menu .vv-menu-item:not(.is-submenu-open) > .vv-submenu {
    display: none !important;
  }
  .vv-public .vv-menu-item.is-submenu-open > .vv-submenu,
  .vv-shop-category-menu .vv-menu-item.is-submenu-open > .vv-submenu {
    display: grid !important;
  }
  .vv-shop-category-menu > .vv-menu-list {
    display: grid;
    gap: .35rem;
    align-items: stretch;
  }
  .vv-shop-category-menu .vv-shop-category-link {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    white-space: normal;
    border-radius: 14px;
    padding: .72rem 2.7rem .72rem .85rem;
  }
  .vv-shop-category-menu .vv-submenu,
  .vv-shop-category-menu .vv-submenu .vv-submenu {
    position: static;
    min-width: 0;
    max-width: 100%;
    padding: .15rem 0 .15rem .8rem;
    margin: .15rem 0 .15rem .15rem;
    border: 0;
    border-left: 2px solid #dbe3ef;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
}


/* Production — menus das lojas iguais aos menus de conteúdo no cabeçalho */
.vv-shop-menu-container {
  padding: 0 0 12px !important;
  overflow: visible !important;
}
.vv-shop-category-menu.vv-menu-header,
.vv-shop-category-menu.vv-menu-shop {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: visible !important;
}
.vv-shop-category-menu.vv-menu-header > .vv-menu-list,
.vv-shop-category-menu.vv-menu-shop > .vv-menu-list {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px 16px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.vv-shop-category-menu.vv-menu-header .vv-menu-item,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item {
  position: relative !important;
  min-width: 0 !important;
  display: list-item !important;
}
.vv-shop-category-menu.vv-menu-header .vv-menu-item.has-children,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item.has-children {
  display: list-item !important;
}
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link {
  min-height: 40px !important;
  max-width: 100% !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #0f172a !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  overflow-wrap: normal !important;
}
.vv-shop-category-menu.vv-menu-header .vv-menu-item.has-children > .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item.has-children > .vv-shop-category-link {
  padding-right: 2.55rem !important;
}
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link:hover,
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link:focus-visible,
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link.is-active,
.vv-shop-category-menu.vv-menu-header .vv-menu-item:focus-within > .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link:hover,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link:focus-visible,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link.is-active,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item:focus-within > .vv-shop-category-link {
  background: #eef6ff !important;
  border-color: transparent !important;
  color: #2563eb !important;
}
.vv-shop-category-menu.vv-menu-header .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-submenu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 80 !important;
  display: block !important;
  min-width: 240px !important;
  max-width: min(92vw, 360px) !important;
  padding: 8px !important;
  margin: 0 !important;
  border: 1px solid #dbe3ef !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 22px 60px rgba(15,23,42,.14) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  pointer-events: none !important;
  transition: opacity .14s ease, visibility .14s ease, transform .14s ease !important;
}
.vv-shop-category-menu.vv-menu-header .vv-submenu .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-submenu {
  top: -8px !important;
  left: calc(100% + 8px) !important;
}
.vv-shop-category-menu.vv-menu-header .vv-menu-item:hover > .vv-submenu,
.vv-shop-category-menu.vv-menu-header .vv-menu-item:focus-within > .vv-submenu,
.vv-shop-category-menu.vv-menu-header .vv-menu-item.is-submenu-open > .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item:hover > .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item:focus-within > .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item.is-submenu-open > .vv-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link {
  width: 100% !important;
  justify-content: space-between !important;
  border-radius: 12px !important;
  padding: 0 12px !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}
@media (max-width: 1024px), (hover: none) {
  .vv-public .vv-mobile-menu-toggle { display: inline-flex !important; }
  .vv-shop-menu-container {
    display: none !important;
    max-height: min(72vh, 680px) !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body.vv-menu-open .vv-shop-menu-container { display: block !important; }
  .vv-shop-category-menu.vv-menu-header > .vv-menu-list,
  .vv-shop-category-menu.vv-menu-shop > .vv-menu-list {
    display: grid !important;
    gap: .25rem !important;
    align-items: stretch !important;
  }
  .vv-shop-category-menu.vv-menu-header .vv-menu-item,
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item,
  .vv-shop-category-menu.vv-menu-header .vv-menu-item.has-children,
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item.has-children {
    display: block !important;
  }
  .vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link {
    width: 100% !important;
    min-height: 40px !important;
    white-space: normal !important;
    justify-content: space-between !important;
    border-radius: 12px !important;
    padding: .72rem .85rem !important;
  }
  .vv-shop-category-menu.vv-menu-header .vv-menu-item.has-children > .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item.has-children > .vv-shop-category-link {
    padding-right: 2.7rem !important;
  }
  .vv-shop-category-menu.vv-menu-header .vv-submenu,
  .vv-shop-category-menu.vv-menu-header .vv-submenu .vv-submenu,
  .vv-shop-category-menu.vv-menu-shop .vv-submenu,
  .vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-submenu {
    position: static !important;
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: .15rem 0 .15rem .8rem !important;
    margin: .15rem 0 .15rem .15rem !important;
    border: 0 !important;
    border-left: 2px solid #dbe3ef !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .vv-shop-category-menu.vv-menu-header .vv-menu-item:not(.is-submenu-open) > .vv-submenu,
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item:not(.is-submenu-open) > .vv-submenu { display: none !important; }
  .vv-shop-category-menu.vv-menu-header .vv-menu-item.is-submenu-open > .vv-submenu,
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item.is-submenu-open > .vv-submenu { display: grid !important; }
}


/* Production — paginação compacta igual à das categorias em conteúdo/lojas e menus ligeiramente maiores */
.vv-pagination.vv-category-pagination,
.vv-pagination.vv-pagination-responsive {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: clamp(1.8rem, 4vw, 3rem) 0 !important;
  padding: .25rem 0 !important;
  overflow: visible !important;
}
.vv-pagination-track {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  max-width: 100% !important;
}
.vv-pagination-numbers {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  max-width: 100% !important;
}
.vv-page-link,
.vv-page-ellipsis {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: .62rem .86rem !important;
  border-radius: 999px !important;
  border: 1px solid #dbe3ef !important;
  background: #fff !important;
  color: #172033 !important;
  font-size: clamp(.95rem, .88rem + .18vw, 1.03rem) !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06) !important;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease !important;
}
.vv-page-link:hover,
.vv-page-link:focus-visible {
  background: #eef6ff !important;
  border-color: #bfdbfe !important;
  color: #2563eb !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .12) !important;
}
.vv-page-link.is-current {
  background: #0f172a !important;
  border-color: #0f172a !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .18) !important;
}
.vv-page-link.is-disabled {
  cursor: not-allowed !important;
  opacity: .48 !important;
  transform: none !important;
  box-shadow: none !important;
}
.vv-page-prev,
.vv-page-next {
  min-width: 112px !important;
  padding-inline: 1.05rem !important;
}
.vv-page-ellipsis {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #64748b !important;
  min-width: 26px !important;
}
.vv-shop-pagination {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: .5rem !important;
  margin: clamp(1.8rem, 4vw, 3rem) 0 !important;
}
.vv-public .vv-menu-header .vv-menu-item > a,
.vv-public .vv-menu-header .vv-submenu .vv-menu-item > a,
.vv-menu-header .vv-menu-item > a,
.vv-menu-header .vv-submenu-item > a,
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link {
  font-size: clamp(.98rem, .94rem + .16vw, 1.06rem) !important;
  line-height: 1.15 !important;
}
@media (max-width: 1024px), (hover: none) {
  .vv-pagination-track {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: .55rem !important;
  }
  .vv-pagination-numbers {
    grid-column: 1 / -1 !important;
    order: 2 !important;
    width: 100% !important;
  }
  .vv-page-prev { order: 1 !important; }
  .vv-page-next { order: 1 !important; }
  .vv-page-prev,
  .vv-page-next {
    width: 100% !important;
    min-width: 0 !important;
  }
  .vv-page-link,
  .vv-page-ellipsis {
    min-height: 44px !important;
  }
}
@media (max-width: 520px) {
  .vv-pagination.vv-category-pagination,
  .vv-pagination.vv-pagination-responsive { margin: 1.55rem 0 2.1rem !important; }
  .vv-pagination-track { gap: .45rem !important; }
  .vv-pagination-numbers { gap: .38rem !important; }
  .vv-page-link,
  .vv-page-ellipsis {
    min-width: 40px !important;
    min-height: 40px !important;
    padding: .54rem .72rem !important;
    font-size: .95rem !important;
  }
  .vv-page-prev,
  .vv-page-next { padding-inline: .7rem !important; }
  .vv-public .vv-menu-header .vv-menu-item > a,
  .vv-public .vv-menu-header .vv-submenu .vv-menu-item > a,
  .vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link {
    font-size: 1rem !important;
  }
}

/* Production — hover de títulos/cards, seta reta no Leia Mais e tipografia alinhada conteúdo/lojas */
.vv-public .vv-menu-header .vv-menu-item > a,
.vv-public .vv-menu-header .vv-submenu .vv-menu-item > a,
.vv-menu-header .vv-menu-item > a,
.vv-menu-header .vv-submenu-item > a,
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link {
  font-weight: 720 !important;
  letter-spacing: -.015em !important;
}

.vv-article-card,
.vv-shop-card,
.vv-editorial-item,
.vv-product-feed-item {
  font-family: var(--font-family, var(--vv-font-family, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif)) !important;
}

.vv-article-card .vv-feed-meta,
.vv-shop-card .vv-feed-meta,
.vv-editorial-item .vv-feed-meta,
.vv-product-feed-item .vv-feed-meta {
  font-size: clamp(.78rem, .74rem + .12vw, .86rem) !important;
  font-weight: 720 !important;
  letter-spacing: -.01em !important;
  line-height: 1.25 !important;
}

.vv-article-card .vv-feed-title,
.vv-shop-card .vv-feed-title,
.vv-editorial-item .vv-feed-title,
.vv-product-feed-item .vv-feed-title {
  font-family: inherit !important;
  font-size: clamp(1.42rem, 1.16rem + .88vw, 1.92rem) !important;
  font-weight: 760 !important;
  line-height: 1.18 !important;
  letter-spacing: -.04em !important;
}

.vv-article-card .vv-feed-title a,
.vv-shop-card .vv-feed-title a,
.vv-editorial-item .vv-feed-title a,
.vv-product-feed-item .vv-feed-title a {
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color .18s ease, text-shadow .18s ease !important;
}

.vv-article-card .vv-feed-title a:hover,
.vv-article-card .vv-feed-title a:focus-visible,
.vv-shop-card .vv-feed-title a:hover,
.vv-shop-card .vv-feed-title a:focus-visible,
.vv-editorial-item .vv-feed-title a:hover,
.vv-editorial-item .vv-feed-title a:focus-visible,
.vv-product-feed-item .vv-feed-title a:hover,
.vv-product-feed-item .vv-feed-title a:focus-visible {
  color: #7c3aed !important;
  text-shadow: 0 10px 30px rgba(124, 58, 237, .10) !important;
}

.vv-article-card .vv-feed-summary,
.vv-shop-card .vv-feed-summary,
.vv-editorial-item .vv-feed-summary,
.vv-product-feed-item .vv-feed-summary {
  font-family: inherit !important;
  font-size: clamp(1rem, .94rem + .22vw, 1.14rem) !important;
  line-height: 1.58 !important;
  font-weight: 420 !important;
  color: #6b7280 !important;
  letter-spacing: .01em !important;
}

.vv-feed-button,
.vv-read-more-link,
.vv-shop-card__actions .vv-button {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease !important;
}

.vv-feed-button:hover,
.vv-feed-button:focus-visible,
.vv-read-more-link:hover,
.vv-read-more-link:focus-visible,
.vv-shop-card__actions .vv-button:hover,
.vv-shop-card__actions .vv-button:focus-visible {
  transform: translateY(-1px) !important;
}

.vv-feed-button .vv-feed-button__icon,
.vv-read-more-link .vv-feed-button__icon,
.vv-shop-card__actions .vv-button .vv-feed-button__icon {
  font-size: 0 !important;
  line-height: 1 !important;
  display: inline-grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.vv-feed-button .vv-feed-button__icon::before,
.vv-read-more-link .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button .vv-feed-button__icon::before {
  content: "↗";
  display: inline-block !important;
  font-size: .98rem !important;
  line-height: 1 !important;
  transform: translateX(0) rotate(0deg) !important;
  transform-origin: center !important;
  transition: transform .18s ease, content .18s ease !important;
}

.vv-feed-button:hover .vv-feed-button__icon::before,
.vv-feed-button:focus-visible .vv-feed-button__icon::before,
.vv-read-more-link:hover .vv-feed-button__icon::before,
.vv-read-more-link:focus-visible .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:hover .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:focus-visible .vv-feed-button__icon::before {
  content: "→";
  transform: translateX(2px) rotate(0deg) !important;
}

@media (max-width: 640px) {
  .vv-article-card .vv-feed-title,
  .vv-shop-card .vv-feed-title,
  .vv-editorial-item .vv-feed-title,
  .vv-product-feed-item .vv-feed-title {
    font-size: clamp(1.18rem, 1.05rem + .7vw, 1.42rem) !important;
    letter-spacing: -.03em !important;
  }
  .vv-article-card .vv-feed-summary,
  .vv-shop-card .vv-feed-summary,
  .vv-editorial-item .vv-feed-summary,
  .vv-product-feed-item .vv-feed-summary {
    font-size: .98rem !important;
  }
  .vv-public .vv-menu-header .vv-menu-item > a,
  .vv-public .vv-menu-header .vv-submenu .vv-menu-item > a,
  .vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-shop-category-link {
    font-weight: 700 !important;
  }
}

/* Production — seta reta com mesma caixa/peso visual e botão Leia Mais em negrito */
.vv-feed-button,
.vv-read-more-link,
.vv-shop-card__actions .vv-button {
  font-weight: 850 !important;
}

.vv-feed-button .vv-feed-button__icon,
.vv-read-more-link .vv-feed-button__icon,
.vv-shop-card__actions .vv-button .vv-feed-button__icon {
  width: 1.08em !important;
  height: 1.08em !important;
  min-width: 1.08em !important;
  flex: 0 0 1.08em !important;
  font-size: 1em !important;
  line-height: 1 !important;
  display: inline-grid !important;
  place-items: center !important;
  overflow: visible !important;
}

.vv-feed-button .vv-feed-button__icon::before,
.vv-read-more-link .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button .vv-feed-button__icon::before {
  content: "↗" !important;
  width: 1.08em !important;
  height: 1.08em !important;
  display: inline-grid !important;
  place-items: center !important;
  font-size: 1em !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  transform: translateX(0) rotate(0deg) !important;
  transform-origin: 50% 50% !important;
  transition: transform .18s ease !important;
}

.vv-feed-button:hover .vv-feed-button__icon::before,
.vv-feed-button:focus-visible .vv-feed-button__icon::before,
.vv-read-more-link:hover .vv-feed-button__icon::before,
.vv-read-more-link:focus-visible .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:hover .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:focus-visible .vv-feed-button__icon::before {
  content: "↗" !important;
  font-size: 1em !important;
  font-weight: 850 !important;
  transform: translateX(2px) rotate(45deg) !important;
}

/* Production — seta desenhada por máscara SVG: mesma escala, mesma espessura, só muda a rotação */
.vv-feed-button,
.vv-read-more-link,
.vv-shop-card__actions .vv-button {
  font-weight: 900 !important;
}

.vv-feed-button::after,
.vv-feed-button.read-more::after,
.vv-read-more-link::after,
.vv-read-more-link.read-more::after,
.vv-shop-card__actions .vv-button::after {
  content: none !important;
  display: none !important;
}

.vv-feed-button .vv-feed-button__icon,
.vv-read-more-link .vv-feed-button__icon,
.vv-shop-card__actions .vv-button .vv-feed-button__icon {
  --vv-arrow-rotation: -45deg;
  position: relative !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  flex: 0 0 30px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #020617 !important;
  color: #fff !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  margin-right: -.62rem !important;
}

.vv-feed-button .vv-feed-button__icon::before,
.vv-read-more-link .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button .vv-feed-button__icon::before {
  content: "" !important;
  display: block !important;
  width: 14px !important;
  height: 14px !important;
  background-color: currentColor !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8h10.6M8.9 3.8 13.1 8l-4.2 4.2' fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2.5 8h10.6M8.9 3.8 13.1 8l-4.2 4.2' fill='none' stroke='black' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-size: 14px 14px !important;
  mask-size: 14px 14px !important;
  transform: rotate(var(--vv-arrow-rotation)) !important;
  transform-origin: center center !important;
  transition: transform .18s ease !important;
}

.vv-feed-button .vv-feed-button__icon::after,
.vv-read-more-link .vv-feed-button__icon::after,
.vv-shop-card__actions .vv-button .vv-feed-button__icon::after {
  content: none !important;
  display: none !important;
}

.vv-feed-button:hover .vv-feed-button__icon,
.vv-feed-button:focus-visible .vv-feed-button__icon,
.vv-read-more-link:hover .vv-feed-button__icon,
.vv-read-more-link:focus-visible .vv-feed-button__icon,
.vv-shop-card__actions .vv-button:hover .vv-feed-button__icon,
.vv-shop-card__actions .vv-button:focus-visible .vv-feed-button__icon {
  --vv-arrow-rotation: 0deg;
}

.vv-feed-button:hover .vv-feed-button__icon::before,
.vv-feed-button:focus-visible .vv-feed-button__icon::before,
.vv-read-more-link:hover .vv-feed-button__icon::before,
.vv-read-more-link:focus-visible .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:hover .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:focus-visible .vv-feed-button__icon::before {
  width: 14px !important;
  height: 14px !important;
  -webkit-mask-size: 14px 14px !important;
  mask-size: 14px 14px !important;
  background-color: currentColor !important;
}


/* Production — hover do botão Leia Mais igual ao modelo: pílula preta, texto branco e seta reta branca sem alterar escala */
.vv-feed-button,
.vv-read-more-link,
.vv-shop-card__actions .vv-button {
  font-weight: 900 !important;
}

.vv-feed-button:hover,
.vv-feed-button:focus-visible,
.vv-read-more-link:hover,
.vv-read-more-link:focus-visible,
.vv-shop-card__actions .vv-button:hover,
.vv-shop-card__actions .vv-button:focus-visible {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .18) !important;
}

.vv-feed-button:hover .vv-feed-button__icon,
.vv-feed-button:focus-visible .vv-feed-button__icon,
.vv-read-more-link:hover .vv-feed-button__icon,
.vv-read-more-link:focus-visible .vv-feed-button__icon,
.vv-shop-card__actions .vv-button:hover .vv-feed-button__icon,
.vv-shop-card__actions .vv-button:focus-visible .vv-feed-button__icon {
  --vv-arrow-rotation: 0deg;
  background: transparent !important;
  color: #fff !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  flex-basis: 30px !important;
  margin-right: -.62rem !important;
  transform: none !important;
}

.vv-feed-button:hover .vv-feed-button__icon::before,
.vv-feed-button:focus-visible .vv-feed-button__icon::before,
.vv-read-more-link:hover .vv-feed-button__icon::before,
.vv-read-more-link:focus-visible .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:hover .vv-feed-button__icon::before,
.vv-shop-card__actions .vv-button:focus-visible .vv-feed-button__icon::before {
  width: 14px !important;
  height: 14px !important;
  -webkit-mask-size: 14px 14px !important;
  mask-size: 14px 14px !important;
  background-color: currentColor !important;
  transform: rotate(0deg) !important;
}


/* Production — rodapé responsivo/recursivo para desktop, tablet, celular e outras telas */
.site-footer[data-vv-footer-responsive="production"] {
  padding: clamp(32px, 5vw, 52px) 0;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-brand .logo {
  width: max-content;
  max-width: 100%;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-brand p {
  margin: 0;
  max-width: 62ch;
  line-height: 1.72;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu {
  display: block;
  width: 100%;
  min-width: 0;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer,
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-list {
  width: 100%;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 100%;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-item > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 40px;
  max-width: 100%;
  padding: 9px 14px;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .has-children > a {
  margin-bottom: 8px;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu-toggle {
  display: none !important;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu {
  position: static;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu .vv-menu-item {
  width: 100%;
  align-items: flex-end;
}
.site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu .vv-menu-item > a {
  min-height: 34px;
  padding: 6px 10px;
  font-size: .95rem;
  background: rgba(255,255,255,.04);
}
@media (max-width: 1100px) {
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-list {
    justify-content: flex-start;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-item,
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu,
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu .vv-menu-item {
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .site-footer[data-vv-footer-responsive="production"] {
    padding: 28px 0;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-grid {
    gap: 18px;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-brand {
    align-items: center;
    text-align: center;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-brand .logo {
    margin-inline: auto;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-brand p {
    max-width: 100%;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-list {
    justify-content: center;
    gap: 10px;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-item,
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu .vv-menu-item {
    width: 100%;
    align-items: stretch;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-menu-footer .vv-menu-item > a,
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu .vv-menu-item > a {
    width: 100%;
    justify-content: center;
  }
  .site-footer[data-vv-footer-responsive="production"] .vv-footer-menu .vv-submenu {
    padding-top: 0;
    align-items: stretch;
  }
}


/* Production — carrossel com títulos apenas e rotação de todos os artigos/produtos */
.vv-featured-spotlight[data-vv-spotlight="production"] {
  padding: 10px 0 0;
}
.vv-featured-spotlight .vv-featured-spotlight-inner {
  position: relative;
}
.vv-featured-spotlight .vv-spotlight-stage {
  position: relative;
  min-height: 420px;
}
.vv-featured-spotlight .vv-spotlight-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .42s ease, transform .42s ease, visibility .42s ease;
  pointer-events: none;
}
.vv-featured-spotlight .vv-spotlight-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.vv-featured-spotlight .vv-spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(280px, .95fr);
  gap: 16px;
  align-items: stretch;
}
.vv-featured-spotlight .vv-spotlight-main-shell {
  position: relative;
  min-width: 0;
}
.vv-featured-spotlight .vv-spotlight-side-stack {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.vv-featured-spotlight .vv-spotlight-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  min-width: 0;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
  isolation: isolate;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease;
}
.vv-featured-spotlight .vv-spotlight-card:hover,
.vv-featured-spotlight .vv-spotlight-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .18);
}
.vv-featured-spotlight .vv-spotlight-card:focus-visible {
  outline: 2px solid rgba(124, 58, 237, .85);
  outline-offset: 3px;
}
.vv-featured-spotlight .vv-spotlight-card-media,
.vv-featured-spotlight .vv-spotlight-card-fallback {
  position: absolute;
  inset: 0;
}
.vv-featured-spotlight .vv-spotlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .55s ease, filter .35s ease;
}
.vv-featured-spotlight .vv-spotlight-card:hover img,
.vv-featured-spotlight .vv-spotlight-card:focus-visible img {
  transform: scale(1.065);
  filter: saturate(1.05);
}
.vv-featured-spotlight .vv-spotlight-card-fallback {
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 30%), linear-gradient(135deg, #111827, #1d4ed8 60%, #0f172a);
}
.vv-featured-spotlight .vv-spotlight-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 23, .08) 0%, rgba(7, 11, 23, .38) 45%, rgba(7, 11, 23, .9) 100%);
  z-index: 1;
}
.vv-featured-spotlight .vv-spotlight-card-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.vv-featured-spotlight .vv-spotlight-main-shell .vv-spotlight-card-main .vv-spotlight-card-content {
  padding-right: 168px;
}
.vv-featured-spotlight .vv-spotlight-card-main {
  min-height: 420px;
}
.vv-featured-spotlight .vv-spotlight-card-side {
  min-height: 129px;
}
.vv-featured-spotlight .vv-spotlight-card-side .vv-spotlight-card-content {
  gap: 8px;
  padding: 16px;
}
.vv-featured-spotlight .vv-spotlight-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.vv-featured-spotlight .vv-spotlight-card-product .vv-spotlight-badge {
  background: #0f766e;
}
.vv-featured-spotlight .vv-spotlight-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.vv-featured-spotlight .vv-spotlight-card-main .vv-spotlight-title {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.08;
  -webkit-line-clamp: 3;
}
.vv-featured-spotlight .vv-spotlight-card-side .vv-spotlight-title {
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.22;
  -webkit-line-clamp: 3;
}
.vv-featured-spotlight .vv-spotlight-summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  color: rgba(255,255,255,.88);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.45;
}
.vv-featured-spotlight .vv-spotlight-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(7, 11, 23, .62);
  backdrop-filter: blur(8px);
  max-width: max-content;
}
.vv-featured-spotlight .vv-spotlight-controls-inside {
  right: 14px;
  bottom: 14px;
}
.vv-featured-spotlight .vv-spotlight-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.vv-featured-spotlight .vv-spotlight-control:hover,
.vv-featured-spotlight .vv-spotlight-control:focus-visible {
  background: rgba(255,255,255,.22);
  transform: translateY(-1px);
  outline: none;
}
.vv-featured-spotlight .vv-spotlight-dots {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.vv-featured-spotlight .vv-spotlight-dot {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.vv-featured-spotlight .vv-spotlight-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  transition: width .2s ease, background .2s ease, opacity .2s ease;
}
.vv-featured-spotlight .vv-spotlight-dot.is-window-visible {
  display: inline-flex;
}
.vv-featured-spotlight .vv-spotlight-dot.is-active::before {
  width: 18px;
  background: #16a34a;
}
@media (max-width: 1100px) {
  .vv-featured-spotlight .vv-spotlight-stage {
    min-height: 620px;
  }
  .vv-featured-spotlight .vv-spotlight-layout {
    grid-template-columns: 1fr;
  }
  .vv-featured-spotlight .vv-spotlight-card-main {
    min-height: 360px;
  }
  .vv-featured-spotlight .vv-spotlight-side-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .vv-featured-spotlight .vv-spotlight-card-side {
    min-height: 180px;
  }
}
@media (max-width: 760px) {
  .vv-featured-spotlight[data-vv-spotlight="production"] {
    padding-top: 6px;
  }
  .vv-featured-spotlight .vv-spotlight-stage {
    min-height: 880px;
  }
  .vv-featured-spotlight .vv-spotlight-card-main {
    min-height: 300px;
  }
  .vv-featured-spotlight .vv-spotlight-side-stack {
    grid-template-columns: 1fr;
  }
  .vv-featured-spotlight .vv-spotlight-card-side {
    min-height: 140px;
  }
  .vv-featured-spotlight .vv-spotlight-card-main .vv-spotlight-title {
    font-size: clamp(1.35rem, 8vw, 1.95rem);
  }
  .vv-featured-spotlight .vv-spotlight-controls {
    right: 10px;
    left: auto;
    bottom: 10px;
    justify-content: center;
    gap: 6px;
    padding: 5px 7px;
  }
  .vv-featured-spotlight .vv-spotlight-control {
    width: 26px;
    height: 26px;
  }
  .vv-featured-spotlight .vv-spotlight-main-shell .vv-spotlight-card-main .vv-spotlight-card-content {
    padding-right: 20px;
    padding-bottom: 78px;
  }
}


/* Production — carrossel fora do cabeçalho fixo: abaixo do header e rolando com o conteúdo */
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
  position: relative;
  z-index: 1;
  background: transparent;
  margin-top: 0;
  margin-bottom: clamp(22px, 4vw, 44px);
}
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] .vv-featured-spotlight[data-vv-spotlight="production"] {
  padding-top: clamp(14px, 2.4vw, 26px);
}
.vv-public .site-header .vv-featured-spotlight[data-vv-spotlight="production"] {
  display: none !important;
}
@media (max-width: 760px) {
  .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
    margin-bottom: 28px;
  }
  .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] .vv-featured-spotlight[data-vv-spotlight="production"] {
    padding-top: 10px;
  }
}


/* Production — somente títulos nos cards; sem badges, resumos ou metadados no carrossel */
.vv-featured-spotlight[data-vv-spotlight="production"] .vv-spotlight-badge,
.vv-featured-spotlight[data-vv-spotlight="production"] .vv-spotlight-summary {
  display: none !important;
}
.vv-featured-spotlight[data-vv-spotlight="production"] .vv-spotlight-title-only {
  gap: 0;
}
.vv-featured-spotlight[data-vv-spotlight="production"] .vv-spotlight-card-main .vv-spotlight-title-only {
  padding-bottom: 22px;
}
.vv-featured-spotlight[data-vv-spotlight="production"] .vv-spotlight-card-side .vv-spotlight-title-only {
  padding-bottom: 16px;
}


/* Production — reduz o espaço entre o carrossel e a primeira seção (ex.: Artigos recentes) */
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
  margin-bottom: clamp(8px, 1.8vw, 18px);
}
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content {
  padding-top: clamp(8px, 1.8vw, 18px);
}
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content > .vv-content-section:first-child,
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content > .vv-category-section:first-child,
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content > .vv-page-layout-shop_hub:first-child {
  margin-top: 0;
}
@media (max-width: 760px) {
  .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
    margin-bottom: 12px;
  }
  .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content {
    padding-top: 10px;
  }
}

/* Production — afasta um pouco o carrossel do menu para criar um pequeno respiro acima */
.vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
  margin-top: clamp(8px, 1.4vw, 14px);
}
@media (max-width: 760px) {
  .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
    margin-top: 8px;
  }
}

/* Production — largura padrão única alinhada ao card/carrossel em todo o site */
body.vv-public {
  --vv-site-standard-width: 1180px;
  --vv-site-standard-gutter: clamp(20px, 3.5vw, 40px);
}
.vv-public .container,
.vv-public .site-header .vv-topbar-inner,
.vv-public .site-header .header-inner,
.vv-public .site-header .menu-container,
.vv-public .main-content.container,
.vv-public .site-footer .vv-footer-grid,
.vv-public .vv-featured-spotlight .vv-featured-spotlight-inner {
  width: min(var(--vv-site-standard-width), calc(100% - (var(--vv-site-standard-gutter) * 2))) !important;
  max-width: var(--vv-site-standard-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.vv-public .main-content > *,
.vv-public .vv-content-section,
.vv-public .vv-category-section,
.vv-public .article-detail,
.vv-public .page-detail,
.vv-public .vv-business-suite,
.vv-public .vv-shop-index,
.vv-public .vv-shop-product,
.vv-public .vv-search-hero,
.vv-public .vv-document-public {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.vv-public .vv-home-hero,
.vv-public .vv-featured-spotlight .vv-spotlight-layout,
.vv-public .vv-shop-grid,
.vv-public .vv-article-layout,
.vv-public .category-grid,
.vv-public .vv-footer-grid {
  max-width: 100%;
}
@media (max-width: 900px) {
  body.vv-public {
    --vv-site-standard-gutter: 14px;
  }
}
@media (max-width: 640px) {
  body.vv-public {
    --vv-site-standard-gutter: 11px;
  }
}


/* Production — padronização visual global de imagens públicas por CSS, sem limitar upload no admin */
body.vv-public {
  --vv-image-card-ratio: 16 / 9;
  --vv-image-gallery-ratio: 16 / 10;
  --vv-image-standard-bg: #f8fafc;
  --vv-image-standard-radius: 5px;
}
.vv-public .vv-card-media,
.vv-public .vv-editorial-media,
.vv-public .vv-affiliate-image-frame,
.vv-public .article-gallery-item,
.vv-public .vv-blog-featured a,
.vv-public .vv-blog-list-item a,
.vv-public .vv-spotlight-card-media {
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  background: var(--vv-image-standard-bg) !important;
}
.vv-public .vv-card-media,
.vv-public .vv-editorial-media,
.vv-public .vv-affiliate-image-frame,
.vv-public .vv-blog-featured a,
.vv-public .vv-blog-list-item a {
  aspect-ratio: var(--vv-image-card-ratio) !important;
  border-radius: var(--vv-image-standard-radius) !important;
}
.vv-public .article-gallery-item {
  aspect-ratio: auto !important;
}
.vv-public .article-gallery-item img {
  aspect-ratio: var(--vv-image-gallery-ratio) !important;
}
.vv-public .vv-card-media > img,
.vv-public .vv-editorial-media > img,
.vv-public .vv-affiliate-image-frame > img,
.vv-public .vv-spotlight-card-media > img,
.vv-public .article-gallery-item img,
.vv-public .article-card > img,
.vv-public .vv-blog-featured img,
.vv-public .vv-blog-list-item img,
.vv-public .vv-blog-mini img,
.vv-public .affiliate-banner img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  background: var(--vv-image-standard-bg) !important;
  border-radius: inherit !important;
}
.vv-public .vv-shop-list .vv-shop-card img,
.vv-public .vv-product-feed .vv-product-card-public img,
.vv-public .vv-product-feed .vv-card-media img,
.vv-public .vv-affiliate-product-image:not(.hero) {
  object-fit: cover !important;
}
.vv-public .article-detail > img.hero,
.vv-public .page-detail > img.hero {
  width: 100% !important;
  aspect-ratio: var(--vv-image-card-ratio) !important;
  height: auto !important;
  max-height: clamp(320px, 48vw, 560px) !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  background: var(--vv-image-standard-bg) !important;
}
.vv-public .vv-shop-product .vv-affiliate-product-image.hero,
.vv-public .vv-shop-product img.hero {
  width: 100% !important;
  aspect-ratio: var(--vv-image-card-ratio) !important;
  height: auto !important;
  max-height: 460px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
}
.vv-public .article-body img,
.vv-public .vv-document-public img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
@media (max-width: 860px) {
  .vv-public .vv-card-media,
  .vv-public .vv-editorial-media,
  .vv-public .vv-affiliate-image-frame,
  .vv-public .vv-blog-featured a,
  .vv-public .vv-blog-list-item a {
    aspect-ratio: var(--vv-image-card-ratio) !important;
  }
  .vv-public .vv-card-media > img,
  .vv-public .vv-editorial-media > img,
  .vv-public .vv-affiliate-image-frame > img,
  .vv-public .vv-shop-list .vv-shop-card img,
  .vv-public .vv-product-feed .vv-product-card-public img {
    height: 100% !important;
  }
}


/* Production — banners públicos padronizados, alinhados ao card e responsivos */
.vv-public .banner-strip[data-vv-banner-strip="production"] {
  width: 100% !important;
  max-width: 100% !important;
  display: grid !important;
  gap: clamp(12px, 1.8vw, 18px) !important;
  margin: clamp(14px, 2.2vw, 26px) 0 !important;
}
.vv-public .banner-strip[data-vv-banner-strip="production"]:first-child {
  margin-top: 0 !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(132px, 15vw, 188px) !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 42%) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(14px, 2.2vw, 24px) !important;
  padding: clamp(12px, 1.8vw, 18px) !important;
  border: 1px solid rgba(148, 163, 184, .28) !important;
  border-radius: calc(var(--radius, 18px) + 10px) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.94)) !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: inherit !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] .vv-banner-media,
.vv-public .affiliate-banner[data-vv-banner="production"] picture {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
  border-radius: calc(var(--radius, 18px) + 2px) !important;
  background: var(--vv-image-standard-bg, #f8fafc) !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  border-radius: inherit !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] .banner-copy {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] .banner-copy strong {
  color: var(--ink, #0f172a) !important;
  font-size: clamp(1.08rem, 2vw, 1.55rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -.025em !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] .banner-copy small {
  color: var(--muted, #64748b) !important;
  font-size: clamp(.88rem, 1.2vw, 1rem) !important;
  line-height: 1.45 !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"] .banner-copy em {
  width: auto !important;
  max-width: 100% !important;
  margin-top: 4px !important;
  padding: 9px 14px !important;
  border-radius: var(--button-radius, 999px) !important;
  background: var(--accent, #16a34a) !important;
  color: #fff !important;
  font-style: normal !important;
  font-weight: 800 !important;
  text-align: center !important;
  white-space: normal !important;
}
.vv-public .affiliate-banner[data-vv-banner="production"]:hover,
.vv-public .affiliate-banner[data-vv-banner="production"]:focus-visible {
  transform: translateY(-1px) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .10) !important;
  outline: none !important;
}
.vv-public .affiliate-banner-external[data-vv-banner="production"] {
  display: block !important;
  min-height: 0 !important;
  padding: clamp(10px, 1.6vw, 16px) !important;
}
.vv-public .affiliate-banner-external[data-vv-banner="production"] iframe,
.vv-public .affiliate-banner-external[data-vv-banner="production"] img,
.vv-public .affiliate-banner-external[data-vv-banner="production"] ins {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 760px) {
  .vv-public .affiliate-banner[data-vv-banner="production"] {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    gap: 12px !important;
    padding: 12px !important;
  }
  .vv-public .affiliate-banner[data-vv-banner="production"] .banner-copy {
    align-items: stretch !important;
  }
  .vv-public .affiliate-banner[data-vv-banner="production"] .banner-copy em {
    width: 100% !important;
  }
}


/* Production — restaura cards completos; Production padroniza só imagens, não esconde conteúdo */
.vv-public .article-card:not(.vv-spotlight-card) .vv-card-body,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-card-body,
.vv-public .product-card:not(.vv-spotlight-card) .vv-card-body,
.vv-public .vv-editorial-item:not(.vv-spotlight-card) .vv-card-body,
.vv-public .vv-product-feed-item:not(.vv-spotlight-card) .vv-card-body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: clamp(8px, 1.2vw, 14px) !important;
  min-width: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}
.vv-public .article-card:not(.vv-spotlight-card) .vv-feed-meta,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-feed-meta,
.vv-public .product-card:not(.vv-spotlight-card) .vv-feed-meta,
.vv-public .vv-editorial-item:not(.vv-spotlight-card) .vv-feed-meta,
.vv-public .vv-product-feed-item:not(.vv-spotlight-card) .vv-feed-meta,
.vv-public .article-card:not(.vv-spotlight-card) .vv-feed-summary,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-feed-summary,
.vv-public .product-card:not(.vv-spotlight-card) .vv-feed-summary,
.vv-public .vv-editorial-item:not(.vv-spotlight-card) .vv-feed-summary,
.vv-public .vv-product-feed-item:not(.vv-spotlight-card) .vv-feed-summary,
.vv-public .vv-product-brand,
.vv-public .vv-product-feed-note {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  transform: none !important;
}
.vv-public .article-card:not(.vv-spotlight-card) .vv-feed-button,
.vv-public .article-card:not(.vv-spotlight-card) .vv-read-more-link,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-feed-button,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-cta-button,
.vv-public .product-card:not(.vv-spotlight-card) .vv-feed-button,
.vv-public .product-card:not(.vv-spotlight-card) .vv-cta-button,
.vv-public .vv-editorial-item:not(.vv-spotlight-card) .vv-feed-button,
.vv-public .vv-product-feed-item:not(.vv-spotlight-card) .vv-feed-button {
  display: inline-flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: auto !important;
  max-width: max-content !important;
  height: auto !important;
  overflow: visible !important;
}
.vv-public .article-card:not(.vv-spotlight-card) .vv-feed-title,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-feed-title,
.vv-public .product-card:not(.vv-spotlight-card) .vv-feed-title,
.vv-public .vv-editorial-item:not(.vv-spotlight-card) .vv-feed-title,
.vv-public .vv-product-feed-item:not(.vv-spotlight-card) .vv-feed-title {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.vv-public .article-card:not(.vv-spotlight-card) .vv-card-media,
.vv-public .vv-product-card-public:not(.vv-spotlight-card) .vv-card-media,
.vv-public .product-card:not(.vv-spotlight-card) .vv-card-media,
.vv-public .vv-editorial-item:not(.vv-spotlight-card) .vv-card-media,
.vv-public .vv-product-feed-item:not(.vv-spotlight-card) .vv-card-media {
  position: relative !important;
  z-index: 1 !important;
  flex: none !important;
}
.vv-public .vv-featured-spotlight .vv-spotlight-summary,
.vv-public .vv-featured-spotlight .vv-spotlight-badge {
  display: none !important;
}
/* 2.0.25 — busca pública legível e carrossel com altura derivada do conteúdo ativo. */
    .vv-public .vv-site-header-search {
      width: min(100%, 560px) !important;
      min-width: 0 !important;
      min-height: 52px !important;
      display: grid !important;
      grid-template-columns: 34px minmax(0, 1fr) auto !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 6px !important;
      overflow: visible !important;
    }
    .vv-public .vv-site-header-search:focus-within {
      border-color: rgba(37, 99, 235, .72) !important;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, .16), 0 10px 26px rgba(15, 23, 42, .06) !important;
    }
    .vv-public .vv-site-search-icon { width: 34px !important; height: 34px !important; flex: none !important; }
    .vv-public .vv-site-search-icon .vv-cms-icon { width: 17px !important; height: 17px !important; min-width: 17px !important; }
    .vv-public .vv-site-header-search input[type="search"] {
      width: 100% !important;
      min-width: 0 !important;
      min-height: 38px !important;
      margin: 0 !important;
      padding: 7px 4px !important;
      border: 0 !important;
      border-radius: 0 !important;
      outline: 0 !important;
      box-shadow: none !important;
      background: transparent !important;
      color: var(--text, #172033) !important;
      appearance: none !important;
    }
    .vv-public-runtime-production .vv-site-header-search input[type="search"]:focus-visible,
    .vv-public .vv-site-header-search input[type="search"]:focus-visible { outline: 0 !important; box-shadow: none !important; }
    .vv-public .vv-site-search-submit {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      min-width: max-content !important;
      min-height: 40px !important;
      margin: 0 !important;
      padding: .55rem .95rem !important;
      border: 0 !important;
      border-radius: 999px !important;
      background: var(--accent, #2563eb) !important;
      color: #fff !important;
      font: inherit !important;
      font-weight: 850 !important;
      line-height: 1 !important;
      white-space: nowrap !important;
      opacity: 1 !important;
      visibility: visible !important;
      cursor: pointer !important;
    }
    .vv-public .vv-site-search-submit:hover,
    .vv-public .vv-site-search-submit:focus-visible { background: var(--brand, #0f172a) !important; color: #fff !important; }

    .vv-public .vv-featured-spotlight .vv-spotlight-stage { min-height: 0 !important; height: auto !important; }
    .vv-public .vv-featured-spotlight .vv-spotlight-slide { position: absolute !important; inset: 0 !important; }
    .vv-public .vv-featured-spotlight .vv-spotlight-slide.is-active { position: relative !important; inset: auto !important; }
    .vv-public .vv-featured-spotlight .vv-spotlight-layout { min-height: 0 !important; }
    .vv-public .vv-featured-spotlight .vv-spotlight-side-stack {
      min-height: 0 !important;
      grid-template-rows: none !important;
      grid-auto-rows: minmax(0, 1fr) !important;
    }
    .vv-public .vv-featured-spotlight .vv-spotlight-layout.no-hero { grid-template-columns: 1fr !important; }
    .vv-public .vv-featured-spotlight .vv-spotlight-layout.no-hero .vv-spotlight-side-stack {
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
      grid-auto-rows: minmax(180px, auto) !important;
    }
    .vv-public .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] {
      margin-bottom: clamp(8px, 1.4vw, 16px) !important;
    }
    .vv-public .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content {
      padding-top: clamp(8px, 1.4vw, 16px) !important;
    }
    @media (max-width: 1100px) {
      .vv-public .vv-featured-spotlight .vv-spotlight-side-stack {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)) !important;
        grid-template-rows: none !important;
        grid-auto-rows: minmax(180px, auto) !important;
      }
    }
    @media (max-width: 760px) {
      .vv-public .vv-site-header-search { width: 100% !important; max-width: none !important; margin-top: 12px !important; }
      .vv-public .vv-featured-spotlight .vv-spotlight-side-stack,
      .vv-public .vv-featured-spotlight .vv-spotlight-layout.no-hero .vv-spotlight-side-stack {
        grid-template-columns: 1fr !important;
        grid-auto-rows: minmax(140px, auto) !important;
      }
      .vv-public .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] { margin-bottom: 8px !important; }
      .vv-public .vv-featured-spotlight-shell[data-vv-spotlight-shell="production"] + .main-content { padding-top: 8px !important; }
    }
    @media (max-width: 380px) {
      .vv-public .vv-site-header-search { grid-template-columns: 30px minmax(0, 1fr) auto !important; gap: 5px !important; }
      .vv-public .vv-site-search-submit { padding-inline: .68rem !important; font-size: .86rem !important; }
    }


/* moved-from-vv-editorial-feed-layout-production-2.0.42 */
/* vv-editorial-feed-layout-production
   Lista editorial: imagem esquerda, meta, título, resumo e CTA — aplicada a artigos e produtos. */
.vv-editorial-feed,
.vv-product-feed,
.vv-feed-list,
.vv-search-section .vv-article-grid.vv-feed-list,
.vv-search-section .vv-product-grid.vv-feed-list,
.vv-shop-list,
.vv-product-feed-list {
  display: block !important;
}
.vv-editorial-feed > .vv-section-header,
.vv-product-feed > .vv-section-header { margin-bottom: clamp(16px, 2.2vw, 28px); }
.vv-editorial-feed .article-card,
.vv-product-feed .vv-product-card-public,
.vv-product-feed .product-card,
.vv-search-section .vv-article-grid.vv-feed-list .article-card,
.vv-search-section .vv-product-grid.vv-feed-list .vv-product-card-public,
.vv-shop-list .vv-shop-card {
  display: grid !important;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr) !important;
  gap: clamp(22px, 3vw, 32px) !important;
  align-items: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(20px, 2.5vw, 28px) 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(15, 23, 42, .22) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
  transform: none !important;
}
.vv-editorial-feed .article-card:hover,
.vv-product-feed .vv-product-card-public:hover,
.vv-product-feed .product-card:hover,
.vv-shop-list .vv-shop-card:hover { transform: none !important; box-shadow: none !important; }
.vv-editorial-feed .article-card:first-of-type,
.vv-product-feed .vv-product-card-public:first-of-type,
.vv-product-feed .product-card:first-of-type,
.vv-shop-list .vv-shop-card:first-of-type { padding-top: 0 !important; }
.vv-editorial-feed .article-card:last-of-type,
.vv-product-feed .vv-product-card-public:last-of-type,
.vv-product-feed .product-card:last-of-type,
.vv-shop-list .vv-shop-card:last-of-type { border-bottom: 0 !important; }
.vv-editorial-media,
.vv-editorial-feed .vv-card-media,
.vv-product-feed .vv-card-media,
.vv-shop-list .vv-editorial-media {
  display: block !important;
  width: 100% !important;
  background: #f8fafc !important;
  border-radius: 5px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 2px rgba(15,23,42,.18) !important;
}
.vv-editorial-media img,
.vv-editorial-feed .vv-card-media img,
.vv-product-feed .vv-card-media img,
.vv-product-feed .vv-product-card-public img,
.vv-shop-list .vv-shop-card img {
  width: 100% !important;
  height: clamp(220px, 20vw, 265px) !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 5px !important;
  margin: 0 !important;
  background: #f8fafc !important;
}
.vv-product-feed .vv-product-card-public img,
.vv-shop-list .vv-shop-card img { object-fit: contain !important; }
.vv-editorial-body,
.vv-editorial-feed .vv-card-body,
.vv-product-feed .vv-card-body,
.vv-shop-list .vv-editorial-body {
  padding: 0 !important;
  min-width: 0 !important;
}
.vv-feed-meta {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: .35rem .45rem !important;
  margin: 0 0 .45rem !important;
  color: #6b7280 !important;
  font-size: clamp(.78rem, .95vw, .92rem) !important;
  line-height: 1.35 !important;
  letter-spacing: -.01em !important;
}
.vv-feed-meta__category {
  color: #5f6773 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}
.vv-feed-meta__separator { color: #9ca3af !important; font-weight: 800 !important; }
.vv-feed-title,
.vv-editorial-feed .vv-card-body h2,
.vv-product-feed .vv-card-body h3,
.vv-shop-list .vv-shop-card h2 {
  margin: 0 0 .7rem !important;
  padding: 0 !important;
  color: #000 !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(1.42rem, 2.45vw, 2rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -.035em !important;
  font-weight: 500 !important;
}
.vv-feed-title a { color: inherit !important; text-decoration: none !important; }
.vv-feed-summary,
.vv-editorial-feed .vv-card-body p.vv-feed-summary,
.vv-product-feed .vv-card-body p.vv-feed-summary,
.vv-shop-list .vv-feed-summary {
  margin: 0 0 1.05rem !important;
  padding: 0 !important;
  color: #74717a !important;
  font-size: clamp(1rem, 1.35vw, 1.14rem) !important;
  line-height: 1.55 !important;
  letter-spacing: .035em !important;
  max-width: 780px !important;
}
.vv-product-feed-note,
.vv-shop-kind,
.vv-price,
.vv-shop-card__meta,
.vv-affiliate-note {
  margin: .25rem 0 .75rem !important;
  padding: 0 !important;
  color: #6b7280 !important;
}
.vv-price strong,
.vv-shop-card__price strong { color: #0f172a !important; }
.vv-feed-button,
.vv-feed-button:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .55rem !important;
  min-height: 32px !important;
  padding: .34rem .78rem .34rem 1.35rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(15,23,42,.16) !important;
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0 2px 7px rgba(15,23,42,.16) !important;
  font-weight: 900 !important;
  font-size: .79rem !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
.vv-feed-button::after { content: none !important; }
.vv-feed-button__icon {
  width: 30px !important;
  height: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  background: #020617 !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  margin-right: -.62rem !important;
}
.vv-shop-card__actions,
.vv-add-cart-inline { display: flex !important; flex-wrap: wrap !important; gap: .75rem !important; align-items: center !important; }
@media (max-width: 860px) {
  .vv-editorial-feed .article-card,
  .vv-product-feed .vv-product-card-public,
  .vv-product-feed .product-card,
  .vv-search-section .vv-article-grid.vv-feed-list .article-card,
  .vv-search-section .vv-product-grid.vv-feed-list .vv-product-card-public,
  .vv-shop-list .vv-shop-card {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .vv-editorial-media img,
  .vv-editorial-feed .vv-card-media img,
  .vv-product-feed .vv-card-media img,
  .vv-product-feed .vv-product-card-public img,
  .vv-shop-list .vv-shop-card img { height: auto !important; min-height: 0 !important; }
}

/* vv-affiliate-store-image-production */
.vv-shop-category-menu { display:flex; flex-wrap:wrap; gap:.55rem .75rem; margin:0 0 1.2rem; padding:.75rem 0; border-bottom:1px solid #e5eaf3; }
.vv-shop-category-link { display:inline-flex; align-items:center; min-height:40px; padding:.55rem .9rem; border-radius:999px; border:1px solid #dbe4f3; background:#fff; color:#0f172a; text-decoration:none; font-weight:800; }
.vv-shop-category-link:hover, .vv-shop-category-link.is-active { background:#0f172a; border-color:#0f172a; color:#fff; }
.vv-affiliate-image-frame, .vv-editorial-media { display:block; overflow:hidden; background:#f8fafc; }
.vv-affiliate-product-image, .vv-shop-card img, .vv-product-card-public img { width:100%; aspect-ratio:16/9; object-fit:contain; object-position:center; background:#f8fafc; display:block; }


/* moved-from-vv-production-recursive-menu-final-overrides-2.0.42 */
/* Production final overrides — mantém menus recursivos e busca única depois dos estilos legados Production. */
.vv-shop-category-menu.vv-menu-shop { display:block !important; margin:0 0 1.2rem !important; padding:.75rem 0 !important; border-bottom:1px solid #e5eaf3 !important; }
.vv-shop-category-menu.vv-menu-shop > .vv-menu-list { display:flex !important; flex-wrap:wrap !important; gap:.55rem .75rem !important; align-items:center !important; list-style:none !important; margin:0 !important; padding:0 !important; }
.vv-shop-category-menu.vv-menu-shop .vv-submenu { list-style:none !important; margin:0 !important; }
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link { display:inline-flex !important; align-items:center !important; min-height:40px !important; max-width:100% !important; padding:.55rem .9rem !important; border-radius:999px !important; border:1px solid #dbe4f3 !important; background:#fff !important; color:#0f172a !important; text-decoration:none !important; font-weight:800 !important; }
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link:hover,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link:focus-visible,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link.is-active { background:#0f172a !important; border-color:#0f172a !important; color:#fff !important; }
.vv-shop-category-menu.vv-menu-shop .vv-menu-item.has-children { position:relative !important; display:inline-flex !important; align-items:center !important; }
.vv-shop-category-menu.vv-menu-shop .vv-submenu-toggle { display:inline-flex !important; }
.vv-shop-category-menu.vv-menu-shop .vv-submenu { position:absolute !important; top:calc(100% + .45rem) !important; left:0 !important; z-index:90 !important; min-width:230px !important; max-width:min(320px, calc(100vw - 32px)) !important; display:none !important; gap:.25rem !important; padding:.45rem !important; border:1px solid #dbe4f3 !important; border-radius:18px !important; background:#fff !important; box-shadow:0 20px 45px rgba(15,23,42,.14) !important; }
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-submenu { top:-.45rem !important; left:calc(100% + .4rem) !important; }
.vv-shop-category-menu.vv-menu-shop .vv-menu-item:hover > .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item:focus-within > .vv-submenu,
.vv-shop-category-menu.vv-menu-shop .vv-menu-item.is-submenu-open > .vv-submenu { display:grid !important; }
@media (max-width: 1024px), (hover: none) {
  .vv-shop-category-menu.vv-menu-shop > .vv-menu-list { display:grid !important; gap:.35rem !important; }
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item.has-children { display:flex !important; }
  .vv-shop-category-menu.vv-menu-shop .vv-shop-category-link { width:100% !important; justify-content:flex-start !important; white-space:normal !important; border-radius:14px !important; padding:.72rem 2.7rem .72rem .85rem !important; }
  .vv-shop-category-menu.vv-menu-shop .vv-submenu,
  .vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-submenu { position:static !important; min-width:0 !important; max-width:100% !important; padding:.15rem 0 .15rem .8rem !important; margin:.15rem 0 .15rem .15rem !important; border:0 !important; border-left:2px solid #dbe3ef !important; border-radius:0 !important; box-shadow:none !important; background:transparent !important; }
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item:not(.is-submenu-open) > .vv-submenu { display:none !important; }
  .vv-shop-category-menu.vv-menu-shop .vv-menu-item.is-submenu-open > .vv-submenu { display:grid !important; }
}


/* moved-from-vv-production-pagination-menu-font-2.0.42 */
/* Production — paginação unificada de categorias/conteúdo/lojas e menus com fonte ligeiramente maior */
.vv-pagination.vv-category-pagination,
.vv-pagination.vv-pagination-responsive { display:flex !important; justify-content:center !important; align-items:center !important; width:100% !important; margin:clamp(1.8rem,4vw,3rem) 0 !important; padding:.25rem 0 !important; overflow:visible !important; }
.vv-pagination-track { display:flex !important; flex-wrap:wrap !important; align-items:center !important; justify-content:center !important; gap:.5rem !important; max-width:100% !important; }
.vv-pagination-numbers { display:inline-flex !important; flex-wrap:wrap !important; align-items:center !important; justify-content:center !important; gap:.5rem !important; max-width:100% !important; }
.vv-page-link,
.vv-page-ellipsis { display:inline-flex !important; align-items:center !important; justify-content:center !important; min-width:42px !important; min-height:42px !important; padding:.62rem .86rem !important; border-radius:999px !important; border:1px solid #dbe3ef !important; background:#fff !important; color:#172033 !important; font-size:clamp(.95rem,.88rem + .18vw,1.03rem) !important; font-weight:850 !important; line-height:1 !important; text-decoration:none !important; box-shadow:0 10px 24px rgba(15,23,42,.06) !important; }
.vv-page-link:hover,
.vv-page-link:focus-visible { background:#eef6ff !important; border-color:#bfdbfe !important; color:#2563eb !important; transform:translateY(-1px) !important; box-shadow:0 16px 34px rgba(37,99,235,.12) !important; }
.vv-page-link.is-current { background:#0f172a !important; border-color:#0f172a !important; color:#fff !important; box-shadow:0 18px 36px rgba(15,23,42,.18) !important; }
.vv-page-link.is-disabled { cursor:not-allowed !important; opacity:.48 !important; transform:none !important; box-shadow:none !important; }
.vv-page-prev,
.vv-page-next { min-width:112px !important; padding-inline:1.05rem !important; }
.vv-page-ellipsis { border-color:transparent !important; background:transparent !important; box-shadow:none !important; color:#64748b !important; min-width:26px !important; }
.vv-public .vv-menu-header .vv-menu-item > a,
.vv-public .vv-menu-header .vv-submenu .vv-menu-item > a,
.vv-menu-header .vv-menu-item > a,
.vv-menu-header .vv-submenu-item > a,
.vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
.vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link { font-size:clamp(.98rem,.94rem + .16vw,1.06rem) !important; line-height:1.15 !important; }
@media (max-width:1024px), (hover:none) {
  .vv-pagination-track { display:grid !important; grid-template-columns:1fr 1fr !important; width:100% !important; gap:.55rem !important; }
  .vv-pagination-numbers { grid-column:1 / -1 !important; order:2 !important; width:100% !important; }
  .vv-page-prev,
  .vv-page-next { order:1 !important; width:100% !important; min-width:0 !important; }
  .vv-page-link,
  .vv-page-ellipsis { min-height:44px !important; }
}
@media (max-width:520px) {
  .vv-pagination.vv-category-pagination,
  .vv-pagination.vv-pagination-responsive { margin:1.55rem 0 2.1rem !important; }
  .vv-pagination-track { gap:.45rem !important; }
  .vv-pagination-numbers { gap:.38rem !important; }
  .vv-page-link,
  .vv-page-ellipsis { min-width:40px !important; min-height:40px !important; padding:.54rem .72rem !important; font-size:.95rem !important; }
  .vv-page-prev,
  .vv-page-next { padding-inline:.7rem !important; }
  .vv-public .vv-menu-header .vv-menu-item > a,
  .vv-public .vv-menu-header .vv-submenu .vv-menu-item > a,
  .vv-shop-category-menu.vv-menu-header .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-header .vv-submenu .vv-shop-category-link,
  .vv-shop-category-menu.vv-menu-shop .vv-submenu .vv-shop-category-link { font-size:1rem !important; }
}

/* vv-google-seo-2.0.42 */
.vv-home-h1{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.vv-shop-h1{margin:0 0 1.25rem;font-size:clamp(2rem,4vw,3rem);line-height:1.1}

/* vv-google-pagespeed-2.0.42: estilos públicos cacheáveis e renderização abaixo da dobra */
.vv-shop-category-menu { display:flex; flex-wrap:wrap; gap:.55rem .75rem; margin:0 0 1.2rem; padding:.75rem 0; border-bottom:1px solid #e5eaf3; }
.vv-shop-category-link { display:inline-flex; align-items:center; min-height:40px; padding:.55rem .9rem; border-radius:999px; border:1px solid #dbe4f3; background:#fff; color:#0f172a; text-decoration:none; font-weight:800; }
.vv-shop-category-link:hover, .vv-shop-category-link.is-active { background:#0f172a; border-color:#0f172a; color:#fff; }
.vv-affiliate-image-frame, .vv-editorial-media { display:block; overflow:hidden; background:#f8fafc; }
.vv-affiliate-product-image, .vv-shop-card img, .vv-product-card-public img { width:100%; aspect-ratio:16/9; object-fit:contain; object-position:center; background:#f8fafc; display:block; }
@supports (content-visibility: auto) {
  .vv-editorial-feed .vv-editorial-item:nth-of-type(n+7),
  .vv-related-grid > :nth-child(n+5) {
    content-visibility: auto;
    contain-intrinsic-size: 420px;
  }
}

/* VeseVale 2.0.42 — estado visitado/cache-safe do botão Leia Mais
   A navegação para o artigo transforma o link em :visited. Regras antigas de
   :visited apareciam depois do hover e deixavam a pílula branca. Este bloco
   final define explicitamente todos os estados, inclusive :visited:hover. */
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"],
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:link,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited {
  background: #fff !important;
  border-color: rgba(15, 23, 42, .16) !important;
  color: #000 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 7px rgba(15, 23, 42, .16) !important;
}
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"] > span:first-child,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited > span:first-child {
  color: inherit !important;
}
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"] .vv-feed-button__icon,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited .vv-feed-button__icon {
  --vv-arrow-rotation: -45deg;
  background: #020617 !important;
  color: #fff !important;
  opacity: 1 !important;
}
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:hover,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:hover,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:focus-visible,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:focus-visible,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:active,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:active {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .18) !important;
  transform: translateY(-1px) !important;
}
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:hover .vv-feed-button__icon,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:hover .vv-feed-button__icon,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:focus-visible .vv-feed-button__icon,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:focus-visible .vv-feed-button__icon,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:active .vv-feed-button__icon,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:active .vv-feed-button__icon {
  --vv-arrow-rotation: 0deg;
  background: transparent !important;
  color: #fff !important;
  opacity: 1 !important;
  transform: none !important;
}
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"] .vv-feed-button__icon::before,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited .vv-feed-button__icon::before,
.vv-public .vv-read-more-link[data-vv-read-more="cache-safe-2.0.42"]:visited:hover .vv-feed-button__icon::before {
  background-color: currentColor !important;
  opacity: 1 !important;
}



/* VeseVale 2.0.42 — detalhe de produto afiliado responsivo */
.vv-public .vv-shop-product-hero.vv-affiliate-product-detail[data-vv-responsive-product-detail="2.0.42"] {
  display: grid !important;
  grid-template-columns: minmax(0, 48%) minmax(0, 1fr) !important;
  gap: clamp(20px, 3vw, 28px) !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}
.vv-public .vv-shop-product-hero.vv-affiliate-product-detail > * {
  min-width: 0 !important;
  max-width: 100% !important;
}
.vv-public .vv-shop-product-hero.vv-affiliate-product-detail h1,
.vv-public .vv-shop-product-hero.vv-affiliate-product-detail p,
.vv-public .vv-shop-product-hero.vv-affiliate-product-detail a {
  overflow-wrap: anywhere;
  word-break: normal;
}
.vv-public .vv-shop-product-hero.vv-affiliate-product-detail .vv-affiliate-box {
  max-width: 100% !important;
  min-width: 0 !important;
}
@media (max-width: 860px) {
  .vv-public .vv-shop-product-hero.vv-affiliate-product-detail[data-vv-responsive-product-detail="2.0.42"] {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }
  .vv-public .vv-shop-product-hero.vv-affiliate-product-detail .vv-affiliate-product-image.hero {
    max-height: min(460px, 62vw) !important;
  }
}
@media (max-width: 640px) {
  .vv-public .vv-shop-product-hero.vv-affiliate-product-detail[data-vv-responsive-product-detail="2.0.42"] {
    gap: 14px !important;
  }
  .vv-public .vv-shop-product-hero.vv-affiliate-product-detail .vv-affiliate-product-image.hero {
    max-height: none !important;
  }
  .vv-public .vv-shop-product-hero.vv-affiliate-product-detail .vv-affiliate-box .vv-button {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
@media (max-width: 380px) {
  .vv-public .vv-shop-product-hero.vv-affiliate-product-detail h1 {
    font-size: clamp(1.65rem, 9vw, 2.15rem) !important;
  }
}
