/* =========================================================================
   Vitrine Operacional — Frontend Premium v2.7.4
   ========================================================================= */

/* ── Tokens ──────────────────────────────────────────────────────────────── */
:root {
  --vo-radius:        12px;
  --vo-radius-sm:     8px;
  --vo-radius-badge:  20px;
  --vo-shadow:        0 4px 24px rgba(0,0,0,.14);
  --vo-shadow-hover:  0 12px 40px rgba(0,0,0,.26);
  --vo-transition:    .32s cubic-bezier(.4,0,.2,1);

  /* Tipo: produto */
  --vo-c-produto-bg:   #1e3a5f;
  --vo-c-produto-mid:  #2563eb;
  --vo-c-produto-lite: #93c5fd;

  /* Tipo: servico */
  --vo-c-servico-bg:   #3b0764;
  --vo-c-servico-mid:  #9333ea;
  --vo-c-servico-lite: #d8b4fe;

  /* Tipo: protocolo */
  --vo-c-protocolo-bg:   #064e3b;
  --vo-c-protocolo-mid:  #059669;
  --vo-c-protocolo-lite: #6ee7b7;

  /* Tipo: tratamento */
  --vo-c-tratamento-bg:   #7f1d1d;
  --vo-c-tratamento-mid:  #dc2626;
  --vo-c-tratamento-lite: #fca5a5;

  /* Tipo: oferta */
  --vo-c-oferta-bg:   #78350f;
  --vo-c-oferta-mid:  #d97706;
  --vo-c-oferta-lite: #fcd34d;
}

/* ── Wrappers ─────────────────────────────────────────────────────────────── */
.vo-vitrine-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Barra de filtros ─────────────────────────────────────────────────────── */
.vo-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.vo-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--vo-radius-badge);
  border: 1.5px solid rgba(0,0,0,.12);
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--vo-transition);
  user-select: none;
  line-height: 1;
}

.vo-filter-btn:hover,
.vo-filter-btn.is-active {
  border-color: var(--vo-accent, #2563eb);
  background: var(--vo-accent, #2563eb);
  color: #fff;
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */
.vo-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat( var(--vo-cols, 3), 1fr );
}

.vo-grid[data-cols="2"] { --vo-cols: 2; }
.vo-grid[data-cols="3"] { --vo-cols: 3; }
.vo-grid[data-cols="4"] { --vo-cols: 4; }

@media (max-width: 1024px) {
  .vo-grid { --vo-cols: 2 !important; }
}
@media (max-width: 640px) {
  .vo-grid { --vo-cols: 1 !important; }
}

/* ── Story Card ───────────────────────────────────────────────────────────── */
.vo-card-story {
  position: relative;
  border-radius: var(--vo-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111827;
  box-shadow: var(--vo-shadow);
  transition: transform var(--vo-transition), box-shadow var(--vo-transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.vo-card-story:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: var(--vo-shadow-hover);
}

/* Imagem */
.vo-card-story__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--vo-focal, center);
  transition: transform var(--vo-transition), filter var(--vo-transition);
}

.vo-card-story:hover .vo-card-story__img {
  transform: scale(1.06);
  filter: brightness(.85);
}

/* Overlay gradiente */
.vo-card-story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)     0%,
    rgba(0,0,0,.08)  40%,
    rgba(0,0,0,.62)  70%,
    rgba(0,0,0,.88) 100%
  );
  transition: opacity var(--vo-transition);
}

.vo-card-story:hover .vo-card-story__overlay {
  opacity: 1.15; /* sutil intensificação no hover */
}

/* Badges flutuantes topo-direito */
.vo-card-story__badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  z-index: 2;
}

.vo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--vo-radius-badge);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.3;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* Badge tipo */
.vo-badge--tipo {
  background: rgba(0,0,0,.5);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}

.vo-badge--destaque {
  background: rgba(255, 199, 0, .85);
  color: #78350f;
  border: none;
}

/* Badge tag (cor dinâmica via style inline) */
.vo-badge--tag {
  border: 1px solid rgba(255,255,255,.2);
}

/* Bloco inferior */
.vo-card-story__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform var(--vo-transition);
}

.vo-card-story:hover .vo-card-story__body {
  transform: translateY(0);
}

.vo-card-story__titulo {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vo-card-story__subtitulo {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vo-card-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: var(--vo-radius-badge);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  text-decoration: none;
  transition: background var(--vo-transition), border-color var(--vo-transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--vo-transition), transform var(--vo-transition), background var(--vo-transition);
}

.vo-card-story:hover .vo-card-story__cta {
  opacity: 1;
  transform: translateY(0);
}

.vo-card-story__cta:hover {
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.5);
}

/* Acento de cor por tipo no rodapé */
.vo-card-story__type-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
}

.vo-card-story[data-tipo="produto"]    .vo-card-story__type-bar { background: linear-gradient(90deg, var(--vo-c-produto-bg), var(--vo-c-produto-mid)); }
.vo-card-story[data-tipo="servico"]    .vo-card-story__type-bar { background: linear-gradient(90deg, var(--vo-c-servico-bg), var(--vo-c-servico-mid)); }
.vo-card-story[data-tipo="protocolo"]  .vo-card-story__type-bar { background: linear-gradient(90deg, var(--vo-c-protocolo-bg), var(--vo-c-protocolo-mid)); }
.vo-card-story[data-tipo="tratamento"] .vo-card-story__type-bar { background: linear-gradient(90deg, var(--vo-c-tratamento-bg), var(--vo-c-tratamento-mid)); }
.vo-card-story[data-tipo="oferta"]     .vo-card-story__type-bar { background: linear-gradient(90deg, var(--vo-c-oferta-bg), var(--vo-c-oferta-mid)); }

