/* ============================================================
   Condomínio Fazenda Córrego Grande — Landing Page
   Estilo: editorial premium rústico (refs Botanique, Ibiti)
   Operador IA: Fernando · 28/04/2026
   ============================================================ */

:root {
  --c-cream: #F5F1E8;
  --c-cream-2: #ECE6D6;
  --c-green: #1F3A2E;
  --c-green-2: #163024;
  --c-terra: #8E3B2F;
  --c-terra-2: #732F25;
  --c-stone: #6E6A64;
  --c-ink: #2A2926;
  --c-line: rgba(31, 58, 46, 0.14);
  --c-line-light: rgba(245, 241, 232, 0.18);

  --f-display: 'Crimson Text', Georgia, 'Times New Roman', serif;
  --f-body: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --maxw: 1240px;
  --maxw-narrow: 880px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-2xl: 44px;

  --shadow-soft: 0 1px 0 rgba(31, 58, 46, 0.04), 0 12px 40px -20px rgba(31, 58, 46, 0.18);
  --shadow-card: 0 1px 0 rgba(31, 58, 46, 0.04), 0 22px 60px -24px rgba(31, 58, 46, 0.28);
  --shadow-lift: 0 1px 0 rgba(31, 58, 46, 0.04), 0 36px 80px -24px rgba(31, 58, 46, 0.4);

  --t-fast: 180ms ease;
  --t-base: 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-slow: 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------- Reset enxuto ----------- */
*, *::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: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-terra); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-terra-2); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--c-terra);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
::selection { background: var(--c-green); color: var(--c-cream); }

.visually-hidden {
  position: absolute !important; 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: -9999px; top: 8px; background: var(--c-green); color: var(--c-cream);
  padding: 10px 16px; border-radius: var(--r-sm); z-index: 999;
}
.skip-link:focus { left: 8px; }

/* ----------- Container ----------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); width: 100%; }
.container--narrow { max-width: var(--maxw-narrow); }

/* ----------- Tipografia base ----------- */
.display, .h1, .h2 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--c-green);
  margin: 0;
  line-height: 1.1;
}
.display { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.05; }
.h1 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.12; }
.h2 { font-size: clamp(1.5rem, 2.4vw, 2.125rem); line-height: 1.2; }
.h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; color: var(--c-green); margin: 0 0 0.6rem; line-height: 1.25; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-terra);
  margin: 0 0 1rem;
}
.eyebrow--light { color: rgba(245, 241, 232, 0.78); }

.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: rgba(245, 241, 232, 0.88); margin: 1rem 0 0; max-width: 36ch; }

.muted { color: var(--c-stone); font-size: 0.95rem; }

/* ----------- Botões ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  justify-content: center;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-terra); color: var(--c-cream); }
.btn--primary:hover { background: var(--c-terra-2); color: var(--c-cream); }
.btn--ghost { background: transparent; color: var(--c-green); border-color: rgba(31, 58, 46, 0.45); }
.btn--ghost:hover { background: var(--c-green); color: var(--c-cream); border-color: var(--c-green); }
.btn--ghost-light { background: transparent; color: var(--c-cream); border-color: rgba(245, 241, 232, 0.65); }
.btn--ghost-light:hover { background: var(--c-cream); color: var(--c-green); border-color: var(--c-cream); }
.btn--ghost-light:active { background: rgba(245, 241, 232, 0.85); color: var(--c-green); }
.btn--lg { padding: 1.1rem 2rem; font-size: 0.9375rem; }
.btn--sm { padding: 0.85rem 1.8rem; font-size: 0.75rem; letter-spacing: 0.14em; }
.btn svg { transition: transform var(--t-fast); flex-shrink: 0; width: 1.25em; height: 1.25em; }
.btn--sm svg { width: 1em; height: 1em; }
.btn:hover svg { transform: translateX(2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--f-body); font-size: 0.8125rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; color: var(--c-terra);
  margin-top: auto;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  text-align: left; line-height: 1.2;
}
.link-arrow:hover { transform: translateX(2px); transition: transform var(--t-fast); }
.link-arrow:focus-visible { outline: 2px solid var(--c-terra); outline-offset: 4px; border-radius: 2px; }
.link-arrow span { transition: transform var(--t-fast); }
.link-arrow:hover span { transform: translateX(4px); }

/* ----------- Header ----------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0;
  background: linear-gradient(180deg, rgba(20,39,29,0.95) 0%, rgba(20,39,29,0.78) 35%, rgba(20,39,29,0.45) 70%, rgba(20,39,29,0.15) 90%, rgba(20,39,29,0) 100%);
  padding-bottom: 4rem;
  transition: background var(--t-base), padding var(--t-base), box-shadow var(--t-base);
}
.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.97);
  padding: 0.7rem 0;
  box-shadow: 0 8px 30px -22px rgba(31, 58, 46, 0.4);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex; flex-direction: column; line-height: 1.05;
  color: var(--c-cream);
  text-decoration: none;
  transition: color var(--t-base);
}
.site-header.is-scrolled .brand { color: var(--c-green); }
.brand__top {
  font-family: var(--f-body); font-size: 0.8125rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500; opacity: 0.7;
}
.brand__main {
  font-family: var(--f-display); font-size: 1.7rem; font-weight: 600;
  letter-spacing: -0.005em; line-height: 1; margin-top: 3px;
}

.primary-nav {
  display: flex; align-items: center; gap: 1.6rem;
}
.primary-nav a:not(.btn) {
  font-family: var(--f-body); font-size: 0.8125rem; letter-spacing: 0.06em;
  font-weight: 500; color: var(--c-cream); text-decoration: none;
  position: relative; padding: 4px 0;
  transition: color var(--t-fast);
}
.site-header.is-scrolled .primary-nav a:not(.btn) { color: var(--c-green); }
.primary-nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.primary-nav a:not(.btn):hover::after { transform: scaleX(1); }

.primary-nav .btn--ghost { color: var(--c-cream); border-color: rgba(245, 241, 232, 0.6); }
.primary-nav .btn--ghost:hover { background: var(--c-cream); color: var(--c-green); border-color: var(--c-cream); }
.site-header.is-scrolled .primary-nav .btn--ghost { color: var(--c-green); border-color: var(--c-green); }
.site-header.is-scrolled .primary-nav .btn--ghost:hover { background: var(--c-green); color: var(--c-cream); border-color: var(--c-green); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px; padding: 0;
  background: transparent; border: 0;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--c-cream);
  transition: transform var(--t-base), opacity var(--t-base), background var(--t-base);
}
.site-header.is-scrolled .nav-toggle span { background: var(--c-green); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; top: 0; right: 0;
    width: min(360px, 90vw); height: 100dvh;
    background: var(--c-green);
    flex-direction: column; align-items: stretch; justify-content: center;
    padding: 5rem 2rem 2rem; gap: 1.4rem;
    transform: translateX(100%); transition: transform var(--t-base);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,0.4);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { color: var(--c-cream) !important; font-size: 1.125rem; }
  .primary-nav a:not(.btn)::after { display: none; }
  .site-header.is-scrolled .primary-nav .btn--ghost { color: var(--c-cream); border-color: rgba(245,241,232,0.55); }
}

/* ----------- HERO ----------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
  background: var(--c-green-2);
}

/* Foto aérea como hero principal — Ken Burns sutil (zoom + pan lentos) */
.hero__video {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__video iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  border: 0;
  pointer-events: none;
}

