/* ════════════════════════════════════════════════════════════
   NEGOCIAÇÃO INTELIGENTE DISC — styles.css
   Responsivo mobile e desktop
   ════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:        #060d1a;
  --bg2:       #081020;
  --bg3:       #0a1428;
  --surface:   #0d1a30;
  --surface2:  #112040;
  --border:    rgba(59,130,246,0.15);
  --border2:   rgba(59,130,246,0.25);
  --blue:      #3b82f6;
  --blue-light:#60a5fa;
  --blue-pale: rgba(59,130,246,0.08);
  --accent:    #f0c040;
  --accent2:   #f5d060;
  --white:     #f0f4ff;
  --muted:     rgba(180,200,240,0.62);
  --muted2:    rgba(180,200,240,0.38);
  --font:      'Poppins', sans-serif;
  --r:         12px;
  --section-py: 92px;
}

/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
}

.wrap--wide {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

/* ── BLUR ORBS ───────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════════════════════════
   STICKY BAR
   ════════════════════════════════════════════════════════════ */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.sticky.show {
  transform: translateY(0);
}

.sticky-text {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.sticky-text strong {
  color: var(--white);
  font-weight: 600;
}

.sticky-btn {
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.sticky-btn:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  width: auto;
  min-width: 280px;
  max-width: 100%;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59,130,246,0.4), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 12px 40px rgba(59,130,246,0.55), 0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, #d97706, #f0c040);
  color: #0d0d0d;
  box-shadow: 0 8px 32px rgba(240,192,64,0.35), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-accent:hover {
  box-shadow: 0 12px 40px rgba(240,192,64,0.5);
  transform: translateY(-2px);
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════════════════
   SECTION BASE
   ════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 40px, 820px);
  height: 1px;
  background: var(--border);
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.h2 em {
  font-style: normal;
  color: var(--blue-light);
}

.h2 .acc {
  font-style: normal;
  color: var(--accent);
}

.lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* ════════════════════════════════════════════════════════════
   HERO — COMPACTO, RETO E RESPONSIVO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 54px 0 46px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(37,99,235,0.16), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(59,130,246,0.10), transparent 30%),
    var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--blue) 40%,
    var(--blue-light) 60%,
    transparent 100%
  );
}

.orb-hero-1 {
  width: 430px;
  height: 430px;
  background: rgba(37,99,235,0.16);
  top: -120px;
  right: -120px;
}

.orb-hero-2 {
  width: 300px;
  height: 300px;
  background: rgba(59,130,246,0.10);
  bottom: 20px;
  left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 230px;
  margin: 0 auto 14px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,0.32);
  background: rgba(59,130,246,0.12);
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0 auto 10px;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 em {
  color: var(--blue-light);
  font-style: normal;
}

.hero-sub {
  max-width: 540px;
  margin: 0 auto 6px;
  color: var(--muted);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -4px auto 14px;
  min-width: 0;
}

.book-wrap {
  width: 100%;
  max-width: 390px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.book-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(59,130,246,0.30) 0%, transparent 70%);
  filter: blur(38px);
  opacity: 0.9;
  z-index: 0;
}

.book-mockup-img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  max-width: 340px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transform: none;
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,0.55))
    drop-shadow(0 0 20px rgba(59,130,246,0.22));
}

.hero .btn {
  margin: 0 auto;
}

.hero-trust {
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  text-align: left;
}

.trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--blue-light);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR — DESKTOP BONITO + MOBILE RESPONSIVO
   ════════════════════════════════════════════════════════════ */
.proof-bar {
  background:
    linear-gradient(180deg, rgba(13,26,48,0.98), rgba(8,16,32,0.98));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}

.proof-inner {
  width: min(100% - 40px, 940px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  min-height: 118px;
  padding: 22px 16px;
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.12), transparent 55%),
    rgba(6,13,26,0.42);
  box-shadow: 0 16px 34px rgba(0,0,0,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.proof-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border-radius: 12px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.20);
}

