/* ============================================
   VIRTUO Quiz — Stylesheet
   Mobile-first, paleta verde escuro #1B5E3F
   ============================================ */

:root {
  /* Tema kegelmen: navy escuro + verde-petróleo + Inter */
  --charcoal: #1C1D2B;         /* superfícies/cards */
  --coal-deep: #0E0F1A;        /* fundo da página (mais escuro) */
  --smoke: #8995A3;            /* texto cinza-azulado */
  --copper: #16B693;           /* accent primário (verde) */
  --copper-deep: #0F8F74;
  --bone: #E8EBF0;             /* texto/elementos claros */
  --bone-soft: #F5F7FA;

  /* Variáveis legadas remapeadas pro tema escuro */
  --green-dark: #16B693;       /* primário = verde */
  --green-deep: #0F8F74;
  --green-light: rgba(22, 182, 147, 0.12);
  --grafite: #E8EBF0;          /* texto principal = claro */
  --gray-text: #8995A3;
  --gray-light: #0E0F1A;       /* fundo da página = navy */
  --gray-border: rgba(255, 255, 255, 0.08);
  --white: #FFFFFF;
  --red-soft: #16B693;
  --red-bg: rgba(22, 182, 147, 0.12);
  --gold: #F4D63B;             /* estrelas douradas */

  /* superfícies de card explícitas (tema escuro) */
  --surface: #1C1D2B;
  --surface-2: #222331;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-lg: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--grafite);
  background: var(--gray-light);
  -webkit-font-smoothing: antialiased;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* =============================
   Top banner (página de resultado)
   ============================= */
.top-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--coal-deep) 100%);
  color: var(--bone);
  text-align: center;
  padding: 14px 16px 16px;
  border-bottom: 2px solid var(--copper);
  box-shadow: 0 4px 14px rgba(20, 17, 14, 0.25);
}
.top-banner.hidden { display: none; }
.top-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.top-banner-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--bone);
}
.top-banner-timer {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(22, 182, 147, 0.45);
}
.top-banner-fallback {
  display: none;
}
.top-banner-fallback:not(.hidden) {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

/* =============================
   Layout principal
   ============================= */
.app {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background: var(--charcoal);
  position: relative;
  z-index: 1;
  padding: 0;
  border-bottom: none;
}

.progress-strip {
  height: 3px;
  width: 100%;
  background: rgba(242, 237, 227, 0.08);
}
.progress-strip .progress-fill {
  height: 100%;
  background: #E11D2A;
  width: 0%;
  transition: width 0.4s ease;
}

.header-band {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-counter {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(232, 235, 240, 0.7);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.nav-back {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; line-height: 1;
  color: var(--bone);
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.logo-symbol {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1.5px solid var(--copper);
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: 'Inter', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: 'Inter', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 34px;
}

/* =============================
   Telas
   ============================= */
.screen-container {
  flex: 1;
  padding: 28px 20px 40px;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.headline {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--grafite);
  margin-bottom: 8px;
}

.headline.lg {
  font-size: 30px;
}

.subheadline {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.5;
}

.eyebrow {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* =============================
   Cards de opção (idade, etc)
   ============================= */
.card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 16px;
}
.card-stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.card-rating-text { color: var(--smoke); font-size: 13px; font-weight: 600; }

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.card-option {
  background: var(--surface);
  border: 1.5px solid var(--gray-border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  width: 100%;
}
.card-option:hover, .card-option:active {
  border-color: var(--copper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.card-image {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  overflow: hidden;
  background: #11121c;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-image-placeholder {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  background: #11121c;
  display: grid;
  place-items: center;
  font-size: 40px;
}
.card-option .card-label-bar {
  flex: 1;
  background: transparent;
  color: var(--bone);
  padding: 0 18px;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
}
.card-arrow { color: var(--copper); font-weight: 700; font-size: 18px; }
.card-option .card-label-bar::after { content: none; }
/* Legacy class kept for compat */
.card-option .card-label {
  font-weight: 700;
  font-size: 15px;
  color: var(--grafite);
}

/* =============================
   Botões de opção (lista vertical)
   ============================= */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.option-btn {
  background: var(--surface);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: left;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--grafite);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.option-btn:hover, .option-btn:active {
  border-color: var(--green-dark);
  background: var(--green-light);
}
.option-btn.selected {
  border-color: var(--green-dark);
  background: var(--green-light);
  color: var(--green-deep);
  font-weight: 600;
}
.option-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-border);
  border-radius: 6px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}
.option-btn.selected .option-checkbox {
  border-color: var(--green-dark);
  background: var(--green-dark);
}
.option-btn.selected .option-checkbox::after {
  content: "✓";
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

/* =============================
   Escala (1-5)
   ============================= */
.scale-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.scale-btn {
  background: var(--surface);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 16px 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--grafite);
  transition: all 0.2s ease;
}
.scale-btn:hover, .scale-btn:active {
  border-color: var(--green-dark);
  background: var(--green-light);
}
.scale-btn.selected {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}
.scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 24px;
  padding: 0 4px;
}

/* =============================
   Tipo de corpo (3 silhuetas)
   ============================= */
.body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.body-card {
  background: var(--surface);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.body-card:hover, .body-card.selected {
  border-color: var(--copper);
  box-shadow: 0 6px 18px rgba(22, 182, 147, 0.18);
}
.body-photo {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--surface);
}
.body-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.body-card .body-label {
  display: block;
  padding: 10px 6px;
  background: var(--charcoal);
  color: var(--bone);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* =============================
   Slides educativos
   ============================= */
.educational-block {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin-bottom: 24px;
}
.educational-block p {
  margin-bottom: 16px;
  color: var(--grafite);
  line-height: 1.6;
}
.educational-block p:last-child { margin-bottom: 0; }
.educational-block strong { color: var(--green-deep); }

.educational-visual {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--white);
}

/* ============================================
   TRANSFORMATION ILLUSTRATION (Tela 2 — casal antes/depois)
   ============================================ */
.trans-illustration {
  background: var(--coal-deep);
  border-radius: var(--radius-lg);
  padding: 14px 14px 22px;
  margin-bottom: 24px;
  text-align: center;
  border: 1px solid rgba(22, 182, 147, 0.18);
}
.illustration-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 18px;
  background: var(--charcoal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.illustration-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trans-credibility {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: var(--bone);
  padding: 0 12px;
  letter-spacing: 0.005em;
}
.trans-credibility strong {
  color: var(--copper);
  font-weight: 700;
}
/* ============================================
   MUSCLE TIMELINE (Tela 5 — progressão 28 dias)
   ============================================ */
.muscle-timeline {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(22, 182, 147, 0.18);
  box-shadow: 0 8px 24px rgba(20, 17, 14, 0.18);
}
.muscle-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
  margin-bottom: 18px;
}
.muscle-rows {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--smoke);
}
.muscle-row {
  display: flex;
  align-items: stretch;
  border-bottom: 3px solid var(--smoke);
  min-height: 70px;
}
.muscle-vessel {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 4px;
  overflow: hidden;
}
.muscle-svg {
  width: 100%;
  height: auto;
  display: block;
}
.muscle-day {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Inter', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: var(--smoke);
  min-width: 78px;
  padding: 0 8px 0 16px;
  border-left: 3px solid var(--smoke);
  letter-spacing: 0.03em;
}
.muscle-caption {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
  color: rgba(242, 237, 227, 0.55);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.muscle-image-frame {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--coal-deep);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.muscle-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   LOADING TRANSITION (após Tela 24, antes do resultado)
   ============================================ */
.loading-transition {
  padding: 24px 4px;
  text-align: center;
}
.loading-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.loading-headline {
  font-family: 'Inter', serif;
  font-size: 26px;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 400;
}
.loading-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 28px;
  line-height: 1.5;
}
.loading-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.loading-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-border);
  border-radius: 3px;
  overflow: hidden;
}
.loading-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper));
  border-radius: 3px;
  transition: width 0.5s ease;
}
.loading-percent {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--copper);
  min-width: 38px;
  text-align: right;
}
.loading-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  overflow: hidden;
}
.loading-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-border);
  transition: background 0.3s;
}
.loading-step:last-child { border-bottom: none; }
.loading-step.is-active { background: rgba(22, 182, 147, 0.06); }
.loading-spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gray-border);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s;
}
.loading-step.is-active .loading-spinner {
  border-top-color: var(--copper);
  animation: vrt-spin 0.85s linear infinite;
}
.loading-step.is-complete .loading-spinner {
  background: var(--copper);
  border-color: var(--copper);
  animation: none;
}
.loading-step.is-complete .loading-spinner::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--bone);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.loading-step-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  transition: all 0.3s;
}
.loading-step.is-active .loading-step-label {
  color: var(--charcoal);
  font-weight: 700;
}
.loading-step.is-complete .loading-step-label {
  color: var(--charcoal);
}
.loading-footnote {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray-text);
  font-style: italic;
}
@keyframes vrt-spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   TESTIMONIAL WALL (página de resultado — 3 cards)
   ============================================ */
