:root{
  --text-width: 720px;
}

/* Header overrides */
.brand{ min-width: 140px; }
.nav{ gap: 40px; }

/* Modal (Lightbox: "Veja como funciona") */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.40);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}
.modal{
  width: min(720px, 100%);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);
  padding: 34px 34px 28px;
  transform: translateY(6px);
  transition: transform 160ms ease;
}
.modal-overlay.is-open .modal{ transform: translateY(0); }

.modal-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.modal-title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-main);
}
.modal-close{
  border: 0;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  opacity: 0.7;
}
.modal-close:hover{ background: rgba(0,0,0,0.04); opacity: 1; }

.modal-body{ color: var(--text-main); }
.how-steps{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0 22px;
}
.how-step{
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 14px 14px;
  background: #fff;
}
.how-step b{ display: block; margin-bottom: 4px; }
.modal-foot{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 520px){
  .modal{ padding: 22px 18px 18px; }
  .modal-title{ font-size: 16px; }
}

/* Leva 2 */
/* SECTION 1 — HERO */
.hero{
  /* padding: 140px 0 90px; */
  padding: 70px 0 90px 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.90fr;
  gap: 64px;
  align-items: center;
}
.hero-grid > *{ min-width: 0; }

.hero-copy{ max-width: 560px; }
.hero-title{
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--text-main);
}
.hero-title .line{ display:block; }
.hero-title .sig{
  display: inline-block;
  color: var(--brand-blue);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  transform: translateY(2px);
  font-size: 1.05em;
}

.hero-sub{
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 520px;
}
.hero-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-link{
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.92;
  padding: 10px 6px;
  border-radius: 10px;
}
.hero-link:hover{ background: rgba(23,58,90,0.06); opacity: 1; }

/* Right side — WhatsApp mock */
.wa-card{
  background: transparent;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
  background-clip: padding-box;
}