.proof-item strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--muted);
}

.proof-sep {
  display: none;
}

/* ════════════════════════════════════════════════════════════
   DOR
   ════════════════════════════════════════════════════════════ */
.pain-list {
  margin: 40px 0 32px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s;
}

.pain-item:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.05);
}

.pain-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}

.pain-callout {
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(30,58,138,0.15));
  border: 1px solid rgba(59,130,246,0.25);
  border-left: 3px solid var(--blue);
  border-radius: var(--r);
  padding: 24px;
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

/* ════════════════════════════════════════════════════════════
   PERFIS DISC
   ════════════════════════════════════════════════════════════ */
.disc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}

.disc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}

.disc-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}

.disc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.dc-c::before {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.dc-e::before {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.dc-p::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.dc-a::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.disc-letter {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 14px;
}

.dc-c .disc-letter {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.dc-e .disc-letter {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.dc-p .disc-letter {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.dc-a .disc-letter {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.disc-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.disc-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   ACORDEÃO
   ════════════════════════════════════════════════════════════ */
.acc-list {
  margin-top: 40px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.acc-item {
  border-bottom: 1px solid var(--border);
}

.acc-item:last-child {
  border-bottom: none;
}

.acc-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  transition: background 0.2s;
}

.acc-btn:hover {
  background: rgba(59,130,246,0.04);
}

.acc-item.open .acc-btn {
  background: rgba(59,130,246,0.06);
}

.acc-btn-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.acc-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-pale);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-light);
  flex-shrink: 0;
}

.acc-item.open .acc-num {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.acc-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.acc-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--blue-light);
  margin-top: 2px;
}

.acc-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s;
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1);
}

.acc-body-inner {
  padding: 0 24px 22px 72px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   AUTOR
   ════════════════════════════════════════════════════════════ */
.author-section {
  background: linear-gradient(135deg, #060f22 0%, #081628 50%, #060f22 100%);
  position: relative;
  overflow: hidden;
}

.orb-author {
  width: 400px;
  height: 400px;
  background: rgba(37,99,235,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.author-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 40px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.author-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--blue-light), transparent);
}

.author-photo {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--blue);
  margin: 0 auto 20px auto;
  display: block;
}

.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.author-stat {
  min-width: 0;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(59,130,246,0.045);
  border: 1px solid rgba(59,130,246,0.10);
}

.author-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--blue-light);
}

.author-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--muted);
}

.author-quote {
  margin-top: 28px;
  padding: 24px;
  background: rgba(59,130,246,0.07);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
}

.author-quote p {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.author-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 12px;
  color: var(--blue-light);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.author-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: rgba(59,130,246,0.07);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.author-social-link:hover {
  background: rgba(59,130,246,0.15);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.author-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   BENEFÍCIOS
   ════════════════════════════════════════════════════════════ */
.ben-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
  align-items: stretch;
}

.ben-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.ben-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.ben-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.35;
  flex-shrink: 0;
  line-height: 1;
  margin-top: -4px;
  font-variant-numeric: tabular-nums;
}

.ben-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.ben-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   BÔNUS
   ════════════════════════════════════════════════════════════ */
.bonus-section {
  position: relative;
  overflow: hidden;
}

.orb-bonus {
  width: 450px;
  height: 300px;
  background: rgba(240,192,64,0.07);
  bottom: -100px;
  right: -100px;
}

.bonus-list {
  margin-top: 36px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.bonus-card:hover {
  border-color: rgba(240,192,64,0.3);
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}

.bonus-emoji {
  font-size: 28px;
  flex-shrink: 0;
}

.bonus-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.bonus-info span {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.bonus-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(240,192,64,0.1);
  border: 1px solid rgba(240,192,64,0.25);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════
   OFERTA
   ════════════════════════════════════════════════════════════ */
.offer-section {
  background: linear-gradient(135deg, #050c1c, #081020);
  position: relative;
  overflow: hidden;
}

.orb-offer {
  width: 500px;
  height: 400px;
  background: rgba(37,99,235,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.offer-box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 44px;
  margin-top: 40px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--accent) 100%);
}

.offer-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 32px;
}

.oi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.oi-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--blue-light);
  flex-shrink: 0;
}