.testimonial-wall {
  margin: 32px 0;
}
.t-wall-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
  text-align: center;
}
.t-wall-title {
  font-family: 'Inter', serif;
  font-size: 22px;
  line-height: 1.2;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 400;
}
.t-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-card {
  background: var(--surface-2);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  border-left: 3px solid var(--copper);
}
.t-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.t-card-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--copper-deep), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--copper);
}
.t-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.t-card-initials {
  font-family: 'Inter', serif;
  font-size: 18px;
  color: var(--bone);
  letter-spacing: 0.04em;
}
.t-card-meta {
  flex: 1;
}
.t-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.2;
}
.t-card-age {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
}
.t-card-stars {
  color: var(--copper);
  font-size: 14px;
  letter-spacing: 1px;
}
.t-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
  color: var(--charcoal);
}

/* ============================================
   ANATOMY PLATE (Tela 16 — Gray's Anatomy 1918)
   ============================================ */
.anatomy-plate {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  padding: 18px 14px 14px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-border);
  text-align: center;
}
.anatomy-frame {
  background: var(--surface);
  border-radius: 8px;
  padding: 16px 8px;
  margin-bottom: 12px;
}
.anatomy-frame img {
  display: block;
  max-width: 100%;
  width: auto;
  max-height: 380px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
.anatomy-caption {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-style: italic;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* ============================================
   PROGRESSION CHART (Tela 10 — curva Ontem/Hoje/Amanhã)
   ============================================ */
.progression-chart {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 18px 14px 14px;
  margin-bottom: 24px;
  border: 1px solid rgba(22, 182, 147, 0.18);
  box-shadow: 0 8px 24px rgba(20, 17, 14, 0.18);
}
.progression-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Timeline antiga (bar chart — usada em outras telas)
   ============================================ */
.timeline {
  display: flex;
  justify-content: space-around;
  align-items: end;
  gap: 8px;
  height: 140px;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 8px;
}
.timeline-bar {
  width: 80%;
  background: linear-gradient(to top, #4CAF6F, #8FCFA8);
  border-radius: 4px 4px 0 0;
}
.timeline-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
}

/* =============================
   Tabela comparativa
   ============================= */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th, .comparison-table td {
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--gray-border);
}
.comparison-table th {
  background: var(--gray-light);
  font-weight: 700;
  color: var(--grafite);
  font-size: 13px;
}
.comparison-table th.virtuo-col, .comparison-table td.virtuo-col {
  background: var(--green-light);
  color: var(--green-deep);
  font-weight: 600;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}
.check { color: var(--green-dark); font-weight: 800; }
.cross { color: var(--red-soft); font-weight: 800; }

/* =============================
   Depoimento
   ============================= */
.testimonial {
  background: var(--gray-light);
  border-left: 4px solid var(--green-dark);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.testimonial-stars { margin-bottom: 6px; }
.testimonial-name { font-weight: 700; margin-bottom: 8px; color: var(--grafite); font-size: 14px; }
.testimonial-text { font-style: italic; color: var(--gray-text); line-height: 1.55; font-size: 15px; }
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 2px solid var(--copper);
  box-shadow: 0 2px 8px rgba(20, 17, 14, 0.12);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* =============================
   Citações cient. cards
   ============================= */
.journals-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}
.journal-card {
  background: var(--green-light);
  border-radius: 8px;
  padding: 14px 8px;
  text-align: center;
  border: 1px solid var(--green-dark);
}
.journal-card .name {
  font-weight: 700;
  font-size: 11px;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.journal-card .year {
  font-size: 13px;
  font-weight: 800;
  color: var(--grafite);
  margin-top: 4px;
}

/* =============================
   Botão CTA principal
   ============================= */
.cta-btn {
  display: block;
  width: 100%;
  background: #E11D2A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 20px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(225,29,42,0.35);
}
.cta-btn:hover, .cta-btn:active {
  background: #C2161F;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(225,29,42,0.45);
}
/* CTA de compra (oferta) = verde, como no kegelmen */
.cta-btn[data-cta="checkout"] {
  background: var(--copper);
  box-shadow: 0 6px 18px rgba(22,182,147,0.35);
}
.cta-btn[data-cta="checkout"]:hover {
  background: var(--copper-deep);
}
.cta-microcopy {
  text-align: center;
  font-size: 13px;
  color: var(--gray-text);
  margin-top: 10px;
  margin-bottom: 24px;
}

/* =============================
   Tela de gancho (hook) + espelhos de personalização
   ============================= */
.hook { text-align: center; padding-top: 4px; }
.hook-headline {
  font-family: 'Inter', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.18;
  color: var(--grafite);
  margin-bottom: 18px;
}
.hook-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}
.hook-image img { display: block; width: 100%; height: auto; }
.hook-subtext {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hook-mechanism {
  font-size: 16px;
  font-weight: 600;
  color: var(--grafite);
  line-height: 1.55;
  margin-bottom: 14px;
}
.hook-mechanism mark {
  background: rgba(22, 182, 147, 0.18);
  color: var(--copper-deep);
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: 700;
}
.hook-pain {
  font-size: 16px;
  font-weight: 700;
  color: var(--copper-deep);
  margin-bottom: 22px;
}
.hook-secondary {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--grafite);
  border: 1.5px solid var(--gray-border);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 18px;
  border-radius: var(--radius);
  margin-top: 12px;
  transition: all 0.2s ease;
}
.hook-secondary:hover { border-color: var(--copper); color: var(--copper-deep); }
.hook-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.hook-badge {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-text);
  background: var(--surface);
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  padding: 7px 14px;
}

