:root {
  --ink:    #0A1628;
  --ink80:  rgba(10,22,40,.80);
  --ink60:  rgba(10,22,40,.60);
  --ink40:  rgba(10,22,40,.40);
  --ink20:  rgba(10,22,40,.20);
  --ink08:  rgba(10,22,40,.08);
  --ink04:  rgba(10,22,40,.04);

  --gold:   #1D63D4;
  --goldd:  #1753B5;
  --goldl:  #4282E8;
  --gold15: rgba(29,99,212,.15);
  --gold30: rgba(29,99,212,.30);

  --dark:   #0D1E38;
  --dark2:  #091728;
  --dark3:  #0B1830;

  --cream:  #F6F9FF;
  --sand:   #FFFAF4;
  --white:  #FFFFFF;

  --ok:     #16A34A;
  --err:    #DC2626;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  --ease:  cubic-bezier(.22,1,.36,1);
  --ease2: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; font-weight: 300 }
a { color: inherit; text-decoration: none; cursor: pointer }
button { font-family: var(--sans); cursor: pointer; border: none; background: none }
input, select { font-family: var(--sans) }
::selection { background: var(--gold15) }
::-webkit-scrollbar { width: 3px }
::-webkit-scrollbar-track { background: var(--cream) }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px }

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 64px 32px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 75% 5%, rgba(29,99,212,.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(29,99,212,.05) 0%, transparent 55%);
}
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 40%, var(--goldl) 60%, transparent 95%);
}
.hero-grain {
  display: block; position: absolute; inset: 0;
  pointer-events: none; z-index: 0; opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 760px; width: 100%;
}

.brand-masthead {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 56px;
  opacity: 0; animation: fadeup .8s var(--ease2) .05s forwards;
}
.brand-rule { flex: 0 0 56px; height: 1px; background: var(--ink20) }
.brand-wordmark { display: flex; align-items: center; gap: 9px }
.brand-icon { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; opacity: .85 }
.brand-word {
  font-family: var(--sans); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink);
}
@keyframes fadeup { from { opacity: 0; transform: translateY(16px) } to { opacity: 1; transform: translateY(0) } }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; line-height: .98;
  color: var(--ink); letter-spacing: -.03em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeup .9s var(--ease2) .15s forwards;
}
.hero-headline em {
  font-style: italic; color: var(--gold); font-weight: 500;
}
.hero-sub {
  font-size: 1rem; line-height: 1.8; font-weight: 400;
  color: var(--ink60);
  max-width: 460px; margin: 0 auto 44px;
  text-wrap: balance;
  opacity: 0; animation: fadeup .9s var(--ease2) .25s forwards;
}

.sbox-wrap {
  max-width: 600px; margin: 0 auto;
  opacity: 0; animation: fadeup .9s var(--ease2) .35s forwards;
}
.sbox {
  display: flex; align-items: center;
  background: var(--white);
  border: 1.5px solid var(--ink08);
  border-radius: 18px; padding: 8px;
  box-shadow: 0 16px 56px rgba(10,22,40,.11), 0 3px 12px rgba(10,22,40,.06);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  gap: 4px;
}
.sbox:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(29,99,212,.10), 0 16px 56px rgba(10,22,40,.12);
}
.sbox-icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; flex-shrink: 0; color: var(--ink40);
  transition: color .25s;
}
.sbox:focus-within .sbox-icon { color: var(--gold) }
.sbox-icon svg { width: 17px; height: 17px }
.sbox input {
  flex: 1; height: 54px; background: transparent; border: none;
  padding: 0 12px 0 0; font-size: 1.05rem; color: var(--ink);
  outline: none; min-width: 0; font-weight: 400;
}
.sbox input::placeholder { color: var(--ink40) }
.sbox button {
  height: 48px; padding: 0 32px;
  background: var(--gold); color: #fff;
  border-radius: 12px; font-size: .85rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(29,99,212,.40), inset 0 1px 0 rgba(255,255,255,.18);
}
.sbox button:hover { background: var(--goldd); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(29,99,212,.55) }
.btn-m { display: none }

/* Instagram optional label */
.ig-lbl {
  display: block; font-size: .75rem; font-weight: 400;
  color: var(--ink40); margin-bottom: 6px; letter-spacing: .01em;
}
.ig-opt { font-size: .7rem; color: var(--ink40); font-weight: 300 }

/* @ Instagram prefix */
.ig-wrap { position: relative }
.ig-at {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--ink40); font-size: .95rem; font-weight: 400;
  pointer-events: none; z-index: 1; user-select: none; line-height: 1;
}
.ig-inp { padding-left: 34px !important }
.inp-err { font-size: .76rem; color: var(--err); text-align: center; margin-top: 10px; display: none }
.inp-err.show { display: block }
.ig-err { font-size: .74rem; color: var(--err); display: none; margin: 6px 0 4px; font-weight: 400 }
.ig-err.show { display: block }

