/* Depoimentos e criadores: extensão isolada da identidade visual existente. */
.testimonials-heading,
.creators-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 48px;
}
.testimonials-heading h2,
.creators-heading h2 { max-width: 20ch; }
.testimonials-heading > p,
.creators-heading > p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.testimonials-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.testimonials-video { min-width: 0; margin: 0; }
.testimonials-player {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark);
}
.testimonials-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.testimonials-video-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 16px;
}
.testimonials-video-caption strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.testimonials-video-caption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.testimonials-prints { display: grid; gap: 32px; }
.testimonials-print { margin: 0; min-width: 0; }
.testimonials-print-caption { margin-top: 16px; }
.testimonials-print-caption strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: -.02em;
}
.testimonials-print-caption p {
  max-width: 78ch;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.testimonials-shot {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 180ms ease;
}
.testimonials-shot:hover { border-color: var(--lime-dark); }
.testimonials-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.testimonials-print-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}
.testimonials-print-stack { display: grid; gap: 32px; }
.testimonials-notes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}
.testimonials-notes p { margin: 0; }
.creators-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}
.creators-profile {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 24px;
  min-width: 0;
}
.creators-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dark);
}
.creators-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.creators-identity h3 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.creators-identity p {
  margin: 0;
  color: var(--lime-dark);
  font-size: 14px;
  font-weight: 700;
}
.creators-biography { color: var(--muted); font-size: 16px; line-height: 1.75; }
.creators-biography p { margin: 0; }
.creators-biography p + p { margin-top: 16px; }
.creators-biography strong { color: var(--ink); font-weight: 650; }
.creators-achievement { min-height: 136px; padding-top: 24px; border-top: 1px solid var(--line); }
.creators-achievement > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lime-dark);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.creators-achievement p { max-width: 48ch; margin: 0; color: var(--muted); font-size: 14px; }
.creators-expertise { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.creators-closing {
  max-width: 72ch;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 20px;
  line-height: 1.65;
}
.creators-closing strong { color: var(--lime-dark); font-weight: 650; }
@media (max-width: 900px) {
  .testimonials-heading,
  .creators-heading { gap: 32px; margin-bottom: 36px; }
  .testimonials-heading > p,
  .creators-heading > p { font-size: 15px; }
  .testimonials-videos { gap: 20px; }
  .testimonials-video-caption strong { font-size: 16px; }
  .creators-grid { gap: 32px; }
  .creators-biography { font-size: 15px; }
}
@media (max-width: 680px) {
  .testimonials-heading,
  .creators-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .testimonials-heading > p,
  .creators-heading > p { max-width: 50ch; font-size: 15px; }
  .testimonials-videos { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .testimonials-video-caption { margin-top: 12px; }
  .testimonials-prints,
  .testimonials-print-stack { gap: 28px; }
  .testimonials-print-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonials-print-caption { margin-top: 12px; }
  .testimonials-print-caption strong { font-size: 17px; }
  .testimonials-notes { display: grid; gap: 8px; font-size: 11px; }
  .creators-grid { grid-template-columns: 1fr; gap: 48px; }
  .creators-profile { gap: 20px; }
  .creators-photo { border-radius: 12px; }
  .creators-identity h3 { font-size: 28px; }
  .creators-biography { font-size: 15px; }
  .creators-achievement { min-height: 0; padding-top: 20px; }
  .creators-achievement > strong { font-size: 32px; }
  .creators-closing { margin-top: 40px; padding-top: 24px; font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-shot { transition: none; }
}
