/* ==========================================================================
   LABIAL PRIME — Sistema Visual de Preenchimento Labial
   Paleta: rosa queimado / terracota / champagne / nude / off-white quente (premium feminino)
   Tipografia: Sora (títulos) · Inter (corpo/botões) · Cormorant Garamond (detalhes)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap");

:root {
  /* Paleta principal */
  --petrol:        #B85C4B;
  --petrol-dark:   #8E4A52;
  --jade:          #C96B73;   /* coral rosé — acento secundário */
  --jade-dark:     #A45259;
  --amber:         #D96C7A;   /* rosa queimado — cor de ação */
  --amber-dark:    #B85C4B;
  --gold:          #D8B48A;   /* champagne */

  /* Superfícies */
  --bg:            #FFF8F4;   /* off-white premium */
  --surface:       #FFFFFF;
  --surface-alt:   #F6E8E2;   /* off-white quente */
  --surface-dark:  #B85C4B;
  --surface-darkest: #8E4A52;

  /* Texto */
  --ink:           #5A3A36;   /* grafite */
  --ink-soft:      #7A5049;
  --ink-muted:     #A98980;
  --on-dark:       #FFF8F4;
  --on-dark-soft:  #F0D9CE;

  /* Semântica */
  --primary:       #B85C4B;
  --action:        #D96C7A;   /* coral */
  --action-dark:   #B85C4B;
  --action-contrast: #FFFFFF;
  --accent:        #C96B73;   /* coral rosé */
  --accent-tint:   rgba(201,107,115,0.15);
  --success:       #C96B73;
  --success-tint:  rgba(201,107,115,0.15);
  --border:        #EAD7CF;
  --border-strong: #C9A47C;

  /* Sombras */
  --shadow-sm:       0 1px 3px rgba(184,92,75,0.07);
  --shadow-md:       0 6px 20px rgba(184,92,75,0.10);
  --shadow-lg:       0 14px 36px rgba(184,92,75,0.13);
  --shadow-elevated: 0 24px 56px -12px rgba(142,74,82,0.38);

  /* Layout */
  --radius-sm:  8px;
  --radius-md:  18px;
  --radius-lg:  22px;
  --radius-xl:  28px;
  --transition: 160ms ease;

  /* Tipografia */
  --font-heading:  "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:     "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-elegant:  "Cormorant Garamond", Georgia, serif;

  /* Escala fluída */
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --step-1: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --step-2: clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem);
  --step-3: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  --step-4: clamp(2.25rem, 1.85rem + 1.8vw, 3.25rem);

  /* Espaço */
  --space-1: 0.5rem;  --space-2: 0.75rem; --space-3: 1rem;
  --space-4: 1.5rem;  --space-5: 2rem;    --space-6: 3rem;
  --space-7: 4.5rem;  --space-8: 6rem;

  --carousel-card-w: 130px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul  { margin: 0; padding: 0; list-style: none; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--petrol);
  line-height: 1.2;
  margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 3px solid var(--jade); outline-offset: 2px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: var(--space-4); }
.container--wide { max-width: 1280px; }

.section {
  padding-block: var(--space-8);
  position: relative;
  scroll-margin-top: 48px;
}
.section--alt { background: var(--surface-alt); }
.section--dark {
  color: var(--on-dark);
  background: linear-gradient(150deg, var(--petrol-dark) 0%, var(--petrol) 60%, #C9756A 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: calc(-1 * var(--space-5));
  padding-top: calc(var(--space-8) + var(--space-5));
  box-shadow: var(--shadow-elevated);
  z-index: 1;
}
.section--dark + .section--dark { margin-top: 0; border-radius: 0; box-shadow: none; }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--on-dark); }
.section--dark .section-subtitle { color: var(--on-dark-soft); }
.section--dark .section-lead      { color: var(--on-dark-soft); }
.section--dark .hl { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--petrol);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 0.9rem 0.35rem 0.65rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 999px; background: var(--gold); flex-shrink: 0;
}
.eyebrow--dark {
  background: rgba(0,0,0,0.20);
  border-color: rgba(255,255,255,0.30);
  color: var(--on-dark);
}
.eyebrow--dark::before { background: var(--gold); }

.section-title    { font-size: var(--step-3); font-weight: 800; margin-top: var(--space-2); }
.section-subtitle { color: var(--ink-soft); margin-top: var(--space-2); font-size: var(--step-1); }
.section-lead     { margin-top: var(--space-3); color: var(--ink-soft); font-size: var(--step-1); max-width: 56ch; margin-inline: auto; }

.hl  { color: var(--amber); }
.hl2 { color: var(--jade-dark); }
.section--dark .hl2 { color: var(--gold); }

/* traços/marcações — riscos manuais sob as palavras-chave, só na headline do hero */
.hero-headline .hl, .hero-headline .hl2 { position: relative; display: inline-block; padding-inline: 0.06em; }
.hero-headline .hl::after, .hero-headline .hl2::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: -0.1em;
  height: 0.2em;
  border-radius: 999px;
  transform: rotate(-1.2deg);
  z-index: -1;
}
.hero-headline .hl::after  { background: var(--amber); opacity: 0.28; }
.hero-headline .hl2::after { background: var(--gold);  opacity: 0.45; transform: rotate(1deg); }

