header .logo-desktop,
header .logo-mobile-menu {
  margin: 1.4rem 0
}

@media screen and (min-width: 992px) {
  header:not(.headerFixed) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  header:not(.headerFixed) #header-nav {
    background-color: transparent;
    border-bottom: 1px solid #FFFFFF25;
  }

  header:is(.headerFixed) #header-nav {
    background-color: transparent;
    border-bottom: 1px solid #FFFFFF25;
  }

  header .nav-link {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    color: var(--grey);
    position: relative;
  }

  header .navbar-nav .nav-link.active,
  header .nav-link:hover,
  header .nav-link:focus-visible {
    color: var(--light);
  }

  header .nav-link::before {
    content: '';
    width: 0;
    height: 2px;
    display: block;
    background: var(--tertiary-color);
    position: absolute;
    bottom: 0;
    left: 5%;
    transition: .3s;
  }

  header .nav-link:hover::before,
  header .nav-link:focus-visible::before,
  header .nav-link.active::before {
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--primary-color);
  }
}

/* FOOTER */
footer {
  background-image: linear-gradient(rgba(3, 34, 27, 0.95), rgba(3, 34, 27, 0.95)), url(../imagens/footer-bg.webp);
  background-position: center center;
  background-size: cover;
}

footer .logo-desktop {
  max-width: 200px;
}

footer h3 {
  margin-top: 0;
  font-size: 1.125rem;
  color: var(--light)
}

footer .footer__nav li a:not(.btn) {
  display: block;
  padding: 5px 0;
  font-size: 1rem;
  color: var(--light);
  transition: .3s
}

footer .footer__nav li a i {
  font-size: 1rem
}

footer .footer__nav li a:hover {
  color: var(--primary-color-light)
}

footer .address :is(span, a):not(.btn) {
  color: var(--light);
  font-size: .875rem;
  line-height: 25px;
  transition: .3s
}

footer .address a:not(.btn):hover {
  color: var(--primary-color-light)
}

.copyright-footer {
  border-top: 1px solid #FFFFFF25;
  padding: 50px 0;
}

.copyright-footer .btn.selos {
  min-height: unset;
}

@media screen and (max-width: 992.05px) {
  footer .social {
    justify-content: center;
  }
}

.card.card--23 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-flow: column nowrap;
  gap: 1rem;
  background-color: var(--dark);
  background-image: linear-gradient(-45deg, var(--dark), var(--grey)), var(--card-background);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply, normal;
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  height: 100%
}

.card.card--23:focus-within,
.card.card--23:hover {
  box-shadow: 0 0 0 2px var(--secondary-color)
}

.card.card--23 .card__title {
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 0 0 .25rem var(--dark);
  margin: 0;
  min-height: calc(1.25rem * 2 * 1.3)
}

.card.card--23 .card__link {
  z-index: 1;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  padding: .5rem .75rem;
  font-size: .875rem;
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--light);
  font-weight: 600;
  border: 2px solid currentColor;
  border-radius: 99px
}

.card.card--23 .card__link>span {
  width: 0;
  max-width: fit-content;
  opacity: 0;
  transition: var(--transition)
}

.card.card--23 .card__link:focus>span,
.card.card--23 .card__link:hover>span {
  width: 100px;
  opacity: 1;
  margin-right: .5rem
}

.card.card--23 .card__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  backface-visibility: visible
}

.card.card--23 .card__link:focus,
.card.card--23 .card__link:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color)
}

.shadow-19 {
  box-shadow: rgba(50, 50, 93, .25) 0 2px 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px
}

.title-subtitle {
  margin-bottom: 0
}

.title-subtitle span {
  display: block;
  font-size: .9rem;
  color: #000;
  line-height: 1rem;
  letter-spacing: .25rem;
  text-transform: uppercase
}

/* ================= CLIENTES ================= */
.clientes .clientes__item {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden
}

.clientes .clientes__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 auto;
  opacity: .75;
  border-radius: var(--bs-border-radius-sm);
  transition: opacity var(--transition)
}

.clientes .clientes__item:hover img {
  opacity: 1
}

/* ================= DEPOIMENTOS ================= */
.testimonial .testimonial-author-image {
  width: 100%;
  max-width: 64px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 999px;
}

.card-contact {
  position: relative;
  min-height: 250px;
  row-gap: 20px;
  overflow: hidden;
}

