/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/
:root {
  --fonte-principal: magistral, sans-serif;
  --fonte-de-apoio: quicksand, sans-serif;
  --cor-principal-orange-huffix: #FA4616;
  /* --cor-principal-grey-huffix: #919D9D; */
  --cor-principal-grey-huffix: #606060;
  --cor-de-apoio-1: #9400d3;
  --cor-de-apoio-2: #009fe3;
  --cor-de-apoio-3: #00c0a3;

  --cor-semelhante-1: #848484;

  --font-size-h1: calc(4.5rem - .6vw);
  --font-size-h2: calc(2.5rem - .6vw);
  --font-size-h3: 32px;
  --font-size-h4: 20px;
  --font-size-p: 18px;
  --font-accordion-h2: calc(1.8rem - .6vw);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all .2s ease-in-out
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 3px 3px 4px #999;
  color: #fff !important
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--fonte-principal);
  color: var(--cor-principal-grey-huffix);
}

b,
strong {
  font-weight: bolder;
  color: var(--cor-principal-orange-huffix);
  display: contents;
}

a {
  color: var(--cor-principal-orange-huffix);
  text-decoration: none;
}

a:hover {
  color: var(--cor-principal-orange-huffix);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fonte-de-apoio);
  font-weight: 700;
}


/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
.logo {
  width: 250px;
  margin-bottom: 0px;
  margin-top: -70px;
  padding: 20px;
  border-radius: 10px;
  background-image: linear-gradient(182deg, #919d9d, transparent);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid var(--cor-principal-orange-huffix);
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: var(--font-size-h2);
  font-weight: 900;
  padding: 0;
  line-height: normal;
  margin: 0 0 5px 0;
  color: #000;
  display: grid;
  text-transform: uppercase;
}

.section-title p {
  font-size: var(--font-size-p);
  font-weight: 700;
  padding: 0;
  line-height: 25px;
  margin-top: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  display: grid;
}

/*--------------------------------------------------------------
#  BotÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â£o de CTA
--------------------------------------------------------------*/
.cta-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: calc(2.2rem - .6vw);
  display: inline-block;
  border: 2px solid var(--cor-principal-orange-huffix);
  background: var(--cor-principal-orange-huffix);
}

.cta-btn:hover {
  background-color: var(--cor-de-apoio-3);
  color: #fff;
  border-color: var(--cor-de-apoio-3);
  border-radius: 25px;
}

.form-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: calc(2.2rem - .6vw);
  display: inline-block;
  border: 2px solid var(--cor-principal-orange-huffix);
  background: var(--cor-principal-orange-huffix);
  padding: 6px 15px 6px 15px;
  margin-right: 0;
  font-size: 22px;
}

.form-btn:hover {
  background-color: var(--cor-de-apoio-3);
  color: #fff;
  border-color: var(--cor-de-apoio-3);
  border-radius: 25px;
}

@media (max-width: 992px) {
  .cta-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }

  .form-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: transparent;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .top {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: absolute;
  bottom: 0;
  top: 60px;
  left: 0px;
  right: 0px;
}

#hero .top-2 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: absolute;
  bottom: 0;
  top: 60px;
  left: 0px;
  right: 0px;
}

#hero .center-1 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: absolute;
  bottom: 0;
  top: 160px;
  left: 0px;
  right: 0px;
}

#hero .center-1 .card-slaid{
  margin: 0 auto;
}

#hero .carousel-container .container-fluid {
  margin-left: 0px;
}

#hero .carousel-container .container-fluid .card-slaid {
  text-align: center;
  background: #919d9de0;
  padding: 25px;
  border-radius: 10px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 18px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #d9232d;
}

#hero .btn-get-started {
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: var(--cor-de-apoio-2);
  width: 100%;
  text-align: center;
  font-weight: 700;
}

#hero .btn-get-started:hover {
  background: var(--cor-principal-orange-huffix);
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 8px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# sec-1 Section
--------------------------------------------------------------*/
#sec-1 {
  width: 100%;
  height: 100vh;
  background: url("../img/banner/banner-2.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

.h1-banner-758{
  color: #fff;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}

#sec-1:before {
  content: "";
  background: rgb(0 0 0 / 28%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#sec-1 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#sec-1 h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#sec-1 .btn-get-started {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: var(--cor-principal-orange-huffix);
  border: 2px solid var(--cor-principal-orange-huffix);
}

#sec-1 .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}

@media (max-width: 768px) {
  #sec-1 {
    text-align: center;
    padding-top: 58px;
  }

  #sec-1 h1 {
    font-size: 28px;
  }

  #sec-1 h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #sec-1 {
    height: 120vh;
  }
}



/*--------------------------------------------------------------
# sec-2
--------------------------------------------------------------*/
.sec-2 {
  padding: 60px 0px 60px 0px;
}

.sec-2 .container {
  background-color: #f7f8f9;
  padding: 60px 50px;
}

@media (max-width: 992px) {
  .sec-2 .container {
    padding: 30px;
  }
}

.sec-2 .content h3 {
  font-weight: 400;
  font-size: 20px;
  color: #364146;
  font-family: "Poppins", sans-serif;
}

.sec-2 .content ul {
  list-style: none;
  padding: 0;
}