.hero-signals {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; margin-top: 24px;
  opacity: 0; animation: fadeup .9s var(--ease2) .5s forwards;
}
.hs-item {
  font-size: .72rem; font-weight: 400; color: rgba(10,22,40,.52);
  letter-spacing: .03em; padding: 4px 14px;
  border-right: 1px solid var(--ink08); white-space: nowrap;
}
.hs-item:last-child { border-right: none }
.hs-dot { display: none }
.hs-arrow {
  font-size: .72rem; color: rgba(10,22,40,.28);
  padding: 0 2px; line-height: 1; user-select: none;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 0; right: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; opacity: .4;
  transition: opacity .2s;
  animation: fadeup .9s var(--ease2) .8s both;
}
.hero-scroll:hover { opacity: .7 }
.hero-scroll svg { width: 18px; height: 18px; color: var(--ink); animation: bob 2.8s ease-in-out infinite }
.hero-scroll span { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink40, rgba(12,26,46,.4)); font-weight: 500 }
@keyframes bob { 0%,100% { transform: translateY(0) } 55% { transform: translateY(6px) } }
@media (prefers-reduced-motion: reduce) { .hero-scroll svg { animation: none } }

@media (max-width: 600px) {
  .hero { padding: 52px 20px 80px }
  .brand-masthead { margin-bottom: 40px }
  .brand-rule { flex: 0 0 36px }
  .brand-word { font-size: .82rem; letter-spacing: .26em }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.4rem); letter-spacing: -.025em; margin-bottom: 22px; line-height: 1.02 }
  .hero-sub { font-size: .92rem; line-height: 1.75; margin-bottom: 36px; padding: 0 4px }
  .sbox { border-radius: 14px; padding: 6px; gap: 2px }
  .sbox-icon { width: 36px }
  .sbox-icon svg { width: 15px; height: 15px }
  .sbox input { height: 50px; padding: 0 8px 0 0; font-size: 1rem }
  .sbox button { height: 44px; padding: 0 20px; font-size: .78rem; border-radius: 10px; letter-spacing: .02em }
  .btn-d { display: none }
  .btn-m { display: inline }
  .hero-signals { margin-top: 20px }
  .hs-item { font-size: .68rem; padding: 4px 10px }
}

/* ── REASONS ── */
.reasons {
  background: var(--white);
  padding: 96px 32px 88px;
}
.reasons-inner { max-width: 1060px; margin: 0 auto }

.sec-intro {
  text-align: center;
  max-width: 640px; margin: 0 auto 72px;
}
.sec-kicker {
  font-size: .64rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 20px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600; line-height: 1.08;
  color: var(--ink); letter-spacing: -.02em;
}
.sec-title em { font-style: italic; font-weight: 400 }
.sec-desc {
  font-size: .95rem; color: rgba(10,22,40,.60); line-height: 1.9;
  font-weight: 300; margin-top: 18px; text-wrap: balance;
}

.rgrid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; column-gap: 64px;
}
.rcard {
  background: none; border: none; border-radius: 0;
  border-top: 1px solid var(--ink08);
  padding: 28px 0; cursor: default;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  transition: none;
}
.rcard:hover { box-shadow: none; transform: none }
.rcard-icon {
  width: 40px; height: 40px; margin-top: 2px;
  background: rgba(29,99,212,.08);
  border-radius: 11px;
  color: var(--gold);
  grid-column: 1; grid-row: 1 / 3;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rcard-icon svg { width: 19px; height: 19px; flex-shrink: 0 }
.rcard h3 {
  font-family: var(--serif); font-size: 1.08rem;
  font-weight: 700; color: var(--ink); margin-bottom: 7px; line-height: 1.3;
  grid-column: 2; grid-row: 1;
}
.rcard p {
  font-size: .875rem; color: rgba(10,22,40,.60); line-height: 1.85; font-weight: 300;
  grid-column: 2; grid-row: 2;
}

@media (max-width: 860px) {
  .sec-intro { margin-bottom: 52px }
}
@media (max-width: 640px) {
  .rgrid { grid-template-columns: 1fr; column-gap: 0 }
}
@media (max-width: 520px) {
  .reasons { padding: 72px 20px 64px }
  .rcard { padding: 24px 0 }
}

/* ── PROCESS ── */
.process {
  background: var(--white);
  padding: 96px 32px;
  position: relative; overflow: hidden;
}
.process::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 40%, var(--goldl) 65%, transparent 95%);
}
.process::after { display: none }
.process-inner { max-width: 1060px; margin: 0 auto }
.process-head { text-align: center; margin-bottom: 64px }
.process-head .sec-kicker { color: var(--goldd) }
.process-head .sec-title { color: var(--ink) }
.process-head .sec-title em { color: var(--gold); font-style: italic; font-weight: 400 }