.offer-price-block {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.offer-from {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  text-decoration: line-through;
}

.offer-price {
  font-size: clamp(56px, 8vw, 76px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-top: 6px;
}

.offer-price sup {
  font-size: 0.32em;
  font-weight: 600;
  vertical-align: super;
  color: var(--blue-light);
}

.offer-price sub {
  font-size: 0.28em;
  font-weight: 400;
  vertical-align: baseline;
  color: var(--muted);
}

.offer-badge {
  margin-top: 18px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
}

.offer-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 10px;
  display: block;
}

.offer-box .btn {
  display: flex;
  margin: 0 auto;
  width: min(100%, 430px);
}

/* ════════════════════════════════════════════════════════════
   GARANTIA
   ════════════════════════════════════════════════════════════ */
.guarantee-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 40px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
}

.guarantee-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.08);
  box-shadow: 0 0 32px rgba(59,130,246,0.2);
}

.g-number {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
}

.g-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.guarantee-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.guarantee-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════ */
.final {
  background: linear-gradient(135deg, #050c1c 0%, #071228 50%, #050c1c 100%);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.orb-final-1 {
  width: 500px;
  height: 500px;
  background: rgba(37,99,235,0.2);
  top: 50%;
  left: 20%;
  transform: translate(-50%,-50%);
}

.orb-final-2 {
  width: 300px;
  height: 300px;
  background: rgba(240,192,64,0.1);
  top: 50%;
  right: 5%;
  transform: translate(0,-50%);
}

.final-content {
  position: relative;
  z-index: 1;
}

.final h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.final h2 em {
  font-style: normal;
  color: var(--blue-light);
}

.final-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final .btn {
  max-width: 400px;
  font-size: 14px;
  padding: 20px 40px;
}

.final-micro {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted2);
  font-weight: 300;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 28px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted2);
}

