/* ============================================================
   DILICIA MARMITEX — Editorial Caseiro
   Paleta: creme + vinho + laranja
   ============================================================ */

:root {
  --cream: #fbf3e6;
  --cream-deep: #f3e8d2;
  --burgundy: #5d1313;
  --burgundy-deep: #3d0a0a;
  --orange: #f38635;
  --orange-deep: #d96b1a;
  --ink: #2a1a14;
  --ink-soft: #5a4339;
  --paper-shadow: rgba(93, 19, 19, 0.14);
  --paper-shadow-soft: rgba(93, 19, 19, 0.08);

  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans: "Open Sans", system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
  width: 100%;
}

/* Grão de papel — SVG noise inline, NÃO blur */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36  0 0 0 0 0.07  0 0 0 0 0.07  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

::selection {
  background: var(--burgundy);
  color: var(--cream);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  color: var(--burgundy);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.015em;
}

/* ============================================================
   TEXT WRAPPING — balance for short copy, pretty for paragraphs
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.hero__title,
.hero__subtitle,
.section-title,
.lead,
.eyebrow,
.sobre__pull,
.marmita__caption,
.polaroid__caption,
.mosaic__caption,
.info-block__value,
.info-block__label,
.info-block__note,
.stat__num,
.stat__label,
.step h3,
.marmitas__cta p,
.footer__title,
.footer__bottom,
.footer__brand p,
.btn,
.wordmark__name,
.wordmark__tag {
  text-wrap: balance;
}

p,
.step p,
.sobre__body p {
  text-wrap: pretty;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.eyebrow.solo::after { display: none; }
.eyebrow.solo::before { display: none; }

.section-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  color: var(--orange);
  font-variation-settings: "opsz" 144, "SOFT" 0;
  display: block;
  letter-spacing: -0.04em;
}

.section-num sup {
  font-size: 0.35em;
  vertical-align: super;
  color: var(--burgundy);
  font-weight: 400;
  margin-left: 0.3em;
}

/* ============================================================
   CONTAINER & UTIL
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-top: 0.4rem;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.7rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
}

.btn--primary {
  background: var(--orange);
  color: var(--cream);
  box-shadow: 0 10px 24px -8px rgba(243, 134, 53, 0.55), inset 0 -3px 0 rgba(0,0,0,0.08);
}

.btn--primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(243, 134, 53, 0.65), inset 0 -3px 0 rgba(0,0,0,0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  box-shadow: inset 0 0 0 2px var(--burgundy);
}

.btn--ghost:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--cream {
  background: var(--cream);
  color: var(--burgundy);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.25);
}

.btn--cream:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn .wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Pulsing dot inside primary button */
.btn--primary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  background: var(--cream);
  box-shadow: 0 4px 20px var(--paper-shadow-soft);
  padding: 0.7rem 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--burgundy);
  transition: color 0.3s ease;
}

.site-header:not(.is-scrolled) .wordmark {
  color: var(--cream);
}

.wordmark__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.65rem;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  letter-spacing: -0.01em;
}

.wordmark__tag {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s ease;
  position: relative;
}

.site-header.is-scrolled .nav-links a {
  color: var(--burgundy);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--cream);
}

.site-header.is-scrolled .nav-toggle { color: var(--burgundy); }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.05) saturate(0.92);
}

.hero__poster {
  z-index: 1;
}

