/* =========================================================
   Fernanda Turquia — Nutrição Integrativa
   Sistema de design: tokens, base, componentes, layout
   ========================================================= */

/* ---- Fontes (auto-hospedadas) ---- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fraunces-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fraunces-500-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020;
}

/* ---- Tokens ---- */
:root {
  /* Paleta editorial: sálvia, trigo, laranja, vinho e ameixa.
     Aplicada a partir da referência aprovada, para comunicar alimento,
     naturalidade, energia e acolhimento sem cair no visual hospitalar. */
  --color-bg: #f8f6f0;
  --color-surface: #ffffff;
  --color-surface-muted: #f0eee5;
  --color-sage: #dce2cc;
  --color-wheat: #e7d6a9;
  --color-orange: #bd714c;
  --color-primary: #5d7041;
  --color-primary-dark: #4c5e36;
  --color-accent: #bd714c;
  --color-accent-dark: #9d5638;
  --color-accent-contrast: #FFFFFF;
  --color-text: #29301f;
  --color-text-muted: #4f5548;
  --color-border: #d8d2c1;
  --color-focus: #1E5FAA;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --measure: 62ch;
  --container-w: 1180px;

  --space-2xs: clamp(0.4rem, 0.35rem + 0.2vw, 0.5rem);
  --space-xs: clamp(0.6rem, 0.5rem + 0.4vw, 0.85rem);
  --space-sm: clamp(1rem, 0.9rem + 0.5vw, 1.3rem);
  --space-md: clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem);
  --space-lg: clamp(2.2rem, 1.8rem + 1.8vw, 3.4rem);
  --space-xl: clamp(3.2rem, 2.6rem + 2.6vw, 5rem);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 3px 14px rgba(55, 47, 52, 0.08);
  --shadow-md: 0 18px 48px rgba(55, 47, 52, 0.14);

  --motion-fast: 160ms;
  --motion-base: 240ms;
  color-scheme: light;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  min-width: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; display: block; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 var(--space-sm); color: var(--color-text); }
h1 { font-size: clamp(2rem, 1.6rem + 2.2vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 1.3rem + 1.2vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.6vw, 1.5rem); }
p { margin: 0 0 var(--space-sm); max-width: var(--measure); }
ul, ol { padding-left: 1.2em; }
a { color: var(--color-accent-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }
small { color: var(--color-text-muted); }

/* ---- Foco visível (acessibilidade) ---- */
:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -60px;
  background: var(--color-accent);
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--motion-base) ease;
}
.skip-link:focus { top: var(--space-sm); color: #fff; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.section { padding-block: var(--space-xl); }
.section--muted { background: var(--color-surface-muted); }
.section-head { max-width: 46rem; margin-bottom: var(--space-lg); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2xs);
}
.lead { font-size: 1.15rem; color: var(--color-text-muted); }

/* ---- Cabeçalho ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: var(--space-xs);
  min-width: 0;
}
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand:hover { color: var(--color-accent-dark); }
.brand strong { color: var(--color-accent-dark); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  flex: 0 0 auto;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="false"] .icon-close { display: none; }

.main-nav {
  display: none;
  flex-basis: 100%;
  flex-direction: column;
  gap: var(--space-2xs);
  padding-block: var(--space-sm);
  border-top: 1px solid var(--color-border);
}
.main-nav.is-open { display: flex; }
.main-nav a {
  display: block;
  padding: 0.7em 0.2em;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.main-nav a[aria-current="page"] { color: var(--color-accent-dark); font-weight: 600; }
.main-nav a:hover { background: var(--color-surface-muted); }
.main-nav__cta { margin-top: var(--space-2xs); }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .main-nav {
    display: flex !important;
    flex-basis: auto;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    border-top: none;
    padding-block: 0;
  }
  .main-nav a { min-height: auto; padding: 0.4em 0.2em; }
  .main-nav__cta { margin-top: 0; margin-left: var(--space-xs); }
}

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.8em 1.4em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.2;
  transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; }
.btn-secondary { background: transparent; border-color: var(--color-primary); color: var(--color-primary-dark); }
.btn-secondary:hover { background: var(--color-surface-muted); color: var(--color-primary-dark); }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { background: var(--color-surface-muted); }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-xs); }

/* ---- Hero ---- */
.hero { padding-block: var(--space-lg) var(--space-xl); }
.hero--food { position: relative; overflow: clip; }
.hero__grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
.hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-surface-muted);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow { color: var(--color-accent-dark); }
.hero__title { margin-bottom: var(--space-xs); }
.hero__lead { font-size: 1.15rem; color: var(--color-text-muted); margin-bottom: var(--space-md); }
.hero__credencial {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

@media (min-width: 900px) {
  .hero--food { padding-block: 4.5rem 5.5rem; }
  .hero__grid { grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr); gap: clamp(3rem, 5vw, 6rem); }
  .hero__content { padding-block: 1rem; }
  .hero__title { font-size: clamp(3.5rem, 4.5vw, 5.6rem); letter-spacing: -0.045em; max-width: 10ch; }
  .hero__lead { max-width: 47ch; font-size: 1.17rem; }
  .hero__media { min-height: 570px; border-radius: 38% 16px 38% 16px; }
  .hero__media img { min-height: 570px; }
  .hero__grid--reverse { direction: rtl; }
  .hero__grid--reverse > * { direction: ltr; }
}

