.global {
  background-color: #fff !important;
}
.img-left {
  width: 339px;
}
.div-center {
  width: 634px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.div-center-title {
  font-size: 55px;
  font-weight: 800;
  line-height: 107%;
}
.img-right {
  width: 328px;
}
.btn-primary-div {
  padding: 7px 16px;
  border-radius: 100px;
  background-color: #8011ff1a;
  text-align: center;
  border: none;
  color: #8011ff;
}
.btn-primary-div:hover {
  background-color: #8011ff;
  color: #fff;
}
#beneficios {
  margin: 100px auto;
}
.agilidade-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.title-section {
  color: #fff;
  font-size: 40px;
}

.steps-section {
  margin: 100px auto;
  color: #fff !important;
  background-color: #2d0061;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.step {
  display: flex;
  align-items: center;
  gap: 25px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2d0061;
  border: 1px solid #8011ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  color: #fff;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 40px;
  background: #fff;
  z-index: 1;
}
.step:last-child .step-number::after {
  display: none;
}
.step-text {
  font-size: 20px;
  line-height: 1.4;
  flex: 1;
}

.cursor-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  animation: float 2s ease-in-out infinite;
}
.footer{
    position: relative !important;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(10px);
  }
}

@media (max-width: 1200px) {
  .agilidade-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-badge::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cursor-icon {
    display: none;
  }
}
@media (max-width: 990px) {
    .img-left, .img-right{
        width: 300px;
        margin: 0 auto;
    }
  .div-center {
    width: auto;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .div-center-title{
    font-size: 40px;
  }
}
@media (max-width: 550px) {
    .img-left{
        width: 300px;
        margin: 0 auto;
    }
  .div-center {
    width: auto;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .div-center-title{
    font-size: 40px;
  }
  #beneficios {
    margin: 80px auto;
  }
  .agilidade-grid {
    grid-template-columns: repeat(2, 2fr);
  }
  .step {
    gap: 15px;
  }
  .title-section {
    text-align: center;
    font-size: 30px;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step-number::after {
    height: 30px;
  }

  .steps {
    gap: 15px;
  }
}
