/* ============================================================
   GSense — Vitrine HTML style.css
   ------------------------------------------------------------
   Replica 1:1 do PageFly source (g-sense-READY.pagefly).
   Paleta primária: NAVY rgba(0,35,73,0.72).
   ============================================================ */

/* ===== 1. RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== 2. TOKENS (paleta PageFly real) ===== */
:root {
  /* Paleta primária navy do PageFly */
  --c-navy: rgba(0, 35, 73, 0.72);
  --c-navy-solid: rgb(0, 35, 73);
  --c-navy-bg: rgba(0, 35, 73, 0.04);
  --c-navy-mid: rgba(0, 35, 73, 0.54);

  /* Cores texto */
  --c-text: rgb(0, 0, 0);
  --c-text-soft: rgb(74, 74, 74);
  --c-text-muted: rgb(80, 80, 80);
  --c-text-light: rgba(74, 74, 74, 0.88);
  --c-text-footer: rgb(47, 49, 61);

  /* Cores ação */
  --c-accent: #ff8c1a;
  --c-accent-dark: #e67a00;
  --c-success: rgb(40, 167, 68);

  /* Bg */
  --c-bg: #ffffff;
  --c-bg-alt: rgba(0, 35, 73, 0.04);

  /* Border */
  --c-border: #e5e8ee;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 15px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.12);

  --maxw: 1180px;
  --font-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
  font-family: var(--font-base);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 16px;
}

