:root {
  --primary: #08e5ff;
  --secondary: #7703ff;
  --light: #f7faff;
  --dark: #1d1d27;
}

.bg-primary {
  background-color: #7703ff !important;
}

/* Sobre */
#sobre {
  padding: 110px 0 0 0;
  margin-top: -75px;
}

/* Servicos */
#servicos {
  padding: 110px 0 0 0;
  margin: 0 0 100px 0;
}

/* Projetos */
#projetos {
  padding: 110px 0 0 0;
  margin-top: 0;
}

/* Contato */
#contato {
  padding: 110px 0 0 0;
  margin-top: -90px;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

@media (max-width: 992px) {
  .back-to-top {
    right: 25px;
    bottom: 15px;
  }
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
  font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: .5s;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: var(--light) !important;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    background: linear-gradient(45deg, #7703ff, #7703ff, #08e5ff);
    position: fixed;
    width: 100%;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #ddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }

  .navbar {
    background: linear-gradient(45deg, #7703ff, #7703ff, #08e5ff);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, .1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: linear-gradient(45deg, #7703ff, #7703ff, #08e5ff);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    color: var(--primary);
  }
}


/*** Home ***/
.home-header {
  background:
    url(../img/bg-dot.png),
    url(../img/bg-dot.png),
    url(../img/bg-round.png),
    url(../img/bg-tree.png),
    url(../img/bg-bottom-hero.png);
  background-position:
    10px 10px,
    bottom 190px right 10px,
    left 55% top -1px,
    left 45% bottom -1px,
    center bottom -70px;
  background-repeat: no-repeat;
}

.cotacao-header {
  background:
    url(../img/bg-dot.png),
    url(../img/bg-dot.png),
    url(../img/bg-round.png),
    url(../img/bg-tree.png);
  background-position:
    10px 10px,
    bottom 70px right 10px,
    left 55% top -1px,
    left 25% bottom -1px;
  background-repeat: no-repeat;
}


/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 4px;
  bottom: 0;
  left: 0;
  background: var(--secondary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  bottom: 0;
  left: 50px;
  background: var(--secondary);
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -25px;
}

.section-title.text-center::after {
  left: 50%;
  margin-left: 25px;
}

.section-title h6.text-primary {
  color: var(--secondary) !important;
  font-size: 28px;
}

.section-title h6 .text {
  margin-left: 10px;
}

.section-title h6::before,
.section-title h6::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 6px;
  left: 0;
  background: rgba(119, 3, 255, .5);
}

.section-title h6::after {
  top: 10px;
  left: 7px;
}


/*** Service ***/
.service-item {
  position: relative;
  height: 350px;
  padding: 30px 25px;
  background: #FFFFFF;
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
}

.service-item:hover {
  background: linear-gradient(120deg, #08e5ff, #08e5ff, #7703ff);
}

.service-item .service-icon {
  margin: 0 auto 20px auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  background: linear-gradient(45deg, #7703ff, #08e5ff);
  border-radius: 20px;
  transition: .5s;
}

.service-item:hover .service-icon {
  color: var(--primary);
  background: #fff;
}

.service-item h5,
.service-item p {
  transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
  color: var(--light);
}

.service-item a.btn {
  position: relative;
  display: flex;
  color: var(--light);
  transition: .5s;
  z-index: 1;
}

.service-item:hover a.btn {
  color: var(--primary);
}

.service-item a.btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 35px;
  top: 0;
  left: 0;
  border-radius: 35px;
  background: linear-gradient(45deg, #7703ff, #08e5ff);
  transition: .10s;
  z-index: -1;
}

.service-item:hover a.btn::before {
  width: 100%;
  background: var(--light);
}


/*** Testimonial ***/
.newsletter,
.testimonial {
  background:
    url(../img/bg-top.png),
    url(../img/bg-bottom.png);
  background-position:
    left top,
    right bottom;
  background-repeat: no-repeat;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--light) !important;
  border-color: var(--light);
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #888888;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
  color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
  color: var(--dark) !important;
}

.testimonial .text-tec {
  min-height: 140px;
}

.newsletter .metodologias {
  height: 250px;
}

.newsletter .img-metodologia {
  height: 250px;
}

@media (max-width: 992px) {
  .newsletter .metodologias {
    height: auto;
    padding: 40px 10px;
  }
}

/*** Contato ***/
#contato .btn-primary {
  background: linear-gradient(45deg, #7703ff, #7703ff, #08e5ff);
  border: 0;
}

/*** Footer ***/
.footer {
  background: url(../img/footer.png) center center no-repeat;
  background-size: contain;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, .1);
  border-radius: 40px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .badge-l2 {
  max-height: 150px;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 0;
  border-radius: 16px;
}

::-webkit-scrollbar-track {
  background-color: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background-color: #5404b3;
  outline: 1px solid var(--secondary);
}

/* envio de formularios */
.php-email-form .error-message {
  background: #ed3c0d;
  border-radius: 10px;
  color: #fff;
  display: none;
  padding: 10px 15px;
  text-align: left;
}

.php-email-form .error-message br+br {
  margin-top: 25px;
}

.php-email-form .sent-message {
  background: #18d26e;
  border-radius: 10px;
  color: #fff;
  display: none;
  padding: 10px 15px;
  text-align: center;
}

.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}