:root {
  --navy: #05102a;
  --navy2: #0a1e4a;
  --navy3: #0f2a6e;

  --gold: #c89b2e;
  --gold2: #e8b94a;
  --gold3: #f5d06e;

  --white: #ffffff;
  --text: #e8edf7;
  --muted: #8a9ab8;

  --border: rgba(200, 155, 46, 0.22);
  --border-light: rgba(255, 255, 255, 0.08);

  --shadow-gold: 0 8px 40px rgba(200, 155, 46, 0.25);
  --shadow-deep: 0 24px 64px rgba(5, 16, 42, 0.6);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-full: 999px;

  --max: 1160px;
  --wide: 1280px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
 font-family: "Poppins", sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* TIPOGRAFIA */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  color: var(--muted);
  line-height: 1.65;
}

/* CONTAINERS */
.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.container-wide {
  width: min(var(--wide), 96%);
  margin: 0 auto;
}

/* BADGES */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  background: rgba(200, 155, 46, 0.08);
  color: var(--gold2);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-light {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border-color: var(--border-light);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-full);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 16px 50px rgba(200, 155, 46, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 22px 48px;
  font-size: 1.2rem;
}

.nav-btn {
  padding: 12px 22px;
  font-size: 0.9rem;
}

/* TÍTULOS */
.title-block {
  text-align: center;
  margin-bottom: 64px;
}

.title-block h2 {
  color: var(--white);
  margin: 16px 0 18px;
}

.title-block p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.title-left {
  text-align: left;
  margin-bottom: 36px;
}

.title-left p {
  margin-left: 0;
}

.title-left h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  border-radius: 2px;
  margin: 20px auto 28px;
}

.divider-left {
  margin-left: 0;
}

/* CALLOUT */
.callout {
  border-left: 3px solid var(--gold);
  background: rgba(200, 155, 46, 0.06);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 28px;
  margin: 48px auto 0;
  max-width: 780px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--text);
}

.callout strong {
  color: var(--gold2);
}

.callout-gold {
  border-color: var(--gold);
  background: rgba(200, 155, 46, 0.06);
}

/* BACKGROUNDS */
.bg-grid {
  background-image:
    linear-gradient(rgba(200, 155, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 155, 46, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-darker {
  background: #030c1e;
}

.section-mid {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 50%, var(--navy) 100%);
}

.section-accent {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 50%, var(--navy2) 100%);
}

/* GLOWS */
.glow-top::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 155, 46, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.glow-right::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 50, 140, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

/* NAVBAR */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#nav.scrolled {
  background: rgba(5, 16, 42, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-light);
}

.nav-inner {
  width: min(var(--wide), 96%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--gold2);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(14, 50, 140, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200, 155, 46, 0.08) 0%, transparent 50%),
    var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* CHECKLIST HERO */
.quick-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-checks li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.quick-checks li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(200, 155, 46, 0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c89b2e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* IMAGENS DO PRODUTO */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(200, 155, 46, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.mockup-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-cover-img,
.method-book-img,
.content-book-img,
.final-product img {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-radius: 22px;
  filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.52));
}

.ebook-cover-img {
  max-width: 440px;
}

.method-book-img {
  max-width: 280px;
}

.content-book-img {
  max-width: 360px;
}

.final-product img {
  max-width: 360px;
}

/* STATS FLUTUANTES */
.float-stats {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-stats.left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.float-stats.right {
  right: -60px;
  top: 30%;
}

.stat-pill {
  background: rgba(5, 16, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 18px;
  white-space: nowrap;
}

.stat-pill .num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.stat-pill .label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* PROBLEMA */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 28px 20px 24px;
  text-align: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pain-card:hover {
  border-color: var(--border);
  background: rgba(200, 155, 46, 0.05);
}

.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200, 155, 46, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}

.pain-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.85rem;
}

/* MÉTODO */
.method-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.method-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color 0.2s ease;
}

.method-item:hover {
  border-color: var(--border);
}

