:root {
  --bg-main: #050505;
  --bg-section: #0b0b0b;
  --bg-focus: #101010;
  --primary: #00d26a;
  --primary-dark: #00a756;
  --text-main: #f7f7f7;
  --text-muted: #a7a7a7;
  --border-red: #00d26a;
  --accent-soft: #1c1c1c;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.7);
  --radius: 10px;
  --radius-lg: 16px;
  --transition-fast: 0.18s ease-out;
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
}

.page-wrapper {
  min-height: 100vh;
  padding-bottom: 64px; /* espaço para barra fixa */
}

/* TOP URGENCY BAR */
.top-urgency-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #001a0f, #003a20);
  border-bottom: 1px solid rgba(0, 210, 106, 0.4);
}

.top-urgency-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.top-urgency-icon {
  color: #9cffcf;
}

.top-urgency-text {
  color: #d9ffed;
  flex: 1;
}

.top-urgency-timer {
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.5);
}

/* HERO */
.hero {
  background: radial-gradient(circle at top, #001b10 0, #050505 42%, #000 100%);
  padding: 24px 14px 20px;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-note {
  margin: 10px 0 18px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
}

.meta-icon {
  font-size: 13px;
}

.meta-text {
  color: var(--text-muted);
}

/* BUTTONS */
.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 40px rgba(0, 210, 106, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(0, 210, 106, 0.45);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(0, 210, 106, 0.35);
}

.btn-secondary {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.8);
}

.btn-large {
  width: 100%;
  padding: 16px 18px;
  font-size: 13px;
}

.btn-hero {
  width: 100%;
}

/* SECTIONS */
.section {
  padding: 18px 14px;
  background: var(--bg-section);
}

.section-dark {
  background: var(--bg-section);
}

.section-focus {
  background: var(--bg-focus);
}

.section-final {
  background: #000;
  padding-bottom: 80px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 14px;
}

/* MICRO-RESUMOS */
.micro-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 210, 106, 0.5);
  background: #050505;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
}

.micro-summary {
  margin: 2px 0;
  font-size: 13px;
  color: var(--text-main);
}

/* BORDERS & BOXES */
.bordered {
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  background: var(--accent-soft);
  box-shadow: var(--shadow-soft);
}

.bordered.red {
  border: 1px solid var(--border-red);
}

.box-highlight {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 31, 61, 0.12), rgba(0, 0, 0, 0.7));
  padding: 14px 14px;
  font-weight: 600;
  text-align: left;
}

.box-highlight .highlight {
  color: var(--primary);
}

.box-soft {
  border-radius: var(--radius-lg);
  background: #101010;
  padding: 14px 14px;
  color: var(--text-muted);
  font-size: 14px;
}

/* PATTERN BREAK */
.pattern-break {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* LISTS */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 14px;
}

.bullet-list li {
  padding: 4px 0;
}

.bullet-list.negative li {
  color: #ff9a9a;
}

.bullet-list.positive li {
  color: #e3ffe3;
}

.impact-phrase {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 15px;
}

/* PROOF GRID */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.proof-item {
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.6);
}

.proof-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* WHAT YOU GET */
.what-you-get-box {
  margin-top: 6px;
}

.what-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.what-list li {
  padding: 5px 0;
}

/* OFFER */
.offer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-header {
  margin-bottom: 4px;
}

.offer-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.offer-box {
  background: #050505;
}

.offer-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.offer-line.strong {
  font-size: 16px;
  font-weight: 800;
}

.offer-line.small {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.offer-striked {
  text-decoration: line-through;
  color: var(--text-muted);
}

.offer-price {
  color: var(--primary);
  font-weight: 800;
}

.scarcity-text {
  margin: 10px 0 0;
  font-size: 12px;
  color: #9cffcf;
}

/* BOTTOM BAR */
.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.bottom-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bottom-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bottom-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bottom-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 14px;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #050505;
  border-radius: 18px;
  border: 1px solid rgba(0, 210, 106, 0.2);
  box-shadow: var(--shadow-soft);
  max-width: 420px;
  width: 100%;
  padding: 16px 16px 18px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
}

.modal-header {
  margin-bottom: 10px;
  padding-right: 28px;
}

.modal-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.modal-header h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.modal-body {
  font-size: 13px;
  color: var(--text-muted);
}

.modal-body p {
  margin-top: 0;
  margin-bottom: 12px;
}

.fake-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.fake-input {
  flex: 1 1 100%;
  height: 34px;
  border-radius: 999px;
  background: #111;
  border: 1px solid rgba(0, 210, 106, 0.16);
}

.fake-input.half {
  flex: 1 1 calc(50% - 4px);
}

.modal-security {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

/* PROVAS REAIS / FEEDBACKS */
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.feedback-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(0, 210, 106, 0.25);
  box-shadow: var(--shadow-soft);
}

.feedback-image {
  width: 100%;
  display: block;
}

/* AUTHOR SECTION IMAGE */
.author-section-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

/* RESPONSIVO */
@media (min-width: 640px) {
  .hero {
    padding: 32px 18px 24px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-content {
    max-width: 720px;
  }

  .section {
    padding: 22px 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-wrapper {
    flex-direction: row;
    align-items: stretch;
  }

  .offer-header,
  .offer-box {
    flex: 1;
  }

  .offer-header {
    padding-right: 16px;
  }

  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .hero-content {
    max-width: var(--max-width);
  }

  .hero {
    padding-top: 40px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .btn-hero {
    max-width: 320px;
  }
}

