/* GLOBAL CLASSES PAGES */
article,
aside {
  box-sizing: border-box !important;
}

/* BARRA-INC */
/* BOTÃO CARRINHO FIXO */
.widget__cart--btn {
  transition: 0.35s;
  position: relative;
}
.j_contCart {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 0.8rem;
  background-color: red;
  width: 20px;
  height: 20px;
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* BOTÃO BUSCA */
.searchIcon {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border-radius: var(--bs-border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  max-width: 175px;
  width: 100%;
  position: relative;
}
.searchIcon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-3px);
  width: 1px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: var(--bs-border-radius);
  z-index: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
}
.searchIcon:hover:after {
  width: 100%;
  opacity: 1;
  transform: translateX(0);
}
.searchIcon :is(span, i) {
  display: flex;
  align-items: center;
  height: 40px;
  font-size: 1em;
  transition: 0.3s;
}
.searchIcon span {
  padding-left: 0.5em;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
  justify-content: space-between;
  width: 70%;
  text-transform: uppercase;
  color: #ccc;
  font-size: 12px;
  z-index: 1;
}
.searchIcon:hover span {
  color: #fff;
  border-color: var(--primary-color);
}
.searchIcon i {
  border: 1px solid var(--primary-color);
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
  justify-content: center;
  width: 30%;
  background-color: var(--primary-color);
  color: #fff;
  z-index: 1;
}
.searchModal {
  display: none;
}
.widget__search {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 95%);
}
.widget__search .search {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget__search .search input {
  width: 90%;
  height: 57.3px;
  padding: 0 30px;
  border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
  border: none;
  font-size: 1em;
  background-color: #fff;
}
.widget__search .search input::placeholder {
  font-size: 1em;
  color: #999;
}
.widget__search .search__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 20%;
  height: 57.3px;
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
  background-color: #fff;
}
.widget__search .search button {
  border: none;
  background-color: transparent;
}
.widget__search .search i {
  color: var(--grey);
  transition: 0.3s;
}
.widget__search .search button:hover i,
.widget__search .search span:hover i {
  color: var(--dark);
}
.widget__search .search i.fa-search {
  font-size: 20px;
}
.widget__search .search i.fa-close {
  font-size: 24px;
  cursor: pointer;
}
/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .widget__search .search {
    width: 95%;
  }
  .widget__search .search__buttons {
    box-shadow: -5px 0 0 #fff;
  }
}
/* BOTÕES GTRANSLATE */
.widget__lang {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
body {
  top: 0 !important;
}
#goog-gt-tt {
  display: none !important;
}
#google_translate_element2 {
  display: none !important;
}
.goog-te-banner-frame {
  display: none !important;
}
.goog-te-menu-value:hover {
  text-decoration: none !important;
}
.translate-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.translate-container img {
  width: 32px;
}
.skiptranslate {
  display: none;
}
/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .widget__lang {
    width: 100%;
    padding: 24px 10px;
  }
  .translate-container {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .translate-container img {
    width: 30px;
  }
}
/* END BARRA-INC */

/* MODAL CARRINHO */
.alertCart {
  z-index: 999;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  width: 100%;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 1em;
  background: #fff;
}
.alertCart h2 {
  font-size: 1.2em;
  text-align: center;
  color: var(--primary-color);
}
.alertCart .btn {
  border: none;
  outline: none;
}
.alertCart .btn:hover {
  border: none;
  outline: none;
}

