:root {
  --navy: #09212C;
  --navy-2: #12313D;
  --gold: #97927D;
  --gold-soft: #D9D4C3;
  --paper: #F8F7F4;
  --paper-2: #EFEDE7;
  --white: #FFFFFF;
  --ink: #16262E;
  --muted: #687277;
  --line: rgba(9, 33, 44, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(9, 33, 44, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(9, 33, 44, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  margin-right: auto;
}

.brand img {
  width: 245px;
  max-width: 44vw;
  height: auto;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.topbar nav a:hover {
  color: var(--white);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--gold-soft);
  font-weight: 800;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 33, 44, 0.97) 0%, rgba(9, 33, 44, 0.83) 42%, rgba(9, 33, 44, 0.28) 100%),
    linear-gradient(0deg, rgba(9, 33, 44, 0.68), rgba(9, 33, 44, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
  padding: 132px clamp(20px, 7vw, 92px) 82px;
}

.hero-logo {
  width: 320px;
  max-width: 82vw;
  height: auto;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: 4.1rem;
  line-height: 1.02;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.22rem;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.hero-actions,
.guide-actions,
.result-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.ghost-button,
.calendar-button,
.ghost-dark-button,
.primary-control,
.ghost-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.primary-button,
.primary-control {
  border: 0;
  color: var(--navy);
  background: var(--gold);
}

.primary-button:hover,
.ghost-button:hover,
.ghost-dark-button:hover,
.primary-control:hover,
.ghost-control:hover {
  transform: translateY(-2px);
}

.ghost-button,
.calendar-button,
.ghost-control {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.calendar-button {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.ghost-dark-button {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.section {
  padding: 94px clamp(20px, 7vw, 92px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-band,
.guide-band,
.cases-section {
  background: var(--paper);
}

.urgency-section {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 1.05rem;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.urgency-grid,
.case-grid {
  display: grid;
  gap: 16px;
}

.urgency-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-grid article,
.urgency-grid article,
.case-card,
.quiz-card,
.guide-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-grid article,
.urgency-grid article,
.case-card {
  padding: 24px;
}

.urgency-grid article {
  background:
    linear-gradient(180deg, rgba(151, 146, 125, 0.12), rgba(255, 255, 255, 0.94)),
    var(--white);
}

.case-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 310px;
}

.case-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card strong {
  display: block;
  margin-top: auto;
  color: var(--navy);
  font-size: 1.08rem;
}

.step-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--gold);
  border: 1px solid rgba(151, 146, 125, 0.32);
  border-radius: 8px;
  background: rgba(151, 146, 125, 0.1);
}

.diagnostic-section {
  background: var(--navy);
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 30px;
  align-items: start;
}

.quiz-copy {
  position: sticky;
  top: 104px;
}

.quiz-copy h2,
.quiz-copy p,
.quiz-copy li {
  color: var(--white);
}

.quiz-copy p,
.quiz-copy li {
  color: rgba(255, 255, 255, 0.74);
}

.quiz-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quiz-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-copy svg {
  color: var(--gold);
  flex: 0 0 auto;
}

.quiz-card {
  position: relative;
  min-height: 520px;
  padding: 28px;
  color: var(--navy);
}

.quiz-progress {
  height: 8px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--paper-2);
  overflow: hidden;
}

.quiz-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.25s ease;
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.active {
  display: grid;
  gap: 12px;
}

.quiz-step.attention {
  animation: attention 0.35s ease;
}

@keyframes attention {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-5px);
  }

  70% {
    transform: translateX(5px);
  }
}

.quiz-step legend,
.result-step h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 500;
}

.quiz-step label {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 800;
}

.quiz-step input[type="text"],
.quiz-step input[type="tel"],
.quiz-step input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(9, 33, 44, 0.14);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
}

.quiz-step input[type="radio"],
.quiz-step input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.quiz-step label:has(input[type="radio"]),
.quiz-step label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.quiz-step label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(151, 146, 125, 0.13);
}

.quiz-step .consent-card {
  align-items: flex-start;
  background: rgba(151, 146, 125, 0.1);
}

.consent-card span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.privacy-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.quiz-controls button:disabled {
  cursor: default;
  opacity: 0.45;
  transform: none;
}

.result-step {
  align-content: start;
}

.result-label {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-risk,
.result-reco {
  margin-top: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.result-risk {
  border-color: rgba(109, 45, 43, 0.22);
  background: rgba(109, 45, 43, 0.06);
}

.result-reco {
  border-color: rgba(31, 79, 59, 0.22);
  background: rgba(31, 79, 59, 0.06);
}

.result-risk-label,
.result-reco-label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.result-risk-label {
  color: #6d2d2b;
}

.result-reco-label {
  color: #1f4f3b;
}

.result-risk p,
.result-reco p {
  margin: 0;
  color: var(--ink);
}

.result-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.result-score strong {
  color: var(--gold-soft);
  font-size: 1.4rem;
}

.result-actions {
  margin-top: 8px;
}

.result-actions .ghost-button {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.quiz-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.quiz-controls button {
  flex: 1;
}

.ghost-control {
  color: var(--navy);
  border-color: var(--line);
  background: var(--paper);
}

.guide-layout,
.author-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 30px;
  align-items: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.premium-product {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--navy);
}

.bundle-product {
  border-color: rgba(151, 146, 125, 0.36);
  background:
    linear-gradient(180deg, rgba(151, 146, 125, 0.18), rgba(255, 255, 255, 0.86)),
    var(--white);
}

.map-product {
  border-color: rgba(151, 146, 125, 0.28);
  background: var(--white);
}

.product-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.premium-product h3,
.premium-product p,
.premium-product li {
  color: var(--white);
}

.premium-product p,
.premium-product li {
  color: rgba(255, 255, 255, 0.74);
}

.product-card ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.product-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.product-card li svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.product-card > .primary-button,
.product-card .guide-actions {
  margin-top: auto;
}

.guide-preview {
  padding: 28px;
  color: var(--white);
  background: var(--navy);
}

.guide-preview img {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin-bottom: 34px;
}

.guide-preview h3,
.guide-preview p {
  color: var(--white);
}

.guide-preview p {
  color: rgba(255, 255, 255, 0.72);
}

.author-section {
  background: var(--white);
}

.author-layout img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  filter: grayscale(100%);
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .hero {
    min-height: 780px;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(9, 33, 44, 0.98) 0%, rgba(9, 33, 44, 0.84) 62%, rgba(9, 33, 44, 0.34) 100%);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .step-grid,
  .urgency-grid,
  .case-grid,
  .quiz-shell,
  .guide-layout,
  .author-layout,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .quiz-copy {
    position: static;
  }

  .author-layout img {
    order: -1;
    max-height: 620px;
  }
}

/* ============================================================
   Componentes LP reformulada â€” EdiÃ§Ã£o 2026
   ============================================================ */

/* â”€â”€ Urgency cards (icon + conteÃºdo) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.urgency-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  background-image: none; /* cancela o gradiente herdado de .urgency-grid article */
}

.urgency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 0 16px;
  border-radius: 10px;
  background: rgba(151, 146, 125, 0.13);
  color: var(--gold);
  flex-shrink: 0;
}

.urgency-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
  fill: none;
  stroke: currentColor;
}

.urgency-card > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.urgency-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.urgency-cta {
  margin-top: 28px;
  text-align: center;
}

.urgency-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  background: none;
  transition: color 0.15s;
}

.urgency-cta a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.urgency-cta a:hover {
  color: var(--navy);
}

/* â”€â”€ Recurring CTA strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.recurring-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 5vw;
  background: var(--paper);
}

.recurring-cta p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--ink);
}

.recurring-cta--alt {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.recurring-cta--alt p {
  color: rgba(255, 255, 255, 0.88);
}

.recurring-cta .primary-button,
.recurring-cta .ghost-button {
  flex-shrink: 0;
}

/* â”€â”€ Profile list (para quem) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-list {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.profile-list > .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.profile-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
}

.profile-list li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* â”€â”€ Content section (O que vocÃª encontrarÃ¡) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.content-section {
  background: var(--navy);
}

.content-section .eyebrow {
  color: rgba(255, 255, 255, 0.54);
}

.content-section h2 {
  color: var(--white);
}

.content-section .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.content-item {
  padding: 24px 20px;
  background: rgba(9, 33, 44, 0.7);
  transition: background 0.2s;
}

.content-item:hover {
  background: rgba(151, 146, 125, 0.14);
}

.content-num {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.content-item h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  font-family: inherit;
}

.content-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

/* â”€â”€ FAQ accordion â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  background: var(--paper);
}

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: color 0.15s;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2309212C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.22s ease;
}

details[open] summary {
  color: var(--gold);
}

details[open] summary::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2397927D' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

details > p {
  margin: 0;
  padding: 0 2px 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

/* â”€â”€ Product grid â€” 2-column variant â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-grid--two {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* â”€â”€ Responsive overrides for new components â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid--two {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .recurring-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-num {
    font-size: 1.6rem;
  }

  .recurring-cta {
    padding: 28px 20px;
  }

  .urgency-icon {
    width: 44px;
    height: 44px;
  }

  .urgency-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* â”€â”€ End LP 2026 additions â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 640px) {
  .topbar {
    min-height: 66px;
    padding: 12px 18px;
  }

  .whatsapp-link {
    display: none;
  }

  .brand img {
    width: 190px;
    max-width: 62vw;
  }

  .topbar-cta {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .hero-content {
    padding: 116px 24px 54px;
  }

  .hero-logo {
    width: 255px;
    margin-bottom: 26px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 66px 20px;
  }

  .primary-button,
  .ghost-button,
  .calendar-button,
  .ghost-dark-button,
  .result-actions a,
  .guide-actions a {
    width: 100%;
  }

  .quiz-card {
    min-height: auto;
    padding: 20px;
  }

  .quiz-step legend,
  .result-step h3 {
    font-size: 1.62rem;
  }

  .quiz-controls {
    flex-direction: column;
  }
}

/* â”€â”€ CTA de compra Â· pulsa e se destaca (sem anel-fantasma) â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 22px rgba(9, 33, 44, 0.22); }
  50% { transform: scale(1.04); box-shadow: 0 16px 34px rgba(151, 146, 125, 0.5); }
}
.primary-button[href*="checkout.html"],
.topbar-cta[href*="checkout.html"] {
  animation: ctaPulse 1.6s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.b-price-cta { font-size: 1.05rem; padding: 16px 22px; }
.primary-button[href*="checkout.html"]:hover,
.topbar-cta[href*="checkout.html"]:hover {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(9, 33, 44, 0.3);
}
@media (prefers-reduced-motion: reduce) {
  .primary-button[href*="checkout.html"],
  .topbar-cta[href*="checkout.html"] {
    animation: none;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HIPÃ“TESE B Â· LP curta diagnÃ³stico-first (componentes .b-*)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Bloco 2 Â· 3 riscos (sÃ³ a dor) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.b-risk {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.b-risk-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 12px;
  background: rgba(151, 146, 125, 0.14);
  color: var(--gold);
}
.b-risk-icon svg { width: 26px; height: 26px; }
.b-risk h3 { margin: 0; font-size: 1.18rem; }
.b-risk p { margin: 0; color: var(--muted); line-height: 1.6; }

/* â”€â”€ Bloco 3 Â· Mapa de Risco (banda navy de entrada) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-mapa-section {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 12% 0%, rgba(151, 146, 125, 0.18), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(151, 146, 125, 0.12), transparent 40%);
}
.b-mapa {
  max-width: 760px;
  text-align: center;
}
.b-mapa .eyebrow { justify-content: center; color: var(--gold-soft); }
.b-mapa .eyebrow::before { display: none; }
.b-mapa h2 { color: var(--white); }
.b-mapa > p {
  margin: 0 auto 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}
.b-mapa .primary-button { margin: 0 auto; }
.b-friction {
  margin: 18px 0 0;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* â”€â”€ Bloco 4 Â· Perfis de saÃ­da â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.b-profile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold-soft);
  border-radius: 10px;
  background: var(--white);
}
.b-profile--mid { border-top-color: var(--gold); }
.b-profile--high { border-top-color: var(--navy); }
.b-profile-tag {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.b-profile--high .b-profile-tag { color: var(--navy); }
.b-profile h3 { margin: 0; font-size: 1.16rem; }
.b-profile p { margin: 0; color: var(--muted); line-height: 1.55; }
.b-profile-out {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.98rem;
}

/* â”€â”€ Bloco 5 Â· Guia com valor percebido â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 36px;
  align-items: center;
}
.b-value-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.b-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.45;
}
.b-value-list li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
}
.b-guide-card { align-self: stretch; }

/* â”€â”€ Bloco 6 Â· DiagnÃ³stico + FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-diag-card {
  max-width: 640px;
  margin: 0 auto 36px;
}
.b-faq {
  max-width: 820px;
  margin: 0 auto 32px;
  display: grid;
  gap: 12px;
}
.b-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(9, 33, 44, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.b-faq details[open] {
  border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(9, 33, 44, 0.08);
}
.b-faq summary {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 0;
}
.b-faq summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2397927D' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.b-faq details > p {
  padding: 0 0 20px;
  font-size: 0.98rem;
  color: var(--ink);
}

/* â”€â”€ Responsivo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .b-risk-grid,
  .b-profile-grid { grid-template-columns: 1fr; }
  .b-guide-layout { grid-template-columns: 1fr; gap: 24px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LP-B Â· pÃ¡gina de venda do e-book (mega promo + casos + footer)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Bloco 2 Â· A oferta â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-offer-section { background: var(--paper); }
.b-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: start;
}
.b-stack {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
.b-stack-title {
  display: block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.b-stack-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.b-stack-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.b-stack-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.b-stack-list li svg { width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }
.b-stack-list strong { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 3px; }
.b-stack-list span { display: block; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.b-stack-list span em, .b-stack-list strong em { font-style: italic; }
.b-stack-list li > em {
  align-self: center;
  justify-self: end;
  padding: 6px 10px;
  border: 1px solid rgba(151, 146, 125, 0.34);
  border-radius: 999px;
  background: rgba(151, 146, 125, 0.1);
  font-style: normal;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-color: rgba(159, 70, 60, 0.85);
  text-decoration-thickness: 2px;
}

.b-price-card {
  position: sticky;
  top: 96px;
  padding: 30px 26px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.b-price-total {
  display: block;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
}
.b-price-total strong {
  font-weight: 800;
  color: var(--gold-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(217, 212, 195, 0.6);
}
.b-price-reason {
  margin: 12px 0 18px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.b-price-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.b-price-now span { color: rgba(255, 255, 255, 0.7); font-size: 1rem; }
.b-price-now strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold-soft);
}
.b-price-cta { width: 100%; }
.b-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.b-guarantee svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--gold-soft); }

/* â”€â”€ Bloco 3 Â· Casos reais â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.b-case {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: 10px;
  background: var(--white);
}
.b-case h3 { margin: 0; font-size: 1.12rem; color: var(--navy); }
.b-case p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 0.95rem; }
.b-case strong {
  margin-top: auto;
  padding-top: 8px;
  color: var(--navy);
  font-size: 0.95rem;
}
.b-cases-note {
  margin: 16px 0 0;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
}

/* â”€â”€ Bloco 4 Â· Autora (no guide-layout) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* respiro do CTA da lista de valor (estava grudado) */
.b-guide-copy .primary-button { margin-top: 26px; }

