/* Bonfim — Página de Produto
   Tudo vive dentro de .bf-pdp (mais a barra fixa e o lightbox, que precisam
   ficar no fim do body). Nada aqui vaza para o resto do site. */

.bf-pdp, .bf-barra, .bf-lb {
  --bf-bg: #FFFFFF;
  --bf-blush: #FAF4F1;
  --bf-ink: #3F3B36;
  --bf-ink-2: #6B635B;
  --bf-ink-3: #9A9189;
  --bf-line: #EBE4DF;
  --bf-line-2: #F3EEEA;
  --bf-verde: #118B41;
  --bf-verde-escuro: #0D7135;
  --bf-verde-claro: #E8F3EC;
  --bf-salmao: #E69573;

  /* O site usa duas fontes, e o kit do Elementor diz quais:
     primary = Montserrat nos títulos, text/accent = Inter no resto. */
  --bf-titulo: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --bf-texto: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  font-family: var(--bf-texto);
  color: var(--bf-ink);
  -webkit-font-smoothing: antialiased;
}

.bf-pdp {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.2vw, 40px) 70px;
  font-size: 15px;
  line-height: 1.6;
  box-sizing: border-box;
}
.bf-pdp *, .bf-pdp *::before, .bf-pdp *::after { box-sizing: border-box; }
.bf-pdp img { display: block; max-width: 100%; height: auto; }
.bf-pdp p { margin: 0; }
.bf-pdp a { color: inherit; text-decoration: none; box-shadow: none; }
.bf-pdp button {
  font: inherit; color: inherit; background: none; border: 0; margin: 0;
  cursor: pointer; text-transform: none; letter-spacing: normal; box-shadow: none;
}
/* O tema e o Elementor pintam button:hover. Sem isto, o botão transparente que
   cobre a foto ganha cor no hover e tapa a imagem inteira. */
.bf-pdp button:hover, .bf-pdp button:focus, .bf-pdp button:active {
  box-shadow: none; text-decoration: none;
}
.bf-pdp .bf-palco-clique,
.bf-pdp .bf-palco-clique:hover,
.bf-pdp .bf-palco-clique:focus,
.bf-pdp .bf-palco-clique:active {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline-offset: -3px;
}
.bf-pdp :focus-visible { outline: 2px solid var(--bf-verde); outline-offset: 3px; border-radius: 3px; }

/* ---------- migalha ---------- */
.bf-migalha {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 12.5px; color: var(--bf-ink-3);
  padding: 18px 0 16px; margin: 0;
}
.bf-migalha a:hover { color: var(--bf-ink); }
.bf-migalha .bf-sep { color: #CFC7C0; font-size: 10px; }
.bf-migalha .bf-atual { color: var(--bf-ink-2); font-weight: 500; }

/* ---------- grade ---------- */
/* Foto em pé numa coluna larga vira um cartaz de 1100px de altura. A coluna
   da galeria é contida e o par fica centralizado. */
.bf-layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 430px);
  gap: clamp(24px, 4vw, 64px);
  justify-content: center;
  align-items: start;
}
.bf-galeria-col { min-width: 0; position: relative; }

/* ---------- trilha de miniaturas ---------- */
/* Fita de miniaturas embaixo da foto, como em qualquer loja. Rola de lado
   quando o produto tem muitas fotos — alguns aqui têm nove. */
.bf-trilha {
  display: flex; gap: 10px; margin-top: 12px;
  overflow-x: auto; scrollbar-width: none; padding-bottom: 2px;
  scroll-snap-type: x proximity;
}
.bf-trilha::-webkit-scrollbar { display: none; }
/* Largura travada nos três eixos e com seletor forte: se alguma regra do site
   vencer o `width`, o botão passa a medir a largura natural da foto e a
   miniatura vira um pôster. Aconteceu. */
.bf-pdp .bf-trilha .bf-mini {
  flex: 0 0 auto;
  width: 78px; min-width: 78px; max-width: 78px;
  height: auto; scroll-snap-align: start;
  aspect-ratio: 3/4; border-radius: 5px; overflow: hidden; padding: 0;
  border: 1px solid var(--bf-line); background: var(--bf-blush);
  transition: border-color .18s, opacity .18s; opacity: .72;
}
.bf-pdp .bf-trilha .bf-mini img {
  width: 100%; height: 100%; max-width: 100%; min-width: 0;
  object-fit: cover; display: block;
}
.bf-pdp .bf-mini:hover { background: var(--bf-blush); opacity: 1; }
.bf-mini[aria-current="true"] { border-color: var(--bf-verde); opacity: 1; }

/* ---------- palco ---------- */
.bf-palco { position: relative; border-radius: 6px; overflow: hidden; background: var(--bf-blush); aspect-ratio: 3/4; }
.bf-palco img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.bf-foto.bf-trocando { opacity: 0; }
.bf-palco-clique { position: absolute; inset: 0; z-index: 2; cursor: zoom-in; padding: 0; }

.bf-selo-foto {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.94); color: var(--bf-ink);
  font-size: 11.5px; font-weight: 600; line-height: 1.3;
  padding: 7px 12px; border-radius: 99px;
  box-shadow: 0 1px 4px rgba(63,59,54,.12);
}
.bf-selo-foto svg { width: 14px; height: 14px; flex: none; color: var(--bf-verde); }