/* CARRINHO */
/* **TABELA** */
.carrinho .carrinho__head {
  padding: 1em 0;
  border-bottom: 2px solid var(--bs-border-color);
  color: var(--dark);
  font-size: 1.2em;
  margin-bottom: 24px;
}
.carrinho .carrinho__body .carrinho__row {
  padding: 1.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--bs-border-color);
}
.carrinho .carrinho__body .carrinho__row span {
  color: var(--dark);
  font-size: 1.2em;
  line-height: 1.6em;
  color: var(--dark);
}
/* **INPUT QUANTIDADE** */
.carrinho .qtdCart {
  max-width: 70px;
  width: 100%;
  line-height: 24px;
}
/* **BUTTON TRASH** */
.carrinho .removeCart {
  display: block;
  height: 40px;
  text-align: center;
  line-height: 30px;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
.carrinho .removeCart i {
  color: red;
  font-size: 24px;
  transition: 0.3s;
}
.carrinho .removeCart:hover i {
  color: var(--dark);
}
/* FIM CART SELECT */
.cart-table-container {
  width: 100%;
}
.cart-table {
  width: 100%;
  margin: 12px 0;
  border-radius: 4px;
  overflow: hidden;
}
.cart-table thead {
  background-color: var(--primary-color);
}
.cart-table :is(tbody, thead, tr) {
  width: 100%;
}
.cart-table tr {
  display: grid;
  grid-template-columns: 1fr 1fr 4fr 1fr 0.5fr;
  gap: 0;
}
.cart-table :is(th, td) {
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cart-table :is(th) {
  font-size: 16px;
  color: #fff;
}
.cart-table :is(td) {
  color: var(--grey);
  font-size: 14px;
}
.cart-table-modelos span {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.cart-table-qtd input {
  flex: 1;
  background-color: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1200px) {
  .cart-table-container {
    overflow-x: auto;
  }
  .cart-table {
    width: 1200px;
  }
}

/* **FORMULÁRIO** */
.formulario {
  width: 100%;
}
.formulario.j_formulario {
  display: none;
}
.formulario :is(input, textarea, select) {
  padding: 1em;
  width: 100%;
  margin: 0.5em 0;
  border: 1px solid var(--bs-border-color);
  font: 1em/1.5em var(--primary-font);
  color: var(--dark);
  background-color: #fff;
  transition: 0.3s;
}
.formulario :is(input, textarea, select):focus {
  color: var(--dark);
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2em rgb(0 123 255 / 25%);
}
.formulario label,
.formulario :is(input, textarea)::placeholder {
  font: 1em/1.5em var(--primary-font);
  color: var(--dark);
}
.formulario [type="submit"] {
  max-width: 280px;
  width: 100%;
  margin-top: 1em;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--primary-color);
  cursor: pointer;
}
.formulario [type="submit"]:hover {
  background-color: var(--dark);
  border: 1px solid var(--dark);
}
.formulario__obrigatory {
  display: block;
  margin: 1em 0;
  font-size: 12px;
  color: var(--grey);
}
/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .carrinho .carrinho__body .carrinho__row {
    padding: 0.8em;
  }
  .carrinho .inputNumber * {
    font-size: 1em !important;
  }
}
/* END CARRINHO */

/* PAGINAÇÃO */
/* BOTÕES PAGINAÇÃO */
.btn-group button {
  display: inline-table;
  width: auto;
  outline: 1px solid var(--bs-border-color);
}
.btn-group button.active {
  background: var(--primary-color);
  color: #fff;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical
  > .btn-group:first-child:not(:last-child)
  > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical
  > .btn-group:last-child:not(:first-child)
  > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* ASIDE */
.aside-sig {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  margin: 25px 0 25px 5%;
}
.aside-sig h2 {
  background-color: var(--primary-color);
  font-size: 1em;
  color: #fff;
  margin: 0px;
  padding: 1em;
}
.aside-sig h2 a {
  color: #fff;
}
.aside-sig li {
  margin: 0;
}
.aside-sig .sub-menu {
  display: block;
  margin: 0;
}
.aside-sig .sub-menu--first {
  display: block;
}
.aside-sig .submenu-item {
  display: block;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: var(--grey);
  font-size: 1em;
  transition: 0.3s;
}
.aside-sig .submenu-item--first {
  border-left: 2px solid var(--grey);
}
.aside-sig .submenu-item--first:hover {
  border-left-color: var(--primary-color);
}
.aside-sig .submenu-item--last {
  padding-left: 15px;
}
.aside-sig .submenu-item:hover,
.aside-sig .submenu-item.active-menu-aside {
  color: var(--primary-color);
  background-color: #f7f7f7;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .aside-sig {
    margin: 15px auto;
  }
}
/* ASIDE SIG FIXED */
.aside-sig-fixed {
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 6px solid var(--primary-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.05),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 16px 0 0 16px;
  margin: 0;
  padding: 32px 24px;
  position: fixed;
  z-index: 9998;
  height: auto;
  width: 280px;
  right: -280px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.aside-sig-fixed::before {
  content: "\f0c9";
  font-family: "FontAwesome";
  width: 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  border-radius: 16px 0 0 16px;
  border-width: 1px 0px 1px 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.05),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.aside-sig-fixed:hover {
  right: 0;
}
.aside-sig-fixed:hover::before {
  opacity: 0;
}
.aside-sig-fixed :is(.aside__menu, .aside__contact) {
  transition-duration: 0.5s;
  transition-delay: 0.4s;
  opacity: 0;
  transform: translateX(80px);
}
.aside-sig-fixed:hover :is(.aside__menu, .aside__contact) {
  opacity: 1;
  transform: translateX(0);
}

.aside-sig-fixed nav {
  max-height: 300px;
  overflow-y: scroll;
}
.aside-sig-fixed .aside__menu .aside-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  position: relative;
  padding-bottom: 16px;
}
.aside-sig-fixed .aside__menu .aside-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--dark);
  display: block;
}
.aside-sig-fixed .aside__menu .aside-title a {
  transition: 0.3s;
  display: block;
  color: var(--primary-color);
}
.aside-sig-fixed .aside__menu .aside-title:hover a {
  color: var(--dark);
}
.aside-sig-fixed .aside__nav ul {
  padding-right: 4px;
}
.aside-sig-fixed .aside__nav ul li {
  margin: 4px 0;
}
.aside-sig-fixed .aside__nav li a {
  display: block;
  padding: 12px;
  margin: 0;
  font-size: 12px;
  transition: 0.3s;
  color: var(--grey);
  background-color: #f0f0f0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.aside-sig-fixed .aside__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aside-sig-fixed .aside__nav li a:hover,
.aside-sig-fixed .aside__nav li a.active-menu-aside {
  background-color: var(--primary-color);
  color: #fff;
}
/* FIM ASIDE SIG FIXED */

/* *****PRODUTOS***** */
/* **PRODUTO THUMB** */
/* **PRODUTO INC COVER** */
.prod-inc-cover img {
  display: block;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .prod-inc-cover img {
    height: calc(380px - 15vh);
  }
}
/* **PRODUTO INC GALLERY -- DEFAULT** */
/* **PRODUTO INC CARRINHO** */
/* .prod-inc-cart .cart {display: block;width: 100%;font-size: 1em;}
.prod-inc-cart .cart fieldset {border: 1px solid var(--bs-border-color);border-radius: var(--bs-border-radius);padding: 1em;margin: 0;}
.prod-inc-cart .cart label:not(.radio-option) {display: block;font-size: 1em;color: var(--grey);}
.prod-inc-cart .cart label.radio-option {display: flex;align-items: center;justify-content: flex-start;margin: 0.5em 1em;}
.prod-inc-cart .cart input[type="radio"] {margin-right: 0.5em;max-width: 1em;}
.prod-inc-cart .cart input[type="submit"]:hover{  background-color: var(--dark)} */
/* **INPUT NUMBER** */
.prod-inc-cart .inputNumber {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  background-color: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
.prod-inc-cart .inputNumber input,
.inputNumber .inputNumberBtn {
  position: relative;
  width: 40%;
  height: 50px;
  padding: 5px;
  font-size: 1.6em;
  text-align: center;
  line-height: 40px;
  outline: 0;
  border: 0px;
}
.prod-inc-cart .inputNumber .inputNumberBtn {
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}
.prod-inc-cart .inputNumber .inputNumberBtn:hover,
.inputNumber .inputNumberBtn:active {
  color: var(--dark);
}
.prod-inc-cart .inputNumber .inputNumberBtn.disabled {
  cursor: default;
  color: rgba(116, 116, 116, 0.5);
}
.prod-inc-cart .inputNumber input {
  border-left: 0;
  border-right: 0;
  color: var(--dark);
  font: bold 1.3em var(--primary-font);
}
.prod-inc-cart .inputNumber input:focus {
  outline: 0;
}
.prod-inc-cart .inputNumber input[type="number"]::-webkit-inner-spin-button,
.inputNumber input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* **PRODUTO INC CONTENT** */
.prod-inc-tab {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}
.prod-inc-tab .tab__link {
  border-radius: 6px 6px 0 0;
  padding: 12px 24px;
  background-color: #fafcfe;
  border: 1px solid var(--bs-border-color);
  margin: 0;
  z-index: 0;
  position: relative;
  top: 1px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  color: var(--grey);
}
.prod-inc-tab .tab__link.active,
.prod-inc-tab .tab__link:hover {
  z-index: 1;
  border-bottom-color: #fff;
  background-color: var(--primary-color);
  color: #fff;
  border-bottom-color: var(--primary-color);
}
.prod-inc-content {
  background-color: #fafcfe;
  word-wrap: break-word;
}
.prod-inc-content .tab__content {
  padding: 1em;
  border: 1px solid var(--bs-border-color);
  border-radius: 0 var(--bs-border-radius) var(--bs-border-radius)
    var(--bs-border-radius);
}
@media only screen and (max-width: 576px) {
  .prod-inc-tab {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
  }
  .prod-inc-tab .tab__link {
    width: 100%;
    border-radius: 0;
    text-align: center;
  }
}
/* *****END PRODUTOS***** */

/* SERVIÇOS */
.sig-gallery .gallery__item {
  aspect-ratio: 1/1;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}
.sig-gallery .gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLOG */
.blog-sig .blog-aside,
.blog-sig .recent-posts {
  margin: 1.5rem 0;
}
.blog-sig .recent-posts .nav-item a {
  display: block;
  padding: 0.5rem 0;
  color: var(--bs-body-color);
  transition: color var(--transition), transform var(--transition);
}
.blog-sig .recent-posts .nav-item a.active,
.blog-sig .recent-posts .nav-item a:hover {
  color: var(--primary-color);
}

.blog-sig aside li {
  margin: unset;
}
.blog-sig#author aside {
  margin-right: 0;
  margin-left: 5%;
}

.aside-sig-blog .sub-menu .dropdown-item,
.aside-sig-blog .sub-menu .sub-menu .sub-menu .dropdown-item,
.aside-sig-blog .submenu-item.submenu-item--first,
.aside-sig-blog .submenu-item.submenu-item--intermediary {
  display: block;
  width: 100%;
  padding: 0.5rem;
  color: var(--bs-body-color);
  border-radius: var(--bs-border-radius);
  transition: var(--transition);
}
.aside-sig-blog .sub-menu .dropdown-item:hover,
.aside-sig-blog .sub-menu .sub-menu .sub-menu .dropdown-item:hover,
.aside-sig-blog .submenu-item.submenu-item--first:hover,
.aside-sig-blog .submenu-item.submenu-item--intermediary:hover {
  background-color: var(--bs-border-color);
}
.aside-sig-blog h2,
.blog-aside > .aside-title {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}

/* BLOG TAGS */
.blog-tag-list__cards {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-tag-list--aside .blog-tag-list__cards {
  max-height: 200px;
}
.blog-tag-list p {
  width: 100%;
}
.blog-tag-list a {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-primary);
  transition: var(--transition);
}
.blog-tag-list a:hover {
  color: #fff;
  background-color: var(--bs-primary-hover);
}
.blog-tag-list a:focus-visible {
  outline: unset;
  background-color: var(--bs-primary-active);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.5);
}

