/* ============================================================
   PADOCA DA SARA — design tokens
   Brand color extracted from logo: #964614 (terracotta sienna)
   ============================================================ */

/* Bonillo — kept ONLY for the nav wordmark to echo the logo.
   All other display type uses Cormorant Garamond — editorial, professional. */
@font-face {
  font-family: "Bonillo";
  src: url("assets/fonts/Bonillo.otf") format("opentype");
  font-display: swap;
}

:root {
  /* color tokens */
  --casca:     #2A1810;   /* deep crust — text */
  --forno:     #5C3220;   /* secondary headings, dividers */
  --tijolo:    #964614;   /* brand — from logo */
  --crosta:    #C8753D;   /* warm accent */
  --terracota: #B5532F;   /* CTA accent */
  --miolo:     #EADFC8;   /* warm cream */
  --farinha:   #F5EFE4;   /* base bg */
  --papel:     #FBF7EE;   /* card bg */
  --oliva:     #5C6B3F;   /* sparing secondary */
  --linha:     rgba(42, 24, 16, 0.14);

  /* type */
  --serif:  "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --serif-italic: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --script: "Bonillo", "Pinyon Script", cursive;
  --sans:   "Inter", -apple-system, "Helvetica Neue", sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--farinha);
  color: var(--casca);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(150, 70, 20, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(150, 70, 20, 0.02) 1px, transparent 1px);
  background-size: 28px 28px, 12px 12px;
  background-position: 0 0, 14px 14px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; height: auto; image-orientation: from-image; }

/* ============================================================
   typography utilities
   ============================================================ */

.serif    { font-family: var(--serif); font-weight: 500; letter-spacing: -0.005em; }
.script   { font-family: var(--script); font-weight: 400; }
.mono     { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow  {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tijolo);
}

/* ============================================================
   layout
   ============================================================ */

.wrap     { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.wrap-tight { max-width: 920px; }

section { position: relative; z-index: 2; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav-logo span,
.nav-links a { transition: color 0.35s ease; }
.nav:not(.scrolled) .nav-logo span,
.nav:not(.scrolled) .nav-links a {
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}
.nav:not(.scrolled) .nav-logo span { color: var(--papel); }
.nav:not(.scrolled) .nav-links a { color: rgba(251, 247, 238, 0.95); }
.nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 8px rgba(0,0,0,0.3));
}
.nav.scrolled {
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  padding: 12px 36px;
  border-bottom-color: var(--linha);
}
.nav.scrolled .nav-logo span { color: var(--tijolo); }
.nav.scrolled .nav-links a { color: var(--casca); }
@media (max-width: 768px) {
  .nav { padding: 14px 22px; }
  .nav.scrolled { padding: 10px 22px; }
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--tijolo);
}
.nav-logo img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo span {
  font-family: var(--script);
  font-size: 1.4rem;
  line-height: 1;
}
.nav-links {
  display: flex; gap: 28px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--casca);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--tijolo); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--tijolo);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ============================================================
   HERO — full-bleed photo with text overlay
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  color: var(--papel);
  background: var(--casca);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 2s ease;
  filter: brightness(0.78) contrast(1.05);
}
.hero.in-view .hero-bg img { transform: scale(1); }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 12, 8, 0.55) 0%, rgba(20, 12, 8, 0.2) 30%, rgba(20, 12, 8, 0.5) 70%, rgba(20, 12, 8, 0.95) 100%),
    linear-gradient(90deg, rgba(20, 12, 8, 0.7) 0%, rgba(20, 12, 8, 0.25) 40%, rgba(20, 12, 8, 0.1) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 110px 0 70px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 768px) { .hero-content { padding: 100px 0 48px; } }

/* mobile: centralizar titulo, subtitulo, eyebrow, localizacao e CTAs */
@media (max-width: 768px) {
  .hero-text { align-items: center; text-align: center; }
  .hero-eyebrow,
  .hero-loc,
  .hero-ctas { justify-content: center; }
  .hero-title,
  .hero-sub { max-width: 100%; }
  .hero-meta-item { text-align: center; }
}

.hero-text {
  display: flex; flex-direction: column; gap: 26px;
  max-width: 720px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: rgba(251, 247, 238, 0.85);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--crosta); }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: rgba(251, 247, 238, 0.92);
  max-width: 34ch;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.hero-loc {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.7);
}
.hero-loc::before {
  content: ""; width: 36px; height: 1px; background: rgba(251, 247, 238, 0.5);
}

.hero-ctas { display: flex; gap: 14px; margin-top: 12px; flex-wrap: wrap; }