.hero__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero__video.is-loaded {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(105deg, rgba(40, 6, 6, 0.85) 0%, rgba(61, 10, 10, 0.62) 45%, rgba(61, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(40, 6, 6, 0.45) 0%, rgba(40, 6, 6, 0.05) 30%, rgba(40, 6, 6, 0.65) 100%),
    radial-gradient(ellipse at 25% 35%, rgba(243, 134, 53, 0.16) 0%, transparent 55%);
}

.hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero__top .eyebrow {
  color: var(--orange);
}

.hero__top .eyebrow::before,
.hero__top .eyebrow::after {
  background: var(--orange);
}

.hero__title {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 0.78;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero__title em {
  font-style: italic;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(251, 243, 230, 0.95);
  max-width: 52ch;
  margin-top: 1.6rem;
  line-height: 1.55;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__ctas .btn--ghost {
  color: var(--cream);
  box-shadow: inset 0 0 0 2px rgba(251, 243, 230, 0.8);
}

.hero__ctas .btn--ghost:hover {
  background: var(--cream);
  color: var(--burgundy);
  box-shadow: inset 0 0 0 2px var(--cream);
}

/* Stamp "Desde 2014" — SVG circular text */
.stamp {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 12%;
  right: 8%;
  z-index: 5;
  animation: stampSpin 32s linear infinite;
  pointer-events: none;
}

@keyframes stampSpin {
  to { transform: rotate(360deg); }
}

.stamp__text {
  fill: var(--cream);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
}

.stamp__center {
  font-family: var(--serif);
  font-size: 26px;
  fill: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.stamp__year {
  font-family: var(--serif);
  font-size: 12px;
  fill: var(--cream);
  font-weight: 600;
  letter-spacing: 0.15em;
}

/* Hero scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 243, 230, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(251, 243, 230, 0.6);
  animation: scrollCue 1.6s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* Floating tags above the hero overlay */
.hero__tags {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  right: var(--gutter);
  top: 35%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(251, 243, 230, 0.85);
  text-align: right;
}

.hero__tags span {
  display: block;
  white-space: nowrap;
}

.hero__tags span::before {
  content: "—  ";
  color: var(--orange);
}

/* ============================================================
   SECTION DIVIDER (ornament)
   ============================================================ */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2.5rem var(--gutter);
  color: var(--burgundy);
  opacity: 0.85;
}

.divider svg { flex-shrink: 0; }

.divider__line {
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* ============================================================
   SOBRE
   ============================================================ */

.sobre {
  background: var(--cream);
  position: relative;
}

.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.sobre__media {
  position: relative;
  padding: 1rem;
}

.polaroid {
  background: #fff;
  padding: 1rem 1rem 3.5rem;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 18px 40px -16px var(--paper-shadow),
    0 30px 60px -24px var(--paper-shadow);
  position: relative;
  display: inline-block;
  transition: transform 0.5s ease;
}

.polaroid img {
  width: 100%;
  display: block;
  background: var(--cream-deep);
}

.polaroid__caption {
  position: absolute;
  bottom: 0.9rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 14, "SOFT" 100;
  text-align: center;
}

.sobre__media .polaroid {
  transform: rotate(-2.5deg);
  width: 100%;
}

.sobre__media .polaroid:hover {
  transform: rotate(-1deg) translateY(-4px);
}

.sobre__media::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -2rem;
  width: 80px;
  height: 80px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
}

.sobre__media::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--burgundy);
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-8deg);
  opacity: 0.85;
}

.sobre__body p {
  margin: 1.2rem 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

.sobre__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  color: var(--burgundy);
  line-height: 1.3;
  border-left: 4px solid var(--orange);
  padding-left: 1.4rem;
  margin: 2rem 0;
  max-width: 36ch;
  font-variation-settings: "opsz" 60, "SOFT" 80;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.6rem;
  border-top: 1px solid var(--paper-shadow);
  padding-top: 1.8rem;
}

.stat__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 0;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.6rem;
  display: block;
}

/* ============================================================
   MARMITAS — gallery
   ============================================================ */

.marmitas {
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.marmitas .section-num { color: var(--orange); }
.marmitas h2 { color: var(--cream); }
.marmitas .lead { color: rgba(251, 243, 230, 0.78); }

.marmitas__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.marmitas__head .eyebrow { color: var(--orange); }
.marmitas__head .eyebrow::before,
.marmitas__head .eyebrow::after { background: var(--orange); }

/* ============================================================
   EMBALAGENS — choice between padrão / executiva
   ============================================================ */

.embalagens {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 2;
}

.embalagens__heading {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(251, 243, 230, 0.78);
  margin-bottom: 1.8rem;
  font-variation-settings: "opsz" 60, "SOFT" 80;
}

.embalagens__heading::before,
.embalagens__heading::after {
  content: "—";
  color: var(--orange);
  margin: 0 0.7rem;
  font-style: normal;
}

.embalagens__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  max-width: 720px;
  margin: 0 auto;
}