/* BLOG PAGINATION */
.blog-pagination {
  margin: 24px 0;
}
.blog-pagination .btn-group button {
  outline: none;
  border: none;
  margin: 1px;
  padding: 14px 28px;
}
.blog-pagination .btn-group button.active,
.blog-pagination .btn-group button:hover {
  background-color: var(--dark);
}
@media only screen and (min-width: 768px) {
  .blog-pagination .btn-group button:first-of-type {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  .blog-pagination .btn-group button:last-of-type {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
}
/* FIM BLOG PAGINATION */

/* DOWNLOADS */
.download-card {
  margin-bottom: 25px;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: 0.3s;
}
.download-card:hover {
  border-color: var(--dark);
}
.download-card__link {
  display: flex;
}
.download-card .download-card__icon {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 32px;
  color: var(--primary-color);
  transition: 0.3s;
}
.download-card:hover .download-card__icon {
  color: var(--dark);
}
.download-card .download-card__description {
  width: 90%;
}
.download-card .download-card__title {
  margin-top: 0;
  font-size: 14px;
  color: var(--primary-color);
  transition: 0.3s;
}
.download-card:hover .download-card__title {
  color: var(--dark);
}
.download-card .download-card__text {
  font-size: 12px;
  color: var(--grey);
  margin: 0;
}

/* CASES */
.case-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 10%);
  border-radius: 5px;
}
.case-card .case-card__cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 1s;
}
.case-card:hover .case-card__cover {
  transform: scale(1.5);
}
.case-card .case-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background-color: rgb(33, 114, 179, 90%);
  transition: 0.5s;
}
.case-card:hover .case-card__overlay {
  opacity: 1;
}
.case-card .case-card__title {
  position: relative;
  top: -25%;
  text-align: center;
  margin: 25px;
  font-size: 18px;
  color: #fff;
  transition: 0.5s;
}
.case-card:hover .case-card__title {
  top: 0;
}
/* CASES.INC */
.cases-inc__cover {
  float: left;
  padding-right: 10px;
  padding-bottom: 10px;
  width: 300px;
}