.hero-meta {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(251, 247, 238, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
}
.hero-meta-item .mono { color: var(--crosta); display: block; margin-bottom: 6px; }
.hero-meta-item p {
  font-family: var(--serif); font-size: 1.05rem; line-height: 1.3;
  color: rgba(251, 247, 238, 0.92);
  font-weight: 500;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
  color: var(--papel);
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(251, 247, 238, 0.85);
}
/* removed: old hero-sub / hero-loc / hero-image / hero-caption (legacy) */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--tijolo); color: var(--papel); border-color: var(--tijolo); }
.btn-primary:hover { background: var(--casca); border-color: var(--casca); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--papel); border-color: rgba(251, 247, 238, 0.55); }
.btn-ghost:hover { background: var(--papel); color: var(--casca); border-color: var(--papel); }
.btn-ghost-dark { background: transparent; color: var(--casca); border-color: var(--casca); }
.btn-ghost-dark:hover { background: var(--casca); color: var(--papel); }

/* legacy hero-image styles removed — now using .hero-bg full-bleed */

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section { padding: 120px 0; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head { margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--casca);
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--tijolo);
  font-weight: 400;
}

/* ============================================================
   NARRATIVE — continuous editorial prose with portrait
   ============================================================ */

.narrative { background: var(--papel); }

.narrative-prose {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .narrative-prose { grid-template-columns: 1fr; gap: 40px; }
}

.narrative-body {
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.65;
  color: var(--casca);
  font-weight: 400;
  letter-spacing: 0.005em;
}
.narrative-body p + p { margin-top: 1.1em; }
.narrative-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.6em;
  font-weight: 500;
  float: left;
  line-height: 0.88;
  margin: 0.06em 0.12em 0 -0.03em;
  color: var(--tijolo);
}
.narrative-body em {
  font-style: italic;
  color: var(--forno);
}
.narrative-body strong {
  font-weight: 500;
  color: var(--tijolo);
  font-style: italic;
}
.narrative-body .pause {
  display: block; text-align: center;
  margin: 1.4em 0; font-family: var(--serif); font-style: italic;
  color: var(--tijolo); opacity: 0.55; font-size: 1.1em;
  letter-spacing: 0.3em;
}

.narrative-portrait {
  position: sticky;
  top: 110px;
  display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 900px) {
  .narrative-portrait { position: static; top: auto; }
}
.narrative-portrait-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.narrative-portrait-img img { width: 100%; height: 100%; object-fit: cover; }
.narrative-portrait-cap {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forno);
  padding-top: 10px;
  border-top: 1px solid var(--linha);
}
.narrative-portrait-cap strong { color: var(--tijolo); font-weight: 400; letter-spacing: 0.2em; }

.narrative-meta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--linha);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .narrative-meta { grid-template-columns: repeat(2, 1fr); } }
.narrative-meta div .mono { color: var(--tijolo); display: block; margin-bottom: 6px; }
.narrative-meta div p { font-family: var(--serif); font-size: 1.1rem; line-height: 1.3; color: var(--casca); font-weight: 500; }

/* pull quote */
.pull-quote {
  margin: 100px auto;
  max-width: 920px;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--tijolo);
  margin-bottom: 24px;
  opacity: 0.55;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.2;
  color: var(--casca);
  letter-spacing: -0.015em;
}
.pull-quote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forno);
  font-style: normal;
}

/* ============================================================
   FERMENTAÇÃO
   ============================================================ */

.fermenta { background: var(--miolo); position: relative; overflow: hidden; }
.fermenta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .fermenta-grid { grid-template-columns: 1fr; gap: 48px; } }

.fermenta-image {
  height: clamp(420px, 60vh, 680px);
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.fermenta-image img { width: 100%; height: 100%; object-fit: cover; }

.fermenta-text { padding: 0 8px; }
.fermenta-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--casca);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.fermenta-quote .accent { color: var(--tijolo); font-style: italic; font-size: 1.1em; }
.fermenta-tech {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--linha);
}
.fermenta-tech span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--forno);
  border-radius: 999px;
  color: var(--forno);
}
.fermenta-attrib {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forno);
}

/* ============================================================
   PRODUTOS
   ============================================================ */

.produtos { background: var(--farinha); }

.produto-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 80px;
  background: var(--papel);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--linha);
}
@media (max-width: 900px) { .produto-hero { grid-template-columns: 1fr; } }
.produto-hero-img {
  height: clamp(380px, 56vh, 620px);
  background-size: cover; background-position: center;
}
.produto-hero-text {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.produto-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tijolo);
}
.produto-hero-badge::before { content: "★"; }
.produto-hero h3 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1; color: var(--casca);
  letter-spacing: -0.02em;
}
.produto-hero p {
  font-family: var(--serif);
  font-size: 1.15rem; line-height: 1.55; color: var(--forno);
}
.produto-specs {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
  margin-top: 8px; padding-top: 24px;
  border-top: 1px solid var(--linha);
}
.produto-specs div .mono { color: var(--tijolo); display: block; margin-bottom: 4px; }
.produto-specs div p { font-family: var(--serif); font-size: 1rem; color: var(--casca); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px) { .produtos-grid { grid-template-columns: 1fr; } }