.wa-slider{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  overflow: visible;
  background: var(--bg-main);
  min-width: 0;
}
.wa-track{
  display: flex;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  padding: 6px 8px;
  background: var(--bg-main);
  touch-action: pan-y;
  will-change: scroll-position;
}
.wa-track::-webkit-scrollbar{ display: none; }
.wa-track .wa-device{
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
}
.wa-controls{
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 5;
  width: calc(100% + 28px);
  transform: translate(-50%, -50%);
  display: none;
}
.wa-nav{
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(23,58,90,0.18);
  background: #fff;
  color: rgba(23,58,90,0.8);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.wa-nav:active{ transform: translateY(1px); }

@media (max-width: 640px){
  .wa-slider{ max-width: 100%; margin-left: 0; }
  .wa-controls{ display: none; }
  .wa-track{ padding: 0; margin: 0; }
  .wa-card{ border-radius: 16px; }
  .wa-hint{ display: block; }
}
@media (min-width: 641px){
  .wa-hint{ display: none; }
}

.wa-dots{
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.wa-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(23,58,90,0.2);
  transition: transform 160ms ease, background 160ms ease;
  cursor: pointer;
}
.wa-dot.is-active{
  background: rgba(23,58,90,0.6);
  transform: scale(1.25);
}

.wa-hint{
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: rgba(28,31,36,0.55);
}
.wa-top{
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.wa-left{ display:flex; align-items:center; gap: 10px; }
.wa-avatar{
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(23,58,90,0.10);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.wa-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wa-name{ display:flex; flex-direction:column; line-height:1.15; }
.wa-name b{ font-size: 13px; color: var(--text-main); }
.wa-name span{
  font-size: 12px;
  color: rgba(28,31,36,0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-name span.online::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2fbf71;
  box-shadow: 0 0 0 3px rgba(47,191,113,0.12);
}
.wa-icons{ display:flex; gap: 10px; opacity: 0.55; }
.wa-icons i{
  display:block; width: 16px; height: 16px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.18);
}

.wa-chat{
  padding: 14px 14px 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  min-height: 210px;
}
.bubble{
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  margin: 8px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.bubble.left{
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-top-left-radius: 10px;
}
.bubble.right{
  background: rgba(23,58,90,0.06);
  border: 1px solid rgba(23,58,90,0.10);
  margin-left: auto;
  border-top-right-radius: 10px;
}

.wa-time{
  text-align:center;
  font-size: 11px;
  color: rgba(28,31,36,0.50);
  margin: 6px 0 12px;
}

.wa-input-wrap{
  padding: 10px 12px 12px;
  border-top: 1px solid var(--border-soft);
  background: #fff;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-suggestion{
  margin-bottom: 10px;
  border: 1px solid rgba(23,58,90,0.14);
  background: rgba(23,58,90,0.04);
  border-radius: 14px;
  padding: 10px 12px;
  flex: 1 1 auto;
}
.wa-suggestion .label{
  font-size: 12px;
  color: rgba(23,58,90,0.86);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
}
.wa-suggestion .text{
  font-size: 13px;
  color: rgba(28,31,36,0.86);
  line-height: 1.35;
}
.wa-input{
  margin-top: auto;
}
.wa-input{
  display:flex;
  align-items:center;
  gap: 10px;
}
.wa-pill{
  flex: 1;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(28,31,36,0.48);
  font-size: 13px;
  background: #fff;
}
.wa-send{
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(23,58,90,0.20);
  background: rgba(23,58,90,0.06);
  display: grid;
  place-items: center;
  color: rgba(23,58,90,0.7);
}

@media (max-width: 860px){
  .hero{ padding: 90px 0 70px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 22px; }
  .hero-copy{ max-width: 100%; order: 1; }
  .wa-slider{ order: 2; max-width: 100%; margin-left: 0; }
  .hero-sub{ order: 3; }
  .hero-actions{ order: 4; }
  .hero-title{ font-size: 42px; }
}
@media (max-width: 420px){
  .hero-title{ font-size: 38px; }
  .wa-chat{ min-height: 240px; }
}

/* Leva 3 */
/* SECTION 2 — PROBLEMA */
.problem{ padding: 110px 0 110px; }
.problem-inner{ max-width: var(--text-width); margin: 0 auto; }
.problem-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.problem-title{
  margin: 0 0 90px;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--text-main);
}
.problem-stack{
  display: flex;
  flex-direction: column;
  /* gap: 92px; */
  gap: 42px;
}
.problem-block{
  margin: 0;
  position: relative;
  /* padding: 20px 22px; */
  padding: 25px 22px 25px 35px;
  border: 1px solid rgba(23,58,90,0.10);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  box-shadow: 0 16px 36px rgba(0,0,0,0.05);
}
.problem-block::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: rgba(23,58,90,0.18);
}
.problem-line{
  margin: 0;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: rgba(28,31,36,0.88);
}
.problem-line + .problem-line{ margin-top: 10px; font-size: 18px; float: right; }
.problem-em{ font-weight: 600; color: rgba(28,31,36,0.92); }
.problem-close{
  margin-top: 110px;
  padding-top: 70px;
  border-top: 1px solid var(--border-soft);
}
.problem-close .problem-line{ font-size: 24px; }
.problem-close .strong{ color: var(--brand-blue); font-weight: 700; }

@media (max-width: 640px){
  .problem{ padding: 80px 0 80px; }
  .problem-title{ margin-bottom: 60px; font-size: 26px; }
  .problem-stack{ gap: 24px; }
  .problem-block{ padding: 16px 16px; }
  .problem-line{ font-size: 19px; }
  .problem-close{ margin-top: 70px; padding-top: 46px; }
  .problem-close .problem-line{ font-size: 20px; }
}

/* Leva 4 */
/* SECTION 3 — O QUE É */
.what{ padding: 110px 0 110px; }
.what-inner{ max-width: var(--text-width); margin: 0 auto; }
.what-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.what-title{
  margin: 0 0 26px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--text-main);
}
.what-lede{
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 680px;
}
.what-card{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 26px;
}
.what-card p{
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(28,31,36,0.86);
}
.what-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.what-item{ display: flex; gap: 12px; align-items: flex-start; }
.what-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(23,58,90,0.35);
  margin-top: 9px;
  flex: 0 0 auto;
}
.what-item b{ font-weight: 600; color: rgba(28,31,36,0.92); }
.what-item span{ color: rgba(28,31,36,0.74); }
.what-note{
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  color: rgba(28,31,36,0.70);
  font-size: 14px;
}

