
.promo-ribbon {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 7px 14px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.32);
  border-radius: 12px;
  z-index: 6;
  transform: rotate(-3deg);
  white-space: nowrap;
}

.promo-price-tag {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.10);
  color: #15803d;
  font-weight: 700;
  font-size: 13px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.promo-price-tag .pill {
  background: #22c55e;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

/* Ajusta alinhamento dentro do card destacado */
.featured-card .promo-price-tag,
.hp-carousel-item .promo-price-tag {
  pointer-events: none;
  display: inline-flex;
  margin-top: 4px;
}

/* Garante que o contêiner não estoure layout */
.featured-card,
.hp-carousel-item {
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .promo-ribbon { left: 8px; top: 8px; padding: 6px 12px; font-size: 11px; transform: rotate(-2deg); }
  .promo-price-tag {
  pointer-events: none; font-size: 12px; }
  .promo-price-tag .pill { font-size: 11px; }
}

.hero-cta-btn--green, .hero-cta-btn--green:visited {
  display: inline-flex; align-items: center; gap: 8px;
  background: #22c55e; color: #fff; border: 1px solid #22c55e;
  padding: 10px 16px; border-radius: 12px; font-weight: 800;
  letter-spacing: 0.01em; box-shadow: 0 12px 25px rgba(34,197,94,0.25);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.hero-cta-btn--green:hover { background: #16a34a; border-color: #15803d; box-shadow: 0 14px 28px rgba(34,197,94,0.3); transform: translateY(-1px); }
.hero-cta-btn--green:active { transform: translateY(0); }