.steps {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  gap: 0; align-items: center;
}
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--gold30); align-self: flex-start; margin-top: 42px;
}
.step-arrow svg { width: 22px; height: 22px }
.step {
  background: var(--white); border-radius: 22px; padding: 36px 28px 32px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
  border: 1px solid rgba(29,99,212,.12);
  box-shadow: 0 6px 32px rgba(29,99,212,.10), 0 1px 6px rgba(10,22,40,.04);
  cursor: default;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.step:hover { box-shadow: 0 14px 48px rgba(29,99,212,.18); transform: translateY(-4px) }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 1.2rem; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 22px; letter-spacing: 0; -webkit-text-stroke: 0;
  box-shadow: 0 4px 20px rgba(29,99,212,.38);
  flex-shrink: 0;
}
.step-icon { display: none }
.step-title {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin-bottom: 12px; line-height: 1.3;
}
.step-text {
  font-size: .875rem; color: rgba(10,22,40,.58); line-height: 1.85; font-weight: 300;
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 32px 1fr 32px 1fr }
  .step-arrow { margin-top: 36px }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; gap: 16px }
  .step-arrow { display: none }
  .step { border-radius: 18px }
}
@media (max-width: 520px) { .process { padding: 72px 20px } }

/* ── DIFERENCIAIS ── */
.garantias {
  background: var(--cream); padding: 96px 32px;
  border-top: none; position: relative;
}
.garantias-inner { max-width: 1060px; margin: 0 auto }
.gara-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; column-gap: 48px; max-width: 920px; margin: 0 auto;
}
.gara-item {
  text-align: center; display: flex; flex-direction: column; align-items: center;
  gap: 18px; padding: 36px 16px;
  border-right: 1px solid rgba(10,22,40,.08);
}
.gara-item:last-child { border-right: none }
.gara-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: rgba(29,99,212,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.gara-icon svg { width: 26px; height: 26px }
.gara-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
}
.gara-desc {
  font-size: .86rem; color: rgba(10,22,40,.58); line-height: 1.85; font-weight: 300;
}
@media (max-width: 700px) {
  .gara-grid { grid-template-columns: 1fr; column-gap: 0 }
  .gara-item { border-right: none; border-bottom: 1px solid rgba(10,22,40,.08); padding: 28px 8px }
  .gara-item:last-child { border-bottom: none }
  .garantias { padding: 72px 20px }
}

/* ── FAQ ── */
.faq { background: var(--dark); padding: 96px 32px }
.faq-inner { max-width: 700px; margin: 0 auto }
.faq-head { margin-bottom: 64px }
.faq-head .sec-kicker { color: var(--gold); opacity: .8 }
.faq-head .sec-title { color: rgba(250,250,249,.9) }

.faq-list {}
.fi { border-bottom: 1px solid rgba(250,250,249,.08) }
.fi:first-child { border-top: 1px solid rgba(250,250,249,.08) }
.fq {
  width: 100%; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .96rem; font-weight: 300; color: rgba(250,250,249,.72);
  text-align: left; line-height: 1.55; cursor: pointer;
  transition: color .2s;
}
.fq:hover { color: rgba(250,250,249,.9) }
.fi.open .fq { color: rgba(250,250,249,.9) }
.fq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(250,250,249,.12);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.fq-icon svg { width: 11px; height: 11px; stroke: rgba(250,250,249,.4); transition: all .25s var(--ease) }
.fi.open .fq-icon { background: var(--gold); border-color: var(--gold) }
.fi.open .fq-icon svg { stroke: #fff; transform: rotate(45deg) }
.fa { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease) }
.fai { padding: 0 48px 24px 0; font-size: .9rem; color: rgba(250,250,249,.65); line-height: 1.9; font-weight: 300 }
.fi.open .fa { max-height: 400px }

@media (max-width: 520px) { .faq { padding: 72px 20px } }

/* ── CTA FINAL ── */
.ctaf {
  background: #FFF6E0; padding: 112px 32px; border-top: none;
  text-align: center; position: relative; overflow: hidden;
}
.ctaf-inner { max-width: 560px; margin: 0 auto; position: relative; z-index: 1 }
.ctaf-eyebrow {
  font-size: .64rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--goldd);
  display: block; margin-bottom: 24px;
}
.ctaf-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600; line-height: 1.05;
  color: var(--ink); letter-spacing: -.025em;
  margin-bottom: 20px;
}
.ctaf-title em { font-style: italic; font-weight: 400; color: var(--gold) }
.ctaf-sub {
  font-size: .97rem; color: rgba(10,22,40,.58); line-height: 1.85;
  margin-bottom: 48px; font-weight: 300;
}
.ctaf-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 44px; background: var(--gold); color: #fff;
  border-radius: 8px; font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: 0 4px 24px rgba(29,99,212,.32);
}
.ctaf-btn:hover {
  background: var(--goldd); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(29,99,212,.48);
}
.ctaf-btn svg { width: 14px; height: 14px }
.ctaf-note {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 20px;
  font-size: .72rem; color: rgba(10,22,40,.42); font-weight: 300;
}
.ctaf-note svg { width: 12px; height: 12px; color: var(--ok) }

@media (max-width: 520px) {
  .ctaf { padding: 72px 20px }
  .ctaf-title { font-size: 2rem; line-height: 1.1 }
  .ctaf-note { flex-wrap: wrap; justify-content: center; gap: 4px 0; font-size: .68rem; line-height: 1.7 }
}