/* Sem imagem: fallback gradiente por tipo */
.vo-card-story.no-image {
  background: linear-gradient(135deg, var(--vo-grad-start, #1e3a5f), var(--vo-grad-end, #2563eb));
}

/* ── Card Clássico (listagem) ─────────────────────────────────────────────── */
.vo-card-classico {
  border-radius: var(--vo-radius);
  background: #fff;
  box-shadow: var(--vo-shadow);
  overflow: hidden;
  transition: transform var(--vo-transition), box-shadow var(--vo-transition);
  display: flex;
  flex-direction: column;
}

.vo-card-classico:hover {
  transform: translateY(-4px);
  box-shadow: var(--vo-shadow-hover);
}

.vo-card-classico__img-wrap {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.vo-card-classico__img-wrap.ratio-horizontal { aspect-ratio: 16/9; }
.vo-card-classico__img-wrap.ratio-square      { aspect-ratio: 1/1;  }
.vo-card-classico__img-wrap.ratio-vertical    { aspect-ratio: 3/4;  }
.vo-card-classico__img-wrap.ratio-banner      { aspect-ratio: 3/1;  }

.vo-card-classico__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--vo-focal, center);
  transition: transform var(--vo-transition);
}

.vo-card-classico:hover .vo-card-classico__img {
  transform: scale(1.05);
}

.vo-card-classico__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.vo-card-classico__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vo-card-classico__titulo {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  line-height: 1.3;
}

.vo-card-classico__subtitulo {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 12px;
  line-height: 1.4;
  flex: 1;
}

.vo-card-classico__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.vo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: var(--vo-radius-badge);
  font-size: 13px;
  font-weight: 600;
  background: #111827;
  color: #fff;
  text-decoration: none;
  transition: background var(--vo-transition);
  border: none;
  cursor: pointer;
}

.vo-cta-btn:hover {
  background: #374151;
  color: #fff;
}

/* ── Card Overlay (listagem) ──────────────────────────────────────────────── */
.vo-card-overlay {
  position: relative;
  border-radius: var(--vo-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--vo-shadow);
  transition: transform var(--vo-transition), box-shadow var(--vo-transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.vo-card-overlay:hover {
  transform: translateY(-4px);
  box-shadow: var(--vo-shadow-hover);
}

.vo-card-overlay__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vo-transition);
}

.vo-card-overlay:hover .vo-card-overlay__img {
  transform: scale(1.07);
}

.vo-card-overlay__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.75) 100%);
}

.vo-card-overlay__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  z-index: 2;
}

.vo-card-overlay__titulo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.vo-card-overlay__subtitulo {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  margin: 0 0 12px;
}

/* ── Sem resultados ───────────────────────────────────────────────────────── */
.vo-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 20px;
  color: #9ca3af;
  font-size: 15px;
}

/* ── Página interna — Hero ────────────────────────────────────────────────── */
.vo-single-hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #111827;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.vo-single-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vo-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.82) 100%
  );
}

.vo-single-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
  max-width: 860px;
  width: 100%;
}

.vo-single-hero__tipo-badge {
  margin-bottom: 12px;
}

.vo-single-hero__titulo {
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.vo-single-hero__subtitulo {
  font-size: 17px;
  color: rgba(255,255,255,.82);
  margin: 0 0 20px;
  line-height: 1.5;
}

.vo-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.vo-single-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--vo-radius-badge);
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--vo-transition), box-shadow var(--vo-transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

.vo-single-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  color: #111827;
}

/* ── Página interna — Body ────────────────────────────────────────────────── */
.vo-single-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.vo-single-descricao {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 36px;
}

.vo-single-section {
  margin-bottom: 36px;
}

.vo-single-section__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 12px;
}

.vo-single-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.vo-single-meta-item {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: var(--vo-radius-sm);
  padding: 12px 14px;
}

.vo-single-meta-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 4px;
}

.vo-single-meta-item__value {
  font-size: 14px;
  color: #111827;
  font-weight: 500;
}

.vo-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Seção de Destaques ───────────────────────────────────────────────────── */
.vo-destaques-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.vo-destaques-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.vo-destaque-card {
  position: relative;
  border-radius: var(--vo-radius);
  overflow: hidden;
  box-shadow: var(--vo-shadow);
  transition: transform var(--vo-transition), box-shadow var(--vo-transition);
  display: block;
  text-decoration: none;
  color: inherit;
}

.vo-destaque-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vo-shadow-hover);
}

/* Layout card */
.vo-destaque-card.layout-card {
  aspect-ratio: 4/3;
}

/* Layout banner */
.vo-destaque-card.layout-banner {
  aspect-ratio: 21/6;
  grid-column: 1/-1;
}

.vo-destaque-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--vo-transition);
}

.vo-destaque-card:hover .vo-destaque-card__img {
  transform: scale(1.05);
}

.vo-destaque-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(0,0,0,.72) 100%);
}

.vo-destaque-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  z-index: 2;
}

.vo-destaque-card__titulo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.vo-destaque-card__subtitulo {
  font-size: 13px;
  color: rgba(255,255,255,.78);
  margin: 0 0 12px;
}