.hero__poster {
  position: absolute; inset: -2%;
  background-image: url('../img/hero-aerea-manha.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  transform: scale(1.04);
  will-change: transform;
  animation: kenBurns 28s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__poster { animation: none; }
}

/* Overlay verde Mantiqueira na paleta */
.hero__overlay-color {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(20, 39, 29, 0.82) 0%, rgba(20, 39, 29, 0.78) 35%, rgba(20, 39, 29, 0.86) 75%, rgba(20, 39, 29, 0.97) 100%),
    radial-gradient(ellipse at 30% 80%, rgba(142, 59, 47, 0.22), transparent 55%);
  pointer-events: none;
}

/* Grain texture sutil */
.hero__grain {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96  0 0 0 0 0.94  0 0 0 0 0.91  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero__inner {
  position: relative; z-index: 4;
  padding: 8rem 0 6rem;
  max-width: 820px;
}
.hero .display { color: var(--c-cream); }
.hero .display br { display: none; }
@media (min-width: 700px) { .hero .display br { display: inline; } }

.hero__inner .btn { margin-top: 2.4rem; }

/* Cascade de entrada (uma vez no load) */
.hero__eyebrow, .hero__title, .hero__lede, .hero__cta {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero__eyebrow { animation-delay: 200ms; }
.hero__title   { animation-delay: 380ms; }
.hero__lede    { animation-delay: 700ms; }
.hero__cta     { animation-delay: 960ms; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__title, .hero__lede, .hero__cta {
    animation: none; opacity: 1; transform: none;
  }
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  z-index: 4;
}
.hero__scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(245, 241, 232, 0.6));
  animation: scrollNudge 2.4s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ----------- Sections base ----------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--cream { background: var(--c-cream); color: var(--c-ink); }
.section--cream-2 { background: var(--c-cream-2); color: var(--c-ink); }
.section--dark { background: var(--c-green); color: var(--c-cream); }
.section--dark .h1, .section--dark .h2, .section--dark .h3 { color: var(--c-cream); }
.section--dark p { color: rgba(245, 241, 232, 0.85); }
.section--tight { padding-top: clamp(2rem, 5vw, 4rem); }
.section--video { background: var(--c-cream-2); padding: clamp(3.5rem, 7vw, 6rem) 0; }

.section__head {
  max-width: 720px;
  margin: 0 0 3.5rem;
}
.section__head--dark { color: var(--c-cream); }
.section__lede {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--c-stone);
  max-width: 60ch;
  margin: 1.25rem 0 0;
  line-height: 1.75;
}
.section__lede--dark { color: rgba(245, 241, 232, 0.82); }
.section__closing {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: var(--c-green);
  max-width: 56ch;
  margin: 3rem auto 0;
  text-align: center;
  line-height: 1.5;
}
.section--dark .section__closing { color: var(--c-cream); }
.section__cta { margin-top: 2.5rem; text-align: center; }

/* ----------- Cards (Região) ----------- */
.cards { display: grid; gap: 1.5rem; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
  .cards--4, .cards--3 { grid-template-columns: 1fr; gap: 1.2rem; }
}

.card-region {
  background: rgba(245, 241, 232, 0.55);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.card-region:hover {
  background: rgba(245, 241, 232, 0.95);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.card-region:hover .card-region__media img {
  transform: scale(1.06);
}
.card-region__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--c-green);
}
.card-region__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.card-region__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 39, 29, 0.4) 100%);
  pointer-events: none;
}
.card-region__icon {
  position: absolute;
  left: 1rem; bottom: 1rem;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-cream);
  border-radius: 50%;
  color: var(--c-terra);
  z-index: 1;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.3);
}
.card-region__kicker {
  font-family: var(--f-body); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500; color: var(--c-terra);
  margin: 1.6rem 1.75rem 0.75rem;
}
.card-region__title {
  font-family: var(--f-display); font-size: 1.35rem; font-weight: 600;
  color: var(--c-green); margin: 0 1.75rem 0.9rem; line-height: 1.25;
}
.card-region > p { font-size: 0.95rem; color: var(--c-ink); margin: 0 1.75rem 1.75rem; line-height: 1.65; }

