/* ==========================================================================
   TESTIMONIALS — assets/css/sections/testimonials.css
   SENV Theme · Grid de depoimentos de clientes
   ========================================================================== */

.senv-testimonials {
  background-color: #0d0b0a;
  padding: var(--senv-section-gap, 80px) 0;
  border-top: 1px solid rgba(184, 146, 74, 0.08);
}

.senv-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

/* Card de depoimento */
.senv-testimonial-card {
  margin: 0;
  padding: 32px;
  background-color: rgba(184, 146, 74, 0.04);
  border: 1px solid rgba(184, 146, 74, 0.12);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.senv-testimonial-card:hover {
  border-color: rgba(184, 146, 74, 0.28);
  background-color: rgba(184, 146, 74, 0.07);
}

/* Estrelas */
.senv-testimonial-card__stars {
  font-size: 14px;
  color: var(--senv-gold);
  letter-spacing: 3px;
}

/* Texto */
.senv-testimonial-card__text {
  font-family: var(--senv-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--senv-nude);
  margin: 0;
  flex: 1;
  font-style: italic;
}

/* Autor */
.senv-testimonial-card__author {
  font-family: var(--senv-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(226, 201, 176, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .senv-testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
