@charset "UTF-8";
.banner {
  height: calc(100vh - 14px);
}
.banner .banner-text p {
  color: #fff;
}
.banner .banner-text p.small {
  font-size: 18px;
  font-weight: var(--bold);
}
@media screen and (max-width: 768px) {
  .banner .banner-text p.small {
    font-size: 20px;
  }
}
.banner .banner-text p.big {
  font-size: 80px;
  font-weight: var(--extra-bold);
  line-height: 80px;
}
@media screen and (max-width: 768px) {
  .banner .banner-text p.big {
    font-size: 55px;
    line-height: 55px;
  }
}
.banner .banner-text a {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  border: 3px solid #8fc438;
  padding: 17px 20px 23px;
  border-radius: 50px;
  font-size: 20px;
  width: 80%;
  text-decoration: none;
  transition: all 0.4s ease;
}
.banner .banner-text a:hover {
  background-color: #8fc438;
}
.banner .bg-banner {
  position: absolute;
  top: -105%;
  right: -50%;
  animation: rotate 120s linear infinite;
}
@media (max-width: 768px) {
  .banner {
    background-image: url(../../img/bg-banner-mob.svg);
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: no-repeat;
  }
  .banner .banner-text p.small {
    font-size: 14px;
  }
  .banner .banner-text p.big {
    font-size: 43px;
  }
  .banner .banner-text a {
    font-size: 14px;
    width: 100%;
    padding: 11px 30px 14px;
  }
}

#inovacao {
  background-image: url(../../img/bg_inovacao.png);
  background-repeat: no-repeat;
  margin-bottom: 117px;
}
#inovacao .title {
  margin-top: 148px;
  text-align: center;
  margin-bottom: 80px;
}
#inovacao .title h1 {
  font-size: 40px;
  margin-bottom: 38px;
}
#inovacao .title p {
  font-size: 24px;
  color: #6c6c6c;
}
#inovacao #accordion .heading {
  margin-bottom: 25px;
  padding-left: 20px;
}
#inovacao #accordion .heading h2 {
  font-size: 22px;
  font-weight: bold;
  color: #00b1bb;
  cursor: pointer;
  margin-bottom: 14px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
}
#inovacao #accordion .heading h2::before {
  content: "-";
  font-weight: 700;
  font-size: 33px;
  position: absolute;
  margin-left: -22px;
  color: #484f59;
  margin-top: -7px;
}
#inovacao #accordion .heading h2[aria-expanded=false]::before {
  content: "+";
  font-weight: 700;
  font-size: 33px;
  position: absolute;
  margin-left: -22px;
  color: #484f59;
  margin-top: -7px;
}
#inovacao #accordion .heading p {
  font-size: 16px;
  color: #707777;
}
#inovacao #accordion ul {
  position: relative;
  list-style: none;
  padding: 0;
}
#inovacao #accordion ul::before {
  content: "";
  border-left: 1px solid #cccccc;
  position: absolute;
  height: calc(100% - 36px);
  margin-top: 20px;
  margin-left: -13px;
}
#inovacao #accordion ul li {
  font-size: 15px;
  color: #707777;
  line-height: 20px;
  margin-bottom: 25px;
}
#inovacao #accordion ul li::before {
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #cccccc;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  width: 0.7em;
  margin-left: -0.7em;
  font-size: 2.6rem;
}
#inovacao #accordion .btn-inova {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #30bcca;
  border: 3px solid #30bcca;
  background-color: #fff;
  border-radius: 34px;
  height: 67px;
  text-decoration: none;
  margin-top: 60px;
  transition: all 0.4s ease;
}
#inovacao #accordion .btn-inova:hover {
  background-color: #30bcca;
  color: #fff;
}
@media (max-width: 768px) {
  #inovacao {
    margin-bottom: 61px;
  }
  #inovacao .title {
    margin-top: 65px;
    text-align: left;
    margin-bottom: 21px;
  }
  #inovacao .title h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #inovacao .title p {
    font-size: 20px;
  }
  #inovacao #accordion .btn-inova {
    margin-top: 37px;
    height: 50px;
  }
}

#work {
  background-image: linear-gradient(to bottom right, #8fc438, #30bcca 75%);
  text-align: center;
  padding: 65px 0 87px;
  margin-bottom: 176px;
}
#work h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 28px;
  color: #fff;
}
#work p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 38px;
}
#work a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  height: 67px;
  border: 3px solid #fff;
  border-radius: 34px;
  text-decoration: none;
  transition: all 0.4s ease;
}
#work a:hover {
  background-color: #fff;
  color: #00b1bb;
}
@media (max-width: 768px) {
  #work {
    padding: 54px 15px 64px;
    text-align: left;
    margin-bottom: 32px;
  }
  #work h1 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  #work p {
    font-size: 16px;
  }
  #work a {
    height: 50px;
    font-size: 18px;
  }
}

