.product-card-list {
    background-color: white;
    border-radius: 10px;
    width: 400px;
    height: 420px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 400px;
  }
  
  .product-card-list-overlay {
    position: absolute;
    top: 21px;
    left: 28px;
    width: calc(100% - 57px);
    height: calc(100% - 52px);
    border: 1px solid #F49811;
    border-radius: 10px;
    z-index: 10;
    pointer-events: none;
  }

  .about-more-absolute {
    bottom: 12px;
  }
  
  .product-card-list-title-container {
    width: 290px;
    height: 55.364px;
  
    margin: 0px;
    padding: 35px 17px 0 17px;
    padding-left: 13px;
    display: flex;
    align-items: center;
  }
  
  .product-card-list-title-container p {
    width: 100%;
    text-align: center;
    font-family: 'Lobster';
    font-size: 22px;
    color: #094DA4;
  }
  
  .product-card-list-image-container {
    height: 160px;
    overflow: hidden;
  }
  
  .product-card-list-image-container img {
    width: 290px;
    height: 160px;
    object-fit: contain;
    
    margin: 0px;
    padding: 0px;
  }
  
  /* .product-card-list:hover .product-card-list-image-container img {
    transition: transform 0.3s ease;
    transform: scale(1.1);
  } */
  
  /* Descrição da categoria */
  .product-card-list-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-card-list-button-container {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  
  .product-card-list-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-card-list-button:hover {
    background: #e07d0d;
  }
  
  .product-card-list-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;
  }

  @media (max-width: 768px) {
    .product-card-list {
      width: 290px;
      height: 361px;
      min-width: 290px;
  }

  .product-card-list-image-container {
    height: 133px;
  }

  .product-card-list-image-container img{
    width: 200px;
    height: 133px;
    object-fit: contain;
    margin: 0px;
    padding: 0px;
  }

  .product-card-list-title-container p {
    width: 210px;
    text-wrap: wrap;
    text-align: center;
    font-family: 'Lobster';
    font-size: 22px;
    color: #094DA4;
    left: 20px;
    padding-left: 60px;
    padding-top: 0px;
}
.produtos-template-category-list-title {
  font-size: 30px;
}
  }