.b-author-card {
  align-self: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.b-author-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.b-author-head img {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.b-author-head .eyebrow { color: var(--gold); }
.b-author-head h3 { margin: 5px 0 6px; font-size: 1.22rem; color: var(--navy); line-height: 1.15; }
.b-author-cred { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }
.b-author-quote {
  margin: 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(151, 146, 125, 0.09);
  border-radius: 0 10px 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.5;
  color: var(--navy);
}

/* â”€â”€ Bloco 5 Â· ReforÃ§o final â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-final-section {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(151, 146, 125, 0.16), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(151, 146, 125, 0.12), transparent 42%);
}
.b-final { max-width: 720px; margin: 0 auto; text-align: center; }
.b-final .eyebrow { justify-content: center; color: var(--gold-soft); }
.b-final .eyebrow::before { display: none; }
.b-final h2 { color: #fff; }
.b-final > p { margin: 0 auto 26px; max-width: 560px; color: rgba(255, 255, 255, 0.82); font-size: 1.08rem; }
.b-final .primary-button { margin: 0 auto; }
.b-guarantee--light { justify-content: center; color: rgba(255, 255, 255, 0.7); }

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-footer {
  background: #061720;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px clamp(20px, 7vw, 92px);
}
.b-footer-inner { width: min(900px, 100%); margin: 0 auto; text-align: center; }
.b-footer-logo { width: 220px; max-width: 60vw; height: auto; margin: 0 auto 20px; opacity: 0.92; }
.b-footer-disclaimer {
  margin: 0 auto 22px;
  max-width: 680px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.b-footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 22px;
}
.b-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 700;
}
.b-footer-social a:hover { color: #fff; }
.b-footer-social svg { width: 18px; height: 18px; }
.b-footer-copy { margin: 0; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

/* â”€â”€ Responsivo â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .b-offer { grid-template-columns: 1fr; }
  .b-price-card { position: static; }
  .b-cases-grid { grid-template-columns: 1fr; }
  .b-author-head { gap: 14px; }
  .b-author-head img { width: 72px; height: 72px; }
}
@media (max-width: 520px) {
  .b-stack-list li { grid-template-columns: 20px minmax(0, 1fr); }
  .b-stack-list li > em { grid-column: 2; justify-self: start; color: var(--navy); }
}

/* â”€â”€ Badge de condiÃ§Ã£o de lanÃ§amento (no price card) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-price-flag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.b-price-now { margin: 6px 0 14px; }

/* â”€â”€ MÃ©todo 360Â® Â· etapas travadas (curiosidade) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-metodo-section {
  background: var(--navy);
  background-image: radial-gradient(circle at 50% -20%, rgba(151, 146, 125, 0.26), transparent 58%);
  border-top: 1px solid rgba(151, 146, 125, 0.22);
}
.b-metodo { max-width: 880px; margin: 0 auto; text-align: center; }
.b-metodo .eyebrow { justify-content: center; color: var(--gold-soft); }
.b-metodo .eyebrow sup { font-size: 0.7em; }
.b-metodo h2 { color: #fff; }
.b-metodo > p {
  margin: 0 auto 26px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}
.b-metodo-steps {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.b-metodo-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.b-metodo-steps li span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--gold-soft);
}
.b-metodo-steps li { position: relative; min-height: 124px; justify-content: flex-start; }
.b-metodo-steps li strong { font-size: 0.95rem; color: #fff; line-height: 1.2; }
.b-metodo-steps li em {
  font-style: normal;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--gold-soft);
}
.b-metodo-steps li.is-open {
  border-color: var(--gold);
  background: rgba(151, 146, 125, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.b-metodo-steps li.is-locked strong { color: rgba(255, 255, 255, 0.72); }
.b-metodo-steps li.is-locked em { color: rgba(255, 255, 255, 0.45); }
.b-metodo-steps li.is-locked svg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.4);
}
.b-metodo .primary-button { margin: 0 auto; }
.b-friction { margin: 16px 0 0; color: var(--gold-soft); font-size: 0.88rem; font-weight: 700; }
@media (max-width: 760px) {
.b-metodo-steps { grid-template-columns: 1fr; gap: 8px; }
  .b-metodo-steps li { min-height: 0; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 4px 12px; text-align: left; padding: 14px 16px; }
  .b-metodo-steps li span { font-size: 1rem; }
  .b-metodo-steps li strong { flex: 1; }
  .b-metodo-steps li em { flex-basis: 100%; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LP-B Â· compactaÃ§Ã£o global do spacing (densa, premium, sem apertar)
   Escopada em .lp-b para nÃ£o tocar a lp.html congelada.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lp-b .section { padding: 58px clamp(20px, 7vw, 92px); }
.lp-b main > section { scroll-margin-top: 92px; }
.lp-b .hero { min-height: 78vh; }
.lp-b .hero-content { padding: 92px clamp(20px, 7vw, 92px) 60px; }
.lp-b .hero-logo { margin-bottom: 26px; }
.lp-b .hero p { margin-bottom: 26px; }
.lp-b .section-heading { margin-bottom: 22px; }
.lp-b h2 { margin-bottom: 14px; }
.lp-b .b-offer { gap: 22px; }
.lp-b .b-stack { padding: 24px; }
.lp-b .b-stack-list { gap: 12px; }
.lp-b .b-stack-list li { padding-bottom: 12px; }
.lp-b .b-cases-grid { gap: 14px; }
.lp-b .b-case { padding: 20px; }
.lp-b .b-guide-layout { gap: 26px; }
.lp-b .b-value-list { margin-top: 16px; gap: 10px; }
.lp-b .b-author-card { padding: 22px; }
.lp-b .b-faq { margin-bottom: 0; }
.lp-b .b-faq summary { padding: 16px 0; }
.lp-b .b-faq details > p { padding-bottom: 16px; }

/* â”€â”€ LP-b rev. visual: ordem narrativa + acabamento editorial â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-b .urgency-section {
  background:
    linear-gradient(180deg, rgba(151, 146, 125, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--paper);
}
.lp-b #riscos .section-heading {
  max-width: 860px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
.lp-b #riscos .section-heading .eyebrow {
  justify-content: flex-start;
}
.lp-b #riscos .section-heading h2 {
  max-width: 820px;
  line-height: 0.98;
}
.lp-b #riscos .section-heading p {
  max-width: 680px;
}
.b-risk-intro {
  max-width: 860px;
  margin: 0 0 28px;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.72;
  box-shadow: 0 12px 32px rgba(9, 33, 44, 0.06);
}
.b-risk-grid {
  counter-reset: risk-card;
}
.lp-b .b-risk {
  position: relative;
  min-height: 240px;
  padding: 26px 24px 24px;
  border-color: rgba(9, 33, 44, 0.12);
  background:
    linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: 0 18px 40px rgba(9, 33, 44, 0.08);
}
.lp-b .b-risk::before {
  counter-increment: risk-card;
  content: "0" counter(risk-card);
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  color: rgba(151, 146, 125, 0.22);
  line-height: 1;
}
.lp-b .b-risk-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(151, 146, 125, 0.24);
}
.lp-b .b-risk h3 {
  max-width: 82%;
}
.b-risk-close {
  max-width: 760px;
  margin: 24px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(151, 146, 125, 0.28);
  border-radius: 12px;
  background: rgba(151, 146, 125, 0.1);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.55;
}
.lp-b #riscos .b-cases-heading {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid rgba(9, 33, 44, 0.12);
}
.lp-b .b-case {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(9, 33, 44, 0.06);
}

.lp-b .b-offer-section {
  background:
    linear-gradient(180deg, #fff, rgba(151, 146, 125, 0.09)),
    var(--paper);
}
.lp-b .b-offer-heading {
  max-width: 920px;
  margin-left: 0;
  text-align: left;
}
.lp-b .b-offer-heading .eyebrow {
  justify-content: flex-start;
}
.lp-b .b-stack {
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(9, 33, 44, 0.07);
}
.lp-b .b-price-card {
  border-radius: 10px;
}

.lp-b #conteudo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(151, 146, 125, 0.08)),
    var(--paper);
}
.lp-b #conteudo .section-heading {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: left;
}
.lp-b #conteudo .section-heading .eyebrow {
  justify-content: flex-start;
}
.lp-b #conteudo .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  line-height: 1.02;
}
.lp-b #conteudo .section-heading p {
  max-width: 690px;
}
.lp-b #conteudo .b-author-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(9, 33, 44, 0.11);
}
.lp-b #conteudo .b-author-head {
  align-items: flex-start;
}
.lp-b #conteudo .b-author-head img {
  width: 108px;
  height: 108px;
  border-radius: 12px;
  filter: grayscale(1);
}
.lp-b #conteudo .b-author-letter {
  margin-top: 20px;
}
.lp-b #conteudo .b-author-quote {
  margin-top: 18px;
}

.lp-b .b-metodo {
  max-width: 1080px;
  text-align: left;
}
.lp-b .b-metodo .eyebrow {
  justify-content: flex-start;
}
.lp-b .b-metodo h2 {
  max-width: 880px;
  font-size: clamp(2.05rem, 4.2vw, 4.1rem);
  line-height: 1.03;
}
.lp-b .b-metodo > p {
  margin-right: 0;
  margin-left: 0;
  max-width: 820px;
}
.lp-b .b-metodo-steps {
  margin-top: 28px;
}
.lp-b .b-metodo-steps li {
  align-items: flex-start;
  text-align: left;
  padding: 18px 14px;
}
.lp-b .b-metodo-apply {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(151, 146, 125, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}
.lp-b .b-metodo-apply h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: #fff;
  font-size: 1.32rem;
}
.lp-b .b-metodo-apply p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.lp-b .b-metodo-apply .primary-button {
  justify-self: end;
}
.lp-b .b-metodo-apply .b-friction {
  grid-column: 1 / -1;
}

.lp-b #faq {
  background: var(--paper);
}
.lp-b #faq .section-heading {
  max-width: 820px;
  margin: 0 auto 26px;
  text-align: left;
}
.lp-b #faq .section-heading .eyebrow {
  justify-content: flex-start;
}
.lp-b #faq .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}
.lp-b #faq .b-faq {
  max-width: 920px;
}

@media (max-width: 900px) {
  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
  }
  .lp-b .b-metodo-apply .primary-button {
    justify-self: start;
  }
}
@media (max-width: 640px) {
  .lp-b .topbar-cta {
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 10px 12px;
  }
  .b-risk-intro,
  .b-risk-close {
    padding: 18px;
  }
  .lp-b #conteudo .b-author-head {
    display: grid;
  }
  .lp-b #conteudo .b-author-head img {
    width: 92px;
    height: 92px;
  }
}

/* â”€â”€ LP-b rev. 2: encaixe visual mais premium â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-b #riscos .section-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: 28px 36px;
  align-items: start;
}
.lp-b #riscos .section-heading {
  grid-column: 1;
  margin-bottom: 0;
}
.lp-b #riscos .section-heading h2 {
  font-size: clamp(2.65rem, 4.7vw, 5rem);
}
.lp-b #riscos .section-heading p {
  margin-top: 20px;
  font-size: 1.04rem;
  line-height: 1.55;
}
.lp-b #riscos .b-risk-intro {
  grid-column: 2;
  margin-top: 42px;
  min-height: 130px;
  display: flex;
  align-items: center;
}
.lp-b #riscos .b-risk-grid,
.lp-b #riscos .b-risk-close,
.lp-b #riscos .b-cases-heading,
.lp-b #riscos .b-cases-grid,
.lp-b #riscos .b-cases-note {
  grid-column: 1 / -1;
}
.lp-b #riscos .b-risk-grid {
  gap: 20px;
}
.lp-b #riscos .b-risk {
  overflow: hidden;
  border-radius: 12px;
}
.lp-b #riscos .b-risk::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(151, 146, 125, 0.12));
}
.lp-b #riscos .b-risk h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}
.lp-b #riscos .b-risk p {
  font-size: 0.95rem;
}
.lp-b #riscos .b-risk-close {
  width: min(760px, 100%);
}
.lp-b #riscos .b-cases-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1fr);
  gap: 18px 36px;
  align-items: end;
}
.lp-b #riscos .b-cases-heading h2 {
  max-width: 620px;
}

.lp-b .b-metodo-section {
  position: relative;
  overflow: hidden;
}
.lp-b .b-metodo-section::before {
  content: "";
  position: absolute;
  inset: 42px 7vw auto auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(151, 146, 125, 0.18);
  border-radius: 50%;
  opacity: 0.72;
  pointer-events: none;
}
.lp-b .b-metodo-section::after {
  content: "";
  position: absolute;
  right: 10vw;
  top: 110px;
  width: 96px;
  height: 96px;
  border-top: 1px solid rgba(151, 146, 125, 0.32);
  border-right: 1px solid rgba(151, 146, 125, 0.32);
  transform: rotate(45deg);
  pointer-events: none;
}
.lp-b .b-metodo {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1fr);
  gap: 28px 44px;
  align-items: start;
}
.lp-b .b-metodo > .eyebrow,
.lp-b .b-metodo > h2 {
  grid-column: 1;
}
.lp-b .b-metodo > h2 {
  margin-bottom: 0;
}
.lp-b .b-metodo > p {
  grid-column: 2;
  margin-top: 0;
  padding-left: 26px;
  border-left: 1px solid rgba(151, 146, 125, 0.28);
}
.lp-b .b-metodo > p + p {
  margin-top: -10px;
}
.lp-b .b-metodo-steps,
.lp-b .b-metodo-apply {
  grid-column: 1 / -1;
}
.lp-b .b-metodo-steps {
  gap: 14px;
}
.lp-b .b-metodo-steps li {
  min-height: 138px;
  border-color: rgba(151, 146, 125, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(151, 146, 125, 0.08);
}
.lp-b .b-metodo-steps li span {
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.lp-b .b-metodo-apply {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(151, 146, 125, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}
.lp-b .b-metodo-apply h3 {
  max-width: 680px;
}
.lp-b .b-metodo-apply .primary-button {
  align-self: center;
  width: 100%;
  justify-content: center;
}
.lp-b .b-metodo-apply .b-friction {
  max-width: 720px;
}

@media (max-width: 980px) {
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    grid-template-columns: 1fr;
  }
  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro,
  .lp-b .b-metodo > .eyebrow,
  .lp-b .b-metodo > h2,
  .lp-b .b-metodo > p {
    grid-column: 1;
  }
  .lp-b #riscos .b-risk-intro {
    margin-top: 0;
  }
  .lp-b #riscos .b-cases-heading {
    grid-template-columns: 1fr;
  }
  .lp-b .b-metodo > p {
    padding-left: 0;
    border-left: 0;
  }
  .lp-b .b-metodo-section::before,
  .lp-b .b-metodo-section::after {
    display: none;
  }
}

@media (max-width: 760px) {
.lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ Bloco Holdings (suspense + fila de espera â†’ quiz) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.b-holding-section { border-top: 2px solid var(--gold, #97927d); }
.b-holding { max-width: 760px; margin: 0 auto; text-align: center; }
.b-holding .eyebrow { justify-content: center; color: var(--gold-soft, #d9d4c3); }
.b-holding .eyebrow::before { display: none; }
.b-holding h2 { color: #fff; }
.b-holding > p {
  margin: 14px auto 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
.b-holding-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 22px auto 0;
  max-width: 520px;
}
.b-holding-form input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}
.b-holding-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.b-holding-form input:focus { outline: none; border-color: var(--gold, #97927d); background: rgba(255, 255, 255, 0.1); }
.b-holding-form .primary-button { flex: 0 0 auto; margin: 0; }
.b-holding-status { margin: 14px auto 0; color: var(--gold-soft, #d9d4c3); font-weight: 700; }
.b-holding-skip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.b-holding-skip svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.b-holding-skip:hover { color: #fff; }
@media (max-width: 560px) {
  .b-holding-form .primary-button { width: 100%; justify-content: center; }
}

/* â”€â”€ LP-b final premium pass: produto tangÃ­vel + composiÃ§Ã£o visual â”€â”€â”€â”€â”€â”€â”€ */
.lp-b .hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.lp-b .hero-image {
  object-position: center 45%;
  filter: saturate(0.82) contrast(1.06);
}
.lp-b .hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 33, 44, 0.94) 0%, rgba(9, 33, 44, 0.86) 34%, rgba(9, 33, 44, 0.58) 62%, rgba(9, 33, 44, 0.22) 100%),
    radial-gradient(circle at 78% 18%, rgba(151, 146, 125, 0.28), transparent 34%);
}
.lp-b .hero-content--product {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 120px clamp(24px, 5vw, 72px) 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}
.lp-b .hero-copy {
  max-width: 720px;
}
.lp-b .hero-logo {
  display: none;
}
.lp-b .hero .eyebrow {
  color: var(--gold-soft);
}
.lp-b .hero h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 5.45vw, 5.85rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.lp-b .hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
}
.product-showcase {
  position: relative;
  min-height: 470px;
  perspective: 1200px;
}
.product-book {
  position: absolute;
  left: 2%;
  top: 8%;
  width: 270px;
  min-height: 365px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(217, 212, 195, 0.44);
  border-radius: 12px 18px 18px 12px;
  background:
    linear-gradient(135deg, rgba(151, 146, 125, 0.22), transparent 38%),
    linear-gradient(180deg, #102f3d 0%, #071c25 100%);
  color: #fff;
  box-shadow: 28px 32px 54px rgba(0, 0, 0, 0.34);
  transform: rotateY(-14deg) rotateZ(-2deg);
}
.product-book::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 11px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, var(--gold), rgba(151, 146, 125, 0.36));
}
.product-book span {
  max-width: 190px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-book strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.04;
}
.product-book em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-screen {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 310px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 18px 22px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}
.screen-bar {
  width: 58px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}
