/* ─── PAUSA VISUAL ───────────────────────────────────────────────────────── */
.pausa-visual {
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
}
.pausa-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ─── DEPOIMENTOS ────────────────────────────────────────────────────────── */
.depoimentos {
  background: #F7F3EE;
  padding: clamp(90px, 14vh, 160px) 24px;
}
.deps-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 22px;
  margin-bottom: 72px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .deps-grid { grid-template-columns: 1fr; }
}
.dep {
  background: #FEFCF9;
  border: 1px solid rgba(26,74,58,0.1);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.dep--destaque {
  background: #EBF4EF;
  border-color: rgba(26,74,58,0.22);
  padding: 44px 38px;
}
.dep__aspas {
  font-family: 'MyriadPro-Display', sans-serif;
  font-size: 4rem;
  line-height: 0.5;
  color: #2D6B52;
  opacity: 0.35;
  margin-bottom: 16px;
}
.dep--destaque .dep__aspas { opacity: 0.55; }
.dep__texto {
  font-family: 'MyriadPro', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.78;
  color: #3A3A37;
  flex: 1;
  margin-bottom: 28px;
}
.dep__autora {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dep__inicial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1A4A3A;
  color: #8DCFAD;
  font-family: 'MyriadPro-Display', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dep__autora strong {
  display: block;
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1C1C1A;
}
.dep__autora span {
  display: block;
  font-family: 'MyriadPro', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #6A6A65;
}
.dep-foto-wrap {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/8;
}
.dep-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