@media (max-width: 640px){
  .what{ padding: 80px 0 80px; }
  .what-title{ font-size: 28px; }
  .what-card{ padding: 22px 18px; }
}

/* Leva 5 */
/* SECTION 4 — COMO FUNCIONA */
.how{ padding: 120px 0 120px; }
.how-inner{ max-width: var(--container); margin: 0 auto; }
.how-head{ max-width: var(--text-width); margin: 0 auto 66px; }
.how-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.how-title{
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.how-sub{
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  padding-top: 10px;
}
.how-step{ position: relative; }
.how-num{
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(23,58,90,0.18);
  margin: 0 0 18px;
}
.how-step-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(28,31,36,0.92);
}
.how-step-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(28,31,36,0.70);
  max-width: 320px;
}

.how-foot{
  max-width: var(--text-width);
  margin: 90px auto 0;
  padding-top: 44px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}
.how-foot p{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(28,31,36,0.86);
}
.how-foot b{ color: var(--brand-blue); font-weight: 700; }

@media (max-width: 980px){
  .how-grid{ grid-template-columns: 1fr; gap: 34px; }
  .how-step-text{ max-width: 560px; }
}
@media (max-width: 640px){
  .how{ padding: 90px 0 90px; }
  .how-title{ font-size: 28px; }
  .how-head{ margin-bottom: 44px; }
  .how-num{ font-size: 38px; margin-bottom: 14px; }
  .how-foot{ margin-top: 64px; padding-top: 34px; }
  .how-foot p{ font-size: 16px; }
}