.product-screen strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.product-screen span {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(9, 33, 44, 0.12);
  color: var(--muted);
  font-weight: 700;
}
.product-mini {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 12px 16px;
  border: 1px solid rgba(217, 212, 195, 0.5);
  border-radius: 999px;
  background: rgba(151, 146, 125, 0.92);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}
.product-mini--one {
  right: 42px;
  top: 34px;
}
.product-mini--two {
  left: 12px;
  bottom: 32px;
}

.lp-b #riscos {
  background:
    linear-gradient(180deg, #f8f7f2 0%, #ffffff 48%, #f6f4ef 100%);
}
.lp-b #riscos .section-inner {
  width: min(1120px, 100%);
}
.lp-b #riscos .section-heading {
  border-radius: 12px;
}
.lp-b #riscos .b-risk-intro {
  box-shadow: 0 24px 54px rgba(9, 33, 44, 0.08);
}
.lp-b #riscos .b-risk:nth-child(3) {
  border-color: rgba(151, 146, 125, 0.62);
  box-shadow: 0 22px 44px rgba(9, 33, 44, 0.12);
}
.lp-b .b-cases-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}
.lp-b .b-case {
  border-radius: 12px;
}
.lp-b .b-case--featured {
  grid-row: span 3;
  min-height: 360px;
  padding: 32px;
  border-color: rgba(151, 146, 125, 0.42);
  border-left-color: var(--gold);
  background:
    linear-gradient(135deg, rgba(151, 146, 125, 0.16), transparent 42%),
    var(--navy);
  color: #fff;
}
.lp-b .b-case--featured h3 {
  color: #fff;
  font-size: 1.5rem;
}
.lp-b .b-case--featured p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}
.lp-b .b-case--featured strong {
  color: var(--gold-soft);
}

.lp-b .b-offer-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5ef 100%);
}
.lp-b .b-offer {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.54fr);
  gap: 30px;
}
.lp-b .b-stack {
  border-color: rgba(9, 33, 44, 0.1);
}
.lp-b .b-price-card {
  padding: 36px 30px;
  border: 1px solid rgba(217, 212, 195, 0.46);
  box-shadow: 0 28px 62px rgba(9, 33, 44, 0.24);
}
.lp-b .b-price-card::before {
  content: "Código Digital";
  display: inline-block;
  margin: 0 auto 12px;
  padding: 8px 14px;
  border: 1px solid rgba(217, 212, 195, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-b .b-price-now strong {
  font-size: clamp(3.9rem, 5vw, 5rem);
}

.lp-b #conteudo .b-author-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: start;
}
.lp-b #conteudo .b-author-head {
  display: block;
  margin: 0;
  padding: 22px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
}
.lp-b #conteudo .b-author-head img {
  width: 100%;
  height: 300px;
  margin-bottom: 18px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
}
.lp-b #conteudo .b-author-head h3 {
  color: #fff;
}
.lp-b #conteudo .b-author-cred {
  color: rgba(255, 255, 255, 0.72);
}
.lp-b #conteudo .b-author-letter,
.lp-b #conteudo .b-author-quote,
.lp-b #conteudo .b-author-card > p {
  grid-column: 2;
}

.lp-b .b-metodo-section {
  padding-top: 54px;
  padding-bottom: 54px;
}
.lp-b .b-metodo h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 3.8vw, 4.15rem);
}
.lp-b .b-metodo > p {
  max-width: 720px;
}
.lp-b .b-metodo-steps li {
  min-height: 132px;
}
.lp-b .b-metodo-apply .primary-button {
  font-size: 0.94rem;
  padding-right: 16px;
  padding-left: 16px;
}

.lp-b #faq {
  background:
    linear-gradient(180deg, #ffffff, #f7f5ef);
}
.lp-b .b-faq details {
  border-radius: 10px;
  box-shadow: none;
}

.mobile-buy-bar {
  display: none;
}

@media (max-width: 980px) {
  .lp-b .hero {
    min-height: 0;
  }
  .lp-b .hero-content--product {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }
  .product-showcase {
    min-height: 360px;
    max-width: 520px;
  }
  .product-book {
    width: 230px;
    min-height: 310px;
  }
  .product-screen {
    width: 270px;
  }
  .lp-b .b-cases-grid,
  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
  }
  .lp-b .b-case--featured {
    grid-row: auto;
    min-height: 0;
  }
  .lp-b #conteudo .b-author-letter,
  .lp-b #conteudo .b-author-quote,
  .lp-b #conteudo .b-author-card > p {
    grid-column: 1;
  }
  .lp-b #conteudo .b-author-head img {
    max-width: 240px;
    height: 240px;
  }
}

@media (max-width: 760px) {
.lp-b {
    padding-bottom: 82px;
  }
  .lp-b .hero-content--product {
    padding: 96px 22px 42px;
    gap: 22px;
  }
  .lp-b .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }
  .product-showcase {
    min-height: 300px;
    transform: scale(0.92);
    transform-origin: left top;
  }
  .product-book {
    left: 0;
    width: 205px;
    min-height: 275px;
    padding: 26px 20px;
  }
  .product-book strong {
    font-size: 1.7rem;
  }
  .product-screen {
    right: 0;
    bottom: 0;
    width: 220px;
    padding: 18px;
  }
  .product-mini {
    display: none;
  }
  .lp-b .b-offer {
    grid-template-columns: 1fr;
  }
  .mobile-buy-bar {
    position: fixed;
    z-index: 80;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(9, 33, 44, 0.16);
    border-radius: 12px;
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 18px 42px rgba(9, 33, 44, 0.26);
    font-weight: 900;
  }
  .mobile-buy-bar strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
  }
}

@media (max-width: 420px) {
  .product-showcase {
    min-height: 280px;
    transform: scale(0.84);
  }
  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro {
    padding: 24px;
  }
}

/* â”€â”€ Hero proportion fix: primeira dobra com CTA e produto visÃ­veis â”€â”€â”€â”€â”€â”€â”€ */
.lp-b .hero {
  min-height: 640px;
}
.lp-b .hero-content--product {
  padding-top: 104px;
  padding-bottom: 54px;
  grid-template-columns: minmax(0, 0.88fr) minmax(330px, 0.64fr);
}
.lp-b .hero h1 {
  max-width: 610px;
  font-size: clamp(2.75rem, 4.25vw, 4.7rem);
  line-height: 0.99;
}
.lp-b .hero p {
  max-width: 600px;
  font-size: 1.03rem;
}
.lp-b .hero-actions {
  margin-top: 22px;
}
.product-showcase {
  min-height: 405px;
}
.product-book {
  width: 235px;
  min-height: 315px;
  padding: 30px 24px;
}
.product-book strong {
  font-size: 1.82rem;
}
.product-screen {
  width: 280px;
  bottom: 4%;
}
.product-mini--one {
  right: 26px;
  top: 28px;
}

@media (max-width: 980px) {
  .lp-b .hero h1 {
    max-width: 680px;
    font-size: clamp(2.65rem, 8vw, 4.35rem);
  }
}

/* â”€â”€ Final mobile lock: hero em uma coluna â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 760px) {
.lp-b .hero {
    min-height: auto;
  }
  .lp-b .hero-content--product {
    display: grid;
    grid-template-columns: 1fr !important;
    width: 100%;
    padding: 92px 22px 34px;
    gap: 18px;
  }
  .lp-b .hero-copy {
    width: 100%;
    max-width: none;
  }
  .lp-b .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 9.5vw, 3.15rem);
    line-height: 1.02;
  }
  .lp-b .hero p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .lp-b .hero-actions {
    display: none;
  }
  .product-showcase {
    width: 100%;
    min-height: 250px;
    transform: none;
  }
  .product-book {
    width: 178px;
    min-height: 238px;
    padding: 22px 18px;
  }
  .product-book span {
    font-size: 0.66rem;
  }
  .product-book strong {
    font-size: 1.42rem;
  }
  .product-screen {
    width: 190px;
    right: 0;
    bottom: 12px;
    padding: 15px;
  }
  .product-screen span {
    padding: 8px 0;
    font-size: 0.82rem;
  }
}

/* LP-b true final visual polish: sem alterar texto ou HTML */
.lp-b .section-inner {
  width: min(100% - 44px, 1160px);
}

.lp-b .hero {
  min-height: 700px;
}

.lp-b .hero-content--product {
  width: min(100% - 72px, 1200px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.68fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 52px;
}

.lp-b .hero-copy {
  max-width: 680px;
}

.lp-b .hero h1 {
  max-width: 700px;
  font-size: clamp(3.1rem, 4.35vw, 5rem);
  line-height: 0.98;
}

.lp-b .hero p {
  max-width: 650px;
  font-size: clamp(1rem, 1.04vw, 1.1rem);
  line-height: 1.55;
}

.product-showcase {
  justify-self: end;
  width: min(100%, 398px);
  min-height: 364px;
  transform: none;
  filter: drop-shadow(0 24px 48px rgba(9, 33, 44, 0.34));
}

.product-book {
  left: 0;
  top: 28px;
  width: 210px;
  min-height: 300px;
  border-radius: 18px;
  box-shadow: inset 10px 0 0 rgba(151, 146, 125, 0.72), 0 22px 42px rgba(9, 33, 44, 0.30);
}

.product-book strong {
  font-size: clamp(1.68rem, 2vw, 2.18rem);
}

.product-screen {
  right: 0;
  bottom: 30px;
  width: 248px;
  border-radius: 18px;
}

.product-mini {
  height: auto;
  min-height: 0;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 26px rgba(9, 33, 44, 0.18);
}

.product-mini--one {
  top: 62px;
  right: 8px;
}

.product-mini--two {
  left: 34px;
  bottom: 54px;
}

.lp-b #riscos {
  background: linear-gradient(180deg, #f8f7f3 0%, #fff 48%, #f5f3ee 100%);
}

.lp-b #riscos .section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: 18px 24px;
  align-items: stretch;
}

.lp-b #riscos .section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: clamp(26px, 3.2vw, 38px);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 48%), var(--navy);
  box-shadow: 0 22px 48px rgba(9, 33, 44, 0.13);
}

.lp-b #riscos .section-heading h2 {
  max-width: 470px;
  color: #fff;
  font-size: clamp(2.2rem, 3.45vw, 3.55rem);
  line-height: 0.98;
}

.lp-b #riscos .section-heading p {
  max-width: 430px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.lp-b #riscos .b-risk-intro {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgba(9, 33, 44, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(9, 33, 44, 0.08);
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

.lp-b #riscos .b-risk-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.lp-b #riscos .b-risk {
  min-height: 0;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(9, 33, 44, 0.08);
}

.lp-b #riscos .b-risk::after {
  opacity: 0.07;
  font-size: 2.25rem;
  right: 20px;
  top: 16px;
}

.lp-b #riscos .b-risk-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.lp-b #riscos .b-risk h3 {
  font-size: 1.06rem;
  line-height: 1.28;
}

.lp-b #riscos .b-risk p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.lp-b #riscos .b-risk-close {
  grid-column: 1 / -1;
  max-width: 820px;
  justify-self: center;
  margin-top: 6px;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
}

.lp-b #riscos .b-cases-heading {
  grid-column: 1 / -1;
  margin-top: 46px;
  padding: 28px 32px;
  min-height: 0;
  border-radius: 14px;
  box-shadow: none;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.45vw, 3.55rem);
}

.lp-b .b-cases-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.lp-b .b-case,
.lp-b .b-case--featured {
  grid-column: auto;
  grid-row: auto;
  min-height: 220px;
  padding: 20px;
  border-radius: 12px;
}

.lp-b .b-case--featured {
  background: linear-gradient(150deg, rgba(151, 146, 125, 0.18), transparent 58%), var(--navy);
}

.lp-b .b-case h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.lp-b .b-case p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.lp-b .b-case strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.lp-b #conteudo {
  background: radial-gradient(circle at 12% 10%, rgba(151, 146, 125, 0.10), transparent 30%), #fbfaf7;
}

.lp-b #conteudo .section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.lp-b #conteudo .section-heading .eyebrow {
  justify-content: center;
}

.lp-b #conteudo .section-heading h2 {
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.lp-b #conteudo .section-heading p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.lp-b #conteudo .b-author-card {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px 34px;
  align-items: start;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 64px rgba(9, 33, 44, 0.10);
}

.lp-b #conteudo .b-author-head {
  display: block;
  min-width: 0;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(151, 146, 125, 0.16), transparent 56%), var(--navy);
  color: #fff;
}

.lp-b #conteudo .b-author-head img {
  width: 100%;
  height: 260px;
  margin: 0 0 16px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.lp-b #conteudo .b-author-head h3 {
  color: #fff;
  font-size: 1.25rem;
}

.lp-b #conteudo .b-author-head .eyebrow {
  color: var(--gold-soft);
}

.lp-b #conteudo .b-author-cred {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.52;
}

.lp-b #conteudo .b-author-letter {
  margin-top: 4px !important;
  line-height: 1.72 !important;
}

.lp-b #conteudo .b-author-letter p {
  max-width: 620px;
}

.lp-b #conteudo .b-author-quote {
  grid-column: 2;
  margin: 0;
  padding: 20px 22px;
  border-radius: 12px;
}

.lp-b #conteudo .b-author-card > p {
  grid-column: 2;
  margin-top: -6px !important;
}

.lp-b .b-metodo-section {
  padding: clamp(70px, 7vw, 96px) 0;
  background: radial-gradient(circle at 12% 10%, rgba(151, 146, 125, 0.16), transparent 30%), linear-gradient(180deg, #09212c 0%, #0b2a36 100%);
}

.lp-b .b-metodo {
  max-width: 1120px;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.86fr) minmax(460px, 1.14fr);
  gap: 22px 34px;
  align-items: start;
  text-align: left;
}

.lp-b .b-metodo > .eyebrow,
.lp-b .b-metodo > h2,
.lp-b .b-metodo > p {
  grid-column: 1;
  max-width: 510px;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
  text-align: left;
}

.lp-b .b-metodo h2 {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 0.98;
}

.lp-b .b-metodo > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.72;
}

.lp-b .b-metodo-steps {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(151, 146, 125, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.20);
}

.lp-b .b-metodo-steps::before {
  display: none;
}

.lp-b .b-metodo-steps li {
  display: grid;
  grid-template-columns: 46px minmax(118px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  align-items: center;
  min-height: 0;
  padding: 16px;
  border-radius: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lp-b .b-metodo-steps li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(151, 146, 125, 0.58);
}

.lp-b .b-metodo-steps li span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.85rem;
}

.lp-b .b-metodo-steps li strong {
  font-size: 0.98rem;
}

.lp-b .b-metodo-steps li em {
  font-size: 0.82rem;
  line-height: 1.42;
}

.lp-b .b-metodo-apply {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-top: 12px;
  padding: 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(151, 146, 125, 0.30);
}