.embalagens__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.8rem 1.4rem;
  border: 1px solid rgba(251, 243, 230, 0.22);
  background: rgba(251, 243, 230, 0.04);
  text-align: center;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.embalagens__card:hover {
  border-color: var(--orange);
  background: rgba(251, 243, 230, 0.07);
  transform: translateY(-3px);
}

.embalagens__icon {
  width: 84px;
  height: 64px;
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 0.3rem;
}

.embalagens__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.embalagens__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream);
  font-variation-settings: "opsz" 24, "SOFT" 80;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 0.2rem;
}

.embalagens__desc {
  font-size: 0.9rem;
  color: rgba(251, 243, 230, 0.72);
  max-width: 30ch;
  line-height: 1.5;
}

.embalagens__note {
  text-align: center;
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(251, 243, 230, 0.6);
  font-variation-settings: "opsz" 24, "SOFT" 80;
}

/* Decorative "etiquetas" floating */
.marmitas::before {
  position: absolute;
  top: 2rem;
  left: -2rem;
  right: -2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: rgba(243, 134, 53, 0.12);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.marmita-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  position: relative;
  z-index: 2;
}

.marmita {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 1.2rem 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.5s ease;
  box-shadow: 0 22px 40px -22px rgba(0,0,0,0.5);
}

.marmita:hover {
  transform: translateY(-6px) rotate(0deg) !important;
}

.marmita__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
}

.marmita__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.marmita:hover .marmita__photo img {
  transform: scale(1.04);
}

.marmita__num {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  z-index: 2;
  font-variation-settings: "opsz" 60;
}

.marmita__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--burgundy);
  font-variation-settings: "opsz" 24, "SOFT" 80;
}

.marmita__tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}

/* Asymmetric placement */
.marmita--a { grid-column: span 5; transform: rotate(-1.2deg); }
.marmita--b { grid-column: span 4; transform: rotate(0.8deg); margin-top: 3rem; }
.marmita--c { grid-column: span 3; transform: rotate(-0.6deg); margin-top: -1rem; }
.marmita--d { grid-column: 3 / span 4; transform: rotate(1.4deg); }
.marmita--e { grid-column: 7 / span 4; transform: rotate(-0.5deg); }

.marmitas__cta {
  margin-top: 4rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.marmitas__cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 60;
}

/* ============================================================
   ESPAÇO — mosaic
   ============================================================ */

.espaco {
  background: var(--cream);
  position: relative;
}

.espaco__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(1rem, 1.6vw, 1.4rem);
}

.mosaic__item {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 18px 36px -18px var(--paper-shadow);
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mosaic__item:hover img {
  transform: scale(1.05);
}

.mosaic__item--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.mosaic__item--b {
  grid-column: span 5;
}

.mosaic__item--c {
  grid-column: span 5;
}

.mosaic__item--d {
  grid-column: span 6;
}

.mosaic__item--e {
  grid-column: span 6;
}

.mosaic__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--cream);
  padding: 0.5rem 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--burgundy);
  font-variation-settings: "opsz" 24;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ============================================================
   COMO PEDIR
   ============================================================ */

.steps {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  opacity: 0.25;
}

.steps__head {
  text-align: center;
  margin-bottom: 4rem;
}

.steps__head .lead {
  margin: 1.2rem auto 0;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  position: relative;
}

.steps__grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(to right, var(--orange) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--burgundy);
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--burgundy);
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  position: relative;
  box-shadow: 0 12px 24px -12px var(--paper-shadow);
}

.step__num::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--orange);
  border-radius: 50%;
  opacity: 0.55;
}

.step h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--ink-soft);
  max-width: 26ch;
  margin: 0 auto;
}

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */

