/* ─── OBJEÇÕES ───────────────────────────────────────────────────────────── */
.objecoes {
  background: #FEFCF9;
  padding: clamp(90px, 14vh, 160px) 24px;
}
.acc {
  border-top: 1px solid rgba(26,74,58,0.12);
  margin-top: 56px;
}
.acc__item {
  border-bottom: 1px solid rgba(26,74,58,0.12);
}
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.acc__btn span {
  font-family: 'MyriadPro-Heading', sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 500;
  color: #1C1C1A;
  line-height: 1.3;
}
.acc__seta {
  width: 22px;
  height: 22px;
  color: #2D6B52;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}
.acc__item.aberto .acc__seta {
  transform: rotate(180deg);
}
.acc__painel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.acc__painel p {
  font-family: 'MyriadPro', sans-serif;
  font-size: var(--body);
  font-weight: 300;
  color: #3A3A37;
  line-height: 1.85;
  padding-bottom: 30px;
}