.lp-b .b-metodo-apply h3,
.lp-b .b-metodo-apply p,
.lp-b .b-metodo-apply .b-friction {
  grid-column: 1;
  max-width: 680px;
}

.lp-b .b-metodo-apply .primary-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 300px;
  justify-content: center;
}

@media (max-width: 1040px) {
  .lp-b .hero-content--product,
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    justify-self: start;
  }

  .lp-b .b-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-b .b-metodo-steps {
    grid-column: 1;
    grid-row: auto;
  }

  .lp-b .b-metodo > .eyebrow,
  .lp-b .b-metodo > h2,
  .lp-b .b-metodo > p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
.lp-b .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .lp-b .hero {
    min-height: auto;
  }

  .lp-b .hero-content--product {
    width: 100%;
    grid-template-columns: 1fr !important;
    padding: 92px 22px 92px;
    gap: 18px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.28rem, 9.2vw, 3.05rem);
    line-height: 1.02;
  }

  .lp-b .hero-actions {
    display: none;
  }

  .product-showcase {
    width: 100%;
    min-height: 230px;
    filter: drop-shadow(0 18px 34px rgba(9, 33, 44, 0.26));
  }

  .product-book {
    width: 162px;
    min-height: 222px;
    top: 8px;
    padding: 20px 16px;
  }

  .product-book strong {
    font-size: 1.42rem;
  }

  .product-screen {
    width: 184px;
    right: 0;
    bottom: 2px;
    padding: 15px;
  }

  .product-mini {
    padding: 8px 13px;
    font-size: 0.76rem;
  }

  .product-mini--one {
    top: 16px;
    right: 4px;
  }

  .product-mini--two {
    left: 8px;
    bottom: 18px;
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro,
  .lp-b #riscos .b-cases-heading {
    padding: 24px;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .lp-b #riscos .b-risk-grid,
  .lp-b .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b .b-case,
  .lp-b .b-case--featured {
    min-height: 0;
  }

  .lp-b #conteudo .section-heading {
    text-align: left;
  }

  .lp-b #conteudo .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head img {
    height: 300px;
  }

  .lp-b #conteudo .b-author-quote,
  .lp-b #conteudo .b-author-card > p {
    grid-column: 1;
  }

  .lp-b .b-metodo-steps li {
    grid-template-columns: 42px 1fr;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }

  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .lp-b .b-metodo-apply .primary-button {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    width: 100%;
  }

  .lp-b #conteudo .b-author-head img {
    height: 250px;
  }

  .lp-b #conteudo .b-author-cred {
    font-size: 0.78rem;
    line-height: 1.44;
  }

  .lp-b #conteudo .b-author-letter {
    line-height: 1.58 !important;
  }

  .lp-b #conteudo .b-author-letter p,
  .lp-b #conteudo .b-author-card > p {
    font-size: 0.94rem;
  }

  .lp-b #conteudo .b-author-quote {
    padding: 16px;
  }

  .lp-b .b-metodo-section {
    padding: 58px 0;
  }

  .lp-b .b-metodo > p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .lp-b .b-metodo-steps {
    padding: 8px;
    gap: 8px;
  }

  .lp-b .b-metodo-steps li {
    padding: 12px;
  }

  .lp-b .b-metodo-steps li strong {
    font-size: 0.92rem;
  }

  .lp-b .b-metodo-steps li em {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .lp-b .b-metodo-apply {
    gap: 12px;
  }

  .lp-b .b-metodo-apply p,
  .lp-b .b-metodo-apply .b-friction {
    font-size: 0.92rem;
    line-height: 1.52;
  }
}

/* LP-b visual polish: sem alterar texto ou fluxo */
.lp-b .section {
  overflow: hidden;
}

.lp-b .section-inner {
  width: min(100% - 44px, 1160px);
}

.lp-b .hero {
  min-height: clamp(640px, 82vh, 780px);
}

.lp-b .hero-content--product {
  width: min(100% - 72px, 1210px);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  padding-top: clamp(94px, 9vh, 118px);
  padding-bottom: 58px;
}

.lp-b .hero-copy {
  max-width: 700px;
}

.lp-b .hero h1 {
  max-width: 760px;
  font-size: clamp(3.5rem, 5vw, 5.65rem);
  line-height: 0.97;
}

.lp-b .hero p {
  max-width: 670px;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}

.product-showcase {
  justify-self: end;
  width: min(100%, 430px);
  min-height: 405px;
  transform: none;
  filter: drop-shadow(0 28px 56px rgba(9, 33, 44, 0.34));
}

.product-book {
  left: 2px;
  top: 36px;
  width: 228px;
  min-height: 328px;
  border-radius: 18px;
  box-shadow: inset 10px 0 0 rgba(151, 146, 125, 0.72), 0 22px 42px rgba(9, 33, 44, 0.34);
}

.product-book strong {
  font-size: clamp(1.85rem, 2.2vw, 2.45rem);
}

.product-screen {
  right: 0;
  bottom: 38px;
  width: 266px;
  border-radius: 18px;
  box-shadow: 0 26px 46px rgba(9, 33, 44, 0.22);
}

.product-mini {
  height: auto;
  min-height: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 26px rgba(9, 33, 44, 0.20);
}

.product-mini--one {
  top: 74px;
  right: 16px;
}

.product-mini--two {
  left: 42px;
  bottom: 64px;
}

.lp-b #riscos {
  background:
    linear-gradient(180deg, #f8f7f3 0%, #fff 48%, #f5f3ee 100%);
}

.lp-b #riscos .section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
  gap: 18px 24px;
  align-items: stretch;
}

.lp-b #riscos .section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--navy);
  box-shadow: 0 22px 48px rgba(9, 33, 44, 0.13);
}

.lp-b #riscos .section-heading h2 {
  max-width: 480px;
  font-size: clamp(2.25rem, 3.65vw, 3.8rem);
  line-height: 0.98;
}

.lp-b #riscos .section-heading p {
  max-width: 440px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.lp-b #riscos .b-risk-intro {
  min-height: 0;
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid rgba(9, 33, 44, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(9, 33, 44, 0.08);
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
  line-height: 1.75;
}

.lp-b #riscos .b-risk-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.lp-b #riscos .b-risk {
  min-height: 0;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(9, 33, 44, 0.08);
}

.lp-b #riscos .b-risk::after {
  opacity: 0.07;
  font-size: 2.25rem;
  right: 20px;
  top: 16px;
}

.lp-b #riscos .b-risk-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.lp-b #riscos .b-risk h3 {
  font-size: 1.06rem;
  line-height: 1.28;
}

.lp-b #riscos .b-risk p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.lp-b #riscos .b-risk-close {
  max-width: 820px;
  justify-self: center;
  margin-top: 6px;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
}

.lp-b #riscos .b-cases-heading {
  margin-top: 46px;
  padding: 28px 32px;
  min-height: 0;
  border-radius: 14px;
  box-shadow: none;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.6vw, 3.65rem);
}

.lp-b .b-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.lp-b .b-case,
.lp-b .b-case--featured {
  grid-column: auto;
  grid-row: auto;
  min-height: 220px;
  padding: 20px;
  border-radius: 12px;
}

.lp-b .b-case--featured {
  background:
    linear-gradient(150deg, rgba(151, 146, 125, 0.18), transparent 58%),
    var(--navy);
}

.lp-b .b-case h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.lp-b .b-case p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.lp-b .b-case strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.lp-b #conteudo {
  background:
    radial-gradient(circle at 12% 10%, rgba(151, 146, 125, 0.10), transparent 30%),
    #fbfaf7;
}

.lp-b #conteudo .section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.lp-b #conteudo .section-heading .eyebrow {
  justify-content: center;
}

.lp-b #conteudo .section-heading h2 {
  font-size: clamp(2.45rem, 4.1vw, 4.25rem);
  line-height: 0.98;
}

.lp-b #conteudo .section-heading p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.lp-b #conteudo .b-author-card {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px 34px;
  align-items: start;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 64px rgba(9, 33, 44, 0.10);
}

.lp-b #conteudo .b-author-head {
  display: block;
  min-width: 0;
  padding: 16px;
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(151, 146, 125, 0.16), transparent 56%),
    var(--navy);
  color: #fff;
}

.lp-b #conteudo .b-author-head img {
  width: 100%;
  height: 260px;
  margin: 0 0 16px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.lp-b #conteudo .b-author-head h3 {
  color: #fff;
  font-size: 1.25rem;
}

.lp-b #conteudo .b-author-head .eyebrow {
  color: var(--gold-soft);
}

.lp-b #conteudo .b-author-cred {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.52;
}

.lp-b #conteudo .b-author-letter {
  margin-top: 4px !important;
  line-height: 1.72 !important;
}

.lp-b #conteudo .b-author-letter p {
  max-width: 620px;
}

.lp-b #conteudo .b-author-quote {
  grid-column: 2;
  margin: 0;
  padding: 20px 22px;
  border-radius: 12px;
}

.lp-b #conteudo .b-author-card > p {
  grid-column: 2;
  margin-top: -6px !important;
}

.lp-b .b-metodo-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(151, 146, 125, 0.16), transparent 30%),
    linear-gradient(180deg, #09212c 0%, #0b2a36 100%);
}

.lp-b .b-metodo {
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(460px, 1.14fr);
  gap: 22px 34px;
  align-items: start;
  text-align: left;
}

.lp-b .b-metodo > .eyebrow,
.lp-b .b-metodo > h2,
.lp-b .b-metodo > p {
  grid-column: 1;
  max-width: 510px;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
  text-align: left;
}

.lp-b .b-metodo h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.65rem);
  line-height: 0.98;
}

.lp-b .b-metodo > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.72;
}

.lp-b .b-metodo-steps {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(151, 146, 125, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.20);
}

.lp-b .b-metodo-steps::before {
  display: none;
}

.lp-b .b-metodo-steps li {
  display: grid;
  grid-template-columns: 46px minmax(118px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  align-items: center;
  min-height: 0;
  padding: 16px;
  border-radius: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lp-b .b-metodo-steps li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(151, 146, 125, 0.58);
}

.lp-b .b-metodo-steps li span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.85rem;
}

.lp-b .b-metodo-steps li strong {
  font-size: 0.98rem;
}

.lp-b .b-metodo-steps li em {
  font-size: 0.82rem;
  line-height: 1.42;
}

.lp-b .b-metodo-apply {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-top: 12px;
  padding: 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(151, 146, 125, 0.30);
}

.lp-b .b-metodo-apply h3,
.lp-b .b-metodo-apply p,
.lp-b .b-metodo-apply .b-friction {
  grid-column: 1;
  max-width: 680px;
}

.lp-b .b-metodo-apply .primary-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 300px;
  justify-content: center;
}

@media (min-width: 1500px) {
  .lp-b .hero h1 {
    font-size: clamp(4.45rem, 4.2vw, 5.75rem);
  }
}

@media (max-width: 1040px) {
  .lp-b .hero-content--product,
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    justify-self: start;
  }

  .lp-b .b-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-b .b-metodo-steps {
    grid-column: 1;
    grid-row: auto;
  }

  .lp-b .b-metodo > .eyebrow,
  .lp-b .b-metodo > h2,
  .lp-b .b-metodo > p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
.lp-b .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .lp-b .hero {
    min-height: auto;
  }

  .lp-b .hero-content--product {
    width: 100%;
    padding: 92px 22px 92px;
    gap: 18px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.28rem, 9.2vw, 3.05rem);
    line-height: 1.02;
  }

  .product-showcase {
    width: 100%;
    min-height: 230px;
    filter: drop-shadow(0 18px 34px rgba(9, 33, 44, 0.26));
  }

  .product-book {
    width: 162px;
    min-height: 222px;
    top: 8px;
    padding: 20px 16px;
  }

  .product-book strong {
    font-size: 1.42rem;
  }

  .product-screen {
    width: 184px;
    right: 0;
    bottom: 2px;
    padding: 15px;
  }

  .product-mini {
    padding: 8px 13px;
    font-size: 0.76rem;
  }

  .product-mini--one {
    top: 16px;
    right: 4px;
  }

  .product-mini--two {
    left: 8px;
    bottom: 18px;
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro,
  .lp-b #riscos .b-cases-heading {
    padding: 24px;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .lp-b #riscos .b-risk-grid,
  .lp-b .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b .b-case,
  .lp-b .b-case--featured {
    min-height: 0;
  }

  .lp-b #conteudo .section-heading {
    text-align: left;
  }

  .lp-b #conteudo .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head img {
    height: 300px;
  }

  .lp-b #conteudo .b-author-quote,
  .lp-b #conteudo .b-author-card > p {
    grid-column: 1;
  }

  .lp-b .b-metodo-steps li {
    grid-template-columns: 42px 1fr;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }

  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .lp-b .b-metodo-apply .primary-button {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    width: 100%;
  }
}

/* LP-B final locked polish: typography, scale and interaction overrides */
:root {
  --font-sans: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

.lp-b,
.lp-b body,
.lp-b p,
.lp-b a,
.lp-b button,
.lp-b input,
.lp-b textarea,
.lp-b select,
.lp-b .topbar,
.lp-b .eyebrow,
.lp-b .primary-button,
.lp-b .secondary-button,
.lp-b .b-case,
.lp-b .b-risk-card,
.lp-b .b-author-card,
.lp-b .b-faq,
.lp-b .b-price-card,
.lp-b .b-metodo-steps,
.lp-b .b-metodo-apply,
.lp-b .mobile-buy-bar {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.lp-b h1,
.lp-b h2,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b #riscos .b-cases-heading h2,
.lp-b .b-metodo h2 {
  font-family: var(--font-serif);
  letter-spacing: 0;
}

.lp-b .hero {
  min-height: clamp(620px, 82vh, 760px);
}

.lp-b .hero-content--product {
  width: min(100% - 88px, 1180px);
  padding-top: 92px;
  padding-bottom: 58px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 5vw, 72px);
}

.lp-b .hero-copy,
.lp-b .hero h1 {
  max-width: 610px;
}

.lp-b .hero h1 {
  font-size: clamp(3rem, 3.65vw, 4.25rem);
  line-height: 1.01;
}

.lp-b .hero p {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.lp-b .product-showcase {
  width: min(100%, 440px);
  min-height: 386px;
}

.lp-b .section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.lp-b .section-heading {
  margin-bottom: 28px;
}

.lp-b #riscos {
  padding-top: 72px;
  padding-bottom: 76px;
}

.lp-b #riscos .section-inner {
  width: min(100% - 64px, 1120px);
  gap: 22px;
}

.lp-b #riscos .section-heading,
.lp-b #riscos .b-risk-intro {
  min-height: 300px;
  padding: 34px 38px;
}

.lp-b #riscos .section-heading h2 {
  max-width: 500px;
  font-size: clamp(2.45rem, 3.5vw, 3.8rem);
  line-height: 1.02;
}

.lp-b #riscos .b-risk-intro {
  padding: 34px 42px;
}

.lp-b #riscos .b-cases-heading {
  padding: 36px 44px;
  margin-top: 54px;
  border-radius: 14px;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.6vw, 3.8rem);
  line-height: 1.04;
}

.lp-b .b-cases-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-b .b-case,
.lp-b .b-case--featured {
  min-height: 235px;
  padding: 22px 24px;
  border-radius: 10px;
}

.lp-b .b-case h3 {
  font-family: var(--font-sans);
  font-size: 1.04rem;
  line-height: 1.18;
  font-weight: 800;
}

.lp-b .b-case p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 400;
}

.lp-b .b-case strong {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 800;
}

.lp-b #conteudo .section-inner {
  width: min(100% - 64px, 980px);
}

.lp-b #conteudo .section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.lp-b #conteudo .section-heading h2 {
  font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.lp-b #conteudo .b-author-card {
  padding: 22px;
  border-radius: 14px;
}

.lp-b #conteudo .b-author-head {
  align-items: flex-start;
  gap: 22px;
}

.lp-b #conteudo .b-author-head img {
  width: 150px;
  height: 190px;
  border-radius: 10px;
  object-fit: cover;
}

