/*notificacao*/
.c_form {
  display: block;
}

main {
  margin: 0px 10vw;
}

h1 {
  color: #0e0e0e;
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0px;
  text-align: center;
}

.resultados {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.card_avaliacao {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 22px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: space-between;

  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid #c3c3c3;

  background: #fff;
  cursor: pointer;
}

.card_avaliacao:hover {
  transform: scale(1.01);
}

.info_empresa {
  display: flex;
  align-items: center;
  gap: 32px;
}

.info_empresa img {
  width: 82px;
  height: 82px;
  flex-shrink: 0;
  border-radius: 120px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
  object-fit: cover;
}

.info_empresa .info_texto {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nome_nota {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.nome_nota .nome {
  color: #0e0e0e;
  font-size: 24px;
  font-weight: 600;
}

.nome_nota .nota {
  color: #0e0e0e;
  font-size: 14px;
  font-weight: 400;
}
.nota_empresa {
  color: #8b9d37;
}

.info_texto .localizacao,
.info_texto .recomendacao {
  color: #353535;
  font-size: 14px;
  font-weight: 400;
}

.info_texto .recomendacao {
  color: #8b9d37;
}

.btn_fazer_avaliacao {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;

  border-radius: 5px;
  background: var(--Secondary, #353432);

  color: #fff;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  text-decoration: none;
}
.btn_fazer_avaliacao:hover {
  background: var(--Secondary, #413f3d);
}

.paginacao {
  margin: 36px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.paginacao button {
  display: flex;
  padding: 3px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--Primary, #8ea134);
  border: none;
  cursor: pointer;
}
.paginacao button:hover {
  scale: 102%;
}

.paginacao .paginas {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #0e0e0e;
  font-size: 14px;
  font-weight: 400;
}

.n_pagina {
  cursor: pointer;
}

.n_pagina:hover {
  text-decoration: underline;
}

.pagina_selecionada {
  color: #8ea134;
}

.sem_resultados {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c3c3c3;
  background: #fff;

  display: flex;
  gap: 30px;
  flex-direction: column;
  margin-bottom: 80px;
}

.sem_resultados h2 {
  color: #0e0e0e;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.form_avaliacao {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.form_avaliacao div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.form_avaliacao label {
  color: #2c2c2c;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.form_avaliacao input,
.form_avaliacao textarea {
  display: flex;
  height: 50px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;

  border-radius: 5px;
  border: 1px solid #c3c3c3;
  background: #fbfbfb;

  color: #353535;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form_avaliacao textarea {
  height: 180px;
}

.form_avaliacao .c_submit {
  display: flex;
  align-items: flex-end;
}

.form_avaliacao button {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 16px;

  border-radius: 5px;
  background: var(--Primary, #8ea134);

  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border: none;
  cursor: pointer;
}

.estrelas_avaliacao_enviar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.estrelas_avaliacao_enviar .estrelas svg {
  cursor: pointer;
}

.estrelas_avaliacao_enviar p {
  color: #a9a9a9;
  font-size: 14px;
  font-weight: 400;
}

.form_avaliacao .stars {
  display: flex;
  gap: 4px;
  cursor: pointer;
  flex-direction: row;
}
.star {
  width: 30px;
  height: 30px;
  background: url("../img/estrela-cinza.svg") no-repeat center/contain;
  transition: background 0.3s;
}
.star.filled {
  background: url("../img/estrela-dourada.svg") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .card_avaliacao {
    display: flex;
    justify-content: center;
  }

  .sem_resultados h2 {
    font-size: 24px;
  }
}