/* ----------- Sobre a Fazenda — Story Grid ----------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}
.story-block { padding-left: 1.25rem; border-left: 1px solid rgba(245, 241, 232, 0.25); position: relative; }
.story-block__thumb {
  display: block;
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 1.2rem;
  border: 1px solid rgba(245, 241, 232, 0.2);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.5);
}
.story-block__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.story-block:hover .story-block__thumb img { transform: scale(1.08); }
.story-block__title {
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 600;
  color: var(--c-cream); margin: 0 0 0.8rem;
}
.story-block p { color: rgba(245, 241, 232, 0.78); font-size: 0.95rem; margin: 0; line-height: 1.7; }

/* ----------- Cards Lotes ----------- */
.cards--lotes { gap: 1.25rem; margin-top: 3rem; }
.card-lote {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  padding: 2.5rem 1.75rem 2rem;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.card-lote::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--c-terra);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.card-lote:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card-lote:hover::before { transform: scaleX(1); }
.card-lote--featured {
  background: var(--c-green); color: var(--c-cream);
  border-color: var(--c-green);
}
.card-lote--featured::before { background: var(--c-cream); }
.card-lote--featured .card-lote__size,
.card-lote--featured .card-lote__price strong,
.card-lote--featured .card-lote__desc { color: var(--c-cream); }
.card-lote--featured .card-lote__price { color: rgba(245, 241, 232, 0.7); }
.card-lote--featured .link-arrow { color: var(--c-cream); }
.card-lote--featured .link-arrow:hover { color: var(--c-cream); }

.card-lote__size {
  font-family: var(--f-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400; color: var(--c-green); margin: 0; line-height: 1;
}
.card-lote__size span { font-size: 1.125rem; font-family: var(--f-body); font-weight: 400; opacity: 0.6; margin-left: 0.25rem; }
.card-lote__price {
  font-family: var(--f-body); font-size: 0.875rem; color: var(--c-stone); margin: 0.4rem 0 0;
  letter-spacing: 0.02em;
}
.card-lote__price strong {
  display: block; font-family: var(--f-display); font-size: 1.625rem;
  color: var(--c-green); font-weight: 600; margin-top: 2px;
}
.card-lote__desc {
  color: var(--c-ink); font-size: 0.95rem; margin: 1rem 0 1.5rem; flex: 1;
  line-height: 1.6;
}

/* ----------- Infraestrutura ----------- */
.infra {
  margin-top: 5rem;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  background: var(--c-green);
  color: var(--c-cream);
  border-radius: var(--r-lg);
}
.infra__title { color: var(--c-cream); margin: 0 0 0.6rem; font-weight: 600; }
.infra__lede { color: rgba(245, 241, 232, 0.82); margin: 0 0 2rem; font-size: 1rem; }
.infra__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem 2.5rem;
}
.infra__list li {
  font-size: 0.9rem; color: rgba(245, 241, 232, 0.78); line-height: 1.65;
  border-top: 1px solid rgba(245, 241, 232, 0.16); padding-top: 1rem;
}
.infra__list span {
  display: block; font-family: var(--f-display); font-size: 1.125rem;
  font-weight: 600; color: var(--c-cream); margin-bottom: 0.4rem;
}

/* ----------- Profiles ----------- */
.profiles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; border-top: 1px solid var(--c-line);
}
.profile {
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
}
.profile:nth-child(odd) { padding-left: 0; }
.profile:nth-child(even) { padding-left: 1.5rem; }
@media (min-width: 720px) {
  .profile { padding-left: 1.5rem; }
  .profile:nth-child(3n+1) { padding-left: 0; }
  .profile:nth-child(3n) { border-right: 0; }
}
.profile__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(142, 59, 47, 0.1);
  color: var(--c-terra);
  margin-bottom: 1rem;
}
.profile h3 {
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 600;
  color: var(--c-green); margin: 0 0 0.6rem;
}
.profile p { color: var(--c-ink); margin: 0; font-size: 0.95rem; line-height: 1.65; }

/* ----------- Como chegar ----------- */
.chegar-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
@media (max-width: 900px) { .chegar-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.chegar-text p { color: rgba(245, 241, 232, 0.85); margin: 1.5rem 0; }
.rotas { list-style: none; padding: 0; margin: 2rem 0 1.5rem; display: grid; gap: 1.4rem; }
.rotas li {
  border-top: 1px solid rgba(245, 241, 232, 0.18); padding-top: 1rem;
  font-size: 0.95rem; color: rgba(245, 241, 232, 0.78); line-height: 1.6;
}
.rotas strong {
  display: block; font-family: var(--f-display); font-size: 1.05rem;
  font-weight: 600; color: var(--c-cream); margin-bottom: 0.3rem;
}
.chegar-text .muted { color: rgba(245, 241, 232, 0.55); font-size: 0.85rem; margin-top: 1rem; }

.chegar-map {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-green-2);
  position: relative;
}
.map-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--c-green-2);
  border: 0; padding: 0;
  color: var(--c-cream);
  font-family: inherit;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
  transition: filter var(--t-base);
  overflow: hidden;
  padding: 0;
}
.map-thumb:hover { filter: brightness(1.05); }
.map-thumb:hover .map-thumb__bg img { transform: scale(1.04); }
.map-thumb__bg {
  position: absolute; inset: 0;
  display: block;
  z-index: 0;
}
.map-thumb__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.map-thumb__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 39, 29, 0.45) 0%, rgba(20, 39, 29, 0.75) 100%);
  z-index: 1;
}
.map-thumb__pin {
  color: var(--c-terra);
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
.map-thumb__label {
  font-family: var(--f-body); font-size: 0.8125rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500;
  z-index: 2;
}

/* ----------- FAQ ----------- */
.faq { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--c-line);
  padding: 1.4rem 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--c-line); }
.faq-item summary {
  font-family: var(--f-display); font-size: clamp(1.125rem, 1.5vw, 1.3rem);
  font-weight: 600; color: var(--c-green);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--f-body); font-size: 1.5rem; font-weight: 300;
  color: var(--c-terra);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--c-terra); }
.faq-item p {
  margin: 1rem 0 0; color: var(--c-stone);
  font-size: 0.9375rem; line-height: 1.7;
  max-width: 70ch;
}

/* ----------- Vídeo ----------- */
.yt-embed {
  position: relative;
  display: block; width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-green-2);
  border: 0; border-radius: var(--r-md);
  overflow: hidden; cursor: pointer;
  font-family: inherit; padding: 0;
  transition: transform var(--t-base), box-shadow var(--t-base);
  padding: 0;
}
.yt-embed:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.yt-embed:hover .yt-embed__poster img { transform: scale(1.03); }
.yt-embed__poster {
  position: absolute; inset: 0;
  display: block;
  z-index: 0;
}
.yt-embed__poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.yt-embed::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 39, 29, 0.25) 0%, rgba(20, 39, 29, 0.65) 100%);
  z-index: 1;
}
.yt-embed__caption {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  font-family: var(--f-display); font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic; color: var(--c-cream);
  letter-spacing: 0.01em;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.yt-embed__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

/* ----------- Section backgrounds (foto + overlay) ----------- */
.section { position: relative; isolation: isolate; overflow: hidden; }
.section > * { position: relative; z-index: 2; }

/* Foto de fundo (camada 0) */
.section--bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
/* Overlay (camada 1) — cor varia por modificador */
.section--bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}