/* detalhe tipográfico premium */
.elegant { font-family: var(--font-elegant); font-style: italic; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(120deg, var(--petrol-dark) 0%, var(--petrol) 40%, #C9756A 100%);
  color: var(--on-dark);
  text-align: center; font-size: 0.78rem; font-weight: 700;
  padding: 0.5rem 1rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
  box-shadow: 0 2px 12px rgba(142,74,82,0.40);
  border-bottom: 1px solid rgba(216,180,138,0.25);
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.95rem; padding: 0.9rem 1.8rem;
  border-radius: var(--radius-md); border: 1.5px solid transparent;
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  min-height: 50px;
}
.btn:hover { transform: translateY(-2px); }

/* botão coral primário — usado nas seções claras */
.btn-primary {
  background: linear-gradient(180deg, #E98B82 0%, #D96C7A 45%, #B85C4B 100%);
  color: #FFFFFF;
  border: 1.5px solid rgba(216,180,138,0.65);
  box-shadow:
    0 0 0 4px rgba(216,180,138,0.16),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 10px 32px -4px rgba(217,108,122,0.70),
    0 4px 14px rgba(0,0,0,0.18);
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
  position: relative;
  animation: btn-pulse 2.6s ease-in-out infinite;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #F0A79F 0%, #E98B82 45%, #C96B73 100%);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 5px rgba(216,180,138,0.24),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 14px 36px -4px rgba(217,108,122,0.80),
    0 6px 18px rgba(0,0,0,0.20);
  animation-play-state: paused;
}
.btn-primary::after {
  content: "\2192"; margin-left: 0.3em; display: inline-block;
  animation: btn-arrow-nudge 1.3s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes btn-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary, .btn-primary::after { animation: none; }
}

/* botão claro (creme/champagne) — somente dentro de seções escuras, para contraste */
.section--dark .btn-primary,
.section--dark .btn-pill-cta,
#amostras-root .btn-primary,
#amostras-root .btn-pill-cta,
.pricing-duo__premium .btn-primary,
.pricing-duo__premium .btn-pill-cta,
.upsell-modal .btn-primary,
.upsell-modal .btn-pill-cta {
  background: linear-gradient(180deg, #FFFDFB 0%, #FFF8F4 55%, #F6E8E2 100%);
  color: var(--petrol);
  border: 1.5px solid rgba(216,180,138,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(0,0,0,0.04),
    0 10px 28px -6px rgba(90,58,54,0.35),
    0 4px 12px rgba(90,58,54,0.15);
  text-shadow: none;
}
.section--dark .btn-primary:hover,
.section--dark .btn-pill-cta:hover,
#amostras-root .btn-primary:hover,
#amostras-root .btn-pill-cta:hover,
.pricing-duo__premium .btn-primary:hover,
.pricing-duo__premium .btn-pill-cta:hover,
.upsell-modal .btn-primary:hover,
.upsell-modal .btn-pill-cta:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFB 55%, #FBEFE7 100%);
  filter: brightness(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(0,0,0,0.04),
    0 14px 34px -6px rgba(90,58,54,0.42),
    0 6px 16px rgba(90,58,54,0.18);
}

/* botão outline */
.btn-outline {
  background: linear-gradient(180deg, #ffffff 0%, #F6E8E2 100%);
  color: var(--petrol);
  border: 1.5px solid var(--border-strong);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 4px 12px rgba(184,92,75,0.08);
}
.btn-outline:hover {
  background: linear-gradient(180deg, #FFF8F4 0%, #F0DCCF 100%);
  border-color: var(--petrol);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 6px 16px rgba(184,92,75,0.14);
}
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  padding-block: var(--space-7) var(--space-6);
  text-align: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(216,180,138,0.12), transparent 42%),
    radial-gradient(ellipse at 20% 80%, rgba(201,107,115,0.08), transparent 40%),
    linear-gradient(145deg, #FFFFFF 0%, var(--bg) 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.04;
  background: var(--petrol);
  pointer-events: none;
}
.hero::before { width: 340px; height: 120px; top: 12%; left: -80px; transform: rotate(-25deg); }
.hero::after  { width: 260px; height: 90px;  bottom: 18%; right: -60px; transform: rotate(20deg); }

.hero .container.hero-grid {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-3); max-width: 640px; margin-inline: auto;
  position: relative; z-index: 1;
}
.hero .eyebrow { margin-bottom: var(--space-1); }
.hero-headline {
  font-size: var(--step-4); font-weight: 800;
  letter-spacing: -0.015em; line-height: 1.15;
  color: var(--petrol);
}
.hero-sub {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 48ch; margin-inline: auto; margin-top: var(--space-1);
}
.hero-sub-highlight {
  color: var(--amber);
  font-weight: 800;
  background: linear-gradient(transparent 52%, rgba(217,108,122,0.15) 52%);
  padding: 0 0.15em 0.08em;
  border-radius: 2px;
}

/* mockup */
.hero-mockup { position: relative; width: 100%; max-width: 640px; margin-inline: auto; margin-top: -1rem; margin-bottom: 0.5rem; }
.hero-mockup-img {
  width: 100%; height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(216,180,138,0.5);
  animation: hero-mockup-float 3.6s ease-in-out infinite;
  filter: drop-shadow(0 32px 40px rgba(184,92,75,0.28));
}
@keyframes hero-mockup-float {
  0%, 100% { transform: translateY(0px);    filter: drop-shadow(0 32px 40px rgba(184,92,75,0.28)); }
  50%       { transform: translateY(-14px);  filter: drop-shadow(0 46px 46px rgba(184,92,75,0.16)); }
}
@media (prefers-reduced-motion: reduce) { .hero-mockup-img { animation: none; } }
@media (max-width: 640px) { .hero-mockup { width: 92vw; max-width: none; margin-inline: auto; } }

.hero-actions { display: flex; flex-direction: column; gap: var(--space-2); align-items: center; }
.hero-micro { font-size: 0.83rem; color: var(--ink-muted); }

.hero-checklist {
  margin-top: var(--space-3);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.4rem; text-align: left; max-width: 480px;
}
.hero-checklist-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--petrol); }
.hero-checklist-icon {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 999px;
  background: var(--jade); color: #fff; font-size: 0.62rem; font-weight: 800;
  display: grid; place-items: center; margin-top: 0.1rem;
}
.hero-social-proof { margin-top: var(--space-3); font-size: 0.85rem; color: var(--ink-soft); }
.hero-social-proof strong { color: var(--ink); }
.hero-stars { color: var(--gold); letter-spacing: 0.05em; }

@media (max-width: 480px) { .hero-checklist { grid-template-columns: 1fr; } }

/* ---------- faixa de trust (benefícios) ---------- */
.trust-bar-section { padding-block: var(--space-5); background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-bar-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5) var(--space-6);
  max-width: 1360px; margin-inline: auto;
}
@media (max-width: 1400px) { .trust-bar-card { margin-inline: var(--space-4); } }
@media (max-width: 640px) {
  .trust-bar-section { padding-block: 0; border-bottom: none; }
  .trust-bar-card { margin-inline: 0; max-width: none; border-radius: 0; box-shadow: none; border-left: none; border-right: none; }
}
.trust-bar-list { display: flex; align-items: center; }
.trust-bar-divider {
  width: 1px; align-self: stretch; margin-block: var(--space-2);
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
  flex-shrink: 0;
}
.trust-bar-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0.5rem;
  padding-inline: var(--space-3);
}
.trust-bar-icon {
  width: 50px; height: 50px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--accent-tint);
  color: var(--jade); flex-shrink: 0;
}
.trust-bar-icon svg { width: 26px; height: 26px; }
.trust-bar-title {
  font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  color: var(--petrol); margin: 0; line-height: 1.3;
}
.trust-bar-desc { font-size: 0.78rem; color: var(--ink-soft); margin: 0; line-height: 1.4; }
.trust-bar-accent { width: 20px; height: 3px; border-radius: 999px; background: var(--gold); margin-top: 0.1rem; }