.produto-card {
  background: var(--papel);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--linha);
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}
.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(42, 24, 16, 0.25);
}
.produto-card-img {
  height: 280px;
  background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.produto-card:hover .produto-card-img { transform: scale(1.04); }
.produto-card-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.produto-card-num { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--tijolo); }
.produto-card h4 {
  font-family: var(--serif); font-size: 1.5rem; line-height: 1.1; color: var(--casca);
  font-weight: 500; letter-spacing: -0.01em;
}
.produto-card p { font-size: 0.95rem; line-height: 1.55; color: var(--forno); margin-top: 4px; }
.produto-card-meta {
  margin-top: auto; padding-top: 14px;
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--forno);
  border-top: 1px dashed var(--linha);
}

.salgados {
  margin-top: 64px;
  padding: 40px 36px;
  background: var(--miolo);
  border-radius: 3px;
}
.salgados-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.salgados-head h4 {
  font-family: var(--serif); font-size: 1.6rem; color: var(--casca);
  font-weight: 500; letter-spacing: -0.01em;
}
.salgados-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .salgados-list { grid-template-columns: repeat(2, 1fr); } }
.salgados-list li {
  list-style: none;
  padding-top: 14px;
  border-top: 1px solid var(--linha);
}
.salgados-list .mono { color: var(--tijolo); display: block; margin-bottom: 4px; font-size: 0.62rem; }
.salgados-list strong {
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; color: var(--casca); font-weight: 500;
  letter-spacing: -0.01em; display: block;
}
.salgados-list span.desc { font-size: 0.85rem; color: var(--forno); display: block; margin-top: 4px; line-height: 1.45; }

/* ============================================================
   MEMÓRIAS
   ============================================================ */

.memorias { background: var(--casca); color: var(--papel); position: relative; overflow: hidden; }
.memorias .eyebrow { color: var(--crosta); }
.memorias-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .memorias-grid { grid-template-columns: 1fr; gap: 40px; } }
.memorias-image {
  height: clamp(420px, 64vh, 660px);
  overflow: hidden;
  border-radius: 2px;
}
.memorias-image img { width: 100%; height: 100%; object-fit: cover; }

.memorias-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.memorias-title em {
  font-style: italic; color: var(--crosta); font-weight: 400;
}
.memorias-body {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(251, 247, 238, 0.85);
  max-width: 48ch;
}
.memorias-body p + p { margin-top: 18px; }
.memorias-mark {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--script);
  font-size: 2rem;
  color: var(--crosta);
  line-height: 1;
}

/* ============================================================
   EQUIPE
   ============================================================ */

.equipe { background: var(--farinha); }
.equipe-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .equipe-grid { grid-template-columns: 1fr; } }

.equipe-portrait { height: clamp(420px, 60vh, 620px); overflow: hidden; border-radius: 3px; }
.equipe-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.equipe-portrait-caption {
  margin-top: 14px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forno);
}
.equipe-portrait-caption strong { color: var(--tijolo); font-weight: 400; letter-spacing: 0.18em; }

.equipe-wide { height: clamp(420px, 60vh, 620px); overflow: hidden; border-radius: 3px; }
.equipe-wide img { width: 100%; height: 100%; object-fit: cover; }

.equipe-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .equipe-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .equipe-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .equipe-cards { grid-template-columns: 1fr; } }

.pessoa { padding-top: 20px; border-top: 1px solid var(--linha); }
.pessoa-num { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--tijolo); }
.pessoa-name {
  font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; margin: 8px 0 4px;
  color: var(--casca); font-weight: 500; letter-spacing: -0.01em;
}
.pessoa-role {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--forno); margin-bottom: 12px;
}
.pessoa-bio { font-size: 0.95rem; line-height: 1.55; color: var(--forno); }

.juju-note {
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--papel);
  border-left: 3px solid var(--tijolo);
  border-radius: 0 3px 3px 0;
}
.juju-note .quote-mark {
  color: var(--tijolo); font-family: var(--serif); font-style: italic;
  font-size: 2rem; line-height: 1; display: inline-block; margin-right: 12px; vertical-align: -4px;
}
.juju-note p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; color: var(--casca); display: inline; }

/* ============================================================
   ONDE ENCONTRAR
   ============================================================ */