/* ── FOOTER ── */
.foot {
  background: var(--dark2);
  border-top: none;
  padding: 52px 32px 32px;
  position: relative;
}
.foot::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 35%, var(--goldl) 65%, transparent 95%);
  opacity: .5;
}
.foot-inner { max-width: 1060px; margin: 0 auto }
.foot-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 40px;
}
.foot-brand-name {
  font-family: var(--sans); font-weight: 700;
  font-size: .72rem; letter-spacing: .35em;
  text-transform: uppercase; color: rgba(250,250,249,.75);
}
.foot-tagline {
  font-size: .78rem; color: rgba(250,250,249,.52);
  line-height: 1.7; margin-top: 8px; max-width: 360px; font-weight: 300;
}
.foot-links { display: flex; gap: 24px }
.foot-links a {
  font-size: .73rem; color: rgba(250,250,249,.55);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.foot-links a:hover { color: rgba(250,250,249,.85) }
.foot-divider { height: 1px; background: rgba(250,250,249,.09); margin-bottom: 24px }
.foot-copy { font-size: .72rem; color: rgba(250,250,249,.45); font-weight: 300 }
.foot-status{display:flex;align-items:center;flex-wrap:wrap;gap:7px;margin-bottom:18px;font-size:.72rem;color:rgba(250,250,249,.45);font-weight:300}
.foot-status-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.foot-status-label{font-weight:500;color:rgba(250,250,249,.75);text-transform:uppercase;letter-spacing:.06em;font-size:.68rem}
.foot-status-sep{opacity:.35;margin:0 1px}
@keyframes fspulse{0%,100%{box-shadow:0 0 0 0 currentColor}60%{box-shadow:0 0 0 4px transparent}}

@media (max-width: 600px) {
  .foot-top { flex-direction: column; align-items: flex-start; gap: 20px }
  .foot { padding: 44px 20px 28px }
}

/* ── LEGAL OVERLAY ── */
.legal-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(12,26,46,.98); overflow-y: auto; padding: 80px 24px 60px;
}
.legal-overlay.open { display: block }
.legal-close {
  position: fixed; top: 20px; right: 24px; z-index: 401;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(250,250,249,.06); border: 1px solid rgba(250,250,249,.1);
  color: rgba(250,250,249,.6); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.legal-close:hover { background: rgba(250,250,249,.1) }
.legal-close svg { width: 14px; height: 14px }
.legal-content { max-width: 680px; margin: 0 auto; color: rgba(250,250,249,.6); font-size: .9rem; line-height: 1.9; font-weight: 300 }
.legal-content h1 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: rgba(250,250,249,.9); margin-bottom: 24px }
.legal-content h2 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: rgba(250,250,249,.6); margin: 28px 0 10px }
.legal-content p { margin-bottom: 14px }