.lp-b #conteudo .b-author-quote {
  margin-top: 20px;
  max-width: 620px;
}

.lp-b .b-metodo-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.lp-b .b-metodo {
  width: min(100% - 72px, 1080px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.lp-b .b-metodo h2 {
  max-width: 520px;
  font-size: clamp(2.7rem, 3.8vw, 4.1rem);
  line-height: 1.02;
}

.lp-b .b-metodo > p {
  max-width: 500px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.65;
}

.lp-b .b-metodo-steps {
  gap: 9px;
}

.lp-b .b-metodo-steps li {
  padding: 14px 16px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lp-b .b-metodo-steps li:hover,
.lp-b .b-metodo-steps li.is-active {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(151, 146, 125, 0.62);
}

.lp-b .b-metodo-steps li span {
  width: 34px;
  height: 34px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 900;
}

.lp-b .b-metodo-steps li strong {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
}

.lp-b .b-metodo-steps li em {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.35;
  transition: max-height 180ms ease, opacity 180ms ease;
}

.lp-b .b-metodo-steps li.is-active em {
  max-height: 80px;
  opacity: 1;
}

@media (max-width: 1040px) {
  .lp-b .hero-content--product,
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    width: min(100% - 48px, 960px);
    grid-template-columns: 1fr;
  }

  .lp-b .b-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 190px 1fr;
  }
}

@media (max-width: 760px) {
.lp-b .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .lp-b .hero {
    min-height: auto;
  }

  .lp-b .hero-content--product {
    width: 100%;
    padding: 88px 22px 92px;
    gap: 18px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.28rem, 9.2vw, 3.05rem);
    line-height: 1.02;
  }

  .lp-b .product-showcase {
    width: 100%;
    min-height: 230px;
  }

  .lp-b #riscos .section-inner,
  .lp-b #conteudo .section-inner,
  .lp-b .b-metodo {
    width: min(100% - 32px, 980px);
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro {
    min-height: 0;
    padding: 24px;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .lp-b .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head img {
    width: 100%;
    height: 300px;
  }

  .lp-b .b-metodo-steps li,
  .lp-b .b-metodo-steps li.is-active {
    transform: none;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }
}

/* LP-B final font + scale pass */
:root {
  --font-sans: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

body,
button,
input,
textarea,
select,
.lp-b,
.lp-b .topbar,
.lp-b .eyebrow,
.lp-b .primary-button,
.lp-b .ghost-button,
.lp-b .topbar-cta,
.lp-b .whatsapp-link,
.lp-b .b-case h3,
.lp-b .b-case p,
.lp-b .b-case strong,
.lp-b .b-risk h3,
.lp-b .b-risk p,
.lp-b .b-stack-list,
.lp-b .b-price-card,
.lp-b .b-author-card,
.lp-b .b-metodo-steps,
.lp-b .b-faq,
.lp-b .b-footer {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.lp-b h1,
.lp-b h2,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b .b-metodo h2 {
  font-family: var(--font-serif);
  letter-spacing: 0;
}

.lp-b .section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.lp-b .section-heading {
  margin-bottom: 28px;
}

.lp-b .hero {
  min-height: clamp(620px, 82vh, 760px);
}

.lp-b .hero-content--product {
  width: min(100% - 88px, 1180px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-top: 92px;
  padding-bottom: 58px;
}

.lp-b .hero-copy {
  max-width: 610px;
}

.lp-b .hero h1 {
  max-width: 610px;
  font-size: clamp(3rem, 3.65vw, 4.25rem);
  line-height: 1.01;
}

.lp-b .hero p {
  max-width: 560px;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.58;
}

.product-showcase {
  width: min(100%, 420px);
  min-height: 372px;
  justify-self: end;
}

.product-book {
  width: 210px;
  min-height: 292px;
  top: 38px;
}

.product-screen {
  width: 250px;
  bottom: 34px;
}

.product-mini {
  font-family: var(--font-sans);
  font-weight: 800;
}

.product-mini--one {
  top: 72px;
  right: 12px;
}

.product-mini--two {
  left: 34px;
  bottom: 58px;
}

.lp-b #riscos {
  padding-top: 72px;
  padding-bottom: 76px;
}

.lp-b #riscos .section-inner {
  width: min(100% - 64px, 1120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 22px;
}

.lp-b #riscos .section-heading {
  min-height: 300px;
  padding: 34px 38px;
}

.lp-b #riscos .section-heading h2 {
  max-width: 500px;
  font-size: clamp(2.45rem, 3.5vw, 3.8rem);
  line-height: 1.02;
}

.lp-b #riscos .section-heading p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
}

.lp-b #riscos .b-risk-intro {
  min-height: 300px;
  padding: 34px 42px;
  font-family: var(--font-sans);
  font-size: 1.04rem;
  line-height: 1.62;
}

.lp-b #riscos .b-risk-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lp-b #riscos .b-risk {
  padding: 20px 22px;
  border-radius: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lp-b #riscos .b-risk:hover {
  transform: translateY(-4px);
  border-color: rgba(151, 146, 125, 0.48);
  box-shadow: 0 24px 48px rgba(9, 33, 44, 0.12);
}

.lp-b #riscos .b-risk h3 {
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 800;
}

.lp-b #riscos .b-risk p {
  font-size: 0.9rem;
  line-height: 1.48;
}

.lp-b #riscos .b-cases-heading {
  padding: 32px 40px;
  margin-top: 48px;
  border-radius: 14px;
}

.lp-b #riscos .b-cases-heading .eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.045em;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.45vw, 3.7rem);
  line-height: 1.04;
}

.lp-b .b-cases-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.lp-b .b-case,
.lp-b .b-case--featured {
  min-height: 260px;
  padding: 26px 28px;
  border-radius: 12px;
}

.lp-b .b-case h3 {
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 800;
}

.lp-b .b-case p {
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 400;
}

.lp-b .b-case strong {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
}

.lp-b #conteudo .section-inner {
  width: min(100% - 64px, 980px);
}

.lp-b #conteudo .section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.lp-b #conteudo .section-heading h2 {
  font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.lp-b #conteudo .b-author-card {
  width: 100%;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 26px;
  padding: 22px;
  border-radius: 14px;
}

.lp-b #conteudo .b-author-head {
  padding: 14px;
}

.lp-b #conteudo .b-author-head img {
  height: 300px;
}

.lp-b #conteudo .b-author-head h3 {
  font-family: var(--font-sans);
  font-size: 1.16rem;
  line-height: 1.1;
  font-weight: 900;
}

.lp-b #conteudo .b-author-cred {
  font-size: 0.83rem;
  line-height: 1.46;
}

.lp-b #conteudo .b-author-letter {
  align-self: start;
  line-height: 1.6 !important;
}

.lp-b #conteudo .b-author-letter p {
  max-width: 600px;
  font-size: 0.98rem;
}

.lp-b #conteudo .b-author-quote {
  max-width: 600px;
  margin-top: 8px;
}

.lp-b .b-metodo-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.lp-b .b-metodo {
  width: min(100% - 72px, 1080px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.lp-b .b-metodo h2 {
  max-width: 520px;
  font-size: clamp(2.7rem, 3.8vw, 4.1rem);
  line-height: 1.02;
}

.lp-b .b-metodo > p {
  max-width: 500px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.65;
}

.lp-b .b-metodo-steps {
  gap: 9px;
  padding: 10px;
}

.lp-b .b-metodo-steps li {
  cursor: pointer;
  grid-template-columns: 40px minmax(126px, 0.72fr) minmax(0, 1.28fr);
  padding: 14px 16px;
  opacity: 0.74;
}

.lp-b .b-metodo-steps li.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(151, 146, 125, 0.78);
  box-shadow: inset 3px 0 0 var(--gold-soft);
}

.lp-b .b-metodo-steps li:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.lp-b .b-metodo-steps li span {
  width: 34px;
  height: 34px;
  font-size: 0.78rem;
}

.lp-b .b-metodo-steps li strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.lp-b .b-metodo-steps li em {
  font-size: 0.78rem;
  line-height: 1.38;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 180ms ease, max-height 180ms ease;
}

.lp-b .b-metodo-steps li.is-active em {
  opacity: 1;
  max-height: 80px;
}

.lp-b .b-metodo-apply {
  padding: 24px;
}

.lp-b .b-metodo-apply h3 {
  font-family: var(--font-sans);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .lp-b .hero-content--product,
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    width: min(100% - 44px, 1120px);
    grid-template-columns: 1fr;
  }

  .product-showcase {
    justify-self: start;
  }

  .lp-b .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
  }

  .lp-b .b-metodo-steps {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
.lp-b .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lp-b .hero-content--product {
    width: 100%;
    padding: 92px 22px 88px;
    grid-template-columns: 1fr !important;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.18rem, 8.8vw, 2.85rem);
    line-height: 1.03;
  }

  .lp-b .hero p {
    font-size: 0.98rem;
  }

  .product-showcase {
    width: 100%;
    min-height: 218px;
  }

  .product-book {
    width: 150px;
    min-height: 208px;
  }

  .product-screen {
    width: 178px;
  }

  .product-mini {
    font-size: 0.72rem;
  }

  .lp-b #riscos .section-inner,
  .lp-b .b-metodo,
  .lp-b #conteudo .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro {
    min-height: 0;
    padding: 22px;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }

  .lp-b #riscos .b-risk-grid {
    grid-template-columns: 1fr;
  }

  .lp-b #riscos .b-cases-heading {
    padding: 24px;
  }

  .lp-b .b-case,
  .lp-b .b-case--featured {
    min-height: 0;
    padding: 22px;
  }

  .lp-b #conteudo .b-author-card {
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head img {
    height: 260px;
  }

  .lp-b .b-metodo-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lp-b .b-metodo-steps li,
  .lp-b .b-metodo-steps li.is-active {
    opacity: 1;
  }

  .lp-b .b-metodo-steps li {
    grid-template-columns: 38px 1fr;
    padding: 13px;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }

  .lp-b .b-metodo-steps li.is-active em {
    max-height: 110px;
  }

  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
  }

  .lp-b .b-metodo-apply .primary-button {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    width: 100%;
  }
}

/* â”€â”€ LP-b rev. 3: acabamento mais coeso e menos espalhado â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-b #riscos {
  background:
    linear-gradient(180deg, #f7f6f2 0%, #ffffff 58%, #f6f4ef 100%);
}
.lp-b #riscos .section-inner {
  display: block;
  width: min(1120px, 100%);
}
.lp-b #riscos .section-heading {
  max-width: 780px;
  margin: 0 0 22px;
}
.lp-b #riscos .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 1.02;
}
.lp-b #riscos .section-heading p {
  max-width: 620px;
  margin-top: 14px;
}
.lp-b #riscos .b-risk-intro {
  display: block;
  max-width: none;
  min-height: 0;
  margin: 0 0 24px;
  padding: 24px 28px;
  border: 1px solid rgba(151, 146, 125, 0.22);
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(9, 33, 44, 0.06);
}
.lp-b #riscos .b-risk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lp-b #riscos .b-risk {
  min-height: 230px;
  border-radius: 12px;
  border-color: rgba(9, 33, 44, 0.1);
  background: #fff;
  box-shadow: 0 16px 36px rgba(9, 33, 44, 0.075);
}
.lp-b #riscos .b-risk::before {
  top: 18px;
  right: 20px;
  font-size: 2rem;
}
.lp-b #riscos .b-risk::after {
  height: 3px;
}
.lp-b #riscos .b-risk-icon {
  border-radius: 10px;
  background: rgba(151, 146, 125, 0.11);
}
.lp-b #riscos .b-risk h3 {
  max-width: 100%;
}
.lp-b #riscos .b-risk-close {
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(151, 146, 125, 0.34);
  background: #fff;
  box-shadow: 0 12px 30px rgba(9, 33, 44, 0.045);
}
.lp-b #riscos .b-cases-heading {
  display: block;
  margin-top: 44px;
  padding-top: 34px;
}
.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
}

.lp-b .b-metodo-section {
  background:
    linear-gradient(135deg, rgba(151, 146, 125, 0.16), transparent 34%),
    radial-gradient(circle at 92% 6%, rgba(151, 146, 125, 0.18), transparent 34%),
    var(--navy);
}
.lp-b .b-metodo-section::before,
.lp-b .b-metodo-section::after {
  display: none;
}
.lp-b .b-metodo {
  display: block;
  width: min(1040px, 100%);
  max-width: 1040px;
}
.lp-b .b-metodo .eyebrow {
  justify-content: flex-start;
}
.lp-b .b-metodo h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.3vw, 4.6rem);
  line-height: 1.02;
}
.lp-b .b-metodo > p {
  max-width: 760px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
}
.lp-b .b-metodo > p + p {
  margin-top: 0;
}
.lp-b .b-metodo-steps {
  position: relative;
  margin: 34px 0 26px;
  gap: 14px;
}
.lp-b .b-metodo-steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 34px;
  height: 1px;
  background: rgba(151, 146, 125, 0.38);
}
.lp-b .b-metodo-steps li {
  position: relative;
  z-index: 1;
  min-height: 150px;
  border-radius: 10px;
  border-color: rgba(151, 146, 125, 0.46);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}
.lp-b .b-metodo-steps li span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0;
}
.lp-b .b-metodo-steps li strong {
  margin-top: 4px;
}
.lp-b .b-metodo-apply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px 34px;
  padding: 30px;
  border-radius: 12px;
  border-color: rgba(151, 146, 125, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}
.lp-b .b-metodo-apply h3 {
  grid-column: 1 / -1;
  max-width: 780px;
  font-size: 1.35rem;
}
.lp-b .b-metodo-apply p {
  max-width: 680px;
}
.lp-b .b-metodo-apply .primary-button {
  align-self: center;
  justify-self: stretch;
  width: 100%;
}
.lp-b .b-metodo-apply .b-friction {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .lp-b #riscos .b-risk-grid {
    grid-template-columns: 1fr;
  }
  .lp-b .b-metodo-steps {
    grid-template-columns: 1fr;
  }
  .lp-b .b-metodo-steps::before {
    display: none;
  }
  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ LP-b rev. 4: bloco de risco com identidade da marca â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lp-b #riscos .section-inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px 30px;
  align-items: stretch;
}
.lp-b #riscos .section-heading {
  grid-column: 1;
  max-width: none;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(151, 146, 125, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(151, 146, 125, 0.18), transparent 48%),
    var(--navy);
  box-shadow: 0 22px 50px rgba(9, 33, 44, 0.16);
}
.lp-b #riscos .section-heading .eyebrow {
  color: var(--gold-soft);
}
.lp-b #riscos .section-heading h2 {
  color: #fff;
  max-width: 560px;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
}
.lp-b #riscos .section-heading p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
}
.lp-b #riscos .b-risk-intro {
  grid-column: 2;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 34px;
  border-left: 0;
  border-radius: 14px;
  background: #fff;
}
.lp-b #riscos .b-risk-grid,
.lp-b #riscos .b-risk-close,
.lp-b #riscos .b-cases-heading,
.lp-b #riscos .b-cases-grid,
.lp-b #riscos .b-cases-note {
  grid-column: 1 / -1;
}
.lp-b #riscos .b-risk-grid {
  margin-top: 6px;
}
.lp-b #riscos .b-risk-close {
  background: var(--navy);
  color: #fff;
  border-color: rgba(151, 146, 125, 0.42);
}
.lp-b #riscos .b-risk-close strong {
  color: var(--gold-soft);
}

@media (max-width: 980px) {
  .lp-b #riscos .section-inner {
    grid-template-columns: 1fr;
  }
  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro {
    grid-column: 1;
  }
}

/* LP-b actual final visual polish: sem alterar texto ou HTML */
.lp-b .section-inner {
  width: min(100% - 44px, 1160px);
}

.lp-b .hero {
  min-height: 700px;
}