/* ******************************** PUT YOUR CSS BELOW ******************************** */

/* BLOG SECTIONS */
.article-container {
  float: left;
  width: 67.5%;
}
.article-container.full {
  width: 100%;
}
/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .article-container {
    float: none;
    width: 100%;
  }
}
/* FIM BLOG SECTION */
/* SLICK BANNER SIG */
.slick-banner-sig .slick-banner-sig__inner {
  width: 100%;
  max-width: var(--wrapper-width);
  margin: 0 auto;
  padding: 0 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  animation-delay: 0.25s;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.19, 0.66, 0.56, 1);
  animation-fill-mode: forwards;
  opacity: 0;
}
.slick-banner-sig .slick-banner-sig__title {
  color: #fff;
  margin: 0;
  font-size: 3rem;
}
.slick-banner-sig .slick-banner-sig__text {
  color: #ddd;
  margin: 0;
  font-size: 1.2rem;
}
.slick-banner-sig .slick-slide.slick-current .slick-banner-sig__inner {
  animation-name: fadeText;
}
.slick-banner-sig .slick-thumb {
  width: 100% !important;
  height: auto !important;
  max-width: 300px;
  aspect-ratio: 1/1;
  object-fit: contain !important;
  border-radius: var(--bs-border-radius);
  display: block;
  margin: 0 auto;
}
.slick-banner-sig .fade {
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.slick-banner-sig .delay-750 {
  animation-delay: 0.75s;
}
.slick-banner-sig .delay-1000 {
  animation-delay: 1s;
}
.slick-banner-sig .delay-1250 {
  animation-delay: 1.25s;
}
.slick-banner-sig.slick-current .fade-default {
  animation-name: fadeDefault;
}
.slick-banner-sig.slick-current .fade-left {
  animation-name: fadeLeft;
}
.slick-banner-sig.slick-current .fade-right {
  animation-name: fadeRight;
}
.slick-banner-sig.slick-current .fade-up {
  animation-name: fadeUp;
}
.slick-banner-sig.slick-current .fade-down {
  animation-name: fadeDown;
}
@keyframes fadeDefault {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FIM SLICK BANNER SIG */
/* POP UP */
[data-modal-dialog] {
  width: calc(100% - 20px);
  max-width: 800px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
}
[data-modal-dialog]::backdrop {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
[data-modal-dialog] {
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 0;
}
[data-modal-dialog][open] {
  animation-name: fadeDialog;
}
.modalcontent {
  background-color: #fff;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 4px;
}
.modalcontent::-webkit-scrollbar-track {
  background-color: #fff;
}
.modalcontent__image {
  max-width: 100%;
  margin: 0 auto;
}
.modalcontent__title {
  text-align: center;
  margin: 0;
  color: var(--primary-color);
}
.modalcontent__text {
  text-align: center;
  margin: 0;
  line-height: 1.8;
}
.modalclose {
  position: absolute;
  right: 4px;
  top: 4px;
  border: none;
  background-color: transparent;
}
.modalclose i {
  color: var(--dark);
  font-size: 32px;
  transition: 0.3s;
}
.modalclose:hover i {
  color: var(--primary-color);
}
@keyframes fadeDialog {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.active-modal {
  overflow: hidden;
  touch-action: none;
}
@media only screen and (min-width: 992px) {
  .active-modal,
  .active-modal .headerFixed {
    padding-right: 8px;
  }
}

.fancy-card-overlay {
  position: relative;
  overflow: hidden;
}
.fancy-card-overlay::after {
  content: "\f002";
  font-family: FontAwesome;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  transition: opacity var(--transition);
  opacity: 0;
  z-index: 10;
}
.fancy-card-overlay--plus::after {
  content: "\2b";
}
.fancy-card-overlay:hover::after {
  opacity: 1;
}

.sticky-100 {
  position: sticky;
  top: 90px;
}
.card__description {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* BLOG 01 */
.circle-item,
article,
aside {
  all: unset;
}

.recent-posts__item {
  transition: var(--transition);
}
.recent-posts__item:hover {
  transform: translateX(10px);
  color: var(--primary-color);
}

.recent-posts .dropdown-item,
.blog-aside .dropdown-item,
.blog-tag-list--aside .dropdown-item {
  background-color: unset;
}

.blog-aside > .aside-title > a {
  color: var(--bs-body-color);
}
.blog-aside > .aside-title a:hover {
  color: var(--primary-color);
}

.card-img-top {
  aspect-ratio: 1.25/1;
  object-fit: cover;
}

.reset-aside-sig .aside-sig-fixed :is(.aside__menu, .aside__contact) {
  transition-duration: unset;
  transition-delay: unset;
  opacity: unset;
  transform: unset;
}
.reset-aside-sig .aside-sig-fixed::before,
.reset-aside-sig .aside-sig-fixed {
  all: unset;
}

.category-related,
.category-related * {
  transition: 0.35s;
}
.category-related {
  background-color: var(--light);
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: var(--primary-color);
}
.category-related:hover {
  background-color: var(--dark);
  color: var(--light);
}

.card__servicos {
  background-color: #f6f6f6;
  padding: 15px;
}
.card__servicos .card__image {
  background-color: #006994;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70px;
  height: 70px;
  padding: 15px;
}
.card__servicos img {
  filter: brightness(0) invert(1);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card__text--desc{
  max-height: 300px;
  overflow: auto;
}

.card__image--servicepage{
    filter: brightness(0) invert(0);
}