/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* surface: verde-tinted near-white — away from AI cream/sand (hue 60), toward brand hue (142) */
  --off-white:    oklch(96.5% 0.008 142);
  --verde-salvia: oklch(71% 0.038 143);
  --verde-escuro: oklch(42% 0.054 143);
  --dourado:      oklch(74% 0.098 82);
  --branco:       oklch(100% 0 0);
  --serif:        'EB Garamond', Georgia, serif;
  --sans:         'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --transition:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card:    0 16px 40px rgba(78, 98, 74, 0.12);
  --shadow-hover:   0 24px 60px rgba(78, 98, 74, 0.22);
  --radius:         2px;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--verde-escuro);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  font-optical-sizing: auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ============================================================
   ANIMAÇÕES REFINADAS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide lateral para conceito */
.reveal-slide {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal-slide.visible { opacity: 1; transform: translateX(0); }

/* Scale reveal para espaço e galeria */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Scale in para cards (lightbox) */
@keyframes scaleIn {
  from { transform: scale(0.96); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* Linha decorativa animated */
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  background: oklch(96.5% 0.008 142 / 0);
  transition: background 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), padding var(--transition);
}
.nav.scrolled {
  background: oklch(96.5% 0.008 142 / 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  box-shadow: 0 2px 20px oklch(42% 0.054 143 / 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; transition: opacity var(--transition); }
.nav-logo .logo-white { display: block; }
.nav-logo .logo-color { display: none; }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-color { display: block; }

.nav-menu { display: none; gap: 28px; list-style: none; }
.nav-menu a {
  color: var(--off-white);
  font-size: 11px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 300;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--dourado);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--dourado); }
.nav-menu a:hover::after { width: 100%; }
.nav.scrolled .nav-menu a { color: var(--verde-escuro); }

@media (min-width: 900px) { .nav-menu { display: flex; } }

/* Burger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav.scrolled .nav-burger span { background: var(--verde-escuro); }
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .nav-burger { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(80%, 320px);
  height: 100%;
  background: var(--off-white);
  padding: 80px 32px 32px;
  transition: right var(--transition);
  z-index: 101;
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 28px; opacity: 0; transform: translateX(20px); transition: opacity 0.3s ease, transform 0.3s ease; }
.mobile-menu.open li { opacity: 1; transform: none; }
.mobile-menu.open li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open li:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open li:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu a {
  color: var(--verde-escuro);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--dourado); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  color: var(--verde-escuro);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.mobile-menu-close:hover { opacity: 1; }
.menu-overlay {
  position: fixed; inset: 0;
  background: oklch(42% 0.054 143 / 0.45);
  z-index: 98;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(4px);
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   SHARED ELEMENTS
   ============================================================ */
section { padding: 100px 24px; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  color: var(--dourado);
  margin-bottom: 18px;
  font-weight: 300;
}
.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  text-align: center;
  color: var(--verde-escuro);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: balance;
}
.section-intro {
  text-align: center;
  max-width: 60ch;
  margin: 32px auto 0;
  font-size: 17px;
  line-height: 1.8;
  opacity: 0.85;
  text-wrap: pretty;
}

.sep {
  width: 80px; height: 1px;
  background: var(--dourado);
  margin: 0 auto;
  transform-origin: left;
}
.sep.mt-24  { margin-top: 24px; margin-left: 0; }
.sep.sep-y  { width: 120px; margin: 28px auto; }
.sep-anim   { animation: lineGrow 0.8s var(--transition) both; }

.btn {
  display: inline-block;
  padding: 15px 36px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dourado);
  color: var(--dourado);
  background: transparent;
  transition: background var(--transition), color var(--transition), transform 0.2s;
  cursor: pointer;
  border-radius: var(--radius);
}
.btn:hover {
  background: var(--dourado);
  color: var(--verde-escuro);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }
.btn-filled {
  background: var(--verde-escuro);
  color: var(--off-white);
  border-color: var(--verde-escuro);
}
.btn-filled:hover {
  background: var(--dourado);
  color: var(--verde-escuro);
  border-color: var(--dourado);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.88);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(78,98,74,0.35) 0%,
    rgba(78,98,74,0.12) 35%,
    rgba(159,174,154,0.50) 80%,
    rgba(78,98,74,0.88) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  color: var(--off-white);
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroEnter 0.8s var(--ease-out-expo) 0.2s both;
}
.hero .sep {
  opacity: 0;
  animation: heroEnter 0.7s var(--ease-out-expo) 0.4s both;
  background: oklch(96.5% 0.008 142 / 0.7);
}
.hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 7.5vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 24px 0 24px;
  opacity: 0;
  animation: heroEnter 0.9s var(--ease-out-expo) 0.5s both;
  text-wrap: balance;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 2.5vw, 20px);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroEnter 0.8s var(--ease-out-expo) 0.7s both;
  text-wrap: balance;
}
.hero-content .btn {
  opacity: 0;
  animation: heroEnter 0.7s var(--ease-out-expo) 0.85s both;
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.65;
  z-index: 2;
  animation: heroEnter 0.7s var(--ease-out-expo) 1.1s both;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 44px;
  background: var(--off-white);
  margin: 12px auto 0;
  animation: scrollLine 2.2s 2s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ============================================================
   CONCEITO
   ============================================================ */
.conceito { background: var(--off-white); }
.conceito-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-top: 72px;
  align-items: center;
}
@media (min-width: 800px) {
  .conceito-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.conceito-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.conceito-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.conceito-img:hover img { transform: scale(1.03); }
.conceito-img::before,
.conceito-img::after {
  content: '';
  position: absolute;
  width: 64px; height: 64px;
  border: 2px solid var(--dourado);
  z-index: 2;
  transition: width 0.4s ease, height 0.4s ease;
}
.conceito-img::before { top: -14px; left: -14px; border-right: none; border-bottom: none; }
.conceito-img::after  { bottom: -14px; right: -14px; border-left: none; border-top: none; }
.conceito-img:hover::before,
.conceito-img:hover::after { width: 80px; height: 80px; }

.conceito-text h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.conceito-text p { font-size: 17px; line-height: 1.85; margin-bottom: 18px; opacity: 0.9; text-wrap: pretty; max-width: 58ch; }
.conceito-text .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--dourado);
  margin-top: 32px;
}

/* ============================================================
   ESPAÇO
   ============================================================ */
.espaco { background: var(--off-white); }
.espaco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 72px;
}
@media (min-width: 700px) {
  .espaco-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
  }
}
.espaco-item {
  position: relative;
  overflow: hidden;
  background: var(--verde-salvia);
  aspect-ratio: 4/3;
}
@media (min-width: 700px) {
  .espaco-item { aspect-ratio: auto; }
  .espaco-item.big { grid-row: span 2; }
}
.espaco-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.4s ease; }
.espaco-item:hover img { transform: scale(1.05); filter: brightness(0.9); }
.espaco-item.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--verde-salvia);
  z-index: 1;
}
.espaco-item.placeholder::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.espaco-caption {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 3;
  color: var(--off-white);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.espaco-item:hover .espaco-caption { opacity: 1; transform: translateY(0); }
.espaco-item:not(.placeholder) .espaco-caption { opacity: 0.9; transform: none; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos { background: var(--verde-salvia); color: var(--off-white); }
.servicos .section-eyebrow { color: var(--dourado); }
.servicos .section-title   { color: var(--off-white); }
.servicos .section-intro   { color: var(--off-white); opacity: 0.95; }
.servicos .sep.sep-y { background: oklch(96.5% 0.008 142 / 0.4); }

/* Serviços — menu curado (lista, não grid de cards) */
.servicos-lista { margin-top: 64px; }
.servico-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid oklch(96.5% 0.008 142 / 0.2);
}
.servico-row:first-child { border-top: 1px solid oklch(96.5% 0.008 142 / 0.2); }
.servico-row-info h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.2;
  text-wrap: balance;
}
.servico-row-info p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--off-white);
  opacity: 0.7;
  max-width: 520px;
}
.servico-row-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}
.servico-row-side .price {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--off-white);
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 400;
  opacity: 0.85;
}
.servico-thumb {
  width: 96px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
}
.servico-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out-expo), filter 0.4s ease;
  filter: brightness(0.82) saturate(0.8);
}
.servico-row:hover .servico-thumb img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}
@media (max-width: 600px) {
  .servico-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .servico-row-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .servico-thumb { width: 72px; height: 54px; }
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos { background: var(--off-white); }

.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 72px;
}
@media (min-width: 600px) { .produtos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .produtos-grid { grid-template-columns: repeat(3, 1fr); } }

.produto-card {
  position: relative;
  background: var(--branco);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border-radius: var(--radius);
  border: 1px solid rgba(78,98,74,0.08);
}
.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.produto-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: var(--dourado);
  color: var(--off-white);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.produto-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--off-white);
}
.produto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.produto-card:hover .produto-img img { transform: scale(1.05); }
.produto-img-placeholder { width: 100%; height: 100%; background: var(--verde-salvia); opacity: 0.4; }

.produto-body { padding: 24px 20px 28px; }
.produto-marca {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde-salvia);
  margin-bottom: 8px;
  font-weight: 400;
}
.produto-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.produto-body .sep { margin: 12px 0; }
.produto-body p { font-size: 13px; line-height: 1.7; opacity: 0.78; margin-bottom: 16px; }
.produto-preco {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--verde-escuro);
  margin-bottom: 18px;
}
.btn-produto {
  display: block;
  text-align: center;
  padding: 12px 24px;
  font-size: 10px;
  letter-spacing: 2.5px;
}

