/* ============================================================
   VILLA MANTOVA — Landing Page
   Sistema visual: verde-oliva + cream + dourado, sans-serif
   ============================================================ */

:root {
  --ink:        #2c2c26;
  --ink-soft:   #5e5e53;
  --ink-faint:  #8a8a7e;
  --paper:      #ffffff;
  --cream:      #f6f2e9;
  --cream-deep: #efe9da;

  --green-900: #2c3620;
  --green-800: #3a4727;
  --green-700: #4d5c32;
  --green-600: #62733f;
  --green-500: #768a4d;

  --gold:      #b4904f;
  --gold-soft: #c7a868;
  --gold-tint: #f1e7d3;

  --line:      rgba(44, 54, 32, .14);
  --line-soft: rgba(44, 54, 32, .08);

  --shadow-sm: 0 2px 10px rgba(44, 54, 32, .06);
  --shadow-md: 0 14px 40px rgba(44, 54, 32, .12);
  --shadow-lg: 0 30px 70px rgba(28, 36, 18, .18);

  --maxw: 1200px;
  --r:    14px;

  --font-display: 'Jost', system-ui, sans-serif;
  --font-body:    'Mulish', system-ui, sans-serif;

  /* tweakable accent — defaults to gold */
  --accent:      var(--gold);
  --accent-soft: var(--gold-soft);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--ink);
}

p { margin: 0; text-wrap: pretty; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(72px, 9vw, 130px) 0; }

/* ---------- Shared atoms ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .74rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 4px;
}

.title {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  letter-spacing: -0.015em;
}
.title .accent { color: var(--accent); }

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { margin-left: 0; }

.section-head { max-width: 680px; margin: 0 auto 60px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: .96rem;
  letter-spacing: .04em;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(180, 144, 79, .32);
}
.btn-primary:hover { background: var(--green-800); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: #fff; color: var(--green-800); border-color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 74px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-cta .btn { padding: 12px 24px; font-size: .9rem; }

/* Instagram Brand Icon styling */
.instagram-circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff !important;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 10px rgba(214, 36, 159, 0.2);
  flex-shrink: 0;
}
.instagram-circle-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(214, 36, 159, 0.35);
  color: #fff !important;
}
.instagram-circle-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green-800);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 86px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
}
.hero-shade {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(22,28,14,.92) 0%, rgba(22,28,14,.74) 40%, rgba(22,28,14,.46) 70%, rgba(22,28,14,.24) 100%),
    linear-gradient(0deg, rgba(22,28,14,.7) 0%, rgba(22,28,14,.1) 32%, rgba(22,28,14,0) 55%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 720px; padding: 40px 0; }

.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }

.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--gold-soft); }

.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: 1.22rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 18px;
}
.hero-fine {
  color: rgba(255,255,255,.62);
  font-size: 1rem;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color .25s ease;
}
.scroll-hint:hover {
  color: #fff;
}
.scroll-hint .line { width: 1px; height: 40px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrollpulse 2.2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   AUTHORITY BAND
   ============================================================ */
.authority {
  background: var(--green-800);
  color: #fff;
  padding: 56px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%);
  height: 56px; width: 1px;
  background: rgba(255,255,255,.16);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #fff;
  line-height: 1;
}
.stat-num span { color: var(--gold-soft); }
.stat-label {
  margin-top: 12px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}

/* ============================================================
   HISTÓRIA
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.1rem; }
.story-copy .pull {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 30px 0;
  padding-left: 22px;
  border-left: 2px solid var(--accent);
}
.story-media { position: relative; }
.story-media .img-main {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.story-media .img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-media .badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  max-width: 230px;
}
.story-media .badge .b-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--green-700); }
.story-media .badge .b-txt { font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }

/* ============================================================
   O ESPAÇO — cards
   ============================================================ */
.espaco { background: var(--cream); }
.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.space-card {
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.space-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.space-card .card-img { aspect-ratio: 16/10; overflow: hidden; }
.space-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.space-card:hover .card-img img { transform: scale(1.05); }
.space-card .card-body { padding: 28px 30px 32px; }
.space-card .card-rule {
  width: 38px; height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
  border-radius: 2px;
}
.space-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.space-card p { color: var(--ink-soft); font-size: 1.02rem; }

.space-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   POR QUE / PARA QUEM — checklist + media
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.reverse .split-media { order: -1; }

.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 4px; }
.checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.08rem;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: none; }
.check-mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: grid; place-items: center;
  margin-top: 1px;
}
.check-mark svg { width: 14px; height: 14px; }

