/*****************************
 *  BOTÕES
 ******************************/
.btn-action {
  padding: 0.75rem 1rem;
  background-color: var(--f-color-spring-green);
  color: var(--f-color-strong-dark-green);
  font-weight: bold;
  box-shadow: none;
  border: none;
  text-transform: uppercase;
  border-radius: var(--f-radius-md);
  transition: all 0.5s;
}

.btn-action:hover,
.btn-action:focus,
.btn-action:active {
  background-color: var(--f-color-bitter-lemon);
  color: var(--f-color-strong-dark-green);
  text-decoration: none !important;
  transition: all 0.5s;
}

.btn-unset {
  padding: 0.5rem 1rem;
  color: var(--f-color-spring-green);
  border: 2px solid var(--f-color-spring-green);
  border-radius: var(--f-radius-md);
  transition: all 0.5s;
}

.btn-unset:hover,
.btn-unset:focus,
.btn-unset:active {
  text-decoration: none;
  background-color: var(--f-color-spring-green);
  color: var(--f-color-strong-dark-green);
  transition: all 0.5s;
}

.tags .btn-unset {
  padding: 0.25rem 0.5rem;
  border-radius: var(--f-radius-sm);
}

/*****************************
 *  BOTOES DE COMPARTILHAMENTO
 ******************************/
.compartilhar {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: var(--f-gap-sm);
}

.compartilhar a {
  width: 32px;
  height: 32px;
  color: var(--f-color-grey-granite);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--f-radius-sm);
}

.compartilhar a:hover {
  background-color: var(--f-color-strong-dark-green);
  color: var(--f-color-white);
  text-decoration: none;
}

/*****************************
  *  MEDIA QUERIES
  ******************************/
@media (min-width: 768px) {
  .compartilhar {
    margin-bottom: 0;
  }
}