@media (max-width: 780px) {
  .trust-bar-card { padding: var(--space-4) var(--space-2); }
  .trust-bar-item { padding-inline: 0.3rem; gap: 0.35rem; }
  .trust-bar-icon { width: 38px; height: 38px; }
  .trust-bar-icon svg { width: 19px; height: 19px; }
  .trust-bar-title { font-size: 0.67rem; }
  .trust-bar-desc  { font-size: 0.6rem; }
  .trust-bar-accent { width: 14px; height: 2px; }
}
@media (max-width: 480px) { .trust-bar-desc { display: none; } }

/* ---------- faixa de números (stats) ---------- */
.stats-faixa {
  padding-block: var(--space-6);
  background: linear-gradient(135deg, var(--petrol-dark) 0%, var(--petrol) 60%, #C9756A 100%);
  color: var(--on-dark);
  border-bottom: 2px solid rgba(216,180,138,0.25);
}
.stats-title {
  font-family: var(--font-heading);
  font-size: var(--step-2);
  font-weight: 800;
  text-align: center;
  color: var(--on-dark);
  max-width: 640px;
  margin: 0 auto var(--space-5);
}
.stats-title .hl { color: var(--gold); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: var(--space-3) var(--space-2);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 25%; height: 50%;
  width: 1px;
  background: rgba(216,180,138,0.20);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.76rem;
  color: var(--on-dark-soft);
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 440px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after, .stat-item:nth-child(4)::after { display: none; }
}

/* ---------- carrossel ---------- */
.carousel { display: flex; align-items: center; gap: var(--space-3); margin-top: var(--space-6); padding-inline: var(--space-3); }
.carousel--row   { margin-top: var(--space-3); padding-inline: 0; }
.carousel--clean { padding-inline: 0; }
.marquee-note { text-align: center; font-size: 0.78rem; color: var(--ink-muted); font-style: italic; margin-top: var(--space-3); }

/* botão pill coral — usado nas seções claras */
.btn-pill-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #E98B82 0%, #D96C7A 45%, #B85C4B 100%);
  color: #fff;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(216,180,138,0.65);
  box-shadow:
    0 0 0 4px rgba(216,180,138,0.16),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 10px 32px -4px rgba(217,108,122,0.70),
    0 4px 12px rgba(0,0,0,0.18);
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  animation: btn-pulse 2.6s ease-in-out infinite;
}
.btn-pill-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  animation-play-state: paused;
  box-shadow:
    0 0 0 5px rgba(216,180,138,0.24),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 14px 36px -4px rgba(217,108,122,0.80),
    0 6px 18px rgba(0,0,0,0.20);
}
.btn-outline { animation: btn-pulse-soft 3s ease-in-out infinite; }
.btn-outline:hover { animation-play-state: paused; }
@keyframes btn-pulse-soft {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.90), inset 0 -1px 0 rgba(0,0,0,0.06), 0 4px 12px rgba(184,92,75,0.08); }
  50%       { box-shadow: inset 0 1px 0 rgba(255,255,255,0.90), inset 0 -1px 0 rgba(0,0,0,0.06), 0 6px 18px rgba(184,92,75,0.16); }
}
.amostras-cta-wrap { display: flex; justify-content: center; padding: var(--space-5) var(--space-4) var(--space-4); }