.lp-b .hero-content--product {
  width: min(100% - 72px, 1200px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.68fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 52px;
}

.lp-b .hero-copy {
  max-width: 680px;
}

.lp-b .hero h1 {
  max-width: 700px;
  font-size: clamp(3.1rem, 4.35vw, 5rem);
  line-height: 0.98;
}

.lp-b .hero p {
  max-width: 650px;
  font-size: clamp(1rem, 1.04vw, 1.1rem);
  line-height: 1.55;
}

.product-showcase {
  justify-self: end;
  width: min(100%, 398px);
  min-height: 364px;
  transform: none;
  filter: drop-shadow(0 24px 48px rgba(9, 33, 44, 0.34));
}

.product-book {
  left: 0;
  top: 28px;
  width: 210px;
  min-height: 300px;
  border-radius: 18px;
  box-shadow: inset 10px 0 0 rgba(151, 146, 125, 0.72), 0 22px 42px rgba(9, 33, 44, 0.30);
}

.product-book strong {
  font-size: clamp(1.68rem, 2vw, 2.18rem);
}

.product-screen {
  right: 0;
  bottom: 30px;
  width: 248px;
  border-radius: 18px;
}

.product-mini {
  height: auto;
  min-height: 0;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0;
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 26px rgba(9, 33, 44, 0.18);
}

.product-mini--one {
  top: 62px;
  right: 8px;
}

.product-mini--two {
  left: 34px;
  bottom: 54px;
}

.lp-b #riscos {
  background: linear-gradient(180deg, #f8f7f3 0%, #fff 48%, #f5f3ee 100%);
}

.lp-b #riscos .section-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(420px, 1.14fr);
  gap: 18px 24px;
  align-items: stretch;
}

.lp-b #riscos .section-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: clamp(26px, 3.2vw, 38px);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 48%), var(--navy);
  box-shadow: 0 22px 48px rgba(9, 33, 44, 0.13);
}

.lp-b #riscos .section-heading h2 {
  max-width: 470px;
  color: #fff;
  font-size: clamp(2.2rem, 3.45vw, 3.55rem);
  line-height: 0.98;
}

.lp-b #riscos .section-heading p {
  max-width: 430px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.lp-b #riscos .b-risk-intro {
  min-height: 0;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgba(9, 33, 44, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(9, 33, 44, 0.08);
  font-size: clamp(1.02rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

.lp-b #riscos .b-risk-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.lp-b #riscos .b-risk {
  min-height: 0;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(9, 33, 44, 0.08);
}

.lp-b #riscos .b-risk::after {
  opacity: 0.07;
  font-size: 2.25rem;
  right: 20px;
  top: 16px;
}

.lp-b #riscos .b-risk-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.lp-b #riscos .b-risk h3 {
  font-size: 1.06rem;
  line-height: 1.28;
}

.lp-b #riscos .b-risk p {
  font-size: 0.96rem;
  line-height: 1.62;
}

.lp-b #riscos .b-risk-close {
  grid-column: 1 / -1;
  max-width: 820px;
  justify-self: center;
  margin-top: 6px;
  padding: 18px 24px;
  border-radius: 12px;
  text-align: center;
}

.lp-b #riscos .b-cases-heading {
  grid-column: 1 / -1;
  margin-top: 46px;
  padding: 28px 32px;
  min-height: 0;
  border-radius: 14px;
  box-shadow: none;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.45vw, 3.55rem);
}

.lp-b .b-cases-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.lp-b .b-case,
.lp-b .b-case--featured {
  grid-column: auto;
  grid-row: auto;
  min-height: 220px;
  padding: 20px;
  border-radius: 12px;
}

.lp-b .b-case--featured {
  background: linear-gradient(150deg, rgba(151, 146, 125, 0.18), transparent 58%), var(--navy);
}

.lp-b .b-case h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.lp-b .b-case p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.lp-b .b-case strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.lp-b #conteudo {
  background: radial-gradient(circle at 12% 10%, rgba(151, 146, 125, 0.10), transparent 30%), #fbfaf7;
}

.lp-b #conteudo .section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.lp-b #conteudo .section-heading .eyebrow {
  justify-content: center;
}

.lp-b #conteudo .section-heading h2 {
  font-size: clamp(2.45rem, 4vw, 4.1rem);
  line-height: 0.98;
}

.lp-b #conteudo .section-heading p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.lp-b #conteudo .b-author-card {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px 34px;
  align-items: start;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 64px rgba(9, 33, 44, 0.10);
}

.lp-b #conteudo .b-author-head {
  display: block;
  min-width: 0;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(151, 146, 125, 0.16), transparent 56%), var(--navy);
  color: #fff;
}

.lp-b #conteudo .b-author-head img {
  width: 100%;
  height: 260px;
  margin: 0 0 16px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.lp-b #conteudo .b-author-head h3 {
  color: #fff;
  font-size: 1.25rem;
}

.lp-b #conteudo .b-author-head .eyebrow {
  color: var(--gold-soft);
}

.lp-b #conteudo .b-author-cred {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.52;
}

.lp-b #conteudo .b-author-letter {
  margin-top: 4px !important;
  line-height: 1.72 !important;
}

.lp-b #conteudo .b-author-letter p {
  max-width: 620px;
}

.lp-b #conteudo .b-author-quote {
  grid-column: 2;
  margin: 0;
  padding: 20px 22px;
  border-radius: 12px;
}

.lp-b #conteudo .b-author-card > p {
  grid-column: 2;
  margin-top: -6px !important;
}

.lp-b .b-metodo-section {
  padding: clamp(70px, 7vw, 96px) 0;
  background: radial-gradient(circle at 12% 10%, rgba(151, 146, 125, 0.16), transparent 30%), linear-gradient(180deg, #09212c 0%, #0b2a36 100%);
}

.lp-b .b-metodo {
  max-width: 1120px;
  display: grid !important;
  grid-template-columns: minmax(300px, 0.86fr) minmax(460px, 1.14fr);
  gap: 22px 34px;
  align-items: start;
  text-align: left;
}

.lp-b .b-metodo > .eyebrow,
.lp-b .b-metodo > h2,
.lp-b .b-metodo > p {
  grid-column: 1;
  max-width: 510px;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
  text-align: left;
}

.lp-b .b-metodo h2 {
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  line-height: 0.98;
}

.lp-b .b-metodo > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.72;
}

.lp-b .b-metodo-steps {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(151, 146, 125, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.20);
}

.lp-b .b-metodo-steps::before {
  display: none;
}

.lp-b .b-metodo-steps li {
  display: grid;
  grid-template-columns: 46px minmax(118px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  align-items: center;
  min-height: 0;
  padding: 16px;
  border-radius: 12px;
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lp-b .b-metodo-steps li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(151, 146, 125, 0.58);
}

.lp-b .b-metodo-steps li span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.85rem;
}

.lp-b .b-metodo-steps li strong {
  font-size: 0.98rem;
}

.lp-b .b-metodo-steps li em {
  font-size: 0.82rem;
  line-height: 1.42;
}

.lp-b .b-metodo-apply {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  margin-top: 12px;
  padding: 26px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(151, 146, 125, 0.30);
}

.lp-b .b-metodo-apply h3,
.lp-b .b-metodo-apply p,
.lp-b .b-metodo-apply .b-friction {
  grid-column: 1;
  max-width: 680px;
}

.lp-b .b-metodo-apply .primary-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 300px;
  justify-content: center;
}

@media (max-width: 1040px) {
  .lp-b .hero-content--product,
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    grid-template-columns: 1fr;
  }

  .product-showcase {
    justify-self: start;
  }

  .lp-b .b-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-b .b-metodo-steps {
    grid-column: 1;
    grid-row: auto;
  }

  .lp-b .b-metodo > .eyebrow,
  .lp-b .b-metodo > h2,
  .lp-b .b-metodo > p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
.lp-b .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .lp-b .hero {
    min-height: auto;
  }

  .lp-b .hero-content--product {
    width: 100%;
    grid-template-columns: 1fr !important;
    padding: 92px 22px 92px;
    gap: 18px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.28rem, 9.2vw, 3.05rem);
    line-height: 1.02;
  }

  .lp-b .hero-actions {
    display: none;
  }

  .product-showcase {
    width: 100%;
    min-height: 230px;
    filter: drop-shadow(0 18px 34px rgba(9, 33, 44, 0.26));
  }

  .product-book {
    width: 162px;
    min-height: 222px;
    top: 8px;
    padding: 20px 16px;
  }

  .product-book strong {
    font-size: 1.42rem;
  }

  .product-screen {
    width: 184px;
    right: 0;
    bottom: 2px;
    padding: 15px;
  }

  .product-mini {
    padding: 8px 13px;
    font-size: 0.76rem;
  }

  .product-mini--one {
    top: 16px;
    right: 4px;
  }

  .product-mini--two {
    left: 8px;
    bottom: 18px;
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro,
  .lp-b #riscos .b-cases-heading {
    padding: 24px;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .lp-b #riscos .b-risk-grid,
  .lp-b .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b .b-case,
  .lp-b .b-case--featured {
    min-height: 0;
  }

  .lp-b #conteudo .section-heading {
    text-align: left;
  }

  .lp-b #conteudo .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head img {
    height: 300px;
  }

  .lp-b #conteudo .b-author-quote,
  .lp-b #conteudo .b-author-card > p {
    grid-column: 1;
  }

  .lp-b .b-metodo-steps li {
    grid-template-columns: 42px 1fr;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }

  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .lp-b .b-metodo-apply .primary-button {
    grid-column: 1;
    grid-row: auto;
    min-width: 0;
    width: 100%;
  }
}

/* LP-B hard final override: keep this block at EOF */
.lp-b,
.lp-b body,
.lp-b p,
.lp-b a,
.lp-b button,
.lp-b input,
.lp-b textarea,
.lp-b select,
.lp-b .topbar,
.lp-b .eyebrow,
.lp-b .primary-button,
.lp-b .secondary-button,
.lp-b .b-case,
.lp-b .b-risk-card,
.lp-b .b-author-card,
.lp-b .b-faq,
.lp-b .b-price-card,
.lp-b .b-metodo-steps,
.lp-b .b-metodo-apply,
.lp-b .mobile-buy-bar {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.lp-b h1,
.lp-b h2,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b #riscos .b-cases-heading h2,
.lp-b .b-metodo h2 {
  font-family: var(--font-serif);
  letter-spacing: 0;
}

.lp-b .hero {
  min-height: clamp(620px, 82vh, 760px);
}

.lp-b .hero-content--product {
  width: min(100% - 88px, 1180px);
  padding-top: 92px;
  padding-bottom: 58px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: clamp(34px, 5vw, 72px);
}

.lp-b .hero-copy,
.lp-b .hero h1 {
  max-width: 610px;
}

.lp-b .hero h1 {
  font-size: clamp(3rem, 3.65vw, 4.25rem);
  line-height: 1.01;
}

.lp-b .hero p {
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.lp-b .product-showcase {
  width: min(100%, 440px);
  min-height: 386px;
}

.lp-b #riscos .section-inner {
  width: min(100% - 64px, 1120px);
  gap: 22px;
}

.lp-b #riscos .section-heading,
.lp-b #riscos .b-risk-intro {
  min-height: 300px;
  padding: 34px 38px;
}

.lp-b #riscos .section-heading h2 {
  max-width: 500px;
  font-size: clamp(2.45rem, 3.5vw, 3.8rem);
  line-height: 1.02;
}

.lp-b #riscos .b-cases-heading {
  padding: 36px 44px;
  margin-top: 54px;
  border-radius: 14px;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.6vw, 3.8rem);
  line-height: 1.04;
}

.lp-b #riscos .b-cases-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-b #riscos .b-case,
.lp-b #riscos .b-case--featured {
  min-height: 235px;
  padding: 22px 24px;
  border-radius: 10px;
}

.lp-b #conteudo .section-inner {
  width: min(100% - 64px, 980px);
}

.lp-b #conteudo .section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.lp-b #conteudo .section-heading h2 {
  font-size: clamp(2.15rem, 3vw, 3.2rem);
}

.lp-b #conteudo .b-author-card {
  padding: 22px;
  border-radius: 14px;
}

.lp-b #conteudo .b-author-head {
  align-items: flex-start;
  gap: 22px;
}

.lp-b #conteudo .b-author-head img {
  width: 150px;
  height: 190px;
  border-radius: 10px;
  object-fit: cover;
}

.lp-b #conteudo .b-author-quote {
  margin-top: 20px;
  max-width: 620px;
}

.lp-b .b-metodo-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.lp-b .b-metodo {
  width: min(100% - 72px, 1080px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.lp-b .b-metodo h2 {
  max-width: 520px;
  font-size: clamp(2.7rem, 3.8vw, 4.1rem);
  line-height: 1.02;
}

.lp-b .b-metodo > p {
  max-width: 500px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.65;
}

.lp-b .b-metodo-steps li {
  padding: 14px 16px;
  cursor: pointer;
}

.lp-b .b-metodo-steps li:hover,
.lp-b .b-metodo-steps li.is-active {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(151, 146, 125, 0.62);
}

.lp-b .b-metodo-steps li em {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.35;
  transition: max-height 180ms ease, opacity 180ms ease;
}

.lp-b .b-metodo-steps li.is-active em {
  max-height: 80px;
  opacity: 1;
}

@media (max-width: 1040px) {
  .lp-b .hero-content--product,
  .lp-b #riscos .section-inner,
  .lp-b .b-metodo {
    width: min(100% - 48px, 960px);
    grid-template-columns: 1fr;
  }

  .lp-b #riscos .b-cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
.lp-b .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .lp-b .hero {
    min-height: auto;
  }

  .lp-b .hero-content--product {
    width: 100%;
    padding: 88px 22px 92px;
    gap: 18px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.28rem, 9.2vw, 3.05rem);
    line-height: 1.02;
  }

  .lp-b .product-showcase {
    width: 100%;
    min-height: 230px;
  }

  .lp-b #riscos .section-inner,
  .lp-b #conteudo .section-inner,
  .lp-b .b-metodo {
    width: min(100% - 32px, 980px);
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro {
    min-height: 0;
    padding: 24px;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .lp-b #riscos .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head img {
    width: 100%;
    height: 300px;
  }

  .lp-b .b-metodo-steps li,
  .lp-b .b-metodo-steps li.is-active {
    transform: none;
  }
}

/* LP-B mobile hero compact lock */
@media (max-width: 760px) {
.lp-b .hero-content--product {
    padding: 76px 20px 72px;
    gap: 14px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.08rem, 8.4vw, 2.72rem);
    line-height: 1.02;
  }

  .lp-b .hero p {
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .lp-b .product-showcase {
    min-height: 212px;
  }
}

/* ============================================================
   LP-B Â· AJUSTE FINAL CIRÃšRGICO
   Fonte pequena, riscos, casos, oferta, autora e mÃ©todo.
   NÃ£o altera copy.
   ============================================================ */

:root {
  --font-sans: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

.lp-b {
  --final-shell: min(100% - clamp(44px, 7vw, 96px), 1040px);
  --final-shell-wide: min(100% - clamp(44px, 7vw, 112px), 1120px);
  --final-radius: 14px;
  --final-shadow: 0 18px 42px rgba(9, 33, 44, 0.09);
}

/* Tipografia pequena mais bonita e consistente */
.lp-b,
.lp-b p,
.lp-b a,
.lp-b li,
.lp-b span,
.lp-b strong,
.lp-b em,
.lp-b summary,
.lp-b button,
.lp-b input,
.lp-b .eyebrow,
.lp-b .primary-button,
.lp-b .ghost-button,
.lp-b .topbar,
.lp-b .b-case,
.lp-b .b-risk,
.lp-b .b-stack,
.lp-b .b-price-card,
.lp-b .b-author-card,
.lp-b .b-metodo,
.lp-b .b-faq {
  font-family: var(--font-sans) !important;
  letter-spacing: 0;
}

.lp-b h1,
.lp-b h2,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b .b-price-now strong,
.lp-b .b-author-quote {
  font-family: var(--font-serif) !important;
  letter-spacing: 0;
}

/* RÃ©gua geral */
.lp-b .section {
  padding: 68px 0;
}

.lp-b .section-inner {
  width: var(--final-shell);
  margin-inline: auto;
}

.lp-b .section-heading {
  margin-bottom: 28px;
}

.lp-b .eyebrow {
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.035em;
}

/* ============================================================
   HERO Â· aumentar legibilidade do texto pequeno
   ============================================================ */

.lp-b .hero {
  min-height: clamp(620px, 78vh, 760px);
}

.lp-b .hero-content--clean {
  width: var(--final-shell-wide);
  margin-inline: auto;
  display: block !important;
  padding: 104px 0 74px;
}

.lp-b .hero-copy {
  max-width: 700px;
}

.lp-b .hero h1 {
  max-width: 690px;
  font-size: clamp(3.15rem, 4vw, 4.7rem);
  line-height: 0.99;
}

.lp-b .hero p {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.05vw, 1.18rem) !important;
  line-height: 1.66 !important;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

/* ============================================================
   PERIGO INVISÃVEL Â· quadro menor e texto direito maior
   ============================================================ */

.lp-b #riscos {
  padding-top: 64px;
  padding-bottom: 68px;
}

.lp-b #riscos .section-inner {
  width: var(--final-shell);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px 24px;
  align-items: stretch;
}

.lp-b #riscos .section-heading,
.lp-b #riscos .b-risk-intro {
  min-height: 250px;
  border-radius: var(--final-radius);
}