/* Variantes cream: overlay creme — leve pra foto aérea respirar atrás */
.section--cream.section--bg::after,
.section--cream-2.section--bg::after {
  background: linear-gradient(180deg, rgba(237,229,213,0.84) 0%, rgba(237,229,213,0.74) 50%, rgba(237,229,213,0.84) 100%);
}
/* Variantes dark: overlay verde para manter clima e contraste */
.section--dark.section--bg::after {
  background: linear-gradient(180deg, rgba(20,39,29,0.72) 0%, rgba(20,39,29,0.50) 40%, rgba(20,39,29,0.82) 100%);
}

/* Imagens por seção — só 3 fotos aéreas limpas, sem texto (mapa-bg é prancha, NÃO usar) */
.section--bg-regiao::before  { background-image: url('../img/hero-aerea-manha.jpg'); }
.section--bg-fazenda::before { background-image: url('../img/aerea-tarde-dourada.jpg'); }
.section--bg-lotes::before   { background-image: url('../img/aerea-neblina-amanhecer.jpg'); }
.section--bg-perfis::before  { background-image: url('../img/hero-aerea-manha.jpg'); background-position: center 60%; }
.section--bg-chegar::before  { background-image: url('../img/aerea-tarde-dourada.jpg'); }
.section--bg-faq::before     { background-image: url('../img/aerea-neblina-amanhecer.jpg'); background-position: center 70%; }

/* ----------- Footer ----------- */
.site-footer {
  background: var(--c-green-2);
  color: var(--c-cream);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2rem; }
}
.footer-brand__top {
  font-family: var(--f-body); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; opacity: 0.65; margin: 0;
}
.footer-brand__main {
  font-family: var(--f-display); font-size: 1.625rem; font-weight: 600;
  color: var(--c-cream); margin: 4px 0 0.6rem; line-height: 1.1;
}
.footer-brand__tag {
  font-size: 0.875rem; color: rgba(245, 241, 232, 0.65); margin: 0;
}
.footer-contact .eyebrow { margin-bottom: 1.2rem; }
.footer-contact__link {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--c-cream); font-size: 0.95rem;
  margin-bottom: 0.8rem;
  background: transparent; border: 0; padding: 0;
  font-family: inherit; cursor: pointer; text-align: left;
}
.footer-contact__link:hover { color: var(--c-cream); opacity: 0.8; }
.footer-contact__link svg { color: var(--c-terra); flex-shrink: 0; }

.footer-meta { font-size: 0.8125rem; color: rgba(245, 241, 232, 0.55); }
.footer-meta p { margin: 0 0 0.5rem; }

/* ----------- Float WhatsApp ----------- */
.float-whats {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.15);
  transition: transform var(--t-base), box-shadow var(--t-base);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-whats svg { width: 32px; height: 32px; display: block; }
.float-whats:hover {
  transform: scale(1.08);
  color: #fff;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 12px 40px 0px rgba(37, 211, 102, 0.7), 0 4px 10px rgba(0,0,0,0.15); }
}

/* ----------- Reveal animations (progressive enhancement) ----------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ----------- Print ----------- */
@media print {
  .site-header, .float-whats, .hero__scroll, .nav-toggle { display: none; }
  .hero { min-height: auto; color: var(--c-ink); }
  .hero__bg, .hero__overlay { display: none; }
  .hero .display, .hero .lede { color: var(--c-ink); }
  .section--dark { background: var(--c-cream); color: var(--c-ink); }
  .section--dark .h1, .section--dark .h2, .section--dark .h3, .section--dark p { color: var(--c-ink); }
}

/* ============================================================
   V2 — Redesign radical (refresh editorial premium)
   ============================================================ */

/* ----------- Ícone de seção ----------- */
.section__icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(31, 58, 46, 0.06);
  color: var(--c-green);
}
.section__head--dark .section__icon {
  background: rgba(245, 241, 232, 0.08);
  color: var(--c-cream);
}
.section__head:not(.section__head--center) .section__icon { margin-left: 0; }

/* Sem borda nos cards de "Conheça a região" */
#regiao .bento-card { border: none; }

/* Layout 3+2 centralizado e distribuído na largura */
#regiao .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; }
#regiao .bento-card { grid-column: span 2; grid-row: span 1; }
#regiao .bento-card:nth-child(4),
#regiao .bento-card:nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) {
  #regiao .bento-card,
  #regiao .bento-card:nth-child(4),
  #regiao .bento-card:nth-child(5) { grid-column: span 2; }
}

/* Foto da sede como background do topo de "Sobre a Fazenda" — fade para o verde */
#fazenda::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: clamp(460px, 62vh, 780px);
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(20,39,29,0.45) 0%, rgba(20,39,29,0.55) 35%, rgba(20,39,29,0.82) 75%, var(--c-green) 100%),
    url('../img/sede-frontal.jpg') center 35% / cover no-repeat;
  pointer-events: none;
}

/* Mapa de lotes como background sutil da seção "Sobre os lotes" */
#lotes::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/mapa-fazenda-bw.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto min(140%, 1400px);
  opacity: 0.18;
  pointer-events: none;
}
#lotes::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(245,241,232,0.4) 0%, rgba(245,241,232,0.05) 35%, rgba(245,241,232,0.05) 65%, rgba(245,241,232,0.5) 100%);
  pointer-events: none;
}

/* Imagem aérea como fundo sutil da seção "Como chegar" */
#chegar::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/aerea-neblina-amanhecer.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
#chegar::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,39,29,0.55) 0%, rgba(20,39,29,0.25) 50%, rgba(20,39,29,0.55) 100%);
  pointer-events: none;
}


