/* =========================================
   Testimonials • Cards refinados
========================================= */

.testimonials h2.center{
  margin-bottom: 36px;     /* espaço maior abaixo do título */
}

/* trilho dos cards */
.testimonials .testimonial-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;               /* mais respiro entre cards */
  margin-top: 20px;
}

/* card */
.testimonials .testimonial{
  margin: 0;
  padding: 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: transform .25s;
}
.testimonials .testimonial:hover{
  transform: translateY(-4px);
}

/* texto */
.testimonial blockquote{
  margin: 0 0 16px;
  color: #f1e8ea;
  line-height: 1.7;
  font-size: clamp(16px, 2.2vw, 18px);
  text-align: left;
}

/* rodapé (autor) */
.testimonial figcaption{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-weight: 600;
  color: #ffd6a2;
}

/* avatar circular */
.testimonial figcaption .avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

/* responsivo */
@media (max-width: 1024px){
  .testimonials .testimonial-track{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px){
  .testimonials .testimonial-track{
    grid-template-columns: 1fr;
  }
  .testimonials .testimonial{
    padding: 22px;
  }
}
