/* ═══════════════ DEPOIMENTOS EM VÍDEO (CASES DE SUCESSO) ═══════════════ */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.depoimento-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.depoimento-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green);
}

.depoimento-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--bg-elev);
  overflow: hidden;
}
.depoimento-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.depoimento-info { padding: 18px 18px 16px; }

.depoimento-tag {
  display: block;
  text-align: left;
  padding: 0;
  background: none;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.depoimento-quote {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 560px) {
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .depoimento-info { padding: 14px 14px 18px; }
}
