/* =============================================
   DESIGN TOKENS — do CSS original do site
============================================= */
:root {
  --radius: 0.25rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);

  /* Cream paper */
  --background:           oklch(0.965 0.018 85);
  --foreground:           oklch(0.22  0.025 40);
  --card:                 oklch(0.955 0.022 82);
  --card-foreground:      oklch(0.22  0.025 40);
  --popover:              oklch(0.965 0.018 85);
  --popover-foreground:   oklch(0.22  0.025 40);
  /* Coffee brown */
  --primary:              oklch(0.32  0.045 45);
  --primary-foreground:   oklch(0.965 0.018 85);
  --secondary:            oklch(0.92  0.025 82);
  --secondary-foreground: oklch(0.28  0.04  45);
  --muted:                oklch(0.93  0.02  82);
  --muted-foreground:     oklch(0.45  0.03  50);
  /* Copper accent */
  --accent:               oklch(0.62  0.12  50);
  --accent-foreground:    oklch(0.98  0.01  85);
  --destructive:          oklch(0.55  0.18  30);
  --destructive-foreground: oklch(0.98 0.01  85);
  --border:               oklch(0.85  0.025 70);
  --input:                oklch(0.85  0.025 70);
  --ring:                 oklch(0.62  0.12  50);

  --copper:               oklch(0.62  0.12  50);
  --cream:                oklch(0.965 0.018 85);
  --olive:                oklch(0.38  0.045 110);
  --coffee:               oklch(0.25  0.04  40);

  /* Semantic shortcuts usados no layout */
  --font-serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --font-sans:  "Inter", ui-sans-serif, system-ui, sans-serif;
  --transition: 0.3s ease;

  /* Fallback hex para sombras/rgba legados */
  --cream-hex:  #F5ECD8;
  --copper-hex: #B8703A;
  --coffee-hex: #1E100A;
  --primary-hex:#2E1A0E;
}

/* =============================================
   RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* =============================================
   BASE — do @layer base original
============================================= */
* { border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.005em;
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  background-image:
    radial-gradient(at 20% 10%, oklch(0.93 0.03 70 / 0.5) 0px, transparent 50%),
    radial-gradient(at 80% 90%, oklch(0.9  0.04 60 / 0.4) 0px, transparent 50%);
}

h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* =============================================
   UTILITIES — do @layer utilities original
============================================= */
.paper-texture {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ornament-rule {
  height: 1px;
  background-image: linear-gradient(to right, transparent, var(--copper) 20%, var(--copper) 80%, transparent);
}

/* Animações originais */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.5; }
  50%       { transform: scaleY(0.5); opacity: 1;   }
}

.fade-up  { animation: fadeUp  1.2s cubic-bezier(0.22, 1, 0.36, 1) both; }
.fade-in  { animation: fadeIn  1.4s ease-out both; }
.slow-zoom{ animation: slowZoom 20s ease-out infinite alternate; }

