

/** posicionamento-section **/

.posicionamento-section{
  text-align: start;
  position: relative;
  padding: 110px 0px;
  background: #fff;
}

.posicionamento-section .upper-box{
  max-width: 760px;
  margin: 0 0 60px 0;
}

.posicionamento-section .upper-box .mini-kicker{
  display: block;
}

.posicionamento-section .upper-box .sec-title:before{
  left: 50%;
  transform: translateX(-50%);
}

.posicionamento-intro{
  font-size: 17px;
  line-height: 28px;
  color: var(--text-color);
  margin-top: 24px;
}

.posicionamento-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.posicionamento-card{
  position: relative;
  background: #f5f8fa;
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 400ms ease;
}

.posicionamento-card:hover{
  background: #fff;
  box-shadow: 0px 10px 30px 0px rgba(5, 65, 86, 0.08);
  transform: translateY(-6px);
}

.posicionamento-number{
  display: block;
  font-family: var(--text-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 18px;
}

.posicionamento-card h3{
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 10px;
}

.posicionamento-card p{
  font-size: 15px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.45);
}

.posicionamento-quote{
  position: relative;
  margin: 0 auto;
  background: #f5f8fa;
  border-radius: 30px;
  text-align: center;
  padding: 60px 60px 44px 60px;
}

.posicionamento-quote .icon-box{
  position: absolute;
  display: inline-block;
  width: 69px;
  height: 69px;
  line-height: 69px;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: #fff;
  font-size: 21px;
  text-align: center;
  border-radius: 50%;
}

.posicionamento-quote .mini-kicker{
  display: block;
}

.posicionamento-quote p{
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 20px;
}

.posicionamento-author{
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.40);
}

@media only screen and (max-width: 991px){
  .posicionamento-grid{
    grid-template-columns: 1fr;
  }

  .posicionamento-quote{
    padding: 50px 30px 34px 30px;
  }
}

@media only screen and (max-width: 767px){
  .posicionamento-section{
    padding: 70px 0px;
  }
}