.carousel-viewport { flex: 1; overflow: hidden; cursor: grab; touch-action: pan-y; }
.carousel-viewport.is-dragging { cursor: grabbing; }
.carousel-viewport:focus-visible { outline-offset: 4px; }
.carousel-track { display: flex; gap: var(--space-3); will-change: transform; }

.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: var(--space-4); }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 999px;
  border: none; background: var(--border-strong); padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.is-active { background: var(--amber); transform: scale(1.35); }
.carousel-row { margin-bottom: var(--space-4); }

/* amostras em fundo petróleo */
#amostras-root {
  background: linear-gradient(150deg, var(--petrol-dark) 0%, var(--petrol) 60%, #C9756A 100%);
  color: var(--on-dark);
}
#amostras-root .eyebrow {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.20);
  color: var(--on-dark);
}
#amostras-root .eyebrow::before { background: var(--gold); }
#amostras-root .section-title  { color: var(--on-dark); }
#amostras-root .section-subtitle { color: var(--on-dark-soft); }
#amostras-root .hl { color: var(--gold); }
#amostras-root .marquee-note  { color: rgba(255,248,244,0.55); }
#amostras-root .carousel-dot  { background: rgba(255,255,255,0.30); }
#amostras-root .carousel-dot.is-active { background: var(--gold); }

/* cartão de amostra */
.map-card {
  position: relative; flex-shrink: 0;
  width: var(--carousel-card-w); aspect-ratio: 3/4;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  overflow: hidden; padding: 0; user-select: none;
}
@media (min-width: 961px) { :root { --carousel-card-w: 17vw; } }
@media (max-width: 960px) { :root { --carousel-card-w: 28vw; } }
@media (max-width: 640px) { :root { --carousel-card-w: 62vw; } }

/* Marquee infinito */
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-auto {
  display: flex; flex-wrap: nowrap; width: max-content;
  gap: var(--space-3);
  animation: marquee-left 38s linear infinite;
}
.marquee-auto--reverse { animation-direction: reverse; }
.carousel-viewport:hover .marquee-auto,
.carousel-viewport:focus-within .marquee-auto { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-auto { animation: none; } }
.map-card-body { position: absolute; inset: 0; overflow: hidden; background: var(--surface-alt); }
.map-card-img  { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.no-save { -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; }

/* ---------- problema ---------- */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4); margin-top: var(--space-6);
}
@media (max-width: 860px) { .problem-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--jade);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-5) var(--space-4);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow var(--transition);
}
.problem-card.is-visible { opacity: 1; transform: translateY(0); }
.problem-card:hover { box-shadow: var(--shadow-md); }
.problem-icon { font-size: 2rem; display: block; margin-bottom: var(--space-3); }
.problem-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-2); color: var(--ink); }
.problem-desc  { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.problem-destaque {
  max-width: 640px; margin: var(--space-6) auto 0; text-align: center;
  font-family: var(--font-elegant); font-style: italic; font-size: 1.15rem;
  color: var(--petrol); border-top: 1px solid var(--border-strong); padding-top: var(--space-4);
}

/* ---------- método A.A.P.S. ---------- */
.mapa-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4); margin-top: var(--space-7);
}
@media (max-width: 900px) { .mapa-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .mapa-steps { grid-template-columns: 1fr; } }

.mapa-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mapa-card.is-visible { opacity: 1; transform: translateY(0); }

.mapa-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 999px;
  background: linear-gradient(160deg, #F1DEC5 0%, var(--gold) 100%);
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--petrol-dark);
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22), 0 0 0 6px rgba(216,180,138,0.16);
}
.mapa-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--on-dark); margin-bottom: var(--space-2); }
.mapa-desc { font-size: 0.88rem; color: var(--on-dark-soft); line-height: 1.55; margin: 0; }
.mapa-fechamento {
  max-width: 620px; margin: var(--space-6) auto 0; text-align: center;
  font-size: 0.95rem; color: var(--on-dark-soft); line-height: 1.6;
}

/* ---------- módulos (specialties) ---------- */
.specialty-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3); margin-top: var(--space-2);
}
@media (max-width: 720px)  { .specialty-grid { grid-template-columns: 1fr; } }

.specialty-card {
  display: flex; flex-direction: row; align-items: flex-start;
  gap: 0.9rem; text-align: left;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.specialty-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.specialty-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1.2; }
.specialty-body { display: flex; flex-direction: column; gap: 0.3rem; }
.specialty-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; color: var(--ink); line-height: 1.3; }
.specialty-pages {
  align-self: flex-start; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold); background: rgba(216,180,138,0.15); border: 1px solid rgba(216,180,138,0.35);
  padding: 0.15rem 0.55rem; border-radius: 999px;
}
.specialty-desc { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; margin: 0.15rem 0 0; }

/* ---------- banner do sistema visual ---------- */
.method-banner-section { padding-block: var(--space-3); }
.method-banner-img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(201,107,115,0.30);
  box-shadow: var(--shadow-lg), 0 0 24px -6px rgba(201,107,115,0.18);
}

/* ---------- estrutura do material (anatomy) ---------- */
.anatomy-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: var(--space-7); align-items: center;
}
@media (max-width: 860px) { .anatomy-layout { grid-template-columns: 1fr; } }

.anatomy-head { text-align: center; }
.anatomy-head .eyebrow  { margin-bottom: var(--space-3); }
.anatomy-head .section-title { margin-top: var(--space-3); }
.anatomy-head .section-subtitle { margin-top: var(--space-3); }
.anatomy-map { display: flex; flex-direction: column; gap: var(--space-3); }