/* Bloco de complementos/bônus no rodapé do CTA final (fundo escuro) */
.cta-bonus {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}
.cta-bonus-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bone);
  text-align: center;
  margin-bottom: 4px;
}
.cta-bonus-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-bottom: 12px;
}
.cta-bonus ul { list-style: none; padding: 0; margin: 0; }
.cta-bonus li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  padding: 7px 0 7px 26px;
  position: relative;
}
.cta-bonus li + li { border-top: 1px solid rgba(255,255,255,0.08); }
.cta-bonus li::before { content: '🎁'; position: absolute; left: 0; top: 6px; font-size: 14px; }
.cta-bonus li strong { color: var(--bone); }

/* Etapa de destaques do plano (mockup do app) */
.plan-highlights { text-align: center; margin: 30px 0; }
.plan-highlights-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 16px;
}
.plan-highlights-img { border-radius: var(--radius-lg); overflow: hidden; }
.plan-highlights-img img { display: block; width: 100%; height: auto; }
.plan-highlights-caption {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 12px;
  line-height: 1.5;
}

/* Espelhos de personalização (feedback) */
.feedback-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.feedback-chip {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--copper-deep);
  background: rgba(22, 182, 147, 0.10);
  border: 1px solid rgba(22, 182, 147, 0.25);
  border-radius: 999px;
  padding: 7px 14px;
}
.feedback-note {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* =============================
   Página de resultado
   ============================= */
.result-hero {
  margin-bottom: 28px;
}

.result-headline {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.result-headline strong { color: var(--green-dark); }

.result-sub {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  margin-bottom: 24px;
}
.before-after-mascot {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 4px 18px rgba(20, 17, 14, 0.10);
  margin-top: 16px;
}
.before-after-mascot img {
  width: 100%;
  height: auto;
  display: block;
}
.before-after-mascot-caption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: var(--gray-text);
  text-align: center;
  margin: 8px 0 24px;
}
.before-after-mascot-caption strong {
  color: var(--copper);
  font-style: normal;
  font-weight: 700;
}
.ba-card { text-align: center; }
.ba-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
}
.ba-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-photo .ba-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
}
.ba-photo .ba-fallback svg { width: 60%; height: auto; }
.ba-card.before .ba-photo { box-shadow: 0 0 0 1px rgba(22, 182, 147, 0.15); filter: saturate(0.7) brightness(0.95); }
.ba-card.after .ba-photo { box-shadow: 0 0 0 2px var(--copper); }
.ba-card .ba-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
  color: var(--gray-text);
}
.ba-card.after .ba-label { color: var(--copper); }
.ba-arrow {
  color: var(--green-dark);
  font-size: 32px;
  font-weight: 800;
}
.ba-arrow small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Métricas comparativas — 2 colunas ANTES/DEPOIS */
.metrics-section {
  margin-bottom: 28px;
}
.metric-row {
  margin-bottom: 22px;
}
.metric-row:last-of-type { margin-bottom: 0; }
.metric-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--grafite);
  margin: 0 0 10px;
  line-height: 1.3;
}
.metric-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.metric-col { min-width: 0; }
.metric-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}
.metric-tier { color: var(--gray-text); }
.metric-pct {
  font-weight: 700;
  color: var(--grafite);
  font-variant-numeric: tabular-nums;
}
.metric-track {
  display: flex;
  gap: 4px;
}
.seg {
  flex: 1;
  height: 8px;
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}
.seg-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition: width 1s ease;
}
.metric-col.before .seg-fill { background: var(--copper); }
.metric-col.after .seg-fill { background: var(--charcoal); }