.clients {
  margin-bottom: 196px;
}
.clients h2 {
  margin-bottom: 33px;
}
.clients p {
  font-size: 24px;
  margin-bottom: 73px;
  color: #6c6c6c;
}
.clients .client {
  margin-bottom: 20px;
  outline: none;
}
.clients .client img {
  filter: grayscale(1) opacity(0.5);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.16);
  transition: 0.4s ease;
}
.clients .client:hover img {
  filter: grayscale(0) opacity(1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .clients {
    margin-bottom: 49px;
  }
  .clients h2 {
    font-size: 30px;
    margin-bottom: 11px;
    margin-left: 9px;
  }
  .clients p {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .clients .client.slick-active img {
    filter: grayscale(0) opacity(1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.carousel .slick-arrow {
  position: absolute;
  background-color: unset;
  border: none;
  outline: none;
  top: 35%;
  font-size: 15px;
  line-height: 0;
  opacity: 0.8;
  color: #d5d5d5;
  transition: all 0.4s ease;
}
.carousel .slick-arrow:hover {
  opacity: 1;
}
.carousel .slick-prev {
  transform: rotate(180deg);
  left: -15px;
}
.carousel .slick-next {
  right: -15px;
}

.posts-home {
  margin-top: -30px;
  padding-top: 177px;
  margin-bottom: 177px;
  background-image: url(../../img/bg_inovacao.png);
  background-repeat: no-repeat;
}
.posts-home .title {
  margin-bottom: 30px;
}
.posts-home .subtitle {
  margin-bottom: 55px;
  font-size: 24px;
}
.posts-home .post-first {
  text-decoration: none;
  margin-bottom: 30px;
}
.posts-home .post-first article {
  height: 390px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  overflow-y: hidden;
  transition: all 0.4s ease;
}
.posts-home .post-first article:hover .img img {
  filter: grayscale(0);
}
.posts-home .post-first article .img {
  position: absolute;
}
.posts-home .post-first article .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to right, #000 20%, #ffffff00);
}
.posts-home .post-first article .img img {
  filter: grayscale(1);
  transition: all 0.4s ease;
}
.posts-home .post-first article .title-post h1 {
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 14px;
  color: #fff;
}
.posts-home .post-first article .title-post span {
  height: 1px;
  background-image: linear-gradient(to left, #8fc438, #00b1bb);
  display: block;
}
.posts-home .post {
  text-decoration: none;
}
.posts-home .post article:hover .img img {
  filter: grayscale(0);
}
.posts-home .post article .img img {
  filter: grayscale(1);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.posts-home .post article .title-post {
  padding: 0;
}
.posts-home .post article .title-post h1 {
  font-size: 18px;
  font-weight: normal;
  color: #6c6c6c;
}
.posts-home .btn-blog {
  font-size: 20px;
  color: #30bcca;
  height: 67px;
  border: 3px solid #30bcca;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.posts-home .btn-blog:hover {
  background-color: #30bcca;
  color: #fff;
}
@media (max-width: 768px) {
  .posts-home {
    padding-top: 49px;
    margin-bottom: 50px;
  }
  .posts-home .title {
    font-size: 30px;
    margin-bottom: 13px;
  }
  .posts-home .subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .posts-home .post-first article {
    height: 143px;
  }
  .posts-home .post-first article .title-post h1 {
    font-size: 24px;
  }
  .posts-home .post-first article .img img {
    filter: grayscale(0);
  }
  .posts-home .post-first article .img img::after {
    background-image: linear-gradient(to right, #000, #ffffff00 70%);
  }
  .posts-home .carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    display: flex;
  }
  .posts-home .carousel .item {
    margin-top: 12px;
    scroll-snap-align: start;
    flex-shrink: 0;
    margin-right: 15px;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85vw;
  }
  .posts-home .carousel .item .post article .title-post h1 {
    font-size: 16px;
  }
  .posts-home .carousel .item .post article .img img {
    max-width: 85vw;
    filter: grayscale(0);
  }
  .posts-home .btn-blog {
    margin-top: 20px;
    height: 50px;
    font-size: 18px;
  }
}

.parceiros {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .parceiros {
    margin-bottom: 49px;
  }
  .parceiros h2 {
    font-size: 30px;
    margin-bottom: 11px;
    margin-left: 9px;
  }
  .parceiros p {
    font-size: 16px;
    margin-bottom: 14px;
  }
}

.contact {
  margin-bottom: 5%;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

/*# sourceMappingURL=home.css.map */
