/* =========================================================
   CAUTERMIX — Página de Vendas estilo Hotmart / Monetizze
   Paleta:
   - Fundo branco/cream  -> leitura limpa
   - Vermelho/rosa escuro -> urgência, headlines (capilar feminino)
   - Verde vibrante CTA  -> alta conversão (padrão Hotmart)
   - Amarelo highlight   -> destaque marca-texto
   - Dourado discreto    -> selo premium
   ========================================================= */

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F7F2EE;
  --bg-gray:      #F4F1ED;
  --line:         #E7DDD7;

  --ink-900:      #1A1118;
  --ink-700:      #3D2E36;
  --ink-500:      #6F5E67;
  --ink-300:      #B7A8AF;

  --brand:        #8B1538;     /* vinho/rosa escuro - capilar feminino */
  --brand-dark:   #5C0A24;
  --brand-light:  #C82758;

  --highlight:    #FFE872;     /* amarelo marca-texto */
  --highlight-2:  #FFD93D;

  --cta:          #00B843;     /* verde Hotmart */
  --cta-dark:     #009638;
  --cta-light:    #1DD15B;

  --warn:         #E63946;
  --gold:         #C9A14A;

  --shadow-sm:    0 2px 8px rgba(60, 14, 39, .08);
  --shadow-md:    0 10px 24px rgba(60, 14, 39, .14);
  --shadow-lg:    0 24px 60px rgba(60, 14, 39, .22);
  --shadow-cta:   0 14px 32px rgba(0, 184, 67, .35);

  --radius:       12px;
  --radius-lg:    20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
sup { font-size: .55em; vertical-align: super; opacity: .7; }
mark {
  background-color: var(--highlight);
  background-image: linear-gradient(180deg, transparent 60%, var(--highlight) 60%);
  color: inherit;
  padding: 0 .15em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 2px;
}
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }

/* ============ URGENCY BAR ============ */
.urgency-bar {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
}
.urgency-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 11px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap; text-align: center;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 0 rgba(255,232,114,.7);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,232,114,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,232,114,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,232,114,0); }
}
.countdown {
  background: rgba(0,0,0,.25);
  padding: 4px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--highlight);
  letter-spacing: 1px;
}
.urgency-bar__divider { opacity: .55; }

/* ============ COD BAR ============ */
.cod-bar {
  background: linear-gradient(90deg, #00B843, #00D653);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid rgba(0,0,0,.08);
}
.cod-bar__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  text-align: center; flex-wrap: wrap;
}
.cod-bar__icon { font-size: 22px; }
.cod-bar strong { font-weight: 800; }

