/* ─────────────────────────────────────────
   TASA V2 — DEPOIMENTO
   Quote massiva em dark section
   ───────────────────────────────────────── */

.depoimento {
  background: var(--ink-mid);
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}

/* Decoração de fundo */
.depoimento::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: -10px;
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(201,164,76,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.depoimento__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.depoimento__stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.depoimento__stars svg {
  color: var(--gold);
}

.depoimento__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.depoimento__rule {
  width: 40px;
  height: 1px;
  background: var(--gold-line);
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.depoimento__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.depoimento__author-name {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: white;
}

.depoimento__author-source {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .depoimento__inner { gap: 28px; padding-inline: 0; }
  .depoimento__quote { font-size: clamp(1.15rem, 5vw, 1.6rem); }
  .depoimento::before { font-size: 14rem; top: -20px; left: -20px; }
}

@media (max-width: 480px) {
  .depoimento__inner { gap: 20px; }
  .depoimento__author { flex-direction: column; text-align: center; gap: 8px; }
}