.anatomy-zone {
  display: flex; align-items: flex-start; gap: var(--space-3);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateX(16px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow var(--transition);
}
.anatomy-zone.is-visible { opacity: 1; transform: translateX(0); }
.anatomy-zone:hover { box-shadow: var(--shadow-md); }

.anatomy-zone--jade   { border-left: 4px solid var(--jade); }
.anatomy-zone--amber  { border-left: 4px solid var(--amber); }
.anatomy-zone--petrol { border-left: 4px solid var(--petrol); }
.anatomy-zone--soft   { border-left: 4px solid var(--ink-muted); }

.anatomy-zone-letter {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 999px;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
  display: grid; place-items: center;
}
.anatomy-zone--jade   .anatomy-zone-letter { background: var(--accent-tint); color: var(--jade); }
.anatomy-zone--amber  .anatomy-zone-letter { background: rgba(217,108,122,0.10); color: var(--amber); }
.anatomy-zone--petrol .anatomy-zone-letter { background: rgba(184,92,75,0.10); color: var(--petrol); }
.anatomy-zone--soft   .anatomy-zone-letter { background: rgba(169,137,128,0.15); color: var(--ink-muted); }

.anatomy-zone-content { display: flex; flex-direction: column; gap: 0.25rem; }
.anatomy-zone-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem; color: var(--ink); }
.anatomy-zone-desc  { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.5; }

/* ---------- entregáveis (tangibility) ---------- */
.tangibility-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem 3rem; margin-top: var(--space-6);
  max-width: 900px; margin-inline: auto;
}
@media (max-width: 640px) { .tangibility-list { grid-template-columns: 1fr; } }

.tangibility-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.92rem; color: var(--on-dark-soft); line-height: 1.45;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.tangibility-item.is-visible { opacity: 1; transform: translateY(0); }
.tangibility-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px;
  background: var(--jade); color: #fff;
  font-size: 0.65rem; font-weight: 800;
  display: grid; place-items: center; margin-top: 0.1rem;
}
.tangibility-destaque {
  max-width: 620px; margin: var(--space-6) auto 0; text-align: center;
  font-size: 0.95rem; color: var(--on-dark-soft); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-4);
}

/* ---------- para quem é ---------- */
.audience-fit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-4); margin-top: var(--space-6);
  max-width: 980px; margin-inline: auto;
}
@media (max-width: 780px) { .audience-fit-grid { grid-template-columns: 1fr; } }

.audience-fit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-6) var(--space-5);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow var(--transition);
}
.audience-fit-card.is-visible { opacity: 1; transform: translateY(0); }
.audience-fit-card:hover { box-shadow: var(--shadow-md); }

.audience-fit-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--petrol-dark), var(--petrol));
  color: var(--gold); font-family: var(--font-heading); font-weight: 800;
  font-size: 0.85rem; margin-bottom: var(--space-4);
}
.audience-fit-card--alt .audience-fit-badge {
  background: linear-gradient(135deg, var(--jade-dark), var(--jade));
  color: #fff;
}
.audience-fit-card h3 { font-size: 1.1rem; margin-bottom: var(--space-4); line-height: 1.35; }
.audience-fit-list { display: grid; gap: 0.65rem; }
.audience-fit-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--ink-soft); line-height: 1.45; }
.audience-fit-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 999px;
  background: var(--success-tint); color: var(--success);
  font-size: 0.65rem; font-weight: 800; display: grid; place-items: center; margin-top: 0.1rem;
}
.audience-fit-card--alt .audience-fit-check { background: var(--accent-tint); color: var(--accent); }

.audience-fit-attention {
  max-width: 640px; margin: var(--space-6) auto 0;
  background: #FBEFE7; border: 1px solid #D8B48A; border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4);
  text-align: center;
}
.audience-fit-attention span {
  display: block; font-family: var(--font-heading); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: #8E4A52; margin-bottom: 0.35rem;
}
.audience-fit-attention p { margin: 0; font-size: 0.85rem; color: #6B4A2C; line-height: 1.55; }

/* ---------- passo a passo ---------- */
.access-steps {
  display: flex; gap: var(--space-3);
  margin-top: var(--space-6); position: relative;
}
.access-steps::before {
  content: ""; position: absolute; top: 36px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 12%, var(--jade) 50%, var(--border-strong) 88%, transparent);
  z-index: 0;
}
.access-step-card {
  position: relative; z-index: 1; flex: 1;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow var(--transition);
}
.access-step-card.is-visible { opacity: 1; transform: translateY(0); }
.access-step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.access-step-number {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, var(--jade-dark), var(--jade));
  color: #fff; font-family: var(--font-heading); font-weight: 800;
  font-size: 0.9rem; margin-bottom: var(--space-3); box-shadow: var(--shadow-sm);
}
.access-step-card h3 { font-size: 0.88rem; margin-bottom: 0.4rem; line-height: 1.3; }
.access-step-card p  { font-size: 0.8rem; color: var(--ink-soft); margin: 0; line-height: 1.45; }
@media (max-width: 900px) {
  .access-steps { flex-direction: column; }
  .access-steps::before { display: none; }
}