/* Scroll-triggered fade (JS adiciona .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* =============================================
   NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: oklch(0.18 0.03 40 / 0.93);
  backdrop-filter: blur(10px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--copper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden; /* Corta sobras da imagem */
}
.nav__logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Torna o logotipo redondo no menu */
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: oklch(0.965 0.018 85 / 0.9);
  transition: color var(--transition);
}
.nav__links a:hover { color: #C4794C; }

.nav__order {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid oklch(0.965 0.018 85 / 0.55);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.nav__order:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #F8EDDE;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: oklch(0.15 0.03 40 / 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__overlay.open { display: flex; }
.nav__overlay a {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav__overlay a:hover { color: #C4794C; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__bg-wrap img { animation: slowZoom 20s ease-out infinite alternate; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    oklch(0.15 0.03 40 / 0.3) 0%,
    oklch(0.15 0.03 40 / 0.45) 55%,
    oklch(0.15 0.03 40 / 0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 28px;
  max-width: 760px;
  margin: 0 auto;
}
.hero__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  animation: fadeIn 1.4s 0.3s ease-out both;
}
.hero__kicker-rule {
  width: 44px;
  height: 1px;
  background: oklch(0.965 0.018 85 / 0.5);
}
.hero__kicker-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: oklch(0.965 0.018 85 / 0.7);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 22px;
  animation: fadeUp 1.2s cubic-bezier(0.22,1,0.36,1) 0.4s both;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.hero__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: oklch(0.965 0.018 85 / 0.72);
  max-width: 460px;
  margin: 0 auto 44px;
  animation: fadeUp 1.2s cubic-bezier(0.22,1,0.36,1) 0.55s both;
}
.hero__cta-wrap {
  animation: fadeUp 1.2s cubic-bezier(0.22,1,0.36,1) 0.7s both;
}
.btn-ghost {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid oklch(0.965 0.018 85 / 0.65);
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-ghost:hover {
  background: #BF6E3E;
  border-color: #BF6E3E;
  color: #F8EDDE;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: oklch(0.965 0.018 85 / 0.45);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* =============================================
   TRANSIÇÃO HERO → INTRO
============================================= */
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(245, 236, 216, 0) 0%,
    rgba(245, 236, 216, 0.15) 20%,
    rgba(245, 236, 216, 0.45) 45%,
    rgba(245, 236, 216, 0.75) 70%,
    var(--background) 100%
  );
}

/* =============================================
   SECTION UTILITY
============================================= */
.section-pad  { padding: 100px 52px; }
.section-pad-sm { padding: 72px 52px; }
.container    { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--copper);
}
.eyebrow--light { color: oklch(0.75 0.08 60); }
.eyebrow--light::before { background: oklch(0.75 0.08 60); }

/* =============================================
   INTRO
============================================= */
.intro {
  background: var(--background);
  text-align: center;
}
.intro__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--foreground);
  max-width: 700px;
  margin: 0 auto 28px;
}
.intro__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.intro__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted-foreground);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   STATS — paper texture strip
============================================= */
.stats {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stats__item {
  padding: 52px 20px;
  border-right: 1px solid var(--border);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__rule {
  width: 24px;
  height: 1px;
  background: var(--copper);
  margin: 10px auto;
}
.stats__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* =============================================
   A FAZENDA
============================================= */
#a-fazenda { background: var(--background); }
.fazenda__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.fazenda__img-wrap { position: relative; }
.fazenda__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.fazenda__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0.05em;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
}
.fazenda__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.28;
  color: var(--foreground);
  margin-bottom: 24px;
}
.fazenda__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}
.ornament { height: 1px; margin: 32px 0; width: 100%; }

/* =============================================
   NOSSO CAFÉ (dark section)
============================================= */
#nosso-cafe {
  background-image: 
    linear-gradient(to right, var(--coffee) 35%, transparent 85%), 
    url('beans.webp');
  background-color: var(--coffee);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  position: relative;
  overflow: hidden;
}
#nosso-cafe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 50% at 72% 40%, oklch(0.62 0.12 50 / 0.14) 0%, transparent 70%);
  pointer-events: none;
}
#nosso-cafe::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("../img/beans.webp");
}
.cafe__inner { position: relative; z-index: 1; }
.cafe__head  { margin-bottom: 30px; }
.cafe__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--cream);
}
.cafe__title em { font-style: italic; font-weight: 400; color: var(--copper); }
.cafe__sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: oklch(0.965 0.018 85 / 0.55);
  max-width: 500px;
  margin-top: 16px;
}
.cafe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(0.965 0.018 85 / 0.07);
}
.cafe__card {
  padding: 38px 32px;
  background: transparent;
  border: 1px solid oklch(0.965 0.018 85 / 0.07);
  transition: border-color var(--transition), background var(--transition);
  cursor: default;
}
.cafe__card:hover {
  border-color: oklch(0.62 0.12 50 / 0.45);
  background: oklch(0.62 0.12 50 / 0.07);
}
.cafe__card--accent {
  background: var(--copper);
  border-color: var(--copper);
}
.cafe__card--accent:hover {
  background: oklch(0.55 0.12 50);
  border-color: oklch(0.55 0.12 50);
}
.cafe__card-idx {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: oklch(0.965 0.018 85 / 0.8);
  margin-bottom: 14px;
  margin-top: -14px;
}
.cafe__card--accent .cafe__card-idx { color: oklch(0.965 0.018 85 / 0.65); }
.cafe__card-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}
.cafe__card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: oklch(0.965 0.018 85 / 0.5);
}
.cafe__card--accent .cafe__card-desc { color: oklch(0.965 0.018 85 / 0.85); }
.cafe__card-link {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid oklch(0.62 0.12 50 / 0.4);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.cafe__card:hover .cafe__card-link { color: oklch(0.75 0.1 55); border-color: oklch(0.75 0.1 55 / 0.6); }
.cafe__card--accent .cafe__card-link { color: var(--cream); border-color: oklch(0.965 0.018 85 / 0.5); }

/* =============================================
   PROCESSO
============================================= */
#processo { background: var(--background); }
.processo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.processo__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.processo__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--foreground);
  margin-bottom: 48px;
}
.processo__title em { font-style: italic; color: var(--copper); }
.processo__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
}
.step__num {
  font-family: var(--font-serif);
  font-size: 33px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.step__name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}
.step__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* =============================================
   QUOTE BANNER