/* ── MODAL ── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(10,22,40,.72);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  align-items: center; justify-content: center; padding: 24px;
}
.modal.open { display: flex }
.mbox {
  width: 100%; max-width: 440px; position: relative;
  background: #FFFFFF;
  border-radius: 20px; padding: 40px 36px 36px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 72px rgba(10,22,40,.18), 0 4px 16px rgba(10,22,40,.07);
}
.mclose {
  position: absolute; top: -48px; right: 0;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; cursor: pointer;
}
.mclose:hover { background: rgba(255,255,255,.22); color: #fff }
.mclose svg { width: 13px; height: 13px }


.prog { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 30px }
.pd { width: 8px; height: 8px; border-radius: 50%; background: var(--ink08); transition: all .4s var(--ease); cursor: default }
.pd.on { background: var(--gold); width: 26px; border-radius: 4px }
.pd.ok { background: var(--ok); cursor: pointer }
.pnl { display: none }
.pnl.active { display: block; animation: mpin .38s var(--ease) both }
@keyframes mpin { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: translateY(0) } }

.pt {
  font-family: var(--serif);
  font-size: clamp(1.5rem,4vw,2rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.2; margin-bottom: 8px;
}
.pdesc { font-size: .87rem; color: var(--ink60); line-height: 1.7; margin-bottom: 24px; font-weight: 300 }
.pt em { font-style: italic; color: var(--gold); font-weight: 600 }

.pcard {
  background: var(--cream);
  border: 1.5px solid var(--ink08);
  border-radius: 14px; padding: 22px 20px;
}
.pcard:focus-within { border-color: rgba(29,99,212,.25) }
.plbl {
  display: block; font-size: .64rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.fhint {
  display: block; font-size: .76rem; color: var(--ink40);
  line-height: 1.5; margin: 0 0 10px; font-weight: 300; font-style: italic;
}
.pinp {
  width: 100%; height: 48px;
  background: #FFFFFF;
  border: 1.5px solid var(--ink20);
  border-radius: 8px; padding: 0 16px;
  font-size: .95rem; color: var(--ink);
  outline: none; transition: all .2s; font-weight: 400;
}
select.pinp {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(10,22,40,.35)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
select.pinp option { background: #fff; color: var(--ink) }
.pinp::placeholder { color: var(--ink40) }
.pinp:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(29,99,212,.1) }
.pinp.err { border-color: var(--err) }
.errt { font-size: .74rem; color: var(--err); display: none; margin: 6px 0 4px; font-weight: 400 }
.errt.show { display: block }

.pbtn { display: flex; gap: 8px; margin-top: 18px }
.bb {
  padding: 12px 18px; background: transparent;
  border: 1.5px solid var(--ink20); border-radius: 8px;
  font-size: .84rem; font-weight: 500; color: var(--ink60);
  transition: all .2s; cursor: pointer;
}
.bb:hover { border-color: var(--ink40); color: var(--ink) }
.bn {
  flex: 1; padding: 13px 18px;
  background: var(--gold); color: #fff;
  font-size: .88rem; font-weight: 700; border-radius: 8px;
  transition: all .2s var(--ease); cursor: pointer;
  box-shadow: 0 2px 12px rgba(29,99,212,.22);
}
.bn:hover { background: var(--goldd); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(29,99,212,.32) }
.bgold {
  flex: 1; padding: 13px 18px;
  background: var(--gold); color: #fff;
  font-size: .88rem; font-weight: 700; border-radius: 8px;
  transition: all .2s var(--ease); cursor: pointer;
  box-shadow: 0 2px 14px rgba(29,99,212,.25);
}
.bgold:hover { background: var(--goldd); transform: translateY(-1px); box-shadow: 0 5px 22px rgba(29,99,212,.38) }

.st-wrap { position: relative }
.st-list {
  position: absolute; top: 100%; left: 0; right: 0;
  max-height: 240px; overflow-y: auto;
  background: #fff; border: 1.5px solid var(--ink20);
  border-radius: 10px; z-index: 10; display: none; margin-top: 5px;
  box-shadow: 0 12px 36px rgba(10,22,40,.1);
}
.st-list.show { display: block }
.st-opt {
  padding: 11px 16px; font-size: .88rem;
  color: var(--ink60); cursor: pointer;
  transition: all .12s; font-weight: 300;
}
.st-opt:hover, .st-opt.hl { background: var(--cream); color: var(--ink) }
.st-selected { color: var(--gold); font-weight: 500 }

/* Analysis animation */
.anl { text-align: center; padding: 16px 0 8px }
.anl-divider { width: 32px; height: 1px; background: linear-gradient(90deg, transparent, var(--ink20), transparent); margin: 0 auto 24px }
.anh { font-family: var(--serif); font-size: clamp(1.5rem,4vw,2rem); font-weight: 600; color: var(--ink); margin-bottom: 6px }
.anm { font-family: var(--serif); font-size: 1.6rem; font-style: italic; font-weight: 600; color: var(--gold); margin-bottom: 28px; letter-spacing: -.01em }
.astep-cur { font-size: .82rem; color: var(--ink60); text-align: center; margin: 0 0 20px; font-style: italic; min-height: 1.2em; transition: opacity .3s ease; font-weight: 300 }
.astep-dots { display: flex; justify-content: center; gap: 5px; margin-bottom: 20px }
.astep-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ink08); transition: all .4s var(--ease) }
.astep-dot.on { background: var(--gold); transform: scale(1.3) }
.btrack { background: var(--ink08); border-radius: 100px; height: 2px; overflow: hidden }
.bfill { height: 100%; width: 0; background: linear-gradient(90deg, var(--goldd), var(--gold), var(--goldl)); border-radius: 100px; transition: width 1s var(--ease) }

/* Result screen */
.res { text-align: center }
.rseal { width: 72px; height: 72px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center }
.rcheck { width: 72px; height: 72px; border-radius: 50%; background: rgba(22,163,74,.08); border: 1.5px solid rgba(22,163,74,.25); display: flex; align-items: center; justify-content: center; animation: pop .55s var(--ease) both; color: var(--ok); box-shadow: 0 0 24px rgba(22,163,74,.12) }
.rcheck svg { width: 32px; height: 32px }
@keyframes pop { from { transform: scale(.4); opacity: 0 } to { transform: scale(1); opacity: 1 } }

.rh2 { font-family: var(--serif); font-size: clamp(1.5rem,4vw,2rem); font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.2 }
.rmarca { font-family: var(--serif); font-size: 1.6rem; font-style: italic; font-weight: 700; color: var(--gold); margin-bottom: 20px; letter-spacing: -.01em }
.rnext { display: flex; flex-direction: column; max-width: 280px; margin: 0 auto 22px; text-align: left; position: relative }
.rnext::before { content: ''; position: absolute; left: 17px; top: 18px; bottom: 18px; width: 1px; background: linear-gradient(to bottom, rgba(22,163,74,.25), rgba(29,99,212,.15), var(--ink08)); z-index: 0 }
.rnext-step { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; position: relative; z-index: 1 }
.rnext-ic { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--ink08); background: var(--ink04); color: var(--ink40) }
.rnext-ic svg { width: 13px; height: 13px }
.rnext-step.ok .rnext-ic { background: rgba(22,163,74,.08); border-color: rgba(22,163,74,.2); color: var(--ok) }
.rnext-step.on .rnext-ic { background: rgba(29,99,212,.08); border-color: rgba(29,99,212,.2); color: var(--gold) }
.rnext-body { display: flex; flex-direction: column; gap: 2px; padding-top: 6px }
.rnext-body strong { font-size: .82rem; font-weight: 600; color: var(--ink40); line-height: 1.2 }
.rnext-step.ok .rnext-body strong { color: var(--ink40) }
.rnext-step.on .rnext-body strong { color: var(--ink80) }
.rnext-body span { font-size: .72rem; color: var(--ink40); line-height: 1.4; font-weight: 300 }
.rnext-step.on .rnext-body span { color: var(--gold) }