/* ---------- bônus ---------- */
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4); margin-top: var(--space-6);
}
@media (max-width: 900px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 0;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.bonus-card.is-visible { opacity: 1; transform: translateY(0); }

.bonus-cover {
  position: relative; width: 100%; aspect-ratio: 16/10;
  border-radius: var(--radius-md); overflow: hidden;
  background: linear-gradient(150deg, var(--petrol-dark) 0%, var(--petrol) 55%, #C9756A 130%);
  border: 1px solid rgba(216,180,138,0.15);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: var(--space-3); margin-bottom: var(--space-4); box-shadow: var(--shadow-md);
}
.bonus-cover-number {
  align-self: flex-start; font-family: var(--font-heading); font-weight: 800;
  font-size: 0.66rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--on-dark); background: rgba(0,0,0,0.22);
  padding: 0.25rem 0.6rem; border-radius: 999px;
}
.bonus-quantity--overlay {
  position: absolute; bottom: 0.7rem; right: 0.7rem; z-index: 2;
  margin-top: 0;
  background: rgba(90,58,54,0.75);
  border: 1px solid rgba(216,180,138,0.5);
  color: #FFF8F4;
  backdrop-filter: blur(2px);
}
.bonus-quantity {
  align-self: flex-start; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.78rem; color: var(--gold);
  background: rgba(216,180,138,0.15); border: 1px solid rgba(216,180,138,0.30);
  padding: 0.2rem 0.6rem; border-radius: 999px; margin-top: 0.35rem;
}
.bonus-cover-icon { position: absolute; right: var(--space-3); bottom: var(--space-3); width: 40px; height: 40px; }
.bonus-cover-icon svg { width: 100%; height: 100%; }
.bonus-cover-accent { position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--gold); }
.bonus-cover--img { background: var(--petrol-dark); padding: 0; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 4/3; position: relative; }
.bonus-cover-img  { width: 100%; height: 100%; object-fit: contain; display: block; }
.bonus-cover-tag {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, #F1DEC5 0%, var(--gold) 100%);
  color: var(--petrol-dark);
  font-family: var(--font-heading); font-weight: 800;
  font-size: 0.66rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.32rem 0.75rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.4) inset;
}

.bonus-card .bonus-name        { font-size: 1rem; font-weight: 700; margin: 0 0 0.35rem; color: var(--ink); padding: var(--space-3) var(--space-3) 0; }
.bonus-card .bonus-description { color: var(--ink-soft); font-size: 0.84rem; margin: 0; line-height: 1.5; padding: 0 var(--space-3) var(--space-3); }

/* ---------- depoimentos ---------- */
.testimonial-card {
  flex-shrink: 0; width: 280px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
@media (max-width: 640px) { .testimonial-card { width: 78vw; } }
.testimonial-card.is-visible { opacity: 1; transform: translateY(0); }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.05em; margin-bottom: var(--space-2); }
.testimonial-quote { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 var(--space-3); line-height: 1.55; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: var(--space-3); }
.testimonial-avatar {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 999px;
  background: linear-gradient(135deg, var(--petrol), var(--jade));
  color: var(--on-dark); font-family: var(--font-heading); font-weight: 800;
  font-size: 1rem; display: grid; place-items: center;
}
.testimonial-author-info { display: flex; flex-direction: column; gap: 0.15rem; }
.testimonial-name  { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: var(--ink); margin: 0; display: flex; align-items: center; gap: 0.3rem; }
.testimonial-check { color: var(--jade); font-size: 0.8rem; font-weight: 900; }
.testimonial-role  { font-size: 0.76rem; color: var(--ink-muted); margin: 0; }

/* ---------- pricing duo ---------- */
.pricing-duo {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: var(--space-5);
  align-items: start;
  max-width: 920px;
  margin-inline: auto;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
}
@media (max-width: 760px) { .pricing-duo { grid-template-columns: 1fr; max-width: 480px; } }

/* Plano Essencial */
.pricing-duo__basic {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
}

/* Plano Premium — petróleo */
.pricing-duo__premium {
  background: linear-gradient(150deg, var(--petrol-dark) 0%, var(--petrol) 65%, #C9756A 130%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(216,180,138,0.20);
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  box-shadow: var(--shadow-elevated);
}

/* badge flutuante no topo do premium */
.pdu-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #D8B48A);
  color: var(--petrol-dark);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(216,180,138,0.40);
}

/* pill: "Essencial" / "Premium" */
.pdu-pill {
  display: inline-block;
  align-self: center;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
}
.pdu-pill--basic   { border: 1.5px solid var(--border-strong); color: var(--petrol); background: transparent; }
.pdu-pill--premium { background: rgba(216,180,138,0.20); color: var(--gold); border: 1px solid rgba(216,180,138,0.40); font-size: 0.65rem; }

/* header row no premium */
.pdu-premium-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: calc(var(--space-2) + 4px);
}
.pdu-premium-sub { font-size: 0.76rem; color: var(--on-dark-soft); }

/* nomes dos planos */
.pdu-name {
  font-size: 1.65rem;
  font-weight: 800;
  text-align: center;
  color: var(--petrol);
  margin: 0;
  line-height: 1.15;
}
.pdu-name--light { color: var(--on-dark); }

/* atenção no essencial */
.pdu-attention {
  font-size: 0.78rem;
  color: #8E4A52;
  background: #FBEFE7;
  border: 1px solid #D8B48A;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin: 0;
  line-height: 1.4;
}

/* rótulo "Por apenas" */
.pdu-price-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
}
.pdu-price-label--light { color: var(--on-dark-soft); }

/* preço grande */
.pdu-price {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--petrol);
  text-align: center;
  line-height: 1;
  margin: 0;
}
.pdu-price--light { color: var(--on-dark); }