.bf-zoom {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(255,255,255,.92); border-radius: 50%; color: var(--bf-ink-2);
  transition: color .18s, transform .16s;
}
.bf-pdp .bf-zoom:hover { background: #fff; color: var(--bf-ink); transform: scale(1.06); }

/* Setas: aparecem no hover da galeria, some em telas de toque. */
.bf-seta {
  position: absolute; top: 0; bottom: 0; margin: auto 0;
  width: 40px; height: 40px; z-index: 4;
  display: grid; place-items: center;
  background: rgba(255,255,255,.94); border-radius: 50%;
  color: var(--bf-ink); border: 1px solid var(--bf-line-2);
  box-shadow: 0 1px 5px rgba(63,59,54,.10);
  opacity: 0; transition: opacity .2s, background .18s, transform .16s;
}
.bf-seta svg { width: 19px; height: 19px; }
.bf-seta-ant { left: 12px; }
.bf-seta-prox { right: 12px; }
.bf-galeria-col:hover .bf-seta, .bf-seta:focus-visible { opacity: 1; }
.bf-pdp .bf-seta:hover { background: #fff; transform: scale(1.06); }
.bf-seta[disabled] { opacity: 0 !important; pointer-events: none; }
@media (hover: none) { .bf-seta { display: none; } }

.bf-pontos { display: none; }

/* ---------- coluna de compra ---------- */
.bf-compra { position: sticky; top: 24px; min-width: 0; }
.bf-cat { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--bf-verde); font-weight: 600; }

.bf-pdp .bf-nome {
  font-family: var(--bf-titulo);
  font-size: clamp(21px, 2.1vw, 26px); font-weight: 600; line-height: 1.24;
  letter-spacing: -.01em; margin: 7px 0 0; padding: 0;
  text-transform: lowercase; color: var(--bf-ink);
}
.bf-pdp .bf-nome::first-letter { text-transform: uppercase; }

.bf-preco-linha { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.bf-preco { font-family: var(--bf-titulo); font-size: clamp(24px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.bf-preco .amount, .bf-preco bdi { font-size: inherit; font-weight: inherit; color: inherit; }
.bf-preco del { display: none; }
.bf-preco ins { text-decoration: none; }
.bf-parcela { font-size: 12.5px; color: var(--bf-ink-2); font-weight: 400; }

/* ---------- cartão ---------- */
.bf-pdp form.bf-form { margin: 20px 0 0; padding: 0; }
.bf-cartao { background: var(--bf-blush); border: 1px solid var(--bf-line-2); border-radius: 8px; padding: 15px 16px; }
.bf-cartao-liga { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--bf-ink-2); cursor: pointer; margin: 0; }
.bf-cartao-liga input { width: 17px; height: 17px; accent-color: var(--bf-verde); cursor: pointer; margin: 2px 0 0; flex: none; }
.bf-cartao-liga b { display: block; font-weight: 600; color: var(--bf-ink); font-size: 13.5px; }
.bf-cartao-liga small { display: block; font-size: 12px; color: var(--bf-ink-3); margin-top: 1px; }
.bf-cartao-campo { display: none; margin-top: 11px; }
.bf-cartao-campo.bf-on { display: block; }
.bf-cartao-campo textarea {
  width: 100%; min-height: 78px; padding: 11px 12px; font: inherit; font-size: 13.5px;
  border: 1px solid var(--bf-line); border-radius: 6px; background: #fff; resize: vertical; color: var(--bf-ink);
}
.bf-contador { font-size: 11.5px; color: var(--bf-ink-3); margin-top: 5px !important; text-align: right; }
.bf-contador.bf-cheio { color: var(--bf-salmao); }

/* ---------- botão ---------- */
/* Muitos sites escondem `form.cart` para usar o widget de compra do Elementor
   no lugar do formulário padrão. O nosso tem a mesma classe (o WooCommerce
   precisa dela) e sumiria junto. Botão de comprar invisível é o pior defeito
   que uma loja pode ter, então aqui ele é inegociável. */
.bf-pdp form.bf-form {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
.bf-pdp .bf-cta {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.bf-pdp .bf-cta, .bf-barra .bf-cta {
  width: 100%; height: 54px; border-radius: 6px; margin-top: 18px;
  background: var(--bf-verde); color: #fff; font-size: 15px; font-weight: 600;
  letter-spacing: .01em; line-height: 1; display: grid; place-items: center;
  border: 0; padding: 0 18px; text-transform: lowercase;
  transition: background .18s, transform .1s;
}
.bf-pdp .bf-cta:hover, .bf-barra .bf-cta:hover { background: var(--bf-verde-escuro); color: #fff; }
.bf-pdp .bf-cta:active { transform: scale(.995); }

.bf-esgotado {
  margin-top: 20px !important; padding: 16px 18px;
  border: 1px solid var(--bf-line); border-radius: 6px;
  font-size: 14px; color: var(--bf-ink-2);
}

/* ---------- selos ---------- */
.bf-selos { display: grid; gap: 9px; margin-top: 18px; }
.bf-selos > div { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--bf-ink-2); }
.bf-selos svg { width: 16px; height: 16px; flex: none; color: var(--bf-verde); }

.bf-abertura { font-size: 14px; line-height: 1.75; color: var(--bf-ink-2); margin-top: 20px !important; }

/* ---------- acordeões ---------- */
.bf-acc { margin-top: 24px; border-top: 1px solid var(--bf-line); }
.bf-acc details { border-bottom: 1px solid var(--bf-line); margin: 0; }
.bf-acc summary { list-style: none; cursor: pointer; padding: 16px 32px 16px 0; position: relative; display: block; }
.bf-acc summary::-webkit-details-marker { display: none; }
.bf-acc summary::marker { content: ""; }
.bf-at { font-family: var(--bf-titulo); font-size: 14px; font-weight: 600; display: block; }
.bf-as { font-size: 12px; color: var(--bf-ink-3); display: block; margin-top: 2px; padding-right: 6px; font-weight: 400; }
.bf-mais { position: absolute; right: 2px; top: 20px; width: 14px; height: 14px; color: var(--bf-ink-2); }
.bf-mais::before, .bf-mais::after { content: ""; position: absolute; background: currentColor; transition: transform .22s ease; }
.bf-mais::before { left: 0; top: 6.5px; width: 14px; height: 1px; }
.bf-mais::after { left: 6.5px; top: 0; width: 1px; height: 14px; }
.bf-acc details[open] .bf-mais::after { transform: scaleY(0); }

/* A abertura é animada com grid-template-rows; sem JS o <details> abre sozinho. */
.bf-acc-corpo { display: grid; grid-template-rows: 1fr; }
[data-bf-anima] .bf-acc-corpo { grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.22,.61,.36,1); }
[data-bf-anima] .bf-acc-int { overflow: hidden; min-height: 0; }
[data-bf-anima] details[open] .bf-acc-corpo { grid-template-rows: 1fr; }
[data-bf-anima] details[data-bf-fechando] .bf-acc-corpo { grid-template-rows: 0fr; }
/* O respiro vai na margem do último filho: padding em caixa colapsada
   continua ocupando altura e deixa um vão com o acordeão fechado. */
.bf-acc-int { padding: 0; }
.bf-acc .bf-acc-int > :last-child { margin-bottom: 18px; }

.bf-ficha { display: grid; gap: 0; margin: 0; }
.bf-ficha > div {
  display: grid; grid-template-columns: minmax(88px, 120px) 1fr; gap: 4px 16px;
  padding: 9px 0; border-bottom: 1px solid var(--bf-line-2); font-size: 13.5px;
}
.bf-ficha > div:last-child { border-bottom: 0; }
.bf-ficha dt { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--bf-ink-3); font-weight: 600; padding-top: 2px; margin: 0; }
.bf-ficha dd { margin: 0; color: var(--bf-ink-2); }

.bf-cuidados { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--bf-ink-2); line-height: 1.75; list-style: disc; }
.bf-cuidados li { margin-bottom: 8px; }
.bf-cuidados li::marker { color: var(--bf-verde); }

/* ---------- entrega ---------- */
.bf-entrega { display: flex; gap: 11px; align-items: flex-start; margin-top: 20px; }
.bf-entrega > svg { width: 22px; height: 22px; flex: none; color: var(--bf-ink-3); margin-top: 1px; }
.bf-entrega-txt { min-width: 0; flex: 1; }
.bf-entrega p { font-size: 12.5px; line-height: 1.7; color: var(--bf-ink-2); }
.bf-entrega b { font-weight: 600; color: var(--bf-ink); }

.bf-mais-regioes { margin: 0; border: 0; }
.bf-mais-regioes summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; padding: 0; }
.bf-mais-regioes summary::-webkit-details-marker { display: none; }
.bf-mais-regioes summary::marker { content: ""; }
.bf-link {
  font-size: 12px; font-weight: 600; color: var(--bf-ink-2);
  border-bottom: 1px solid var(--bf-line); padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}
.bf-mais-regioes summary:hover .bf-link { color: var(--bf-ink); border-color: var(--bf-ink); }
.bf-mais-regioes summary::after {
  content: ""; width: 0; height: 0;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4px solid var(--bf-ink-3); transition: transform .22s ease;
}
.bf-mais-regioes[open] summary::after { transform: rotate(180deg); }
.bf-entrega .bf-acc-int > :first-child { margin-top: 9px; }
.bf-entrega .bf-acc-int > :last-child { margin-bottom: 0; }
.bf-entrega .bf-acc-corpo p { font-size: 12.5px; margin: 0 0 9px; }

/* ---------- texto editorial ---------- */
.bf-editorial {
  margin: clamp(46px, 6vw, 72px) auto 0; max-width: 700px;
  border-top: 1px solid var(--bf-line); padding-top: clamp(26px, 3.4vw, 40px);
}
.bf-editorial p { font-size: 14.5px; line-height: 1.8; color: var(--bf-ink-2); margin: 0 0 14px; }
.bf-editorial p:last-child { margin-bottom: 0; }

/* ---------- entrada da página ---------- */
.bf-pdp.bf-armado .bf-galeria-col,
.bf-pdp.bf-armado .bf-compra > *,
.bf-pdp.bf-armado .bf-migalha { opacity: 0; transform: translateY(9px); }
.bf-pdp.bf-armado.bf-dentro .bf-galeria-col,
.bf-pdp.bf-armado.bf-dentro .bf-compra > *,
.bf-pdp.bf-armado.bf-dentro .bf-migalha {
  opacity: 1; transform: none;
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1);
}
.bf-pdp.bf-armado.bf-dentro .bf-migalha { transition-delay: 0s; }
.bf-pdp.bf-armado.bf-dentro .bf-galeria-col { transition-delay: .06s; }
.bf-pdp.bf-armado.bf-dentro .bf-compra > * { transition-delay: calc(.10s + var(--bf-i, 0) * .045s); }