/* Leva 6 */
/* SECTION 5 — DEMONSTRAÇÃO */
.demo{ padding: 120px 0 120px; }
.demo-head{ max-width: var(--text-width); margin: 0 auto 56px; text-align: center; }
.demo-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.demo-title{
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.demo-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.demo-panel{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}
.demo-label{
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.demo-label b{
  font-size: 13px;
  letter-spacing: -0.01em;
  color: rgba(28,31,36,0.86);
}
.demo-label span{
  font-size: 12px;
  color: rgba(28,31,36,0.52);
}

.demo-wa{
  padding: 14px 14px 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  min-height: 360px;
}
.demo-wa .wa-time{
  text-align:center;
  font-size: 11px;
  color: rgba(28,31,36,0.50);
  margin: 6px 0 12px;
}
.demo-bubble{
  max-width: 84%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  margin: 8px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.demo-bubble.left{
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-top-left-radius: 10px;
}
.demo-bubble.right{
  background: rgba(23,58,90,0.06);
  border: 1px solid rgba(23,58,90,0.10);
  margin-left: auto;
  border-top-right-radius: 10px;
}

.demo-input{
  border-top: 1px solid var(--border-soft);
  background: #fff;
  padding: 10px 12px 12px;
}
.demo-suggestion{
  margin-bottom: 10px;
  border: 1px solid rgba(23,58,90,0.14);
  background: rgba(23,58,90,0.04);
  border-radius: 14px;
  padding: 10px 12px;
}
.demo-suggestion .label{
  font-size: 12px;
  color: rgba(23,58,90,0.86);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
}
.demo-suggestion .text{
  font-size: 13px;
  color: rgba(28,31,36,0.86);
  line-height: 1.35;
}
.demo-pillrow{ display:flex; align-items:center; gap: 10px; }
.demo-pill{
  flex: 1;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(28,31,36,0.48);
  font-size: 13px;
  background: #fff;
}
.demo-send{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(23, 58, 90, 0.20);
  background: rgba(23, 58, 90, 0.06);
  display: grid;
  place-items: center;
  color: rgba(23, 58, 90, 0.7);
}

.demo-caption{
  padding: 14px 16px 18px;
  border-top: 1px solid var(--border-soft);
  color: rgba(28,31,36,0.64);
  font-size: 13px;
  line-height: 1.55;
}

.demo-close{
  max-width: var(--text-width);
  margin: 64px auto 0;
  text-align: center;
  padding-top: 44px;
  border-top: 1px solid var(--border-soft);
}
.demo-close p{
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(28,31,36,0.86);
}

@media (max-width: 980px){
  .demo-grid{ grid-template-columns: 1fr; gap: 18px; }
  .demo-wa{ min-height: 320px; }
}
@media (max-width: 640px){
  .demo{ padding: 90px 0 90px; }
  .demo-title{ font-size: 26px; }
  .demo-head{ margin-bottom: 40px; }
  .demo-close{ margin-top: 46px; padding-top: 34px; }
  .demo-close p{ font-size: 16px; }
}

/* Leva 7 */
/* SECTION 6 — DIFERENCIAIS */
.diff{ padding: 120px 0 120px; }
.diff-head{ max-width: var(--text-width); margin: 0 auto 64px; }
.diff-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.diff-title{
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.diff-sub{
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}

.diff-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 80px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 8px;
}
.diff-item{ padding-top: 6px; }
.diff-item h3{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(28,31,36,0.92);
}
.diff-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(28,31,36,0.70);
  max-width: 420px;
}

.diff-divider{
  max-width: 1000px;
  margin: 70px auto 0;
  border-top: 1px solid var(--border-soft);
  opacity: 0.9;
}

@media (max-width: 980px){
  .diff-grid{ grid-template-columns: 1fr; gap: 34px; }
  .diff-item p{ max-width: 640px; }
  .diff-divider{ display:none; }
}
@media (max-width: 640px){
  .diff{ padding: 90px 0 90px; }
  .diff-title{ font-size: 28px; }
  .diff-head{ margin-bottom: 44px; }
  .diff-grid{ gap: 26px; }
  .diff-item h3{ font-size: 15px; }
}

/* Leva 8 */
/* SECTION 7 — PARA QUEM É */
.who{ padding: 120px 0 120px; }
.who-head{ max-width: var(--text-width); margin: 0 auto 56px; }
.who-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.who-title{
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.who-sub{
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}

.who-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: stretch;
}
.who-item{ padding: 26px 0 0; }
.who-item h3{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(28,31,36,0.92);
}
.who-item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(28,31,36,0.70);
  max-width: 320px;
}

@media (min-width: 981px){
  .who-grid{
    border-top: 1px solid var(--border-soft);
    padding-top: 18px;
  }
  .who-item{
    padding: 26px 22px 0 0;
    position: relative;
  }
  .who-item:not(:last-child)::after{
    content:"";
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-soft);
  }
}

