/* ============================================================
   GRILO ALIMENTOS — style.css (BEM)
   01 tokens/reset/base · 02 header · 03 footer · 04 hero/marquee
   05 produtos · 06 pratos · 07 quem-somos/receitas/cta · 08 bandas/reveals/a11y
   ============================================================ */

/* ---- 01 · Tokens ---- */
:root {
  --c-red: #FF0000;
  --c-red-dark: #D40000;
  --c-cream: #FFF7DF;
  --c-white: #FFFFFF;
  --c-black: #0D0D0D;
  --c-green-dark: #264500;
  --c-green-light: #C1ECBD;
  --c-orange: #FF913A;
  --c-yellow: #FFC200;
  --c-brown: #561700;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --container: 72rem;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --radius: 1.5rem;
  --radius-pill: 999px;
  --header-h: 5rem;
  --shadow-card: 0 20px 40px -20px rgba(13, 13, 13, 0.25);
}

/* ---- 01 · Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-black);
  background-color: var(--c-red);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }

/* ---- 01 · Utilitários ---- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad-x); }
.band { position: relative; background-color: var(--band, transparent); }
.section { padding-block: clamp(4rem, 9vw, 7rem); }
.section__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.section__kicker::before {
  content: '';
  width: 0.55em; height: 0.55em;
  border-radius: 50%;
  background-color: currentColor;
}
.section__kicker--plain::before { content: none; }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.9em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(13, 13, 13, 0.4); }
.btn:active { transform: translateY(0); }
.btn--cream { background-color: var(--c-cream); color: var(--c-red); }
.btn--cream:hover { background-color: var(--c-white); }
.btn--red { background-color: var(--c-red); color: var(--c-cream); }
.btn--red:hover { background-color: var(--c-red-dark); }
.btn--brown { background-color: var(--c-brown); color: var(--c-cream); }
.btn--yellow { background-color: var(--c-yellow); color: var(--c-black); }
.btn--yellow:hover { background-color: #FFD24D; }
.btn--ghost-cream { border-color: var(--c-cream); color: var(--c-cream); }
.btn--ghost-cream:hover { background-color: var(--c-cream); color: var(--c-red); }

/* ---- 01 · Acessibilidade ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75em 1.5em;
  background-color: var(--c-black);
  color: var(--c-cream);
  border-radius: 0 0 0.75rem 0.75rem;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms; animation-iteration-count: 1; transition-duration: 0.01ms; }
}

/* ---- 02 · Header ---- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}
.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.header__logo { position: relative; display: block; width: 132px; }
.header__logo-img--red { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.header__logo-img--cream { transition: opacity 0.3s ease; }
.header__list { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.header__link {
  font-weight: 700;
  color: var(--c-cream);
  padding: 0.25em 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.3s ease;
}
.header__link:hover { border-bottom-color: currentColor; }
.header__cta { font-size: 0.9rem; padding: 0.7em 1.6em; }
.header__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 60;
}
.header__burger-bar {
  width: 26px; height: 3px;
  border-radius: 2px;
  background-color: var(--c-cream);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Estado sólido (após rolar) */
.header--solid { background-color: var(--c-cream); box-shadow: 0 8px 24px -16px rgba(13, 13, 13, 0.35); }
.header--solid .header__logo-img--cream { opacity: 0; }
.header--solid .header__logo-img--red { opacity: 1; }
.header--solid .header__link { color: var(--c-black); }
.header--solid .header__cta { background-color: var(--c-red); color: var(--c-cream); }
.header--solid .header__burger-bar { background-color: var(--c-red); }

/* Esconde ao rolar para baixo */
.header--hidden { transform: translateY(-100%); }

/* Menu mobile */
@media (max-width: 48rem) {
  .header__burger { display: flex; }
  .header__nav {
    position: fixed;
    inset: 0;
    background-color: var(--c-red);
    display: grid;
    place-content: center;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
  }
  .header__list { flex-direction: column; gap: 1.75rem; }
  .header__link {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--c-cream);
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .header--open .header__nav { visibility: visible; opacity: 1; transition-delay: 0s; }
  .header--open .header__link { opacity: 1; transform: none; }
  .header--open .header__item:nth-child(1) .header__link { transition-delay: 0.08s; }
  .header--open .header__item:nth-child(2) .header__link { transition-delay: 0.14s; }
  .header--open .header__item:nth-child(3) .header__link { transition-delay: 0.2s; }
  .header--open .header__item:nth-child(4) .header__link { transition-delay: 0.26s; }
  .header--open .header__item:nth-child(5) .header__link { transition-delay: 0.32s; }
  .header--open .header__burger-bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .header--open .header__burger-bar:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }
  .header--open.header--solid .header__burger-bar { background-color: var(--c-cream); }
  .header--solid .header__nav .header__link { color: var(--c-cream); }
}

/* ---- 03 · Footer ---- */
.footer { --band: var(--c-brown); color: var(--c-cream); }
.footer__inner { padding-block: clamp(3rem, 7vw, 5rem) 1.5rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer__tagline { margin-top: 1.25rem; max-width: 30ch; opacity: 0.85; }
.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--c-green-light);
}
.footer__list { display: grid; gap: 0.6rem; }
.footer__link { opacity: 0.85; transition: opacity 0.2s ease; }
.footer__link:hover { opacity: 1; text-decoration: underline; }
.footer__text { opacity: 0.85; }
.footer__social-list { display: flex; gap: 0.75rem; }
.footer__seal { width: clamp(96px, 9vw, 120px); height: auto; margin-top: 1.5rem; opacity: 0.95; }
.footer__social-link {
  display: grid;
  place-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 247, 223, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.footer__social-link:hover { transform: translateY(-4px); background-color: var(--c-red); }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 247, 223, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
.footer__copy {
  font-size: 0.85rem;
  opacity: 0.7;
  text-align: center;
}
.footer__credit {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.footer__credit:hover { opacity: 1; }
.footer__credit img { height: 12px; width: auto; max-height: 12px; }
@media (max-width: 48rem) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; }
  .footer__credit { position: static; }
}

