/*--------------------------------------------------------------
# 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);
}

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(315deg, #000000a6, 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;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #000;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--cor-de-apoio-2);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
}

.section-bg {
  /* padding: 120px 0; */
  background-color: #f3f5fa;
}

/*--------------------------------------------------------------
#  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;
  }
}

@media (pointer: coarse) {}


/*--------------------------------------------------------------
# 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: -15px;
  right: 50px;
}

#hero .carousel-container .card-slaid {
  /* #hero .carousel-container .container .col-md-4 { */
  text-align: center;
  background: linear-gradient(315deg, #000000, transparent);
  padding: 25px;
  border-radius: 10px;
}

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

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 48px;
  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: var(--cor-principal-orange-huffix);
}

#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;
  }
}


/*--------------------------------------------------------------
# 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;
}

.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;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
}

.services .icon-box i {
  float: left;
  color: #d9232d;
  font-size: 40px;
}

.services .icon-box h2 {
  font-weight: 700;
  font-size: 1.4rem;
}

.services .icon-box h2 a {
  color: var(--cor-principal-grey-huffix);
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 0px;
  line-height: 24px;
  font-size: 16px;
}

.services .icon-box:hover h4 a {
  color: #d9232d;
}

.services .icon-box {
  background-color: #f8f9fa;
  height: 100%;
}


/*--------------------------------------------------------------
# Vantagens
--------------------------------------------------------------*/
.vantagens .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
}

.vantagens .icon-box .icon img {
  background: transparent;
  padding: 8px;
  border-radius: 50px;
  border: 2px solid var(--cor-de-apoio-2);
}

.vantagens .icon-box .icon {
  margin-bottom: 10px;
}

.vantagens .icon-box .icon i {
  color: var(--cor-de-apoio-2);
  font-size: 36px;
  transition: 0.3s;
}

.vantagens .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
}

.vantagens .icon-box h4 a {
  color: #000000;
  transition: ease-in-out 0.3s;
}

.vantagens .icon-box p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.vantagens .icon-box:hover {
  transform: translateY(-10px);
}

.vantagens .icon-box:hover h4 a {
  color: #47b2e4;
}


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

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

.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);
}


/*--------------------------------------------------------------
# cases
--------------------------------------------------------------*/
.cases .case-item {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.cases .case-item .pic {
  overflow: hidden;
  width: 100%;
  border-radius: 3px;
}

.cases .case-item .pic img {
  transition: ease-in-out 0.3s;
}

.cases .case-item:hover {
  transform: translateY(-10px);
}

.cases .case-item .case-item-info {
  padding-left: 30px;
}

.cases .case-item h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.cases .case-item span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.cases .case-item span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.cases .case-item p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.cases .case-item .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cases .case-item .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.cases .case-item .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.cases .case-item .social a:hover {
  background: #47b2e4;
}

.cases .case-item .social a:hover i {
  color: #fff;
}

.cases .case-item .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# 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-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-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;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  /* background: url("../img/depoimentos-bg.webp") no-repeat; */
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(169deg, #000000, transparent);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 18px;
  color: #ddd;
  margin: 6px 0px 15px 0px;
  border-bottom: 1px solid #c4c4c463;
  line-height: 2;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
  font-size: 22px;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--cor-de-apoio-2);
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (pointer: coarse) {

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

  .clients-slider {
    display: block;
  }

  #hero .carousel-container {
    justify-content: center;
    align-items: center;
    bottom: 0;
    top: 60px;
    left: 0px;
    right: 0;
  }
}