============================================= */
.quote-banner {
  position: relative;
  padding: 112px 52px;
  overflow: hidden;
}
.quote-banner__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.quote-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.quote-banner__overlay {
  position: absolute;
  inset: 0;
  background: oklch(0.15 0.03 40 / 0.72);
}
.quote-banner__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.quote-banner__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.quote-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.52;
  color: var(--cream);
}
.quote-banner__text strong { font-style: normal; font-weight: 600; }

/* =============================================
   EMPRESAS
============================================= */
#empresas { background: var(--background); }
.empresas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.empresas__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--foreground);
  margin-bottom: 20px;
}
.empresas__title em { font-style: italic; color: var(--copper); }
.empresas__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted-foreground);
  margin-bottom: 36px;
}
.empresas__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
.option-card {
  border: 1px solid var(--border);
  padding: 18px 20px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.option-card:hover,
.option-card.active {
  border-color: var(--copper);
  background: oklch(0.62 0.12 50 / 0.06);
}
.option-card__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 5px;
  margin-top: 5px;
}
.option-card__val {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--foreground);
}
.btn-solid {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 15px 38px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.btn-solid:hover {
  background: #321B13;
  color: #F8EDDE;
}
.empresas__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* =============================================
   FECHAMENTO
============================================= */
.fechamento { background: var(--secondary); }
.fechamento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.fechamento__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.fechamento__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--foreground);
  margin-bottom: 20px;
}
.fechamento__title em { font-style: italic; color: var(--copper); }
.fechamento__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted-foreground);
  margin-bottom: 14px;
}
.fechamento__sign {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--copper);
  margin-top: 22px;
}

/* =============================================
   FOOTER
============================================= */
#contato { background: var(--coffee); position: relative; overflow: hidden; }
#contato::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.25 0 0 0 0 0.15 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer__inner { position: relative; z-index: 1; }

.footer__cta {
  text-align: center;
  padding: 80px 52px;
  border: 1px solid oklch(0.965 0.018 85 / 0.07);
  border-radius: var(--radius-md);
  margin-bottom: 72px;
  background: oklch(0.965 0.018 85 / 0.03);
}
.footer__cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer__cta-title em { font-style: italic; color: var(--copper); }
.footer__cta-body {
  font-size: 14px;
  font-weight: 300;
  color: oklch(0.965 0.018 85 / 0.55);
  max-width: 400px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 60px;
}

/* 👇 REGRA PARA REDUZIR E ESPAÇAR A LOGO NO FOOTER */
.footer__logo-img {
  width: 100%;
  max-width: 150px;    /* Mantém a logo elegante e discreta no rodapé */
  height: auto;
  display: block;
  margin-top: 14px;
  margin-bottom: 18px; /* Afasta suavemente a descrição abaixo dela */
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer__brand-desc {
  margin-bottom: -10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: oklch(0.965 0.018 85 / 0.45);
}
.footer__col-hd {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: oklch(0.965 0.018 85 / 0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--cream); }
.footer__contact-line {
  font-size: 13px;
  font-weight: 300;
  color: oklch(0.965 0.018 85 / 0.55);
  line-height: 1.8;
  margin-bottom: 6px;
}
.footer__ornament { margin-bottom: 28px; }
.footer__bottom {
  display: flex;
  margin-bottom: -50px; /*Margem footer da pagina*/
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: oklch(0.965 0.018 85 / 0.3);
}
.footer__social { display: flex; gap: 22px; }
.footer__social a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(0.965 0.018 85 / 0.35);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--copper); }

/* =============================================
   RESPONSIVE — TABLET ≤1024px
============================================= */
@media (max-width: 1024px) {
  .section-pad   { padding: 80px 36px; }
  .section-pad-sm{ padding: 60px 36px; }
  .fazenda__grid,
  .processo__grid,
  .empresas__grid,
  .fechamento__grid { gap: 52px; }
  .cafe__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* =============================================
   RESPONSIVE — MOBILE ≤768px
============================================= */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav__links, .nav__order { display: none; }
  .nav__burger { display: flex; }

  .section-pad   { padding: 64px 24px; }
  .section-pad-sm{ padding: 48px 24px; }

  .fazenda__grid,
  .processo__grid,
  .empresas__grid,
  .fechamento__grid { grid-template-columns: 1fr; gap: 40px; }

  .processo__img { aspect-ratio: 16/9; }
  .fechamento__img,
  .empresas__img { aspect-ratio: 16/9; }
  .fazenda__badge { right: 0; bottom: -12px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats__item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }

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

  .processo__steps { grid-template-columns: 1fr; gap: 28px; }

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

  .footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}