.split-media img {
  width: 100%;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.note-box {
  margin-top: 36px;
  background: var(--gold-tint);
  border-radius: var(--r);
  padding: 26px 30px;
  border: 1px solid rgba(180,144,79,.25);
}
.note-box strong { font-family: var(--font-display); font-weight: 500; color: var(--green-800); }
.note-box p { color: var(--ink-soft); }
.note-box .hl { color: var(--green-800); font-weight: 700; }

/* ============================================================
   O QUE VOCÊ VAI TER
   ============================================================ */
.vaiter { background: var(--cream); }

/* ============================================================
   TIPOS DE EVENTO
   ============================================================ */
.eventos {
  position: relative;
  color: #fff;
  background: var(--green-900);
  overflow: hidden;
}
.eventos-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.eventos-head .eyebrow { color: var(--gold-soft); }
.eventos-head h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.eventos-head p { color: rgba(255,255,255,.72); margin-top: 18px; font-size: 1.12rem; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.event-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background .3s ease, transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  height: 100%;
}
.event-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.event-card .ev-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.event-card .ev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.event-card:hover .ev-img img {
  transform: scale(1.08);
}
.event-card .ev-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(44, 54, 32, 0.85);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(199, 168, 104, 0.3);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.event-card .ev-content {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-card h4 { color: #fff; font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
.event-card p { color: rgba(255,255,255,.68); font-size: 0.9rem; line-height: 1.5; }

/* Review section centered more reviews button */
.reviews-more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   PROCESSO — timeline
   ============================================================ */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 50px;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 33px; left: 8%; right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 66px; height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.step:hover .step-num { background: var(--green-700); color: #fff; transform: scale(1.06); }
.step h4 { font-size: 1.18rem; font-weight: 400; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { background: var(--cream); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.depo-card {
  background: var(--paper);
  border-radius: var(--r);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  position: relative;
}
.depo-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: .6;
  color: var(--gold-soft);
  opacity: .5;
}
.depo-card p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--ink);
  margin-top: 8px;
}
.depo-card .depo-author {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-weight: 500;
}
.stars { color: var(--gold); letter-spacing: 3px; margin-top: 12px; font-size: 1rem; }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.gscore {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.gscore .g-logo { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .04em; margin-bottom: 14px; color: var(--ink-soft); }
.gscore .g-num { font-family: var(--font-display); font-size: 3.6rem; font-weight: 300; color: var(--ink); line-height: 1; }
.gscore .stars { justify-content: center; }
.gscore .g-count { font-size: .9rem; color: var(--ink-faint); margin-top: 10px; }

.review-list { display: grid; gap: 22px; }
.review {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
}
.review .stars { margin-top: 0; margin-bottom: 12px; font-size: .9rem; }
.review p { color: var(--ink); font-size: 1.08rem; line-height: 1.6; }
.review .r-author { margin-top: 14px; font-family: var(--font-display); color: var(--green-700); font-weight: 500; letter-spacing: .02em; }

/* ============================================================
   GALERIA
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 50px;
}
.g-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.g-item:hover img { transform: scale(1.07); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,34,18,.35), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.g-item:hover::after { opacity: 1; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--ink);
}
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  transition: background .3s, border-color .3s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--green-700);
  transition: transform .3s, background .3s;
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon { background: var(--green-700); border-color: var(--green-700); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 0 26px; color: var(--ink-soft); font-size: 1.06rem; max-width: 680px; }

.faq-foot { text-align: center; margin-top: 50px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final .cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-final .cta-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(22,28,14,.82), rgba(22,28,14,.82)); }
.cta-final .wrap { position: relative; z-index: 2; }
.cta-final .eyebrow { color: var(--gold-soft); }
.cta-final .eyebrow::before { background: var(--gold-soft); }
.cta-final h2 { color: #fff; font-size: clamp(2.3rem, 5vw, 4rem); max-width: 800px; margin: 0 auto 22px; }
.cta-final p { color: rgba(255,255,255,.82); font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }
.cta-final .hero-actions { justify-content: center; }

/* ============================================================
   MAPA
   ============================================================ */
.map-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: 460px;
  background: var(--cream-deep);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img { height: 90px; width: auto; border-radius: 10px; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.6); }
.footer h5 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  color: var(--gold-soft);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a, .footer ul li { color: rgba(255,255,255,.72); font-size: .98rem; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  text-align: center;
  font-size: .86rem;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,24,14,.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 26px; right: 32px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; font-family: var(--font-display); font-weight: 200; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; cursor: pointer; padding: 0 22px; user-select: none; opacity: .7; transition: opacity .2s; font-family: var(--font-display); font-weight: 200; }
.lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-prev { left: 10px; }
.lightbox .lb-next { right: 10px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Content is visible by default. Entrance animation is opt-in via html.anim,
   added by JS only when the animation clock is confirmed running — so frozen
   preview/print/screenshot contexts always show content. */
.reveal { opacity: 1; transform: none; }
html.anim .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
html.anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.anim .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-track::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gscore { max-width: 320px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-media .badge { left: 0; bottom: -20px; }
  .space-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .events-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding-bottom: 60px;
  }
  .scroll-hint {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 30px auto 0;
  }
}

/* ============================================================
   POPUP DE PRIVACIDADE
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 54, 32, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.popup-card {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.popup-overlay.open .popup-card {
  transform: scale(1);
}
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  background: #ffffff;
}
.popup-logo {
  height: 52px;
  width: auto;
}
.popup-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-faint);
  transition: color 0.2s;
  padding: 0 4px;
}
.popup-close:hover {
  color: var(--ink);
}
.popup-body {
  padding: 28px 28px 36px;
  overflow-y: auto;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.popup-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.popup-subtitle {
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.popup-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin: 28px 0 10px;
}
.popup-body p {
  margin-bottom: 14px;
}
.popup-body ul {
  padding-left: 20px;
  margin: 0 0 18px;
}
.popup-body li {
  margin-bottom: 6px;
}
