* { margin: 0; padding: 0; box-sizing: border-box; }

/* Rede de seguranca: nenhuma midia pode estourar o container.
   Sem isso, uma imagem sem regra propria renderiza no tamanho
   natural e arrebenta o layout para os lados. */
img, video { max-width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
}

/* ===== URGENCY TOP BAR ===== */
.top-bar {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.top-bar-dot {
  width: 5px; height: 5px;
  background: #2CB67D;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f5f0;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  will-change: transform;
}

.carousel-slide { min-width: 100%; height: 100%; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.25s;
}

.carousel-dot.active { background: rgba(0,0,0,0.55); transform: scale(1.15); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.carousel-arrow:hover { background: #fff; }
.carousel-arrow svg { width: 16px; height: 16px; color: #333; }
.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }

@media (max-width: 480px) {
  .carousel-arrow { width: 28px; height: 28px; }
  .carousel-arrow svg { width: 14px; height: 14px; }
}

/* ===== PRODUCT HEADER ===== */
.product-header { padding: 20px 20px 0; }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b08968;
}

.sold-badge {
  font-size: 10px;
  font-weight: 600;
  color: #2CB67D;
  background: #f0fdf4;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sold-badge svg { width: 10px; height: 10px; }

.product-name {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
}

.rating-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.rating-count { font-size: 11px; color: #999; }

.viewing-now {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #e67e22;
  font-weight: 600;
  margin-bottom: 14px;
}

.viewing-dot {
  width: 6px; height: 6px;
  background: #e67e22;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-current { font-size: 30px; font-weight: 800; color: #111; letter-spacing: -0.03em; }
.price-old { font-size: 15px; color: #ef4444; text-decoration: line-through; opacity: 0.7; }

.price-save {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #2CB67D;
  padding: 2px 8px;
  border-radius: 4px;
}

.price-installments { font-size: 11px; color: #999; margin-bottom: 18px; }

/* ===== STOCK BAR ===== */
.stock-bar {
  margin: 0 0 20px;
}

.stock-text {
  font-size: 11px;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 6px;
}

.stock-track {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: visible;
}

.stock-fill {
  height: 100%;
  width: 18%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 3px;
  transition: width 0.8s ease-out;
}

@keyframes stockGlow {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); filter: brightness(1); }
  30% { box-shadow: 0 0 12px 4px rgba(239, 68, 68, 0.6); filter: brightness(1.8); }
  60% { box-shadow: 0 0 8px 2px rgba(249, 115, 22, 0.4); filter: brightness(1.4); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); filter: brightness(1); }
}

@keyframes textFlash {
  0% { color: #ef4444; }
  30% { color: #ff0000; transform: scale(1.03); }
  100% { color: #ef4444; transform: scale(1); }
}

.stock-bar.pulse .stock-fill {
  animation: stockGlow 0.8s ease-out;
}

.stock-bar.pulse .stock-text {
  animation: textFlash 0.8s ease-out;
}

/* ===== CTA ===== */
.cta-wrap { padding: 0 20px; margin-bottom: 8px; }

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  background: #2CB67D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.cta-button:hover {
  background: #239d6a;
  box-shadow: 0 6px 20px rgba(44, 182, 125, 0.4);
}

.cta-button:active { transform: scale(0.985); }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(44, 182, 125, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(44, 182, 125, 0); }
}

.cta-button { animation: ctaPulse 2.5s ease-in-out infinite; }
.cta-button:hover { animation: none; }

/* ===== SOCIAL PROOF TOAST ===== */
.social-toast {
  position: fixed;
  bottom: 70px;
  left: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
  max-width: 320px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  will-change: transform, opacity;
}

.social-toast.show { transform: translateX(0); opacity: 1; }

.social-toast-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #2CB67D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-toast-avatar svg { width: 16px; height: 16px; color: #fff; }

.social-toast-text { font-size: 11px; line-height: 1.4; color: #333; }
.social-toast-text strong { font-weight: 700; }
.social-toast-time { font-size: 9px; color: #aaa; margin-top: 1px; }

@media (min-width: 481px) {
  .social-toast { bottom: 24px; left: 24px; }
}

.cta-sub {
  text-align: center;
  font-size: 10px;
  color: #aaa;
  padding: 6px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.cta-sub svg { width: 10px; height: 10px; color: #bbb; flex-shrink: 0; }

.payment-flags { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }

/* ===== MINI REVIEW (near CTA) ===== */
.mini-review {
  margin: 12px 20px 0;
  padding: 10px 14px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.mini-review-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  flex-shrink: 0;
}

.mini-review-body { flex: 1; }

.mini-review-stars { color: #f59e0b; font-size: 10px; letter-spacing: 1px; margin-bottom: 2px; }

.mini-review-text {
  font-size: 11px;
  line-height: 1.5;
  color: #666;
}

.mini-review-author { font-size: 10px; color: #aaa; margin-top: 2px; }

/* ===== TRUST PILLS ===== */
.trust-pills {
  display: flex;
  gap: 0;
  padding: 0 20px;
  margin: 16px 0 0;
}

.trust-pill {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  border-right: 1px solid #f0f0f0;
}

.trust-pill:last-child { border-right: none; }
.trust-pill-icon { margin-bottom: 4px; display: flex; align-items: center; justify-content: center; }
.trust-pill-icon svg { width: 16px; height: 16px; color: #2CB67D; }
.trust-pill-label { font-size: 9px; font-weight: 600; color: #888; line-height: 1.3; }

/* ===== SPACER ===== */
.spacer { height: 20px; }
.spacer-line { height: 1px; background: #f0f0f0; margin: 20px 20px; }

/* ===== SECTIONS ===== */
.section-pad { padding: 0 20px; }
.section-title { font-size: 13px; font-weight: 700; color: #111; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }

.desc-text { font-size: 13px; line-height: 1.7; color: #555; margin-bottom: 12px; }

/* ===== FEATURES ===== */
.features { display: flex; flex-direction: column; gap: 8px; }

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #fafafa;
  border-radius: 8px;
}

.feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #2CB67D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg { width: 11px; height: 11px; color: #fff; }
.feature span { font-size: 13px; color: #333; }

/* ===== REVIEWS ===== */
.reviews-scroll {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-scroll::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  width: 250px;
  padding: 14px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  scroll-snap-align: start;
}

.review-stars { color: #f59e0b; font-size: 10px; letter-spacing: 1px; margin-bottom: 6px; }
.review-text { font-size: 12px; line-height: 1.55; color: #555; margin-bottom: 8px; }
.review-author { font-size: 10px; font-weight: 600; color: #333; }
.review-verified { font-size: 9px; color: #2CB67D; font-weight: 500; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
}

.faq-item.open .faq-q::after { content: '−'; color: #999; }
.faq-a { font-size: 12px; line-height: 1.6; color: #888; padding: 0 0 12px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 28px 0 20px;
  text-align: center;
  background: #f4f4f5;
}

.final-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.final-sub { font-size: 11px; color: #999; margin-bottom: 16px; }

/* ===== TIMER ===== */
.timer-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.timer-box {
  background: #f4f4f5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  min-width: 58px;
}

.timer-value { font-size: 24px; font-weight: 800; color: #111; line-height: 1; }
.timer-label { font-size: 8px; font-weight: 600; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.timer-sep { font-size: 18px; font-weight: 700; color: #ddd; }
.timer-notice { font-size: 10px; color: #bbb; margin-bottom: 16px; }

/* ===== FOOTER ===== */
.footer { text-align: center; padding: 0 20px 16px; font-size: 10px; color: #bbb; background: #f4f4f5; }
.footer a { color: #999; text-decoration: underline; }
.footer a:hover { color: #666; }

.footer-disclaimers {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 0 12px;
  text-align: center;
}

.footer-disclaimers p {
  font-size: 9px;
  line-height: 1.5;
  color: #bbb;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-bottom: 10px;
  font-size: 10px;
}

.footer-sep { color: #ddd; }

/* ===== STICKY ===== */
.sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 8px 16px;
  transition: transform 0.3s, opacity 0.3s;
  will-change: transform, opacity;
}

.sticky-bottom.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }

.sticky-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-left { flex-shrink: 0; }
.sticky-price { font-size: 17px; font-weight: 800; color: #111; letter-spacing: -0.02em; }

.sticky-lock {
  display: flex; align-items: center; gap: 3px;
  font-size: 9px; color: #bbb; margin-top: 1px;
}

.sticky-lock svg { width: 9px; height: 9px; }
.sticky-inner .cta-button { padding: 14px 16px; font-size: 14px; border-radius: 10px; }

/* ===== RESPONSIVE ===== */
.carousel { touch-action: pan-y; }

@media (min-width: 481px) {
  body { background: #f0f0f0; }
  .page {
    min-height: auto;
    margin: 32px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    background: #fff;
  }
  .sticky-bottom { display: none !important; }
}
/* ===================================================================
   BLOCOS EXTRA — seções da Toque Duplo encaixadas no template
   Mesma linguagem visual do braza.commerce (Inter, #2CB67D, cinzas)
   =================================================================== */

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b08968;
  margin-bottom: 4px;
}

/* ===== FEATURE CARDS COM MÍDIA (língua / ponto G) ===== */
.feature-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

.feature-media-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.feature-media-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-media-body { padding: 12px 14px 14px; }

.feature-media-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.feature-media-title em { font-style: normal; color: #2CB67D; }

.feature-media-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #777;
  margin-top: 6px;
}

/* ===== BENEFÍCIOS ===== */
.benefits { display: flex; flex-direction: column; gap: 2px; }

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f4;
}

.benefit:last-child { border-bottom: none; }

.benefit-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { width: 15px; height: 15px; color: #2CB67D; }
.benefit-body h4 { font-size: 13px; font-weight: 700; color: #222; margin-bottom: 2px; }
.benefit-body p { font-size: 12px; line-height: 1.5; color: #888; }

/* ===== EMBALAGEM DISCRETA ===== */
.discreet {
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 24px 20px;
  text-align: center;
}

.discreet-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2CB67D;
  background: #f0fdf4;
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.discreet-badge svg { width: 12px; height: 12px; }

.discreet img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 14px;
  border-radius: 10px;
}

.discreet h3 {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.discreet h3 em { font-style: normal; color: #2CB67D; }
.discreet p { font-size: 12px; line-height: 1.6; color: #777; max-width: 320px; margin: 0 auto; }

/* ===== GARANTIA + RECLAME AQUI ===== */
.guarantee { padding: 24px 20px; text-align: center; }

.guarantee-logo {
  height: 26px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.75;
}

.guarantee h3 {
  font-size: 15px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.guarantee > p { font-size: 12px; color: #888; margin-bottom: 14px; }

.guarantee-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 14px;
}

.ra-cards { display: flex; flex-direction: column; gap: 10px; text-align: left; }

.ra-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 14px;
}

.ra-q { font-size: 11px; font-weight: 600; color: #aaa; margin-bottom: 10px; }

.ra-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ra-face { flex-shrink: 0; }

.ra-badge-pos {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #7CA943;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ra-title { font-size: 13px; font-weight: 800; color: #111; line-height: 1.3; }
.ra-body { font-size: 11px; line-height: 1.55; color: #888; }
.ra-body strong { color: #555; font-weight: 700; }
.ra-cnpj { font-size: 10px; color: #ccc; letter-spacing: 0.04em; margin-top: 12px; }

/* ===== INFORMAÇÕES DE COMPRA ===== */
.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.purchase-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}

.purchase-card .p-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.purchase-card .p-icon svg { width: 15px; height: 15px; color: #2CB67D; }
.purchase-card h4 { font-size: 12px; font-weight: 700; color: #222; margin-bottom: 3px; }
.purchase-card p { font-size: 11px; line-height: 1.45; color: #999; }

/* ===== FOOTER — contato ===== */
.footer-contact { margin-bottom: 10px; line-height: 1.7; }
.footer-contact a { color: #999; }

/* ===================================================================
   v4.0 — CAMADA DE CONVERSÃO
   Componentes novos + ajustes sobre as regras acima.
   Mantém a mesma linguagem: Inter, #2CB67D, cinzas, max 480px.
   =================================================================== */

/* ----- Estrela apagada (era style="color:#ddd" inline) ------------- */
.star-off { color: #ddd; }

/* ----- Vídeo no lugar dos GIFs (mesma caixa, 1/15 do peso) --------- */
.slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f7f5f0;
  pointer-events: none;
}

/* ----- Nota clicável -> âncora dos depoimentos -------------------- */
.rating-row {
  text-decoration: none;
  color: inherit;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.rating-link {
  font-size: 11px;
  font-weight: 600;
  color: #2CB67D;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 3px;
  flex-basis: 100%;
}

/* ----- OFERTA NO TOPO (antes só existia no rodapé) ---------------- */
.offer-stack {
  border: 1px solid #e6f4ee;
  background: #f7fdfa;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.offer-stack-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #1f8f61;
  margin-bottom: 9px;
}
.offer-stack-head svg { width: 13px; height: 13px; flex-shrink: 0; }

.offer-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #444;
}
.offer-list strong { color: #111; font-weight: 700; }

.offer-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  background: #2CB67D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-check svg { width: 9px; height: 9px; color: #fff; }

.offer-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #2CB67D;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: 1px;
  white-space: nowrap;
}

/* ----- CTA: seta + microcopy de reforço --------------------------- */
.cta-button { gap: 8px; }
.cta-arrow { display: flex; align-items: center; }
.cta-arrow svg { width: 16px; height: 16px; }

.cta-micro {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #2CB67D;
  padding: 2px 20px 0;
}

/* ----- PROVA SOCIAL RÁPIDA (abaixo do 1º CTA) --------------------- */
.quick-reviews-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 20px 8px;
}
.qr-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.qr-label { font-size: 11px; color: #888; }
.qr-label strong { color: #333; font-weight: 700; }

.quick-reviews {
  display: flex;
  gap: 10px;
  padding: 0 20px 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.quick-reviews::-webkit-scrollbar { display: none; }

.qr-card {
  flex: 0 0 235px;
  scroll-snap-align: start;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 12px 13px;
}
.qr-card-stars { color: #f59e0b; font-size: 10px; letter-spacing: 1px; margin-bottom: 6px; }
.qr-card p { font-size: 12px; line-height: 1.5; color: #555; margin-bottom: 8px; }
.qr-card-author { font-size: 10px; font-weight: 600; color: #333; }
.qr-verified { color: #2CB67D; font-weight: 600; }

/* ----- DEPOIMENTOS: resumo da nota -------------------------------- */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.rating-summary-left { text-align: center; flex-shrink: 0; }
.rating-big { font-size: 32px; font-weight: 800; color: #111; line-height: 1; letter-spacing: -0.03em; }
.rating-big-stars { color: #f59e0b; font-size: 11px; letter-spacing: 1px; margin: 4px 0 2px; }
.rating-big-total { font-size: 9.5px; color: #aaa; white-space: nowrap; }

.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.rating-bar-row { display: flex; align-items: center; gap: 7px; }
.rbr-l { font-size: 9px; color: #aaa; width: 16px; flex-shrink: 0; }
.rbr-n { font-size: 9px; color: #bbb; width: 18px; text-align: right; flex-shrink: 0; }

.rating-bar {
  flex: 1;
  height: 5px;
  background: #ececec;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  min-width: 0;
}
.rating-bar i { display: block; height: 100%; background: #f59e0b; border-radius: 3px; }

/* ----- DEPOIMENTOS: cards (substituem o iframe do YouTube) -------- */
.reviews-list { display: flex; flex-direction: column; gap: 10px; }

.review-card {
  width: auto;
  flex-shrink: 1;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.review-card.is-hidden { display: none; }

.review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }

.review-avatar {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-meta { min-width: 0; }
.review-author { font-size: 12.5px; font-weight: 700; color: #222; }
.review-sub { font-size: 9.5px; color: #bbb; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #2CB67D;
  font-weight: 600;
}
.review-verified svg { width: 8px; height: 8px; }

.review-stars { color: #f59e0b; font-size: 11px; letter-spacing: 1px; margin-bottom: 4px; }
.review-title { font-size: 12.5px; font-weight: 700; color: #111; margin-bottom: 4px; line-height: 1.35; }
.review-text { font-size: 12px; line-height: 1.6; color: #666; margin-bottom: 0; }

.reviews-more {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.reviews-more:hover { background: #fafafa; border-color: #bbb; }
.reviews-more.is-done { display: none; }

/* ----- GARANTIA / REVERSÃO DE RISCO (bloco novo) ------------------ */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7fdfa;
  border: 1px solid #e6f4ee;
  border-radius: 12px;
  padding: 16px;
}

.guarantee-seal {
  position: relative;
  width: 58px; height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2CB67D;
}
.guarantee-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.guarantee-seal-n { position: relative; font-size: 19px; font-weight: 800; color: #1f8f61; line-height: 1; margin-top: -6px; }
.guarantee-seal-t {
  position: absolute;
  bottom: 15px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1f8f61;
}

.guarantee-box-body h3 { font-size: 13.5px; font-weight: 800; color: #111; margin-bottom: 4px; line-height: 1.3; }
.guarantee-box-body p { font-size: 11.5px; line-height: 1.55; color: #6b7f76; }
.guarantee-box-body strong { color: #1f8f61; font-weight: 700; }

/* ----- FAQ: virou <button> (teclado + leitor de tela) ------------- */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  gap: 12px;
}
.faq-q:focus-visible { outline: 2px solid #2CB67D; outline-offset: 2px; border-radius: 4px; }
.faq-q::after { flex-shrink: 0; }

/* ----- CTA final: card (era style inline) ------------------------- */
.final-card {
  padding: 24px 20px 22px;
  margin: 0 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* ----- STICKY: parcela + área segura do iPhone -------------------- */
.sticky-bottom { padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
.sticky-note { font-size: 9.5px; color: #999; font-weight: 600; margin-top: 1px; }

/* ----- FOOTER: classes no lugar dos styles inline ----------------- */
.footer-seal {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  margin-bottom: 10px; color: #999; font-size: 11px; font-weight: 600;
}
.footer-brand { font-size: 11px; font-weight: 700; color: #999; letter-spacing: 0.08em; margin-bottom: 6px; }
.footer-cnpj { font-size: 9px; color: #ccc; }
.footer-copy { font-size: 8px; color: #ddd; margin-top: 6px; }

/* ----- Acessibilidade: respeita "reduzir movimento" --------------- */
@media (prefers-reduced-motion: reduce) {
  .cta-button { animation: none; }
  .top-bar-dot, .viewing-dot { animation: none; opacity: 1; }
  .carousel-track { transition: none; }
  .social-toast { transition: opacity 0.2s; }
}

/* ----- Imagem do produto dentro do CTA final --------------------- */
.final-product {
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f8;
}
.final-product img { display: block; width: 100%; height: auto; }

/* ----- Slide que mostra a arte inteira, sem corte ----------------- */
/* object-fit:cover enche o quadro mas come 4% de cada lado. Aqui a
   arte aparece completa e um pouco menor, com respiro em volta.     */
.carousel-slide.slide-fit {
  /* gradiente copiado do fundo da propria arte (claro no centro-esquerda,
     escurecendo para o topo-direita) — a borda soma com a imagem */
  background: radial-gradient(125% 105% at 28% 62%, #efeeee 0%, #eae8e9 42%, #dbd9d9 100%);
}
.carousel-slide.slide-fit img {
  object-fit: contain;
  padding: 20px;
}