/* Destaque sem imagem */
.vo-destaque-card.no-image {
  background: linear-gradient(135deg, var(--vo-grad-start, #1a2438), var(--vo-grad-end, #2d6a8f));
}

/* ── Animação de entrada ──────────────────────────────────────────────────── */
/* Só esconde quando o JS está ativo (.vo-js no <html>).
   Garante visibilidade no Elementor editor e sem JS. */
.vo-js .vo-appear {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.vo-js .vo-appear.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Tipo labels ──────────────────────────────────────────────────────────── */
.vo-tipo-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--vo-radius-badge);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.4;
}

.vo-tipo-produto    { background: #dbeafe; color: #1e40af; }
.vo-tipo-servico    { background: #ede9fe; color: #6d28d9; }
.vo-tipo-protocolo  { background: #d1fae5; color: #065f46; }
.vo-tipo-tratamento { background: #fee2e2; color: #991b1b; }
.vo-tipo-oferta     { background: #fef3c7; color: #92400e; }

/* ══════════════════════════════════════════════════════════════════════════
   Home / Vitrine — [vo_home]
   ══════════════════════════════════════════════════════════════════════════ */

.vo-home {
  width: 100%;
}

.vo-home-block {
  width: 100%;
  padding: var(--vo-section-pad, 48px 0);
}

.vo-home-block + .vo-home-block {
  border-top: 1px solid var(--vo-border, rgba(0,0,0,.07));
}

/* ── Section title ────────────────────────────────────────────────────── */
.vo-section-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: inherit;
  line-height: 1.2;
}

/* ── Hero block ───────────────────────────────────────────────────────── */
.vo-hero {
  position: relative;
  /* aspect-ratio vem da proporção configurada no admin (--vo-hero-ratio).
     Se não definida, mantém o comportamento original via min-height. */
  aspect-ratio: var(--vo-hero-ratio, auto);
  min-height: clamp(240px, 45vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--vo-radius, 10px);
}

.vo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.62) 100%);
}

.vo-hero__body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  max-width: 680px;
  color: #fff;
}

.vo-hero__title {
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 .75rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.vo-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin: 0 0 1.75rem;
  opacity: .88;
  line-height: 1.5;
}

.vo-cta-btn--hero {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: .85em 2.2em;
  border-radius: 50px;
  background: #fff;
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
}

.vo-cta-btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.32);
}

/* ── Hero — posição horizontal do texto + CTA ─────────────────────────── */
.vo-hero--texto-ctr { justify-content: center !important; }
.vo-hero--texto-ctr .vo-hero__body {
  margin: 0 auto;
  width: auto;
  max-width: 680px;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.vo-hero--texto-esq { justify-content: flex-start !important; }
.vo-hero--texto-esq .vo-hero__body {
  margin: 0;
  width: 55%;
  max-width: 600px;
  text-align: left;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: 1rem;
}
.vo-hero--texto-dir { justify-content: flex-end !important; }
.vo-hero--texto-dir .vo-hero__body {
  margin: 0;
  width: 55%;
  max-width: 600px;
  text-align: right;
  padding-right: clamp(24px, 5vw, 72px);
  padding-left: 1rem;
}

/* ── Hero — posição vertical do texto + CTA ────────────────────────────── */
.vo-hero--vert-ctr { align-items: center; }
.vo-hero--vert-sup { align-items: flex-start; }
.vo-hero--vert-sup .vo-hero__body { padding-top: clamp(2rem, 5vw, 3.5rem); }
.vo-hero--vert-inf { align-items: flex-end; }
.vo-hero--vert-inf .vo-hero__body { padding-bottom: clamp(2rem, 5vw, 3.5rem); }

@media (max-width: 640px) {
  .vo-hero--texto-ctr .vo-hero__body,
  .vo-hero--texto-esq .vo-hero__body,
  .vo-hero--texto-dir .vo-hero__body {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .vo-hero--vert-sup,
  .vo-hero--vert-ctr,
  .vo-hero--vert-inf { align-items: center !important; }
  .vo-hero--vert-sup .vo-hero__body,
  .vo-hero--vert-inf .vo-hero__body {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* ── Hero — mobile ────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .vo-home-block--hero {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .vo-hero {
    min-height: 460px !important;
    border-radius: 0 !important;
    background-position: center center;
    background-size: cover !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .vo-hero__overlay {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
  }

  .vo-hero__body {
    position: relative !important;
    z-index: 1 !important;
    padding: 1.5rem 1rem !important;
    max-width: 100% !important;
    color: #fff !important;
    text-align: center !important;
  }

  .vo-hero__title {
    font-size: clamp(1.15rem, 5.5vw, 1.6rem) !important;
    line-height: 1.2 !important;
    margin: 0 0 .5rem !important;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.5) !important;
  }

  .vo-hero__subtitle {
    font-size: .9rem !important;
    line-height: 1.4 !important;
    margin: 0 0 1.25rem !important;
    color: #fff !important;
  }

  .vo-cta-btn--hero {
    display: inline-flex !important;
    font-size: .875rem !important;
    padding: .65em 1.5em !important;
  }
}

/* ── Carrossel block ──────────────────────────────────────────────────── */
.vo-carrossel {
  overflow: hidden;
}

.vo-carrossel__track {
  display: flex;
  gap: var(--vo-gap, 16px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.vo-carrossel__track::-webkit-scrollbar {
  display: none;
}

.vo-carrossel__track > * {
  flex: 0 0 clamp(240px, 30vw, 320px);
  scroll-snap-align: start;
}

/* ══════════════════════════════════════════════════════════════════════════
   Story Cards Block — Grade configurável e Slider
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Grid responsivo por custom properties ───────────────────────────────── */
.vo-home-block--story .vo-story-grid {
  display: grid;
  gap: var(--vo-story-gap, 16px);
  grid-template-columns: repeat( var(--vo-story-cols-d, 3), 1fr );
}

@media (max-width: 1024px) {
  .vo-home-block--story .vo-story-grid {
    grid-template-columns: repeat( var(--vo-story-cols-t, 2), 1fr ) !important;
  }
}

@media (max-width: 640px) {
  .vo-home-block--story .vo-story-grid {
    grid-template-columns: repeat( var(--vo-story-cols-m, 1), 1fr ) !important;
  }
}

/* ── Modo Slider ─────────────────────────────────────────────────────────── */
.vo-home-block--story.is-slider .vo-story-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.vo-home-block--story.is-slider .vo-story-grid::-webkit-scrollbar {
  display: none;
}

.vo-home-block--story.is-slider .vo-story-grid > * {
  flex: 0 0 calc(
    ( 100% - var(--vo-story-gap, 16px) * ( var(--vo-story-cols-d, 3) - 1 ) )
    / var(--vo-story-cols-d, 3)
  );
  scroll-snap-align: start;
}

@media (max-width: 1024px) {
  .vo-home-block--story.is-slider .vo-story-grid > * {
    flex: 0 0 calc(
      ( 100% - var(--vo-story-gap, 16px) * ( var(--vo-story-cols-t, 2) - 1 ) )
      / var(--vo-story-cols-t, 2)
    ) !important;
  }
}

@media (max-width: 640px) {
  .vo-home-block--story.is-slider .vo-story-grid > * {
    flex: 0 0 calc(
      ( 100% - var(--vo-story-gap, 16px) * ( var(--vo-story-cols-m, 1) - 1 ) )
      / var(--vo-story-cols-m, 1)
    ) !important;
  }
}

/* ── Sombra ──────────────────────────────────────────────────────────────── */
.vo-card-story--sombra-none { box-shadow: none; }
.vo-card-story--sombra-sm   { box-shadow: 0 2px 8px rgba(0,0,0,.1); }
/* sombra md = padrão (--vo-shadow já definido) */
.vo-card-story--sombra-lg   { box-shadow: 0 8px 40px rgba(0,0,0,.36); }

/* ── Hover — intensidade ─────────────────────────────────────────────────── */
.vo-card-story--hover-leve:hover {
  transform: translateY(-2px) scale(1.005);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
/* hover media = padrão (já definido em .vo-card-story:hover) */
.vo-card-story--hover-forte:hover {
  transform: translateY(-9px) scale(1.025);
  box-shadow: 0 18px 52px rgba(0,0,0,.38);
}

/* ── Hover — animação da imagem ─────────────────────────────────────────── */
.vo-card-story--anim-slide:hover .vo-card-story__img {
  transform: translateX(6px) scale(1.06);
}
.vo-card-story--anim-fade:hover .vo-card-story__img {
  transform: scale(1.03);
  filter: brightness(.7) saturate(.8);
}
.vo-card-story--anim-none:hover,
.vo-card-story--anim-none:hover .vo-card-story__img {
  transform: none !important;
}
.vo-card-story--anim-none { cursor: default; }

/* ── Overlay — intensidade ───────────────────────────────────────────────── */
.vo-card-story--overlay-leve .vo-card-story__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)   0%,
    rgba(0,0,0,.04) 40%,
    rgba(0,0,0,.38) 70%,
    rgba(0,0,0,.60) 100%
  );
}
/* overlay media = padrão */
.vo-card-story--overlay-forte .vo-card-story__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.14)  40%,
    rgba(0,0,0,.75)  70%,
    rgba(0,0,0,.95) 100%
  );
}
.vo-card-story--overlay-max .vo-card-story__overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18)  0%,
    rgba(0,0,0,.42)  40%,
    rgba(0,0,0,.86)  70%,
    rgba(0,0,0,1)   100%
  );
}