/* ---- 04 · Hero (bento) ---- */
.hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.hero__inner {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero__content { align-self: center; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero__word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__word > span { display: inline-block; }
.hero__subtitle { margin-top: 1.5rem; max-width: 44ch; font-size: clamp(1rem, 1.4vw, 1.15rem); opacity: 0.92; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* Bento — composição quebrada com sobreposições e checkered de fundo */
.hero__bento {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-height: 75svh;
}
.hero__checkered {
  position: absolute;
  top: 4%;
  left: -6%;
  width: 118%;
  height: 92%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.hero__tile {
  position: absolute;
  overflow: hidden;
  border-radius: 1.25rem;
  background-color: rgba(255, 247, 223, 0.06);
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__tile:hover img { transform: scale(1.05); }

/* Bubble — foto principal cortada em bolha orgânica, centralizada verticalmente */
.hero__tile--bubble {
  top: 18%; left: 18%;
  width: 62%; aspect-ratio: 1;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  z-index: 1;
  -webkit-mask-image: url('images/bubble-foto.svg');
          mask-image: url('images/bubble-foto.svg');
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.hero__tile--bubble img {
  border-radius: 0;
  object-position: center 30%;
}

/* Foto lifestyle horizontal — base direita, invade o checkered */
.hero__tile--photo-wide {
  bottom: 4%; right: 0;
  width: 44%; height: 30%;
  border-radius: 1.25rem;
  z-index: 2;
}

/* Foto lifestyle vertical — topo esquerda, cantos assimétricos, acima do bubble */
.hero__tile--photo-tall {
  top: 2%; left: 0;
  width: 34%; height: 36%;
  border-radius: 2rem 5rem 2rem 5rem;
  z-index: 3;
}

/* SKU rotativo com fundo pill amarelo, base esquerda — produto maior */
.hero__tile--sachet-pill {
  bottom: 8%; left: 12%;
  width: 34%; height: 30%;
  background-color: #FFC200;
  border-radius: var(--radius-pill);
  transform: rotate(3deg);
  z-index: 4;
  box-shadow: 0 20px 40px -20px rgba(13, 13, 13, 0.35);
}
.hero__tile--sachet-pill img { object-fit: contain; padding: 10%; }

/* SKU rotativo solto — canto superior direito, "caindo" sobre o bubble */
.hero__tile--sachet-drop {
  top: 2%; right: 8%;
  width: 22%; height: 32%;
  background: transparent;
  overflow: visible;
  transform: rotate(-4deg);
  z-index: 5;
  filter: drop-shadow(0 20px 24px rgba(13, 13, 13, 0.35));
}
.hero__tile--sachet-drop img { object-fit: contain; }

/* Mascote flutuante entre bubble e sachet-drop */
.hero__mascot {
  position: absolute;
  top: 10%; right: 32%;
  width: 72px; height: 72px;
  z-index: 6;
  pointer-events: none;
}
.hero__mascot img { width: 100%; height: 100%; }

/* Dissolve suave — cross-fade longo, easing simétrico */
.hero__tile .hero__sku {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__tile .hero__sku.is-active { opacity: 1; }
/* Nas fotos lifestyle, o dissolve usa cover (não contain como nos sachês) */
.hero__tile--photo-wide .hero__sku,
.hero__tile--photo-tall .hero__sku { width: 100%; height: 100%; object-fit: cover; }
.hero__tile--sachet-pill .hero__sku { width: 100%; height: 100%; object-fit: contain; padding: 10%; }
.hero__tile--sachet-drop .hero__sku { width: 100%; height: 100%; object-fit: contain; }

/* Float suave (mobile/touch e decorativos) */
@keyframes u-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.u-float { animation: u-float 5s ease-in-out infinite; }
.u-float--slow { animation-duration: 7s; animation-delay: -2s; }
.u-float--slower { animation-duration: 9s; animation-delay: -4s; }

/* ---- 04 · Marquee ---- */
/* scale >1 cobre as pontas ao rotacionar; z-index + margin-bottom negativo puxam
   a próxima seção para baixo da faixa inclinada, evitando que o fundo (vermelho)
   vaze entre a base inclinada da faixa e o topo reto da seção seguinte. */
.marquee { --band: var(--c-cream); padding-block: 1.1rem; overflow: clip; rotate: -1.5deg; scale: 1.04 1; position: relative; z-index: 2; margin-bottom: clamp(-3rem, -3.5vw, -1.75rem); }
/* Faixa que sobrepõe o fim do hero e o início da próxima seção */
.marquee--seam { position: relative; z-index: 4; margin-block: clamp(-3.5rem, -5vw, -2.25rem); }
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 22s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.01em;
  color: var(--c-red);
  white-space: nowrap;
}
.marquee__icon { width: clamp(32px, 3.5vw, 44px); height: auto; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

@media (max-width: 60rem) {
  .hero__inner { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 1rem); }
  .hero__bento { max-height: none; aspect-ratio: 1 / 1.1; margin-top: 0.5rem; }
}
@media (max-width: 48rem) {
  .hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero__bento { aspect-ratio: 1 / 1.15; }
  .hero__checkered { top: 8%; left: -4%; width: 110%; height: 88%; opacity: 0.35; }
  /* Bubble mantém máscara orgânica no mobile */
  .hero__tile--bubble { top: 0; left: 15%; width: 70%; aspect-ratio: 1; }
  .hero__tile--photo-tall { top: auto; bottom: 4%; left: 0; width: 46%; height: 32%; border-radius: 1.5rem 3rem 1.5rem 3rem; }
  .hero__tile--photo-wide { bottom: 4%; right: 0; width: 46%; height: 32%; }
  .hero__tile--sachet-drop { top: 4%; right: 4%; width: 26%; height: 22%; }
  /* Bolha amarela: 100% círculo no mobile */
  .hero__tile--sachet-pill {
    bottom: 38%; left: 50%;
    transform: translateX(-50%) rotate(3deg);
    width: 32%; height: auto; aspect-ratio: 1;
    border-radius: 50%;
  }
  .hero__mascot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .u-float, .u-float--slow, .u-float--slower { animation: none; }
}

/* ---- 05 · Produtos ---- */
.products { --band: var(--c-white); color: var(--c-black); }
.products__kicker { color: var(--c-red); }
.products__title { max-width: 18ch; }
.products__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.product-card {
  position: relative;
  background-color: var(--c-cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}
.product-card__chevron {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--c-red);
  color: var(--c-white);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.product-card__chevron:hover { background-color: var(--c-red-dark); transform: translateX(3px); }
.product-card__media { position: relative; aspect-ratio: 1; margin-bottom: 1.25rem; }
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card__img--solo { opacity: 0; transform: rotate(8deg) scale(0.9); }
.product-card:hover .product-card__img--duo { opacity: 0; transform: rotate(-6deg) scale(0.92); }
.product-card:hover .product-card__img--solo { opacity: 1; transform: rotate(0deg) scale(1); }
.product-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0;
  flex: 1;
}
.products__more { margin-top: clamp(2.5rem, 5vw, 4rem); text-align: center; }

/* Slider horizontal full-width (home) — quebra o container e permite scroll */
.products__grid--slider {
  grid-template-columns: none;
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 1.5rem 3rem;
  padding-inline: var(--pad-x);
  margin-inline: calc(50% - 50vw);
  cursor: grab;
  user-select: none;
}
.products__grid--slider:active { cursor: grabbing; }
.products__grid--slider::-webkit-scrollbar { display: none; }
.products__grid--slider .product-card {
  flex: 0 0 clamp(220px, 24vw, 280px);
  display: flex;
  flex-direction: column;
}
.products__grid--slider .product-card__media { flex-shrink: 0; }
.products__grid--slider .product-card__foot { margin-top: auto; }
.products__grid--slider .product-card__name { min-height: 2.5em; }
.products__grid--slider .product-card img { pointer-events: none; }

/* Wink no mobile: piscada única duo → solo → duo */
@keyframes product-wink { 0%, 100% { opacity: 0; } 40%, 70% { opacity: 1; } }
.product-card--wink .product-card__img--solo { animation: product-wink 1.5s ease; }

@media (max-width: 48rem) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { padding: 1.25rem 0.9rem 1.1rem; }
  .product-card__name { font-size: 0.95rem; }
}

/* ---- 06 · Pratos (pin de 4 etapas, morph por prato) ---- */
.dishes {
  --dish-fg: var(--c-cream);
  --dish-checkered: var(--c-green-light);
  --dish-bg: var(--c-green-dark);
  --dish-card-bg: rgba(255, 247, 223, 0.09);
  --dish-card-border: rgba(255, 247, 223, 0.22);
  color: var(--dish-fg);
  background-color: var(--dish-bg);
  position: relative;
  transition: background-color 0.6s ease;
}
.dishes__pinwrap {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.dishes__inner { position: relative; z-index: 1; }
.dishes__pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: min(1483.9px, 100%);
  height: auto;
  color: var(--dish-checkered);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
  transition: color 0.6s ease, opacity 0.6s ease;
}
.dishes__header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.dishes__kicker { color: var(--dish-fg); opacity: 0.75; }
.dishes__title { color: var(--dish-fg); margin-inline: auto; max-width: 20ch; }
.dishes__stagegrid {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px) 1fr;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}
.dishes__side { display: grid; gap: 1.25rem; align-content: center; }
.dishes__side--left { justify-items: end; text-align: right; }
.dishes__side--right { justify-items: start; text-align: left; }
.dishes__card {
  background-color: var(--dish-card-bg);
  border: 1px solid var(--dish-card-border);
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  max-width: 30ch;
  transition: background-color 0.5s ease, color 0.5s ease, transform 0.4s ease, border-color 0.5s ease;
}
.dishes__card.is-active {
  background-color: var(--dish-checkered);
  border-color: var(--dish-checkered);
  color: var(--dish-fg-invert, var(--c-green-dark));
  transform: scale(1.04);
}
.dishes__card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.25; }
.dishes__card-text { margin-top: 0.35rem; font-size: 0.92rem; opacity: 0.92; }

/* Stage: prato */
.dishes__stage { position: relative; aspect-ratio: 1; }
.dishes__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 1;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.45));
}
.dishes__img:first-of-type { opacity: 1; }

