/* ── Split section wrapper ── */
.split-section {
  padding-block: 6rem;
  background: var(--color-slate-50);
}

.split-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start; /* volta para start — ambos começam no topo */
}

@media (max-width: 900px) {
  .split-section__inner { grid-template-columns: 1fr; }
}

/* ── Vantagens ── */
.vantagens {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  /* removido: background, border, border-radius, box-shadow, padding, align-self */
}

.vantagens .section-title {
  font-size: 1.65rem;
  line-height: 1.25;
}

.vantagens__text {
  color: var(--color-slate-600);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.vantagens__text strong {
  color: var(--color-slate-800);
  font-weight: 700;
}

.before-after .section-title {
  margin-bottom: 1.5rem;
}

.ba__container {
  position: relative;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-xl);
}

.ba__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba__panel--after {
  background: linear-gradient(135deg, #1e3a8a, #1e293b);
}

.ba__panel--before {
  background: linear-gradient(135deg, #475569, #64748b);
  clip-path: inset(0 0 0 50%);
}

.ba__center {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba__handle {
  width: 2.5rem;
  height: 2.5rem;
  background: #fff;
  border: 2px solid var(--color-blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-slate-700);
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  flex-shrink: 0;
}

.ba__label {
  position: absolute;
  top: 1rem;
  z-index: 20;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  pointer-events: none;
}

.ba__label--left {
  left: 1rem;
  background: rgba(15, 23, 42, .8);
}

.ba__label--right {
  right: 1rem;
  background: var(--color-blue-600);
}

.vantagens .btn {
  align-self: flex-start;
}