/* ============ COD HIGHLIGHT (na oferta) ============ */
.cod-highlight {
  display: flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, #00B843, #009638);
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 0 26px;
  box-shadow: 0 14px 32px rgba(0, 184, 67, .28);
}
.cod-highlight__icon {
  font-size: 38px;
  background: rgba(255,255,255,.18);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cod-highlight strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.cod-highlight span { font-size: 14px; opacity: .95; line-height: 1.5; }

@media (max-width: 600px) {
  .cod-highlight { flex-direction: column; text-align: center; }
}

/* ============ COD FLAG nos cards ============ */
.cod-flag {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 0 6px 14px rgba(0, 184, 67, .35);
}
.cod-flag--green { background: var(--cta-dark); }

.cod-note {
  display: inline-block;
  margin-top: 8px;
  background: #DFFFE9;
  color: var(--cta-dark);
  border: 1px solid #9EE7B7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
}

/* ============ PM money ============ */
.pm--money { background: #FFF7DC; color: #6B3F00; border-color: #E0BD2E; }

/* ============ BRAND HEADER ============ */
.brand-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.brand-header__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-dark);
  letter-spacing: .5px;
}
.brand-header__seal {
  text-align: right;
  display: flex; flex-direction: column;
  font-size: 12px;
}
.seal-small { color: var(--gold); letter-spacing: 2px; }
.seal-small__text { color: var(--ink-500); font-weight: 600; }

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(255,232,114,.25), transparent 70%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 36px 0 56px;
  text-align: center;
}
.hero__alert {
  display: inline-block;
  background: #FFE8E8;
  border: 1px solid #FFB3B3;
  color: #B81C1C;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero__alert span { font-weight: 900; margin-right: 4px; }
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4.5vw, 42px);
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0 0 18px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.hero__sub {
  font-size: 18px;
  color: var(--ink-700);
  max-width: 680px;
  margin: 0 auto 30px;
}
.hero__sub strong { color: var(--brand-dark); }
.hero__cta-hint {
  margin: 18px 0 14px;
  color: var(--ink-500);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.trust-pills {
  display: flex; gap: 22px; justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 600;
}
.trust-pills--center { justify-content: center; }

/* ============ VIDEO FRAMES ============ */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1A0E14, #3B0E26);
}
.video-frame--wide { aspect-ratio: 16 / 9; }
.video-frame--portrait { aspect-ratio: 9 / 16; max-width: 100%; }
.video-frame--reels {
  max-width: 360px;
  margin: 24px auto 0;
  background: #000;
}
.video-frame--reels video { object-fit: contain; }
.video-frame__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,232,114,.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(200,39,88,.25), transparent 60%),
    linear-gradient(135deg, #2A0F1B, #4D0F2A);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--highlight);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
  transition: transform .15s ease;
}
.play-btn:hover { transform: scale(1.05); }
.play-btn__icon {
  width: 0; height: 0;
  border-left: 22px solid var(--brand-dark);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-frame__hint {
  background: rgba(0,0,0,.55);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}
.video-frame__caption {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: rgba(0,0,0,.65);
  color: var(--highlight);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
}
.video-frame video, .video-frame iframe {
  width: 100%; height: 100%; object-fit: cover; border: 0;
}

/* ============ BUY BUTTON ============ */
.btn-buy {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 16px 24px;
  background: linear-gradient(180deg, var(--brand-light), var(--brand));
  color: #fff;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  box-shadow: 0 14px 32px rgba(139, 21, 56, .35);
  transition: transform .15s ease, box-shadow .2s ease;
  border: 0;
  cursor: pointer;
}
.btn-buy:hover { transform: translateY(-2px); }
.btn-buy__title {
  font-weight: 800; font-size: 18px;
  letter-spacing: .5px;
}
.btn-buy__sub {
  font-size: 13px;
  font-weight: 500;
  opacity: .9;
  margin-top: 4px;
}
.btn-buy--lg .btn-buy__title { font-size: 20px; }
.btn-buy--green {
  background: linear-gradient(180deg, var(--cta-light), var(--cta));
  box-shadow: var(--shadow-cta);
}
.btn-buy--green:hover {
  background: linear-gradient(180deg, var(--cta), var(--cta-dark));
  box-shadow: 0 18px 38px rgba(0, 184, 67, .5);
}
.btn-buy--pulse {
  animation: btnPulse 1.8s infinite;
}
@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}

/* ============ BLOCKS ============ */
.block { padding: 60px 0; }
.block--light { background: var(--bg-soft); }
.block--gray { background: var(--bg-gray); }
.block--offer {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,184,67,.06), transparent 70%),
    #fff;
}
.block--final {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  text-align: center;
}
.eyebrow {
  display: inline-block;
  background: var(--brand-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin: 0 auto 18px;
}
.block__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.22;
  color: var(--ink-900);
  margin: 0 0 16px;
  text-align: center;
}
.block__title--center { text-align: center; }
.block__title .brand {
  color: var(--brand-dark);
}
.block__sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink-500);
  max-width: 620px;
  margin: 0 auto 30px;
}
.block__sub--center { text-align: center; }

.lead {
  font-size: 18px;
  color: var(--ink-700);
  text-align: center;
  margin: 18px auto 28px;
  max-width: 640px;
}

