.product-category-card-info {
  background-color: white;
  border-radius: 10px;
  width: 287px;
  height: 355px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}

.product-category-card-info-overlay {
  position: absolute;
  top: 19px;
  left: 19px;
  width: calc(100% - 38px);
  height: calc(100% - 52px);
  border: 1px solid #F49811;
  border-radius: 10px;
  z-index: 10;
  pointer-events: none;
}

.product-category-card-info-title-container {
  width: 290px;
  height: 55.364px;

  margin: 0px;
  padding: 9px 17px 0 17px;
  padding-left: 13px;
  display: flex;
  align-items: center;
}

.product-category-card-info-title-container p {
  width: 100%;
  text-align: center;
  font-family: 'Lobster';
  font-size: 22px;
  color: #094DA4;
}

.product-category-card-info-image-container {
  width: 290px;
  height: 160px;
  overflow: hidden;
}

.product-category-card-info-image-container img {
  width: 290px;
  height: 160px;
  object-fit: cover;
  
  margin: 0px;
  padding: 0px;
}

.product-category-card-info:hover .product-category-card-info-image-container img {
  transition: transform 0.3s ease;
  transform: scale(1.1);
}

/* Descrição da categoria */
.product-category-card-info-description-container {
  width: 209px;
  height: 61px;
  flex-shrink: 0;

  color: #252525;
  text-align: center;
  font-family: "space-grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;

  margin: 0 auto;
}

.about-more-absolute{
  position: absolute;
  z-index: 20;
}
.uppercase {
  text-transform: uppercase;
}

.product-category-card-info-button-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.product-category-card-info-button {
  position: absolute;
  z-index: 20;
  width: 180px;
  height: 40px;
  border-radius: 30px;
  background: #F49811;
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-category-card-info-button:hover {
  background: #e07d0d;
}

.product-category-card-info-button span {
  width: 120px;
  height: 19px;
  text-align: center;
  font-family: "space-grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}