/* ── Depoimentos com print ── */
.testimonial-print {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-top: 12px;
}
.testimonial-print--mt { margin-top: 8px; }
.testimonial-card--double { grid-column: span 1; }

/* ── Bonus card destaque (50% OFF) ── */
.bonus-card--highlight {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  position: relative;
}

/* ── Lightbox ── */
#lightbox-overlay {
  display: none !important;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#lightbox-overlay.active { 
  display: flex !important; 
}

#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  object-fit: contain;
}

#lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
#lightbox-close:hover { opacity: 1; }

/* Hint visual nos prints */
.testimonial-print {
  transition: opacity 0.2s, transform 0.2s;
}
.testimonial-print:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

/* ══════════════════════════════════════════
   Ajustes Mobile — patch-promo
   ══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Depoimentos com print */
  .testimonial-print {
    border-radius: 6px;
  }
  .testimonial-card--double {
    grid-column: span 1;
  }

  /* Lightbox mobile */
  #lightbox-img {
    max-width: 96vw;
    max-height: 82vh;
  }
  #lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 28px;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Bonus card destaque */
  .bonus-card--highlight {
    padding: 24px 20px;
  }

  /* CTA inline mobile */
  .cta-inline-wrap {
    padding: 40px 20px;
  }
  .cta-inline-headline {
    font-size: clamp(16px, 4vw, 22px);
  }
  .cta-price-main {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  /* Lightbox tela muito pequena */
  #lightbox-img {
    max-width: 100vw;
    max-height: 75vh;
    border-radius: 0;
  }
  #lightbox-overlay {
    padding: 0;
  }
}

/* Urgency banner mobile */
@media (max-width: 768px) {
  .urgency-banner {
    font-size: 9px;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.5;
  }
}
