.hunter-card-body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  height: auto;
}

.hunter-card-container {
  padding: 20px;
  display: flex;
  justify-items: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 8px;
}

.inner-container {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 22px;
  margin: 0;
  font-weight: 500;
  color: #2f3134;
}

.card-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  min-height: 100px;
  gap: 100px 0;
}

.hunter-card-item {
  max-width: 140px;
  max-height: 180px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.icon-container {
  min-width: 85px;
  min-height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efefef;
  border-radius: 100%;
  /*margin-bottom: 20px;*/
}

.icon {
  width: 55px;
  height: 55px;
}

.card-title {
  font-size: 12px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  text-align: center;
}

.card-description {
  max-width: 347px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  margin: 0;
  color: #828282;
}


/*TABLETS */
@media screen and (min-width: 540px) and (max-width: 1024px) {
  .hunter-card-item {
    max-width: 250px;
    max-height: 250px;
  }
  .card-container:has(.card:nth-child(3)):not(:has(.card:nth-child(4))) .card {
    min-width: 33%;
    max-width: 33%;
  }
  .card-container:has(.card:nth-child(4)) .card {
    min-width: 35%;
    max-width: 35%;
  }
}

/* Tama���os grandes */
@media screen and (min-width: 1025px) {
  .title {
    font-size: 32px;
    margin: 0;
    font-weight: 500;
    color: #2f3134;
  }
  .hunter-card-container {
    padding-top: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .card-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    min-height: 100px;
    gap: 80px 0;
  }

  .hunter-card-item {
    min-width: 33%;
    max-width: 33%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap:10px;
    margin-bottom: 10px;
  }
  .card-container:has(.card:nth-child(3)):not(:has(.card:nth-child(4))) .card {
    min-width: 33%;
    max-width: 33%;
  }
  .card-container:has(.card:nth-child(4)) .card {
    min-width: 35%;
    max-width: 35%;
  }
  .card-container:has(.card:nth-child(5)) .card {
    min-width: 33%;
    max-width: 33%;
  }
  .card-title {
    max-width: 300px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    text-align: center;
  }
  .card-description {
    max-width: 300px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    color: #828282;
  }
}
