* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "sans-serif";
}

.lista {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 0 35px;
  /* background: linear-gradient(to left top, #031a9a, #8b53ff); */
}

.wrapper {
  max-width: 1100px;
  /* width: 100%; */
  width: 85%;
  position: absolute;
}

.wrapper > i {
  height: 50px;
  width: 50px;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3) - 12px);
  gap: 16px;
  /* overflow: hidden; */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.wrapper i:first-child {
  left: -22px;
}

.wrapper i:last-child {
  right: -22px;
}

.carousel :where(.card, .img) {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel .card {
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  background: #fff;
  /* border-radius: 8px; */
  display: flex;
  cursor: pointer;
  padding-bottom: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  /* width: 310px; */
  height: 485.39px;
  border-top: 3px solid #881515;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

  /* box-shadow: 0px 4px 60px 0px rgba(139, 139, 139, 0.15); */
}

.card .produto-logo {
  height: 74px;
  display: flex;
  gap: 10px;
  /* border: 1px solid; */
  top: 25px;
  justify-content: start;
  width: calc(100% - 50px);
  align-items: center;
  /* margin-right: 25px; */
  /* margin-left: 25px; */
  
}

.card .produto-logo img {
  /* border: 1px solid; */
  width: 150px;
}

.card .btn-redondo{
    width: 40px;
    height: 40px;
    position: fixed;
    padding: 9.001px 8.993px 8.993px 9.001px;
    border-radius: 20px;
    background: #881515;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* right: 0; */
    margin-left: 190px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    
}

.card .produto-mokup {
  /* width: 280px; */
  width: calc(100% - 50px);

  height: 210px;
  bottom: 25px;
  display: flex;
  align-items: center;
  /* border: 1px solid; */
}

.produto-mokup img {
  width: 100%;
  /* object-fit: cover; */
}
/* 
.card .img {
  background: #8b53ff;
  width: 148px;
  height: 148px;
  border-radius: 50%;
}

.card .img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
} */

.card h2 {
  /* font-weight: 500; */
  font-size: 18px;
  /* margin: 30px 0 4px; */
}

.card p {
  color: #6a6d78;
  font-size: 14px;
  width: calc(100% - 50px);
  /* margin-bottom: 10px; */
  margin-top: 10px;
  /* text-align: left; */
  word-wrap: break-word;
  /* line-height: 19px; */
  /* border: 1px solid; */
}

/* butao */
.btn-accao{
    width: 10.34375rem;
    height: 2.64938rem;
    padding: 0.5625rem 1.84375rem 0.64938rem 1.875rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.3125rem;
    background: #881515;
    color: #fff;
    text-decoration: none;
}


@media screen and (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media screen and (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}