.sec-2 .content ul li {
  padding-bottom: 10px;
}

.sec-2 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #28a745;
}

.sec-2 .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
    # sec-4
    --------------------------------------------------------------*/
.sec-4-grid,
.testimonials-grid {
  list-style: none;
  overflow: hidden
}

.sec-4 {
  padding-bottom: 30px;
  padding-top: 0;
}

.clients-slider {
  display: none;
}

.sec-4-img-item {
  text-align: center;
  border: 1px solid #ebebeb;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.sec-4-swiper-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  padding: 35px;
}

.sec-4-grid li,
.testimonials-grid li {
  float: left;
  position: relative;
  width: 20%;
  padding: 20px 0;
  -webkit-backface-visibility: hidden
}

.sec-4-grid.grid-2 li {
  width: 50%;
  padding: 25px 0
}

.sec-4-grid.grid-3 li {
  width: 33.33%
}

.sec-4-grid.grid-4 li {
  width: 25%
}

.sec-4-grid.grid-6 li {
  width: 16.66%;
  height: 150px;
}

.sec-4-grid li a {
  opacity: .6
}

body:not(.device-touch) .sec-4-grid li a {
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease
}

.sec-4-grid li a:hover {
  opacity: 1
}

.sec-4-grid li a,
.sec-4-grid li img {
  display: block;
  width: 75%;
  margin-left: auto;
  margin-right: auto
}

.sec-4-grid li a img {
  width: 75%;
}

.sec-4-grid li:after,
.sec-4-grid li:before {
  content: '';
  position: absolute
}

.sec-4-grid li:before {
  height: 100%;
  top: 0;
  left: -1px;
  border-left: 1px dashed #ddd
}

.sec-4-grid li:after {
  width: 100%;
  height: 0;
  top: auto;
  left: 0;
  bottom: -1px;
  border-bottom: 1px dashed #ddd
}

.sec-4-grid img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}




/*--------------------------------------------------------------
# sec-indicadores
--------------------------------------------------------------*/
.sec-indicadores {
  padding: 10px 0 10px;
}

.sec-indicadores .count-info {
  width: 100%;
}

.sec-indicadores .count-box {
  display: block;
  align-items: center;
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  min-height: 300px ;
  height: auto;
}

.sec-indicadores .count-box img {
  width: 74px;
  background: var(--cor-de-apoio-2);
  border-radius: 50px;
  padding: 14px;
  line-height: 0;
  margin-right: 5px;
  margin-left: -5px;
}

.sec-indicadores .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--cor-de-apoio-1);
}

.sec-indicadores .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
}

@media (max-width: 991px) {
  .sec-indicadores .image {
    text-align: center;
  }

  .sec-indicadores .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .sec-indicadores .image img {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# sec-6
--------------------------------------------------------------*/
.sec-6 {
  padding: 0;
  margin-top: 40px;
}

.sec-6 .container {
  background-color: #f7f8f9;
  padding: 60px 50px;
}

@media (max-width: 992px) {
  .sec-6 .container {
    padding: 30px;
  }
}

.sec-6 .content h3 {
  font-weight: 400;
  font-size: 32px;
  color: #364146;
  font-family: "Poppins", sans-serif;
}

.sec-6 .content ul {
  list-style: none;
  padding: 0;
}

.sec-6 .content ul li {
  padding-bottom: 10px;
}

.sec-6 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #28a745;
}

.sec-6 .content p:last-child {
  margin-bottom: 0;
}

.form-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: calc(2.2rem - .6vw);
  display: inline-block;
  border: 2px solid var(--cor-de-apoio-2);
  background: var(--cor-de-apoio-2);
  padding: 6px 15px 6px 15px;
  margin-right: 0;
  font-size: 22px;
}

/*--------------------------------------------------------------
# sec-7
--------------------------------------------------------------*/
.sec-7 .swiper-pagination {
  margin-bottom: 25px;
}

.sec-7-swiper-img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: var(--cor-principal-orange-huffix);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--cor-principal-orange-huffix);
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--cor-principal-orange-huffix);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--cor-principal-orange-huffix);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--cor-principal-orange-huffix);
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}



/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding-top: 0;
}

.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
  border: 1px solid var(--color-white);
  overflow: hidden;
  z-index: 1;
  height: 198px !important;
}

.portfolio .portfolio-item img {
  transition: all 0.3s;
}

.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(var(--color-secondary-rgb), 0.8);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(45deg, #000000a6, transparent);
  padding: 6px;
  border-radius: 3px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-white);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}






@media (pointer: coarse) {

  .sec-4-grid {
    display: none;
  }

  .clients-slider {
    display: block;
  }

  #sec-7 {
    padding-top: 40px;
  }

  #hero .carousel-item-1{
    background-position-x: 27.5% !important;
  }
  

  #hero .top {
    position: absolute;
    bottom: 0;
    top: 60px;
    left: 0px;
    right: 0px;
    align-items: baseline;
  }
  
  #hero .top-2 {
    bottom: 0;
    top: 80px;
    left: 0px;
    right: 0px;
    align-items: baseline;
  }
  
  #hero .center-1 {
    bottom: 0;
    top: 60px;
    left: 0px;
    right: 0px;
    align-items: baseline;
  }

  #hero p {
    display: none;
  }
}