body, .depoimentos-section {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(44, 82, 130, 0.25) 0%, rgba(26, 54, 93, 0.18) 40%, rgba(10, 13, 20, 0.95) 100%),
    linear-gradient(135deg, #00296B 0%, #003F88 50%, #00509D 100%);
  color: #fff;
}
.depoimentos-title {
  font-size: 2.3rem;
  background: linear-gradient(90deg, #FFD500 10%, #fff 40%, #FFD500 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  text-align: center;
  text-shadow: 0 2px 12px #FFD50033;
}
.depoimentos-grid {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.depoimento-card {
  background: rgba(255,255,255,0.13);
  border-radius: 18px;
  box-shadow: 0 4px 24px #FFD50022;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  border: 2px solid #FFD50033;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  backdrop-filter: blur(8px);
}
.depoimento-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 32px #FFD50055;
  border-color: #FFD500;
}
.depoimento-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border: 3px solid #FFD500;
  box-shadow: 0 2px 8px #FFD50055;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.depoimento-card:hover .depoimento-avatar {
  box-shadow: 0 4px 24px #FFD50088, 0 0 12px #fff8;
  border-color: #FFD500;
}
.depoimento-nome {
  background: linear-gradient(90deg, #FFD500 10%, #fff 40%, #FFD500 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-top: 0.7rem;
  font-size: 1.05rem;
}
.depoimento-card blockquote {
  font-style: italic;
  color: #00296B;
  margin: 0 0 0.7rem 0;
  font-size: 1.08rem;
} 