.wab {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; max-width: 320px; padding: 15px 22px;
  background: #25D366; color: #fff;
  font-size: .92rem; font-weight: 700; border-radius: 10px;
  transition: all .22s var(--ease); cursor: pointer;
  box-shadow: 0 3px 20px rgba(37,211,102,.22);
}
.wab:hover { background: #1dba5e; transform: translateY(-2px); box-shadow: 0 7px 24px rgba(37,211,102,.3) }
.wab svg { width: 19px; height: 19px; flex-shrink: 0 }
.rtime { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: .73rem; color: var(--ink40); margin-top: 12px; margin-bottom: 14px; font-weight: 300 }
.rtime svg { width: 12px; height: 12px; flex-shrink: 0 }
.rnote { font-size: .76rem; color: var(--ink60); line-height: 1.75; max-width: 300px; margin: 0 auto; font-weight: 300; background: var(--cream); border: 1px solid var(--ink08); border-radius: 8px; padding: 11px 14px; text-align: left }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease) }
.reveal.show { opacity: 1; transform: translateY(0) }
@keyframes shake { 0%,100% { transform: translateX(0) } 20% { transform: translateX(-5px) } 40% { transform: translateX(5px) } 60% { transform: translateX(-3px) } 80% { transform: translateX(3px) } }
@keyframes sboxpulse { 0%,100% { box-shadow: 0 16px 56px rgba(10,22,40,.11), 0 3px 12px rgba(10,22,40,.06) } 50% { box-shadow: 0 0 0 6px rgba(29,99,212,.15), 0 16px 56px rgba(10,22,40,.11) } }
.sbox-pulse { animation: sboxpulse .6s ease 2 }

/* ── MODAL MOBILE ── */
@media (max-width: 520px) {
  .modal { padding: 16px; align-items: center; overflow-y: auto }
  .mbox { max-width: 100%; border-radius: 20px; border-top: 3px solid var(--gold); padding: 44px 20px 32px; overflow: hidden }
  .mclose {
    top: 12px; right: 14px; width: 36px; height: 36px;
    background: rgba(10,22,40,.05); border-color: rgba(10,22,40,.1);
    color: var(--ink60);
  }
  .mclose:hover { background: rgba(10,22,40,.1); color: var(--ink) }
  .prog { margin-bottom: 24px; gap: 6px }
  .pd { width: 7px; height: 7px }
  .pd.on { width: 22px }
  .pt { font-size: 1.55rem }
  .pdesc { font-size: .84rem; margin-bottom: 18px }
  .pcard { padding: 18px 16px }
  .pinp { height: 52px; font-size: 1rem }
  .pbtn { margin-top: 14px; gap: 8px }
  .bn, .bgold, .bb { padding: 14px 16px; font-size: .87rem; min-height: 50px }
  .anl { padding: 8px 0 }
  .anh { font-size: 1.4rem }
  .wab { padding: 14px 18px; font-size: .88rem }
  .rh2 { font-size: 1.4rem }
  .rnext { max-width: 100% }
}

/* ── SECTION MOBILE FIXES ── */
@media (max-width: 520px) {
  .sec-title { font-size: 2rem }
  .tcard { padding: 32px 20px }
  .process { padding: 72px 20px 80px }
}


/* ── JUNTA vs INPI ── */
.junta-sec { background: var(--cream); padding: 96px 32px }
.junta-inner { max-width: 1060px; margin: 0 auto }
.junta-head { margin-bottom: 56px; text-align: center }
.junta-head .sec-desc { max-width: 580px; margin: 18px auto 0 }