.who-not{
  max-width: 900px;
  margin: 84px auto 0;
  padding: 36px 32px;
  border: 1px solid rgba(23,58,90,0.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 1px 25px -12px rgb(0 0 0 / 14%);
}
.who-not h4{
  margin: 25px 0 48px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  /* text-transform: uppercase; */
  text-align: center;
  /* color: rgba(23,58,90,0.72); */
  color: rgb(45 48 53);
  letter-spacing: -0.02em;
}
.who-not-list{
  margin: 0 0 70px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  color: rgba(28,31,36,0.70);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.who-not-list li::before{
  content: "•";
  color: rgb(23 58 90 / 33%);
  margin-right: 10px;
}

@media (max-width: 980px){
  .who-grid{ grid-template-columns: 1fr; gap: 18px; }
  .who-item p{ max-width: 640px; }
}
@media (max-width: 640px){
  .who{ padding: 90px 0 90px; }
  .who-title{ font-size: 28px; }
  .who-head{ margin-bottom: 44px; }
  .who-not{ margin-top: 38px; padding: 22px 18px; box-shadow: 0 10px 26px rgba(0,0,0,0.04); }
  .who-not-list{ grid-template-columns: 1fr; }
}

/* Leva 9 */
/* SECTION 8 — SEGURANCA / ETICA */
.trust{
  padding: 140px 0 140px;
  background: rgba(255,255,255,0.55);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-inner{ max-width: 760px; margin: 0 auto; }
.trust-kicker{
  color: rgba(23,58,90,0.70);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.trust-title{
  margin: 0 0 26px;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.trust-lede{
  margin: 0 0 34px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.trust-points{
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-point{
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background: #fff;
}
.trust-point b{
  display:block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(28,31,36,0.90);
  font-weight: 600;
}
.trust-point span{
  display:block;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(28,31,36,0.70);
}

.trust-close{
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  color: rgba(28,31,36,0.72);
  font-size: 14px;
  line-height: 1.7;
}
.trust-close b{ color: rgba(28,31,36,0.86); font-weight: 600; }

@media (max-width: 640px){
  .trust{ padding: 96px 0 96px; }
  .trust-title{ font-size: 26px; }
  .trust-point{ padding: 14px 14px; }
}

/* Leva 10 */
/* SECTION 9 — CTA FINAL */
.final-cta{
  padding: 170px 0 160px;
  background: var(--brand-blue);
  color: #fff;
}
.final-inner{ max-width: 860px; margin: 0 auto; text-align: center; }
.final-title{
  margin: 0 0 22px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.final-title .sig{
  display: inline-block;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.final-sub{
  margin: 0 auto 34px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.btn-light{
  border: 1px solid rgba(255,255,255,0.92);
  color: rgba(255,255,255,0.96);
  background: transparent;
}
.btn-light:hover{
  background: #fff;
  color: var(--brand-blue);
}
.final-micro{
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.68);
}

@media (max-width: 640px){
  .final-cta{ padding: 120px 0 110px; }
  .final-title{ font-size: 32px; }
}

/* Leva 11 */
/* SECTION 10A — FORMULARIO NA HOME */
.form-home{ padding: 150px 0 160px; background: var(--bg-main); }
.form-inner{ max-width: 560px; margin: 0 auto; text-align: center; }
.form-title{
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.form-sub{
  margin: 0 0 36px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.form-fields{ display: grid; gap: 16px; text-align: left; }
.form-field{ display: flex; flex-direction: column; gap: 6px; }
.form-field label{ font-size: 13px; color: rgba(28,31,36,0.70); }
.form-field input,
.form-field select{
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 14px;
}
.form-field input:focus,
.form-field select:focus{
  outline: none;
  border-color: rgba(23,58,90,0.35);
}

.form-submit{ margin-top: 26px; text-align: center; }
.form-submit .btn{ padding: 12px 26px; font-size: 15px; }

.form-micro{
  margin-top: 16px;
  font-size: 12px;
  color: rgba(28,31,36,0.55);
  line-height: 1.6;
}

@media (max-width: 640px){
  .form-home{ padding: 110px 0 120px; }
  .form-title{ font-size: 24px; }
}

/* Animacoes */
.reveal-stagger > *{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal-stagger.is-visible > *{
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: 60ms; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: 120ms; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce){
  .reveal-stagger > *{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.wa-device{
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  overflow: hidden;
  /* box-shadow: 0 3px 6px rgb(0 0 0 / 10%), inset 0 0 0 1px rgba(255, 255, 255, 0.6); */
    /* box-shadow: 0 3px 1px 0px rgb(0 0 0 / 10%), inset 0 0 0 1px rgba(255, 255, 255, 0.6); */
    box-shadow: 0 3px 1px 0px rgb(0 0 0 / 7%), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  background-clip: padding-box;
}