/* ============================================================
   GALERIA
   ============================================================ */
.galeria { background: var(--off-white); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 72px;
}
@media (min-width: 700px) {
  .galeria-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

.galeria-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  outline: none;
}
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo), filter 0.4s var(--ease-out-quart);
}
.galeria-item:hover img,
.galeria-item:focus-visible img {
  transform: scale(1.07);
  filter: brightness(0.82);
}
.galeria-item::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  pointer-events: none;
}
.galeria-item:hover::after,
.galeria-item:focus-visible::after {
  border-color: var(--dourado);
}

.galeria-item .zoom-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  color: white;
  font-size: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 2;
}
.galeria-item:hover .zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.galeria-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(10, 14, 10, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: lightboxIn 0.3s ease forwards;
}
.lightbox[hidden] { display: none; }
@keyframes lightboxIn {
  to { opacity: 1; }
}
.lightbox-content {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lightboxImg {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(198,167,94,0.3);
  animation: scaleIn 0.35s var(--transition) both;
}
.lightbox-caption {
  color: rgba(242,233,226,0.75);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.5px;
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--off-white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 201;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(242,233,226,0.1);
  border: 1px solid rgba(198,167,94,0.3);
  color: var(--off-white);
  font-size: 32px;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  z-index: 201;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover { background: rgba(198,167,94,0.25); transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { background: rgba(198,167,94,0.25); transform: translateY(-50%) scale(1.1); }

/* ============================================================
   EQUIPE
   ============================================================ */
.equipe { background: var(--off-white); }
.equipe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 72px;
}
@media (min-width: 700px) { .equipe-grid { grid-template-columns: repeat(3, 1fr); } }

.equipe-card { text-align: center; }
.equipe-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  background: var(--verde-salvia);
  position: relative;
  transition: box-shadow var(--transition);
}
.equipe-img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.equipe-card:hover .equipe-img::after { border-color: var(--dourado); }
.equipe-img.placeholder::before {
  content: 'foto';
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.equipe-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.equipe-card:hover .equipe-img img { transform: scale(1.06); }

.equipe-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 8px;
}
.equipe-card .role {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
  font-weight: 400;
}
.equipe-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.78;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { background: var(--verde-escuro); color: var(--off-white); }
.blog-preview .section-eyebrow { color: var(--dourado); }
.blog-preview .section-title   { color: var(--off-white); }
.blog-preview .section-intro   { color: var(--off-white); opacity: 0.85; }
.blog-preview .sep.sep-y       { background: rgba(242,233,226,0.3); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 72px;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: rgba(242,233,226,0.07);
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
  border-radius: var(--radius);
  border: 1px solid rgba(198,167,94,0.2);
}
.blog-card:hover {
  transform: translateY(-6px);
  background: rgba(242,233,226,0.12);
}
.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img--placeholder { width: 100%; height: 100%; background: rgba(159,174,154,0.3); aspect-ratio: 16/9; }

.blog-body { padding: 24px 22px 28px; }
.blog-date {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 10px;
  font-weight: 300;
}
.blog-body h3,
.blog-body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-body h3 a,
.blog-body h2 a { text-decoration: none; color: var(--off-white); transition: color var(--transition); }
.blog-body h3 a:hover,
.blog-body h2 a:hover { color: var(--dourado); }
.blog-body p { font-size: 13px; line-height: 1.7; opacity: 0.75; margin-top: 12px; }
.blog-read-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dourado);
  transition: letter-spacing var(--transition);
}
.blog-read-more:hover { letter-spacing: 4px; }
.blog-cta { text-align: center; margin-top: 52px; }
.blog-cta .btn-filled { background: var(--off-white); color: var(--verde-escuro); border-color: var(--off-white); }
.blog-cta .btn-filled:hover { background: var(--dourado); border-color: var(--dourado); }

/* Archive */
.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .blog-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-archive-grid { grid-template-columns: repeat(3, 1fr); } }