/* ── JUNTA NOTE (aviso ® com símbolo emoji) ── */
.junta-note {
  margin-top: 44px; padding: 28px 36px;
  background: rgba(220,38,38,.04);
  border: 1.5px solid rgba(220,38,38,.16);
  border-radius: 16px;
  max-width: 100%;
  display: flex; align-items: center; gap: 24px;
  font-size: .9rem; line-height: 1.85; color: rgba(10,22,40,.62); font-weight: 300;
}
.junta-note-sym {
  flex-shrink: 0; font-family: var(--serif); font-weight: 700;
  font-size: 3rem; color: rgba(220,38,38,.60); line-height: 1;
}
.junta-note strong { color: rgba(220,38,38,.78); font-weight: 600 }
@media (max-width: 640px) {
  .junta-note { flex-direction: column; gap: 10px; padding: 22px 20px; align-items: flex-start }
  .junta-note-sym { font-size: 2.2rem }
}
.junta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px }
.jcard { border-radius: 16px; padding: 32px 28px }
.jcard.myth { background: rgba(220,38,38,.04); border: 1.5px solid rgba(220,38,38,.17) }
.jcard.truth { background: rgba(29,99,212,.05); border: 1.5px solid rgba(29,99,212,.2) }
.jcard-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .6rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.jcard.myth .jcard-badge { color: #DC2626; background: rgba(220,38,38,.09) }
.jcard.truth .jcard-badge { color: var(--gold); background: rgba(29,99,212,.09) }
.jcard-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3 }
.jcard.myth .jcard-title { color: rgba(220,38,38,.78) }
.jcard.truth .jcard-title { color: var(--ink) }
.jcard-list { list-style: none; display: flex; flex-direction: column; gap: 12px }
.jcard-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; line-height: 1.7; color: var(--ink60); font-weight: 300;
}
.jcard-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px }
.jcard.myth .jcard-list li svg { color: #DC2626; opacity: .75 }
.jcard.truth .jcard-list li svg { color: var(--gold) }
@media (max-width: 700px) {
  .junta-cards { grid-template-columns: 1fr }
  .junta-sec { padding: 72px 20px }
}

/* ── GARANTIA ── */
.gar-sec {
  background: var(--white);
  padding: 96px 32px;
}
.gar-inner { max-width: 900px; margin: 0 auto }
.gar-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 56px;
}
.gar-card {
  background: var(--cream);
  border-radius: 20px; padding: 36px 24px 32px;
  border: 1px solid var(--ink08);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px;
  transition: box-shadow .25s var(--ease);
}
.gar-card:hover { box-shadow: 0 8px 32px rgba(29,99,212,.10) }
.gar-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(29,99,212,.35);
  flex-shrink: 0;
}
.gar-title {
  font-family: var(--serif); font-size: 1.08rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
}
.gar-desc {
  font-size: .86rem; color: var(--ink60); line-height: 1.85; font-weight: 300;
}
@media (max-width: 700px) {
  .gar-grid { grid-template-columns: 1fr }
  .gar-sec { padding: 72px 20px }

}

/* ── DEPOIMENTOS ── */
.depo-sec {
  background: var(--cream);
  padding: 96px 32px;
}
.depo-inner { max-width: 1000px; margin: 0 auto }
.depo-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 56px;
}
.depo-card {
  background: var(--white);
  border-radius: 18px; padding: 30px 26px;
  border: 1px solid var(--ink08);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 2px 16px rgba(10,22,40,.04);
}
.depo-stars { font-size: .9rem; color: #F59E0B; letter-spacing: 2px }
.depo-text {
  font-size: .88rem; color: var(--ink60); line-height: 1.9;
  font-weight: 300; font-style: italic; flex: 1;
}
.depo-divider { height: 1px; background: var(--ink08) }
.depo-name { font-size: .82rem; font-weight: 600; color: var(--ink) }
.depo-meta { font-size: .73rem; color: var(--ink40); font-weight: 300; margin-top: 2px }
.depo-footer { display: flex; align-items: center; gap: 12px }
.depo-logo { height: 28px; width: auto; object-fit: contain; flex-shrink: 0; opacity: .6 }
@media (max-width: 800px) {
  .depo-grid { grid-template-columns: 1fr }
  .depo-sec { padding: 72px 20px }
}

/* ── SOBRE NÓS ── */
.sobre-sec {
  background: var(--white); padding: 96px 32px;
}
.sobre-inner { max-width: 640px; margin: 0 auto; text-align: center }
.sobre-txt {
  font-size: .92rem; color: var(--ink60); line-height: 1.9;
  font-weight: 300; margin-top: 20px; text-wrap: balance;
}
@media (max-width: 520px) {
  .sobre-sec { padding: 72px 20px }
}

/* ── LGPD BADGE ── */
.lgpd-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .67rem; color: rgba(250,250,249,.38); font-weight: 300;
  background: rgba(250,250,249,.04); border: 1px solid rgba(250,250,249,.08);
  border-radius: 100px; padding: 4px 10px; margin-top: 10px;
}
.lgpd-badge svg { width: 10px; height: 10px; flex-shrink: 0; opacity: .55 }

/* ── WHATSAPP FLUTUANTE ── */
.waf {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  display: flex; align-items: center; gap: 0;
  transition: all .3s var(--ease);
}
.waf-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: all .25s var(--ease);
  cursor: pointer; border: none;
}
.waf-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.45) }
.waf-btn svg { width: 28px; height: 28px }
.waf-label {
  background: var(--white); color: var(--ink);
  font-size: .78rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(10,22,40,.1);
  margin-right: 10px;
  opacity: 0; transform: translateX(10px);
  transition: all .3s var(--ease);
  pointer-events: none; white-space: nowrap;
}
.waf:hover .waf-label { opacity: 1; transform: translateX(0) }
@media (max-width: 520px) {
  .waf { bottom: 16px; right: 16px }
  .waf-btn { width: 50px; height: 50px }
  .waf-btn svg { width: 24px; height: 24px }
  .waf-label { display: none }
}