.card-contact .icon-contact {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--primary-color-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.card-contact:hover .icon-contact {
  background: #fff;
}

.card-contact .icon-contact img {
  transition: all 0.5s ease-in-out;
}

.card-contact:hover .icon-contact img {
  filter: brightness(0) invert(0);
}

.card-contact :is(h3, p, a, i, address) {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

.card-contact:hover :is(h3, p, a, i, address) {
  color: #fff;
}

.card-contact:hover .icon-contact {
  background: #fff;
}

.card-contact:hover::before {
  height: 100%;
  border-radius: 0;
}

.card-contact::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color-light);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

/* ===============================
   BOTÕES BASE
================================= */

.btn-primary-color,
.btn-secondary-color,
.btn-secondary-color--banner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: capitalize;
  border: none;
  padding: 17px 50px 17px 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 0;
  transition: background-color 0.4s ease,
    color 0.3s ease;
}

/* ===============================
   ÍCONE
================================= */

.btn-primary-color::before,
.btn-secondary-color::before,
.btn-secondary-color--banner::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  background-image: url('../imagens/icones/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.btn-primary-color::after,
.btn-secondary-color::after,
.btn-secondary-color--banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 0;
  height: 100%;
  transform: skewX(35deg);
  transition: width 0.4s ease,
    transform 0.4s ease,
    left 0.4s ease;
  z-index: -1;
}

.btn-primary-color {
  background-color: var(--primary-color);
}

.btn-secondary-color,
.btn-secondary-color--banner {
  background-color: var(--secondary-color);
}

.btn-primary-color::after {
  background-color: var(--secondary-color);
}

.btn-secondary-color::after {
  background-color: var(--primary-color);
}

.btn-secondary-color--banner::after {
  background-color: #fff;
}

.btn-primary-color:hover::after,
.btn-secondary-color:hover::after,
.btn-secondary-color--banner:hover::after {
  width: 120%;
  left: 0;
  transform: skewX(0deg);
}

.btn-primary-color:hover::before,
.btn-secondary-color:hover::before,
.btn-secondary-color--banner:hover::before {
  transform: translateY(-50%) translateX(5px);
}

.btn-secondary-color--banner:hover::before {
  filter: brightness(0);
}

.btn-primary-color:hover,
.btn-secondary-color:hover {
  color: #fff;
}

.btn-secondary-color--banner:hover {
  color: var(--primary-color);
}

.effect-glass-image {
  position: relative;
  overflow: hidden;
  display: block;
}

.effect-glass-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.11;
  object-fit: cover;
}

.effect-glass-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  transition: all 600ms linear;
}

.effect-glass-image:hover::after {
  height: 250%;
  transition: all 600ms linear;
}

.icon-contact {
  position: relative;
  height: 60px;
  width: 60px;
  background-color: var(--primary-color-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.footer-border {
  border-top: 1px solid #FFFFFF25;
}

.icon-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--secondary-color);
  border-radius: 50%;

  transform: scale(0);
  transition: transform 0.4s cubic-bezier(.22, .61, .36, 1);

  z-index: 0;
}

.footer-contact:hover .icon-contact::before {
  transform: scale(1);
}

.icon-contact img {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-contact:hover img {
  transform: scale(1.1);
}

.btn-social {
  background-color: var(--primary-color-light);
  color: var(--primary-color);
}

.btn-social:hover {
  background-color: #fff;
}

.btn-social--aside {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #FFFFFF25;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}

.btn-social--aside:hover {
  background: var(--primary-color-light);
  border-color: var(--primary-color-light);
  transform: translateY(-5px);
}

.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 60s linear infinite;
}

.splide-esg {
  background-color: var(--primary-color-light);
  padding: 5px 0;
}

.splide-esg span {
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 2.5rem;
  font-weight: 700;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.splide-esg span img {
  margin-right: 10px;
}

.title-animate-default {
  position: relative;
  perspective: 400px;
  overflow: hidden;
}

.title-animate-default .char {
  display: inline-block;
  transform-origin: center;
  backface-visibility: hidden;
  font-family: var(--secondary-font);
}

.title-animate-default span,
.title-animate-default div {
  pointer-events: none;
}


.our-approach {
  background: url(../imagens/section-bg-2.png) no-repeat;
  background-position: bottom left;
  background-size: 290px auto;
  padding: 20px 0;
}

@media only screen and (max-width: 991px) {
  .our-approach-content {
    position: initial;
    top: 0;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}

.our-approach-nav .nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border-bottom: 0;
}

.our-approach-nav .nav-item {
  flex: 1;
}

.our-approach-nav ul li {
  width: 33.33%;
}

.our-approach-nav .nav-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 32px 20px;

  font-size: 20px;
  font-weight: 600;

  color: var(--primary-color);

  background: transparent;
  border: none;
  border-right: 1px solid #03221B1A;

  border-top-right-radius: 0;
  border-top-left-radius: 0;

  overflow: hidden;

  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  width: 100%;
}

.our-approach-nav .nav-item:last-child .nav-link {
  border-right: none;
}

.our-approach-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color);

  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);

  z-index: -1;
}

