:root {
  --pink-light: #ffe1f2;
  --pink-dark: #bd1470;
  --pink-middle: #ce6aa0;
  --yellow-gradient-start: #fdd835;
  --yellow-gradient-end: #fbc02d;
  --yellow-light-bg: #fffde7;
  --yellow-dotted-border: #fbc02d;
  --text-dark: #424242;
  --text-light: #757575;
  --green-check: #4caf50;
  --white: #ffffff;
  --border-light: #eeeeee;
  --best-value-bg: #bd1470;
}

.pricing-section {
  margin: 2rem 1rem;
}

.pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 15px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  width: 320px !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card a {
  text-decoration: none;
}

.pricing-card.featured {
  border: 2px solid var(--best-value-bg);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 12px;
  font-weight: 600;
  color: var(--text-dark);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.card-header.basic,
.card-header.most-popular {
  background-color: var(--pink-light);
}

.card-header.best-value {
  background-color: var(--best-value-bg);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1em;
}

.card-body {
  padding: 20px 30px 30px 30px;
}

.package-title {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--text-dark);
  margin: 10px 0 5px 0;
}

.supply-info {
  color: var(--text-light);
  margin: 0 0 20px 0;
  font-weight: 600;
}

.image-container {
  position: relative;
  margin-bottom: 20px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container .product-image {
  height: 180px;
  width: auto;
}

.ebook-image {
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

.best-value-seal {
  position: absolute;
  top: -10px;
  right: 0px;
  background-color: var(--best-value-bg);
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(15deg);
}

.price {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.price-amount {
  font-size: 4.5em;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.price-per {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 8px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  text-align: left;
  display: inline-block;
  width: 80%;
}

.features-list li {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  background-color: var(--yellow-light-bg);
  border: 2px dotted var(--yellow-dotted-border);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.8em;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.checkmark {
  color: var(--green-check);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.buy-button {
  background-image: linear-gradient(
    to top,
    var(--yellow-gradient-end),
    var(--yellow-gradient-start)
  );
  border: none;
  border-radius: 10px;
  padding: 18px;
  width: 100%;
  color: var(--text-dark);
  font-size: 1.4em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  position: relative;
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cursor-icon {
  position: absolute;
  right: 15px;
  bottom: -15px;
  font-size: 1.8em;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
    transform: rotate(325deg);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
    transform: rotate(325deg);
  }
}

.total-price {
  margin-top: 15px;
  font-size: 1.1em;
  color: var(--text-light);
}

.total-price del {
  color: #9e9e9e;
}

.total-price strong {
  color: var(--text-dark);
}

.payment-info {
  margin-top: 15px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-icons img {
  height: 20px;
}

.free-shipping {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.hiddenD {
  display: none;
}

.hiddenM {
  display: flex;
}

.cta {
  margin: 1.5rem auto !important;
}

.cta-pulse {
  font-family: "Roboto", sans-serif;
  width: 95%;
  margin: 15px auto 0;
  font-weight: 700;
  background-image: linear-gradient(180deg, #01b319 0, #04960d 100%) !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: white;
  font-size: 27px;
  line-height: 1.1em;
  border-radius: 7px;
  border: none;
  padding: 10px 5px;
  animation: 1s ease-in-out infinite alternate pulsar;
  cursor: pointer;
}

.cta-price {
  font-family: "Roboto", sans-serif;
  width: 95%;
  margin: 15px auto 0;
  font-weight: 700;
  background-image: linear-gradient(180deg, #01b319 0, #04960d 100%) !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: white;
  font-size: 27px;
  line-height: 1.1em;
  border-radius: 7px;
  border: none;
  padding: 10px 5px;
  cursor: pointer;
}

.cta-price:hover,
.cta-pulse:hover {
  color: #000000;
}

.item-sides {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 0.5em;
}

/* Responsividade */
@media (max-width: 1100px) {
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    gap: 25px; /* Reduz o espaço entre os cards */
  }

  .pricing-card {
    width: 100%;
    max-width: 500px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .card-body {
    padding: 15px;
  }

  /* NOVO: Layout horizontal para o conteúdo do card */
  .card-content-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
  }

  .content-left {
    flex: 0 0 45%; /* Ocupa 45% da largura */
  }

  .content-right {
    flex: 1; /* Ocupa o restante do espaço */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .package-title {
    font-size: 1.4em;
  }
  .supply-info {
    font-size: 0.8em;
    margin-bottom: 10px;
  }

  .image-container {
    min-height: auto;
    margin-bottom: 10px;
  }

  /* NOVO: Estilo dos itens da lista de vantagens */
  .features-list {
    margin-bottom: 0;
    width: 100%;
  }
  .features-list li {
    background-color: var(--yellow-light-bg);
    border: 2px dotted var(--yellow-dotted-border);
    border-radius: 8px;
    padding: 0;
    margin-bottom: 8px;
    font-size: 0.8em;
    justify-content: center;
    text-align: center;
  }

  .price {
    margin-bottom: 0;
  }

  .price-amount {
    font-size: 3em; /* Reduz o tamanho do preço */
  }

  .price-per {
    font-size: 1em;
  }

  .buy-button {
    font-size: 1.1em;
    padding: 12px;
  }

  .total-price {
    font-size: 1em;
    margin-top: 0;
  }

  .payment-info {
    margin-top: 0;
  }

  .payment-icons img {
    height: 16px;
  }

  .free-shipping {
    font-size: 0.9em;
  }

  .hiddenD {
    display: flex;
  }

  .hiddenM {
    display: none;
  }

  .image-container .product-image {
    height: 150px;
    width: auto;
  }

  .item-sides {
    flex-direction: row;
  }

  .item-img {
    width: 50%;
  }
}

/* -------------------------------------- */

.marquee-container {
  width: 100%;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  text-transform: uppercase;
}

.marquee-content {
  display: inline-block;
  padding-right: 50px;
  animation: marquee 150s linear infinite;
}

.marquee-content span {
  padding-right: 50px;
}

.letreiro {
  background-color: #810505;
  font-size: 1rem;
}