/* nota abaixo do preço */
.pdu-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
}
.pdu-note--light { color: var(--on-dark-soft); }

.pdu-price-anchor {
  font-size: 0.88rem; color: rgba(255,248,244,0.60);
  font-weight: 600; text-align: center; margin: 0;
}
.pdu-price-anchor s { text-decoration-color: rgba(255,248,244,0.40); color: rgba(255,248,244,0.45); }
.pdu-savings {
  align-self: center;
  background: rgba(201,107,115,0.18);
  color: var(--on-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin: 0;
  text-align: center;
}

.pdu-map-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(201,107,115,0.18);
  border: 1.5px solid rgba(201,107,115,0.35);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  text-align: center;
}
.pdu-map-count {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--jade);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pdu-map-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--on-dark);
  line-height: 1.25;
  text-align: left;
}

.pdu-bonus-divider {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin: 0;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.pdu-mockup {
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}
.pdu-mockup img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216,180,138,0.5);
  filter: drop-shadow(0 20px 32px rgba(142,74,82,0.65));
  animation: pdu-mockup-float 3.8s ease-in-out infinite;
}
@keyframes pdu-mockup-float {
  0%, 100% { transform: translateY(0px);   filter: drop-shadow(0 20px 32px rgba(142,74,82,0.65)); }
  50%       { transform: translateY(-12px); filter: drop-shadow(0 32px 40px rgba(142,74,82,0.40)); }
}
@media (prefers-reduced-motion: reduce) { .pdu-mockup img { animation: none; } }

/* lista de features */
.pf-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
}
.pf-list--light { border-top-color: rgba(255,255,255,0.12); }

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* item incluído */
.pf-yes { color: var(--ink); }
.pf-yes .pf-icon { background: var(--accent-tint); color: var(--jade); }
.pf-yes--light { color: var(--on-dark); }
.pf-yes--light .pf-icon { background: rgba(201,107,115,0.20); color: #E3AFA8; }

/* item excluído */
.pf-no { color: var(--ink-muted); }
.pf-no span:last-child { text-decoration: line-through; opacity: 0.65; }
.pf-no .pf-icon { background: rgba(217,108,122,0.08); color: rgba(217,108,122,0.4); }

/* ícone circular */
.pf-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 0.12rem;
}

/* trust badges abaixo do botão */
.pdu-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin-top: var(--space-1);
}
.pdu-badges span   { font-size: 0.72rem; color: var(--ink-muted); }
.pdu-badges--light span { color: var(--on-dark-soft); }

/* garantia centralizada */
.guarantee-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}
.guarantee-wrapper .guarantee-card {
  max-width: 560px;
  width: 100%;
}

/* ---------- garantia ---------- */
.guarantee-card {
  display: flex; align-items: center; gap: var(--space-5);
  background: linear-gradient(160deg, #241412 0%, #170D0C 100%);
  border: 1px solid rgba(216,180,138,0.22);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  box-shadow: var(--shadow-elevated);
}
.guarantee-badge {
  width: 150px; height: auto; flex-shrink: 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.guarantee-label {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.07em; color: var(--jade);
  background: rgba(201,107,115,0.14);
  border: 1px solid rgba(201,107,115,0.35);
  padding: 0.28rem 0.75rem; border-radius: 999px;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}
.guarantee-card h4 { font-size: 1.15rem; font-weight: 800; margin: 0 0 0.35rem; color: var(--on-dark); }
.guarantee-card p  { font-size: 0.85rem; color: var(--on-dark-soft); margin: 0; line-height: 1.55; }
@media (max-width: 560px) {
  .guarantee-card { flex-direction: column; text-align: center; gap: var(--space-3); }
  .guarantee-badge { width: 110px; }
}

/* ---------- faq ---------- */
.faq-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-6); max-width: 960px; margin-inline: auto;
}
@media (max-width: 720px) { .faq-list { grid-template-columns: 1fr; } }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem 0.1rem;
  background: transparent; border: none; text-align: left;
  font-family: var(--font-heading); font-weight: 600;
  color: var(--petrol); font-size: 0.92rem;
}
.faq-question .icon { transition: transform var(--transition); color: var(--amber); flex-shrink: 0; }
.faq-item[data-open="true"] .icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--transition); }
.faq-item[data-open="true"] .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 0.1rem 1.1rem; color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- cta final ---------- */
.final-cta { text-align: center; }
.final-cta .section-title { color: var(--on-dark); max-width: 620px; margin-inline: auto; }
.final-cta .btn { margin-top: var(--space-5); }
.final-cta-micro { margin-top: var(--space-2); font-size: 0.85rem; color: var(--on-dark-soft); }
.final-cta-lastcall { margin-top: var(--space-3); font-size: 0.85rem; color: var(--on-dark-soft); }
.legal-notice {
  max-width: 700px; margin: var(--space-7) auto 0; text-align: center;
  font-size: 0.8rem; color: var(--on-dark-soft);
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: var(--space-4);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--petrol-dark); color: var(--on-dark-soft);
  border-top: 2px solid rgba(216,180,138,0.35);
  padding-block: var(--space-5); font-size: 0.82rem;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-edu-notice {
  font-size: 0.76rem;
  color: rgba(240,217,206,0.65);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.5;
}