.onde { background: var(--papel); }
.onde-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .onde-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .onde-grid { grid-template-columns: 1fr; } }

.onde-card {
  background: var(--farinha);
  border: 1px solid var(--linha);
  border-radius: 3px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  transition: all 0.3s ease;
}
.onde-card:hover {
  background: var(--miolo);
  transform: translateY(-3px);
}
.onde-card .mono { color: var(--tijolo); }
.onde-card h4 {
  font-family: var(--serif); font-size: 1.4rem; color: var(--casca);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;
}
.onde-card p { font-size: 0.92rem; color: var(--forno); line-height: 1.5; }
.onde-card-arrow {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tijolo);
  display: flex; align-items: center; gap: 8px;
}
.onde-card-arrow .arr { transition: transform 0.3s; }
.onde-card:hover .arr { transform: translateX(6px); }

.onde-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 36px;
  background: var(--miolo);
  border-radius: 3px;
}
@media (max-width: 720px) { .onde-foot { grid-template-columns: 1fr; gap: 32px; } }
.onde-foot h5 { font-family: var(--serif); font-size: 1.3rem; color: var(--casca); margin-bottom: 10px; font-weight: 500; }
.onde-foot p { color: var(--forno); font-size: 0.98rem; line-height: 1.55; }
.onde-foot .mono { display: block; color: var(--tijolo); margin-bottom: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--casca);
  color: var(--papel);
  padding: 80px 0 36px;
  position: relative; z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251, 247, 238, 0.12);
}
@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-brand img { width: 96px; filter: brightness(0) invert(1) sepia(0.3); opacity: 0.95; }
.footer-brand p {
  font-family: var(--serif); font-size: 1.2rem; line-height: 1.4;
  color: rgba(251, 247, 238, 0.78); max-width: 32ch;
}
.footer-col h6 {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--crosta); margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul li { list-style: none; margin-bottom: 10px; }
.footer-col a {
  color: rgba(251, 247, 238, 0.78); text-decoration: none;
  transition: color 0.2s;
  font-size: 0.98rem;
}
.footer-col a:hover { color: var(--crosta); }

.footer-bottom {
  margin-top: 36px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(251, 247, 238, 0.55);
}

/* ============================================================
   FLOATING WHATSAPP — discreet, bottom right
   ============================================================ */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--tijolo);
  color: var(--papel);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px -8px rgba(42, 24, 16, 0.45), 0 2px 6px rgba(42, 24, 16, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, width 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}
.wa-float svg { width: 24px; height: 24px; flex: 0 0 24px; }
.wa-float .wa-label {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: max-width 0.35s ease, margin 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}
.wa-float:hover {
  width: auto;
  padding: 0 22px 0 16px;
  border-radius: 999px;
  background: var(--casca);
  transform: translateY(-2px);
}
.wa-float:hover .wa-label {
  max-width: 200px;
  margin-left: 10px;
  opacity: 1;
}
@media (max-width: 480px) {
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ============================================================
   MOBILE — 350px-friendly tweaks
   ============================================================ */

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 12px 18px; }
  .nav-logo img { width: 36px; height: 36px; }
  .nav-logo span { font-size: 1.15rem; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .hero-content { padding: 96px 0 40px; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 3.4rem); max-width: 100%; }
  .hero-sub { font-size: 1.05rem; }
  .hero-meta { gap: 16px; margin-top: 28px; padding-top: 20px; }
  .hero-meta-item p { font-size: 0.95rem; }
  .btn { padding: 12px 18px; font-size: 0.62rem; }
  .narrative-body { font-size: 1.1rem; line-height: 1.6; }
  .narrative-body p:first-of-type::first-letter { font-size: 3.8em; }
  .pull-quote blockquote { font-size: 1.5rem; }
  .pull-quote::before { font-size: 4.5rem; }
  .produto-hero-text { padding: 32px 24px; }
  .produto-card-img { height: 220px; }
  .salgados { padding: 28px 22px; }
  .juju-note { padding: 24px 22px; }
  .onde-card { padding: 22px 20px; }
  .onde-foot { padding: 28px 22px; }
  .footer { padding: 56px 0 28px; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .nav-logo span { display: none; } /* save space on very narrow screens */
  .hero-content { padding-top: 88px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ornamental wheat divider (echoes logo wheat) */
.wheat-divider {
  display: flex; justify-content: center; align-items: center;
  gap: 16px;
  padding: 24px 0;
  color: var(--tijolo);
  opacity: 0.55;
}
.wheat-divider hr {
  flex: 0 0 60px;
  height: 1px; background: var(--tijolo); border: none;
}
.wheat-divider svg { width: 28px; height: auto; }