/* ── Alinhamento do conteúdo ─────────────────────────────────────────────── */
.vo-card-story--alinhar-center .vo-card-story__body { text-align: center; }
.vo-card-story--alinhar-right  .vo-card-story__body { text-align: right; }

.vo-card-story--alinhar-center .vo-card-story__badges,
.vo-card-story--alinhar-right  .vo-card-story__badges {
  align-items: flex-start; /* mantém badges no canto direito */
}

/* ── Posição do texto ────────────────────────────────────────────────────── */
.vo-card-story--texto-center .vo-card-story__body {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  padding: 16px;
}
.vo-card-story--texto-center:hover .vo-card-story__body {
  transform: translateY(-50%);
}
.vo-card-story--texto-top .vo-card-story__body {
  top: 0;
  bottom: auto;
  padding: 16px 16px 0;
  transform: none;
}
.vo-card-story--texto-top .vo-card-story__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,.08)  40%,
    rgba(0,0,0,.70)  80%,
    rgba(0,0,0,.88) 100%
  );
}

/* ── Altura mínima via custom property ───────────────────────────────────── */
.vo-home-block--story .vo-card-story {
  min-height: var(--vo-story-min-h, 0px);
}

/* ── CTA posição dentro do card ──────────────────────────────────────────── */

/* Wrapper do CTA no corpo (esquerda/direita/centro independente do body) */
.vo-card-story__cta-wrap {
  display: block;
  text-align: left; /* padrão */
}
.vo-card-story--cta-esquerda .vo-card-story__cta-wrap { text-align: left; }
.vo-card-story--cta-direita  .vo-card-story__cta-wrap { text-align: right; }
.vo-card-story--cta-corpo    .vo-card-story__cta-wrap { text-align: left; }

/* CTA flutuante no topo do card */
.vo-card-story__cta--topo {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  opacity: 1 !important;
  transform: none !important;
  transition: background var(--vo-transition), border-color var(--vo-transition) !important;
}

/* ── Painel block (split: imagem esq + card dir) ──────────────────────── */
.vo-painel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}

.vo-painel__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.vo-painel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vo-painel__media--placeholder {
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
}

.vo-painel__selo {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

.vo-painel__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  background: #fff;
}

.vo-painel__tipo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--vo-primary, #2563eb);
  margin: 0 0 .75rem;
}

.vo-painel__titulo {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 .75rem;
}

.vo-painel__subtitulo {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: #4b5563;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.vo-painel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 1.25rem;
}