/* Mascotes flutuantes fora do grid dos cards */
.dishes__mascot {
  position: absolute;
  width: clamp(80px, 8vw, 130px);
  height: auto;
  top: 50%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.3));
}
.dishes__mascot--left { left: max(0.5rem, calc(50% - 42rem)); translate: 0 -50%; rotate: -8deg; }
.dishes__mascot--right { right: max(0.5rem, calc(50% - 42rem)); translate: 0 -50%; rotate: 10deg; }
@media (max-width: 80rem) {
  .dishes__mascot--left { left: 0.5rem; }
  .dishes__mascot--right { right: 0.5rem; }
}

/* Dots de progresso */
.dishes__dots { margin-top: clamp(1.5rem, 4vw, 2.5rem); display: flex; justify-content: center; gap: 0.6rem; }
.dishes__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--dish-fg) 30%, transparent);
  transition: background-color 0.4s ease, transform 0.3s ease;
}
.dishes__dot.is-active { background-color: var(--dish-checkered); transform: scale(1.3); }

/* Tema por prato (definido em data-step do container) */
.dishes[data-step="0"] { --dish-fg: var(--c-cream); --dish-bg: #264500; --dish-checkered: #C1ECBD; --dish-fg-invert: #264500; }
.dishes[data-step="1"] { --dish-fg: #561700; --dish-bg: #FF913A; --dish-checkered: #600026; --dish-fg-invert: #FFF7DF; --dish-card-bg: rgba(86, 23, 0, 0.10); --dish-card-border: rgba(86, 23, 0, 0.25); }
.dishes[data-step="2"] { --dish-fg: #561700; --dish-bg: #FFF7DF; --dish-checkered: #561700; --dish-fg-invert: #FFF7DF; --dish-card-bg: rgba(86, 23, 0, 0.08); --dish-card-border: rgba(86, 23, 0, 0.22); }
.dishes[data-step="3"] { --dish-fg: var(--c-cream); --dish-bg: #FF0000; --dish-checkered: #FCD98F; --dish-fg-invert: #561700; }

@media (max-width: 64rem) {
  .dishes__stagegrid {
    grid-template-columns: 1fr;
    grid-template-areas: "stage" "left" "right";
    justify-items: center;
  }
  .dishes__stage { grid-area: stage; width: min(72vw, 340px); }
  .dishes__side--left { grid-area: left; }
  .dishes__side--right { grid-area: right; }
  .dishes__side { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .dishes__card { max-width: 90vw; }
  .dishes__mascot { display: none; }
}

/* ---- 07 · Food service ---- */
.foodservice { --band: var(--c-orange); color: var(--c-brown); }
.foodservice__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.foodservice__figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 30px 60px -30px rgba(86, 23, 0, 0.35);
}
.foodservice__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.foodservice__body { display: grid; gap: 2rem; align-content: center; }
.foodservice__text { margin-top: 1.25rem; max-width: 52ch; font-size: 1.05rem; }
.foodservice__cta { margin-top: 2rem; }
.foodservice__perks { display: grid; gap: 1rem; }
.foodservice__perk {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.1rem;
  align-items: center;
  background-color: rgba(86, 23, 0, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
}
.foodservice__perk-icon {
  grid-row: 1 / 3;
  align-self: center;
  display: grid;
  place-content: center;
  width: 48px; height: 48px;
  border-radius: 0.85rem;
  background-color: var(--c-brown);
  color: var(--c-cream);
}
.foodservice__perk-icon svg { width: 24px; height: 24px; display: block; }
.foodservice__perk-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.foodservice__perk-text { margin-top: 0.35rem; font-size: 0.92rem; }

/* ---- 07 · Receitas ---- */
.recipes { --band: var(--c-cream); color: var(--c-black); }
.recipes__kicker { color: var(--c-red); }
.recipes__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.recipe-card {
  background-color: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.recipe-card__link { display: block; }
.recipe-card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.recipe-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.recipe-card:hover .recipe-card__img { transform: scale(1.06); }
.recipe-card__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; padding: 1.25rem 1.5rem 0.25rem; }
.recipe-card__more {
  display: inline-block;
  padding: 0 1.5rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-red);
}
.recipes__all { margin-top: clamp(2rem, 5vw, 3rem); text-align: center; }

/* ---- 07 · Instagram ---- */
.insta { --band: var(--c-brown); color: var(--c-cream); }
.insta__header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.insta__kicker { color: var(--c-cream); opacity: 0.75; }
.insta__title { color: var(--c-cream); margin-inline: auto; max-width: 20ch; }
.insta__text { margin-top: 1rem; opacity: 0.7; max-width: 42ch; margin-inline: auto; }
.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.insta__cell { position: relative; }
.insta__link {
  position: relative;
  display: block;
  /* 4:5 — o formato retrato dos posts do feed. */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
  isolation: isolate;
}
.insta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.insta__link:hover .insta__img { transform: scale(1.08); }
.insta__overlay {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  color: var(--c-cream);
}
.insta__link:hover .insta__overlay,
.insta__link:focus-visible .insta__overlay { opacity: 1; }
.insta__legenda { font-size: 0.9rem; font-weight: 600; line-height: 1.35; }
.insta__cta { margin-top: clamp(2rem, 4vw, 3rem); text-align: center; }
@media (max-width: 48rem) {
  /* Uma coluna: os posts trazem texto na própria arte e ficariam
     ilegíveis em meia largura de tela. */
  .insta__grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .insta__overlay { opacity: 1; background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 55%); }
}

/* ---- 07 · CTA final ---- */
.closing { --band: var(--c-red); color: var(--c-cream); text-align: center; }
.closing__inner { display: grid; justify-items: center; gap: 1.5rem; }
.closing__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(110px, 12vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--c-brown);
  transition: background-color 0.5s ease;
}
.closing__badge--handoff { background-color: var(--c-red); }
.closing__mascot {
  width: 60%;
  height: 60%;
  color: var(--c-cream);
  display: block;
}
.closing__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.closing__text { max-width: 44ch; font-size: 1.05rem; opacity: 0.92; }

@media (max-width: 48rem) {
  .foodservice__inner { grid-template-columns: 1fr; }
  .foodservice__figure { min-height: 0; width: 100%; aspect-ratio: 4/3; }
  .recipes__grid { grid-template-columns: 1fr; }
}

/* ---- 08 · Cores estáticas das bandas (padrão em todas as páginas, inclusive a home) ---- */
/* Cada banda pinta o próprio fundo a partir do data-bg declarado no layout. */
.band[data-bg="#FF0000"] { background-color: var(--c-red); }
.band[data-bg="#FFF7DF"] { background-color: var(--c-cream); }
.band[data-bg="#FFFFFF"] { background-color: var(--c-white); }
.band[data-bg="#FF913A"] { background-color: var(--c-orange); }
.band[data-bg="#561700"] { background-color: var(--c-brown); }
.band[data-bg="#264500"] { background-color: var(--c-green-dark); }
.band[data-bg="#C1ECBD"] { background-color: var(--c-green-light); }
.band[data-bg="#EFE0B4"] { background-color: #EFE0B4; }

/* ============================================================
   09 · PÁGINA DE PRODUTO
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.breadcrumb__link { opacity: 0.8; transition: opacity 0.2s ease; }
.breadcrumb__link:hover { opacity: 1; text-decoration: underline; }
.breadcrumb__sep { opacity: 0.6; }
.breadcrumb__current { opacity: 1; }

/* 09 · Hero do produto */
.prod-hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.prod-hero__inner {
  min-height: min(92svh, 760px);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.prod-hero__kicker { color: var(--c-cream); opacity: 0.85; }
.prod-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.prod-hero__lead { margin-top: 1.25rem; max-width: 46ch; font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: 0.92; }
.prod-hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.prod-badge {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.5em 1.1em;
  border: 1.5px solid rgba(255, 247, 223, 0.5);
  border-radius: var(--radius-pill);
}
.prod-hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.prod-hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}
.prod-hero__halo {
  position: absolute;
  width: min(88%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 223, 0.22) 0%, rgba(255, 247, 223, 0) 68%);
}
.prod-hero__bubble {
  position: absolute;
  z-index: 0;
  width: min(100%, 480px);
  height: auto;
  top: 46%;
  left: 50%;
  translate: -50% -50%;
  rotate: 4deg;
  filter: drop-shadow(0 20px 30px rgba(84, 0, 0, 0.35));
  pointer-events: none;
}
.prod-hero__pack {
  position: relative;
  z-index: 1;
  width: min(70%, 360px);
  height: auto;
  rotate: -6deg;
  filter: drop-shadow(0 30px 36px rgba(84, 0, 0, 0.5));
}

/* 09 · Benefícios */
/* padding-top maior afasta o conteúdo da faixa (marquee--seam sobe sobre a seção). */
.prod-benef { --band: var(--c-white); color: var(--c-black); padding-top: clamp(6.5rem, 10vw, 9.5rem); }
.prod-benef__kicker { color: var(--c-red); }
.prod-benef__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
/* Sem fotos cadastradas: coluna única e os cards se espalham em 3. */
.prod-benef__inner--full { grid-template-columns: 1fr; }
.prod-benef__inner--full .prod-benef__title { max-width: 28ch; }
.prod-benef__inner--full .prod-benef__grid { grid-template-columns: repeat(3, 1fr); }
.prod-benef__title { max-width: 20ch; }
.prod-benef__grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
/* Carrossel de fotos: imagens empilhadas, troca com fade via .is-active (JS),
   autoplay 5s, sem setas nem pontos. */
.prod-benef__media { min-height: 360px; }
.photo-carousel {
  position: relative;
  height: 100%;
  min-height: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.photo-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.photo-carousel__img.is-active { opacity: 1; }
.benef-card {
  background-color: var(--c-cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.benef-card__icon {
  display: grid;
  place-content: center;
  width: 56px; height: 56px;
  border-radius: 1rem;
  background-color: var(--c-red);
  color: var(--c-cream);
  margin-bottom: 1.1rem;
}
.benef-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.benef-card__text { margin-top: 0.4rem; font-size: 0.92rem; opacity: 0.82; }

/* 09 · Ficha técnica */
.prod-specs { --band: var(--c-cream); color: var(--c-black); }
.prod-specs__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.prod-specs__figure {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.prod-specs__figbg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #8E1E3C 0%, #5A1226 100%);
}
.prod-specs__figure img { position: relative; width: min(80%, 360px); height: auto; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.35)); rotate: 4deg; }
.prod-specs__kicker { color: var(--c-red); }
.prod-specs__list { margin-top: 1.75rem; display: grid; gap: 0; }
.spec-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(13, 13, 13, 0.12);
}
.spec-row:last-child { border-bottom: 1px solid rgba(13, 13, 13, 0.12); }
.spec-row__label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.spec-row__value { font-size: 0.95rem; opacity: 0.85; }

/* 09 · Combina com */
.prod-uses { --band: var(--c-green-dark); color: var(--c-cream); }
.prod-uses__kicker { color: var(--c-green-light); }
.prod-uses__title { color: var(--c-cream); max-width: 20ch; }
.prod-uses__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.use-card {
  background-color: rgba(255, 247, 223, 0.08);
  border: 1px solid rgba(255, 247, 223, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.use-card:hover { transform: translateY(-6px); background-color: rgba(193, 236, 189, 0.14); }
.use-card__icon {
  display: grid;
  place-content: center;
  width: 58px; height: 58px;
  border-radius: 1rem;
  background-color: var(--c-green-light);
  color: var(--c-green-dark);
  margin-bottom: 1.1rem;
}
.use-card__icon svg { width: 30px; height: 30px; display: block; }
.use-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--c-green-light); }
.use-card__text { margin-top: 0.5rem; font-size: 0.95rem; opacity: 0.9; }

/* 09 · Convite receitas (40/60) */
.recipes-invite { --band: #EFE0B4; color: var(--c-brown); }
.recipes-invite__inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.recipes-invite__media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.recipes-invite__media img { width: 100%; height: 100%; object-fit: cover; }
.recipes-invite__body { align-self: center; }
.recipes-invite__kicker { color: var(--c-red); }
.recipes-invite__title { max-width: 18ch; }
.recipes-invite__text { margin-top: 1.1rem; max-width: 48ch; font-size: 1.05rem; }
.recipes-invite__cta { margin-top: 1.75rem; }

@media (max-width: 60rem) {
  .prod-hero__inner { grid-template-columns: 1fr; }
  .prod-hero__stage { order: -1; min-height: 260px; }
  .prod-specs__inner { grid-template-columns: 1fr; }
  .prod-benef__inner { grid-template-columns: 1fr; }
  .prod-benef__grid { grid-template-columns: repeat(2, 1fr); }
  .prod-benef__media { min-height: 0; }
  .photo-carousel { height: auto; aspect-ratio: 4 / 3; }
  .list-hero__inner { grid-template-columns: 1fr; }
  .list-hero__stage { min-height: 300px; }
}
@media (max-width: 40rem) {
  .prod-benef__grid { grid-template-columns: 1fr; }
}
@media (max-width: 48rem) {
  .prod-uses__grid { grid-template-columns: 1fr; }
  .recipes-invite__inner { grid-template-columns: 1fr; }
  .recipes-invite__media { min-height: 240px; aspect-ratio: 4/3; }
}

/* 09 · Listagem de produtos */
.list-hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.list-hero__inner {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.list-hero__content { align-self: center; }
.breadcrumb--spaced { margin-bottom: 2.75rem; }
.list-hero__kicker { color: var(--c-cream); opacity: 0.85; }
/* Palco: caixa + checkered + mascotes flutuantes */
.list-hero__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}
.list-hero__pattern {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: min(120%, 640px);
  height: auto;
  opacity: 0.9;
  z-index: 0;
}
.list-hero__box {
  position: relative;
  z-index: 1;
  width: min(88%, 460px);
  height: auto;
  filter: drop-shadow(0 34px 45px rgba(84, 0, 0, 0.5));
}
.list-hero__mascot {
  position: absolute;
  z-index: 2;
  display: block;
  width: clamp(72px, 8vw, 104px);
  aspect-ratio: 1;
}
.list-hero__mascot img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(84, 0, 0, 0.35));
}
.list-hero__mascot--1 { top: 6%; left: 2%; }
.list-hero__mascot--2 { bottom: 8%; right: 4%; }
.list-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.list-hero__lead { margin-top: 1.25rem; max-width: 52ch; font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: 0.92; }
.products__grid--all { grid-template-columns: repeat(3, 1fr); }
/* Reduz o vão quando o grid vem logo depois de um hero de listagem */
.list-hero + .products.section { padding-block: clamp(2rem, 4vw, 3.5rem) clamp(4rem, 8vw, 6rem); }
@media (max-width: 48rem) {
  .products__grid--all { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   10 · PÁGINA QUEM SOMOS
   ============================================================ */

/* 10 · Hero */
.about-hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.about-hero__inner {
  min-height: min(90svh, 720px);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.about-hero__kicker { color: var(--c-cream); opacity: 0.85; }
.about-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.about-hero__lead { margin-top: 1.25rem; max-width: 48ch; font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: 0.92; }
.about-hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.about-hero__stage { position: relative; }
.about-hero__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 34px 55px -28px rgba(84, 0, 0, 0.6);
}
.about-hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Foto recortada na forma orgânica bubble-foto */
.about-hero__media--bubble {
  aspect-ratio: 230.7 / 180.7;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  -webkit-mask: url(images/bubble-foto.svg) center / contain no-repeat;
  mask: url(images/bubble-foto.svg) center / contain no-repeat;
  filter: drop-shadow(0 26px 40px rgba(84, 0, 0, 0.5));
}
.about-hero__mascot {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: clamp(74px, 8vw, 104px);
  aspect-ratio: 1;
}
.about-hero__mascot img { width: 100%; height: 100%; filter: drop-shadow(0 12px 22px rgba(84, 0, 0, 0.4)); }

/* 10 · História */
.about-story { --band: var(--c-white); color: var(--c-black); }
.about-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-story__figure {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-story__figure img { width: 100%; height: 100%; object-fit: cover; }
.about-story__kicker { color: var(--c-red); }
.about-story__text { margin-top: 1.25rem; max-width: 54ch; font-size: 1.05rem; }
.about-story__cta { margin-top: 1.75rem; }
.about-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: start;
}
.about-stat { display: grid; }
.about-stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: var(--c-red);
}
.about-stat__label { margin-top: 0.35rem; font-size: 0.85rem; font-weight: 600; opacity: 0.75; max-width: 16ch; }

/* 10 · Pilares */
.about-pillars { --band: var(--c-green-dark); color: var(--c-cream); }
.about-pillars__kicker { color: var(--c-green-light); }
.about-pillars__title { color: var(--c-cream); white-space: nowrap; }
.about-pillars__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.pillar-card {
  background-color: rgba(255, 247, 223, 0.08);
  border: 1px solid rgba(255, 247, 223, 0.2);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.pillar-card:hover { transform: translateY(-6px); background-color: rgba(193, 236, 189, 0.14); }
.pillar-card__icon {
  display: grid;
  place-content: center;
  width: 58px; height: 58px;
  border-radius: 1rem;
  background-color: var(--c-green-light);
  color: var(--c-green-dark);
  margin-bottom: 1.1rem;
}
.pillar-card__icon svg { width: 30px; height: 30px; display: block; }
.pillar-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--c-green-light); }
.pillar-card__text { margin-top: 0.5rem; font-size: 0.92rem; opacity: 0.9; }

/* 10 · Compromisso ambiental */
.about-eco { --band: var(--c-green-light); color: var(--c-green-dark); padding-block: 120px; }
.about-eco__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-eco__seal { display: block; width: clamp(140px, 16vw, 180px); height: auto; margin-bottom: 1.5rem; }
.about-eco__title { max-width: 20ch; }
.about-eco__text { margin-top: 1.25rem; max-width: 52ch; font-size: 1.05rem; }
.about-eco__media { position: relative; display: grid; place-items: center; min-height: 360px; }
.about-eco__pattern {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: min(120%, 620px);
  height: auto;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.about-eco__box {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 34px 45px rgba(38, 69, 0, 0.35));
}

@media (max-width: 64rem) {
  .about-pillars__title { white-space: normal; }
}
@media (max-width: 60rem) {
  .about-hero__inner { grid-template-columns: 1fr; }
  .about-story__inner { grid-template-columns: 1fr; }
  .about-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .about-eco__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   11 · CONTATO + FORMULÁRIO DE ORÇAMENTO
   ============================================================ */

/* Botão outline marrom (wizard sobre fundos claros) */
.btn--ghost-brown { border-color: var(--c-brown); color: var(--c-brown); }
.btn--ghost-brown:hover { background-color: var(--c-brown); color: var(--c-cream); }

/* 11 · Hero contato */
.contact-hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.contact-hero__inner {
  min-height: min(88svh, 700px);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.contact-hero__content { align-self: center; }
.contact-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
}
.contact-hero__lead { margin-top: 1.25rem; max-width: 46ch; font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: 0.92; }

/* Bento do hero de contato */
.contact-hero__bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  aspect-ratio: 1 / 1.05;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  max-height: 72svh;
}
.contact-hero__tile {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background-color: rgba(255, 247, 223, 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-hero__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.contact-hero__tile:hover { transform: translateY(-6px); }
.contact-hero__tile:hover img { transform: scale(1.06); }
.contact-hero__tile--a { grid-column: 1 / 4; grid-row: 1 / 5; }
.contact-hero__tile--b { grid-column: 4 / 7; grid-row: 1 / 3; }
.contact-hero__tile--c { grid-column: 4 / 7; grid-row: 3 / 5; }
.contact-hero__tile--d { grid-column: 1 / 3; grid-row: 5 / 7; }
.contact-hero__tile--e { grid-column: 3 / 7; grid-row: 5 / 7; }

/* 11 · SAC / canais */
.contact-sac { --band: var(--c-white); color: var(--c-black); }
.contact-sac__kicker { color: var(--c-red); }
.contact-sac__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.channel-card {
  background-color: var(--c-cream);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.channel-card__icon {
  display: grid;
  place-content: center;
  width: 54px; height: 54px;
  border-radius: 1rem;
  background-color: var(--c-red);
  color: var(--c-cream);
  margin-bottom: 1.1rem;
}
.channel-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.channel-card__value { display: inline-block; margin-top: 0.35rem; font-size: 0.95rem; line-height: 1.5; color: inherit; }
a.channel-card__value { color: var(--c-red); font-weight: 600; }
a.channel-card__value:hover { text-decoration: underline; }

/* 11 · Seção orçamento (largura total) */
.contact-quote { --band: var(--c-cream); color: var(--c-black); }
.contact-quote__intro { max-width: 46ch; }
.contact-quote__kicker { color: var(--c-red); }
.contact-quote__text { margin-top: 1.25rem; max-width: 46ch; font-size: 1.05rem; }
.contact-quote__form {
  margin-top: clamp(2rem, 4vw, 3rem);
  background-color: var(--c-white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

/* 11 · Wizard */
.quote__head { margin-bottom: 1.5rem; }
.quote__step-label { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--c-red); margin-bottom: 0.5rem; }
.quote__progress { height: 6px; border-radius: 999px; background-color: rgba(13, 13, 13, 0.1); overflow: hidden; }
.quote__progress-bar { display: block; height: 100%; width: 25%; background-color: var(--c-red); border-radius: 999px; transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.quote__viewport { position: relative; }
.quote__step { border: 0; padding: 0; margin: 0; min-inline-size: 0; }
.js .quote__step { display: none; animation: quote-in 0.4s ease; }
.js .quote__step.is-active { display: block; }
@keyframes quote-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quote__question { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.25; padding: 0; }
.quote__hint { margin-top: 0.4rem; font-size: 0.9rem; opacity: 0.7; }

/* Produtos (multi-seleção com imagem) */
.quote__products {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 0.75rem;
}
@media (max-width: 48rem) {
  .quote__products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.quote-prod { display: grid; align-content: start; justify-items: center; gap: 0.5rem; cursor: pointer; text-align: center; }
.quote-prod input { position: absolute; opacity: 0; pointer-events: none; }
.quote-prod__media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 7.5rem;
  border-radius: 1rem;
  background-color: var(--c-cream);
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.quote-prod__media img { width: auto; height: 3.25rem; max-width: 88%; object-fit: contain; }
.quote-prod--sm .quote-prod__media img { height: 2.25rem; }
.quote-prod__name { font-size: 0.78rem; font-weight: 600; line-height: 1.2; }
.quote-prod:hover .quote-prod__media { transform: translateY(-3px); }
.quote-prod input:checked + .quote-prod__media { border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15); }
.quote-prod input:focus-visible + .quote-prod__media { outline: 3px solid var(--c-red); outline-offset: 2px; }

/* Opções (radio) */
.quote__options { margin-top: 1.25rem; display: grid; gap: 0.75rem; }
.quote-opt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(13, 13, 13, 0.12);
  border-radius: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.quote-opt input { accent-color: var(--c-red); width: 20px; height: 20px; flex-shrink: 0; }
.quote-opt span { font-size: 0.98rem; }
.quote-opt:hover { border-color: rgba(255, 0, 0, 0.4); }
.quote-opt:has(input:checked) { border-color: var(--c-red); background-color: rgba(255, 0, 0, 0.05); }

/* Campos (identificação) */
.quote__fields { margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-field { display: grid; gap: 0.35rem; }
.quote-field__label { font-size: 0.85rem; font-weight: 700; }
.quote-field input {
  font: inherit;
  padding: 0.75em 1em;
  border: 2px solid rgba(13, 13, 13, 0.12);
  border-radius: 0.75rem;
  background-color: var(--c-white);
  transition: border-color 0.2s ease;
}
.quote-field input:focus { outline: none; border-color: var(--c-red); }
.quote-prefs { border: 0; padding: 0; margin: 1.25rem 0 0; min-inline-size: 0; }
.quote-prefs__opts { margin-top: 0.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.quote-chip { position: relative; }
.quote-chip input { position: absolute; opacity: 0; pointer-events: none; }
.quote-chip span {
  display: inline-block;
  padding: 0.5em 1.1em;
  border: 2px solid rgba(13, 13, 13, 0.15);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.quote-chip input:checked + span { border-color: var(--c-red); background-color: var(--c-red); color: var(--c-cream); }
.quote-chip input:focus-visible + span { outline: 3px solid var(--c-red); outline-offset: 2px; }

.quote__error { margin-top: 1rem; color: var(--c-red); font-weight: 600; font-size: 0.9rem; }
.quote__nav { margin-top: 1.75rem; display: flex; justify-content: space-between; gap: 1rem; }
.quote__nav .btn { flex: 0 0 auto; }
.quote__next, .quote__submit { margin-left: auto; }
.quote__nav .btn[hidden] { display: none; }
.quote__back:disabled { opacity: 0.4; cursor: not-allowed; }

/* 11 · Modal */
.quote-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(1rem, 4vw, 2rem); }
.quote-modal__overlay { position: absolute; inset: 0; background-color: rgba(13, 13, 13, 0.55); opacity: 0; transition: opacity 0.3s ease; }
.quote-modal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  background-color: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.quote-modal.is-open .quote-modal__overlay { opacity: 1; }
.quote-modal.is-open .quote-modal__dialog { opacity: 1; transform: none; }
.quote-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 2rem);
  background-color: var(--c-red);
  color: var(--c-cream);
}
.quote-modal__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.quote-modal__close { display: grid; place-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--c-cream); transition: background-color 0.2s ease; }
.quote-modal__close:hover { background-color: rgba(255, 247, 223, 0.18); }
.quote-modal__body { padding: clamp(1.25rem, 3vw, 2rem); overflow-y: auto; }
.quote-modal[hidden] { display: none; }

@media (max-width: 60rem) {
  .contact-sac__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-hero__inner { grid-template-columns: 1fr; }
  .contact-hero__bento { max-height: none; aspect-ratio: 1 / 1.05; margin-top: 0.5rem; }
}
@media (max-width: 40rem) {
  .contact-sac__grid { grid-template-columns: 1fr; }
  .quote__fields { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .js .quote__step { animation: none; }
  .quote-modal__dialog, .quote-modal__overlay, .quote__progress-bar { transition: none; }
}

/* ---- 10 · Receitas (listagem + single) ---- */
/* Enriquece o card de receita na listagem/relacionadas (a home não usa o meta,
   então continua intacta). */
.recipe-card__meta {
  padding: 1.15rem 1.5rem 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-red);
}
.recipe-card__meta + .recipe-card__name { padding-top: 0.3rem; }

/* Palco do hero da listagem: foto emoldurada no lugar da caixa de produto */
.list-hero__photo {
  position: relative;
  z-index: 1;
  width: min(86%, 440px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  rotate: -4deg;
  border: 6px solid var(--c-cream);
  box-shadow: 0 34px 45px rgba(84, 0, 0, 0.5);
}
.list-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero da single (espelha o hero do produto, com foto no lugar do pack) */
.recipe-hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.recipe-hero__inner {
  min-height: min(88svh, 720px);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: clamp(5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.recipe-hero__kicker { color: var(--c-cream); opacity: 0.85; }
.recipe-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.recipe-hero__lead { margin-top: 1.25rem; max-width: 46ch; font-size: clamp(1rem, 1.5vw, 1.2rem); opacity: 0.92; }
.recipe-hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.recipe-hero__stage { position: relative; display: grid; place-items: center; min-height: 340px; }
.recipe-hero__checkered {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: min(120%, 620px);
  height: auto;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.recipe-hero__photo {
  position: relative;
  z-index: 1;
  width: min(84%, 440px);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  rotate: -5deg;
  border: 6px solid var(--c-cream);
  box-shadow: 0 30px 40px rgba(84, 0, 0, 0.5);
}
.recipe-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.recipe-hero__mascot {
  position: absolute;
  z-index: 2;
  bottom: 3%; right: 1%;
  width: clamp(64px, 7vw, 92px);
  aspect-ratio: 1;
}
.recipe-hero__mascot img { width: 100%; height: 100%; display: block; filter: drop-shadow(0 12px 22px rgba(84, 0, 0, 0.35)); }

/* Chips de meta (tempo/rendimento/dificuldade) */
.recipe-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.75rem; }
.recipe-chip {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55em 1.15em;
  border: 1.5px solid rgba(255, 247, 223, 0.5);
  border-radius: var(--radius-pill);
  line-height: 1.1;
}
.recipe-chip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}
.recipe-chip__value { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; }

/* Corpo: ingredientes + modo de preparo em duas colunas */
/* padding-top maior compensa a margem negativa do marquee--seam e afasta o
   conteúdo da faixa. */
.recipe-body { --band: var(--c-white); color: var(--c-black); padding-top: clamp(6.5rem, 10vw, 9.5rem); }
.recipe-body__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.recipe-body__title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.recipe-body__subtitle {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-red);
}
.ingredient-list { margin-top: 1.25rem; display: grid; gap: 0; }
.ingredient-list__item {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.9rem;
  border-bottom: 1px solid rgba(13, 13, 13, 0.12);
  font-size: 0.98rem;
}
.ingredient-list__item::before {
  content: "";
  position: absolute;
  left: 0; top: 1.15rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background-color: var(--c-red);
}
.ingredient-list--grilo { margin-top: 0.75rem; }
.ingredient-list--grilo .ingredient-list__item { font-weight: 600; }
.ingredient-list--grilo .ingredient-list__item::before { background-color: var(--c-orange); }
.step-list { margin-top: 1.25rem; display: grid; gap: 1rem; list-style: none; counter-reset: step; }
.step-list__item {
  position: relative;
  min-height: 2.25rem;
  padding: 0.35rem 0 0.35rem 3.25rem;
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  line-height: 1.5;
}
.step-list__item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.25rem; height: 2.25rem;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background-color: var(--c-red);
  color: var(--c-cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.recipe-body__tip {
  margin-top: 1.75rem;
  padding: 1.1rem 1.25rem;
  background-color: var(--c-cream);
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.recipe-body__tip strong { color: var(--c-red); }

/* Produtos usados (espelha a seção de aplicações do produto) */
.recipe-products { --band: var(--c-green-dark); color: var(--c-cream); }
.recipe-products__title { color: var(--c-cream); max-width: 22ch; }
.recipe-products__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.recipe-prod-card {
  background-color: rgba(255, 247, 223, 0.08);
  border: 1px solid rgba(255, 247, 223, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.recipe-prod-card:hover { transform: translateY(-6px); background-color: rgba(193, 236, 189, 0.14); }
.recipe-prod-card__link { display: block; }
.recipe-prod-card__media {
  position: relative;
  aspect-ratio: 1;
  background-color: rgba(255, 247, 223, 0.06);
}
/* Imagem absoluta para não influenciar a altura do media: o aspect-ratio 1
   é sempre respeitado e todos os cards ficam com a mesma altura. width/height
   explícitos são obrigatórios em <img> (elemento substituído) — sem eles a
   imagem usa a altura intrínseca e estoura o media. Padding dá o respiro
   (box-sizing: border-box global mantém tudo dentro do quadrado). */
.recipe-prod-card__img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 1.25rem; object-fit: contain; }
.recipe-prod-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-green-light);
  padding: 1.1rem 1.25rem 0.25rem;
}
.recipe-prod-card__more {
  display: inline-block;
  padding: 0 1.25rem 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-cream);
  opacity: 0.85;
}

@media (max-width: 60rem) {
  .recipe-hero__inner { grid-template-columns: 1fr; }
  .recipe-hero__stage { order: -1; min-height: 260px; }
  .recipe-body__inner { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .recipe-products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 48rem) {
  .recipe-products__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 11 · Blog (listagem + single) ---- */
/* Chips de categoria (pills de marca) */
.cat-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: clamp(2rem, 5vw, 3rem); list-style: none; }
.cat-chip {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.5em 1.1em;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(13, 13, 13, 0.2);
  color: var(--c-black);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
/* Só os chips que são link reagem ao mouse — o da capa do post é estático. */
a.cat-chip:hover { background-color: var(--c-black); border-color: var(--c-black); color: var(--c-cream); }
a.cat-chip:focus-visible { outline: 3px solid var(--c-red); outline-offset: 2px; }
.cat-chip--active,
.cat-chip--solid { background-color: var(--c-red); border-color: var(--c-red); color: var(--c-cream); }
a.cat-chip--active:hover { background-color: var(--c-red); border-color: var(--c-red); color: var(--c-cream); }
.cat-chip--ghost { background: transparent; border-color: rgba(255, 247, 223, 0.6); color: var(--c-cream); }
.posts__empty { font-size: 1.05rem; }
.posts__empty a { color: var(--c-red); font-weight: 700; }

/* Meta (autor · data · leitura) */
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; opacity: 0.82; }
.post-meta__dot { opacity: 0.55; }

/* Post em destaque */
.blog-featured { color: var(--c-black); }
/* Destaque e grid são duas seções creme coladas: encurta o padding do destaque
   e a transição para o grid para não acumular espaço vazio. */
.blog-featured.section { padding-block: clamp(3rem, 6vw, 4.5rem) clamp(1.75rem, 3.5vw, 2.75rem); }
/* -1px cobre a emenda de sub-pixel entre as duas seções creme (senão o
   fundo vermelho do body vaza numa linha fina no boundary fracionário). */
.blog-featured + .posts.section { margin-top: -1px; padding-top: clamp(1.25rem, 2.5vw, 2rem); }
.blog-featured__kicker { color: var(--c-red); }
.featured-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  background-color: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.featured-card__media { overflow: hidden; aspect-ratio: 4 / 3; }
.featured-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-card:hover .featured-card__media img { transform: scale(1.04); }
.featured-card__body { align-self: center; padding: clamp(1.75rem, 3vw, 2.75rem); }
.featured-card__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.15; letter-spacing: -0.02em; margin-top: 1rem; }
.featured-card__excerpt { margin-top: 0.9rem; font-size: 1.02rem; line-height: 1.55; opacity: 0.85; max-width: 46ch; }
.featured-card .post-meta { margin-top: 1.1rem; }
.featured-card__more { display: inline-block; margin-top: 1.25rem; font-family: var(--font-display); font-weight: 700; color: var(--c-red); }

/* Grid de posts (reusado na listagem e no rodapé do artigo) */
.posts { color: var(--c-black); }
.posts__kicker { color: var(--c-red); }
.posts-grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}
.posts__all { margin-top: clamp(2rem, 5vw, 3rem); text-align: center; }
.post-card {
  background-color: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.post-card__link { display: flex; flex-direction: column; height: 100%; }
.post-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.post-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card__img { transform: scale(1.05); }
.post-card__meta { padding: 1.15rem 1.5rem 0; font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-red); }
.post-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.25; padding: 0.3rem 1.5rem 0; }
.post-card__excerpt { padding: 0.6rem 1.5rem 0; font-size: 0.92rem; line-height: 1.5; opacity: 0.8; }
.post-card__more { display: inline-block; margin-top: auto; padding: 1rem 1.5rem 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--c-red); }

/* Hero do post (coluna única, fundo vermelho) */
.post-hero { --band: var(--c-red); color: var(--c-cream); overflow: clip; }
.post-hero__inner {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: clamp(7rem, 11vw, 11rem);
}
.post-hero__chip { margin-top: 0.5rem; }
.post-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-top: 1.25rem;
  max-width: 22ch;
}
.post-hero__meta { margin-top: 1.5rem; color: var(--c-cream); opacity: 0.9; }

/* Capa que sobrepõe o fim do hero (padrão seam) */
.post-cover { position: relative; z-index: 3; margin-top: clamp(-8rem, -10vw, -6rem); }
.post-cover__figure {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--c-cream);
  box-shadow: 0 34px 50px -22px rgba(84, 0, 0, 0.5);
}
.post-cover__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Artigo: coluna de leitura + prosa (escopada em .post-article) */
.post-article { color: var(--c-black); }
/* Puxa o branco para cima sob a capa (que fica por cima via z-index) para a
   imagem "sair" do vermelho; o padding-top maior mantém o texto abaixo da capa. */
.post-article.section { margin-top: clamp(-8rem, -9vw, -4rem); padding-top: clamp(8rem, 15vw, 13rem); }
.post-article__inner { max-width: 50rem; }
.post-article__inner p { margin-top: 1.25rem; font-size: 1.05rem; line-height: 1.7; }
p.post-article__lead { margin-top: 0; font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.5; }
.post-article__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-top: 2.5rem;
}
.post-article__inner ul { margin-top: 1.1rem; padding-left: 0; list-style: none; display: grid; gap: 0.6rem; }
.post-article__inner ul li { position: relative; padding-left: 1.75rem; font-size: 1.05rem; line-height: 1.6; }
.post-article__inner ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background-color: var(--c-red);
}
.post-article__quote {
  margin: 2.25rem 0 0;
  padding: 0.35rem 0 0.35rem 1.5rem;
  border-left: 4px solid var(--c-red);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.3;
  color: var(--c-red);
}
.post-article__figure { margin-top: 2.5rem; }
.post-article__figure img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.post-article__figure figcaption { margin-top: 0.75rem; font-size: 0.9rem; opacity: 0.7; text-align: center; }
.post-article__cta { margin-top: 2.5rem; }

@media (max-width: 60rem) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card__media { aspect-ratio: 16 / 9; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 48rem) {
  .posts-grid { grid-template-columns: 1fr; }
}

/* ---- 12 · Mobile: esconde as decorações à direita dos heros (padrão, caixa,
   mascotes, tiles). As fotos de conteúdo dos singles (prod/recipe-hero) ficam. ---- */
@media (max-width: 48rem) {
  .hero__bento,
  .list-hero__stage,
  .contact-hero__bento { display: none; }
  /* sem a decoração, o hero encolhe para o conteúdo (evita vão vermelho vazio) */
  .hero__inner,
  .contact-hero__inner { min-height: auto; }
}
