:root {
  --bg-dark: #1a2a44;
  --bg-header: #152236;
  --card-bg: #ffffff;
  --text-tagline: rgba(255, 255, 255, 0.55);
  --text-card-label: #555555;
  --text-anonymous: #999999;
  --accent-orange-1: #f05a28;
  --accent-orange-2: #e03e1a;
  --accent-pink-1: #e91e8c;
  --accent-pink-2: #c2185b;
  --font-main: 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

/* Garante que o atributo `hidden` sempre vença, mesmo em elementos que têm
   display:flex/block explícito noutra regra (ex: .redirect-button, .explicit-banner). */
[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-dark);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 24px;
}

.funnel-header {
  width: 100%;
  background: var(--bg-header);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
}

.funnel-logo {
  width: 48px;
  height: 48px;
  /* ícone é preto sobre fundo transparente; inverte pra branco no header escuro */
  filter: brightness(0) invert(1);
}

#app {
  width: 100%;
  max-width: 440px;
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 0;
  text-align: center;
  transition: opacity 0.15s ease;
}

#app.fade-out {
  opacity: 0;
}

.headline {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #ffffff;
}

.tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-tagline);
  margin: 0 0 28px;
}

.main-card {
  background: var(--card-bg);
  color: #1a1a2e;
  border-radius: 16px;
  padding: 28px 20px 20px;
  width: 100%;
  margin: 0 0 20px;
}

.card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-card-label);
  margin: 0 0 18px;
}

.buttons-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 16px;
}

.target-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 17px 20px;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
}

.boyfriend-btn {
  background: linear-gradient(135deg, var(--accent-orange-1), var(--accent-orange-2));
  box-shadow: 0 4px 16px rgba(240, 90, 40, 0.4);
}

.girlfriend-btn {
  background: linear-gradient(135deg, var(--accent-pink-1), var(--accent-pink-2));
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.4);
}

.anonymous-note {
  font-size: 12px;
  color: var(--text-anonymous);
  margin: 0;
}

.funnel-footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* Steps 2/3 (placeholder, conteúdo real entra na migração completa) reusam
   .headline/.tagline + este CTA — visual provisório, não extraído ainda. */
.btn-cta {
  border: none;
  border-radius: 10px;
  padding: 17px 24px;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-orange-1), var(--accent-pink-2));
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
  width: 100%;
  max-width: 320px;
}

/* ==========================================================================
   Step 2 — Intro (choice card, 3 botões azuis)
   ========================================================================== */

.choice-card {
  text-align: center;
}

.choice-headline {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a44;
  margin: 0 0 24px;
}

.choice-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice-btn {
  border: none;
  border-radius: 10px;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
  line-height: 1.3;
  background: linear-gradient(135deg, #2c5fce, #1a4ab5);
  box-shadow: 0 4px 14px rgba(26, 74, 181, 0.35);
}

/* ==========================================================================
   Step 3 — Phone input
   ========================================================================== */

.content-card {
  background: #ffffff;
  color: #1a2a44;
  border-radius: 14px;
  padding: 28px 24px;
  width: 100%;
  margin-top: 32px;
  text-align: center;
}

.phone-headline {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
}

.phone-subheadline {
  font-size: 13px;
  color: #6e7788;
  margin: 0 0 18px;
  padding: 0 8px;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #448fff;
  border-radius: 14px;
  margin: 0 0 14px;
  overflow: hidden;
}

.country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-right: 1px solid #e5e9f0;
  height: 48px;
}

.country-flag {
  width: 20px;
  border-radius: 2px;
}

.country-code {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.dropdown-arrow {
  font-size: 9px;
  color: #999999;
}

.phone-input {
  flex: 1;
  border: none;
  outline: none;
  height: 48px;
  padding: 0 12px;
  font-size: 16px;
  font-family: inherit;
  color: #333333;
}

.reveal-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
  margin: 0 0 12px;
  background: linear-gradient(rgb(199, 204, 213) 0%, rgb(184, 190, 201) 100%);
}

.reveal-btn:not(:disabled) {
  background: linear-gradient(rgb(109, 143, 218) 0%, rgb(95, 127, 204) 100%);
  cursor: pointer;
}

.reveal-btn:disabled {
  cursor: not-allowed;
}

.validation-msg {
  color: rgb(231, 76, 60);
  font-size: 12px;
  margin: 0 0 8px;
  text-align: left;
}

