section.titulo-page {
  background-image: url("../../images/bg-title-page2.png"), linear-gradient(to right, #7F47DD, #342670);
  background-repeat: no-repeat;
  background-position: right top;
  padding: 130px 0;
}

section.titulo-page h1 {
  margin-top: 30px;
}

section.titulo-page p {
  font-size: 19px;
  padding: 0 120px;
}

section.form h2 {
  color: var(--purple);
  font-size: 40px;
}

.card-acoes {
  padding: 20px 40px;
  background: #fff;
  border-radius: 20px;
  margin-top: -40px;
}

section.simulador {
  padding: 0;
  text-align: left;
  background: #fafafa;
}

section.simulador h5 {
  color: var(--purple);
  margin-bottom: 20px;
}

section.simulador .card {
  background: #F9F9F9;
  text-align: left;
}

section.simulador .card .card-body {
  padding: 35px 20px 20px;
}

section.simulador .texto {
  font-size: 18px;
  line-height: 27px;
}

section.conteudo {
  background: #fafafa;
}

.bg-letra {
  float: left;
  width: 50px;
  height: 50px;
  padding: 10px;
  line-height: 30px;
  background: #EBEBEB;
  color: #737373;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  margin-right: 15px;
}

.accordion-body {
  padding: 20px 50px;
  background: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.accordion-button {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  text-align: left;
  border-radius: 16px;
  transition: all .35s;
  background: #fff;
}

.accordion-button::before {
  content: "";
  background-image: url("../../images/icone-select.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  width: 16px;
  height: 10px;
  margin-right: 15px;
  margin-left: 5px;
  transition: all .35s;
}

.accordion-button:not(.collapsed)::before {
  background-image: url("../../images/icone-select.svg");
  transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-collapse .accordion-body .form-check-label {
  font-size: 16px !important;
  margin-left: 10px;
}

.form-label-group .form-check label {
  left: 0;
}

section.contato {
  background-image: url("../../images/bg-2.png"), linear-gradient(to right, #F2F9FD, #e8f4fc);
  background-repeat: no-repeat;
  background-position: left bottom;
}

section.contato h2 {
  color: var(--primary);
  font-size: 40px;
}

section.contato p {
  font-size: 18px;
  line-height: 27px;
}

section.solucoes .card .card-body {
  min-height: 240px;
  position: relative;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
}

.step:first-child {
  padding-top: 0 !important;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

.last-step {
  margin-right: 0;
}

.steps-sm .step-number {
  width: 21px;
  height: 21px;
}

.step-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #DEDEDE;
  color: #fff;
  z-index: 2;
}

.step.active .step-number {
  background-color: var(--purple);
}

.steps-sm .step-number .step-number-inner {
  font-size: 14px;
}

.step-number .step-number-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
}

.step::before,
.step::after {
  content: "";
  position: absolute;
  left: calc(1.2rem*.5);
  width: 2px;
  height: 100%;
}

.step.active:not(:last-child)::after {
  background-color: var(--purple);
}

.step:not(:last-child)::after {
  background-color: #e2e5f1;
}

.step::before {
  top: 0;
}

.step::after {
  top: 50%;
}

/* Media */
@media (max-width: 991px) {
  section.contato {
    padding: 50px 0;
    margin-top: 0;
  }
}

@media (max-width: 400px) {
  .accordion-button {
    padding: 10px;
    font-size: 18px;
  }

  .accordion-body {
    padding: 20px;
  }
}

@media (min-width:768px) {
  .steps-horizontal-md.steps {
    flex-direction: row;
    margin-right: calc(1.5rem*-1);
    margin-left: calc(1.5rem*-1);
  }

  .steps-horizontal-md .step {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 1.5rem;
  }

  .steps-horizontal-md .step-number {
    margin-bottom: 1.5rem;
    margin-right: auto;
    margin-left: auto;
  }

  .steps-horizontal-md.steps-sm .step::before,
  .steps-horizontal-md.steps-sm .step::after {
    top: calc(1.2rem*.5);
  }

  .steps-horizontal-md .step::after {
    left: 1.5rem;
    width: 100%;
  }

  .steps-horizontal-md .step::before,
  .steps-horizontal-md .step::after {
    top: calc(1.2rem*.5);
    height: 2px;
  }

  .steps-horizontal-md .step-number.last-start {
    margin-right: auto;
    margin-left: 0;
  }

  .steps-horizontal-md .step-number.last-step {
    margin-right: 0;
    margin-left: auto;
  }

  .step:last-child::after {
    background-color: #e2e5f1;
    width: 81% !important;
  }

  .step.active:last-child::after {
    background-color: var(--purple);
    width: 81% !important;
  }

  section.simulador {
    text-align: center;
  }
}

#accordion .form-check-input:checked {
  background-color: #47dd6e;
}

.img-check{
  float: left;
  left: 83px;
  position: absolute;
  top: 16px;
}

.bg-purple{
  background: #7F47DD;
  color: #fff;
}