/* ----------- Decorações laterais de seção ----------- */
.section .section-deco,
.cta-closer .section-deco {
  --parallax-y: 0px;
  position: absolute;
  width: clamp(360px, 44vw, 580px);
  height: clamp(360px, 44vw, 580px);
  color: var(--c-green);
  opacity: 0.055;
  z-index: 1;
  pointer-events: none;
}
.section--dark .section-deco,
.cta-closer .section-deco { color: var(--c-cream); opacity: 0.085; }
.section-deco--top    { top: clamp(0.5rem, 2vw, 2rem); }
.section-deco--bottom { bottom: clamp(0.5rem, 2vw, 2rem); }
.section-deco--left  { left: -16vw; transform: translateY(var(--parallax-y)) rotate(-14deg); }
.section-deco--right { right: -16vw; transform: translateY(var(--parallax-y)) rotate(14deg); }
.section-deco--bottom.section-deco--left  { transform: translateY(var(--parallax-y)) rotate(12deg); }
.section-deco--bottom.section-deco--right { transform: translateY(var(--parallax-y)) rotate(-12deg); }
@media (max-width: 900px) {
  .section-deco { width: 280px; height: 280px; }
  .section-deco--left  { left: -24vw; }
  .section-deco--right { right: -24vw; }
}
@media (max-width: 600px) {
  .section-deco { display: none; }
}

/* ----------- Curvas orgânicas entre seções ----------- */
.curve-divider {
  position: absolute; left: 0; right: 0;
  width: 100%; height: clamp(40px, 6vw, 90px);
  display: block;
  z-index: 4;
  pointer-events: none;
}
.curve-divider--top { top: -1px; transform: scaleY(-1); }
.curve-divider--bottom { bottom: -1px; }
.curve-divider svg { width: 100%; height: 100%; display: block; }

/* ----------- Stats (within hero) ----------- */
.hero__stats {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: clamp(1.6rem, 3vw, 2.2rem) 0 0;
  border-top: 1px solid rgba(245,241,232,0.18);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  text-align: left;
  max-width: 880px;
}
@media (max-width: 800px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}
.stat__number {
  display: block; font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1;
  font-weight: 400; color: var(--c-cream);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.stat__suffix { font-size: 0.45em; vertical-align: top; margin-left: 0.12em; opacity: 0.7; font-style: italic; }
.stat__label {
  font-family: var(--f-body); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,241,232,0.72);
  margin: 0;
}

/* ----------- Sobre a Fazenda — hero wide + grid + pullquote ----------- */
.fazenda-hero {
  margin: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow-lift);
}
.fazenda-hero img {
  display: block; width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 55%;
  transition: transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fazenda-hero:hover img { transform: scale(1.03); }
.fazenda-hero figcaption {
  position: absolute; left: clamp(1.2rem, 2.5vw, 2rem); bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--f-body); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,241,232,0.85);
  background: rgba(20,39,29,0.55);
  padding: 0.55rem 0.9rem; border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
}
@media (max-width: 700px) {
  .fazenda-hero img { aspect-ratio: 4 / 3; }
}

.fazenda-features {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.8rem, 3vw, 2.6rem) clamp(2rem, 5vw, 4rem);
}
@media (max-width: 760px) {
  .fazenda-features { grid-template-columns: 1fr; gap: 1.8rem; }
}
.fazenda-feature {
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(245,241,232,0.16);
}
.fazenda-feature__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(245,241,232,0.08);
  border: 1px solid rgba(245,241,232,0.18);
  color: var(--c-cream);
  margin-bottom: 0.9rem;
}
.fazenda-feature__icon svg { width: 20px; height: 20px; }
.fazenda-feature h3 {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 600;
  color: var(--c-cream); margin: 0 0 0.45rem; line-height: 1.25;
}
.fazenda-feature p {
  color: rgba(245,241,232,0.78); font-size: 0.92rem; margin: 0; line-height: 1.65;
}

.fazenda-pullquote {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 820px;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(245,241,232,0.92);
  padding: clamp(1.8rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(245,241,232,0.18);
  border-bottom: 1px solid rgba(245,241,232,0.18);
  position: relative;
}
.fazenda-pullquote::before,
.fazenda-pullquote::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245,241,232,0.35);
}
.fazenda-pullquote::before { top: -4px; }
.fazenda-pullquote::after  { bottom: -4px; }

/* ----------- Galeria Sede ----------- */
/* ----------- Media tabs (Fotos / Vídeo) ----------- */
.media-tabs {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(245,241,232,0.1);
  text-align: center;
}
.media-tabs__radio { position: absolute; opacity: 0; pointer-events: none; }
.media-tabs__eyebrow {
  text-align: center;
  margin: 0 0 1.4rem;
  color: rgba(245,241,232,0.65);
  font-family: var(--f-body); font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500;
}
.media-tabs__nav {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(245,241,232,0.08);
  border: 1px solid rgba(245,241,232,0.18);
  margin: 0 auto 2.4rem;
}
.media-tabs__tab {
  cursor: pointer;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-family: var(--f-body); font-size: 0.82rem; letter-spacing: 0.06em;
  color: rgba(245,241,232,0.7);
  transition: background var(--t-fast), color var(--t-fast);
  user-select: none;
}
.media-tabs__tab:hover { color: var(--c-cream); }
#media-fotos:checked ~ .media-tabs__nav .media-tabs__tab[for="media-fotos"],
#media-video:checked ~ .media-tabs__nav .media-tabs__tab[for="media-video"] {
  background: var(--c-cream);
  color: var(--c-green);
}
.media-tabs__pane { display: none; text-align: left; }
#media-fotos:checked ~ .media-tabs__pane--fotos,
#media-video:checked ~ .media-tabs__pane--video { display: block; }
.media-tabs__pane--video {
  max-width: 1000px; margin: 0 auto;
}
.media-tabs__pane--video .yt-embed { width: 100%; }

