/* ============================================================
   Casa da Ventoinha — Landing Page v3
   Mesma identidade da LP original (azul da marca + branco +
   verde WhatsApp), executada com acabamento premium: cantos
   suaves, sombras macias, carrossel de produtos.
   ============================================================ */

/* ---------- Fonte (variável, auto-hospedada — 1 arquivo) ---------- */
@font-face {
  font-family: "Figtree";
  src: url("../fonts/Figtree-var.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* azuis da marca (mesmos da LP original) */
  --blue-950: #032547;
  --blue-900: #002a52;
  --blue-800: #003263;
  --blue-600: #0853a1;
  --blue-500: #1268bd;
  --blue-tint: #eef5fb;
  /* neutros */
  --ink: #22303f;
  --muted: #5b6a7a;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --line: #e1eaf2;
  /* ação */
  --wa: #1faa53;
  --wa-dark: #178c43;
  /* tipografia */
  --font: "Figtree", "Segoe UI", Arial, sans-serif;
  /* forma */
  --container: 71rem;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 2px 6px rgb(3 37 71 / 0.05), 0 14px 34px rgb(3 37 71 / 0.09);
  --shadow-lift: 0 4px 10px rgb(3 37 71 / 0.08), 0 22px 44px rgb(3 37 71 / 0.16);
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
ul { padding: 0; list-style: none; }
a { color: var(--blue-600); }
h1, h2, h3 {
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.012em;
  text-wrap: balance;
  color: var(--blue-800);
}
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--blue-800);
  color: #fff;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.skip-link:focus { top: 0; }

.eyebrow, .eyebrow-dark {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.eyebrow { color: #9ec8ee; }
.eyebrow-dark { color: var(--blue-600); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.4rem;
  border-radius: 999px;
  border: 0;
  font-family: var(--font);
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn .ico { width: 1.2em; height: 1.2em; flex: none; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 1.04rem; }
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 18px rgb(31 170 83 / 0.35);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }

/* CTA principal: aura pulsante (respiro) + brilho que atravessa, discreto.
   overflow:hidden recorta só o brilho; a aura sai pelo box-shadow do próprio botão. */
.btn-pulse { position: relative; overflow: hidden; animation: waPulse 2.6s ease-out infinite; }
.btn-pulse:hover { animation-play-state: paused; }
.btn-pulse::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgb(255 255 255 / 0.35), transparent);
  transform: skewX(-18deg);
  animation: waShine 4.8s ease-in-out 1.4s infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 6px 18px rgb(31 170 83 / 0.35), 0 0 0 0 rgb(31 170 83 / 0.5); }
  70%  { box-shadow: 0 6px 18px rgb(31 170 83 / 0.35), 0 0 0 16px rgb(31 170 83 / 0); }
  100% { box-shadow: 0 6px 18px rgb(31 170 83 / 0.35), 0 0 0 0 rgb(31 170 83 / 0); }
}
@keyframes waShine {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-pulse { animation: none; }
  .btn-pulse::after { display: none; }
}