/* ── MICRO-TENSÃO ── */
.micro-tensao {
  text-align: center; padding: 48px 32px 56px;
  margin: 0 auto; max-width: 640px;
}
.micro-tensao p {
  font-size: .88rem; color: var(--ink60); line-height: 1.8;
  font-weight: 300; font-style: italic;
}
.micro-tensao strong { color: var(--ink80); font-weight: 500 }

/* ── BLOG HOME ── */
.blog-home { background: var(--white); padding: 96px 32px }
.blog-home-inner { max-width: 1060px; margin: 0 auto }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.blog-card {
  background: var(--cream); border-radius: 18px;
  border: 1px solid var(--ink08); padding: 32px 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .25s var(--ease); text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29,99,212,.12);
  border-color: rgba(29,99,212,.2);
}
.blog-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(29,99,212,.08); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-icon svg { width: 20px; height: 20px }
.blog-card h3 {
  font-family: var(--serif); font-size: 1.1rem;
  font-weight: 700; color: var(--ink); line-height: 1.3;
}
.blog-card p {
  font-size: .84rem; color: var(--ink60); line-height: 1.8;
  font-weight: 300; flex: 1;
}
.blog-card-link {
  font-size: .76rem; font-weight: 600; color: var(--gold);
  letter-spacing: .04em; display: flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.blog-card-link svg { width: 14px; height: 14px; transition: transform .2s }
.blog-card:hover .blog-card-link svg { transform: translateX(4px) }
.blog-more {
  text-align: center; margin-top: 40px;
}
.blog-more a {
  font-size: .82rem; font-weight: 500; color: var(--gold);
  text-decoration: underline; text-underline-offset: 4px;
  transition: color .2s;
}
.blog-more a:hover { color: var(--goldd) }
@media (max-width: 800px) {
  .blog-grid { grid-template-columns: 1fr }
  .blog-home { padding: 72px 20px }
}

/* ── PROMESSA (2h + Especialista) ── */
.promessa { background: var(--cream); padding: 96px 32px }
.promessa-inner { max-width: 900px; margin: 0 auto }
.promessa-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; margin-top: 56px;
}
.promessa-card {
  text-align: center; padding: 36px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.promessa-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(29,99,212,.35);
}
.promessa-title {
  font-family: var(--serif); font-size: 1.12rem;
  font-weight: 700; color: var(--ink); line-height: 1.3;
}
.promessa-desc {
  font-size: .86rem; color: var(--ink60); line-height: 1.85; font-weight: 300;
}
.promessa-highlight {
  margin-top: 48px; padding: 32px 36px;
  background: rgba(29,99,212,.05); border: 1.5px solid rgba(29,99,212,.15);
  border-radius: 16px; text-align: center;
}
.promessa-highlight p {
  font-size: .95rem; color: var(--ink80); line-height: 1.85; font-weight: 300;
}
.promessa-highlight strong { color: var(--gold); font-weight: 600 }
@media (max-width: 700px) {
  .promessa-grid { grid-template-columns: 1fr }
  .promessa { padding: 72px 20px }
  .promessa-highlight { padding: 24px 20px }
}

/* ── CTA EMOCIONAL ── */
.ctaf-tensao {
  font-size: .92rem; color: var(--ink80); line-height: 1.85;
  font-weight: 300; margin-bottom: 12px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.ctaf-tensao strong { font-weight: 500; color: var(--ink) }

/* ── SOBRE BRIDGE ── */
.sobre-bridge {
  max-width: 560px; margin: 0 auto; padding: 0 32px 56px;
  text-align: center; font-size: .95rem; color: var(--ink60);
  line-height: 1.9; font-weight: 300; font-style: italic;
}
@media(max-width:520px){ .sobre-bridge { padding: 0 20px 40px; font-size: .88rem } }

/* ── MOBILE SPACING IMPROVEMENTS ── */
@media(max-width:520px){
  .sec-intro { margin-bottom: 32px !important }
  .sobre-sec .sobre-inner { padding: 56px 20px }
  .promessa-inner { padding: 48px 20px 56px }
}

/* ── MOMENTO DE DECISÃO ── */
.momento-dec {
  background: rgba(239,68,68,.04);
  border-top: 2px solid rgba(239,68,68,.2);
  border-bottom: 2px solid rgba(239,68,68,.2);
  padding: 48px 32px; text-align: center;
}
.md-inner { max-width: 560px; margin: 0 auto }
.md-pre {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #ef4444; margin-bottom: 14px;
}
.md-text {
  font-size: 1rem; color: var(--ink); line-height: 1.75;
  font-weight: 300; margin-bottom: 24px;
}
.md-text strong { font-weight: 600 }
.md-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: #ef4444; color: #fff;
  border-radius: 10px; font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  transition: background .2s; box-shadow: 0 4px 18px rgba(239,68,68,.3);
}
.md-btn:hover { background: #dc2626 }
@media(max-width:600px) {
  .momento-dec { padding: 36px 20px }
  .md-text { font-size: .92rem }
}
