/* Estilo sección de reseñas */
.reseñas {
  padding: 30px 5% 50px 5%; 

  font-family: "Century Gothic", Helvetica, Arial, sans-serif;
}

.reseñas-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;

}

.boton-azul {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
text-decoration: none
}

.boton-azul:hover {
  background: #0c5bd5;
}

.reseña-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reseña-nombre {
  font-weight: bold;
  color: #333;
}

.reseña-fecha {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 10px;
}

.reseña-texto {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.4;
}

.reseña-estrellas {
  color: #FFD700;
  font-size: 1.2em;
}