.metrics-disclaimer {
  font-size: 12px;
  color: var(--gray-text);
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

@media (max-width: 540px) {
  .metric-cols { grid-template-columns: 1fr; gap: 12px; }
}

/* Bullets do produto */
.product-bullets {
  margin-bottom: 28px;
}
.bullet-card {
  background: var(--surface);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.bullet-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.bullet-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--grafite);
  margin-bottom: 4px;
}
.bullet-content p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}
.bullet-content em {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--green-deep);
  font-style: italic;
}

/* Card de oferta */
.offer-card {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 100%);
  border: 2px solid var(--green-dark);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.offer-date-band {
  background: var(--charcoal);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.3px;
}
.offer-date-band u {
  color: var(--copper);
  text-decoration-color: var(--copper);
}
.offer-card-body {
  padding: 24px 20px;
}
.offer-card .offer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 14px;
}
.offer-card .offer-symbol {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: var(--bone);
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-family: 'Inter', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  padding-top: 2px;
}
.offer-card .offer-wordmark {
  font-family: 'Inter', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
}
.offer-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--grafite);
  margin-bottom: 4px;
}
.offer-card .lifetime {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.price-old {
  text-decoration: line-through;
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 6px;
}
.price-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-prefix {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-text);
  font-family: 'Inter', sans-serif;
}
.price-value {
  font-size: 44px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.5px;
}
.price-value small {
  font-size: 20px;
  font-weight: 600;
}
.price-cardnote {
  font-size: 11px;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.price-installment {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0 0 18px;
}
.price-installment strong {
  color: var(--charcoal);
  font-weight: 700;
}
.offer-features {
  text-align: left;
  margin: 0 auto;
  max-width: 280px;
  margin-bottom: 4px;
}
.offer-features li {
  font-size: 13px;
  color: var(--grafite);
  padding: 4px 0;
}
.offer-features li::before {
  content: "✓ ";
  color: var(--green-dark);
  font-weight: 800;
}
.offer-payment-note {
  font-size: 12px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 12px;
}

/* Garantia */
.guarantee {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.guarantee-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.guarantee-content p {
  font-size: 13px;
  color: var(--grafite);
  line-height: 1.5;
}
.guarantee-content p strong { color: var(--green-deep); }

/* Números prova social */
.proof-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.proof-card {
  background: var(--gray-light);
  padding: 16px 8px;
  border-radius: var(--radius);
  text-align: center;
}
.proof-card .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.proof-card .lbl {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 6px;
  line-height: 1.3;
}

/* FAQ */
.faq {
  margin-bottom: 28px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-border);
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--grafite);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question::after {
  content: "+";
  font-size: 22px;
  color: var(--green-dark);
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 18px;
}
.faq-answer strong { color: var(--green-deep); }

/* Section headlines */
.section-headline {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--grafite);
}
.section-sub {
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Final CTA reinforcement */
.final-cta-block {
  background: var(--green-dark);
  color: var(--white);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 24px;
}
.final-cta-block h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}
.final-cta-block p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 18px;
  line-height: 1.5;
}
.final-cta-block .cta-btn {
  background: var(--surface);
  color: var(--green-dark);
  box-shadow: none;
}
.final-cta-block .cta-btn:hover {
  background: var(--gray-light);
}

