/* produtos */
.produtos-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 2.3rem;
  color: var(--text-color-primary);
}
.pack_card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.099);
  border: 1px solid #808080ab;
  padding: 1.5rem 1rem 1rem 1rem;
  margin-top: 1rem;
  background: var(--container-color);
  border-radius: 0.3rem;
}
.pack_card:hover {
  transform: scale(1.05);
  transition: 0.4s all ease-in-out;
}
.banner {
  position: absolute;
  left: 0px;
  right: 0px;
  top: -2rem;
  display: flex;
  justify-content: center;
}
.banner_tag {
  display: flex;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--main-color);
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  transform: translateY(-8px);
}
.pack_name {
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--text-color-primary);
}
.description {
  margin: 0 auto 2rem auto;
  text-align: center;
  color: var(--text-color-secondary);
}
.lists > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.list {
  display: flex;
  gap: 0.5rem;
}
.list svg {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  color: var(--main-color);
}
.list span {
  color: var(--text-color-secondary);
}
.bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bottom > button {
  display: block;
  border-radius: 0.5rem;
  background-color: var(--main-color);
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #fff;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}
.bottom > button:hover {
  background-color: var(--hover-color);
  color: var(--black);
  border: 1px solid var(--main-color);
}
.price_container {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}
.devise {
  align-self: flex-start;
  color: var(--main-color);
}
.price {
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--main-color);
}
.date {
  color: var(--main-color);
}
.btn-cards {
  display: block;
  border-radius: 0.5rem;
  background-color: var(--main-color);
  padding: 0.75rem 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #fff;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-cards:hover {
  background-color: var(--hover-color);
}
.btn-cards:active {
  background-color: var(--hover-color);
}