/* ---- Listas de identificação / benefícios ---- */
.check-list { list-style: none; padding: 0; display: grid; gap: var(--space-sm); }
.check-list li {
  display: flex;
  gap: 0.75em;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}
.check-list li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--color-accent); margin-top: 0.15em; }

/* ---- Cards de processo / serviços ---- */
.card-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--color-wheat); }
.card__step {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-accent);
  font-size: 0.95rem;
  margin-bottom: var(--space-2xs);
}
.card h3 { margin-bottom: var(--space-2xs); }
.card p:last-child { margin-bottom: 0; }

/* ---- Bio / institucional ---- */
.bio {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
.bio__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.bio__media img { width: 100%; }
@media (min-width: 900px) {
  .bio { grid-template-columns: 0.85fr 1.15fr; }
}

/* ---- Manifesto alimentar ---- */
.section--food-story { background: var(--color-sage); }
.food-story { display: grid; gap: var(--space-lg); align-items: center; }
.food-story__media { overflow: hidden; border-radius: 16px 40% 16px 40%; box-shadow: var(--shadow-md); }
.food-story__media img { width: 100%; min-height: 280px; object-fit: cover; }
.food-story__content h2 { max-width: 13ch; font-size: clamp(2rem, 3.1vw, 3.65rem); letter-spacing: -0.035em; }
.food-story__content .lead { color: var(--color-primary-dark); }
.btn-wheat { background: var(--color-wheat); color: var(--color-primary-dark); }
.btn-wheat:hover { background: #F3D18B; color: var(--color-primary-dark); }
@media (min-width: 900px) {
  .section--food-story { padding-block: clamp(5rem, 8vw, 8rem); }
  .food-story { grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr); gap: clamp(3rem, 7vw, 8rem); }
  .food-story__media { min-height: 500px; }
  .food-story__media img { height: 500px; }
}

/* ---- Mídia / autoridade ---- */
.autoridade {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.autoridade__eyebrow { color: var(--color-wheat); }
.autoridade h2, .autoridade p { color: #fff; }
.autoridade .lead { color: #E7E1D6; }

/* ---- FAQ (accordion nativo) ---- */
.faq-list { display: grid; gap: var(--space-xs); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: 0 0 auto; font-size: 1.4rem; color: var(--color-accent); transition: transform var(--motion-base) ease; line-height: 1; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item__body { padding: 0 var(--space-md) var(--space-md); color: var(--color-text-muted); }
.faq-item__body p:last-child { margin-bottom: 0; }

/* ---- CTA final ---- */
.cta-final {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9D2232 58%, var(--color-primary) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}
.btn-light { background: #fff; color: var(--color-accent-dark); }
.btn-light:hover { background: var(--color-wheat); color: var(--color-primary-dark); }
.cta-final h2, .cta-final p { color: #fff; }
.cta-final .btn-secondary { border-color: #fff; color: #fff; }
.cta-final .btn-secondary:hover { background: rgba(255,255,255,0.12); }
.cta-final .btn-group { justify-content: center; }

/* ---- Rodapé ---- */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-lg);
  background: var(--color-surface-muted);
}
.footer-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-grid h2 { font-size: 1rem; margin-bottom: var(--space-xs); }
.footer-nav { list-style: none; padding: 0; display: grid; gap: 0.5em; }
.footer-nav a { text-decoration: none; color: var(--color-text); }
.footer-nav a:hover { color: var(--color-accent-dark); }
.footer-meta { margin-top: var(--space-lg); padding-top: var(--space-sm); border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: 0.85rem; }
.footer-meta p { margin-bottom: 0.3em; }

/* ---- Botão flutuante do WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  background: #1E7E45;
  color: #fff;
  border-radius: 999px;
  padding: 0.85em 1.1em;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  font-weight: 600;
  min-height: 48px;
}
.whatsapp-float:hover { background: #175f34; color: #fff; }
.whatsapp-float svg { width: 22px; height: 22px; flex: 0 0 auto; }
.whatsapp-float__label { display: none; }
@media (min-width: 640px) {
  .whatsapp-float__label { display: inline; }
}

/* ---- Página 404 / genéricas de conteúdo ---- */
.page-header {
  padding-block: var(--space-xl) var(--space-lg);
  position: relative;
}
.page-header::before {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-orange);
  margin-bottom: var(--space-sm);
}
.page-header h1 { max-width: 18ch; letter-spacing: -0.035em; }
.page-header .lead { max-width: 58ch; }
@media (min-width: 900px) {
  .page-header { padding-block: clamp(5rem, 9vw, 8rem) clamp(3.5rem, 6vw, 5rem); }
  .page-header h1 { font-size: clamp(3rem, 4.4vw, 5.1rem); }
}
.page-header .eyebrow { display: block; }
.prose :is(h2, h3) { margin-top: var(--space-lg); }
.prose ul { display: grid; gap: 0.4em; margin: 0 0 var(--space-sm); }

/* ---- Utilidades ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: grid; gap: var(--space-sm); }

/* ---- Direção visual: consultório contemporâneo, acolhedor e objetivo ---- */
.site-header {
  background: var(--color-primary);
  border-bottom: 0;
  backdrop-filter: none;
}
.site-header__bar { min-height: 68px; }
.brand { color: #fff; display: grid; gap: 0; font-family: var(--font-body); font-size: 0.98rem; line-height: 1.1; overflow: visible; }
.brand span { font-weight: 700; letter-spacing: -0.02em; }
.brand strong { color: #eef1e7; font-weight: 500; font-size: 0.72rem; }
.brand:hover, .brand:hover strong { color: #fff; }
.main-nav a { color: #fff; font-size: 0.9rem; }
.main-nav a[aria-current="page"] { color: #f4e7bd; }
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.12); }
.main-nav .btn-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); box-shadow: none; }
.main-nav .btn-primary:hover { background: #a75f40; }
.nav-toggle { color: var(--color-primary-dark); }

.hero--food { padding-block: clamp(2.5rem, 5vw, 4.5rem); background: linear-gradient(90deg, #faf9f4 0%, #faf9f4 54%, #edf0e7 54%, #edf0e7 100%); }
.hero__grid { gap: 0; }
.hero__content { padding: clamp(2rem, 4vw, 4.3rem) clamp(1.2rem, 4vw, 4rem); background: #faf9f4; }
.hero__eyebrow { color: var(--color-primary); letter-spacing: .08em; }
.hero__title { color: var(--color-primary-dark); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.045em; }
.hero__lead { color: #3f4639; font-size: 1.03rem; }
.hero__media { border-radius: 0; box-shadow: none; background: #e5e5db; min-height: 420px; }
.hero__media img { object-position: center 25%; }
.hero__credencial { color: #68705e; }
.btn { border-radius: 9px; padding: .78em 1.2em; box-shadow: none; }
.btn-primary { background: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-secondary { border-color: var(--color-primary); color: var(--color-primary-dark); }
.btn-wheat { background: var(--color-accent); color: #fff; }
.btn-wheat:hover { background: var(--color-accent-dark); color: #fff; }

.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-head { text-align: left; margin-inline: auto; }
.section-head h2, .food-story__content h2, .bio h2 { color: var(--color-primary-dark); font-family: var(--font-body); font-weight: 700; letter-spacing: -.035em; }
.section--muted { background: #f2f1eb; }
.check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.check-list li { border-radius: 10px; padding: 1.1rem; box-shadow: 0 3px 12px rgba(55,62,38,.06); }
.check-list li svg { color: var(--color-accent); }
.card { border-radius: 10px; border: 1px solid #b1ad97; box-shadow: none; padding: 1.35rem; }
.card:hover { transform: translateY(-3px); border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.card__step { color: var(--color-accent); font-family: var(--font-body); font-weight: 700; }
.card h3 { font-family: var(--font-body); font-weight: 700; color: var(--color-primary-dark); }
.section--food-story { background: #e5e8d9; }
.food-story__media { border-radius: 12px; box-shadow: none; }
.food-story__content .lead { color: #3f4639; }
.bio__media { border-radius: 12px; box-shadow: none; }
.autoridade { border-radius: 12px; background: var(--color-primary); }
.faq-item { border-radius: 10px; }
.cta-final { border-radius: 12px; background: var(--color-primary); }
.site-footer { background: var(--color-primary); border: 0; color: #fff; }
.site-footer h2, .site-footer p, .site-footer small, .footer-nav a, .footer-meta { color: #fff; }
.footer-nav a:hover { color: #f3dfaa; }
.footer-meta { border-color: rgba(255,255,255,.25); }
.whatsapp-float { background: #25894f; }

@media (min-width: 900px) {
  .site-header__bar { padding-inline: 1.25rem; }
  .main-nav { gap: 1.25rem; }
  .main-nav a { padding: .45em 0; }
  .hero--food { padding-block: 0; }
  .hero__grid { grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); max-width: none; padding: 0; }
  .hero__content { padding-left: max(calc((100vw - var(--container-w))/2), 5vw); padding-right: clamp(2rem, 5vw, 5.5rem); min-height: 570px; display: flex; flex-direction: column; justify-content: center; }
  .hero__title { font-size: clamp(2.8rem, 4.1vw, 4.25rem); max-width: 12ch; }
  .hero__media { min-height: 570px; }
  .hero__media img { min-height: 570px; object-position: center 22%; }
  .section-head { margin-left: 0; }
}

@media (max-width: 719px) {
  .check-list { grid-template-columns: 1fr; }
}