/* =============================
   Footer
   ============================= */
.footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 12px;
  color: var(--gray-text);
  background: var(--surface);
  border-top: 1px solid var(--gray-border);
}
.footer p { margin-bottom: 6px; }
.footer .disclaimer { font-style: italic; opacity: 0.8; }

/* =============================
   Responsivo (desktop)
   ============================= */
@media (min-width: 540px) {
  .app {
    margin: 24px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    min-height: calc(100vh - 48px);
  }
  .headline { font-size: 28px; }
  .result-headline { font-size: 32px; }
}

/* Utilitários */
.hidden { display: none !important; }
.spacer-sm { height: 16px; }
.spacer-md { height: 28px; }
.spacer-lg { height: 40px; }

/* =============================
   Mini timer dentro do offer card
   ============================= */
.offer-mini-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(22, 182, 147, 0.08);
  border: 1px solid rgba(22, 182, 147, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 4px 0 14px;
}
.omt-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}
.omt-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--copper);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}

/* CTA grande dentro do offer card */
.cta-btn-large {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 18px 16px;
  border-radius: 12px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(22, 182, 147, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  margin-bottom: 12px;
}
.cta-btn-large:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(22, 182, 147, 0.45);
}

/* Trust badges abaixo do CTA */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 8px;
}
.trust-badges span:nth-child(2) {
  color: var(--smoke);
}