.method-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method-item b {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.method-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.method-visual {
  width: min(320px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTEÚDO */
.content-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.content-visual {
  position: relative;
}

.content-book-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.learn-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.learn-item:hover {
  border-color: var(--border);
  background: rgba(200, 155, 46, 0.04);
}

.learn-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 155, 46, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.learn-item b {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.learn-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* TRANSFORMAÇÃO */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 24px;
  align-items: center;
}

.compare-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px;
  overflow: hidden;
}

.compare-box.bad .compare-header {
  background: rgba(255, 60, 60, 0.08);
  border-color: rgba(255, 60, 60, 0.2);
}

.compare-box.good .compare-header {
  background: rgba(200, 155, 46, 0.1);
  border-color: var(--border);
}

.compare-header {
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-bottom: 24px;
  text-align: center;
}

.compare-header h3 {
  font-size: 1rem;
  color: var(--white);
}

.compare-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.compare-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.compare-item.neg .ci {
  color: rgba(255, 80, 80, 0.7);
}

.compare-item.pos .ci {
  color: var(--gold2);
}

.ci {
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 900;
}

/* BÔNUS */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.bonus-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200, 155, 46, 0.15), rgba(200, 155, 46, 0.05));
  border: 1px solid var(--border);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.bonus-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.bonus-card p {
  font-size: 0.88rem;
}

/* GARANTIA */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.guarantee-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.guarantee-card:hover {
  border-color: var(--border);
}

.guarantee-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.guarantee-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.guarantee-card p {
  font-size: 0.85rem;
}

/* CTA FINAL */
.cta-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200, 155, 46, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy2) 0%, #030c1e 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 155, 46, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 155, 46, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin: 20px 0;
}

.cta-section .cta-inner > p {
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

.final-product {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 34px auto 36px;
}

.cta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 36px;
  text-align: left;
}

.cta-checklist li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-checklist li::before {
  content: "✓";
  color: var(--gold2);
  font-weight: 900;
  font-size: 1rem;
}

.cta-action {
  text-align: center;
}

.cta-action .btn-xl {
  width: 100%;
  max-width: 480px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-trust span {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-trust span::before {
  content: "🔒";
  font-size: 0.9rem;
}

/* FOOTER */
footer {
  background: #030c1e;
  border-top: 1px solid var(--border-light);
  padding: 36px 0;
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeUp 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.45s;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .float-stats {
    display: none;
  }

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

  .bonus-grid,
  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .method-wrap,
  .content-wrap,
  .compare-wrap {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero-desc {
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .quick-checks {
    align-items: center;
  }

  .mockup-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .method-visual {
    width: 100%;
  }

  .compare-divider {
    display: none;
  }

  .cta-checklist {
    grid-template-columns: 1fr;
  }

  .title-left {
    text-align: center;
  }

  .title-left p {
    margin-left: auto;
  }

  .divider-left {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero-body {
    padding-top: 118px;
  }

  .pain-grid,
  .bonus-grid,
  .guarantee-grid {
    grid-template-columns: 1fr 1fr;
  }

  .title-block {
    margin-bottom: 44px;
  }

  .cta-box {
    padding: 32px 20px;
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 3rem);
  }

  .btn-lg,
  .btn-xl {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .ebook-cover-img,
  .method-book-img,
  .content-book-img,
  .final-product img {
    max-width: 280px;
  }
}

@media (max-width: 440px) {
  .pain-grid,
  .bonus-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    gap: 16px;
  }

  .nav-logo {
    font-size: 0.85rem;
  }

  .nav-btn {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

/* ==========================================
   SEÇÃO PARA QUEM É
========================================== */

.audience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.audience-box {
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,.03);
  transition: transform .25s ease,
              border-color .25s ease,
              background .25s ease;
}

.audience-box:hover {
  transform: translateY(-5px);
}

.audience-box h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.2rem;
}

.audience-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.audience-box.good {
  border-color: rgba(200,155,46,.25);
}

.audience-box.good li::before {
  content: "✓";
  color: var(--gold2);
  font-weight: 900;
  flex-shrink: 0;
}

.audience-box.bad {
  border-color: rgba(255,255,255,.12);
}

.audience-box.bad li::before {
  content: "✕";
  color: rgba(255,120,120,.8);
  font-weight: 900;
  flex-shrink: 0;
}

/* ==========================================
   FAQ
========================================== */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s ease,
              background .25s ease;
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-item[open] {
  border-color: var(--border);
  background: rgba(200,155,46,.04);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  position: relative;
  transition: color .2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold2);
  transition: transform .25s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================
   RESPONSIVO EXTRA
========================================== */

@media (max-width: 900px) {

  .audience-wrap {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .audience-box {
    padding: 24px;
  }

  .faq-item summary {
    padding: 18px 20px;
    padding-right: 50px;
    font-size: .95rem;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

}

/* ==========================================
   AUTORIDADE
========================================== */

.authority-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

.authority-photo {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-deep);
}

.authority-content h2 {
    margin: 20px 0 24px;
    color: var(--white);
}

.authority-content p {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8;
}

.authority-content strong {
    color: var(--gold2);
}

.authority-numbers {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.authority-stat {
    flex: 1;
    min-width: 160px;
    padding: 20px;
    border-radius: var(--r-md);
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,.03);
    text-align: center;
}

.authority-stat span {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold2);
    margin-bottom: 6px;
}

.authority-stat small {
    color: var(--muted);
}

@media (max-width: 900px){

    .authority-grid{
        grid-template-columns: 1fr;
        gap:40px;
    }

    .authority-image{
        max-width:400px;
        margin:auto;
    }

    .authority-content{
        text-align:center;
    }

}

/* ==========================================
   PREÇO DA OFERTA
========================================== */

.offer-price {
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    display: block;
    font-size: 1.2rem;
    color: rgba(255,255,255,.45);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.current-price {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--gold2);
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(232,185,74,.25);
}

.price-note {
    color: var(--muted);
    font-size: .95rem;
}

/* ==========================================
   ÍCONES SVG PROFISSIONAIS
========================================== */

.pain-icon,
.learn-icon,
.bonus-icon,
.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 46, 0.08);
  border: 1px solid var(--border);
  color: var(--gold2);
}

.pain-icon svg,
.learn-icon svg,
.bonus-icon svg,
.guarantee-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Problema */
.pain-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 18px;
  font-size: 0;
}

/* Conteúdo */
.learn-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 0;
}