.vo-painel__preco {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1.25rem;
  line-height: 1;
}

.vo-painel__diferenciais {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.vo-painel__diferenciais li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: .95rem;
  color: #374151;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.vo-painel__diferenciais li:last-child { border-bottom: none; }

.vo-painel__diferenciais li::before {
  content: "✓";
  color: var(--vo-primary, #2563eb);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.vo-painel__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.vo-painel__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .75rem 1.5rem;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.vo-painel__cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.vo-painel__cta--primary {
  background: var(--vo-primary, #2563eb);
  color: #fff;
}

.vo-painel__cta--secondary {
  background: transparent;
  border: 2px solid var(--vo-primary, #2563eb);
  color: var(--vo-primary, #2563eb);
}

@media (max-width: 768px) {
  .vo-painel {
    grid-template-columns: 1fr;
  }
  .vo-painel__media {
    min-height: 240px;
    max-height: 340px;
  }
  .vo-painel__ctas {
    flex-direction: column;
  }
  .vo-painel__cta {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   Protocolo Showcase — bloco premium estilo página de produto
   ═══════════════════════════════════════════════════════════════════════ */

.vo-showcase-wrap {
  padding: var(--vo-section-pad, 48px 0);
}

/* ── Layout split ─────────────────────────────────────────────────────── */
.vo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  align-items: start;
}

/* ── Galeria ──────────────────────────────────────────────────────────── */
.vo-showcase__gallery {
  position: relative;
  /* align-self explícito: impede que a coluna esquerda estique até a
     altura da coluna do card (que é maior). Com align-items:start no
     grid pai, isso deveria ser automático, mas definir explicitamente
     evita que CSS do tema sobrescreva o comportamento. */
  align-self: start;
}

.vo-showcase__main-img-wrap {
  /* display:grid com filho único: o img estica para preencher a célula
     via align-items:stretch (padrão do grid), sem precisar de
     height:100% (que depende de resolução percentual vs aspect-ratio)
     nem de position:absolute (que retira o img do fluxo e pode colapsar
     o height do container em alguns browsers).
     aspect-ratio continua determinando a altura: o wrap tem largura
     definida pelo grid do showcase (1fr) → height = width × ratio. */
  display: grid;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f4f6;
  /* Ratio padrão (sem classe salva): horizontal 16/9.
     Sobrescrito pelas classes ratio-* geradas pelo PHP a partir de
     $sc_cadastro->imagem_orientacao — igual ao card-classico.php. */
  aspect-ratio: 16/9;
}

/* ── Orientações da imagem principal do Showcase ────────────────── */
.vo-showcase__main-img-wrap.ratio-horizontal { aspect-ratio: 16/9; }
.vo-showcase__main-img-wrap.ratio-square      { aspect-ratio: 1/1;  }
.vo-showcase__main-img-wrap.ratio-vertical    { aspect-ratio: 3/4;  }
.vo-showcase__main-img-wrap.ratio-banner      { aspect-ratio: 3/1;  }

.vo-showcase__main-img {
  /* Item de grid: estica para preencher a altura e largura do wrap
     automaticamente (align-self:stretch é o padrão).
     object-fit:cover garante que o conteúdo da imagem preenche o
     elemento sem distorção.
     transform:scale(1.08) cria 8% de overflow em todas as direções —
     garantindo que transform-origin produza deslocamento visual
     perceptível independente da proporção da imagem original. */
  width: 100%;
  min-height: 0;    /* reset do min-height implícito de items de grid */
  object-fit: cover;
  object-position: var(--vo-focal-origin, center center);
  transform: scale(1.08);
  transform-origin: var(--vo-focal-origin, center center);
  display: block;
  transition: opacity .28s ease;
}

.vo-showcase__main-img.is-fading { opacity: 0; }

.vo-showcase__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.vo-showcase__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color .18s, transform .18s;
}

.vo-showcase__thumb:hover { transform: scale(1.05); }
.vo-showcase__thumb.is-active { border-color: var(--vo-primary, #2563eb); }

.vo-showcase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Card fixo (sticky) ───────────────────────────────────────────────── */
.vo-showcase__card {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.09);
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  padding: 2rem;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.vo-showcase__card::-webkit-scrollbar { width: 4px; }
.vo-showcase__card::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }

.vo-showcase__selo {
  margin-bottom: 1.25rem;
}

.vo-showcase__selo img {
  max-height: 52px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.vo-showcase__card-tipo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--vo-primary, #2563eb);
  margin: 0 0 .5rem;
}

.vo-showcase__card-titulo {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 .5rem;
}

.vo-showcase__card-subtitulo {
  font-size: .95rem;
  color: #6b7280;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.vo-showcase__preco {
  font-size: 1.65rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}

.vo-showcase__card-diferenciais {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.vo-showcase__card-diferenciais li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: .88rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  line-height: 1.45;
}

.vo-showcase__card-diferenciais li:last-child { border-bottom: none; }

.vo-showcase__card-diferenciais li::before {
  content: "✓";
  color: var(--vo-primary, #2563eb);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: .8rem;
}

.vo-showcase__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 1.5rem;
}

.vo-showcase__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vo-showcase__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .875rem 1.25rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  line-height: 1;
}

.vo-showcase__cta:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.vo-showcase__cta--whatsapp {
  background: #16a34a;
  color: #fff;
}

.vo-showcase__cta--mensagem {
  background: var(--vo-primary, #2563eb);
  color: #fff;
}

.vo-showcase__cta--ligar {
  background: transparent;
  border: 2px solid #d1d5db;
  color: #374151;
}

/* ── Seção abaixo: banner + diferenciais + descrição ─────────────────── */
.vo-showcase__below {
  margin-top: 3rem;
}

.vo-showcase__banner-sec {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.vo-showcase__banner-sec img {
  width: 100%;
  height: auto;
  display: block;
}

.vo-showcase__dif-secao {
  margin-bottom: 3rem;
}

.vo-showcase__dif-secao-titulo {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #111827;
  margin: 0 0 1.5rem;
  text-align: center;
}

.vo-showcase__dif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.vo-showcase__dif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
}

.vo-showcase__dif-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--vo-primary, #2563eb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.vo-showcase__dif-text {
  font-size: .9rem;
  color: #374151;
  line-height: 1.5;
  margin: 0;
}

.vo-showcase__descricao-final {
  font-size: .975rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  white-space: pre-line;
}

/* ── Mobile ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .vo-showcase {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vo-showcase__main-img-wrap {
    border-radius: 0;
    aspect-ratio: 4/3;
    max-height: 320px;
  }

  .vo-showcase__thumbs {
    padding: 0 1rem;
  }

  .vo-showcase__card {
    position: static;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 1.5rem 1rem;
    max-height: none;
    overflow-y: visible;
    border-top: 1px solid #f3f4f6;
  }

  .vo-showcase__cta {
    padding: 1rem;
  }

  .vo-showcase__dif-grid {
    grid-template-columns: 1fr;
  }

  .vo-showcase__below {
    margin-top: 1.5rem;
  }

  .vo-showcase__banner-sec {
    border-radius: 0;
    margin-bottom: 1.5rem;
  }
}

/* =========================================================================
   Biblioteca de Cards VO (wp_vo_cards) — v3.1.0
   Classe base: .vo-card-vo
   Modelos: classico | split | overlay | protocolo |
            story-info | social | cta | feature | dor | beneficio
   Estilos: --padrao (escuro) | --claro (fundo branco) | --colorido (cor_destaque)
   ========================================================================= */

/* ── Base ─────────────────────────────────────────────────────────────────── */
.vo-card-vo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;       /* ajusta à altura do conteúdo; evita área vazia em grid */
  align-self: start;  /* impede que o grid estique o card ao tamanho da linha */
  transition: transform .2s ease, box-shadow .2s ease;
}
.vo-card-vo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}

/* ── Estilos globais (tema) ───────────────────────────────────────────────── */
.vo-card-vo--padrao {
  background: #0f1726;
  color: #c9d2e8;
}
.vo-card-vo--claro {
  background: #fff;
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.vo-card-vo--colorido { color: #fff; }

/* ── Imagem ───────────────────────────────────────────────────────────────── */
.vo-card-vo__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: #1c2540;
}
.vo-card-vo__img-wrap--short { aspect-ratio: 16/7; }

/* Orientações da imagem — aplicadas via classe ratio-* no template PHP */
.vo-card-vo__img-wrap.ratio-horizontal { aspect-ratio: 16/9; }
.vo-card-vo__img-wrap.ratio-square     { aspect-ratio: 1/1;  }
.vo-card-vo__img-wrap.ratio-vertical   { aspect-ratio: 3/4;  }
.vo-card-vo__img-wrap.ratio-banner     { aspect-ratio: 3/1;  }

.vo-card-vo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Imagem dentro do img-wrap: posicionamento absoluto garante preenchimento
   total do container em qualquer aspect-ratio, sem depender de resolução
   percentual de height em contexto flex. */
.vo-card-vo__img-wrap .vo-card-vo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Body & texto ─────────────────────────────────────────────────────────── */
.vo-card-vo__body {
  padding: 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  /* flex: 1 removido — card usa height:auto, body cresce com o conteúdo */
}
.vo-card-vo__categoria {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid currentColor;
  margin-bottom: .2rem;
  align-self: flex-start;
  line-height: 1.6;
}
.vo-card-vo__categoria--light {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.4);
}
.vo-card-vo__titulo {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.vo-card-vo__titulo--light { color: #fff; }
.vo-card-vo__titulo--cta   { font-size: 1.2rem; text-align: center; }
.vo-card-vo__titulo--dor   { color: #ef4444; }
.vo-card-vo__titulo--ben   { color: #22c55e; }
.vo-card-vo__subtitulo {
  font-size: .83rem;
  opacity: .7;
  margin: 0;
  line-height: 1.4;
}
.vo-card-vo__subtitulo--light  { color: rgba(255,255,255,.75); opacity: 1; }
.vo-card-vo__descricao--light  { color: rgba(255,255,255,.75); font-size: .88rem; text-align: center; margin: 0; }

/* ── Bullets ──────────────────────────────────────────────────────────────── */
.vo-card-vo__bullets {
  list-style: none;
  margin: .25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.vo-card-vo__bullets li {
  font-size: .84rem;
  line-height: 1.5;
  display: flex;
  gap: .4rem;
  align-items: flex-start;
}
.vo-card-vo__bullets--light li    { color: rgba(255,255,255,.85); }
.vo-card-vo__bullets--protocolo li { justify-content: flex-start; }
.vo-card-vo__bullets--feature li,
.vo-card-vo__bullets--beneficio li { gap: .55rem; }
.vo-card-vo__bullets--dor li      { gap: .55rem; }
.vo-card-vo__check {
  font-size: .88rem;
  flex-shrink: 0;
  line-height: 1.5;
}
.vo-card-vo__bullet-prefix {
  flex-shrink: 0;
  line-height: 1.5;
}

/* ── Footer & CTA ─────────────────────────────────────────────────────────── */
.vo-card-vo__footer {
  margin-top: auto;
  padding-top: .75rem;
}
.vo-card-vo__cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .55rem 1.1rem;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  align-self: flex-start;
  line-height: 1;
}
.vo-card-vo__cta:hover          { opacity: .85; transform: translateX(2px); }
.vo-card-vo__cta--outline {
  background: transparent;
  border: 1.5px solid currentColor;
}
.vo-card-vo__cta--outline:hover { opacity: 1; background: currentColor; color: #fff; }
.vo-card-vo__cta--glass {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-self: center;
  margin-top: .5rem;
}
.vo-card-vo__cta--hero {
  padding: .7rem 2rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  align-self: center;
  margin-top: .6rem;
  letter-spacing: .01em;
}

/* ══════════════════════════════════════════════════════════════════════════
   MODELOS
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Clássico ─────────────────────────────────────────────────────────────── */
.vo-card-vo--classico .vo-card-vo__body { flex: 1; }

/* ── Split ────────────────────────────────────────────────────────────────── */
.vo-card-vo--split {
  flex-direction: row;
  min-height: 200px;
}
.vo-card-vo__split-img {
  position: relative;
  width: 44%;
  flex-shrink: 0;
  overflow: hidden;
}
/* Imagem preenche o painel via posicionamento absoluto */
.vo-card-vo__split-img .vo-card-vo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Painel fallback (sem imagem): gradiente com ícone centralizado */
.vo-card-vo__split-fallback {
  width: 44%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 2rem;
  position: relative;
}
.vo-card-vo__split-accent {
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
}
.vo-card-vo__split-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .4rem;
}

/* ── Overlay ──────────────────────────────────────────────────────────────── */
.vo-card-vo--overlay {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
.vo-card-vo__overlay-gradient {
  position: absolute;
  inset: 0;
}
.vo-card-vo__overlay-body {
  position: relative;
  margin-top: auto;
  padding: 1.5rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

/* ── Protocolo ────────────────────────────────────────────────────────────── */
.vo-card-vo--protocolo {
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  align-items: center;
}
.vo-card-vo__protocolo-icon {
  font-size: 2.5rem;
  margin-bottom: .6rem;
  line-height: 1;
}
.vo-card-vo--protocolo .vo-card-vo__bullets {
  text-align: left;
  width: 100%;
}

/* ── Story Info ───────────────────────────────────────────────────────────── */
.vo-card-vo--story-info .vo-card-vo__body { gap: .45rem; }
.vo-card-vo__stat {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin: .2rem 0 .15rem;
}
.vo-card-vo--padrao .vo-card-vo__stat,
.vo-card-vo--claro  .vo-card-vo__stat {
  /* cor aplicada via inline style no template */
}

/* ── Social ───────────────────────────────────────────────────────────────── */
.vo-card-vo--social {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.vo-card-vo__social-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.vo-card-vo__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #2a3147;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vo-card-vo__avatar img         { width: 100%; height: 100%; object-fit: cover; }
.vo-card-vo__avatar-emoji       { font-size: 1.5rem; line-height: 1; }
.vo-card-vo__avatar-initial {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9aa5be;
  text-transform: uppercase;
}
.vo-card-vo__social-nome  { font-size: .9rem; font-weight: 700; margin: 0; line-height: 1.3; }
.vo-card-vo__social-cargo { font-size: .76rem; opacity: .6; margin: .1rem 0 0; }
.vo-card-vo__stars        { font-size: 1.1rem; letter-spacing: .08em; line-height: 1; }
.vo-card-vo__quote {
  font-size: .87rem;
  font-style: italic;
  line-height: 1.65;
  margin: 0;
  opacity: .82;
  border-left: 3px solid currentColor;
  padding-left: .8rem;
  flex: 1;
}

/* ── CTA card ─────────────────────────────────────────────────────────────── */
.vo-card-vo--cta {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.5rem 2rem;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: .5rem;
}
.vo-card-vo__cta-icon {
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: .15rem;
}

/* ── Feature ──────────────────────────────────────────────────────────────── */
.vo-card-vo--feature {
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.vo-card-vo__feature-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .65rem;
  flex-shrink: 0;
}
.vo-card-vo__feature-icon { font-size: 1.9rem; line-height: 1; }
.vo-card-vo--feature .vo-card-vo__bullets {
  text-align: left;
  width: 100%;
  margin-top: .5rem;
}
.vo-card-vo--feature .vo-card-vo__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: .6rem;
}

/* ── Dor ──────────────────────────────────────────────────────────────────── */
.vo-card-vo__dor-bar,
.vo-card-vo__beneficio-bar {
  height: 5px;
  width: 100%;
  flex-shrink: 0;
}
.vo-card-vo--dor .vo-card-vo__body,
.vo-card-vo--beneficio .vo-card-vo__body {
  padding: 1rem 1.25rem 1.2rem;
}
.vo-card-vo__dor-icon,
.vo-card-vo__beneficio-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: .15rem;
}

/* ── Poster ───────────────────────────────────────────────────────────────── */
/* 3.1.2 - 2026-05-25: imagem full-bleed + overlay duplo (topo leve / base escuro)  */
/* Conteúdo flutua dentro do gradiente — SEM painel sólido separado.                */
/* Imagem + overlays + conteúdo = UMA peça só (overflow:hidden herdado da base).    */
.vo-card-vo--poster {
  height: auto;
  aspect-ratio: 3/4;
  min-height: 300px;
  border-radius: 22px; /* sobrepõe o 12px da base — visual poster premium */
}

/* Imagem full-bleed (absolute, cobre todo o card) */
.vo-card-vo__poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #141c2f;
}
.vo-card-vo__poster-bg .vo-card-vo__img,
.vo-card-vo__poster-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.vo-card-vo--poster:hover .vo-card-vo__poster-bg .vo-card-vo__img {
  transform: scale(1.04);
}

/* Overlay superior: escurece levemente o topo para badges e ícone */
.vo-card-vo__poster-top-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(0,0,0,.52) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Overlay inferior: gradiente escuro SOBE por cima da imagem */
.vo-card-vo__poster-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 78%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.55) 35%,
    rgba(0,0,0,0)   70%
  );
  z-index: 2;
  pointer-events: none;
}

/* Barra superior: badge categoria (esq) + ícone (dir) */
.vo-card-vo__poster-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  padding: .85rem;
}

/* Badge categoria — pill discreta, estilo Netflix/Spotify */
.vo-card-vo__poster-badge {
  display: inline-flex;
  align-items: center;
  padding: .18rem .6rem;
  border-radius: 100px;
  border: 1px solid currentColor;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: .88;
}

/* Ícone no canto superior direito */
.vo-card-vo__poster-icon {
  font-size: 1.65rem;
  line-height: 1;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,.55));
  flex-shrink: 0;
}

/* Conteúdo flutuando sobre o gradiente inferior */
.vo-card-vo__poster-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.vo-card-vo__poster-content .vo-card-vo__titulo {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.vo-card-vo__poster-content .vo-card-vo__subtitulo {
  color: rgba(255,255,255,.70);
  font-size: .8rem;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vo-card-vo__poster-content .vo-card-vo__footer {
  margin-top: .5rem;
}
.vo-card-vo__poster-content .vo-card-vo__cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .38rem .9rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: filter .2s, transform .15s;
}
.vo-card-vo__poster-content .vo-card-vo__cta:hover {
  filter: brightness(1.12);
  transform: translateX(2px);
}

/* Hover: escala mínima — não sobe para não cortar o card em grids apertados */
.vo-card-vo--poster:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}

/* ── Gradiente ────────────────────────────────────────────────────────────── */
/* Layout horizontal: ícone à esquerda + conteúdo à direita                  */
/* Fundo: degradê direita (transparente) → esquerda (sólido)                 */
/* Borda: sólida arredondada na cor mais suave do degradê                    */
.vo-card-vo--gradiente {
  flex-direction: row;
  align-items: center;
  min-height: 140px;
  padding: 0;
  /* border e background definidos via inline style no template */
  overflow: hidden;
}

/* Painel esquerdo: ícone */
.vo-card-vo__grad-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 90px;
  padding: 1.25rem .75rem 1.25rem 1.25rem;
}
.vo-card-vo__grad-icon {
  font-size: 2.6rem;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: transform .22s ease;
}
.vo-card-vo__grad-icon--fallback {
  font-size: 1.6rem;
  opacity: .4;
}
.vo-card-vo--gradiente:hover .vo-card-vo__grad-icon {
  transform: scale(1.12) rotate(-4deg);
}