body.bg-input-gradient {
  background: linear-gradient(rgb(43, 68, 109) 0%, rgb(29, 47, 79) 100%);
}

body.bg-report {
  background: radial-gradient(circle at top, #5382c629, #0000 28%), linear-gradient(#23395d 0%, #1e2f4a 100%);
}

body.bg-report #app {
  max-width: none;
  padding: 0 14px;
  text-align: left;
}

.activity-feed {
  background: linear-gradient(rgb(238, 247, 255) 0%, rgb(220, 236, 249) 100%);
  border-radius: 18px;
  padding: 18px 14px 16px;
  margin: 20px 0 0;
  width: 100%;
}

.feed-title {
  color: rgb(36, 52, 72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin: 0 0 14px;
  text-align: left;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(rgba(157, 187, 214, 0.42) 0%, rgba(168, 194, 219, 0.3) 100%);
  border-radius: 8px;
  padding: 10px 12px;
  text-align: left;
}

.feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(59, 187, 87);
  flex-shrink: 0;
}

.feed-line {
  font-size: 12px;
}

.feed-num {
  color: rgb(45, 59, 76);
  font-weight: 500;
}

.feed-sep {
  color: rgb(97, 114, 134);
}

.feed-text {
  color: rgb(45, 59, 76);
}

.loading-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0a1428cc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-content {
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  min-width: 260px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px #0000004d;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 4px solid #e5e9f0;
  border-top-color: #448fff;
  border-radius: 50%;
  animation: loading-spin 0.8s linear infinite;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-title {
  color: #1a2a44;
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
}

.loading-sub {
  color: #888888;
  font-size: 13px;
  margin: 0;
}

/* ==========================================================================
   Step 4 — Scanning
   ========================================================================== */

.scanning-view {
  width: 100%;
  text-align: left;
  padding-top: 14px;
}

.alert-bar {
  background: linear-gradient(rgb(255, 38, 29) 0%, rgb(225, 28, 37) 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 14px;
  text-align: center;
}

.matched-card {
  background: #ffffff;
  color: #1a2a44;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 14px;
  text-align: center;
}

.matched-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.matched-sub {
  font-size: 13px;
  color: #6e7788;
  margin: 0;
}

.vsl-frame-wrapper {
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 14px;
  min-height: 180px;
  background: #000;
}

.explicit-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(rgb(239, 54, 72) 0%, rgb(217, 37, 63) 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 0 14px;
}

.explicit-icon {
  font-size: 22px;
}

.explicit-title {
  font-weight: 800;
  font-size: 13px;
}

.explicit-sub {
  font-size: 12px;
  opacity: 0.9;
}

.progress-time-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0 0 8px;
  font-family: monospace;
}

.progress-bar-track {
  background: rgb(236, 240, 245);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
  margin: 0 0 14px;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(32, 169, 79) 0%, rgb(47, 215, 105) 100%);
  transition: width 0.3s ease;
}

.identity-card {
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(247, 248, 251) 100%);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin: 0 0 14px;
}

.profile-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #1a2a44;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: block;
}

.phone-chip {
  display: inline-block;
  background: linear-gradient(rgb(248, 248, 249) 0%, rgb(236, 239, 244) 100%);
  color: #1a2a44;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 16px;
  margin: 0 0 8px;
}

.profile-location {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-shell {
  background: #ffffff;
  border: 1px solid #448fff;
  border-radius: 14px;
  padding: 18px;
  margin: 0 0 14px;
}

.status-shell-title {
  color: #1a4ab5;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.status-pill {
  background: linear-gradient(rgb(250, 250, 250) 0%, rgb(240, 243, 247) 100%);
  color: #1a2a44;
  font-family: monospace;
  font-size: 12px;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 14px;
}

.metrics-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 252, 255) 100%);
  border-radius: 10px;
  padding: 12px;
  margin: 0 0 14px;
}

.metric-item-wide {
  grid-column: 1 / -1;
}

.metric-label {
  font-size: 10px;
  font-weight: 700;
  color: #999999;
  letter-spacing: 0.4px;
  margin: 0 0 4px;
}

.metric-value {
  font-size: 15px;
  font-weight: 800;
  color: #1a2a44;
}

.status-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dee6;
}

.status-dot-active {
  background: #1a4ab5;
}