/* Bônus */
.bonus-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 20px;
  font-size: 0;
}

/* Garantia */
.guarantee-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 18px;
  font-size: 0;
}

/* Hover premium */
.pain-card:hover .pain-icon,
.learn-item:hover .learn-icon,
.bonus-card:hover .bonus-icon,
.guarantee-card:hover .guarantee-icon {
  background: rgba(200, 155, 46, 0.14);
  border-color: var(--gold);
  color: var(--gold3);
}

/* Ajuste específico da garantia */
.guarantee-icon {
  display: flex;
}

.guarantee-icon svg {
  width: 26px;
  height: 26px;
}
/* ==========================================
   SUPORTE WHATSAPP
========================================== */

.support-section {
  background: #030c1e;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.support-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.support-content h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}

.support-content p {
  color: var(--muted);
  max-width: 600px;
}

.support-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-width: 280px;

  padding: 18px 24px;

  border-radius: 16px;

  border: 2px solid #25D366;

  background: rgba(37,211,102,.08);

  transition: .25s ease;

  text-align: center;
}

.support-button:hover {
  transform: translateY(-4px);

  background: rgba(37,211,102,.15);

  box-shadow: 0 12px 30px rgba(37,211,102,.20);
}

.support-title {
  font-size: .95rem;
  font-weight: 800;

  color: #25D366;
}

.support-subtitle {
  font-size: .78rem;

  color: white;

  margin-top: 4px;
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .support-box {
    flex-direction: column;
    text-align: center;
  }

  .support-button {
    width: 100%;
  }

}

/* ==========================================
   FOOTER NOVO
========================================== */

.footer {
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    background: #020817;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-copy {
    color: rgba(255,255,255,.45);
    font-size: .85rem;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--gold2);
    font-size: .9rem;
    font-weight: 500;
    transition: .25s ease;
}

.footer-links a:hover {
    color: var(--gold3);
}

