.cards {
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cards .card {
  display: flex;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
}

.cards .card .imgBox {
  width: 70px;
  height: 70px;
}

.cards .card .imgBox img {
  width: 100%;
  height: 100%;
}

.cards .card .containerBox {
  position: relative;
  margin-left: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cards .card h3 {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 400;
}

.cards .card h2 {
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.cards .card p {
  letter-spacing: 1px;
  font-size: 1rem;
}

.cards .card .containerBox .content {
  display: flex;
  gap: 20px;
}

.cards .card button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  padding: 7px;
  cursor: pointer;
  color: var(--primary);
  background: var(--secondary);
  border: none;
  border-radius: 4px;
}

.cards .card button:hover {
  filter: brightness(1.2);
}

.notVagas {
  padding: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
  text-align: center;
}

.notVagas h2 {
  letter-spacing: 1px;
  font-size: 2rem;
  color: var(--primary);
}

.notVagas img {
  width: 80%;
}

@media (max-width: 950px) {
  .cards .card {
    flex-direction: column;
    gap: 20px;
    position: relative;
  }

  .cards .card .imgBox {
    width: 60px;
    height: 60px;
  }

  .cards .card .containerBox {
    position: initial;
    margin-left: 0;
    gap: 10px;
  }

  .cards .card h3 {
    top: 20px;
    right: 20px;
  }

  .cards .card .containerBox .content {
    justify-content: space-between;
  }

  .cards .card button {
    position: initial;
    width: 100%;
    margin-top: 10px;
  }

  .notVagas {
    text-align: center;
  }

  .notVagas h2 {
    font: 1.6rem;
  }

  .notVagas img {
    width: 100%;
  }
}