/* Single Post */
.post-header { margin-bottom: 40px; }
.post-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  margin: 16px 0 0;
  color: var(--verde-escuro);
}
.post-thumbnail { margin: 40px 0; overflow: hidden; }
.post-thumbnail img { width: 100%; max-height: 520px; object-fit: cover; }
.post-content {
  font-size: 17px;
  line-height: 1.9;
  color: var(--verde-escuro);
}
.post-content h2 { font-family: var(--serif); font-style: italic; font-size: 28px; margin: 40px 0 16px; }
.post-content h3 { font-family: var(--serif); font-style: italic; font-size: 22px; margin: 32px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--verde-escuro); text-decoration: underline; text-decoration-color: var(--dourado); }
.post-content img { border-radius: var(--radius); margin: 32px auto; }
.post-content blockquote {
  border-left: 2px solid var(--dourado);
  padding: 8px 0 8px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  margin: 32px 0;
  opacity: 0.85;
}
.post-footer { margin-top: 48px; text-align: center; }
.post-nav {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(78,98,74,0.12);
  flex-wrap: wrap;
}
.post-nav-link {
  flex: 1;
  min-width: 200px;
  text-decoration: none;
  color: var(--verde-escuro);
  padding: 20px;
  background: rgba(78,98,74,0.04);
  transition: background var(--transition);
}
.post-nav-link:hover { background: rgba(78,98,74,0.08); }
.post-nav-link span { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dourado); margin-bottom: 8px; }
.post-nav-link strong { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 16px; }
.post-nav-next { text-align: right; }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.local {
  background: var(--verde-escuro);
  color: var(--off-white);
  text-align: center;
  padding: 120px 24px;
}
.local .section-eyebrow { color: var(--dourado); }
.local .section-title   { color: var(--off-white); }
.local .sep.sep-y       { background: rgba(242,233,226,0.3); }

.local-info {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 800px;
}
@media (min-width: 700px) { .local-info { grid-template-columns: 1fr 1fr; } }

.local-info-block h5 {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
  font-weight: 400;
}
.local-info-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
}
.local-cta { margin-top: 52px; }
.local-cta .btn { border-color: var(--off-white); color: var(--off-white); }
.local-cta .btn:hover { background: var(--off-white); color: var(--verde-escuro); }

.local-map {
  margin: 52px auto 0;
  aspect-ratio: 16/9;
  max-width: 900px;
  overflow: hidden;
  border: 1px solid rgba(198,167,94,0.4);
}
.local-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) sepia(0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--off-white);
  padding: 60px 24px 36px;
  text-align: center;
}
.footer-logo { height: 64px; margin: 0 auto 24px; }
.footer-divider { width: 80px; height: 1px; background: var(--dourado); margin: 0 auto 24px; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-social a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--dourado); }
.footer-nav ul { list-style: none; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-nav a { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; opacity: 0.6; transition: opacity var(--transition); }
.footer-nav a:hover { opacity: 1; color: var(--dourado); }
.footer-copy { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.5; }

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
@keyframes waPulse {
  0%   { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 0    rgba(37,211,102,0.35); }
  70%  { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0);    }
  100% { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 0    rgba(37,211,102,0);    }
}
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  background: #25D366;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.8s var(--ease-out-quart) 2s infinite;
}
.wa-float:hover {
  animation: none;
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============================================================
   WP PAGINATION
   ============================================================ */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid rgba(78,98,74,0.2);
  color: var(--verde-escuro);
  transition: background var(--transition), border-color var(--transition);
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--verde-escuro);
  color: var(--off-white);
  border-color: var(--verde-escuro);
}

/* ============================================================
   WP CORE ALIGNMENT UTILITIES
   ============================================================ */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; text-align: center; opacity: 0.65; margin-top: 8px; font-style: italic; }

/* ============================================================
   FOCUS STATES
   ============================================================ */
.nav-menu a:focus-visible {
  color: var(--dourado);
  outline: 2px solid var(--dourado);
  outline-offset: 4px;
}
.nav-logo:focus-visible { outline: 2px solid var(--dourado); outline-offset: 4px; }
.btn:focus-visible { outline: 2px solid var(--dourado); outline-offset: 4px; }
.mobile-menu a:focus-visible { outline: 2px solid var(--verde-escuro); outline-offset: 4px; }
.mobile-menu-close:focus-visible { outline: 2px solid var(--verde-escuro); outline-offset: 2px; }
.footer-social a:focus-visible { color: var(--dourado); outline: 2px solid var(--dourado); outline-offset: 4px; }
.galeria-item:focus-visible { outline: 2px solid var(--dourado); outline-offset: 2px; }

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-eyebrow, .hero .sep, .hero-title,
  .hero-tagline, .hero-content .btn, .hero-scroll {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .hero-scroll::after { animation: none; }
  .wa-float { animation: none !important; }
  .fade-up, .reveal-slide, .reveal-scale {
    opacity: 1 !important; transform: none !important; transition-duration: 0.01ms !important;
  }
  .mobile-menu, .menu-overlay { transition-duration: 0.01ms !important; }
  .mobile-menu li { transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVIDADE EXTRA
   ============================================================ */
@media (max-width: 600px) {
  section { padding: 72px 20px; }
  .local  { padding: 80px 20px; }
  .local-map { aspect-ratio: 4/3; }
}