/* compat layouts antigos que referenciavam sede-gallery */
.sede-gallery { margin: 0; padding: 0; border: 0; }
.sede-gallery__eyebrow { display: none; }
.sede-gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 0.9rem;
}
.sede-gallery__grid > .sede-gallery__item { grid-column: span 2; grid-row: span 1; }
.sede-gallery__grid > .sede-gallery__item:nth-child(4),
.sede-gallery__grid > .sede-gallery__item:nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) {
  .sede-gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
.sede-gallery__item {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  grid-column: span 2;
  background: var(--c-green-2);
  isolation: isolate;
  transition: transform var(--t-base);
}
.sede-gallery__item--lg { grid-column: span 3; grid-row: span 2; }
@media (max-width: 900px) {
  .sede-gallery__item--lg { grid-column: span 2; grid-row: span 1; }
}
.sede-gallery__item:hover { transform: translateY(-3px); }
.sede-gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 800ms cubic-bezier(0.22,0.61,0.36,1);
}
.sede-gallery__item:hover img { transform: scale(1.05); }
.sede-gallery__item figcaption {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2;
  font-family: var(--f-body); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  color: var(--c-cream);
  background: rgba(20,39,29,0.65);
  padding: 0.4rem 0.7rem; border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ----------- Bento Grid (Conheça a região) ----------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}
.bento-card {
  border-radius: var(--r-xl); overflow: hidden;
  position: relative; isolation: isolate;
  background: var(--c-green-2); color: var(--c-cream);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  text-decoration: none;
  border: 1px solid var(--c-line);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.bento-card--photo::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 900ms cubic-bezier(0.22,0.61,0.36,1);
}
/* Imagens específicas por card (relevantes ao conteúdo) */
.bento-card--natureza::before    { background-image: url('../img/aerea-neblina-amanhecer.jpg'); background-position: center 55%; }
.bento-card--clima::before       { background-image: url('../img/stock-neblina-brasa.jpg'); background-position: center 45%; }
.bento-card--temperatura::before { background-image: url('../img/stock-vale-neblina.jpg'); background-position: center 60%; }
.bento-card--gastronomia::before { background-image: url('../img/stock-vinhedo.jpg'); background-position: center 50%; }
.bento-card--cultura::before     { background-image: url('../img/sede-letreiro.jpg'); background-position: center 60%; }
.bento-card--photo:hover::before { transform: scale(1.06); }
.bento-card--photo::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,39,29,0.05) 0%, rgba(20,39,29,0.5) 55%, rgba(20,39,29,0.88) 100%);
}
.bento-card > * { position: relative; z-index: 2; }
.bento-card__icon {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-cream); color: var(--c-terra);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.4);
}
.bento-card__kicker {
  font-family: var(--f-body); font-size: 0.68rem; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500;
  color: rgba(245,241,232,0.75);
  margin: 0 0 0.5rem;
}
.bento-card__title {
  font-family: var(--f-display); font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 600; color: var(--c-cream); margin: 0;
  line-height: 1.2;
}
.bento-card__copy {
  font-size: 0.88rem; color: rgba(245,241,232,0.85); margin: 0.7rem 0 0;
  line-height: 1.55;
}

/* Tamanhos do bento (6 colunas) */
.bento-card--lg     { grid-column: span 4; grid-row: span 2; }
.bento-card--md     { grid-column: span 3; grid-row: span 2; }
.bento-card--sm     { grid-column: span 2; grid-row: span 2; }
.bento-card--wide   { grid-column: span 3; grid-row: span 1; }
.bento-card--tall   { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .bento-card--lg, .bento-card--md, .bento-card--sm,
  .bento-card--wide, .bento-card--tall {
    grid-column: span 2; grid-row: span 1;
  }
}

/* Card stat dentro do bento */
.bento-card--stat {
  background: var(--c-terra);
  color: var(--c-cream);
  text-align: center;
  align-items: center; justify-content: center;
  padding: 2rem 1.5rem;
}
.bento-card--stat:not(.bento-card--photo)::before,
.bento-card--stat:not(.bento-card--photo)::after { display: none; }
.bento-card--stat.bento-card--photo::after {
  background: linear-gradient(180deg, rgba(20,39,29,0.55) 0%, rgba(20,39,29,0.78) 100%);
}
.bento-card__big {
  font-family: var(--f-display); font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400; color: var(--c-cream); line-height: 1;
  margin: 0 0 0.4rem; letter-spacing: -0.02em;
}
.bento-card__big sup { font-size: 0.45em; vertical-align: top; opacity: 0.8; font-style: italic; }
.bento-card--stat .bento-card__title {
  font-size: 0.95rem; font-family: var(--f-body); font-weight: 400;
  letter-spacing: 0.04em; color: rgba(245,241,232,0.92);
}

/* Card cream dentro do bento (alternativa) */
.bento-card--cream {
  background: var(--c-cream);
  border-color: var(--c-line);
}
.bento-card--cream::before, .bento-card--cream::after { display: none; }
.bento-card--cream .bento-card__kicker { color: var(--c-terra); }
.bento-card--cream .bento-card__title { color: var(--c-green); }
.bento-card--cream .bento-card__copy { color: var(--c-ink); }
.bento-card--cream .bento-card__icon { background: var(--c-green); color: var(--c-cream); }

