/* ─── CLOSING ────────────────────────────────────────────────────────────── */
.closing {
  position: relative;
  height: 72svh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.closing__img-wrap {
  position: absolute;
  inset: 0;
}
.closing__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.closing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,12,0.50) 0%, rgba(8,18,12,0.72) 100%);
}
.closing__corpo {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

/* ── Marca visual no closing ── */
.closing__brand-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.closing__brand-ico {
  width: clamp(72px, 10vw, 100px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.36));
}
.closing__brand-linha {
  width: clamp(60px, 12vw, 160px);
  height: 2.5px;
  background: linear-gradient(90deg, rgba(201,168,76,0) 0%, #C9A84C 50%, rgba(201,168,76,0) 100%);
  border-radius: 2px;
  margin-top: 18px;
}

.closing__titulo {
  font-family: 'MyriadPro-Display', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 5.8rem);
  font-weight: normal;
  color: #FEFCF9;
  line-height: 1.12;
  margin-bottom: 18px;
}
.closing__titulo em {
  font-style: italic;
  color: #B8DFC8;
}
.closing__texto {
  font-family: 'MyriadPro', sans-serif;
  font-size: var(--lead);
  font-weight: 300;
  color: rgba(254,252,249,0.68);
  margin-bottom: 40px;
}
