/* ============================================================
   DEPOIMENTOS - componente de cards de avaliação
   Usado na página depoimentos.html e na seção-resumo da Home
   ============================================================ */

.testi-intro-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(9,31,91,.14);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  margin-bottom: 8px;
}
.section-navy .testi-intro-badge{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: var(--white);
}
.testi-intro-badge svg{ width: 18px; height: 18px; flex-shrink: 0; }

.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 46px;
}
@media (max-width: 900px){
  .testi-grid{ grid-template-columns: 1fr; }
}

.testi-card{
  background: var(--white);
  border-radius: 4px;
  padding: 34px 32px 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section-navy .testi-card{ box-shadow: none; }

.testi-quote-icon{
  width: 30px;
  height: 24px;
  color: var(--taupe);
  opacity: .8;
  margin-bottom: 14px;
}

.testi-rating{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.testi-stars{
  color: var(--taupe);
  font-size: 1rem;
  letter-spacing: 3px;
}
.testi-score{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
}

.testi-text{
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.68;
  flex-grow: 1;
  margin-bottom: 20px;
}
/* Garante contraste do texto do card mesmo dentro de seção com fundo azul,
   onde a regra global ".section-navy p" (mais específica que ".testi-text"
   sozinha) forçaria a cor branca sobre o card branco. */
.section-navy .testi-card .testi-text{ color: var(--ink); }
.section-navy .testi-card .testi-meta{ color: var(--ink-soft); }

.testi-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(9,31,91,.1);
  gap: 12px;
}
.testi-person{ display: flex; align-items: center; gap: 12px; }
.testi-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  flex-shrink: 0;
}
.testi-name{ font-weight: 600; font-size: .9rem; color: var(--ink); display: block; }
.testi-meta{ font-size: .78rem; color: var(--ink-soft); }

.testi-google-tag{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}
.testi-google-tag svg{ width: 14px; height: 14px; }

.testi-cta-row{
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}

/* ---- Página Depoimentos: bloco de avaliação geral ---- */
.testi-summary{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.testi-summary-score{
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.testi-summary-stars{
  color: var(--taupe-light);
  font-size: 1.6rem;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 6px;
}
.testi-summary-count{
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
