/* ====== BLOCO GERAL ====== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f1f3f4;
}

/* ====== SEÇÃO DE AVALIAÇÕES ====== */
.avaliacoes {
  max-width: 700px;
  margin: 40px auto;
  padding: 10px;
}

.avaliacoes h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

/* ====== CARD DA AVALIAÇÃO ====== */
.avaliacao {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ====== TOPO DO CARD ====== */
.card-topo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* Avatar com inicial */
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #a855f7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-right: 12px;
}

/* Nome e tempo */
.info .nome {
  font-weight: 600;
  font-size: 15px;
}

.info .tempo {
  font-size: 13px;
  color: #777;
}

/* ====== ESTRELAS ====== */
.estrelas {
  color: #fbbc04;
  font-size: 18px;
  margin: 6px 0 10px 0;
}

/* ====== TEXTO ====== */
.texto {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 600px) {
  .avaliacao {
    padding: 16px;
  }

  .texto {
    font-size: 14px;
  }
}
