/* --- styleDepoimentos.css --- */

/* 1. Container Centralizador */
/* Isso limita a largura total para 1000px e centraliza tudo na tela */
.depo-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 2. Botão de Voltar */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Espaço entre a seta e o texto */
  text-decoration: none;
  color: #6b7280; /* Cor cinza (muted) */
  font-weight: 600;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.btn-back:hover {
  color: #b8892a; /* Fica dourado ao passar o mouse */
}

/* 3. Grade de Depoimentos */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* Espaço entre os cards */
  justify-content: center; /* Centraliza o conteúdo se sobrar espaço */
}

/* 4. O Cartão Individual */
.depo-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.depo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: #b8892a;
}

/* Foto redonda */
.depo-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(184, 137, 42, 0.25);
}

/* Estrelas */
.stars {
  color: #b8892a;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

/* Texto */
.depo-card h3 {
  font-size: 18px;
  color: #0b1220;
  margin-bottom: 10px;
  font-weight: 700;
}

.depo-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7280;
  font-style: italic;
}

/* Responsivo (Celular e Tablet) */
@media (max-width: 900px) {
  .depo-grid {
    grid-template-columns: 1fr; /* Um embaixo do outro */
    max-width: 450px; /* Limita a largura no celular para não ficar gigante */
    margin: 0 auto; /* Garante que fica no centro */
  }
}