@charset "UTF-8";
/* CSS Document */

/*================================================================================================RELATIVO AO BOTÃO CURTIR================================*/
.botao-curtir {
  background-color: #264a5d;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: #efe7db;
	border-radius: 40px;
}
.botao-curtir .fa-solid {
	color: #efe7db !important;
}

.botao-curtir.curtido {
  background-color: #6e6259;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: #efe7db;
	border-radius: 40px;
}

.botao-curtir.curtido .fa-solid {
	color: #4b3621 !important;
}