/* ---------- lightbox ---------- */
.bf-lb {
  position: fixed; inset: 0; z-index: 999990;
  background: rgba(255,253,252,.97); display: none; place-items: center; padding: 24px;
}
.bf-lb[data-open="true"] { display: grid; animation: bf-fade .22s ease both; }
@keyframes bf-fade { from { opacity: 0 } to { opacity: 1 } }
.bf-lb img { max-width: min(92vw, 620px); max-height: 88vh; object-fit: contain; border-radius: 6px; }
.bf-lb[data-open="true"] img { animation: bf-pop .28s cubic-bezier(.22,.61,.36,1) both; }
@keyframes bf-pop { from { opacity: 0; transform: scale(.97) } to { opacity: 1; transform: none } }
.bf-lb-x { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; display: grid; place-items: center; background: none; border: 0; cursor: pointer; color: var(--bf-ink); }

/* ---------- barra fixa do celular ---------- */
.bf-barra {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 999980;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--bf-line);
  padding: 10px clamp(16px, 4vw, 22px) calc(10px + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 13px;
  transform: translateY(105%); transition: transform .26s ease;
}
.bf-barra[data-show="true"] { transform: translateY(0); }
.bf-barra-info { flex: 1; min-width: 0; }
.bf-barra-nome { font-size: 11.5px; color: var(--bf-ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-transform: lowercase; }
.bf-barra-preco { font-family: var(--bf-titulo); font-size: 16px; font-weight: 600; font-variant-numeric: tabular-nums; }
.bf-barra-preco .amount, .bf-barra-preco bdi { font-size: inherit; font-weight: inherit; color: inherit; }
.bf-barra-preco del { display: none; }
.bf-barra .bf-cta { width: auto; height: 44px; margin: 0; padding: 0 22px; font-size: 14px; }

/* ================= faixas ================= */
@media (max-width: 1180px) {
  .bf-layout { grid-template-columns: minmax(0, 440px) minmax(0, 370px); gap: 28px; }
  .bf-pdp .bf-trilha .bf-mini { width: 68px; min-width: 68px; max-width: 68px; }
}
@media (max-width: 960px) {
  .bf-layout { grid-template-columns: minmax(0, 560px); gap: 26px; }
  .bf-compra { position: static; }
}
@media (max-width: 640px) {
  .bf-pdp { padding: 0 0 84px; }
  .bf-migalha { padding: 14px 16px 12px; font-size: 11.5px; }
  .bf-layout { grid-template-columns: 1fr; gap: 18px; }

  .bf-galeria {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 0;
  }
  .bf-galeria::-webkit-scrollbar { display: none; }
  .bf-galeria .bf-palco { flex: 0 0 100%; scroll-snap-align: center; border-radius: 0; aspect-ratio: 4/5; }
  .bf-trilha { padding: 0 16px; margin-top: 10px; }
  .bf-pdp .bf-trilha .bf-mini { width: 62px; min-width: 62px; max-width: 62px; }

  .bf-pontos { display: flex; gap: 5px; justify-content: center; padding: 12px 0 0; }
  .bf-pontos i { width: 5px; height: 5px; border-radius: 50%; background: #DED6D0; transition: background .2s, transform .2s; }
  .bf-pontos i.bf-on { background: var(--bf-verde); transform: scale(1.3); }

  .bf-compra { padding: 0 16px; max-width: none; }
  .bf-editorial { padding-left: 16px; padding-right: 16px; }

  /* No toque tudo que se clica precisa de 44px, não de 21. */
  .bf-cartao-liga { padding: 4px 0; }
  .bf-mais-regioes summary { padding: 12px 0 11px; margin-top: 0; }
  .bf-entrega .bf-acc-int > :first-child { margin-top: 0; }

  .bf-barra { display: flex; }
}
@media (min-width: 641px) { .bf-barra { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
  .bf-pdp *, .bf-barra, .bf-lb { transition: none !important; animation: none !important; }
  .bf-pdp.bf-armado .bf-galeria-col,
    .bf-pdp.bf-armado .bf-compra > *,
  .bf-pdp.bf-armado .bf-migalha { opacity: 1 !important; transform: none !important; }
  [data-bf-anima] .bf-acc-corpo { grid-template-rows: 1fr; }
  [data-bf-anima] details:not([open]) .bf-acc-corpo { grid-template-rows: 0fr; }
}

/* ---------- calculadora de frete ---------- */
.bf-cep { margin-top: 12px; }
.bf-cep-rot {
  display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--bf-ink-3); margin-bottom: 6px;
}
.bf-cep-linha { display: flex; gap: 8px; }
.bf-pdp .bf-cep-linha input {
  flex: 1 1 auto; min-width: 0; height: 44px; padding: 0 12px;
  font: inherit; font-size: 14px; color: var(--bf-ink);
  border: 1px solid var(--bf-line); border-radius: 6px; background: #fff;
  font-variant-numeric: tabular-nums;
}
.bf-pdp .bf-cep-linha input:focus { border-color: var(--bf-verde); outline: none; }
.bf-pdp .bf-cep-btn {
  flex: 0 0 auto; height: 44px; padding: 0 18px; border-radius: 6px;
  border: 1px solid var(--bf-ink); background: #fff; color: var(--bf-ink);
  font-size: 13.5px; font-weight: 600;
  transition: background .18s, color .18s;
}
.bf-pdp .bf-cep-btn:hover { background: var(--bf-ink); color: #fff; }
.bf-pdp .bf-cep-btn[disabled] { opacity: .55; pointer-events: none; }

.bf-cep-saida:empty { display: none; }
.bf-cep-saida {
  margin-top: 10px; font-size: 12.5px; line-height: 1.65; color: var(--bf-ink-2);
  border-top: 1px solid var(--bf-line-2); padding-top: 9px;
}
.bf-cep-saida .bf-zona { font-weight: 600; color: var(--bf-ink); display: block; margin-bottom: 5px; }
.bf-cep-saida ul { margin: 0; padding: 0; list-style: none; }
.bf-cep-saida li { display: flex; justify-content: space-between; gap: 14px; padding: 4px 0; }
.bf-cep-saida li b { font-weight: 600; color: var(--bf-verde-escuro); white-space: nowrap; }
.bf-cep-saida .bf-erro { color: var(--bf-salmao); font-weight: 500; }

/* ---------- carrossel de recomendados ---------- */
.bf-rel { margin-top: clamp(46px, 6vw, 76px); border-top: 1px solid var(--bf-line); padding-top: clamp(26px, 3.4vw, 38px); }
.bf-rel-topo { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.bf-rel-titulo {
  font-family: var(--bf-titulo);
  font-size: clamp(17px, 1.9vw, 21px); font-weight: 600; line-height: 1.25;
  margin: 0; color: var(--bf-ink); text-transform: lowercase;
}
.bf-rel-titulo::first-letter { text-transform: uppercase; }
.bf-rel-setas { display: flex; gap: 8px; flex: none; }
.bf-pdp .bf-rel-seta {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--bf-line); border-radius: 50%;
  background: #fff; color: var(--bf-ink);
  transition: border-color .18s, background .18s, opacity .18s;
}
.bf-pdp .bf-rel-seta:hover { background: var(--bf-blush); border-color: var(--bf-ink-3); }
.bf-pdp .bf-rel-seta svg { width: 17px; height: 17px; }
.bf-pdp .bf-rel-seta[disabled] { opacity: .3; pointer-events: none; }

.bf-rel-fita {
  display: flex; gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; scroll-behavior: smooth;
  padding-bottom: 4px;
}
.bf-rel-fita::-webkit-scrollbar { display: none; }

.bf-card { flex: 0 0 auto; width: clamp(150px, 19vw, 200px); scroll-snap-align: start; display: block; }
.bf-card-foto { aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: var(--bf-blush); margin-bottom: 10px; }
.bf-card-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.bf-card:hover .bf-card-foto img { transform: scale(1.04); }
.bf-card-nome {
  display: block; font-size: 13px; font-weight: 500; line-height: 1.4;
  color: var(--bf-ink); text-transform: lowercase;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bf-card-nome::first-letter { text-transform: uppercase; }
.bf-card-preco {
  display: block; font-family: var(--bf-titulo);
  font-size: 14px; font-weight: 600; margin-top: 4px; color: var(--bf-ink);
  font-variant-numeric: tabular-nums;
}
.bf-card-preco .amount, .bf-card-preco bdi { font-size: inherit; font-weight: inherit; color: inherit; }
.bf-card-preco del { display: none; }
.bf-card-preco ins { text-decoration: none; }

@media (max-width: 640px) {
  .bf-rel { padding-left: 16px; padding-right: 16px; }
  .bf-rel-setas { display: none; }
  .bf-rel-fita { margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
  .bf-card { width: 148px; }
  /* alvo de toque no botão do CEP */
  .bf-pdp .bf-cep-btn, .bf-pdp .bf-cep-linha input { height: 46px; }
}

/* ======================= loja e categorias ======================= */
.bf-arquivo {
  --bf-bg: #FFFFFF;
  --bf-blush: #FAF4F1;
  --bf-ink: #3F3B36;
  --bf-ink-2: #6B635B;
  --bf-ink-3: #9A9189;
  --bf-line: #EBE4DF;
  --bf-line-2: #F3EEEA;
  --bf-verde: #118B41;
  --bf-verde-escuro: #0D7135;
  --bf-verde-claro: #E8F3EC;
  --bf-salmao: #E69573;
  --bf-titulo: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --bf-texto: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  font-family: var(--bf-texto);
  color: var(--bf-ink);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.2vw, 40px) 80px;
  font-size: 15px;
  line-height: 1.6;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.bf-arquivo *, .bf-arquivo *::before, .bf-arquivo *::after { box-sizing: border-box; }
.bf-arquivo p { margin: 0; }
.bf-arquivo a { color: inherit; text-decoration: none; box-shadow: none; }
.bf-arquivo img { display: block; max-width: 100%; height: auto; }
.bf-arquivo button { font: inherit; color: inherit; background: none; border: 0; margin: 0; cursor: pointer; text-transform: none; box-shadow: none; }
.bf-arquivo :focus-visible { outline: 2px solid var(--bf-verde); outline-offset: 3px; border-radius: 3px; }

/* ---------- topo ---------- */
.bf-arq-topo { padding: 18px 0 22px; }
.bf-arquivo .bf-migalha {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-size: 12.5px; color: var(--bf-ink-3); margin: 0 0 14px; padding: 0;
  border: 0;
}
.bf-arquivo .bf-migalha a:hover { color: var(--bf-ink); }
.bf-arquivo .bf-migalha .bf-sep { color: #CFC7C0; font-size: 10px; }
.bf-arquivo .bf-migalha .bf-atual { color: var(--bf-ink-2); font-weight: 500; }

.bf-arq-titulo {
  font-family: var(--bf-titulo);
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 600; line-height: 1.16;
  letter-spacing: -.018em; margin: 0; color: var(--bf-ink);
  text-transform: lowercase;
}
.bf-arq-titulo::first-letter { text-transform: uppercase; }

.bf-arq-conta { font-size: 13px; color: var(--bf-ink-2); margin-top: 8px !important; }
.bf-arq-conta b { font-weight: 600; color: var(--bf-ink); }
.bf-limpar {
  margin-left: 12px; font-size: 12.5px; font-weight: 600; color: var(--bf-ink-2);
  border-bottom: 1px solid var(--bf-line); padding-bottom: 1px;
}
.bf-limpar:hover { color: var(--bf-ink); border-color: var(--bf-ink); }
.bf-arq-dica { font-size: 14px; color: var(--bf-ink-2); margin-top: 8px !important; }
.bf-arq-dica strong { color: var(--bf-verde-escuro); font-weight: 600; }
.bf-arq-desc { font-size: 14.5px; line-height: 1.7; color: var(--bf-ink-2); margin-top: 12px !important; max-width: 64ch; }

/* ---------- corpo: filtros + grade ---------- */
.bf-arq-corpo {
  display: grid; grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px); align-items: start;
}
.bf-abre-filtros { display: none; }

.bf-filtros { position: sticky; top: 24px; border-top: 1px solid var(--bf-line); }
.bf-grupo { border-bottom: 1px solid var(--bf-line); padding: 16px 0; }
.bf-grupo-tit {
  font-family: var(--bf-titulo);
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bf-ink-3); margin: 0 0 10px;
}
.bf-opcoes { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.bf-opcao {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 0; font-size: 13.5px; color: var(--bf-ink-2);
  transition: color .16s;
}
.bf-opcao:hover { color: var(--bf-ink); }
.bf-marca {
  width: 15px; height: 15px; flex: none; border-radius: 3px;
  border: 1px solid var(--bf-line); background: #fff;
  position: relative; transition: background .16s, border-color .16s;
}
.bf-opcao:hover .bf-marca { border-color: var(--bf-ink-3); }
.bf-opcao--on { color: var(--bf-ink); font-weight: 600; }
.bf-opcao--on .bf-marca { background: var(--bf-verde); border-color: var(--bf-verde); }
.bf-opcao--on .bf-marca::after {
  content: ""; position: absolute; left: 4px; top: 1.5px;
  width: 5px; height: 8px; border: solid #fff; border-width: 0 1.6px 1.6px 0;
  transform: rotate(42deg);
}
.bf-opcao-nome { flex: 1; min-width: 0; }
.bf-opcao-n { font-size: 11.5px; color: var(--bf-ink-3); font-variant-numeric: tabular-nums; }

/* ---------- ordenação ---------- */
.bf-ordem { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; padding: 0; }
.bf-ordem label { font-size: 12px; color: var(--bf-ink-3); font-weight: 500; }
.bf-arquivo .bf-ordem select {
  font: inherit; font-size: 13.5px; color: var(--bf-ink);
  height: 40px; padding: 0 30px 0 12px; border: 1px solid var(--bf-line);
  border-radius: 6px; background: #fff; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%239A9189' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
}
.bf-arquivo .bf-ordem select:focus { border-color: var(--bf-verde); outline: none; }
.bf-ordem-ok { border: 1px solid var(--bf-line); border-radius: 6px; height: 40px; padding: 0 14px; }

/* ---------- grade ---------- */
.bf-grade {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: clamp(16px, 2.2vw, 28px) clamp(12px, 1.6vw, 20px);
}
.bf-arquivo .bf-card { width: auto; }
.bf-card--grade { width: auto !important; flex: none !important; }

/* `.bf-arquivo img { height:auto }` tem a mesma força que a regra do cartão e
   vem depois, então a foto parava de preencher a moldura e sobrava fundo. */
.bf-arquivo .bf-card-foto img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.bf-card-etiqueta {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.94); color: var(--bf-ink);
  font-size: 10.5px; font-weight: 600; letter-spacing: .02em;
  padding: 5px 10px; border-radius: 3px;
}
.bf-card-esgotado {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(255,255,255,.72); color: var(--bf-ink);
  font-size: 12px; font-weight: 600; text-transform: lowercase;
}
.bf-card-foto { position: relative; }

/* ---------- paginação ---------- */
.bf-paginacao {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  margin-top: clamp(30px, 4vw, 46px);
}
.bf-paginacao .page-numbers {
  min-width: 40px; height: 40px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--bf-line); border-radius: 6px;
  font-size: 13.5px; color: var(--bf-ink-2);
  transition: border-color .16s, background .16s, color .16s;
}
.bf-paginacao .page-numbers:hover { border-color: var(--bf-ink-3); color: var(--bf-ink); }
.bf-paginacao .page-numbers.current { background: var(--bf-ink); border-color: var(--bf-ink); color: #fff; font-weight: 600; }
.bf-paginacao .page-numbers.dots { border-color: transparent; }

/* ---------- sem resultado ---------- */
.bf-vazio {
  border: 1px solid var(--bf-line); border-radius: 8px;
  background: var(--bf-blush); padding: clamp(24px, 4vw, 40px);
  text-align: center;
}
.bf-vazio-tit { font-family: var(--bf-titulo); font-size: 16.5px; font-weight: 600; color: var(--bf-ink); margin-bottom: 6px !important; }
.bf-vazio p { font-size: 14px; color: var(--bf-ink-2); }
.bf-vazio-btn {
  display: inline-grid; place-items: center; margin-top: 16px;
  height: 46px; padding: 0 22px; border-radius: 6px;
  background: var(--bf-verde); color: #fff; font-size: 14px; font-weight: 600;
}
.bf-vazio-btn:hover { background: var(--bf-verde-escuro); color: #fff; }

/* ======================= faixas ======================= */
@media (max-width: 1024px) {
  .bf-arq-corpo { grid-template-columns: 200px minmax(0, 1fr); gap: 24px; }
}
@media (max-width: 860px) {
  .bf-arq-corpo { grid-template-columns: 1fr; gap: 0; }

  /* No celular o filtro é uma gaveta: ninguém rola uma coluna lateral. */
  .bf-abre-filtros {
    display: inline-flex; align-items: center; gap: 8px;
    height: 46px; padding: 0 18px; margin: 0 0 16px;
    border: 1px solid var(--bf-ink); border-radius: 6px;
    font-size: 14px; font-weight: 600; color: var(--bf-ink); background: #fff;
    position: relative;
  }
  .bf-abre-filtros svg { width: 18px; height: 18px; }
  .bf-bolinha {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--bf-verde); display: inline-block;
  }
  .bf-filtros {
    position: static; display: none;
    border: 1px solid var(--bf-line); border-radius: 8px;
    padding: 4px 16px; margin: 0 0 20px;
  }
  .bf-filtros[data-bf-aberto="true"] { display: block; }
  .bf-grupo:last-child { border-bottom: 0; }
  .bf-opcao { padding: 10px 0; }
  .bf-grade { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
@media (max-width: 640px) {
  .bf-arquivo { padding-left: 16px; padding-right: 16px; }
  .bf-grade { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; }
  .bf-ordem { margin-bottom: 14px; }
  .bf-arquivo .bf-ordem select { flex: 1; min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bf-arquivo * { transition: none !important; animation: none !important; }
}

/* ======================= home ======================= */
/* A estrutura é a da home de hoje; a linguagem é a da página de produto:
   títulos à esquerda com "ver todos", cartões sem moldura, grade de filetes,
   ícones de traço fino. */
.bf-home {
  --bf-bg: #FFFFFF; --bf-blush: #FAF4F1; --bf-blush-2: #F3EDE8;
  --bf-ink: #3F3B36; --bf-ink-2: #6B635B; --bf-ink-3: #9A9189;
  --bf-line: #EBE4DF; --bf-line-2: #F3EEEA;
  --bf-verde: #118B41; --bf-verde-escuro: #0D7135; --bf-verde-claro: #E8F3EC;
  --bf-salmao: #E69573;
  --bf-titulo: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --bf-texto: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  font-family: var(--bf-texto); color: var(--bf-ink);
  max-width: 1240px; margin: 0 auto;
  padding: clamp(14px, 2vw, 24px) clamp(16px, 3.2vw, 40px) 90px;
  font-size: 15px; line-height: 1.6; box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
.bf-home *, .bf-home *::before, .bf-home *::after { box-sizing: border-box; }
.bf-home p { margin: 0; }
.bf-home a { color: inherit; text-decoration: none; box-shadow: none; }
.bf-home img { display: block; max-width: 100%; }
.bf-home button { font: inherit; color: inherit; background: none; border: 0; margin: 0; padding: 0; cursor: pointer; text-transform: none; letter-spacing: normal; box-shadow: none; }
.bf-home button:hover, .bf-home button:focus { background: none; color: inherit; box-shadow: none; }
.bf-home :focus-visible { outline: 2px solid var(--bf-verde); outline-offset: 3px; border-radius: 3px; }
.bf-ico { width: 1em; height: 1em; flex: none; display: block; }

/* ---------- banner ---------- */
.bf-h-banner { position: relative; border-radius: 8px; overflow: hidden; background: var(--bf-blush); }
.bf-h-banner-trilho { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.bf-h-banner-trilho::-webkit-scrollbar { display: none; }
.bf-h-banner-item { flex: 0 0 100%; scroll-snap-align: start; display: block; }
.bf-h-banner-item img { width: 100%; height: auto; aspect-ratio: 1536/741; object-fit: cover; }
.bf-h-banner-pontos { position: absolute; left: 0; right: 0; bottom: 10px; display: flex; justify-content: center; gap: 2px; }
.bf-home .bf-h-banner-pontos button { width: 22px; height: 22px; display: grid; place-items: center; }
.bf-home .bf-h-banner-pontos button::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px; background: rgba(255,255,255,.55);
  transition: width .25s, background .25s;
}
.bf-home .bf-h-banner-pontos button[aria-current="true"]::before { width: 18px; background: #fff; }

/* ---------- abertura: título, busca, ocasiões ---------- */
.bf-h-abertura { padding: clamp(30px, 5vw, 56px) 0 clamp(24px, 3.4vw, 36px); }
.bf-h-titulo {
  font-family: var(--bf-titulo);
  font-size: clamp(26px, 4vw, 40px); font-weight: 600; line-height: 1.15;
  letter-spacing: -.022em; margin: 0; color: var(--bf-ink); text-wrap: balance; max-width: 22ch;
}
.bf-h-linha { font-size: clamp(15px, 1.8vw, 17px); color: var(--bf-ink-2); margin-top: 12px !important; max-width: 52ch; }

.bf-h-busca { position: relative; display: flex; margin-top: 24px; max-width: 480px; }
.bf-home .bf-h-busca input[type="search"] {
  flex: 1; min-width: 0; height: 52px; padding: 0 16px; margin: 0;
  font: inherit; font-size: 15px; color: var(--bf-ink);
  border: 1px solid var(--bf-line); border-right: 0;
  border-radius: 6px 0 0 6px; background: #fff; box-shadow: none;
  -webkit-appearance: none; appearance: none;
}
.bf-home .bf-h-busca input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.bf-home .bf-h-busca input[type="search"]:focus { outline: none; border-color: var(--bf-ink-3); }
.bf-home .bf-h-busca button[type="submit"] {
  width: 56px; height: 52px; display: grid; place-items: center;
  background: var(--bf-verde); color: #fff; border-radius: 0 6px 6px 0; font-size: 20px;
  transition: background .18s;
}
.bf-home .bf-h-busca button[type="submit"]:hover { background: var(--bf-verde-escuro); color: #fff; }

.bf-h-ocasioes { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.bf-h-ocasiao {
  display: inline-flex; align-items: center; height: 38px; padding: 0 15px; border-radius: 99px;
  border: 1px solid var(--bf-line); background: #fff;
  font-size: 13.5px; font-weight: 500; color: var(--bf-ink-2);
  transition: border-color .18s, color .18s, background .18s;
}
.bf-h-ocasiao:hover { border-color: var(--bf-verde); color: var(--bf-verde-escuro); background: var(--bf-verde-claro); }

/* ---------- faixa de benefícios: grade de filetes ---------- */
.bf-h-beneficios {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(var(--bf-n, 4), minmax(0, 1fr));
  gap: 1px; background: var(--bf-line);
  border: 1px solid var(--bf-line); border-radius: 10px; overflow: hidden;
}
.bf-h-beneficios li { margin: 0; padding: 0; background: var(--bf-blush); }
.bf-h-beneficios li > span, .bf-h-beneficios li > a, .bf-h-beneficios li {
  display: flex; align-items: center; gap: 12px;
}
.bf-h-beneficios li { padding: 18px clamp(16px, 2vw, 24px); font-size: 14px; font-weight: 500; color: var(--bf-ink); line-height: 1.35; }
.bf-h-beneficios li > a { margin: -18px calc(-1 * clamp(16px, 2vw, 24px)); padding: 18px clamp(16px, 2vw, 24px); flex: 1; transition: color .18s; }
.bf-h-beneficios li > a:hover { color: var(--bf-verde-escuro); }
.bf-h-beneficios .bf-ico { width: 22px; height: 22px; color: var(--bf-verde); }

/* ---------- seções ---------- */
.bf-h-bloco { margin-top: clamp(40px, 5.5vw, 68px); min-width: 0; }
.bf-h-topo { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.bf-h-tit {
  font-family: var(--bf-titulo);
  font-size: clamp(18px, 2.2vw, 24px); font-weight: 600; line-height: 1.2;
  letter-spacing: -.012em; margin: 0; color: var(--bf-ink);
}
.bf-h-linha-secao { font-size: 13.5px; color: var(--bf-ink-3); margin-top: 3px !important; }
.bf-h-acoes { display: flex; align-items: center; gap: 16px; flex: none; }
.bf-h-ver {
  flex: none; display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--bf-ink-2);
  border-bottom: 1px solid var(--bf-line); padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.bf-h-ver:hover { color: var(--bf-ink); border-color: var(--bf-ink); }
.bf-h-ver .bf-ico { width: 15px; height: 15px; }

.bf-h-setas { display: flex; gap: 8px; }
.bf-home .bf-h-seta {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid var(--bf-line); border-radius: 50%; background: #fff; color: var(--bf-ink);
  font-size: 17px; transition: border-color .18s, background .18s, opacity .18s;
}
.bf-home .bf-h-seta:hover { background: var(--bf-blush); border-color: var(--bf-ink-3); color: var(--bf-ink); }
.bf-home .bf-h-seta:disabled { opacity: .3; cursor: default; }

.bf-h-fita {
  display: flex; gap: clamp(12px, 1.6vw, 20px);
  overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth;
  scrollbar-width: none; padding-bottom: 4px;
}
.bf-h-fita::-webkit-scrollbar { display: none; }
.bf-h-fita:focus { outline: none; }
.bf-home .bf-card-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- categorias: o recorte já traz o fundo cinza, então a moldura é branca ---------- */
.bf-h-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: clamp(12px, 1.6vw, 18px); }
.bf-h-cat { display: block; }
.bf-h-cat-foto {
  display: block; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden;
  background: #fff; margin-bottom: 9px; padding: 4%;
}
.bf-h-cat-foto img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.bf-h-cat:hover .bf-h-cat-foto img { transform: scale(1.05); }
.bf-h-cat-nome { display: block; font-size: 13.5px; font-weight: 600; color: var(--bf-ink); line-height: 1.3; }
.bf-h-cat-n { display: block; font-size: 11.5px; color: var(--bf-ink-3); margin-top: 2px; }

/* ---------- cartaz ao lado da fita ---------- */
.bf-h-par {
  margin-top: clamp(40px, 5.5vw, 68px);
  display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px); align-items: stretch;
}
.bf-h-par--inverso { grid-template-columns: minmax(0, 1fr) minmax(0, 280px); }
.bf-h-par--so { grid-template-columns: minmax(0, 1fr); }
.bf-h-par .bf-h-bloco { margin-top: 0; }
.bf-h-cartaz { display: flex; flex-direction: column; gap: 14px; }
.bf-h-cartaz-foto {
  display: block; flex: 1; min-height: 220px; border-radius: 8px; overflow: hidden; background: var(--bf-blush);
}
.bf-h-cartaz-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.bf-h-cartaz:hover .bf-h-cartaz-foto img { transform: scale(1.04); }
.bf-h-cartaz-texto { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.bf-h-cartaz-tit {
  font-family: var(--bf-titulo); font-size: clamp(16px, 1.8vw, 19px); font-weight: 600;
  line-height: 1.3; color: var(--bf-ink); letter-spacing: -.01em;
}
.bf-h-cartaz-botao {
  display: inline-flex; align-items: center; gap: 9px;
  height: 44px; padding: 0 18px; border-radius: 6px;
  border: 1px solid var(--bf-ink); color: var(--bf-ink);
  font-size: 14px; font-weight: 600; transition: background .18s, color .18s;
}
.bf-h-cartaz-botao .bf-ico { width: 17px; height: 17px; }
.bf-h-cartaz:hover .bf-h-cartaz-botao { background: var(--bf-ink); color: #fff; }

/* ---------- depoimentos ---------- */
.bf-h-depoimentos .bf-h-tit { margin-bottom: 18px; }

/* ---------- informações: mesma grade de filetes ---------- */
.bf-h-info-cards {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: var(--bf-line);
  border: 1px solid var(--bf-line); border-radius: 10px; overflow: hidden;
}
.bf-h-info-card {
  display: flex; flex-direction: column; gap: 12px; background: var(--bf-blush);
  padding: clamp(20px, 2.6vw, 30px); font-size: 13.5px; line-height: 1.7; color: var(--bf-ink-2);
  transition: background .18s;
}
a.bf-h-info-card:hover { background: var(--bf-blush-2); }
.bf-h-info-card .bf-ico { width: 22px; height: 22px; color: var(--bf-verde); }
.bf-h-info-card strong { display: block; font-family: var(--bf-titulo); font-size: 15.5px; font-weight: 600; color: var(--bf-ink); line-height: 1.3; margin-bottom: 4px; }

/* ======================= faixas ======================= */
@media (max-width: 960px) {
  .bf-h-beneficios { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .bf-h-par, .bf-h-par--inverso { grid-template-columns: minmax(0, 1fr); }
  .bf-h-par--inverso .bf-h-cartaz { order: 2; }
  .bf-h-cartaz { display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: center; gap: 16px; }
  .bf-h-cartaz-foto { min-height: 0; aspect-ratio: 1/1; }
  .bf-h-info-cards { grid-template-columns: minmax(0, 1fr); }
  .bf-h-info-card { flex-direction: row; align-items: flex-start; gap: 14px; }
}
@media (max-width: 640px) {
  .bf-home { padding-left: 16px; padding-right: 16px; }
  .bf-h-banner-item img { aspect-ratio: auto; }
  .bf-h-abertura { padding-top: 26px; }
  .bf-h-fita { margin: 0 -16px; padding-left: 16px; padding-right: 16px; scroll-padding-left: 16px; }
  .bf-h-setas { display: none; }
  .bf-h-topo { align-items: baseline; }
  .bf-h-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  .bf-h-beneficios li { padding: 14px; font-size: 13px; gap: 10px; }
  .bf-h-beneficios li > a { margin: -14px; padding: 14px; }
  .bf-h-beneficios .bf-ico { width: 20px; height: 20px; }
  .bf-h-ocasioes { flex-wrap: nowrap; overflow-x: auto; margin: 16px -16px 0; padding: 0 16px; scrollbar-width: none; }
  .bf-h-ocasioes::-webkit-scrollbar { display: none; }
  .bf-h-ocasiao { flex: none; height: 42px; }
  .bf-h-cartaz { grid-template-columns: 96px minmax(0, 1fr); }
  .bf-h-cartaz-botao { height: 42px; padding: 0 14px; font-size: 13.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .bf-home * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