.our-approach-nav .nav-link:hover::before,
.our-approach-nav .nav-link.active::before {
  transform: translateY(0);
}

.our-approach-nav .nav-link:hover,
.our-approach-nav .nav-link.active {
  color: #fff;
  background-color: var(--secondary-color);
}

.our-approach-nav .nav-link span {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--secondary-color);

  transition: all .35s ease;
}

.our-approach-nav .nav-link span img {
  width: 28px;
  height: 28px;

  transition: all .35s ease;

  filter: brightness(0) invert(1);
}

.our-approach-nav .nav-link:hover span,
.our-approach-nav .nav-link.active span {
  background: #fff;
  transform: scale(1.08);
}

.our-approach-nav .nav-link:hover span img,
.our-approach-nav .nav-link.active span img {
  filter: brightness(0);
}

.approach-tab-content {
  padding: 20px;
}



.approach-tab-list ul li {
  position: relative;
  line-height: 1.5em;
  text-transform: capitalize;
  padding-left: 30px;
  margin-bottom: 15px;
  background: url(../imagens/arrow-accent-secondary.svg) left center / 20px no-repeat;
  background-position: left center;
  list-style-type: none;
}

.approach-tab-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.our-approach-content {
  position: sticky;
  top: 20px;
}

.card--service {
  position: relative;
  background-color: #fff;
  border: 1px solid #03221B1A;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.card--service.active::before,
.card--service:hover::before {
  height: 100%;
  border-radius: 0;
}

.card--service::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color-light);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.card--service .card-body {
  position: relative;
  border-bottom: 1px solid #03221B1A;
  margin-bottom: 30px;
  padding-bottom: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.card--service .icon-box {
  position: relative;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color-light);
  border-radius: 50%;
  margin-bottom: 60px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.card--service .icon-box img {
  width: 100%;
  max-width: 40px;
  transition: all 0.5s ease-in-out;
}

.card--service .card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.card--service .card-body p {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: var(--grey);
}

.card--service.active .icon-box,
.card--service:hover .icon-box {
  background-color: #fff;
}

.card--service .card-btn {
  position: relative;
  z-index: 1;
}

.card--service a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: var(--secondary-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.card--service a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  transform: translateX(-3px);
  background: url(../imagens/arrow-accent-secondary.svg) no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
}

.card--service.active .icon-box img,
.card--service:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.card--service.active a::before,
.card--service:hover a::before {
  filter: brightness(0) invert(1);
}

.card--service a:hover::before {
  filter: brightness(0) invert(1);
  transform: translateX(0px);
}

.card--service.active .card-body h3,
.card--service:hover .card-body h3,
.card--service.active .card-body p,
.card--service:hover .card-body p,
.card--service.active .card-btn a,
.card--service:hover a {
  color: #fff;
}

.card--service__internal {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  background-color: #FAFAFA;
  border: 1px solid #03221B1A;
  height: 350px;
}

.card--service__internal.active::before,
.card--service__internal:hover::before {
  height: 100%;
  border-radius: 0;
}

.card--service__internal::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.card--service__internal .icon-box {
  position: relative;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color-light);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.card--service__internal .icon-box img {
  width: 100%;
  max-width: 40px;
  transition: all 0.5s ease-in-out;
}

.card--service__internal span {
  font-size: 3.5rem;
  font-weight: 700;
  opacity: 5%;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
  font-family: var(--secondary-font);
  color: var(--primary-color);
}

.card--service__internal.active .icon-box img,
.card--service__internal:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.card--service__internal :is(.card-top, .card-body) {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.card--service__internal .card-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.card--service__internal .card-body p {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: var(--grey);
}

.card--service__internal.active .icon-box,
.card--service__internal:hover .icon-box {
  background-color: #fff;
}

.card--service__internal.active .card-body h3,
.card--service__internal:hover .card-body h3,
.card--service__internal.active .card-top span,
.card--service__internal:hover .card-top span,
.card--service__internal.active .card-body p,
.card--service__internal:hover .card-body p {
  color: #fff;
}

.aside-servicos .aside__menu {
  border-radius: 20px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.article-servicos {
  float: left;
  width: 100%;
}

.aside-servicos {
  float: left;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .aside-servicos {
    float: left;
    width: 27.5%;
  }

  .article-servicos {
    float: left;
    width: 67.5%;
  }
}

.aside-servicos .aside__menu .aside__nav {
  padding: 20px;
}

.aside-servicos .aside__menu .aside-title {
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid #e1e4e4;
}

.aside-servicos .aside__menu .aside-title a {
  color: black;
  font-weight: 600;
  font-family: var(--secondary-font);
}

.aside-servicos .aside__menu .aside__nav a i {
  color: var(--primary-color-light);
}

.aside-servicos .aside__menu .aside__nav a {
  color: var(--grey);
}

.aside-servicos .aside__menu .aside__nav li i {
  color: var(--primary-color-light);
}

.aside-servicos .aside__contact {
  position: relative;
  background: url(../imagens/bg-aside.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  border-radius: 20px;
  padding: 65px 50px;
  overflow: hidden;
}

.aside-servicos .aside__contact:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 80%;
  width: 100%;
  height: 100%;
}

.aside-servicos .aside__contact .aside__content {
  position: relative;
  z-index: 1;
}

.aside-servicos .aside__contact .aside__content a {
  position: relative;
  color: #fff;
  line-height: normal;
  border: 1px solid #FFFFFF25;
  border-radius: 10px;
  padding: 9px 24px;
  overflow: hidden;
}

.aside-servicos .aside__contact .aside__content a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color-light);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.aside-servicos .aside__contact .aside__content a:hover::before {
  width: 120%;
  left: 0;
  transform: skewX(0deg);
}

.service-image {
  aspect-ratio: 1 / 1 !important;
  border-radius: 20px;
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: inherit;
  height: 400px !important;
}

.image-anime {
  position: relative;
  overflow: hidden;
  display: block;
}

.image-anime img {
  width: 100%;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* video */

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay escuro */

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
}

/* conteúdo */

.hero .container {
  position: relative;
  z-index: 2;
}

.white {
  color: #fff;
}

.hero .hero-content {
  padding: 130px 0;
}

.hero .hero-content h2 {
  font-size: 1.875rem;
}

@media only screen and (min-width: 768px) {
  .hero .hero-content h2 {
    font-size: 4.6875rem;
  }
}

.video-section__item i {
  color: var(--primary-color-light);
  font-size: 2rem;
}

.video-section__item p {
  color: #fff;
}

.splide-servicos .splide__pagination {
  bottom: -2.5rem;
}

.splide-servicos .splide__pagination__page {
  background: var(--grey);
  z-index: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease-in-out;
}

.splide-servicos .splide__pagination__page.is-active {
  background: var(--secondary-color);
  z-index: 1;
  width: 24px;
  height: 8px;
  transform: scale(1);
  border-radius: 100px;
}

.about-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}


.about-img-1,
.about-img-2 {
  width: calc(50% - 15px);
}

.about-img-2 {
  margin-top: 70px;
}

.about-img-1 figure,
.about-img-2 figure {
  display: block;
  border-radius: 999px;
  overflow: hidden;
  height: 100%;
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.9;
  object-fit: cover;
  border-radius: 999px;
}

.years-experience-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  align-content: center;
  text-align: center;
  background: var(--primary-color-light);
  border: 10px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.years-experience-box::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-images:hover .years-experience-box::before {
  transform: scale(1);
}

.years-experience-box h2,
.years-experience-box p {
  position: relative;
  z-index: 1;
}

.years-experience-box p {
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}

.about-home {
  background: url(../imagens/section-bg-1.webp) no-repeat;
  background-position: bottom -70px right -200px;
  background-size: auto;
  padding: 100px 0;
}

.why-choose-images {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 30px;
  margin-left: 15px;
}

.why-choose-image-box-1 {
  width: calc(48% - 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-choose-image-box-2 {
  width: calc(52% - 15px);
  margin-top: 100px;
}

.why-choose-image.why-img-1 {
  aspect-ratio: 1 / 1.065;
}

.why-choose-image.why-img-2 img {
  aspect-ratio: 1 / 0.78;
}

.why-choose-image.why-img-3 img {
  aspect-ratio: 1 / 1.692;
}

.why-choose-image {
  width: 100%;
}

.why-choose-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.icon-world-white {
  filter: brightness(100);
}

.promo-video-container {
  position: relative;
  flex: 0 0 320px;
}

.promo-video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(142, 199, 61, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.promo-video-phone-frame {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.promo-video-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}

.promo-video-phone-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}

.promo-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(249, 144, 10, 0.4);
}

.promo-video-play-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--secondary-color);
  animation: videoPulse 2s ease-out infinite;
  z-index: -1;
}

