.faq-title h1 {
  text-align: center;
  margin: 0;
  margin-top: 10px;
  font-size: 36px;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
  background-color: transparent;
}

.testimonio-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
}

.testimonio-card h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonio-card .comentario {
  font-style: italic;
  font-size: 16px;
  margin-bottom: 15px;
}

.testimonio-card .estrellas {
  font-size: 20px;
  color: #f5c518; 
}

.ver-mas-comentarios {
  display: block;
  text-align: center;
  margin: 30px 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 20px;
  color: #007bff;       
  text-decoration: underline;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.ver-mas-comentarios:hover {
  color: #0056b3;      
}