.lp-b #riscos .section-heading {
  padding: 28px 30px;
}

.lp-b #riscos .section-heading h2 {
  max-width: 430px;
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.lp-b #riscos .section-heading p {
  max-width: 430px;
  font-size: 0.98rem;
  line-height: 1.48;
}

.lp-b #riscos .b-risk-intro {
  display: flex;
  align-items: center;
  padding: 32px 38px;
  color: var(--navy);
  font-size: 1.12rem !important;
  line-height: 1.68 !important;
}

.lp-b #riscos .b-risk-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.lp-b #riscos .b-risk {
  min-height: 188px;
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--final-shadow);
}

.lp-b #riscos .b-risk-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.lp-b #riscos .b-risk h3 {
  font-size: 1.02rem;
  line-height: 1.18;
  font-weight: 850;
}

.lp-b #riscos .b-risk p {
  font-size: 0.98rem;
  line-height: 1.54;
}

.lp-b #riscos .b-risk-close {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  margin: 4px auto 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  text-align: center;
}

/* ============================================================
   CASOS PÃšBLICOS Â· faixa menor e cards proporcionais
   ============================================================ */

.lp-b #riscos .b-cases-heading {
  grid-column: 1 / -1;
  max-width: none;
  margin: 46px 0 0;
  padding: 30px 42px;
  border-radius: var(--final-radius);
}

.lp-b #riscos .b-cases-heading .eyebrow {
  display: block;
  text-align: right;
  font-size: 0.68rem;
}

.lp-b #riscos .b-cases-heading h2 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 2.75vw, 3.05rem);
  line-height: 1.04;
  text-align: center;
}

.lp-b #riscos .b-cases-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-b #riscos .b-case,
.lp-b #riscos .b-case--featured {
  min-height: 176px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 9px;
  padding: 22px 24px;
  border-radius: 11px;
  box-shadow: var(--final-shadow);
}

.lp-b #riscos .b-case h3 {
  font-size: 1.02rem;
  line-height: 1.18;
  font-weight: 850;
}

.lp-b #riscos .b-case p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.lp-b #riscos .b-case strong {
  font-size: 0.94rem;
  line-height: 1.32;
  font-weight: 850;
}

.lp-b #riscos .b-cases-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 0.82rem;
}

/* ============================================================
   OFERTA Â· preview embaixo do preÃ§o
   ============================================================ */

.lp-b .b-offer-section {
  padding-top: 68px;
  padding-bottom: 70px;
}

.lp-b .b-offer-section .section-inner {
  width: var(--final-shell-wide);
}

.lp-b .b-offer-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.lp-b .b-offer-heading h2 {
  font-size: clamp(2.25rem, 2.8vw, 3.2rem);
  line-height: 1.04;
}

.lp-b .b-offer-heading p {
  max-width: 700px;
  font-size: 1.04rem;
  line-height: 1.58;
}

.lp-b .b-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 350px);
  gap: 24px;
  align-items: start;
}

.lp-b .b-offer-side {
  display: grid;
  gap: 16px;
}

.lp-b .b-stack {
  padding: 24px 26px;
  border-radius: var(--final-radius);
  box-shadow: var(--final-shadow);
}

.lp-b .b-stack-list {
  gap: 12px;
}

.lp-b .b-stack-list li {
  padding-bottom: 12px;
  gap: 12px;
}

.lp-b .b-stack-list strong {
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 850;
}

.lp-b .b-stack-list span {
  font-size: 0.93rem;
  line-height: 1.45;
}

.lp-b .b-price-card {
  position: static !important;
  width: 100%;
  padding: 26px 24px;
  border-radius: var(--final-radius);
  box-shadow: 0 20px 48px rgba(9, 33, 44, 0.16);
}

.lp-b .b-price-now strong {
  font-size: 3.25rem;
}

/* Preview compacto abaixo do preÃ§o */
.lp-b .product-showcase--offer {
  position: relative !important;
  top: auto !important;
  width: 100%;
  min-height: 245px;
  border-radius: var(--final-radius);
  background:
    radial-gradient(circle at 18% 6%, rgba(217, 212, 195, 0.18), transparent 40%),
    linear-gradient(180deg, #102b36 0%, #09212C 100%);
  overflow: hidden;
  box-shadow: var(--final-shadow);
  filter: none !important;
}

.lp-b .product-showcase--offer .product-book {
  left: 24px;
  top: 28px;
  width: 130px;
  min-height: 180px;
  padding: 20px 16px;
  border-radius: 14px;
}

.lp-b .product-showcase--offer .product-book span {
  font-size: 0.68rem;
  line-height: 1.12;
}

.lp-b .product-showcase--offer .product-book strong {
  font-size: 1.14rem;
  line-height: 1.04;
}

.lp-b .product-showcase--offer .product-book em {
  font-size: 0.7rem;
}

.lp-b .product-showcase--offer .product-screen {
  right: 18px;
  bottom: 24px;
  width: 178px;
  padding: 16px;
  border-radius: 16px;
}

.lp-b .product-showcase--offer .product-screen strong {
  font-size: 0.9rem;
}

.lp-b .product-showcase--offer .product-screen span {
  font-size: 0.78rem;
  line-height: 1.25;
}

.lp-b .product-showcase--offer .product-mini {
  padding: 7px 12px;
  font-size: 0.72rem;
}

.lp-b .product-showcase--offer .product-mini--one {
  top: 20px;
  right: 18px;
}

.lp-b .product-showcase--offer .product-mini--two {
  left: 38px;
  bottom: 20px;
}

/* ============================================================
   AUTORA Â· compactar carta e assinatura
   ============================================================ */

.lp-b #conteudo {
  padding-top: 62px;
  padding-bottom: 70px;
}

.lp-b #conteudo .section-inner {
  width: var(--final-shell);
}

.lp-b #conteudo .section-heading {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.lp-b #conteudo .section-heading .eyebrow {
  justify-content: center;
}

.lp-b #conteudo .section-heading h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(2.2rem, 2.9vw, 3.25rem);
  line-height: 1.03;
}

.lp-b #conteudo .section-heading p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 0.98rem;
  line-height: 1.5;
}

.lp-b #conteudo .b-author-card {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border-radius: var(--final-radius);
  box-shadow: var(--final-shadow);
}

.lp-b #conteudo .b-author-head {
  grid-column: 1;
  grid-row: 1 / span 4;
  display: block;
  margin: 0;
  padding: 18px;
  border-radius: 13px;
  background: var(--navy);
}

.lp-b #conteudo .b-author-head img {
  width: 100%;
  height: 160px;
  margin: 0 0 14px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
}

.lp-b #conteudo .b-author-head .eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-size: 0.64rem;
}

.lp-b #conteudo .b-author-head h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.08;
  font-weight: 850;
}

.lp-b #conteudo .b-author-cred {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  line-height: 1.36;
}

.lp-b #conteudo .b-author-letter,
.lp-b #conteudo .b-author-quote,
.lp-b #conteudo .b-author-card > p:last-child {
  grid-column: 2;
}

.lp-b #conteudo .b-author-letter {
  margin-top: 0 !important;
  line-height: 1.52 !important;
}

.lp-b #conteudo .b-author-letter p {
  max-width: 660px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.52;
}

.lp-b #conteudo .b-author-quote {
  width: min(100%, 620px);
  margin: 8px 0 0;
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 0.96rem;
  line-height: 1.4;
}

.lp-b #conteudo .b-author-card > p:last-child {
  margin: 2px 0 0 !important;
  font-size: 0.86rem;
  line-height: 1.35;
}

/* ============================================================
   PRÃ“XIMO NÃVEL Â· reenquadrar e reduzir estranheza
   ============================================================ */

.lp-b .b-metodo-section {
  padding-top: 72px;
  padding-bottom: 76px;
  background-color: var(--navy);
  border-top: 1px solid rgba(151, 146, 125, 0.22);
}

.lp-b .b-metodo {
  width: var(--final-shell);
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
  gap: 24px 54px;
  align-items: start;
  text-align: left;
}

.lp-b .b-metodo > .eyebrow,
.lp-b .b-metodo > h2,
.lp-b .b-metodo > p {
  grid-column: 1;
  max-width: 500px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.lp-b .b-metodo > .eyebrow {
  justify-content: flex-start;
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.lp-b .b-metodo h2 {
  font-size: clamp(2.35rem, 3.05vw, 3.45rem);
  line-height: 1.03;
  margin-bottom: 24px;
}

.lp-b .b-metodo > p {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.86);
}

.lp-b .b-metodo-steps {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  width: 100%;
  margin: 0;
  padding: 12px;
  border-radius: var(--final-radius);
  background: rgba(255, 255, 255, 0.045);
}

.lp-b .b-metodo-steps li {
  display: grid;
  grid-template-columns: 34px minmax(120px, 150px) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 10px;
}

.lp-b .b-metodo-steps li span {
  width: 30px;
  height: 30px;
  font-size: 0.72rem;
  font-weight: 850;
}

.lp-b .b-metodo-steps li strong {
  font-size: 0.9rem;
  line-height: 1.16;
  font-weight: 850;
}

.lp-b .b-metodo-steps li em {
  font-size: 0.78rem;
  line-height: 1.32;
}

.lp-b .b-metodo-apply {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 16px 28px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: var(--final-radius);
}

.lp-b .b-metodo-apply h3 {
  grid-column: 1;
  max-width: 620px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.24;
  font-weight: 850;
}

.lp-b .b-metodo-apply p {
  grid-column: 1;
  max-width: 680px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lp-b .b-metodo-apply .primary-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 100%;
  min-width: 0;
}

.lp-b .b-metodo-apply .b-friction {
  grid-column: 1;
  margin-top: 0;
  font-size: 0.78rem;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 1040px) {
  .lp-b {
    --final-shell: min(100% - 40px, 860px);
    --final-shell-wide: min(100% - 40px, 900px);
  }

  .lp-b #riscos .section-inner,
  .lp-b .b-offer,
  .lp-b .b-metodo {
    grid-template-columns: 1fr;
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro,
  .lp-b #riscos .b-risk-grid,
  .lp-b #riscos .b-risk-close,
  .lp-b #riscos .b-cases-heading,
  .lp-b #riscos .b-cases-grid,
  .lp-b #riscos .b-cases-note,
  .lp-b .b-metodo-steps,
  .lp-b .b-metodo-apply {
    grid-column: 1;
    grid-row: auto;
  }

  .lp-b #riscos .b-risk-grid,
  .lp-b #riscos .b-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-b .b-offer-side {
    max-width: 420px;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
  }

  .lp-b #conteudo .b-author-head,
  .lp-b #conteudo .b-author-letter,
  .lp-b #conteudo .b-author-quote,
  .lp-b #conteudo .b-author-card > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .lp-b #conteudo .b-author-head {
    max-width: 320px;
  }

  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
  }

  .lp-b .b-metodo-apply .primary-button {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .lp-b {
    --final-shell: min(100% - 32px, 100%);
    --final-shell-wide: min(100% - 32px, 100%);
  }

  .lp-b .section {
    padding: 56px 0;
  }

  .lp-b .hero-content--clean {
    width: var(--final-shell);
    padding: 92px 0 72px;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.24rem, 9vw, 3rem);
  }

  .lp-b .hero p {
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-risk-intro,
  .lp-b #riscos .b-cases-heading {
    padding: 24px;
    min-height: 0;
  }

  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .lp-b #conteudo .section-heading {
    text-align: left;
  }

  .lp-b #conteudo .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .lp-b #conteudo .section-heading h2,
  .lp-b #conteudo .section-heading p {
    margin-inline: 0;
  }

  .lp-b #conteudo .b-author-card {
    padding: 18px;
  }

  .lp-b #conteudo .b-author-head {
    max-width: none;
  }

  .lp-b #conteudo .b-author-head img {
    height: 230px;
  }

  .lp-b .product-showcase--offer {
    min-height: 250px;
  }

  .lp-b .product-showcase--offer .product-book {
    left: 18px;
    top: 28px;
    width: 122px;
    min-height: 170px;
  }

  .lp-b .product-showcase--offer .product-screen {
    right: 14px;
    bottom: 22px;
    width: 170px;
  }

  .lp-b .product-showcase--offer .product-mini--one {
    top: 18px;
    right: 14px;
  }

  .lp-b .product-showcase--offer .product-mini--two {
    left: 30px;
    bottom: 18px;
  }

  .lp-b .b-metodo-steps li {
    grid-template-columns: 32px 1fr;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }
}
/* LP-B - TIPOGRAFIA FINAL DA JORNADA */
.lp-b {
  line-height: 1.65;
}

.lp-b section[id] {
  scroll-margin-top: 96px;
}

.lp-b h1,
.lp-b h2,
.lp-b h3,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b #riscos .section-heading h2,
.lp-b #riscos .b-cases-heading h2,
.lp-b #conteudo .section-heading h2,
.lp-b .b-metodo h2,
.lp-b #faq .section-heading h2 {
  font-family: var(--font-serif) !important;
  font-weight: 500;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.lp-b .hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 3.75vw, 4.45rem);
}

.lp-b .hero p {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.12vw, 1.2rem) !important;
  line-height: 1.65 !important;
  letter-spacing: 0;
}

.lp-b .section-heading h2,
.lp-b #riscos .section-heading h2,
.lp-b #riscos .b-cases-heading h2,
.lp-b #conteudo .section-heading h2,
.lp-b .b-metodo h2,
.lp-b #faq .section-heading h2 {
  margin-bottom: 18px;
}

.lp-b .section-heading p,
.lp-b #riscos .b-risk-intro p,
.lp-b .b-case p,
.lp-b .b-profile p,
.lp-b .b-stack-list span,
.lp-b .b-metodo > p,
.lp-b .b-faq p,
.lp-b .b-author-cred,
.lp-b .b-author-quote {
  line-height: 1.65 !important;
  letter-spacing: 0;
}

.lp-b .eyebrow,
.lp-b .section-heading .eyebrow,
.lp-b .hero .eyebrow,
.lp-b .b-metodo > .eyebrow {
  margin-bottom: 14px;
  font-family: var(--font-sans) !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 760px) {
  .lp-b section[id] {
    scroll-margin-top: 82px;
  }

  .lp-b .hero h1,
  .lp-b .section-heading h2,
  .lp-b #riscos .section-heading h2,
  .lp-b #riscos .b-cases-heading h2,
  .lp-b #conteudo .section-heading h2,
  .lp-b .b-metodo h2,
  .lp-b #faq .section-heading h2 {
    line-height: 1.16 !important;
  }

  .lp-b .hero p,
  .lp-b .section-heading p,
  .lp-b #riscos .b-risk-intro p,
  .lp-b .b-case p,
  .lp-b .b-metodo > p,
  .lp-b .b-faq p {
    line-height: 1.62 !important;
  }
}