/* ============ PROBLEM LIST ============ */
.problem-list {
  list-style: none; padding: 0;
  display: grid; gap: 14px;
  margin: 30px 0;
}
.problem-list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--warn);
  border-radius: 10px;
  padding: 16px 18px 16px 58px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.problem-list li .x {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #FFE2E2;
  color: var(--warn);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.callout {
  background: #FFF8E1;
  border: 1px dashed #E0BD2E;
  border-radius: 12px;
  padding: 20px 22px;
  color: var(--ink-700);
  font-size: 17px;
  margin-top: 28px;
}
.callout strong { color: var(--brand-dark); }

/* ============ PRODUCT SHOT ============ */
.product-shot {
  display: flex; justify-content: center;
  margin: 28px 0 10px;
}
.product-shot__img {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(60, 14, 39, .25));
}

/* ============ CHECK LIST ============ */
.check-list-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  text-align: center;
  margin: 36px 0 18px;
  color: var(--ink-900);
}
.check-list {
  list-style: none; padding: 0;
  display: grid; gap: 10px;
  margin: 0 auto;
  max-width: 640px;
}
.check-list li {
  position: relative;
  padding: 14px 18px 14px 52px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 14px;
}
.check-list strong { color: var(--brand-dark); font-weight: 700; }

/* ============ STEPS ============ */
.steps {
  display: grid; gap: 16px;
  margin: 30px 0 36px;
}
.step {
  display: flex; align-items: flex-start; gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 26px;
}
.step h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 6px;
  color: var(--ink-900);
  font-size: 20px;
}
.step p { margin: 0; color: var(--ink-500); }

/* ============ VIDEO GRID ============ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.video-grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 560px;
  margin: 24px auto;
}
@media (max-width: 720px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid--two { grid-template-columns: 1fr; max-width: 320px; }
}

/* ============ PHOTO GRID ============ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
.photo-card {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.photo-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f0e8e3;
  overflow: hidden;
}
.photo-card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-card__media span {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.65);
  color: var(--highlight);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  z-index: 2;
}
.photo-card figcaption {
  padding: 14px 16px;
  color: var(--ink-700);
  font-size: 14px;
  font-style: italic;
}
.photo-card figcaption strong { color: var(--ink-900); font-style: normal; font-size: 12px; }
@media (max-width: 720px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .photo-grid { grid-template-columns: 1fr; } }

/* ============ REVIEWS ============ */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 720px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--highlight-2); letter-spacing: 3px; font-size: 17px; margin-bottom: 8px; }
.review p { margin: 0 0 14px; color: var(--ink-700); font-size: 15px; line-height: 1.65; }
.review footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--highlight);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}
.review footer strong { display: block; color: var(--ink-900); font-size: 14px; }
.review footer small { color: var(--ink-500); font-size: 12px; }

/* ============ OFFER / PRICING ============ */
.offer-banner {
  display: flex; justify-content: center;
  margin-bottom: 8px;
}
.offer-banner span {
  background: linear-gradient(90deg, #FFD93D, #FFB400);
  color: #6B3F00;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 180, 0, .35);
}

.offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 36px 0 28px;
}
.offer-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
}
.offer-card--featured {
  border-color: var(--cta);
  background: linear-gradient(180deg, #F4FFF8, #FFFFFF);
  box-shadow: 0 28px 60px rgba(0, 184, 67, .22);
  transform: scale(1.02);
}
.ribbon {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--cta);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 184, 67, .35);
}
.offer-card__header { text-align: center; }
.offer-card__tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.offer-card__tag--featured { background: #DFFFE9; color: var(--cta-dark); }
.offer-card__header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: var(--ink-900);
  margin: 0 0 6px;
  line-height: 1.2;
}
.offer-card__header small {
  font-size: 14px;
  color: var(--ink-500);
  font-weight: 500;
}