/* ===== 3. CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-5); } }

/* ===== 4. TYPOGRAPHY (tokens PageFly) ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--c-text);
}
.h-hero { font-size: 27px; font-weight: 700; color: var(--c-text); line-height: 1.2; }
.h-section { font-size: 27px; font-weight: 700; color: var(--c-text); text-align: center; line-height: 1.25; }
.h-sub { font-size: 20px; font-weight: 600; color: var(--c-text-soft); }
.h-sub-small { font-size: 15px; font-weight: 600; color: var(--c-text-light); }
.h-card { font-size: 18px; font-weight: 700; color: var(--c-text); line-height: 1.3; }
.h-feature { font-size: 17px; font-weight: 400; color: #fff; text-align: center; }
.txt-body { font-size: 17px; font-weight: 400; color: var(--c-text-muted); line-height: 1.55; }

@media (min-width: 768px) {
  .h-hero { font-size: 32px; }
  .h-section { font-size: 32px; }
}

/* ===== 5. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 32px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
.btn-accent {
  background: linear-gradient(135deg, #ff8c1a 0%, #ff7300 100%);
  color: #fff;
}
.btn-block { width: 100%; }
.btn-lg { padding: 20px 40px; font-size: 18px; }

.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff; border-radius: 50%;
  animation: vtspin 0.7s linear infinite;
}
@keyframes vtspin { to { transform: rotate(360deg); } }

/* ===== 6. ANNOUNCEMENT (S1 navy bar + countdown) ===== */
.announcement {
  background: var(--c-navy);
  color: #fff;
  text-align: right;
  padding: 14px var(--s-4);
  font-size: 16px;
  font-weight: 400;
}
.announcement__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.announcement strong { font-weight: 700; }
.countdown {
  display: inline-flex;
  gap: var(--s-2);
  font-variant-numeric: tabular-nums;
  align-items: center;
}
.countdown__box {
  background: rgba(0,0,0,0.35);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 15px;
  min-width: 38px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.countdown__box span:last-child {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .announcement { text-align: center; font-size: 14px; }
  .announcement__inner { justify-content: center; }
}

/* ===== 7. HEADER LOGO BAND (S2) ===== */
.logo-band {
  background: #fff;
  padding: var(--s-5) 0;
  text-align: center;
}
.logo-band img {
  display: block;
  margin: 0 auto;
  max-height: 80px;
  width: auto;
}

/* ===== 8. SECTION base ===== */
.section { padding: var(--s-7) 0; }
.section--alt { background: var(--c-bg-alt); }
.section--navy { background: var(--c-navy-mid); color: #fff; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: rgba(255,255,255,0.92); }
.section__head { text-align: center; margin-bottom: var(--s-6); max-width: 920px; margin-left: auto; margin-right: auto; }

/* ===== 9. HERO (S3) ===== */
.hero { padding: var(--s-6) 0 var(--s-7); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--s-7); }
}
.hero__badge {
  display: block;
  max-width: 380px;
  margin: var(--s-3) 0;
}
.hero__bullets {
  list-style: none;
  margin: var(--s-5) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.hero__bullets li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: var(--s-2);
  align-items: start;
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.hero__bullets li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 4px;
}
.hero__image img {
  display: block;
  max-width: 100%;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

/* ===== 10. PRESS / "VU DANS" (S4) ===== */
.press { padding: var(--s-5) 0; text-align: center; }
.press h2 { font-size: 22px; font-weight: 700; margin-bottom: var(--s-4); color: var(--c-text); }
.press__banner img { max-width: 100%; width: auto; max-height: 90px; margin: 0 auto; }

/* ===== 11. FEATURES 4-col navy (S5) ===== */
.features-strip {
  background: var(--c-navy-mid);
  color: #fff;
  padding: var(--s-6) 0;
}
.features-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .features-strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.feature-item img {
  width: 88px; height: 88px;
  object-fit: contain;
  margin: 0 auto var(--s-3);
}
.feature-item h4 {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

/* ===== 12. TESTIMONIALS 3 stacked (S6) ===== */
.testimonials { display: flex; flex-direction: column; gap: var(--s-6); max-width: 1080px; margin: 0 auto; }
.testimonial-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0,35,73,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .testimonial-row { grid-template-columns: 280px minmax(0, 1fr); }
  .testimonial-row--reverse { grid-template-columns: minmax(0, 1fr) 280px; }
  .testimonial-row--reverse .testimonial-row__img { order: 2; }
}
.testimonial-row__img { text-align: center; }
.testimonial-row__img img {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--r-md);
}
.testimonial-row__name { font-size: 17px; font-weight: 600; color: var(--c-text-soft); margin-bottom: var(--s-3); }
.testimonial-row__quote { font-size: 16px; color: var(--c-text-muted); font-style: italic; line-height: 1.6; margin-bottom: var(--s-3); }
.testimonial-row__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-success);
}
.testimonial-row__verified::before {
  content: "";
  width: 16px; height: 16px;
  background: var(--c-success);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== 13. BENEFITS 3 cols (S7) ===== */
.section-headline {
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  max-width: 920px;
  margin: 0 auto var(--s-7);
}
@media (min-width: 768px) { .section-headline { font-size: 32px; } }
.benefits-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 900px) { .benefits-3 { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  text-align: center;
  padding: var(--s-4);
}
.benefit__img { display: block; max-width: 200px; height: auto; margin: 0 auto var(--s-4); }
.benefit__title { font-size: 18px; font-weight: 700; color: var(--c-text); margin-bottom: var(--s-3); line-height: 1.3; }
.benefit__txt { font-size: 17px; color: var(--c-text-soft); line-height: 1.55; }

/* ===== 14. SPLIT 2-col (S8 Dr Morel + S9 Garantie) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: var(--s-7); }
  .split--reverse .split__img { order: -1; }
}
.split__title { font-size: 27px; font-weight: 700; margin-bottom: var(--s-4); line-height: 1.25; }
@media (min-width: 768px) { .split__title { font-size: 32px; } }
.split__txt { font-size: 17px; color: var(--c-text-soft); line-height: 1.65; margin-bottom: var(--s-3); }
.split__list { margin-top: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.split__list li {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  gap: var(--s-2);
  font-size: 17px;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.split__list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 3px;
}
.split__img img { width: 100%; height: auto; max-width: 480px; margin: 0 auto; display: block; }
.split__quote {
  font-style: italic;
  font-size: 18px;
  color: var(--c-text);
  margin-top: var(--s-4);
  padding-left: var(--s-4);
  border-left: 3px solid var(--c-navy);
}
.split__quote-attr { font-size: 14px; color: var(--c-text-soft); margin-top: var(--s-2); font-style: normal; font-weight: 600; }

/* ===== 15. OFFER (S10) ===== */
.offer {
  background: #fff;
  border: 2px solid var(--c-navy);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.offer__head { text-align: center; margin-bottom: var(--s-4); }
.offer__title { font-size: 28px; font-weight: 700; margin-bottom: var(--s-3); line-height: 1.2; }
.offer__sub { font-size: 14px; color: var(--c-text-light); font-weight: 600; }
.offer__product-img { display: block; max-width: 280px; margin: 0 auto var(--s-4); }
.offer__cert-badge { display: block; max-width: 340px; margin: 0 auto var(--s-4); }
.offer__bullets { list-style: none; margin: var(--s-4) 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.offer__bullets li {
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  gap: var(--s-2);
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.45;
}
.offer__bullets li::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-success);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* Bundle picker (Kaching style replica) */
.bundle-picker {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}
.bundle-option {
  border: 2px solid #e5e8ee;
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-4) var(--s-4) 52px;
  cursor: pointer;
  background: #fff;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.bundle-option[data-selected="true"] {
  border-color: var(--c-accent);
  background: #fff8f0;
}
.bundle-option::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
}
.bundle-option[data-selected="true"]::before {
  border-color: var(--c-accent);
  background: radial-gradient(circle, var(--c-accent) 0%, var(--c-accent) 50%, #fff 55%);
}
.bundle-option__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.bundle-option__title { font-weight: 800; font-size: 16px; }
.bundle-option__qty { font-size: 13px; color: #666; margin-top: 2px; }
.bundle-option__price { font-size: 22px; font-weight: 800; color: var(--c-text); line-height: 1; }
.bundle-option__price-old { font-size: 13px; color: #999; text-decoration: line-through; }
.bundle-option__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bundle-addons {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px dashed #ddd;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color 0.15s;
}
.addon-row[data-checked="true"] { border-color: var(--c-success); background: #f0fdf4; }
.addon-row__check {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 2px solid #ccc;
  background: #fff;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.addon-row[data-checked="true"] .addon-row__check { background: var(--c-success); border-color: var(--c-success); }
.addon-row[data-checked="true"] .addon-row__check::after { content: "✓"; }
.addon-row__title { font-size: 13px; font-weight: 600; flex: 1; }
.addon-row__price { font-size: 14px; font-weight: 700; }
.addon-row__price-old { font-size: 11px; color: #999; text-decoration: line-through; margin-left: 4px; }

.offer__cta-total {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-soft);
  margin-top: var(--s-2);
}
.offer__cta-total strong { color: var(--c-text); font-size: 18px; font-weight: 800; }
.offer__shipping {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-muted);
  margin-top: var(--s-3);
}
.offer__secure {
  text-align: center;
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: var(--s-2);
  margin-bottom: var(--s-2);
}
.offer__payment-badges { display: flex; justify-content: center; margin-top: var(--s-2); }
.offer__payment-badges img { max-height: 32px; }

/* ===== 16. HOW + SPECS (S11) ===== */
.how-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .how-specs { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
.how-specs h2 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: var(--s-5);
}
@media (min-width: 768px) { .how-specs h2 { font-size: 30px; } }
.how-specs__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.how-specs__list li {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  gap: var(--s-2);
  font-size: 16px;
  color: var(--c-text-soft);
  line-height: 1.55;
}
.how-specs__list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-navy);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 3px;
}
.how-specs__list strong { color: var(--c-text); font-weight: 600; }

/* ===== 17. FAQ (S13) ===== */
.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.faq__item {
  background: #fff;
  border: 1px solid rgba(0,35,73,0.1);
  border-radius: var(--r-md);
  margin-bottom: var(--s-2);
  overflow: hidden;
}
.faq__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-4);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  background: #fff;
  cursor: pointer;
}
.faq__toggle::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--c-navy);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq__item[data-open="true"] .faq__toggle::after { content: "−"; }
.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--s-4);
  color: var(--c-text-soft);
  font-size: 15px;
  line-height: 1.6;
}
.faq__item[data-open="true"] .faq__content {
  max-height: 800px;
  padding: 0 var(--s-4) var(--s-4);
}