.terminal {
  background: #0d1420;
  border-radius: 8px;
  padding: 12px;
  font-family: monospace;
  font-size: 11px;
  color: #6fdc8c;
  min-height: 20px;
}

.terminal-line {
  padding: 2px 0;
}

.redirect-button {
  color: #ffffff;
  letter-spacing: 0.25px;
  cursor: pointer;
  background: linear-gradient(rgb(49, 216, 104) 0%, rgb(22, 190, 100) 100%);
  border: none;
  border-radius: 14px;
  width: 100%;
  padding: 17px 18px;
  font-size: 15px;
  font-weight: 900;
  font-family: inherit;
  transition: transform 0.18s, box-shadow 0.18s;
  display: block;
  box-shadow: inset 0 0 0 1px #ffffff17, 0 0 24px #2edd7c57;
  margin: 0 0 14px;
}

.redirect-button:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px #ffffff24, 0 0 28px #2edd7c70;
}

.redirect-button-bottom {
  margin-top: 4px;
}

.people-counter {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ==========================================================================
   Step 5 — Report (long-form sales page)
   ========================================================================== */

.page-content {
  width: min(100%, 540px);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 18px 0 44px;
}

.section-card {
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 16px 36px #0812282e;
}

.section-card-light {
  background: linear-gradient(rgb(251, 253, 255) 0%, rgb(242, 246, 251) 100%);
  color: #1a2a44;
}

.section-card-danger {
  background: linear-gradient(rgb(182, 3, 18) 0%, rgb(134, 0, 15) 100%);
  color: #ffffff;
  text-align: center;
}

.section-card-offer {
  background: linear-gradient(rgb(239, 252, 247) 0%, rgb(223, 249, 239) 100%);
  color: #1a2a44;
  border: 2px solid rgba(27, 141, 92, 0.16);
  text-align: center;
}

.section-card.accent-green {
  border: 2px solid rgba(27, 141, 92, 0.25);
}

.section-card h3 {
  font-size: 17px;
  margin: 0 0 10px;
}

.section-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
  color: inherit;
}

.alert-title {
  letter-spacing: 0.35px;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 900;
}

.alert-phone-box {
  color: #ffe36a;
  background: #73000038;
  border: 1px solid #ffc96299;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 224px;
  padding: 14px 22px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #ffffff0f;
}