.offer-card__image {
  display: flex; justify-content: center; align-items: flex-end;
  margin: 14px 0 6px;
  min-height: 200px;
}
.offer-card__image img {
  max-height: 220px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 16px 24px rgba(60, 14, 39, .25));
}
.bottle {
  width: 110px; height: 150px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.3), transparent 50%),
    linear-gradient(180deg, var(--brand), var(--brand-dark));
  border-radius: 20px 20px 16px 16px;
  position: relative;
  color: var(--highlight);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 32px;
}
.bottle::before {
  content: '';
  position: absolute;
  top: -10px;
  width: 40px; height: 18px;
  background: #1A0E14;
  border-radius: 6px 6px 4px 4px;
}
.bottle--double {
  width: 160px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.3), transparent 50%),
    linear-gradient(135deg, var(--brand-light), var(--brand-dark));
}

.offer-card__price {
  text-align: center;
  margin: 18px 0 20px;
  padding: 18px 16px;
  background: var(--bg-soft);
  border-radius: 14px;
  border: 1px dashed var(--brand-light);
}
.offer-card--featured .offer-card__price {
  background: #F0FFF5;
  border-color: var(--cta);
}
.offer-card__from {
  display: block;
  color: var(--ink-500);
  font-size: 14px;
  font-weight: 500;
}
.offer-card__from s { color: var(--warn); }
.offer-card__by {
  display: block;
  color: var(--ink-500);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.offer-card__installment {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 2px;
  margin-top: 4px;
  color: var(--brand-dark);
  line-height: 1;
}
.offer-card--featured .offer-card__installment { color: var(--cta-dark); }
.installment-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-top: 16px;
  margin-right: 4px;
}
.installment-currency {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 26px;
  margin-top: 14px;
}
.installment-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 76px;
  letter-spacing: -2px;
}
.installment-value small {
  font-size: 38px;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 900;
}
.installment-foot {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
}
.offer-card__cash {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-500);
}
.offer-features {
  list-style: none; padding: 0;
  display: grid; gap: 8px;
  margin: 0 0 20px;
}
.offer-features li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink-700);
}
.offer-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}

@media (max-width: 720px) {
  .offers { grid-template-columns: 1fr; }
  .offer-card--featured { transform: none; }
}

/* ============ PAYMENT / SECURITY ============ */
.payment-methods {
  margin: 24px 0 18px;
  text-align: center;
}
.payment-methods > span {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.pm-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.pm {
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  color: var(--ink-700);
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}
.pm--pix { background: #00B8A9; color: #fff; border-color: #00B8A9; }
.security-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  text-align: center;
}
.security-strip div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 12px;
}
.security-strip strong {
  display: block;
  color: var(--ink-900);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
}
.security-strip span {
  display: block;
  color: var(--ink-500);
  font-size: 12px;
}
@media (max-width: 600px) {
  .security-strip { grid-template-columns: 1fr; }
}

/* ============ GUARANTEE ============ */
.guarantee {
  background: linear-gradient(180deg, #FFFBEF, #FFF6DA);
  border: 2px dashed var(--highlight-2);
  border-radius: 20px;
  padding: 32px;
  display: flex; align-items: center; gap: 28px;
}
.guarantee__seal {
  flex-shrink: 0;
  width: 170px; height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, #FFE872, #E0BD2E);
  color: #6B3F00;
  border: 5px dashed rgba(255,255,255,.75);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(255, 180, 0, .35);
  padding: 14px;
}
.guarantee__top { font-size: 13px; letter-spacing: 3px; }
.guarantee__big { font-size: 64px; line-height: .9; margin: 2px 0; }
.guarantee__bottom { font-size: 14px; letter-spacing: 3px; }
.guarantee__sub { font-size: 10px; letter-spacing: 2px; margin-top: 4px; opacity: .85; }
.guarantee__copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.guarantee__copy p { margin: 0 0 10px; color: var(--ink-700); }
.guarantee__copy p strong { color: var(--brand-dark); }
.guarantee__pill {
  display: inline-block;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--highlight-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
}
@media (max-width: 720px) {
  .guarantee { flex-direction: column; text-align: center; }
}

/* ============ FAQ ============ */
.faq { display: grid; gap: 10px; margin-top: 20px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-900);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--brand);
  font-weight: 400;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item p { margin: 12px 0 0; color: var(--ink-500); font-size: 15px; }