/* Separador visual (linha fina entre ícone e body, cor via JS/template) */
.vo-card-vo__grad-icon-wrap::after {
  content: '';
  display: block;
  position: absolute;
  left: 90px;
  top: 18%;
  height: 64%;
  width: 1px;
  background: currentColor;
  opacity: .12;
}

/* Painel direito: conteúdo */
.vo-card-vo__grad-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.1rem 1.25rem 1.1rem 1rem;
  min-width: 0; /* evita overflow */
}

.vo-card-vo--gradiente .vo-card-vo__titulo  { font-size: .97rem; font-weight: 700; margin: 0; }
.vo-card-vo--gradiente .vo-card-vo__subtitulo { font-size: .8rem; margin: 0; line-height: 1.5; }
.vo-card-vo--gradiente .vo-card-vo__desc    { font-size: .78rem; margin: 0; line-height: 1.55; }
.vo-card-vo--gradiente .vo-card-vo__footer  { margin-top: .25rem; padding-top: 0; }

/* Hover: eleva com sombra colorida (cor via box-shadow inline-like via filter) */
.vo-card-vo--gradiente:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.22);
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Split → empilha verticalmente */
  .vo-card-vo--split      { flex-direction: column; min-height: unset; }
  .vo-card-vo__split-img  { width: 100%; aspect-ratio: 16/9; }
  .vo-card-vo__split-img .vo-card-vo__img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .vo-card-vo__split-fallback { width: 100%; aspect-ratio: 16/9; font-size: 2.5rem; }
  .vo-card-vo__split-accent   { display: none; }

  /* Story Info */
  .vo-card-vo__stat { font-size: 2rem; }

  /* CTA */
  .vo-card-vo--cta { padding: 1.75rem 1rem 1.5rem; }

  /* Feature */
  .vo-card-vo--feature        { padding: 1.5rem 1rem 1.25rem; }
  .vo-card-vo__feature-icon-wrap { width: 58px; height: 58px; }

  /* Protocolo */
  .vo-card-vo--protocolo      { padding: 1.5rem 1rem 1.25rem; }
  .vo-card-vo__protocolo-icon { font-size: 2rem; }

  /* Poster */
  .vo-card-vo--poster              { aspect-ratio: 4/5; min-height: 260px; }
  .vo-card-vo__poster-topbar       { padding: .65rem; }
  .vo-card-vo__poster-icon         { font-size: 1.4rem; }
  .vo-card-vo__poster-content      { padding: .85rem .9rem .95rem; }
  .vo-card-vo__poster-content .vo-card-vo__titulo { font-size: .9rem; }

  /* Gradiente — empilha: ícone topo + corpo abaixo */
  .vo-card-vo--gradiente      { flex-direction: column; min-height: unset; align-items: flex-start; }
  .vo-card-vo__grad-icon-wrap { width: 100%; padding: 1rem 1.25rem .5rem; }
  .vo-card-vo__grad-icon-wrap::after { display: none; }
  .vo-card-vo__grad-body      { padding: .5rem 1.25rem 1.1rem; }
  .vo-card-vo__grad-icon      { font-size: 2rem; }
}