/* ===== 18. TRUST ROW (S14) ===== */
.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  text-align: center;
}
@media (min-width: 640px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-item img {
  width: 72px; height: 72px;
  object-fit: contain;
  margin: 0 auto var(--s-3);
}
.trust-item h4 { font-size: 18px; font-weight: 700; margin-bottom: var(--s-2); color: var(--c-text); }
.trust-item p { font-size: 14px; color: var(--c-text-soft); line-height: 1.5; }
.trust-item__reviews-img { max-width: 100%; width: auto; max-height: 72px; }

/* ===== 19. FOOTER (S16) ===== */
.site-footer {
  background: var(--c-navy);
  color: #fff;
  padding: var(--s-7) 0 var(--s-4);
  font-size: 15px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-5);
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer__logo { max-width: 220px; margin-bottom: var(--s-3); }
.site-footer h4 { color: #fff; font-size: 17px; font-weight: 700; margin-bottom: var(--s-3); text-transform: uppercase; letter-spacing: 0.04em; }
.site-footer p { color: #fff; font-size: 15px; line-height: 1.7; margin-bottom: var(--s-2); }
.site-footer a { display: block; color: #fff; padding: 4px 0; }
.site-footer a:hover { opacity: 0.85; }

/* ===== 20. COPYRIGHT (S17) ===== */
.copyright {
  background: var(--c-navy);
  color: #fff;
  text-align: center;
  padding: var(--s-3) var(--s-4);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== 21. CHECKOUT BUFFER PAGE ===== */
.checkout-page {
  min-height: 70vh;
  padding: var(--s-7) 0;
  background: var(--c-bg-alt);
}
.checkout-page__card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--s-6);
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.checkout-page__title { text-align: center; margin-bottom: var(--s-5); font-size: 24px; font-weight: 700; }
.checkout-item {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-border);
  align-items: center;
}
.checkout-item:last-of-type { border-bottom: 0; }
.checkout-item__img {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--c-bg-alt);
  overflow: hidden;
  flex-shrink: 0;
}
.checkout-item__img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item__title { font-weight: 600; font-size: 14px; }
.checkout-item__qty { font-size: 13px; color: var(--c-text-muted); }
.checkout-item__price { margin-left: auto; font-weight: 700; color: var(--c-navy-solid); }
.checkout-total {
  display: flex;
  justify-content: space-between;
  padding: var(--s-4) 0;
  border-top: 2px solid var(--c-border);
  margin-top: var(--s-3);
  font-size: 18px;
  font-weight: 700;
}
.checkout-empty { text-align: center; padding: var(--s-6) 0; color: var(--c-text-muted); }
.checkout-trust {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-4); margin-top: var(--s-4);
  font-size: 12px; color: var(--c-text-muted);
}

/* ============================================================
   KACHING BUNDLES — Replica exata (override do inline CSS PageFly
   que tem display:none nos elementos Kaching até o JS deles rodar)
   ============================================================ */
/* CRÍTICO: forçar visible — inline CSS PageFly esconde por default */
.kaching-bundles,
.kaching-bundles__block,
.kaching-bundles__block--loaded,
.kaching-bundles__bars,
.kaching-bundles__bar,
.kaching-bundles__bar-wrapper,
.kaching-bundles__bar-main,
.kaching-bundles__bar-content,
.kaching-bundles__bar-content-left,
.kaching-bundles__upsell { visibility: visible !important; }
.kaching-bundles__block { display: block !important; }
.kaching-bundles__bars { display: flex !important; flex-direction: column !important; gap: 12px !important; }
.kaching-bundles__bar { display: block !important; }
.kaching-bundles__bar-wrapper { display: block !important; }
.kaching-bundles__bar-main {
  display: grid !important;
  grid-template-columns: 28px 1fr auto !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 18px !important;
}
.kaching-bundles__bar-radio {
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
}
.kaching-bundles__bar-content { display: flex !important; align-items: center !important; justify-content: space-between !important; }
.kaching-bundles__upsell { display: flex !important; }

.kaching-bundles {
  font-family: 'Poppins', system-ui, sans-serif;
  margin: 0 auto 16px;
  max-width: 560px;
  padding: 0 4px;
}
.kaching-bundles *,
.kaching-bundles *::before,
.kaching-bundles *::after {
  box-sizing: border-box;
}
.kaching-bundles__block { display: block; }
.kaching-bundles__block-title {
  font-size: var(--block-title-font-size, 14px);
  font-weight: var(--block-title-font-weight, bold);
  font-style: var(--block-title-font-style, normal);
  color: var(--block-title-color, #000);
  text-align: center;
  margin-bottom: 12px;
}
.kaching-bundles__bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kaching-bundles__bar {
  position: relative;
  border-radius: var(--bar-border-radius, 8px);
  border: 1px solid var(--bar-border-color, rgba(17,16,16,0.3));
  background: var(--bar-background-color, rgba(78,78,78,0.05));
  overflow: visible;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  margin-top: 14px;
}
/* Container outer wrapper precisa de overflow visible também */
.kaching-bundles__bars,
.kaching-bundles__block,
.kaching-bundles { overflow: visible !important; }
.kaching-bundles__bar--selected {
  border: 2px solid var(--bar-selected-border-color, rgba(17,16,16,1));
  background: var(--bar-selected-background-color, rgba(254,246,221,0.5));
}
.kaching-bundles__bar > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.kaching-bundles__bar-container {
  display: block;
  cursor: pointer;
}
.kaching-bundles__bar-most-popular {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--bar-most-popular-background-color, #ff6a00);
  color: var(--bar-most-popular-color, #fff);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--bar-border-radius, 8px);
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  line-height: 1.2;
}
.kaching-bundles__bar-most-popular__content { display: inline; }
.kaching-bundles__bar-wrapper { padding: 0; }
.kaching-bundles__bar-main {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
}
.kaching-bundles__bar-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bar-border-color, #aaa);
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.kaching-bundles__bar--selected .kaching-bundles__bar-radio {
  border-color: var(--bar-selected-border-color, #000);
  background: var(--bar-selected-border-color, #000);
}
.kaching-bundles__bar--selected .kaching-bundles__bar-radio::after {
  content: "";
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  border-radius: 50%;
  background: #fff;
}
.kaching-bundles__bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}
.kaching-bundles__bar-content-left { min-width: 0; flex: 1; }
.kaching-bundles__bar-first-line { display: flex; align-items: baseline; gap: 6px; }
.kaching-bundles__bar-title {
  font-size: var(--bar-title-font-size, 20px);
  font-weight: var(--bar-title-font-weight, bold);
  color: var(--bar-title-color, #000);
  line-height: 1.1;
}
.kaching-bundles__bar-second-line { margin-top: 4px; }
.kaching-bundles__bar-subtitle {
  font-size: var(--bar-subtitle-font-size, 14px);
  font-weight: var(--bar-subtitle-font-weight, normal);
  color: var(--bar-subtitle-color, #555);
}
.kaching-bundles__bar-pricing {
  text-align: right;
  flex-shrink: 0;
  padding-left: 12px;
}
.kaching-bundles__bar-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--bar-price-color, #000);
  line-height: 1;
}
.kaching-bundles__bar-full-price {
  font-size: 13px;
  color: var(--bar-full-price-color, #888);
  text-decoration: line-through;
  margin-top: 4px;
}

/* ===== UPSELLS (Coque + Garantie 2 ans) ===== */
.kaching-bundles__upsell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  margin: 8px;
  background: var(--kaching-upsell-background-color, rgba(255,211,176,0.6));
  color: var(--kaching-upsell-text-color, #000);
  border-radius: 6px;
  font-size: var(--kaching-upsell-font-size, 13px);
  font-weight: var(--kaching-upsell-font-weight, bold);
}
.kaching-bundles__upsell--selected,
.kaching-bundles__upsell:has(.kaching-bundles__upsell__checkbox--selected) {
  background: var(--kaching-upsell-selected-background-color, rgba(255,194,145,0.7));
}
.kaching-bundles__upsell__main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.kaching-bundles__upsell__checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #c46a1f;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: transparent;
}
.kaching-bundles__upsell__checkbox--selected {
  background: #ff6a00;
  border-color: #ff6a00;
  color: #fff;
}
.kaching-bundles__upsell__checkbox svg { display: block; }
.kaching-bundles__upsell__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.kaching-bundles__upsell__image {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  padding: 2px;
}
.kaching-bundles__upsell__content { flex: 1; min-width: 0; }
.kaching-bundles__upsell__text {
  cursor: pointer;
  font-size: var(--kaching-upsell-font-size, 13px);
  font-weight: var(--kaching-upsell-font-weight, bold);
  color: var(--kaching-upsell-text-color, #000);
  line-height: 1.2;
}
.kaching-bundles__upsell__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.kaching-bundles__upsell__price {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.kaching-bundles__upsell__full-price {
  font-size: 11px;
  color: #888;
  text-decoration: line-through;
  margin-top: 3px;
}
.kaching-bundles__free-gift__divider { display: none; }

/* Upsells aparecem só dentro do bar selecionado */
.kaching-bundles__bar:not(.kaching-bundles__bar--selected) .kaching-bundles__upsell { display: none !important; }

/* ===== LEGACY .vt-bundle (mantida por enquanto pra fallback) ===== */
.vt-bundle {
  max-width: 480px;
  margin: 0 auto 20px;
  font-family: var(--font-base, system-ui);
  display: none; /* hidden — substituído por .kaching-bundles */
}
.vt-bundle__banner {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  margin-bottom: 10px;
}
.vt-bundle__option {
  border: 2px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.vt-bundle__option[data-selected="true"] {
  border-color: #f97316;
}
.vt-bundle__option-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
}
.vt-bundle__option[data-selected="true"] .vt-bundle__option-head {
  background: #fff8ef;
}
.vt-bundle__radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #999;
  background: #fff;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
}
.vt-bundle__option[data-selected="true"] .vt-bundle__radio {
  border-color: #000;
  background: #000;
}
.vt-bundle__option[data-selected="true"] .vt-bundle__radio::after {
  content: "";
  position: absolute;
  top: 4px; left: 4px; right: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
}
.vt-bundle__badge {
  position: absolute;
  top: 0; right: 0;
  background: #f97316;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 0 8px 0 8px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.vt-bundle__title-block { min-width: 0; }
.vt-bundle__title { font-weight: 800; font-size: 15px; color: #1a1a1a; line-height: 1.2; }
.vt-bundle__qty { font-size: 12px; color: #777; margin-top: 3px; }
.vt-bundle__price-block { text-align: right; flex-shrink: 0; }
.vt-bundle__price { font-size: 18px; font-weight: 800; color: #1a1a1a; line-height: 1; }
.vt-bundle__price-old { font-size: 12px; color: #999; text-decoration: line-through; margin-top: 2px; }

/* Add-ons */
.vt-bundle__addons {
  background: #fff5e6;
  padding: 0 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vt-bundle__option:not([data-selected="true"]) .vt-bundle__addons { display: none; }
.vt-bundle__addon {
  display: grid;
  grid-template-columns: 22px 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #f8a865;
  border-radius: 6px;
  cursor: pointer;
}
.vt-bundle__addon input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.vt-bundle__addon-check {
  width: 18px; height: 18px;
  border: 2px solid #aaa;
  border-radius: 3px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.vt-bundle__addon input:checked + .vt-bundle__addon-check {
  background: #f97316;
  border-color: #f97316;
}
.vt-bundle__addon input:checked + .vt-bundle__addon-check::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.vt-bundle__addon-icon-wrap {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vt-bundle__addon-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.vt-bundle__addon-name {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  min-width: 0;
}
.vt-bundle__addon-name strong { font-weight: 700; }
.vt-bundle__addon-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}
.vt-bundle__addon-now { font-size: 13px; font-weight: 800; color: #1a1a1a; line-height: 1; }
.vt-bundle__addon-was { font-size: 10px; color: #999; text-decoration: line-through; margin-top: 2px; }

/* ===== PageFly CountDown override (hidden default → forçar visible) ===== */
.pf-countdown__outter2,
.pf-countdown__outter2 *,
.pf-countdown__inner,
.pf-countdown__inner * {
  visibility: visible !important;
}

/* ===== PageFly List items override (S9 garantie + outros) ===== */
/* O SVG do ícone vem com display:block do reset PageFly, quebra texto pra próxima linha.
   Força flex-row alinhado pra todos List2.Item2 com icon inline. */
li[data-pf-type="List2.Item2"] {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
li[data-pf-type="List2.Item2"] > svg,
li[data-pf-type="List2.Item2"] > .pf-icon2-1 {
  display: inline-block !important;
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }
