.reviews-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.reviews-section p,
.reviews-section h1,
.reviews-section h2,
.reviews-section h3,
.reviews-section h4,
.reviews-section span,
.reviews-section div {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.reviews-section .rating {
  font-size: 82px;
  font-weight: bold;
  color: #f3c621;
  text-align: center;
}

.reviews-section .rating span {
  font-size: 18px;
  color: #111;
}

.reviews-section .total-stars {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 30px;
  color: #f3c621;
  text-align: center;
}

.reviews-section .total-reviews {
  margin-bottom: 20px;
  font-size: 12px;
  text-align: center;
}

.bar-review {
  display: flex;
  align-items: center;
  font-size: 14px;
  width: 100%;
}

.bar-review .bar-review-star {
  font-size: 24px;
  padding-left: 5px;
  color: #f3c621;
}

.bar-review progress {
  appearance: none;
  width: 100%;
  height: 14px;
  margin: 0 20px;
  background-color: #d8d8d8;
  border-radius: 8px;
}

/* Estilizando a parte preenchida (progresso) no Firefox */
.bar-review progress[value]::-moz-progress-bar {
  background-color: #f3c621;
}

/* Estilizando a parte preenchida (progresso) no Webkit (Chrome, Safari, etc) */
.bar-review progress[value]::-webkit-progress-bar {
  background-color: #d8d8d8;
}

.bar-review progress[value]::-webkit-progress-value {
  background-color: #f3c621;
}

/* Estilizando a parte do progresso no MS Edge */
.bar-review progress[value]::-ms-fill {
  background-color: #f3c621;
}

.bar-review .bar-review-n {
  width: 30px;
}

.reviews-section button {
  display: block;
  width: 100%;
  margin: 20px auto 0 auto;
  padding: 8px 25px;
  color: white;
  background-color: #111;
  text-align: center;
  border: none;
  border-radius: 8px;
}

.reviews-section button:hover,
.reviews-section button:focus,
.reviews-section button:active {
  background-color: #222;
}

.reviews-section .reviews-list {
  padding: 35px 0;
}

.reviews-list .review {
  display: grid;
  grid: 1fr/ 30px 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.review .review-img {
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid black;
}

.review .review-text h3 {
  font-size: 16px;
  font-weight: 600;
}

.review .review-text .review-stars {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1;
  color: #f3c621;
}

.review .review-text h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.review .review-text p {
  font-size: 16px;
  line-height: 1.3;
}

.reviews-section button .button-mais {
  margin: 0;
}

@media (min-width: 960px) {
  .reviews-section {
    display: grid;
    grid: 1fr / 300px 1fr;
    gap: 45px;
  }
}