.footer-dot {
    color: rgba(255,255,255,.35);
}

/* Mobile */

@media (max-width: 768px) {

    .footer-copy {
        font-size: .78rem;
        line-height: 1.6;
    }

    .footer-links {
        flex-direction: column;
        gap: 6px;
    }

    .footer-dot {
        display: none;
    }

}

/* RESPONSIVO */

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

}

/* ==========================================
   VALOR PERCEBIDO
========================================== */

.value-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-deep);
}

.value-item,
.value-total {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.value-item span,
.value-total span {
  color: var(--muted);
}

.value-item strong {
  color: var(--white);
  font-weight: 800;
}

.value-total {
  border-bottom: none;
  margin-top: 10px;
  padding-top: 24px;
}

.value-total span {
  color: var(--white);
  font-weight: 800;
}

.value-total strong {
  color: var(--gold2);
  font-size: 1.6rem;
  font-weight: 900;
}

/* ==========================================
   CTA FINAL INTERMEDIÁRIO
========================================== */

.section-cta {
  margin-top: 40px;
  text-align: center;
}

/* ==========================================
   AJUSTES DO NOVO HTML
========================================== */

#big-idea .highlight {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .value-box {
    padding: 28px 20px;
  }

  .value-item,
  .value-total {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .value-total strong {
    font-size: 1.35rem;
  }
}

/* ==========================================
   AJUSTE GLOBAL DE ESCALA DO SITE
   Reduz proporções gerais sem mudar a identidade visual
========================================== */

/* Tipografia geral mais equilibrada */
h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

p {
  font-size: 0.96rem;
}

/* Reduz altura das seções */
.section {
  padding: 78px 0;
}

/* Títulos das seções com menos espaço */
.title-block {
  margin-bottom: 46px;
}

.title-block h2 {
  margin: 14px 0 14px;
}

.title-block p {
  max-width: 680px;
  font-size: 0.98rem;
}

.divider {
  margin: 16px auto 22px;
}

/* Cards mais compactos */
.pain-card {
  padding: 24px 18px 22px;
}

.pain-card h3,
.bonus-card h3,
.guarantee-card h3 {
  font-size: 0.95rem;
}

.pain-card p,
.bonus-card p,
.guarantee-card p {
  font-size: 0.82rem;
}

/* Grids com melhor respiro */
.pain-grid {
  gap: 14px;
}

.bonus-grid,
.guarantee-grid {
  gap: 18px;
}

/* Método mais compacto */
.method-wrap {
  gap: 32px;
}

.method-item {
  padding: 16px 18px;
}

.method-item b {
  font-size: 0.92rem;
}

.method-item span {
  font-size: 0.82rem;
}

.method-book-img {
  max-width: 240px;
}

/* Conteúdo mais equilibrado */
.content-wrap {
  gap: 48px;
}

.content-book-img {
  max-width: 310px;
}

.learn-item {
  padding: 16px 18px;
}

.learn-item b {
  font-size: 0.92rem;
}

.learn-item span {
  font-size: 0.82rem;
}

/* Comparativos mais compactos */
.compare-box {
  padding: 26px;
}

.compare-header {
  margin-bottom: 18px;
}

.compare-item {
  font-size: 0.84rem;
  padding-bottom: 10px;
}

/* Bônus e Garantia */
.bonus-card,
.guarantee-card {
  padding: 26px 20px;
}

.bonus-icon,
.guarantee-icon {
  width: 56px;
  height: 56px;
}