/* =============================
   Selo de garantia circular
   ============================= */
.guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 28px;
}
.guarantee-seal-wrap {
  flex-shrink: 0;
  width: 110px;
}
.guarantee-seal-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(20, 17, 14, 0.18));
}
.guarantee-content {
  flex: 1;
}
.guarantee-eyebrow {
  display: inline-block;
  background: var(--charcoal);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.guarantee-content h4 {
  font-family: 'Inter', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 8px;
}
.guarantee-content p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-text);
}
.guarantee-content p strong { color: var(--charcoal); }

@media (max-width: 480px) {
  .guarantee {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .guarantee-seal-wrap { width: 130px; }
}

/* =============================
   Mockup multi-device + DESTAQUES
   ============================= */
.highlights-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
  margin: 4px 0 14px;
}
.device-mockup {
  background: var(--surface-2);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 8px 8px 4px;
  margin-bottom: 8px;
}
.device-mockup-svg {
  width: 100%;
  height: auto;
  display: block;
}
.device-mockup-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-align: center;
  color: var(--gray-text);
  margin-bottom: 18px;
}
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.highlights-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-border);
}
.highlights-item:last-child { border-bottom: none; }
.highlights-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--copper);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}
.highlights-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--charcoal);
}
.highlights-text strong {
  font-weight: 700;
  color: var(--charcoal);
}
.highlights-age {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gray-text);
  text-align: center;
  font-style: italic;
  margin-bottom: 24px;
}
.highlights-age strong {
  color: var(--copper);
  font-style: normal;
}

/* =============================
   Kegel callout + explainer + benefícios
   ============================= */
.kegel-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(22, 182, 147, 0.08);
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 24px 0 16px;
}
.kegel-callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--bone-soft);
  font-weight: 800;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.kegel-callout p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grafite);
}
.kegel-callout p strong {
  color: var(--copper);
  font-weight: 700;
}

.kegel-explainer {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--grafite);
  margin: 0 0 24px;
}
.kegel-explainer mark {
  background: rgba(22, 182, 147, 0.14);
  color: var(--grafite);
  padding: 1px 2px;
  border-radius: 3px;
}
.src-pill {
  display: inline-block;
  background: var(--surface);
  color: var(--copper-deep);
  padding: 1px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  vertical-align: baseline;
}

.benefits-headline {
  font-family: 'Inter', serif;
  font-size: 22px;
  color: var(--grafite);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  margin-top: 8px;
  flex: 0 0 8px;
}
.benefit-body {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--grafite);
}
.benefit-body strong {
  color: var(--charcoal);
  font-weight: 700;
}

.bullet-reinforce {
  margin: 6px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-style: italic;
  font-weight: 600;
  color: var(--copper);
  line-height: 1.45;
}

/* =============================
   Access banner (imagem única "O que você vai ter acesso")
   ============================= */
.access-banner {
  width: 100%;
  margin: 36px 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(20, 17, 14, 0.10);
}
.access-banner picture,
.access-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .access-banner {
    margin: 24px 0;
    border-radius: var(--radius);
  }
}

/* =============================
   Access cards (estrutura NEVI fiel, brand Carvão & Cobre)
   ============================= */
