/* ─── ABERTURA ───────────────────────────────────────────────────────────── */
.abertura {
  background: #FEFCF9;
  padding: clamp(90px, 14vh, 160px) 24px;
}
.abertura__titulo {
  font-family: 'MyriadPro-Display', sans-serif;
  font-size: var(--h1);
  font-weight: 500;
  line-height: 1.14;
  color: #1C1C1A;
  margin-bottom: 52px;
}
.abertura__titulo em {
  font-style: italic;
  color: #1A4A3A;
}
.abertura__corpo p {
  font-family: 'MyriadPro', sans-serif;
  font-size: var(--body);
  font-weight: 300;
  line-height: 1.9;
  color: #3A3A37;
  margin-bottom: 30px;
}
.destaque-editorial {
  font-family: 'MyriadPro-Heading', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  color: #1A4A3A;
  line-height: 1.45;
  padding: 0 0 0 36px;
  border-left: 3px solid #C9A84C;
  margin: 60px 0;
  quotes: none;
}

/* ─── MUDANÇA 2025 ───────────────────────────────────────────────────────── */
.mudanca {
  background: #EBF4EF;
  padding: clamp(90px, 14vh, 160px) 24px;
}
.mudanca__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
@media (max-width: 780px) {
  .mudanca__grid { grid-template-columns: 1fr; }
}
.mudanca__foto-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 80px rgba(26,74,58,0.12);
}
.mudanca__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.mudanca__foto-wrap:hover .mudanca__foto {
  transform: scale(1.04);
}
.mudanca__titulo {
  font-family: 'MyriadPro-Heading', sans-serif;
  font-size: var(--h2);
  font-weight: 500;
  line-height: 1.18;
  color: #1C1C1A;
  margin-bottom: 40px;
}
.mudanca__titulo em {
  font-style: italic;
  color: #1A4A3A;
  display: block;
}
.bloco-legal {
  background: #FEFCF9;
  border-left: 3px solid #1A4A3A;
  border-radius: 0 6px 6px 0;
  padding: 30px 34px;
}
.bloco-legal__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D6B52;
  margin-bottom: 22px;
}
.bloco-legal p {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3A3A37;
  margin-bottom: 18px;
}
.bloco-legal p:last-child { margin-bottom: 0; }
.bloco-legal strong {
  font-weight: 500;
  color: #1A4A3A;
}