@media (max-width: 640px) {
  .lp-b .hero h1 {
    font-size: clamp(2.2rem, 8.6vw, 2.95rem);
  }
}
/* LP-B - TRAVA EDITORIAL DA LP */
body.lp-b {
  overflow-x: hidden;
  line-height: 1.65;
}

.lp-b {
  --final-shell: min(100% - clamp(44px, 7vw, 96px), 1080px);
  --final-shell-wide: min(100% - clamp(44px, 7vw, 112px), 1080px);
  --final-radius: 16px;
  --final-shadow: 0 22px 54px rgba(9, 33, 44, 0.08);
}

.lp-b .section-inner,
.lp-b .hero-content--product,
.lp-b .hero-content--clean {
  width: var(--final-shell);
  margin-inline: auto;
}

.lp-b .b-offer-section .section-inner,
.lp-b #riscos .section-inner,
.lp-b #conteudo .section-inner {
  width: var(--final-shell);
}

.lp-b .section {
  padding-top: clamp(72px, 7vw, 86px);
  padding-bottom: clamp(72px, 7vw, 86px);
}

.lp-b section[id] {
  scroll-margin-top: 86px;
}

.lp-b h1,
.lp-b h2,
.lp-b h3,
.lp-b h4,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b #riscos .section-heading h2,
.lp-b #riscos .b-cases-heading h2,
.lp-b #conteudo .section-heading h2,
.lp-b .b-metodo h2,
.lp-b #faq .section-heading h2 {
  max-width: 760px;
  font-family: var(--font-serif) !important;
  font-weight: 500;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

.lp-b .hero h1 {
  max-width: 820px;
  line-height: 1.04 !important;
  margin-bottom: 24px;
}

.lp-b p,
.lp-b li,
.lp-b span,
.lp-b a,
.lp-b label,
.lp-b summary,
.lp-b button {
  letter-spacing: 0;
}

.lp-b .hero p,
.lp-b .section-heading p,
.lp-b .b-author-letter p,
.lp-b .b-author-card > p,
.lp-b .b-author-cred,
.lp-b .b-metodo > p,
.lp-b .b-metodo-apply p,
.lp-b .b-cases-note,
.lp-b .b-footer-disclaimer {
  max-width: 660px;
  line-height: 1.65 !important;
}

.lp-b .hero p {
  margin-bottom: 42px;
}

.lp-b .section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.lp-b .section-heading h2 {
  margin-bottom: 16px;
}

.lp-b #riscos .section-heading,
.lp-b #riscos .b-cases-heading,
.lp-b .b-offer-heading,
.lp-b #conteudo .section-heading,
.lp-b #faq .section-heading {
  max-width: 760px;
}

.lp-b #riscos .section-heading p,
.lp-b .b-offer-heading p,
.lp-b #conteudo .section-heading p,
.lp-b #faq .section-heading p {
  max-width: 660px;
}

.lp-b .b-risk p,
.lp-b .b-case p,
.lp-b .b-stack-list span,
.lp-b .b-price-reason,
.lp-b .b-guarantee,
.lp-b .b-faq details > p {
  max-width: 100%;
}

.lp-b .b-risk-intro {
  max-width: none;
  line-height: 1.65 !important;
}

.lp-b .b-risk-close {
  max-width: 820px;
  margin-inline: auto;
}

.lp-b .b-cases-heading h2,
.lp-b .b-cases-heading p {
  margin-inline: auto;
}

.lp-b .b-offer,
.lp-b .b-metodo {
  gap: 36px;
}

.lp-b .b-risk-grid,
.lp-b .b-cases-grid {
  gap: 18px;
}

.lp-b .b-author-card,
.lp-b .b-stack,
.lp-b .b-price-card,
.lp-b #riscos .section-heading,
.lp-b .b-risk-intro,
.lp-b .b-cases-heading,
.lp-b .b-metodo-apply {
  border-radius: var(--final-radius);
}

@media (max-width: 1040px) {
  .lp-b {
    --final-shell: min(100% - 48px, 860px);
    --final-shell-wide: min(100% - 48px, 900px);
  }

  .lp-b .section-heading,
  .lp-b #riscos .section-heading,
  .lp-b #riscos .b-cases-heading,
  .lp-b .b-offer-heading,
  .lp-b #conteudo .section-heading,
  .lp-b #faq .section-heading {
    max-width: 720px;
  }

  .lp-b #riscos .section-inner,
  .lp-b .b-offer,
  .lp-b .b-metodo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .lp-b {
    --final-shell: min(100% - 32px, 100%);
    --final-shell-wide: min(100% - 32px, 100%);
  }

  .lp-b .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .lp-b section[id] {
    scroll-margin-top: 82px;
  }

  .lp-b .hero-content--product,
  .lp-b .hero-content--clean {
    width: var(--final-shell);
    padding-left: 0;
    padding-right: 0;
  }

  .lp-b .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 9vw, 3rem);
  }

  .lp-b .hero p,
  .lp-b .section-heading,
  .lp-b .section-heading p,
  .lp-b .b-author-letter p,
  .lp-b .b-author-card > p,
  .lp-b .b-author-cred,
  .lp-b .b-metodo > p,
  .lp-b .b-metodo-apply p,
  .lp-b .b-cases-note {
    max-width: none;
  }

  .lp-b .hero p {
    font-size: 1.05rem !important;
  }
}
/* LP-B - POLIMENTO VISUAL FINAL */
body.lp-b {
  overflow-x: hidden;
  line-height: 1.65 !important;
}

.lp-b {
  --final-shell: min(100% - clamp(40px, 6vw, 88px), 1080px);
  --final-shell-wide: min(100% - clamp(40px, 6vw, 96px), 1120px);
  --final-radius: 16px;
  --final-shadow: 0 22px 54px rgba(9, 33, 44, 0.08);
}

.lp-b .section {
  padding-top: clamp(66px, 6vw, 78px);
  padding-bottom: clamp(66px, 6vw, 78px);
}

.lp-b .section-inner,
.lp-b .hero-content--product,
.lp-b .hero-content--clean {
  width: var(--final-shell);
  max-width: none;
  margin-inline: auto;
}

.lp-b .b-offer-section .section-inner {
  width: var(--final-shell-wide);
}

.lp-b h1,
.lp-b h2,
.lp-b h3,
.lp-b h4,
.lp-b .hero h1,
.lp-b .section-heading h2,
.lp-b .b-cases-heading h2,
.lp-b .b-metodo h2,
.lp-b .b-price-now strong,
.lp-b .b-author-quote {
  max-width: none;
  font-family: var(--font-serif, Georgia, "Times New Roman", serif) !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.lp-b p,
.lp-b li {
  max-width: none !important;
  color: #33444c;
  line-height: 1.65 !important;
}

.lp-b .section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.lp-b .section-heading h2 {
  font-size: clamp(2.25rem, 3.25vw, 3.08rem);
  margin-bottom: 14px;
}

.lp-b .section-heading p {
  max-width: 680px !important;
  font-size: 1.12rem !important;
  line-height: 1.66 !important;
}

.lp-b .hero h1 {
  max-width: 860px;
  line-height: 1.04 !important;
  margin-bottom: 24px;
}

.lp-b .hero p {
  max-width: 680px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1.1rem, 1.25vw, 1.2rem) !important;
  line-height: 1.65 !important;
  margin-bottom: 42px;
}

.lp-b .eyebrow,
.lp-b .section-heading .eyebrow,
.lp-b .hero .eyebrow,
.lp-b .b-metodo > .eyebrow {
  font-size: 0.78rem;
  line-height: 1.2 !important;
  letter-spacing: 0.035em !important;
}

.lp-b #riscos .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px 28px;
  align-items: stretch;
}

.lp-b #riscos .section-heading,
.lp-b .b-risk-intro,
.lp-b .b-risk-grid,
.lp-b .b-risk-close,
.lp-b .b-cases-heading,
.lp-b .b-cases-grid,
.lp-b .b-cases-note {
  max-width: none !important;
}

.lp-b #riscos .section-heading {
  padding: 34px 34px;
}

.lp-b #riscos .section-heading h2 {
  font-size: clamp(2.45rem, 3.75vw, 3.55rem);
}

.lp-b #riscos .section-heading p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem !important;
}

.lp-b .b-risk-intro {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 34px 36px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.72 !important;
}

.lp-b .b-risk-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-b .b-risk {
  padding: 26px 22px;
}

.lp-b .b-risk h3,
.lp-b .b-case h3 {
  font-size: 1.16rem;
  line-height: 1.25 !important;
  margin-bottom: 12px;
}

.lp-b .b-risk p,
.lp-b .b-case p {
  max-width: 100% !important;
  font-size: 1.02rem;
  line-height: 1.62 !important;
}

.lp-b .b-risk-close,
.lp-b .b-cases-heading,
.lp-b .b-cases-grid,
.lp-b .b-cases-note {
  grid-column: 1 / -1;
}

.lp-b .b-risk-close {
  width: min(100%, 840px);
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.5 !important;
}

.lp-b .b-cases-heading {
  padding: 34px 40px;
  margin-top: 54px;
}

.lp-b .b-cases-heading h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(2.18rem, 3.05vw, 2.95rem);
}

.lp-b .b-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-b .b-case {
  padding: 24px 26px;
}

.lp-b .b-case strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.lp-b .b-cases-note {
  font-size: 0.92rem;
  line-height: 1.45 !important;
}

.lp-b .b-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 360px);
  gap: 28px;
  align-items: start;
}

.lp-b .b-stack {
  padding: 32px 34px;
}

.lp-b .b-stack-title {
  font-size: 0.82rem;
  line-height: 1.2;
}

.lp-b .b-stack-list {
  gap: 15px;
}

.lp-b .b-stack-list li {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 14px;
  padding-bottom: 15px;
}

.lp-b .b-stack-list strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.lp-b .b-stack-list span {
  max-width: 100% !important;
  color: #465a63;
  font-size: 1.01rem;
  line-height: 1.58 !important;
}

.lp-b .b-stack-list em {
  font-size: 0.95rem;
  white-space: nowrap;
}

.lp-b .b-offer-side {
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.lp-b .b-price-card {
  width: 100%;
  padding: 34px 28px;
}

.lp-b .b-price-reason,
.lp-b .b-guarantee {
  max-width: 100% !important;
  font-size: 0.98rem;
  line-height: 1.55 !important;
}

.lp-b #conteudo .section-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.lp-b #conteudo .section-heading p {
  margin-inline: auto;
}

.lp-b #conteudo .b-author-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
}

.lp-b #conteudo .b-author-head {
  max-width: none;
  padding: 18px;
}

.lp-b #conteudo .b-author-head img {
  width: 100%;
  height: clamp(180px, 20vw, 235px);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 10px;
  margin-bottom: 16px;
}

.lp-b #conteudo .b-author-head h3 {
  font-size: 1.22rem;
  line-height: 1.15 !important;
}

.lp-b #conteudo .b-author-cred {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.55 !important;
}

.lp-b #conteudo .b-author-letter,
.lp-b #conteudo .b-author-quote,
.lp-b #conteudo .b-author-card > p:last-child {
  grid-column: 2;
  max-width: none !important;
}

.lp-b #conteudo .b-author-letter p {
  max-width: none !important;
  font-size: 1.05rem;
  line-height: 1.7 !important;
}

.lp-b .b-author-quote {
  font-style: italic !important;
  font-size: 1.18rem !important;
  line-height: 1.45 !important;
}

.lp-b .b-metodo-section {
  padding-top: clamp(62px, 5.5vw, 76px);
  padding-bottom: clamp(58px, 5vw, 72px);
}

.lp-b .b-metodo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px 46px;
  align-items: start;
}

.lp-b .b-metodo > p,
.lp-b .b-metodo-apply p {
  max-width: none !important;
}

.lp-b .b-metodo h2 {
  font-size: clamp(2.38rem, 3.35vw, 3.25rem);
  margin-bottom: 18px;
}

.lp-b .b-metodo > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.68 !important;
}

.lp-b .b-metodo-steps {
  grid-column: 2;
  grid-row: 1 / span 4;
  gap: 10px;
  padding: 14px;
}

.lp-b .b-metodo-steps li {
  grid-template-columns: 44px minmax(120px, 0.55fr) minmax(0, 1.45fr);
  gap: 14px;
  padding: 14px 16px;
}

.lp-b .b-metodo-steps li strong {
  font-size: 1rem;
}

.lp-b .b-metodo-steps li em {
  font-size: 0.93rem;
  line-height: 1.45;
}

.lp-b .b-metodo-apply {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px 28px;
  margin-top: 26px;
  padding: 28px 30px;
}

.lp-b .b-metodo-apply h3 {
  font-size: 1.28rem;
  line-height: 1.25 !important;
}

.lp-b .b-metodo-apply p,
.lp-b .b-metodo-apply .b-friction {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.58 !important;
}

.lp-b .b-faq {
  width: min(100%, 820px);
  display: grid;
  gap: 14px;
}

.lp-b .b-faq details {
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.lp-b .b-faq summary {
  font-size: 1.08rem;
  line-height: 1.35;
}

.lp-b .b-faq details > p {
  max-width: 100% !important;
  font-size: 1.03rem;
  line-height: 1.65 !important;
}

.lp-b #faq .section-heading {
  max-width: 780px;
}

.lp-b #faq .section-heading h2 {
  max-width: 760px;
}

.lp-b #faq .section-heading p {
  font-size: 1.06rem !important;
}

.lp-b .b-footer-disclaimer {
  max-width: 720px !important;
  font-size: 0.95rem;
  line-height: 1.65 !important;
}

@media (max-width: 1040px) {
  .lp-b {
    --final-shell: min(100% - 48px, 900px);
    --final-shell-wide: min(100% - 48px, 940px);
  }

  .lp-b #riscos .section-inner,
  .lp-b .b-offer,
  .lp-b .b-metodo,
  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
  }

  .lp-b .b-offer-side {
    max-width: 420px;
    justify-self: start;
  }

  .lp-b #riscos .section-heading,
  .lp-b .b-risk-intro,
  .lp-b .b-risk-grid,
  .lp-b .b-risk-close,
  .lp-b .b-cases-heading,
  .lp-b .b-cases-grid,
  .lp-b .b-cases-note,
  .lp-b .b-metodo-steps,
  .lp-b .b-metodo-apply {
    grid-column: 1;
    grid-row: auto;
  }

  .lp-b #conteudo .b-author-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .lp-b .b-metodo-apply .primary-button {
    width: min(100%, 360px);
  }
}

@media (max-width: 760px) {
  .lp-b {
    --final-shell: min(100% - 32px, 100%);
    --final-shell-wide: min(100% - 32px, 100%);
  }

  .lp-b .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .lp-b .hero-content--product,
  .lp-b .hero-content--clean {
    width: var(--final-shell);
    padding-left: 0;
    padding-right: 0;
  }

  .lp-b .hero h1,
  .lp-b .hero p,
  .lp-b .section-heading,
  .lp-b .section-heading p,
  .lp-b #faq .section-heading h2 {
    max-width: none !important;
  }

  .lp-b .hero h1 {
    font-size: clamp(2.35rem, 9vw, 3rem);
  }

  .lp-b .b-risk-grid,
  .lp-b .b-cases-grid,
  .lp-b #conteudo .b-author-card {
    grid-template-columns: 1fr;
  }

  .lp-b #conteudo .b-author-letter,
  .lp-b #conteudo .b-author-quote,
  .lp-b #conteudo .b-author-card > p:last-child {
    grid-column: 1;
  }

  .lp-b #conteudo .b-author-card {
    padding: 22px;
  }

  .lp-b #conteudo .b-author-head img {
    height: 220px;
  }

  .lp-b .b-metodo-steps li {
    grid-template-columns: 40px 1fr;
  }

  .lp-b .b-metodo-steps li em {
    grid-column: 2;
  }

  .lp-b .b-metodo-apply {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .lp-b .primary-button,
  .lp-b .ghost-button {
    width: 100%;
  }
}