.access-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: var(--charcoal);
  margin: 40px 0 28px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.access-headline-text { display: inline-block; }
.access-headline-rays {
  display: inline-flex;
  width: 38px;
  height: 60px;
  color: var(--copper);
  flex-shrink: 0;
}
.access-headline-rays svg { width: 100%; height: 100%; }
.access-headline-rays.right svg { transform: scaleX(-1); }

.access-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.access-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(320px, 1.15fr);
  gap: 22px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px 22px 28px;
  transition: box-shadow 0.2s ease;
  overflow: visible;
}
.access-card:hover { box-shadow: var(--shadow-md); }

.access-card-check {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--copper);
  color: var(--copper);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(20, 17, 14, 0.08);
}

.access-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}
.access-card-icon-svg svg {
  width: 40px;
  height: 40px;
}

/* Ícone via imagem (já vem com círculo + check embutidos) */
.access-card-icon.icon-image {
  width: 96px;
  height: 96px;
  background: transparent;
  overflow: visible;
}
.access-card-icon.icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Em cards com imagem-ícone, não exibir o check separado (vem embutido) */
.access-card.has-icon-image .access-card-check { display: none; }

.access-card-body { min-width: 0; }
.access-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}
.access-card-title em {
  font-style: normal;
  color: var(--copper);
  font-weight: 800;
}
.access-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--grafite);
  margin: 0;
  text-transform: none;
}
.access-card-text em {
  font-style: normal;
  color: var(--copper);
  font-weight: 700;
}

.access-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(22, 182, 147, 0.08) 0%, rgba(22, 182, 147, 0.16) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay manhã/tarde/noite no card Kegel (estilo NEVI) */
.image-overlay.schedule {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 12px;
  pointer-events: none;
}
.schedule-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.schedule-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--copper);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(20, 17, 14, 0.18);
}
.schedule-icon svg { width: 18px; height: 18px; }
.schedule-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(20, 17, 14, 0.1);
}
.schedule-dash {
  flex: 0 0 16px;
  border-top: 1.5px dashed var(--copper);
  height: 1px;
  align-self: flex-start;
  margin-top: 15px;
}
.access-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.access-card-image.is-placeholder img { display: none; }
.access-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px;
  z-index: 0;
}

@media (max-width: 720px) {
  .access-card {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "image image"
      "icon body";
    gap: 14px;
    padding: 18px 16px 16px;
  }
  .access-card-icon {
    width: 64px;
    height: 64px;
    grid-area: icon;
    align-self: start;
  }
  .access-card-icon-svg svg { width: 34px; height: 34px; }
  .access-card-body { grid-area: body; }
  .access-card-image {
    grid-area: image;
    aspect-ratio: 16 / 9;
  }
  .access-card-check {
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .access-headline {
    font-size: 24px;
    gap: 8px;
  }
  .access-headline-rays {
    width: 28px;
    height: 44px;
  }
  .schedule-pill { gap: 2px; }
  .schedule-icon { width: 26px; height: 26px; }
  .schedule-icon svg { width: 14px; height: 14px; }
  .schedule-label { font-size: 8px; padding: 1px 4px; }
  .schedule-dash { flex: 0 0 10px; }
}

/* =============================
   Trust badges
   ============================= */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px 0 8px;
  margin-bottom: 24px;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.trust-badge-icon {
  width: 36px;
  height: 36px;
  color: var(--copper);
}
.trust-badge-icon svg {
  width: 100%;
  height: 100%;
}
.trust-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--grafite);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* =============================
   Result hero — sub-headlines
   ============================= */
.result-sub-secondary {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 8px;
  border-top: 1px solid var(--gray-border);
  padding-top: 12px;
}

/* =============================
   Bullets expandidos (estilo NEVI)
   ============================= */
.bullets-expanded {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bullet-expanded {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--copper);
  border-radius: 12px;
}
.bullet-expanded-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(22, 182, 147, 0.25);
}
.bullet-expanded-body {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--charcoal);
}
.bullet-expanded-body strong {
  font-weight: 700;
  color: var(--charcoal);
}

/* =============================
   Bloco de Reforço de oferta (estilo NEVI Tela 27)
   ============================= */