/* ════════════════════════════════════════════════════════════
   TABLET
   ════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .wrap,
  .wrap--wide {
    width: min(100% - 32px, 760px);
  }

  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .disc-grid,
  .ben-grid,
  .offer-includes {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --section-py: 62px;
  }

  .wrap,
  .wrap--wide {
    width: min(100% - 28px, 520px);
  }

  .hero {
    padding: 38px 0 38px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-badge {
    min-width: 0;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 7px 16px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 350px;
    margin-bottom: 9px;
    font-size: clamp(29px, 8.5vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero-sub {
    max-width: 342px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-visual {
    margin: -2px auto 12px;
  }

  .book-wrap {
    max-width: 330px;
    min-height: 245px;
  }

  .book-glow {
    width: 280px;
    height: 280px;
    filter: blur(32px);
  }

  .book-mockup-img {
    width: min(82vw, 285px);
    max-width: 285px;
    transform: none;
  }

  .hero .btn {
    width: 100%;
    max-width: 340px;
    min-width: 0;
    padding: 15px 16px;
    font-size: 12px;
    letter-spacing: 0.055em;
  }

  .hero-trust {
    width: 100%;
    max-width: 340px;
    margin-top: 15px;
    gap: 7px;
  }

  .trust-row {
    font-size: 12.5px;
    line-height: 1.35;
  }

  .proof-bar {
    padding: 18px 0;
  }

  .proof-inner {
    width: min(100% - 28px, 520px);
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .proof-item {
    min-height: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 7px;
    padding: 14px 8px;
  }

  .proof-icon {
    width: auto;
    height: auto;
    font-size: 17px;
    border: none;
    background: transparent;
  }

  .proof-item strong {
    font-size: 19px;
  }

  .proof-item span {
    font-size: 11px;
  }

  .h2 {
    font-size: clamp(25px, 7.4vw, 34px);
  }

  .lead {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .pain-list,
  .disc-grid,
  .ben-grid,
  .offer-includes {
    grid-template-columns: 1fr;
  }

  .pain-item,
  .disc-card,
  .ben-card,
  .bonus-card {
    padding: 18px;
  }

  .acc-btn {
    padding: 18px 16px;
  }

  .acc-btn-left {
    gap: 12px;
    min-width: 0;
  }

  .acc-title {
    font-size: 14px;
  }

  .acc-body-inner {
    padding: 0 16px 18px 60px;
    font-size: 13.5px;
  }

  .author-card {
    padding: 26px 18px;
  }

  .author-photo {
    width: 170px;
    height: 170px;
  }

  .author-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }

  .author-stat {
    padding: 10px 4px;
  }

  .author-stat strong {
    font-size: 23px;
  }

  .author-stat span {
    font-size: 10.5px;
  }

  .bonus-card {
    align-items: flex-start;
  }

  .bonus-tag {
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .bonus-info {
    padding-right: 54px;
  }

  .offer-box {
    padding: 28px 20px;
  }

  .offer-includes {
    margin-bottom: 28px;
  }

  .offer-price-block {
    align-items: center;
    text-align: center;
    padding: 26px 0;
  }

  .offer-price {
    font-size: clamp(56px, 17vw, 72px);
  }

  .offer-note {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
  }

  .offer-badge {
    margin-top: 16px;
  }

  .offer-box .btn {
    width: 100%;
    max-width: 355px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .final {
    padding: 84px 0;
  }

  .final .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ════════════════════════════════════════════════════════════
   MOBILE PEQUENO
   ════════════════════════════════════════════════════════════ */
@media (max-width: 390px) {
  .wrap,
  .wrap--wide {
    width: min(100% - 24px, 520px);
  }

  .hero h1 {
    max-width: 320px;
  }

  .book-wrap {
    min-height: 230px;
  }

  .book-mockup-img {
    width: min(84vw, 270px);
  }

  .proof-inner {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item {
    min-height: 88px;
  }

  .proof-item strong {
    font-size: 18px;
  }

  .proof-item span {
    font-size: 10.5px;
  }

  .acc-body-inner {
    padding-left: 16px;
  }

  .author-stats {
    gap: 6px;
  }

  .author-stat strong {
    font-size: 21px;
  }

  .author-stat span {
    font-size: 10px;
  }

  .bonus-info {
    padding-right: 0;
  }

  .bonus-tag {
    position: static;
    margin-left: 0;
    align-self: flex-start;
  }

  .bonus-card {
    flex-wrap: wrap;
  }

  .offer-box {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ════════════════════════════════════════════════════════════
   AJUSTE FINAL — AUMENTAR MOCKUP
   ════════════════════════════════════════════════════════════ */

/* Desktop */
.book-wrap {
  max-width: 500px;
  min-height: 380px;
}

.book-glow {
  width: 420px;
  height: 420px;
}

.book-mockup-img {
  width: min(100%, 460px);
  max-width: 460px;
  transform: none;
}

/* Mobile */
@media (max-width: 640px) {
  .hero-visual {
    margin: 4px auto 14px;
  }

  .book-wrap {
    max-width: 360px;
    min-height: 285px;
  }

  .book-glow {
    width: 320px;
    height: 320px;
  }

  .book-mockup-img {
    width: min(92vw, 330px);
    max-width: 330px;
    transform: none;
  }
}

/* Mobile pequeno */
@media (max-width: 390px) {
  .book-wrap {
    max-width: 340px;
    min-height: 270px;
  }

  .book-glow {
    width: 300px;
    height: 300px;
  }

  .book-mockup-img {
    width: min(92vw, 315px);
    max-width: 315px;
  }
}