/* ----------- Lotes V2 (cards visuais) ----------- */
.lotes-v2 {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
@media (max-width: 800px) { .lotes-v2 { grid-template-columns: 1fr; } }
.lote-v2 {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative; overflow: hidden;
}
.lote-v2:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-card);
  border-color: rgba(142,59,47,0.35);
}
.lote-v2--featured {
  background: var(--c-green); color: var(--c-cream); border-color: var(--c-green);
}
.lote-v2__badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  font-family: var(--f-body); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 500;
  color: var(--c-cream); background: var(--c-terra);
  padding: 0.35rem 0.7rem; border-radius: 999px; z-index: 2;
}
.lote-v2__visual {
  width: 100%; aspect-ratio: 5 / 3; border-radius: var(--r-md);
  background: rgba(31,58,46,0.05);
  display: flex; align-items: center; justify-content: center;
  position: relative; border: 1px dashed rgba(31,58,46,0.18);
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.lote-v2--featured .lote-v2__visual {
  background: rgba(245,241,232,0.06); border-color: rgba(245,241,232,0.22);
}
.lote-v2__visual svg { width: 50%; height: 50%; opacity: 0.35; color: currentColor; }
.lote-v2__visual-label {
  position: absolute; bottom: 0.5rem; right: 0.7rem;
  font-family: var(--f-body); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.45;
}
.lote-v2__size {
  font-family: var(--f-display); font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--c-green); margin: 0; line-height: 1;
}
.lote-v2--featured .lote-v2__size { color: var(--c-cream); }
.lote-v2__size span { font-size: 0.4em; font-family: var(--f-body); margin-left: 0.25em; opacity: 0.6; }
.lote-v2__price {
  font-size: 0.78rem; color: var(--c-stone); margin: 0;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.lote-v2--featured .lote-v2__price { color: rgba(245,241,232,0.65); }
.lote-v2__price strong {
  display: block; font-family: var(--f-display); font-size: 1.5rem;
  color: var(--c-green); font-weight: 600; margin-top: 0.2rem;
  letter-spacing: -0.01em; text-transform: none;
}
.lote-v2--featured .lote-v2__price strong { color: var(--c-cream); }
.lote-v2__desc { color: var(--c-ink); font-size: 0.9rem; margin: 0; line-height: 1.6; flex: 1; }
.lote-v2--featured .lote-v2__desc { color: rgba(245,241,232,0.85); }
.lote-v2 .link-arrow { margin-top: 0.4rem; }
.lote-v2--featured .link-arrow { color: var(--c-cream); }
.lote-v2--featured .link-arrow:hover { color: var(--c-cream); }

/* Infra strip horizontal abaixo dos lotes */
.infra-v2 {
  margin-top: 3rem;
  background: var(--c-green);
  color: var(--c-cream);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative; overflow: hidden;
}
.infra-v2__head { display: flex; gap: 2rem; align-items: end; flex-wrap: wrap; margin-bottom: 2rem; }
.infra-v2__head h3 { font-family: var(--f-display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 600; margin: 0; color: var(--c-cream); }
.infra-v2__head p { color: rgba(245,241,232,0.78); margin: 0; flex: 1; min-width: 240px; }
.infra-v2__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.infra-v2__list li {
  display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start;
}
.infra-v2__list svg {
  width: 22px; height: 22px; color: var(--c-cream);
  margin-top: 4px; flex-shrink: 0;
  background: rgba(245,241,232,0.14); padding: 10px; border-radius: 50%; box-sizing: content-box;
  border: 1px solid rgba(245,241,232,0.22);
  stroke-width: 1.6;
}
.infra-v2__list strong {
  display: block; font-family: var(--f-display); font-size: 1.05rem;
  font-weight: 600; color: var(--c-cream); margin-bottom: 0.3rem;
}
.infra-v2__list p { font-size: 0.88rem; color: rgba(245,241,232,0.75); line-height: 1.55; margin: 0; }

/* ----------- Profiles V2 (cards) ----------- */
.profiles-v2 {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.profiles-v2 > .profile-v2 { grid-column: span 2; }
.profiles-v2 > .profile-v2:nth-child(4),
.profiles-v2 > .profile-v2:nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) {
  .profiles-v2 { grid-template-columns: repeat(2, 1fr); }
  .profiles-v2 > .profile-v2,
  .profiles-v2 > .profile-v2:nth-child(4),
  .profiles-v2 > .profile-v2:nth-child(5) { grid-column: span 1; }
}
.profile-v2 {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.profile-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.profile-v2__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(142, 59, 47, 0.1);
  color: var(--c-terra);
  margin-bottom: 0.75rem;
}
.profile-v2__icon svg { width: 26px; height: 26px; }
.profile-v2 h3 {
  font-family: var(--f-display); font-size: 1.25rem; font-weight: 600;
  color: var(--c-green); margin: 0 0 0.4rem;
}
.profile-v2 p { color: var(--c-ink); margin: 0; font-size: 0.92rem; line-height: 1.6; }

/* ----------- Como Chegar V2 (Timeline) ----------- */
.chegar-v2 {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start; margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .chegar-v2 { grid-template-columns: 1fr; gap: 2.5rem; }
}
.timeline {
  position: relative; margin: 2rem 0 1rem;
  padding-left: 0;
}
.timeline::before {
  content: ''; position: absolute; left: 9px; top: 12px; bottom: 12px;
  width: 2px; background: rgba(245,241,232,0.2);
}
.timeline-item {
  position: relative; padding-left: 2.4rem; padding-bottom: 1.8rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: 3px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c-terra);
  box-shadow: 0 0 0 5px rgba(142,59,47,0.18);
}
.timeline-item__title {
  display: block; font-family: var(--f-display); font-size: 1.1rem;
  font-weight: 600; color: var(--c-cream); margin-bottom: 0.35rem;
}
.timeline-item__detail {
  font-size: 0.92rem; color: rgba(245,241,232,0.78); line-height: 1.6; margin: 0;
}

/* ----------- CTA Closer ----------- */
.cta-closer {
  background: var(--c-green-2);
  color: var(--c-cream);
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative; overflow: hidden;
  text-align: center; isolation: isolate;
}
.cta-closer::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/sede-varanda-lago.jpg');
  background-size: cover; background-position: center;
  opacity: 0.32;
  animation: kenBurns 30s ease-in-out infinite alternate;
}
.cta-closer::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(22,48,36,0.55) 0%, rgba(22,48,36,0.92) 100%);
}
.cta-closer .container { position: relative; z-index: 2; }
.cta-closer__inner { max-width: 720px; margin: 0 auto; }
.cta-closer__eyebrow { color: rgba(245,241,232,0.7); }
.cta-closer__title {
  font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400; color: var(--c-cream); margin: 0.5rem 0 1.25rem;
  line-height: 1.15; letter-spacing: -0.01em;
}
.cta-closer__lede { font-size: 1.05rem; color: rgba(245,241,232,0.85); margin: 0 0 2rem; max-width: 56ch; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cta-closer__actions { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ----------- Section Head editorial centered ----------- */
.section__head--center { text-align: center; max-width: 720px; margin: 0 auto 0; }
.section__head--center .section__lede { margin-left: auto; margin-right: auto; }

/* Eyebrow centered fix */
.section__head--center .eyebrow { display: inline-block; }

/* ----------- Tweaks legados ----------- */
.section__head { margin-bottom: 1rem; }
.section__lede { max-width: 60ch; }
.section--cream-2 .section__head .h1 { color: var(--c-green); }

/* Footer: bem leve refresh do raio */
.footer-grid { border-bottom-color: rgba(245,241,232,0.1); }

/* ============================================================
   Modal de agendamento de visita
   ============================================================ */
.visit-modal {
  border: 0; padding: 0; margin: auto;
  max-width: min(960px, 96vw);
  width: 100%;
  max-height: 92vh;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-cream);
  color: var(--c-ink);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55), 0 0 0 1px rgba(31,58,46,0.08);
  position: fixed; inset: 0;
}
.visit-modal::backdrop {
  background: rgba(20, 39, 29, 0.7);
  backdrop-filter: blur(6px);
}
.visit-modal[open] {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  animation: visitModalIn 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
  height: min(92vh, 760px);
}
.visit-modal[open] > * { min-height: 0; }
@media (max-width: 820px) {
  .visit-modal[open] {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: min(94vh, 760px);
  }
}
@keyframes visitModalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.visit-modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(245,241,232,0.4);
  background: rgba(20,39,29,0.45);
  color: var(--c-cream);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  backdrop-filter: blur(8px);
}
.visit-modal__close:hover { background: var(--c-terra); border-color: var(--c-terra); transform: scale(1.06); }