.reinforcement {
  margin: 32px 0 28px;
  padding: 28px 22px;
  background: linear-gradient(180deg, var(--bone-soft) 0%, var(--bone) 100%);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.reinforcement-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.reinforcement-headline {
  font-family: 'Inter', serif;
  font-size: 26px;
  line-height: 1.18;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 18px;
}
.reinforcement-body {
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}
.reinforcement-body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.reinforcement-body p:last-child { margin-bottom: 0; }
.reinforcement-body strong { font-weight: 700; }
.reinforcement-anchor {
  font-family: 'Inter', serif !important;
  font-size: 18px !important;
  font-style: italic;
  line-height: 1.45 !important;
  color: var(--charcoal) !important;
  text-align: center;
  padding: 14px 18px;
  margin: 18px 0 12px !important;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.reinforcement-anchor strong { font-style: normal; color: var(--copper) !important; }
.reinforcement-private {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-style: italic;
  color: var(--gray-text) !important;
  text-align: center;
  margin-top: 8px !important;
}

@media (max-width: 480px) {
  .reinforcement { padding: 24px 18px; }
  .reinforcement-headline { font-size: 22px; }
  .reinforcement-anchor { font-size: 16px !important; }
}

/* =============================
   Banner de escassez (acima do offer card)
   ============================= */
.scarcity-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.scarcity-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid;
}
.scarcity-banner .scarcity-icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}
.scarcity-banner .scarcity-text {
  flex: 1;
  color: var(--charcoal);
}
.scarcity-banner .scarcity-text strong {
  font-weight: 700;
  color: var(--charcoal);
}
.scarcity-fire {
  background: rgba(22, 182, 147, 0.08);
  border-color: rgba(22, 182, 147, 0.30);
}
.scarcity-gift {
  background: var(--surface-2);
  border-color: var(--gray-border);
}

/* =============================
   Social proof flutuante
   ============================= */
.sp-container {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 32px);
  width: 340px;
}
.sp-card {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--copper);
  border-radius: 12px;
  padding: 12px 14px 12px 12px;
  box-shadow: 0 8px 28px rgba(20, 17, 14, 0.18);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 0.35s ease;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.sp-card.is-visible {
  transform: translateX(0);
  opacity: 1;
}
.sp-card.is-leaving {
  transform: translateX(-120%);
  opacity: 0;
}
.sp-avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-deep) 100%);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', Georgia, serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(22, 182, 147, 0.35);
}
.sp-body {
  flex: 1;
  min-width: 0;
}
.sp-line1 {
  font-size: 12px;
  color: var(--charcoal);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-line1 strong { font-weight: 700; }
.sp-line2 {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sp-dot {
  color: var(--smoke);
  margin: 0 2px;
}
.sp-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-right: 4px;
}
.sp-close {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  color: var(--smoke);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.sp-close:hover { color: var(--charcoal); }

@media (max-width: 480px) {
  .sp-container {
    bottom: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
  }
  .sp-line1, .sp-line2 { white-space: normal; }
}

/* =============================
   Estrelas SVG (rating)
   ============================= */
.svg-stars-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
}
.svg-star {
  width: 16px;
  height: 16px;
  fill: var(--copper);
  flex-shrink: 0;
}
.proof-card .svg-stars-row {
  margin-bottom: 6px;
  display: flex;
}
.proof-card .svg-star {
  width: 13px;
  height: 13px;
}
.testimonial .svg-stars-row {
  display: flex;
  justify-content: flex-start;
}
.testimonial .svg-star {
  width: 18px;
  height: 18px;
}

/* ===== Captura de e-mail ===== */
.email-capture {
  margin: 8px 0 18px;
}
.email-input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #2A2520;
  background: #F2EDE3;
  border: 1.5px solid rgba(22, 182, 147, 0.35);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.email-input::placeholder { color: rgba(42, 37, 32, 0.45); }
.email-input:focus {
  border-color: #16B693;
  box-shadow: 0 0 0 3px rgba(22, 182, 147, 0.15);
}
.email-error {
  min-height: 18px;
  margin: 6px 2px 0;
  color: #C84B3A;
  font-size: 13px;
  font-weight: 600;
}

/* ===== Segurança contra transbordo horizontal (mobile) ===== */
html, body { overflow-x: hidden; max-width: 100%; }
.headline, .subheadline, .card-rating-text { overflow-wrap: break-word; }
.card-option .card-label-bar { min-width: 0; }
.card-option .card-label-bar > span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
