/* ======================================================
   depoimentos.css — Seção Depoimentos
   Responsável: Igor
====================================================== */

.depoimentos {
  background: var(--cor-medio);
  padding: 100px 20px;
  
}

.depoimentos .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== CARD ===== */
.depoimento-card {
  background: var(--cor-branco);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(139, 78, 68, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease, translate 0.6s ease;
  opacity: 0;
  translate: 0 30px;
}
.depoimento-card.visivel {
  opacity: 1;
  translate: 0 0;
}
.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(139, 78, 68, 0.15);
}

/* ===== ESTRELAS ===== */
.depoimento-estrelas {
  color: var(--cor-destaque);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ===== TEXTO ===== */
.depoimento-texto {
  font-size: 0.97rem;
  color: var(--cor-escuro);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== AUTOR ===== */
.depoimento-autor-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.depoimento-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cor-destaque);
  flex-shrink: 0;
}
.depoimento-autor {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cor-principal);
}

/* ===== RESPONSIVO — 768px ===== */
@media (max-width: 768px) {
  .depoimentos-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; }
  .depoimento-card { padding: 24px 20px; }
  .depoimento-texto { font-size: 0.92rem; }
}

/* ===== RESPONSIVO — 480px ===== */
@media (max-width: 480px) {
  .depoimentos-grid { max-width: 100%; }
}