/* ============ FINAL CTA ============ */
.final__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.6vw, 32px);
  margin: 0 0 14px;
  color: var(--ink-900);
}
.final__sub {
  color: var(--ink-500);
  margin: 0 0 24px;
}

/* ============ FOOTER ============ */
.footer {
  background: #1A0E14;
  color: rgba(255,255,255,.7);
  padding: 40px 0 30px;
  text-align: center;
}
.footer__logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 12px;
}
.footer p { margin: 0 0 12px; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 14px; }
.footer small { display: block; font-size: 12px; opacity: .6; margin-top: 8px; }
.footer__links {
  margin-top: 14px;
  font-size: 13px;
}
.footer__links a:hover { color: var(--highlight); }

/* ============ LEGAL PAGES (termos / privacidade) ============ */
.legal-body { background: #FBF8F4; }
.legal-back {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
}
.legal-back:hover { color: var(--brand); }
.legal {
  padding: 48px 0 80px;
}
.legal__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 38px);
  color: var(--ink-900);
  margin: 0 0 6px;
}
.legal__updated {
  color: var(--ink-500);
  font-size: 14px;
  margin: 0 0 24px;
}
.legal__lead {
  background: #fff;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  padding: 18px 20px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px;
  box-shadow: var(--shadow-sm);
}
.legal h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-dark);
  margin: 32px 0 12px;
  line-height: 1.3;
}
.legal p {
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal ul {
  padding-left: 22px;
  margin: 0 0 14px;
  color: var(--ink-700);
}
.legal ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--brand-dark); }
.legal .fill {
  background: #FFEDA8;
  background-image: none;
  color: #6B3F00;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px dashed #C9A14A;
}
.legal__foot {
  margin-top: 36px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink-700);
}

/* ============ STICKY BUY ============ */
.sticky-buy {
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  background: linear-gradient(180deg, var(--cta-light), var(--cta));
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 184, 67, .45);
  z-index: 80;
  font-family: 'Montserrat', sans-serif;
  min-height: 56px;
}
.sticky-buy strong { display: block; font-size: 16px; font-weight: 800; }
.sticky-buy span { font-size: 11px; opacity: .9; }
.sticky-buy__cta {
  background: rgba(0,0,0,.18);
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .sticky-buy { display: flex; }
  body { padding-bottom: 86px; }
}