.btn-outline {
  color: var(--blue-800);
  border: 1.5px solid var(--blue-600);
}
.btn-outline:hover { background: var(--blue-tint); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blue-800);
  color: #fff;
}
.topbar {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  padding: 0.32rem 1rem;
  font-size: 0.8rem;
  color: rgb(255 255 255 / 0.72);
  background: var(--blue-950);
}
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; }
.navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.55rem clamp(1rem, 4vw, 2rem);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
}
.brand img { width: 42px; height: 44px; }
.brand-name {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
}
.brand-name strong { font-weight: 800; }
.nav-links { display: none; gap: 1.5rem; }
.nav-links a {
  color: rgb(255 255 255 / 0.85);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.94rem;
}
.nav-links a:hover { color: #fff; }
.btn-nav { padding: 0.52rem 1.05rem; font-size: 0.89rem; white-space: nowrap; }

@media (max-width: 47.9375rem) {
  .topbar-address { display: none; }
  .btn-nav-long { display: none; }
  .brand-name { font-size: 0.94rem; }
}
@media (min-width: 48rem) {
  .nav-links { display: flex; }
}

/* ---------- Hero (foto real do galpão sob véu azul da marca) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(2.5rem, 5vw, 3.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/galpao-800.webp") center 30% / cover no-repeat;
}
@media (min-width: 48rem) {
  .hero::before { background-image: url("../images/galpao.webp"); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgb(0 50 99 / 0.95) 25%, rgb(8 83 161 / 0.78) 65%, rgb(8 83 161 / 0.55));
}
.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 700;
  max-width: 19ch;
}
.hero-sub {
  margin-top: 0.9rem;
  max-width: 32rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  color: rgb(255 255 255 / 0.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.hero-note {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.62);
}
.hero-photo { justify-self: center; position: relative; }
.hero-photo-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}
/* selo de 30 anos aplicado como broche, saindo pelo canto inferior direito */
.hero-badge {
  position: absolute;
  right: -1.9rem;
  bottom: 3.6rem;
  width: clamp(5rem, 13vw, 8.5rem);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 6px 14px rgb(3 37 71 / 0.38));
  pointer-events: none;
}
@media (max-width: 47.9375rem) {
  .hero-badge { right: -0.5rem; bottom: 3.4rem; width: clamp(4.5rem, 22vw, 6.5rem); }
}
/* fatos rápidos: pastilhas translúcidas arredondadas */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: clamp(2rem, 5vw, 3rem);
}
.trust-strip li {
  display: grid;
  gap: 0.05rem;
  padding: 0.85rem 1.15rem;
  background: rgb(255 255 255 / 0.09);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
.trust-strip strong {
  font-weight: 750;
  font-size: 1.3rem;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.trust-strip span {
  font-size: 0.84rem;
  color: rgb(255 255 255 / 0.72);
}
@media (min-width: 48rem) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Seções ---------- */
.section { padding-block: clamp(2.75rem, 6vw, 4.25rem); }
.section-alt { background: var(--bg-soft); }

/* marca-d'água editorial: palavra gigante e sutil ao fundo da seção */
.has-watermark { position: relative; overflow: hidden; }
.section-watermark {
  position: absolute;
  bottom: -0.14em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  font-size: clamp(4rem, 17vw, 15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgb(8 83 161 / 0.016);
  pointer-events: none;
  user-select: none;
}
.has-watermark > .container { position: relative; z-index: 1; }
.section-head { max-width: 42rem; margin-bottom: clamp(1.5rem, 4vw, 2.2rem); }
.section-head h2, .about-copy h2, .contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
}
.section-head p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ---------- Produtos: vitrine visual (simples, direto ao WhatsApp) ---------- */
.section-head-center {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
}
.section-head-center h2 {
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  max-width: none;
  margin-inline: auto;
}
/* no desktop, título em uma linha só */
@media (min-width: 62rem) {
  .section-head-center h2 { white-space: nowrap; }
}
.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}
@media (min-width: 40rem) { .vitrine-grid { grid-template-columns: repeat(4, 1fr); } }
.vitrine-item {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-decoration: none;
  text-align: center;
}
.vitrine-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, #fff 0%, var(--blue-tint) 78%);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.vitrine-photo img {
  width: 76%;
  height: 76%;
  object-fit: contain;
  transition: transform 0.22s ease;
}
.vitrine-item:hover .vitrine-photo {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.vitrine-item:hover .vitrine-photo img { transform: scale(1.05); }
.vitrine-item h3 {
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--blue-800);
}
/* linha de apoio: esclarece a aplicação sem competir com o nome */
.vitrine-item h3 .vitrine-sub {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-500, #6b7a90);
}
/* chamada final para quem não sabe o nome da peça — com respiro */
.vitrine-foot {
  display: grid;
  justify-items: center;
  gap: 1.6rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}
.vitrine-foot p {
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  max-width: none;
  line-height: 1.5;
}
/* no desktop, subtítulo do rodapé em uma linha só */
@media (min-width: 48rem) {
  .vitrine-foot p { white-space: nowrap; }
}
.vitrine-foot strong { color: var(--blue-800); font-weight: 800; }
.vitrine-foot .btn-lg { padding: 1.1rem 2.1rem; font-size: 1.12rem; }



/* ---------- Diferenciais (colunas leves, detalhes azuis) ---------- */
.feature-grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
}
.feature-card {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 0;
  background: none;
  color: inherit;
}
.feature-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 0.5rem;
  border-radius: 14px;
  color: var(--blue-600);
  background: var(--blue-tint);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.feature-card:hover .feature-ico {
  transform: translateY(-2px);
  background: #dcebf8;
}
.feature-ico svg { width: 1.6rem; height: 1.6rem; }
.feature-card h3 {
  color: var(--blue-800);
  font-size: 1.06rem;
  font-weight: 650;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}
/* divisórias finas só quando as colunas ficam lado a lado */
@media (min-width: 60rem) {
  .feature-grid { gap: 0; }
  .feature-card { padding-inline: 2.25rem; }
  .feature-card:first-child { padding-left: 0; }
  .feature-card:last-child { padding-right: 0; }
  .feature-card:not(:first-child) { border-left: 1px solid var(--line); }
}

/* ---------- Sobre ---------- */
.about-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
.about-photos { position: relative; justify-self: center; }
.about-photo-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.about-photo-detail {
  position: absolute;
  right: -0.75rem;
  bottom: -1.25rem;
  width: min(36%, 170px);
  border-radius: var(--radius-sm);
  border: 4px solid #fff;
  box-shadow: var(--shadow-lift);
}
.about-copy > p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.about-copy .btn { margin-top: 1.9rem; }
.check-list {
  display: grid;
  gap: 0.5rem;
  margin-block: 1.25rem 1.6rem;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 550;
  font-size: 0.99rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="none" stroke="white" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round" d="m3.5 8.5 3 3 6-7"/></svg>') center / 68% no-repeat,
    var(--blue-600);
}
@media (min-width: 48rem) {
  .about-grid { grid-template-columns: 1fr 1.1fr; }
  .about-photos { margin-bottom: 1.25rem; }
}

/* ---------- Avaliações ---------- */
.review-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
}
.review-card {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.stars {
  color: #f0a51f;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}
.review-card blockquote p {
  color: var(--ink);
  font-size: 0.97rem;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.2rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue-800);
  font-weight: 700;
  font-size: 0.82rem;
}
.review-foot { margin-top: 1.5rem; text-align: center; font-size: 0.98rem; }
.review-foot a { font-weight: 650; }

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.contact-info address {
  font-style: normal;
  margin-block: 1.2rem 1.5rem;
  display: grid;
  gap: 0.95rem;
}
.contact-line { display: grid; gap: 0.1rem; }
.contact-line strong {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-line, .contact-line a {
  color: var(--blue-900);
  font-weight: 600;
  text-decoration: none;
}
.contact-line a:hover { text-decoration: underline; }
.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(17rem, 38vw, 24rem);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
@media (min-width: 48rem) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

/* ---------- CTA final (faixa azul da marca) ---------- */
.cta-final {
  background: linear-gradient(120deg, var(--blue-900), var(--blue-600));
  color: #fff;
  text-align: center;
}
.cta-final .container { padding-block: clamp(2.75rem, 6vw, 4rem); }
.cta-final h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  max-width: 42rem;
  margin-inline: auto;
}
.cta-final p {
  margin-block: 0.7rem 1.5rem;
  color: rgb(255 255 255 / 0.85);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-950);
  color: rgb(255 255 255 / 0.72);
  font-size: 0.88rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.5rem;
}
.site-footer a { color: rgb(255 255 255 / 0.9); }

/* ---------- WhatsApp flutuante ---------- */
.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.28);
  transition: transform 0.15s ease;
}
.wa-fab:hover { transform: scale(1.06); }

/* ---------- Revelação sutil ao rolar ---------- */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Tema WP: complementos ---------- */
.wa-fab svg { width: 28px; height: 28px; }
.brand img, .brand .brand-logo { width: 42px; height: auto; }

/* Páginas internas (posts, política de privacidade, 404...) */
.inner-page { min-height: 55vh; }
.container-narrow { max-width: 46rem; }
.entry-title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1rem; }
.entry-title a { color: var(--blue-800); text-decoration: none; }
.entry-title a:hover { text-decoration: underline; }
.entry { margin-bottom: 2.5rem; }
.entry-thumb img { border-radius: var(--radius); margin-bottom: 1.25rem; }
.entry-content h2, .entry-content h3 { margin: 1.5rem 0 0.5rem; }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.4rem; }
.entry-content ul { list-style: disc; }
.entry-content img { border-radius: var(--radius-sm); height: auto; }
.entry-content a { color: var(--blue-600); }
.nav-links .menu-item a { display: inline-block; padding: 0.25rem 0; }
.navigation.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }


/* ---------- Mobile: centralizar topo, sobre e contato ---------- */
@media (max-width: 47.9375rem) {
  .hero-copy { text-align: center; }
  .hero h1 { max-width: none; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }

  .about-copy { text-align: center; }

  .contact-info { text-align: center; }
  .contact-info address { justify-items: center; }
  .contact-line { justify-items: center; }

  #diferenciais .section-head { text-align: center; }
  .feature-card { justify-items: center; text-align: center; }

  .footer-grid { justify-content: center; text-align: center; }
}

/* ============ Catálogo completo (v1.0.8) ============ */
.catalogo{
  margin-top:1.5rem; padding-top:1.6rem;
  border-top:1px solid rgba(8,83,161,.12); text-align:center;
}
.catalogo-head{
  font-size:.8rem; letter-spacing:.09em; text-transform:uppercase;
  color:var(--ink-500,#6b7a90); font-weight:600; margin:0 0 1rem;
}
.catalogo-list{
  list-style:none; margin:0 auto; padding:0; max-width:52rem;
  display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center;
}
.catalogo-chip{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.52rem .95rem; border-radius:999px;
  background:#eef4fb; color:var(--blue-800);
  font-size:.92rem; font-weight:550; text-decoration:none;
  transition:background .18s ease, transform .18s ease;
}
.catalogo-chip::before{ content:"\203A"; opacity:.5; font-weight:700; }
.catalogo-chip:hover{ background:#e2edf9; transform:translateY(-1px); }
/* etiqueta fixa do catálogo (não clicável, cor preenchida) */
.catalogo-label{
  display:inline-flex; align-items:center; gap:.55rem; margin:0 auto;
  padding:.72rem 1.4rem; border-radius:999px;
  background:#eef4fb; border:1.5px solid rgba(8,83,161,.28);
  color:var(--blue-800); font-weight:600; font-size:1rem; cursor:default;
  justify-content:center; text-align:center;
}
.catalogo-label .cat-count{ font-weight:500; opacity:.7; }
/* mobile: etiqueta vira só um detalhe pequeno e discreto */
@media (max-width: 47.9375rem){
  .catalogo-label .cat-count{ display:none; }
  .catalogo-label{
    font-size:.82rem; font-weight:500; padding:.34rem .85rem;
    background:transparent; border-color:transparent;
    color:var(--ink-500,#6b7a90);
  }
  .vitrine-foot{ gap:.7rem; margin-top:1.1rem; }
  .catalogo{ margin-top:.25rem; padding-top:1rem; }
  .catalogo-head{ margin-bottom:.85rem; }
}