.warning-core {
  text-align: center;
  background: linear-gradient(#b9070a 0%, #ad090b 100%);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: 0 18px 40px #b0090b2e;
  color: #ffffff;
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff1d0;
  letter-spacing: 0.5px;
  background: #5800002e;
  border: 1px solid #ffc75e61;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 18px;
}

.warning-strip {
  color: #ffffff;
  background: #ffffff1f;
  border: 1px solid #ffb03e80;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 10px;
}

.warning-strip-accent {
  color: #ffe454;
}

.report-info-top {
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #355280;
  background: linear-gradient(#eef7ff 0%, #dfeff8 100%);
  border: 1px solid #67adff;
  border-radius: 14px;
  margin-bottom: 16px;
  padding: 15px 14px;
  font-size: 12px;
  font-weight: 800;
}

.report-export-card {
  text-align: center;
  background: linear-gradient(#f8fbff 0%, #eef4fb 100%);
  border-radius: 16px;
  padding: 20px 14px 18px;
}

.country-avatar {
  width: 90px;
  height: 90px;
  line-height: 84px;
  border-radius: 50%;
  background: #1a2a44;
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  margin: 0 auto 14px;
  border: 3px solid #45a2ff;
  box-shadow: 0 10px 22px #1382ff38;
}

.report-phone-pill {
  color: #2c4871;
  background: linear-gradient(#eaf4ff 0%, #dbeafd 100%);
  border: 1px solid #63a6ff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 800;
}

.report-id-line {
  color: #3f526d;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

.findings-tab {
  display: inline-block;
  background: #1a2a44;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 0 12px;
}

.findings-list {
  margin: 0 0 16px;
  padding-left: 18px;
}

.findings-list li {
  font-size: 13px;
  margin-bottom: 8px;
}

.activity-log-panel {
  border-top: 1px solid rgba(26, 42, 68, 0.1);
  padding-top: 14px;
}

.activity-log-title {
  font-weight: 800;
}

.activity-log-subtitle {
  font-size: 11px;
  color: #999999;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.activity-log-hint {
  font-size: 11px;
  color: #999999;
  text-align: center;
  margin: 6px 0;
}

.activity-log-entry {
  border-left: 2px solid #448fff;
  padding: 4px 0 10px 12px;
  margin-bottom: 4px;
}

.activity-log-date {
  font-size: 10px;
  font-family: monospace;
  color: #999999;
}

.activity-log-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: #1a4ab5;
  margin: 2px 0;
}

.activity-log-text {
  font-size: 12px;
}

.section-heading-row {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.heatmap-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.heatmap-label {
  font-size: 12px;
  margin-bottom: 4px;
}

.heatmap-bar-track {
  background: rgba(26, 42, 68, 0.08);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 4px;
}

.heatmap-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f05a28, #e91e8c);
  border-radius: 999px;
}

.heatmap-pct {
  font-size: 11px;
  color: #6e7788;
}

.location-card {
  text-align: center;
}

.location-line {
  font-weight: 700;
}

.location-sub {
  font-size: 12px;
  color: #6e7788;
  filter: blur(1.5px);
}

.screenshot-item {
  background: rgba(26, 42, 68, 0.04);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.screenshot-title {
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 4px;
}

.screenshot-sub {
  font-size: 11px;
  color: #6e7788;
  margin: 0;
}

.evidence-title {
  font-weight: 800;
  color: #b60312;
  margin-bottom: 10px;
}

.evidence-contacts-label {
  font-size: 11px;
  font-weight: 700;
  color: #999999;
  margin: 0 0 6px;
}

.evidence-contact-blur {
  font-family: monospace;
  font-size: 14px;
  filter: blur(3px);
  margin: 0 0 6px;
}

.evidence-stat {
  font-weight: 700;
  font-size: 13px;
}

.evidence-sub {
  font-size: 12px;
  color: #6e7788;
}

.cta-main {
  display: block;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 800;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
  margin: 14px 0 6px;
}

.cta-main.dark {
  background: linear-gradient(135deg, #2c5fce, #1a4ab5);
}

.cta-main.success {
  background: linear-gradient(135deg, #20a94f, #1b8d5c);
  box-shadow: 0 4px 16px rgba(27, 141, 92, 0.35);
}

.cta-main.final {
  background: linear-gradient(135deg, #f05a28, #e91e8c);
}

.pricing-eyebrow {
  font-weight: 700;
}

.pricing-closing {
  font-weight: 700;
}

.pricing-badge {
  display: inline-block;
  background: #1b8d5c;
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 14px;
  margin: 8px 0;
}

.pricing-social-proof {
  font-size: 11px;
  color: #6e7788;
}

.pricing-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 4px;
}

.pricing-old {
  font-size: 16px;
  color: #999999;
  text-decoration: line-through;
}

.pricing-new {
  font-size: 34px;
  font-weight: 800;
  color: #1b8d5c;
}

.pricing-save {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  background: #e03e1a;
  border-radius: 999px;
  padding: 4px 10px;
}

.pricing-note {
  font-size: 12px;
  color: #6e7788;
  margin-bottom: 12px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  text-align: left;
}

.pricing-features li {
  font-size: 13px;
  margin-bottom: 8px;
}

.pricing-cta-sub {
  font-size: 11px;
  color: #6e7788;
  text-align: center;
}

.quotes-subtitle {
  font-size: 12px;
  color: #6e7788;
  margin-top: -6px;
}

.quote-card {
  border-top: 1px solid rgba(26, 42, 68, 0.08);
  padding-top: 12px;
  margin-top: 12px;
}

.quote-stars {
  color: #f5b400;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.quote-text {
  font-size: 13px;
  font-style: italic;
}

.quote-author {
  font-size: 12px;
  font-weight: 700;
}

.verified-badge {
  display: inline-block;
  background: #1b8d5c;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}

.guarantee-contact {
  font-size: 12px;
  color: #6e7788;
}

.vsl-result-section {
  background: #000000;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}

.how-video-wrap {
  width: 100%;
  padding-top: 108%;
  position: relative;
}

.vsl-iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-testimonial-card {
  background: linear-gradient(rgb(249, 251, 255) 0%, rgb(237, 243, 248) 100%);
  border: 1px solid #dce6f3;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 26px #11203814;
  margin-bottom: 10px;
}

.video-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.video-name {
  color: #344e78;
  font-size: 17px;
  font-weight: 900;
}

.video-quote {
  color: #66758a;
  max-width: 270px;
  font-size: 12px;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-video-wrap {
  background: #111827;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  padding-top: 178.218%;
  position: relative;
  overflow: hidden;
}

.testimonial-video {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.video-cta-shell {
  background: linear-gradient(rgb(99, 179, 249) 0%, rgb(74, 155, 231) 100%);
  border-radius: 10px;
  margin-top: 2px;
  padding: 18px;
}

.video-cta-shell .cta-main {
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 10px;
  background: rgba(26, 42, 68, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #1a2a44;
  padding: 12px 14px;
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.15s ease;
  flex-shrink: 0;
}

.faq-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 13px;
  color: #444c5c;
  padding: 0 14px 14px;
}

.final-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 10px;
}

.final-cta-sub {
  font-size: 12px;
  opacity: 0.85;
}

/* ==========================================================================
   Páginas extras — Reserved / Back-offer / Thanks
   ========================================================================== */

.top-bar {
  width: 100%;
  background: rgb(39, 174, 96);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}

.unlock-card {
  background: #ffffff;
  color: #1a2a44;
  border-radius: 14px;
  padding: 28px 24px;
  width: 100%;
  text-align: center;
  margin-top: 24px;
}

.lock-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.card-sub {
  font-size: 14px;
  font-weight: 600;
  color: rgb(39, 174, 96);
  margin: 0 0 20px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.benefits-list li {
  font-size: 14px;
  margin-bottom: 10px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.email-input {
  border: 2px solid #dddddd;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #333333;
}

.unlock-btn {
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-weight: 800;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, rgb(39, 174, 96), rgb(30, 132, 73));
}

.unlock-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.privacy-note {
  font-size: 12px;
  color: #999999;
  margin: 0;
}

.backoffer-lead {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0;
}

.backoffer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  width: 100%;
}

.backoffer-stat {
  background: #ffffff;
  color: #1a2a44;
  border-radius: 10px;
  padding: 12px 6px;
  text-align: center;
}

.backoffer-stat-value {
  font-size: 20px;
  font-weight: 800;
}

.backoffer-stat-label {
  font-size: 10px;
  color: #6e7788;
}

.backoffer-secure {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.backoffer-timer {
  text-align: center;
}

.backoffer-timer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.backoffer-timer-value {
  font-size: 28px;
  font-weight: 800;
  font-family: monospace;
  color: #ff6a4d;
}

body.bg-back-offer {
  background: rgb(10, 15, 26);
}

.phone-frame {
  background: #090e1a;
  border: 7px solid #0e1520;
  border-radius: 38px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 24px 60px #0000008c;
}

.notch {
  background: #090e1a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
}

.notch span {
  background: #0c1220;
  border-radius: 18px;
  width: 96px;
  height: 22px;
  display: block;
}

.strip {
  text-align: center;
  letter-spacing: 1.8px;
  color: #ffffff;
  text-transform: uppercase;
  background: #b91c1c;
  padding: 9px 12px;
  font-size: 9.5px;
  font-weight: 800;
}

.card {
  padding: 20px 16px;
  text-align: center;
}

.headline-block {
  margin-bottom: 16px;
}

.interaction-prompt-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #03070eb8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.interaction-prompt {
  text-align: center;
  background: linear-gradient(#101a2a 0%, #070d18 100%);
  border: 1px solid #1d314d;
  border-radius: 20px;
  width: min(330px, 100%);
  padding: 22px 18px 18px;
  box-shadow: 0 24px 60px #0000008c;
  color: #ffffff;
}

.interaction-prompt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff6666;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #b91c1c2e;
  border-radius: 999px;
  margin-bottom: 10px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 900;
}

.interaction-prompt h2 {
  font-size: 18px;
  margin: 0 0 10px;
}

.interaction-prompt p {
  font-size: 13px;
  color: #b7c2d6;
  margin: 0 0 18px;
}

.interaction-prompt-cta {
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  background: #16a34a;
  border: 0;
  border-radius: 13px;
  width: 100%;
  min-height: 50px;
  font-size: 16px;
  font-weight: 900;
  font-family: inherit;
  box-shadow: 0 14px 30px #16a34a47;
}

.thanks-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.thanks-steps-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 20px 0 12px;
}

.thanks-steps {
  text-align: left;
  padding-left: 20px;
  width: 100%;
  max-width: 340px;
}

.thanks-steps li {
  font-size: 14px;
  margin-bottom: 10px;
}