/* ---------- gatilho de urgência ---------- */
.urgency-trigger-section {
  padding-block: var(--space-5) var(--space-7);
  background: var(--surface-alt);
}
.urgency-trigger {
  max-width: 420px;
  margin-inline: auto;
  width: calc(100% - 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
}
.urgency-trigger-icon { font-size: 1.8rem; line-height: 1; }
.urgency-trigger-badge {
  display: inline-block;
  background: var(--jade); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem; border-radius: 999px;
}
.urgency-trigger-title { font-size: 1.1rem; font-weight: 800; color: var(--ink); margin: 0; }
.urgency-trigger-desc { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; margin: 0; max-width: 36ch; }
.urgency-trigger-desc strong { color: var(--ink); font-weight: 700; }
.urgency-trigger-desc s { color: var(--ink-muted); }
.urgency-trigger-btn { margin-top: var(--space-2); width: 100%; }

/* ---------- upsell modal ---------- */
.upsell-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(142,74,82,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(6px);
  animation: upsell-fade-in 0.25s ease;
}
.upsell-overlay[hidden] { display: none; }
@keyframes upsell-fade-in { from { opacity: 0; } to { opacity: 1; } }

.upsell-modal {
  background: linear-gradient(160deg, var(--petrol-dark) 0%, var(--petrol) 55%, #C9756A 100%);
  border: 1px solid rgba(216,180,138,0.20);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem 1rem;
  max-width: 380px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  color: var(--on-dark);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  animation: upsell-slide-up 0.28s cubic-bezier(0.22,1,0.36,1);
  text-align: center;
}
@media (max-width: 480px) {
  .upsell-overlay { padding: 0.5rem; }
  .upsell-modal { padding: 0.9rem 1rem 0.85rem; max-height: 94vh; }
}
@keyframes upsell-slide-up { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.upsell-close {
  position: absolute; top: 0.6rem; right: 0.6rem;
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(255,255,255,0.12); border: none;
  color: var(--on-dark); font-size: 0.9rem; cursor: pointer; line-height: 1;
  display: grid; place-items: center;
  transition: background 0.15s;
}
.upsell-close:hover { background: rgba(255,255,255,0.22); }

.upsell-badge {
  display: inline-block;
  background: rgba(216,180,138,0.20);
  border: 1px solid rgba(216,180,138,0.35);
  color: var(--gold); font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.24rem 0.7rem; border-radius: 999px;
  margin-bottom: 0.5rem;
}
.upsell-title { font-size: 1.05rem; font-weight: 800; color: var(--on-dark); margin-bottom: 0.35rem; line-height: 1.2; }
.upsell-sub { font-size: 0.76rem; color: rgba(255,248,244,0.78); margin-bottom: 0.65rem; line-height: 1.4; }
.upsell-sub strong { color: var(--gold); }

.upsell-price-box {
  background: rgba(0,0,0,0.18);
  border: 1.5px solid rgba(216,180,138,0.45);
  border-radius: var(--radius-md); padding: 0.65rem;
  text-align: center; margin-bottom: 0.65rem;
}
.upsell-old-price { font-size: 0.7rem; color: rgba(255,248,244,0.55); display: block; margin-bottom: 0.1rem; }
.upsell-old-price s { text-decoration-color: rgba(255,248,244,0.4); }
.upsell-now {
  display: inline-block;
  background: rgba(216,180,138,0.25);
  color: var(--gold);
  border: 1px solid rgba(216,180,138,0.40);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
  border-radius: 999px; margin-bottom: 0.5rem;
}
.upsell-price { font-size: 2.4rem; font-weight: 900; color: var(--on-dark); line-height: 1; }
.upsell-price strong { font-size: 2.8rem; }
.upsell-price-note { font-size: 0.75rem; color: rgba(255,248,244,0.55); margin-top: 0.4rem; }

.upsell-list { list-style: none; padding: 0; margin: 0 0 var(--space-3); display: flex; flex-direction: column; gap: 0.5rem; }
.upsell-list li { font-size: 0.88rem; color: rgba(255,248,244,0.88); padding-left: 1.4rem; position: relative; }
.upsell-list li::before { content: "✓"; position: absolute; left: 0; color: var(--jade); font-weight: 800; }

.upsell-micro {
  text-align: center; margin: 0.6rem 0 0;
  font-size: 0.78rem; color: rgba(255,248,244,0.65);
}
.upsell-no {
  display: block; text-align: center; margin-top: var(--space-3);
  font-size: 0.8rem; color: rgba(255,248,244,0.45);
  text-decoration: underline; cursor: pointer;
}
.upsell-no:hover { color: rgba(255,248,244,0.70); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 110;
  display: flex; align-items: center; justify-content: center; padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(142,74,82,0.88); }
.lightbox__content {
  position: relative; width: 100%; max-width: 560px; max-height: 92vh;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-elevated);
  display: flex; flex-direction: column;
}
.lightbox__map { flex: 1; overflow-y: auto; }
.lightbox-img  { width: 100%; height: auto; display: block; }
.lightbox__caption { padding: var(--space-3) var(--space-4); font-family: var(--font-heading); font-weight: 700; text-align: center; border-top: 1px solid var(--border); flex-shrink: 0; color: var(--petrol); font-size: 0.88rem; }
.lightbox__close { position: absolute; top: var(--space-2); right: var(--space-2); width: 34px; height: 34px; border-radius: 999px; border: none; background: rgba(255,255,255,0.92); color: var(--ink); font-size: 1.2rem; z-index: 2; box-shadow: var(--shadow-sm); }

/* ---------- responsivo geral ---------- */
@media (max-width: 640px) {
  .container  { padding-inline: var(--space-3); }
  .section    { padding-block: var(--space-6); }
  .hero       { padding-block: var(--space-5) var(--space-4); }
  .hero-headline { font-size: var(--step-3); }
}