/* Callouts menos grandes */
.callout {
  margin-top: 40px;
  padding: 20px 24px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* Autoridade mais proporcional */
.authority-grid {
  grid-template-columns: 360px 1fr;
  gap: 48px;
}

.authority-content p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.authority-stat {
  padding: 18px;
}

.authority-stat span {
  font-size: 1.35rem;
}

/* Valor percebido */
.value-box {
  max-width: 700px;
  padding: 32px;
}

.value-item,
.value-total {
  padding: 15px 0;
}

/* Oferta final */
.cta-section {
  padding: 90px 0;
}

.cta-section .cta-inner > p {
  margin-bottom: 36px;
  font-size: 1rem;
}

.final-product img {
  max-width: 300px;
}

.cta-box {
  padding: 40px;
}

.cta-checklist {
  margin-bottom: 30px;
}

.current-price {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

/* WhatsApp e Footer */
.support-section {
  padding: 50px 0;
}

.footer {
  padding: 42px 0 18px;
}

/* ==========================================
   HERO GLOBALMENTE EQUILIBRADO
========================================== */

.hero-body {
  padding: 110px 0 60px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  max-width: 600px;
  margin-bottom: 24px;
}

.hero-actions {
  margin-bottom: 28px;
}

.ebook-cover-img {
  max-width: 380px;
}

/* ==========================================
   RESPONSIVO GLOBAL REFINADO
========================================== */

@media (max-width: 1200px) {
  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(2rem, 4.6vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 3.7vw, 2.9rem);
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .ebook-cover-img {
    max-width: 350px;
  }

  .authority-grid {
    grid-template-columns: 330px 1fr;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 64px 0;
  }

  .hero-body {
    padding: 120px 0 70px;
  }

  .hero-grid,
  .method-wrap,
  .content-wrap,
  .compare-wrap,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero-desc {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .quick-checks {
    align-items: center;
  }

  h1 {
    font-size: clamp(2.1rem, 8vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 6vw, 2.7rem);
  }

  .title-block {
    margin-bottom: 38px;
  }

  .content-book-img,
  .method-book-img,
  .final-product img,
  .ebook-cover-img {
    max-width: 280px;
  }

  .authority-image {
    max-width: 360px;
    margin: auto;
  }

  .authority-content {
    text-align: center;
  }

  .cta-box {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero-body {
    padding-top: 108px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }

  p {
    font-size: 0.9rem;
  }

  .title-block {
    margin-bottom: 34px;
  }

  .pain-grid,
  .bonus-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .pain-card,
  .bonus-card,
  .guarantee-card {
    padding: 24px 18px;
  }

  .compare-box {
    padding: 22px;
  }

  .content-book-img,
  .method-book-img,
  .final-product img,
  .ebook-cover-img {
    max-width: 250px;
  }

  .btn-lg,
  .btn-xl {
    width: 100%;
    padding: 17px 22px;
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-box {
    padding: 28px 18px;
  }

  .value-box {
    padding: 26px 18px;
  }

  .support-box,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .nav-inner {
    gap: 14px;
  }

  .nav-logo {
    font-size: 0.8rem;
  }

  .nav-btn {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 11vw, 2.55rem);
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .badge {
    font-size: 0.68rem;
    padding: 7px 14px;
  }
}

/* ==========================================
   MÉTODO MVO - SISTEMA CIRCULAR
========================================== */

.method-section {
  overflow: hidden;
}

.mvo-orbit {
  position: relative;
  min-height: 620px;
  max-width: 1080px;
  margin: 0 auto;
}

.mvo-orbit::before {
  content: "";
  position: absolute;
  inset: 80px 170px;
  border: 1px solid rgba(200, 155, 46, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.mvo-orbit::after {
  content: "";
  position: absolute;
  inset: 135px 260px;
  border: 1px dashed rgba(200, 155, 46, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.mvo-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.mvo-core-glow {
  position: absolute;
  inset: -42px;
  background: radial-gradient(circle, rgba(200, 155, 46, 0.22), transparent 68%);
  filter: blur(4px);
  z-index: -1;
}

.mvo-core-img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 22px;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.58));
}

.mvo-core-label {
  margin: 18px auto 0;
  display: inline-flex;
  padding: 8px 18px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: rgba(200, 155, 46, 0.08);
  color: var(--gold2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mvo-pillar {
  position: absolute;
  width: 255px;
  padding: 22px 22px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.mvo-pillar:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  background: rgba(200, 155, 46, 0.055);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.mvo-pillar h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.mvo-pillar p {
  font-size: 0.84rem;
  line-height: 1.65;
}

/* Posições dos pilares */

.pillar-1 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  text-align: center;
}

.pillar-2 {
  right: 0;
  top: 145px;
}

.pillar-3 {
  right: 70px;
  bottom: 40px;
}

.pillar-4 {
  left: 70px;
  bottom: 40px;
}

.pillar-5 {
  left: 0;
  top: 145px;
}

/* Linhas discretas ligando ao centro */

.mvo-pillar::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 155, 46, 0.45), transparent);
  top: 50%;
  pointer-events: none;
}

.pillar-1::after {
  width: 1px;
  height: 70px;
  left: 50%;
  top: 100%;
  background: linear-gradient(180deg, rgba(200, 155, 46, 0.45), transparent);
}

.pillar-2::after,
.pillar-3::after {
  right: 100%;
}

.pillar-4::after,
.pillar-5::after {
  left: 100%;
  transform: rotate(180deg);
}

/* Responsivo */

@media (max-width: 1000px) {
  .mvo-orbit {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 620px;
  }

  .mvo-orbit::before,
  .mvo-orbit::after {
    display: none;
  }

  .mvo-core,
  .mvo-pillar {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  .mvo-core {
    order: -1;
    margin: 0 auto 20px;
  }

  .mvo-core-img {
    max-width: 260px;
  }

  .mvo-pillar {
    text-align: left;
  }

  .mvo-pillar::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .mvo-core-img {
    max-width: 230px;
  }

  .mvo-pillar {
    padding: 20px 18px;
  }

  .mvo-pillar h3 {
    font-size: 1rem;
  }

  .mvo-pillar p {
    font-size: 0.82rem;
  }
}

/* ==========================================
   AJUSTE FINO - MÉTODO MVO CIRCULAR
========================================== */

.method-section {
  padding-top: 70px;
  padding-bottom: 80px;
}

.method-section .title-block {
  margin-bottom: 34px;
}

.method-section .title-block h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.05;
}

.method-section .title-block p {
  max-width: 760px;
  font-size: 0.95rem;
}

.mvo-orbit {
  min-height: 540px;
  max-width: 1080px;
}

.mvo-orbit::before {
  inset: 90px 190px;
}

.mvo-orbit::after {
  inset: 145px 280px;
}

.mvo-core {
  width: 240px;
}

.mvo-core-img {
  max-width: 215px;
}

.mvo-core-label {
  margin-top: 12px;
  padding: 7px 16px;
  font-size: 0.7rem;
}

/* Cards mais compactos */
.mvo-pillar {
  width: 230px;
  padding: 18px 18px 16px;
}

.mvo-pillar h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.mvo-pillar p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.pillar-number {
  width: 38px;
  height: 30px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

/* Reposicionamento dos pilares */
.pillar-1 {
  top: 0;
}

.pillar-2 {
  right: 30px;
  top: 135px;
}

.pillar-3 {
  right: 95px;
  bottom: 20px;
}

.pillar-4 {
  left: 95px;
  bottom: 20px;
}

.pillar-5 {
  left: 30px;
  top: 135px;
}

/* Evita linha atravessando a capa */
.pillar-1::after {
  height: 45px;
}

/* Responsivo */
@media (max-width: 1000px) {
  .method-section .title-block h2 {
    font-size: clamp(1.8rem, 6vw, 2.7rem);
  }

  .mvo-orbit {
    min-height: auto;
  }

  .mvo-core {
    width: 100%;
  }

  .mvo-core-img {
    max-width: 240px;
  }

  .mvo-pillar {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .method-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .method-section .title-block h2 {
    font-size: clamp(1.6rem, 8vw, 2.25rem);
  }

  .method-section .title-block p {
    font-size: 0.9rem;
  }

  .mvo-core-img {
    max-width: 220px;
  }
}

/* ==========================================
   CORREÇÃO DEFINITIVA - MÉTODO MVO
   Capa central sem sobrepor os pilares
========================================== */

.mvo-orbit {
  position: relative;
  max-width: 1120px;
  min-height: 720px;
  margin: 0 auto;
}

.mvo-core {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 220px;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.mvo-core-img {
  max-width: 200px;
}

.mvo-core-label {
  margin-top: 10px;
}

/* Círculos de fundo maiores */
.mvo-orbit::before {
  inset: 145px 180px 85px;
}

.mvo-orbit::after {
  inset: 205px 285px 145px;
}

/* Cards menores e mais afastados */
.mvo-pillar {
  width: 245px;
  padding: 18px 18px 16px;
  z-index: 4;
}

.mvo-pillar p {
  font-size: 0.8rem;
}

/* Posições sem sobreposição */
.pillar-1 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  text-align: center;
}

.pillar-2 {
  right: 0;
  top: 190px;
}

.pillar-3 {
  right: 120px;
  bottom: 0;
}

.pillar-4 {
  left: 120px;
  bottom: 0;
}

.pillar-5 {
  left: 0;
  top: 190px;
}

/* Remove linhas que podem atravessar capa/card */
.mvo-pillar::after {
  display: none;
}

/* Mantém hover sem quebrar posição do pilar 01 */
.mvo-pillar:hover {
  border-color: var(--border);
  background: rgba(200, 155, 46, 0.055);
}

.pillar-1:hover {
  transform: translateX(-50%) translateY(-6px);
}

.pillar-2:hover,
.pillar-3:hover,
.pillar-4:hover,
.pillar-5:hover {
  transform: translateY(-6px);
}

/* Ajuste do título da seção para liberar espaço visual */
.method-section .title-block {
  margin-bottom: 42px;
}

.method-section .title-block h2 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.method-section .title-block p {
  max-width: 760px;
}

/* Tablet e celular: vira lista vertical organizada */
@media (max-width: 1000px) {
  .mvo-orbit {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 620px;
  }

  .mvo-orbit::before,
  .mvo-orbit::after {
    display: none;
  }

  .mvo-core,
  .mvo-pillar {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
  }

  .mvo-core {
    order: -1;
    margin: 0 auto 20px;
  }

  .mvo-core-img {
    max-width: 240px;
  }

  .mvo-pillar {
    text-align: left;
  }

  .pillar-1:hover,
  .pillar-2:hover,
  .pillar-3:hover,
  .pillar-4:hover,
  .pillar-5:hover {
    transform: translateY(-6px);
  }
}

/* ==========================================
   CORREÇÃO NAVBAR MOBILE
========================================== */

@media (max-width: 640px) {
  .nav-inner {
    width: 94%;
    padding: 14px 0;
    gap: 10px;
  }

  .nav-logo {
    font-size: 0.82rem;
    line-height: 1.2;
    max-width: 55%;
    white-space: normal;
  }

  .nav-btn {
    flex-shrink: 0;
    max-width: 45%;
    padding: 10px 14px;
    font-size: 0.72rem;
    line-height: 1.1;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .nav-inner {
    width: 94%;
  }

  .nav-logo {
    font-size: 0.78rem;
    max-width: 52%;
  }

  .nav-btn {
    max-width: 48%;
    padding: 9px 12px;
    font-size: 0.68rem;
  }
}

@media (max-width: 360px) {
  .nav-logo {
    font-size: 0.72rem;
    max-width: 50%;
  }

  .nav-btn {
    max-width: 50%;
    padding: 8px 10px;
    font-size: 0.64rem;
  }
}

/* ==========================================
   DEPOIMENTOS - CHAT INSTAGRAM
========================================== */

.testimonials-section {
  background: #030c1e;
  overflow: hidden;
}

.instagram-chat-wall {
  column-count: 3;
  column-gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.instagram-chat-card {
  break-inside: avoid;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 50px rgba(0,0,0,.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.instagram-chat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,.48);
}

.ig-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: #ffffff;
  border-bottom: 1px solid #dedede;
}

.ig-user {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.ig-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ig-user strong {
  display: block;
  color: #111;
  font-size: .82rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.ig-user span {
  display: block;
  color: #777;
  font-size: .68rem;
  line-height: 1.1;
  margin-top: 2px;
}

.ig-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-size: 1rem;
  flex-shrink: 0;
}

.ig-chat-body {
  padding: 14px 12px 10px;
  background: #ffffff;
}

.ig-message {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 18px;
  border-top-left-radius: 5px;
  background: #eeeeee;
  color: #111;
  font-size: .82rem;
  line-height: 1.38;
}

.ig-message mark {
  background: #e8c9b1;
  color: #111;
  padding: 1px 3px;
  border-radius: 2px;
}

.ig-chat-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
  color: #111;
}

.ig-camera {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2d9cff;
  color: transparent;
  flex-shrink: 0;
}

.ig-input {
  flex: 1;
  color: #8a8a8a;
  font-size: .78rem;
}

.instagram-chat-card:nth-child(2n) {
  transform: translateY(26px);
}

.instagram-chat-card:nth-child(3n) {
  transform: translateY(12px);
}

.instagram-chat-card:nth-child(2n):hover,
.instagram-chat-card:nth-child(3n):hover {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .instagram-chat-wall {
    column-count: 2;
    max-width: 720px;
  }
}

@media (max-width: 560px) {
  .instagram-chat-wall {
    column-count: 1;
    max-width: 360px;
  }

  .instagram-chat-card,
  .instagram-chat-card:nth-child(2n),
  .instagram-chat-card:nth-child(3n) {
    transform: none;
  }

  .ig-message {
    font-size: .8rem;
  }
}

/* ==========================================
   ÍCONES INSTAGRAM DOS DEPOIMENTOS
========================================== */

.ig-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #111;
  flex-shrink: 0;
}

.ig-actions svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-chat-bottom {
  padding: 9px 10px 10px;
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
}

.ig-message-box {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: #ffffff;
}

.ig-camera-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #2d9cff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ig-camera-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-input {
  flex: 1;
  color: #8d8d8d;
  font-size: .78rem;
}

.ig-bottom-icons {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #111;
  flex-shrink: 0;
}

.ig-bottom-icons svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Remove estilos antigos se ainda existirem */
.ig-camera {
  display: none;
}

/* ==========================================
   AJUSTE FINAL - BARRA DE MENSAGEM INSTAGRAM
========================================== */

.ig-chat-bottom {
  padding: 8px 8px 10px;
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
}

.ig-message-box {
  display: flex;
  align-items: center;
  gap: 8px;

  width: 100%;
  min-height: 34px;

  padding: 4px 8px 4px 4px;

  border: 1px solid #dddddd;
  border-radius: 999px;

  background: #ffffff;
}

.ig-camera-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;

  background: #2d9cff;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.ig-camera-icon svg {
  width: 15px;
  height: 15px;

  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-input {
  flex: 1;

  color: #8b8b8b;
  font-size: 0.76rem;

  white-space: nowrap;
}

.ig-bottom-icons {
  display: flex;
  align-items: center;
  gap: 8px;

  color: #111;
  flex-shrink: 0;
}

/* Ícones inferiores mais próximos do Instagram */
.ig-bottom-icons svg {
  width: 18px;
  height: 18px;

  stroke: currentColor;
  fill: none;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Ajuste específico do microfone */
.ig-bottom-icons svg:first-child {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

/* ==========================================
   BARRA DE MENSAGEM ESTILO INSTAGRAM
========================================== */

.ig-chat-bottom{
    padding:8px;
    background:#fff;
    border-top:1px solid #efefef;
}

.ig-message-box{
    display:flex;
    align-items:center;
    width:100%;
    height:38px;

    padding:0 10px 0 4px;

    border:1px solid #dbdbdb;
    border-radius:999px;

    background:#fff;
}

.ig-camera-icon{
    width:28px;
    height:28px;

    min-width:28px;

    border-radius:50%;

    background:#3797f0;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:8px;
}

.ig-camera-icon svg{
    width:14px;
    height:14px;

    stroke:#fff;
    fill:none;
    stroke-width:2;
}

.ig-input{
    flex:1;

    font-size:13px;
    color:#8e8e8e;

    white-space:nowrap;
}

.ig-bottom-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.ig-bottom-icons svg{
    width:20px;
    height:20px;

    stroke:#262626;
    fill:none;

    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.ig-mic-icon{
    width:19px !important;
    height:19px !important;
}

.ig-camera-icon:hover{
    background:#2484df;
}

.ig-mic-img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  display: block;
}