.promo-video-phone-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-video-play-btn i {
  color: #fff;
  font-size: 28px;
  margin-left: 5px;
}

@keyframes videoPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
  z-index: 9999;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 720px;
  transform: scale(.85);
  transition: transform .35s ease;
  z-index: 2;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-content video {
  width: 100%;
  max-height: 70vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, .1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: black;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.video-modal-close:hover {
  background: #fff;
  color: #000;
}

.work-step-image {
  margin-bottom: 20px;
}

.work-step-image img {
  width: 100%;
  aspect-ratio: 1 / 0.746;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.work-step-content {
  position: relative;
  padding-top: 30px;
}

.work-step-content span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  font-weight: 700;
  line-height: 0.9em;
  color: #FAFAFA;
  background: #03221B1A;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px #0000000d;
  transition: all 0.4s ease-in-out;
  font-family: var(--secondary-font);
}

.work-step-item:hover .work-step-content span {
  color: transparent;
}

.work-step-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  margin-top: 0;
}

.work-step-content h3,
.work-step-content p {
  position: relative;
  z-index: 1;
  text-align: center;
}

.list-home {
  position: relative;
}

.list-home li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: -4%;
  color: var(--primary-color-light);
  font-weight: 900;
}


@media screen and (max-width: 992.05px) {
  #dropdown-custom>.nav-item>.nav-link {
    padding: .75rem;
    margin-bottom: 0;
    border-radius: .25rem;
    background-color: var(--primary-color-light);
  }
  
  .offcanvas {
    background-color: var(--primary-color-light);
  }
  
  .offcanvas .dropdown-item {
    color: #fff;
  }
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    color: #fff;
  }

  .nav-link {
    color: #fff;
  }

  .fs-1 {
    font-size: calc(1.25rem + 1.5vw)!important;
  }
}

