.SQ_producto_card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--theme-white, #ffffff);
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 8px 0px #00000040;
  height: 100%;
}
.SQ_producto_card:hover .SQ_producto_card__img {
  transform: scale(1.04);
}
.SQ_producto_card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #fff;
}
.SQ_producto_card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transition: transform 0.4s ease;
}
.SQ_producto_card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .SQ_producto_card__body {
    padding: 15px;
  }
}
.SQ_producto_card__title {
  font-family: var(--theme-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--theme-black, #141518);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .SQ_producto_card__title {
    font-size: 16px;
  }
}
.SQ_producto_card__desc {
  font-family: var(--theme-font-two);
  font-size: 16px;
  line-height: 1.4;
  color: var(--theme-gray, #6D6D6D);
  margin: 0;
  font-weight: 300;
}