/* =========================================================
   MOBILE REFINEMENTS (mobile-first polish)
   ========================================================= */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }

  /* Topbar - quebrar bem em telas pequenas */
  .topbar__inner,
  .urgency-bar__inner {
    font-size: 12.5px;
    padding: 9px 14px;
    gap: 6px;
  }
  .urgency-bar__divider { display: none; }
  .cod-bar { font-size: 13px; }
  .cod-bar__inner { padding: 10px 14px; gap: 8px; }
  .cod-bar__icon { font-size: 18px; }

  /* Header */
  .brand-header__inner { padding: 12px 16px; gap: 8px; }
  .brand-header__seal { display: none; }
  .logo__text { font-size: 18px; }
  .logo__mark { width: 32px; height: 32px; font-size: 15px; }

  /* Hero */
  .hero { padding: 24px 0 40px; }
  .hero__alert { font-size: 11.5px; padding: 7px 14px; }
  .hero__title { font-size: 26px; line-height: 1.2; }
  .hero__sub { font-size: 16px; margin-bottom: 22px; }
  .hero__cta-hint { font-size: 12px; letter-spacing: 1.5px; }
  .trust-pills { gap: 12px; font-size: 13px; }

  /* Blocks */
  .block { padding: 44px 0; }
  .block__title { font-size: 22px; line-height: 1.25; }
  .block__sub { font-size: 15px; }
  .eyebrow { font-size: 10px; letter-spacing: 1.5px; padding: 5px 11px; }

  /* Lead, listas */
  .lead { font-size: 16px; }
  .check-list-title { font-size: 19px; margin: 28px 0 14px; }
  .check-list li, .problem-list li { font-size: 15px; padding-top: 12px; padding-bottom: 12px; }
  .check-list li { padding-left: 46px; }
  .check-list li::before { left: 12px; width: 24px; height: 24px; font-size: 13px; }
  .callout { font-size: 15px; padding: 16px 18px; }

  /* Vídeos - garantir que não estourem a tela */
  .video-frame { border-radius: 14px; }
  .play-btn { width: 64px; height: 64px; border-width: 3px; }
  .play-btn__icon {
    border-left-width: 18px;
    border-top-width: 11px;
    border-bottom-width: 11px;
  }
  .video-frame--reels { max-width: 280px; }
  .video-grid--two { gap: 12px; }

  /* Modo de usar */
  .step { padding: 18px 16px; gap: 14px; }
  .step__num { width: 46px; height: 46px; font-size: 22px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 15px; }

  /* Product shot */
  .product-shot__img { max-width: 280px; }

  /* Reviews */
  .review { padding: 18px 16px; }
  .review p { font-size: 14px; }

  /* Oferta */
  .offer-banner span { font-size: 12px; padding: 9px 16px; letter-spacing: 1px; }
  .offer-card { padding: 24px 18px 22px; border-radius: 14px; }
  .offer-card__header h3 { font-size: 22px; }
  .offer-card__image { min-height: 160px; }
  .offer-card__image img { max-height: 180px; }
  .offer-card__price { padding: 16px 12px; }
  .installment-value { font-size: 60px; }
  .installment-value small { font-size: 30px; }
  .installment-currency { font-size: 22px; margin-top: 12px; }
  .installment-label { font-size: 16px; margin-top: 14px; }
  .cod-highlight { padding: 16px 18px; gap: 12px; }
  .cod-highlight__icon { width: 52px; height: 52px; font-size: 30px; }
  .cod-highlight strong { font-size: 16px; }
  .cod-highlight span { font-size: 13px; }

  /* Guarantee */
  .guarantee { padding: 22px 18px; gap: 18px; }
  .guarantee__seal { width: 130px; height: 130px; }
  .guarantee__big { font-size: 48px; }
  .guarantee__copy h3 { font-size: 20px; }

  /* FAQ */
  .faq__item { padding: 14px 16px; }
  .faq__item summary { font-size: 15px; }
  .faq__item p { font-size: 14px; }

  /* Final CTA */
  .final__title { font-size: 22px; }

  /* Botões */
  .btn-buy {
    padding: 14px 18px;
    min-height: 56px;
    border-radius: 12px;
  }
  .btn-buy__title { font-size: 16px; }
  .btn-buy--lg .btn-buy__title { font-size: 17px; }
  .btn-buy__sub { font-size: 12.5px; }

  /* Footer */
  .footer { padding: 32px 0 24px; }
  .footer__logo { font-size: 19px; }
  .footer p { font-size: 13px; }
  .footer__links { font-size: 12px; }
}

/* Telas muito pequenas (Galaxy Fold, etc) */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 22px; }
  .block__title { font-size: 20px; }
  .installment-value { font-size: 52px; }
  .installment-value small { font-size: 26px; }
  .sticky-buy { padding: 10px 12px; }
  .sticky-buy strong { font-size: 14px; }
  .sticky-buy__cta { padding: 10px 11px; font-size: 12px; }
}

/* Foco visível para acessibilidade (teclado) */
:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn-buy:focus-visible,
.sticky-buy:focus-visible {
  outline-color: #fff;
  outline-offset: -3px;
}

/* Respeitar preferências de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