/* Coluna esquerda — imagem editorial */
.visit-modal__media {
  position: relative;
  min-height: 380px;
  height: 100%;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-green);
}
@media (max-width: 820px) {
  .visit-modal__media { min-height: 220px; aspect-ratio: 16 / 9; }
}
.visit-modal__media-bg {
  position: absolute; inset: -1px; z-index: 0;
  background-image: url('../img/sede-frontal.jpg');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  transition: transform 6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.visit-modal[open] .visit-modal__media-bg { transform: scale(1); }
.visit-modal__media-overlay {
  position: absolute; inset: -1px; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,39,29,0.35) 0%, rgba(20,39,29,0.55) 60%, rgba(20,39,29,0.85) 100%),
    radial-gradient(ellipse at 30% 90%, rgba(142,59,47,0.25), transparent 60%);
}
.visit-modal__media-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--c-cream);
}
.visit-modal__media-content .eyebrow { color: rgba(245,241,232,0.8); }
.visit-modal__media-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  font-weight: 600;
  margin: 0.6rem 0 1.2rem;
}
.visit-modal__perks {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(245,241,232,0.18);
  padding-top: 1rem;
}
.visit-modal__perks li {
  font-size: 0.85rem;
  color: rgba(245,241,232,0.85);
  line-height: 1.5;
  margin-bottom: 0.45rem;
}
.visit-modal__perks li span {
  color: var(--c-terra);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* Coluna direita — formulário */
.visit-modal__form {
  padding: clamp(1.2rem, 2.4vw, 2rem);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex; flex-direction: column;
  gap: 0.55rem;
  min-height: 0;
  scrollbar-width: thin;
}
.visit-modal__form-head { margin-bottom: 0.2rem; }
.visit-modal__form-head .eyebrow { color: var(--c-terra); }
.visit-modal__title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--c-green);
  margin: 0.25rem 0 0.3rem;
  line-height: 1.2;
}
.visit-modal__subtitle {
  color: var(--c-stone);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.visit-field {
  display: flex; flex-direction: column;
  gap: 0.35rem;
}
.visit-field__label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-stone);
  font-weight: 500;
}
.visit-field__label em {
  font-style: normal; color: var(--c-terra); margin-left: 2px;
}
.visit-field__label em.opt {
  color: var(--c-stone); opacity: 0.7; font-size: 0.85em;
}
.visit-field input,
.visit-field select,
.visit-field textarea {
  font-family: var(--f-body);
  font-size: 0.92rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(31,58,46,0.18);
  background: rgba(255,255,255,0.6);
  color: var(--c-ink);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.visit-field input:focus,
.visit-field select:focus,
.visit-field textarea:focus {
  outline: none;
  border-color: var(--c-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31,58,46,0.12);
}
.visit-field textarea { resize: vertical; min-height: 48px; }
.visit-field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem;
}
@media (max-width: 480px) {
  .visit-field-row { grid-template-columns: 1fr; }
}
.visit-modal__submit {
  margin-top: 0.4rem;
  width: 100%; justify-content: center;
}
.visit-modal__note {
  font-size: 0.72rem;
  color: var(--c-stone);
  text-align: center;
  margin: 0;
  line-height: 1.45;
}

/* Body lock quando modal aberto */
body.modal-open { overflow: hidden; }

/* ----------- CTA inline por seção ----------- */
.section-cta {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2rem);
  max-width: 760px;
  text-align: center;
  border-top: 1px solid rgba(31,58,46,0.14);
  border-bottom: 1px solid rgba(31,58,46,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.section-cta__text {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: var(--c-green);
  margin: 0;
  line-height: 1.35;
}
.section-cta__actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.section-cta--dark {
  border-color: rgba(245,241,232,0.18);
}
.section-cta--dark .section-cta__text { color: var(--c-cream); }
.section-cta--dark .btn--ghost {
  color: var(--c-cream);
  border-color: rgba(245,241,232,0.5);
}
.section-cta--dark .btn--ghost:hover {
  background: var(--c-cream);
  color: var(--c-green);
  border-color: var(--c-cream);
}
@media (max-width: 540px) {
  .section-cta__actions { flex-direction: column; width: 100%; }
  .section-cta__actions .btn { width: 100%; white-space: normal; }
  .section-cta__actions .btn:hover { transform: none; }
  .visit-modal__close {
    background: rgba(20,39,29,0.7);
    border-color: rgba(245,241,232,0.55);
  }
}

/* Foco acessível global em botões e CTAs */
.btn:focus-visible,
.float-whats:focus-visible,
.footer-contact__link:focus-visible,
.visit-modal__close:focus-visible,
.media-tabs__tab:focus-visible {
  outline: 2px solid var(--c-terra);
  outline-offset: 3px;
}