.local {
  background: var(--burgundy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.local::before {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  right: -3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: rgba(243, 134, 53, 0.12);
  white-space: nowrap;
  pointer-events: none;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.local h2 { color: var(--cream); }
.local .lead { color: rgba(251, 243, 230, 0.78); }
.local .eyebrow { color: var(--orange); }
.local .eyebrow::before,
.local .eyebrow::after { background: var(--orange); }

.local__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.local__info { display: flex; flex-direction: column; }

.info-block {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(251, 243, 230, 0.18);
}

.info-block:last-of-type { border-bottom: none; }

.info-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.info-block__value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
  font-variation-settings: "opsz" 60, "SOFT" 50;
  line-height: 1.35;
}

.info-block__value a {
  border-bottom: 1px solid var(--orange);
  transition: color 0.3s;
}

.info-block__value a:hover { color: var(--orange); }

.info-block__note {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(251, 243, 230, 0.55);
  margin-top: 0.4rem;
  display: block;
}

.local__cta {
  margin-top: 2rem;
}

.local__map {
  position: relative;
  background: var(--cream-deep);
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
  border: 4px solid var(--cream);
}

.local__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
  filter: contrast(1.05) saturate(0.9);
}

.local__map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(93,19,19,0.2);
}

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

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__brand .wordmark { color: var(--cream); }
.footer__brand .wordmark__name { font-size: 2.4rem; }
.footer__brand .wordmark__tag { font-size: 0.65rem; }

.footer__brand p {
  margin-top: 1.4rem;
  color: rgba(251, 243, 230, 0.65);
  max-width: 36ch;
  font-size: 0.95rem;
}

.footer__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}

.footer__list { list-style: none; }
.footer__list li { margin-bottom: 0.7rem; }
.footer__list a {
  color: rgba(251, 243, 230, 0.78);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer__list a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid rgba(251, 243, 230, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(251, 243, 230, 0.5);
  letter-spacing: 0.05em;
}

.footer__bottom em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "opsz" 24;
}

/* ============================================================
   ANIMATIONS — reveal on scroll
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero__tags { display: none; }
  .stamp { width: 110px; height: 110px; bottom: 6%; right: 6%; }

  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__media { max-width: 380px; }

  .marmitas__head,
  .espaco__head { grid-template-columns: 1fr; gap: 1.5rem; }

  .marmita-grid { grid-template-columns: repeat(2, 1fr); }
  .marmita--a, .marmita--d { grid-column: span 2; transform: rotate(0); margin-top: 0; }
  .marmita--b, .marmita--c, .marmita--e { grid-column: span 2; transform: rotate(0); margin-top: 0; }

  .embalagens__grid { grid-template-columns: 1fr; max-width: 380px; }

  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .mosaic__item--feature,
  .mosaic__item--b,
  .mosaic__item--c,
  .mosaic__item--d,
  .mosaic__item--e { grid-column: span 2; grid-row: auto; }
  .mosaic__item { min-height: 280px; }

  .steps__grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps__grid::before { display: none; }

  .local__grid { grid-template-columns: 1fr; }
  .local__map { min-height: 320px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: 0 12px 30px var(--paper-shadow);
  }

  .nav-links.is-open li { width: 100%; }
  .nav-links.is-open a {
    color: var(--burgundy);
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--paper-shadow-soft);
    font-size: 0.95rem;
  }

  .header-cta { display: none; }

  .hero { padding: 6rem 0 3.5rem; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); }

  .hero__inner { text-align: center; }
  .hero__top { justify-content: center; margin-bottom: 1.1rem; }
  .hero__title,
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-top: 1.1rem; }
  .hero__ctas { justify-content: center; margin-top: 1.4rem; }
  .hero__scroll { bottom: 1.1rem; }

  .stats { grid-template-columns: 1fr; gap: 1.2rem; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; }

  /* Center everything on mobile */
  .sobre__body,
  .sobre__body p,
  .marmitas__head,
  .marmitas__head .lead,
  .espaco__head,
  .espaco__head .lead,
  .local__info,
  .info-block,
  .footer__brand,
  .footer__brand p,
  .footer__grid > div,
  .footer__title,
  .footer__list {
    text-align: center;
  }

  .sobre__body .lead,
  .sobre__body p,
  .marmitas__head .lead,
  .espaco__head .lead,
  .footer__brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .sobre__media { margin-left: auto; margin-right: auto; }

  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand .wordmark { align-items: center; }

  .footer__bottom { justify-content: center; text-align: center; }

  .local__cta { text-align: center; }
  .info-block__value a { display: inline-block; }
}

@media (max-width: 480px) {
  .stamp { display: none; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
}
