/* ─────────────────────────────────────────
   MANHANINI — DEPOIMENTOS
   ───────────────────────────────────────── */

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

.depoimentos::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.depoimentos__header {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.depoimentos__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.depoimentos__title em {
  font-style: italic;
  color: var(--gold);
}

.depoimentos__sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.70;
}

.depoimentos__rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.depoimentos__stars-big { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
.depoimentos__rating-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.depoimentos__rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.depoimentos__rating-count {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.40);
}
.depoimentos__rating-source {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gold);
  opacity: 0.70;
}

.depoimentos__grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.depo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.depo-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,175,55,0.20);
}

.depo-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

.depo-card__quote {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  flex: 1;
  position: relative;
  padding-top: 20px;
}
.depo-card__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: -8px;
  left: -4px;
  line-height: 1;
}

.depo-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}
.depo-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-faint);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.depo-card__info { display: flex; flex-direction: column; gap: 2px; }
.depo-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: white;
}
.depo-card__context {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 1023px) { .depoimentos__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .depoimentos__grid { grid-template-columns: 1fr; } }