.bread__title{
  overflow-wrap: anywhere;
  word-break: break-word;
}

.title-animate-default .char{
  display:inline-block;
}

.title-animate-default .char:nth-child(odd){
  margin-right:-0.02em;
}


/* =============================== ASIDE =============================== */

.aside nav::-webkit-scrollbar {
    width: 3px;
}

.aside nav::-webkit-scrollbar-thumb {
    background-color: var(--dark);
}

.aside {
    background-color: #f1f1f1;
    border-radius: 5px 0 0 5px;
    margin: 0;
    box-sizing: border-box;
    padding: 3em;
    position: fixed;
    z-index: 999999;
    height: auto;
    width: 300px;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .5s ease-in-out;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.aside::before {
    content: '\f100';
    font-family: 'FontAwesome';
    width: 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
    background-color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
    cursor: pointer;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.5);
    transition: .3s;
}

.aside:hover {
    right: 0;
}

.aside:hover::before {
    opacity: 0;
}

.aside a {
    color: #fff;
}

.aside :is(a, .aside-title) { color: var(--dark); }

.aside-title { margin: 0; }

.aside:hover .aside__menu {
    animation-name: anima__aside;
    animation-duration: .7s;
    animation-timing-function: ease-in-out;
}

.aside .aside__menu li a {
    display: block;
    padding: 5px;
    margin: 5px 0;
    font-size: 12px;
    border-left: 2px solid var(--dark);
    transition: .3s color;
}

.aside .aside__menu li a:hover, .aside .aside__menu li a.active-menu-aside {
    border-left: 4px solid var(--primary-color);
    color: var(--primary-color);
}

@keyframes anima__aside {
    0% {
        transform: translateX(1000px);
    }

    100% {
        transform: translateX(0);
    }

}

@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        display: none !important;
    }

    #dropdown-custom>.dropdown-menu-end {
        margin-bottom: 0;
    }
}