article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

audio,
canvas,
video {
  display: inline-block
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden] {
  display: none
}

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

button,
html,
input,
select,
textarea {
  font-family: sans-serif
}

body,
figure,
form {
  margin: 0
}

a:active,
a:focus,
a:hover {
  outline: 0
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

h2 {
  font-size: 1.5em;
  margin: .83em 0
}

h3 {
  font-size: 1.17em;
  margin: 1em 0
}

h4 {
  font-size: 1em
}

h6 {
  font-size: .67em;
  margin: 2.33em 0
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
  color: #333
}

abbr[title] {
  border-bottom: 1px dotted
}

b,
strong {
  font-weight: 700
}

blockquote {
  margin: 1em 40px
}

dfn {
  font-style: italic
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0
}

mark {
  background: #ff0;
  color: #000
}

dl,
menu,
ol,
p,
pre,
ul {
  margin: 1em 0
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word
}

q {
  quotes: none
}

q:after,
q:before {
  content: '';
  content: none
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

dd {
  margin: 0 0 0 40px
}

menu,
ol,
ul {
  padding: 0
}

nav ol,
nav ul {
  list-style: none
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto
}

svg:not(:root) {
  overflow: hidden
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}

legend {
  border: 0;
  padding: 0;
  white-space: normal
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline
}

button,
input {
  line-height: normal;
  border: 1px solid #ccc;
  padding: 5px
}

button,
select {
  text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled],
html input[disabled] {
  cursor: default
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto;
  vertical-align: top
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

audio,
canvas,
img,
video {
  vertical-align: middle
}

address {
  font-style: normal
}

ul {
  list-style: none;
  margin: 0;
  padding: 0
}

/* VARS */
:root {
  --border-color: #ccc;
  --box-shadow: 0 15px 10px -15px #111;
  --border-radius: 0.25em;
  --primary-light-color: #8eb7d8;
}

/* GLOBAL CLASSES PAGES */

.htmlchars p {
  line-height: 1.8;
}

.htmlchars p.btn a {
  color: #fff;
}

/* BARRA-INC */
/* BOTÃO CARRINHO FIXO */
.widget__cart {
  width: max-content;
  position: fixed;
  top: 12%;
  right: 0;
  z-index: 9999;
}

.widget__cart--btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 10px;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 12px;
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.widget__cart--btn i {
  display: block;
  font-size: 1em;
  margin-bottom: 3px;
}

.widget__cart--btn:hover {
  background-color: var(--dark);
}

/* BOTÃO BUSCA */
.searchIcon {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border-radius: var(--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(--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(--border-color);
  border-radius: var(--border-radius) 0 0 var(--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(--border-radius) var(--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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 30px;
  border-radius: var(--border-radius) 0 0 var(--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(--border-radius) var(--border-radius) 0;
  background-color: #fff;
}

.widget__search .search button {
  border: none;
  background-color: transparent;
}

.widget__search .search i {
  color: var(--grey);
  -webkit-transition: 0.3s;
  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 {
    -webkit-box-shadow: -5px 0 0 #fff;
    box-shadow: -5px 0 0 #fff;
  }

  .aside-sig-fixed {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

/* 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 */

/* BREADCRUMB */
#breadcrumb li {
  display: inline-block;
}

#breadcrumb i,
#breadcrumb li:not(.bread__column) {
  margin: 0 5px;
}

/* 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(--border-color);
  border-radius: var(--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(--border-color);
  color: var(--dark);
  font-size: 1.2em;
  margin-bottom: 24px;
}

.carrinho .carrinho__body .carrinho__row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--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) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1em;
  width: 100%;
  margin: 0.5em 0;
  border: 1px solid var(--border-color);
  font: 1em/1.5em var(--primary-font);
  color: var(--dark);
  background-color: #fff;
  -webkit-transition: 0.3s;
  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 */
.form__pages {
  display: flex;
  align-items: center;
  justify-content: end;
}

.form__pages .search__pages,
.form__pages .view__pages {
  display: flex;
  align-items: center;
}

.form__pages .search__pages {
  width: 70%;
}

.form__pages .search__pages input[type="search"] {
  width: 95%;
  height: 35px;
  background-color: #fff;
  color: var(--grey);
  padding: 0 5px;
  font-size: 1em;
  border: 1px solid var(--border-color);
  border-radius: 5px 0 0 5px;
  border-right-width: 0;
}

.form__pages .search__pages input[type="search"]::placeholder {
  font-size: 1em;
  color: var(--grey);
}

.form__pages .search__pages button[type="submit"] {
  width: 5%;
  height: 37px;
  background-color: #fff;
  color: var(--grey);
  padding: 0;
  font-size: 1em;
  border: 1px solid var(--border-color);
  border-radius: 0 5px 5px 0;
  border-left-width: 0;
}

.form__pages .view__pages {
  width: 30%;
  gap: 10px;
  justify-content: flex-end;
}

.form__pages .view__pages select {
  max-width: 100px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--grey);
  height: 35px;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .form__pages {
    flex-direction: column;
    gap: 10px;
  }

  .form__pages .search__pages {
    width: 100%;
  }

  .form__pages .search__pages input[type="search"] {
    width: 90%;
  }

  .form__pages .search__pages button[type="submit"] {
    width: 10%;
  }

  .form__pages .view__pages {
    width: 100%;
  }
}

/* BOTÕES PAGINAÇÃO */
.btn-group button {
  display: inline-table;
  width: auto;
  outline: 1px solid var(--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 {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  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;
}

/* PÁGINA PESQUISA */
.search-card {
  border-radius: 5px;
}

.search-card .search-card__cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search-card:hover .search-card__cover {
  opacity: 0.8;
}

.search-card .search-card__title {
  background-color: var(--primary-color);
  margin: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border-radius: 0 0 5px 5px;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.search-card:hover .search-card__title {
  background-color: var(--dark);
}

/* ASIDE */
.aside-sig {
  border: 1px solid var(--border-color);
  border-radius: var(--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%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  color: var(--grey);
  font-size: 1em;
  -webkit-transition: 0.3s;
  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;
}

.aside-sig .aside__contact .btn {
  display: block;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  border-radius: 0;
  border-top: 1px solid var(--border-color);
}

.aside-sig .fb-page {
  margin: 0 auto;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .aside-sig {
    margin: 15px auto;
  }
}

/* ASIDE SIG FIXED */

.aside-sig-fixed {
  margin: 0;
  margin-left: 20px;
  box-sizing: border-box;
  padding: 32px 24px;
  z-index: 9998;
  height: auto;
  width: 27%;
  right: -280px;
  top: 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::before {
  opacity: 0;
}

.aside-sig-fixed nav::-webkit-scrollbar {
  width: 3px;
}

.aside-sig-fixed nav::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

.aside-sig-fixed nav {
  max-height: 150px;
  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;
  margin-top: 24px;
}

.aside-sig-fixed .aside__contact-item {
  width: 100%;
  padding: 12px;
  border-radius: 32px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  flex: 1;
  transition: 0.3s;
  border: 1px solid var(--primary-color);
}

.aside-sig-fixed .aside__contact-item i {
  font-size: 16px;
}

.aside-sig-fixed .aside__contact-item.whatsapp {
  background-color: #25d366;
  border: 1px solid #25d366;
}

.aside-sig-fixed .aside__contact-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.aside-sig-fixed .aside__contact-item.whatsapp:hover {
  background-color: transparent;
  color: #25d366;
}

.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;
}

.aside-sig-fixed .prod-form {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.aside-sig-fixed .form_aside h2 {
  color: white;
  margin-top: 0;
}

.aside-sig-fixed .prod-form label {
  display: block;
  font-size: 0.75em;
  text-transform: none;
  margin-bottom: 0.5em;
  text-align: center;
}

.aside-sig-fixed .prod-form :is(input, textarea) {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  font-family: var(--primary-font);
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
  padding: 0.375rem 0.75rem;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 0.8em;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.aside-sig-fixed .prod-form--topo :is(input, textarea, label) {
  width: 340px;
  text-align: left;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .aside-sig-fixed .prod-form--topo :is(input, textarea, label) {
    max-width: 260px;
    width: 100%;
  }
}

.aside-sig-fixed .prod-form textarea {
  height: 100px;
}

.aside-sig-fixed .prod-form input.ir {
  height: auto;
  color: #fff;
  background: var(--alert);
  border: 1px solid var(--alert);
  padding: 0.85em;
  font-size: 0.85em;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
}

.aside-sig-fixed .prod-form input.ir:hover {
  background-color: var(--primary-color);
}

.aside-sig-fixed .prod-form--topo input.ir {
  text-align: center;
}

.aside-sig-fixed .prod-form input.ir:hover {
  filter: saturate(0.5);
}

.aside-sig-fixed .form_aside {
  background: var(--secondary-color);
  padding: 20px;
  margin-top: 20px;
}

/* FIM ASIDE SIG FIXED */

/* ASIDE HIDDEN */
.aside-hidden {
  box-sizing: border-box;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  width: 300px;
  height: auto;
  margin: 0;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: #fff;
  position: fixed;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  transition: 0.5s ease-in-out;
}

.aside-hidden::before {
  content: "\f100";
  font-family: "FontAwesome";
  background-color: var(--primary-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -50px;
  cursor: pointer;
  transition: 0.3s;
}

.aside-hidden:hover {
  right: 0;
}

.aside-hidden:hover::before {
  opacity: 0;
}

.aside-hidden h2 {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 1.5em;
}

.aside-hidden h2 a {
  color: #fff;
}

.aside-hidden nav::-webkit-scrollbar {
  width: 3px;
}

.aside-hidden nav::-webkit-scrollbar-thumb {
  background-color: var(--dark);
}

.aside-hidden nav {
  max-height: 300px;
  height: auto;
  overflow-y: auto;
}

.aside-hidden :is(nav, .aside__cta) {
  display: block;
  width: 100%;
  margin: 15px auto;
}

.aside-hidden:hover :is(nav, .aside__cta) {
  animation-name: anima__aside;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
}

.aside-hidden .sub-menu li a {
  display: block;
  padding: 5px;
  margin: 5px 0;
  font-size: 12px;
  border-left: 1.5px solid #fff;
  color: #fff;
  transition: 0.3s;
}

.aside-hidden .sub-menu li a:hover,
.aside-hidden .sub-menu li a.active-menu-aside {
  border-left: 3px solid var(--dark);
  color: var(--dark);
}

.aside__cta .btn {
  display: block;
  width: 100%;
  margin: 5px auto;
  background-color: var(--primary-light-color);
  border-radius: var(--border-radius);
  border: 2px solid transparent;
}

.aside__cta .btn:hover {
  border-color: var(--primary-light-color);
  background-color: var(--primary-color);
}

@keyframes anima__aside {
  0% {
    transform: translateX(1000px);
  }

  100% {
    transform: translateX(0);
  }
}

/* *****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(--border-color);
  border-radius: var(--border-radius);
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .prod-inc-cover img {
    height: calc(380px - 15vh);
  }
}

/* **PRODUTO INC GALLERY -- DEFAULT** */
.prod-inc-default-gallery .gallery__item img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
}

/* **PRODUTO INC GALLERY -- CUSTOM** */
.prod-inc-custom-gallery .gallery__main {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.prod-inc-custom-gallery .gallery__main .slick-prev,
.prod-inc-custom-gallery .gallery__main .slick-next {
  background-color: var(--primary-color);
  width: 32px;
  height: 32px;
  transition: 0.3s;
  border-radius: 50%;
}

.prod-inc-custom-gallery .gallery__main .slick-prev {
  left: 8px;
}

.prod-inc-custom-gallery .gallery__main .slick-next {
  left: initial;
  right: 8px;
}

.prod-inc-custom-gallery .gallery__main .slick-prev::before,
.prod-inc-custom-gallery .gallery__main .slick-next::before {
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  opacity: 1;
}

.prod-inc-custom-gallery .gallery__main .slick-prev:focus,
.prod-inc-custom-gallery .gallery__main .slick-next:focus {
  background-color: var(--primary-color);
}

.prod-inc-custom-gallery .gallery__main .slick-prev:hover,
.prod-inc-custom-gallery .gallery__main .slick-next:hover {
  background-color: var(--dark);
}

.prod-inc-custom-gallery .gallery__main a {
  aspect-ratio: 5/4;
  width: 100%;
  height: 400px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-inc-custom-gallery .gallery__main img {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prod-inc-custom-gallery .gallery__nav {
  overflow: hidden;
}

.prod-inc-custom-gallery .gallery__nav .slick-arrow+.slick-list {
  margin: 0 24px;
}

.prod-inc-custom-gallery .gallery__nav {
  width: 100%;
}

.prod-inc-custom-gallery .gallery__nav .gallery__item {
  margin: 0.5em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 100%;
  max-width: 200px;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.prod-inc-custom-gallery .gallery__nav .gallery__item img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-inc-custom-gallery .gallery__nav .slick-list .slick-track {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

:is(.prod-layout-03, .prod-layout-01) .prod-inc-custom-gallery .gallery__nav .slick-list .slick-track {
  justify-content: flex-start;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .prod-inc-custom-gallery .gallery__main img {
    height: calc(380px - 15vh);
  }
}

/* **PRODUTO INC CARRINHO** */
.prod-inc-cart .cart {
  display: block;
  width: 100%;
  font-size: 1em;
}

.prod-inc-cart .cart fieldset {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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(--border-color);
  border-radius: var(--border-radius);
}

.prod-inc-cart .inputNumber input,
.inputNumber .inputNumberBtn {
  position: relative;
  width: 40%;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
  font-size: 1.6em;
  text-align: center;
  line-height: 40px;
  outline: 0;
  border: 0px;
}

.prod-inc-cart .inputNumber .inputNumberBtn {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  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 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
  padding: 12px 24px;
  background-color: #fafcfe;
  border: 1px solid var(--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;
  display: none;
  border-bottom-color: #fff;
  background-color: var(--primary-color);
  color: #fff;
  border-bottom-color: var(--primary-color);
}

.prod-inc-content {
  background-color: #fafcfe;
}

.prod-inc-content .tab__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* padding: 1em; */
  /* border: 1px solid var(--border-color); */
  border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
}

.prod-inc-content .tab__content .col-6 {
  flex: 1 0 calc(100% - var(--spacing));
  max-width: calc(100% - var(--spacing) / 2);
}

@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***** */

/* BLOG */

.blog-card {
  overflow: hidden;
}

.blog-card .blog-card__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.blog-card .blog-card__info {
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}

.blog-card .blog-card__date {
  font-size: 10px;
  color: var(--grey);
  font-weight: bold;
}

.blog-card .blog-card__title {
  color: var(--dark);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0;
}

.blog-card:hover .blog-card__title {
  color: var(--primary-color);
}

.blog-card .blog-card__description p {
  font-size: 14px;
  color: var(--grey);
  margin: 16px 0 32px 0;
}

.blog-card .blog-card__content-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.blog-card__author a {
  transition: 0.3s;
}

.blog-card__author a:hover {
  color: var(--dark);
}

.blog-card__btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  width: fit-content;
  transition: 0.3s;
  margin-left: auto;
}

.blog-card__btn i {
  font-size: 12px;
}

.blog-card__btn:hover {
  background-color: var(--dark);
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 16px 0;
}

.blog-card__tags a {
  background-color: var(--primary-color);
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
}

.blog-card__tags a:hover {
  background-color: var(--dark);
}

/* BLOG.INC */
.blog-inc__date {
  font-size: 10px;
  color: var(--grey);
  font-weight: bold;
}

.blog-inc__cover img {
  margin-bottom: 15px;
}

.blog-inc__gallery {
  margin-bottom: 24px;
}

.blog-inc__gallery .slick-list {
  margin: 0 24px;
}

.blog-inc__gallery .gallery__item {
  margin: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.blog-inc__gallery .gallery__item a {
  padding: 8px;
  display: block;
  width: 100%;
  height: 100%;
}

.blog-inc__gallery .gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* NEWSLETTER */
.newsletter-form {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 32px 0;
}

.newsletter-form input:not([type="checkbox"]) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 4px;
  width: 100%;
  font: 14px / normal var(--primary-font);
  border: none;
}

.newsletter-form input:not([type="checkbox"])::placeholder {
  font: 14px / normal var(--primary-font);
}

.newsletter-form input[type="submit"] {
  background-color: #fff;
  color: var(--primary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--primary-color);
  width: fit-content;
  padding: 16px 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.newsletter-form input[type="submit"]:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.j_load {
  z-index: 99999;
  display: none;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: url("404.html") 50% 50% no-repeat rgba(0, 0, 0, 0.5);
  background-size: 50px auto;
  position: fixed;
  width: 100%;
  height: 100%;
}

.newsletter-form input[type="checkbox"] {
  border: none;
}

.newsletter-form h2 {
  color: #fff;
  margin: 0 0 24px 0;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.newsletter-form__side i {
  color: #fff;
  font-size: 80px;
  margin-bottom: 32px;
}

.newsletter-form__fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.newsletter-form .label-consentimento {
  color: #fff;
}

@media only screen and (max-width: 576px) {
  .newsletter-form input[type="submit"] {
    width: 100%;
  }
}

/* DOWNLOADS */
.download-card {
  margin-bottom: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  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);
  -webkit-transition: 0.3s;
  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);
  -webkit-transition: 0.3s;
  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;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 10%);
  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;
  -webkit-transition: 1s;
  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%);
  -webkit-transition: 0.5s;
  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;
  -webkit-transition: 0.5s;
  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;
}

/* PANEL */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-heading>.dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title>a,
.panel-title>small,
.panel-title>.small,
.panel-title>small>a,
.panel-title>.small>a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
  margin-bottom: 0;
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading+.list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group+.panel-footer {
  border-top-width: 0;
}

.panel>.table,
.panel>.table-responsive>.table,
.panel>.panel-collapse>.table {
  margin-bottom: 0;
}

.panel>.table caption,
.panel>.table-responsive>.table caption,
.panel>.panel-collapse>.table caption {
  padding-right: 15px;
  padding-left: 15px;
}

.panel>.table:first-child,
.panel>.table-responsive:first-child>.table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel>.table:first-child>thead:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel>.table:last-child,
.panel>.table-responsive:last-child>.table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
  border-top: 1px solid #ddd;
}

.panel>.table>tbody:first-child>tr:first-child th,
.panel>.table>tbody:first-child>tr:first-child td {
  border-top: 0;
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
  border: 0;
}

.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
  border-left: 0;
}

.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
  border-right: 0;
}

.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th {
  border-bottom: 0;
}

.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
  border-bottom: 0;
}

.panel>.table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel+.panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer+.panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default>.panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #ddd;
}

.panel-default>.panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary>.panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #337ab7;
}

.panel-primary>.panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success>.panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #d6e9c6;
}

.panel-success>.panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #999;
}

.panel-info>.panel-heading {
  color: #ffffff;
  background-color: #999;
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #bce8f1;
}

.panel-info>.panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning>.panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #faebcc;
}

.panel-warning>.panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger>.panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
  border-top-color: #ebccd1;
}

.panel-danger>.panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
  border-bottom-color: #ebccd1;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* ******************************** PUT YOUR CSS BELOW ******************************** */

/* BLOG TAGS */

.blog-tag-list__cards {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-list--aside {
  padding: 8px;
}

.blog-tag-list--aside .blog-tag-list__cards {
  max-height: 200px;
  overflow-y: auto;
  padding: 8px;
}

.blog-tag-list p {
  width: 100%;
}

.blog-tag-list a {
  background-color: var(--primary-color);
  display: inline-block;
  padding: 4px 8px;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s;
  text-align: center;
  white-space: nowrap;
}

.blog-tag-list:not(.blog-tag-list--aside) a {
  padding: 8px 16px;
}

.blog-tag-list.blog-tag-list--aside a {
  padding: 8px;
}

.blog-tag-list a:hover {
  background-color: var(--dark);
}

/* FIM BLOG TAGS */

/* BLOG AUTHOR */

.blog-inc__author {
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FIM BLOG AUTHOR */

/* AUTHOR */

#author .bread {
  margin-bottom: 0;
}

.author__heading {
  padding: 32px 0;
  margin-bottom: 32px;
}

.author__cover {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.author__image {
  display: block;
  width: 100%;
  height: 100%;
}

.author__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.author__title {
  font-size: 28px;
  margin: 0;
  color: var(--dark);
  font-weight: bold;
}

.author__text {
  margin: 0;
  font-size: 16px;
}

.author__role {
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 0;
}

/* FIM AUTHOR */

/* BLOG HOME */

.blog-home {
  padding: 16px 0;
}

.blog-home__title {
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.blog-home__title span {
  display: block;
  text-align: center;
  color: #eee;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

/* FIM BLOG HOME */

/* 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 */

/* 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(--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::before {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 28px;
  transition: 0.3s;
  opacity: 0;
  z-index: 10;
  box-sizing: border-box;
  border-radius: 4px;
}

.fancy-card-overlay--plus::before {
  content: "\2b";
}

.fancy-card-overlay:hover::before {
  opacity: 1;
}

.prod-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(8, 1fr);
  gap: 40px;
}

.prod-cover {
  grid-area: covr;
}

.prod-cover .card__title--prod {
  color: var(--primary-color);
}

.prod-cover .card__title--prod span {
  color: var(--alert);
  font-size: 15px;
}

.prod-info {
  grid-area: info;
}

.prod-cart {
  grid-area: cart;
}

.prod-gallery {
  grid-area: galr;
}

.prod-content {
  grid-area: cont;
}

[class*="prod-grid__"] {
  overflow: hidden;
}

/* BASE STYLES CSS */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

/* SCROLL LATERAL */
::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

/*CUSTOMIZE THEME*/
:root {
  /* COLORS */
  --primary-color: #003760;
  --secondary-color: #ffc400;
  --grey: #5c5c5c;
  --dark: #343a40;
  --light: #f0f0f0;
  --alert: #d10030;
  --success: #4caf50;

  /* DEFAULT BORDER RADIUS */
  --border-radius: 0.25em;
  --border-color: #dee2e6;

  /* SPACING */
  --wrapper-width: 1180px;

  /* SLICK BANNER */
  --slider-height: 527.97px;

  --transition: 0.3s ease-out;
}

body {
  font-size: 16px;
  font-family: var(--primary-font);
  color: var(--grey);
  text-decoration: none;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  body {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  margin: 25px 0;
}

h1 {
  font-size: 2.25em;
}

/* 36px */
h2 {
  font-size: 1.5em;
}

/* 24px */
h3 {
  font-size: 1.125em;
}

/* 18px */

p {
  font: 1em/1.5 var(--primary-font);
  margin: 15px 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

hr {
  display: block;
  margin: 1em 0;
  height: 1px;
  border-top: 1px solid #ccc;
}

/* COOKIES */
#cookies-message p {
  color: #fff;
}

/* FIM COOKIES */

/* PAGE LOADING */

.page-loading {
  position: fixed;
  background-color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 16px;
  overflow: hidden;
}

.page-loading__spinner {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}

.page-loading__spinner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation-name: pageloadingRotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  border: 4px solid var(--light);
  border-top: 4px solid var(--primary-color);
}

.page-loading__logo {
  width: 100%;
  max-width: 250px;
  transition: 0.5s;
  position: relative;
  bottom: 0;
  opacity: 1;
}

.page-loading__logo--fade {
  opacity: 0;
  transform: scale(1.5);
}

@keyframes pageloadingRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* FIM PAGE LOADING */

/* HEADER */

/* header fixo */
.headerFixed {
  position: fixed !important;
  width: 100%;
  z-index: 999;
  top: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.headerFixed .topo {
  display: none;
}

.headerFixed .logo img {
  max-width: 180px;
  margin: 16px auto;
}

.headerFixed:is(.headerSlide, .headerFade) {
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

/* header fixo - efeito slide */
.headerSlide {
  animation-name: headerSlide;
  transform: translateY(-100%);
}

@keyframes headerSlide {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* header fixo - efeito fade */
.headerFade {
  animation-name: headerFade;
  opacity: 0;
}

@keyframes headerFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* LARGE DEVICE */
@media only screen and (max-width: 912px) {
  header .topo.show-mobile {
    background-color: #222222;
  }

  .flex-top-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .flex-top-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 5px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
  }
}

/* MENU */
header #menu {
  text-align: center;
}

header #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header #menu li {
  position: relative;
  display: inline-block;
}

header #menu a {
  display: block;
  padding: 8px 12px;
  text-align: center;
  transition: 0.3s;
}

/* ACTIVE MENU TOPO */
.active-menu-topo {
  color: var(--primary-color);
  /* -webkit-text-stroke: 0.5px var(--primary-color); */
}

/* SUB MENU */
header #menu .dropdown :is(.sub-menu, .sub-menu-info) {
  display: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 7;
  width: 230px;
  height: auto;
  background-color: var(--alert);
}

header #menu ul>li.dropdown:hover> :is(.sub-menu, .sub-menu-info) {
  display: block;
}

header #menu ul>li.dropdown> :where(.sub-menu, .sub-menu-info)>li.dropdown> :where(.sub-menu, .sub-menu-info) {
  display: none;
  top: 0;
  left: 100%;
}

header #menu>ul>li:nth-last-child(-n + 3).dropdown> :is(.sub-menu, .sub-menu-info) {
  left: initial;
  right: 0;
}

header #menu>ul>li:nth-last-child(-n + 3).dropdown> :is(.sub-menu, .sub-menu-info) :is(.sub-menu, .sub-menu-info) {
  left: initial;
  right: 100%;
}

header #menu ul>li.dropdown> :is(.sub-menu, .sub-menu-info)>li.dropdown:hover> :is(.sub-menu, .sub-menu-info) {
  display: block;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li {
  position: relative;
  display: block;
  margin: 0;
  width: 100%;
  padding: 0 10px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:first-of-type {
  padding-top: 10px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:last-of-type {
  padding-bottom: 10px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li a {
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  color: #fff;
}

header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li:hover>a {
  background-color: #fff;
  color: var(--primary-color);
}

/* SUB MENU SCROLL */
header #menu .dropdown :is(.sub-menu, .sub-menu-info).sub-menu-scroll {
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

/* BROWSE HAPPY PROMPT */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* SCROLL UP BUTTON */
#scrollUp {
  position: fixed;
  bottom: -100px;
  right: 12px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#scrollUp::after {
  content: "\f077";
  font: 18px / normal FontAwesome;
  color: #fff;
}

#scrollUp.is-active {
  transition: 0.5s;
  bottom: 16px;
  opacity: 1;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  #scrollUp {
    width: 40px;
    height: 40px;
  }

  #scrollUp::after {
    font-size: 12px;
  }
}

/* BODY */
.wrapper {
  max-width: var(--wrapper-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.container {
  max-width: 1920px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
  clear: both;
}

section {
  float: left;
  width: 100%;
}

article {
  float: left;
  width: 67.5%;
}

article.full {
  width: 100%;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  article {
    float: none;
    width: 100%;
  }
}

/* BREADCRUMB BASE */
.bread {
  padding: 11rem 0;
  background: linear-gradient(45deg, #00000050, #00000050),
    url(../imagens/banner/bread.jpg);
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

.bread__title {
  margin: 1rem 0 0 0;
  text-align: center;
  color: white;
}

#breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  clear: both;
}

#breadcrumb * {
  transition: 0.3s;
}

#breadcrumb a {
  display: inline-flex;
  align-items: center;
  height: fit-content;
}

#breadcrumb a:hover * {
  color: var(--primary-color);
}

#breadcrumb li {
  color: white;
}

#breadcrumb .bread__column {
  display: inline-flex;
  align-items: center;
}

#breadcrumb :is([itemprop="title"], [itemprop="name"]) {
  font: 14px var(--primary-font);
  color: white;
}

#breadcrumb .bread__column * {
  color: white;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:first-child:before {
  content: "\e3af";
  font-family: "FontAwesome";
  font-size: 12px;
  margin-right: 4px;
  color: white;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:not(:last-child)::after {
  content: "❱";
  margin-left: 6px;
  font-size: 14px;
  color: white;
}

.bread--mpi+h1 {
  margin-top: 0;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  #breadcrumb :is([itemprop="title"], [itemprop="name"]) {
    display: inline-block;
    max-width: 82px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bread {
    padding: 4em 0;
  }
}

/* ASIDE */
aside {
  float: left;
  width: 27.5%;
  margin-left: 5%;
}

aside nav {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

aside nav>ul>li>ul {
  display: none;
}

aside li {
  margin: 5px 0 0 0;
}

aside .active-menu-aside {
  color: var(--primary-color);
  /* -webkit-text-stroke: 0.5px var(--primary-color); */
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  aside {
    width: 100%;
    float: none;
    margin: 15px 0;
  }
}

/* =============================== ASIDE =============================== */

.aside-04 nav::-webkit-scrollbar {
  width: 3px;
}

.aside-04 nav::-webkit-scrollbar-thumb {
  background-color: var(--dark);
}

.aside-04 {
  background-color: var(--primary-color);
  border-radius: 5px 0 0 5px;
  margin: 0;
  padding: 3em;
  position: fixed;
  z-index: 999999;
  height: auto;
  width: 300px;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.aside-04::before {
  content: "\f0c9";
  font-family: "FontAwesome";
  width: 40px;
  height: 70px;
  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: 0.3s;
}

.aside-04:hover {
  right: 0;
}

.aside-04:hover::before {
  opacity: 0;
}

.aside-04 h2 {
  margin: 0 0 32px 0;
}

.aside-04 h2,
.aside-04 a {
  color: #fff;
}

.aside-04:hover .aside__menu,
.aside-04:hover .aside__contato {
  animation-name: anima__aside;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
}

.aside-04 .aside__menu li a {
  display: block;
  padding: 5px;
  margin: 5px 0;
  font-size: 12px;
  border-left: 1.5px solid #fff;
  transition: 0.3s;
}

.aside-04 .aside__menu li a:hover,
.aside-04 .aside__menu li a.active-menu-aside {
  border-left: 3px solid var(--dark);
  color: var(--dark);
}

@keyframes anima__aside {
  0% {
    transform: translateX(1000px);
  }

  100% {
    transform: translateX(0);
  }
}

/* CARDS */
.card-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  border-radius: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.card__image {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.card__title {
  font-size: 16px;
  color: var(--grey);
  transition: 0.3s;
}

.card__text {
  font-size: 14px;
  color: var(--grey);
}

.card__btn {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 14px;
  background-color: var(--primary-color);
  color: #fff;
  transition: 0.3s;
}

.card__overlay {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

.card:hover .card__overlay {
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  .card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .card-group {
    grid-template-columns: 1fr;
  }
}

/* CARD MPI */
.card--mpi {
  border-radius: 0px;
}

.card--mpi .card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.card--mpi .card__image:hover {
  opacity: 0.8;
}

.card--mpi .card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  height: 45px;
  margin: 0;
  font-size: 12px;
  text-align: center;

  color: #fff;
}

.card--mpi:nth-child(4n + 1) .card__title {
  background-color: #003760;
  /* Cor para o quarto card */
}

.card--mpi:nth-child(4n + 2) .card__title {
  background-color: #ffc400;
  /* Cor para o segundo card */
}

.card--mpi:nth-child(4n + 3) .card__title {
  background-color: #d10030;
  /* Cor para o terceiro card */
}

.card--mpi:nth-child(4n + 4) .card__title {
  background-color: #008e7d;
  /* Cor para o primeiro card */
}

.card--mpi:hover .card__title {
  opacity: 0.8;
}

/* BTN */
.btn {
  display: inline-block;
  margin: 1em 0;
  padding: 1em 2em;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #fff;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--secondary-color);
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .btn {
    display: block;
    width: 100%;
  }
}

/* SOCIAL ICONS */
.social {
  display: flex;
  align-items: center;
  gap: 1em;
}

.social__icons {
  color: #fff;
  font-size: 1em;
  transition: 0.3s;
}

/* TABELA */
.table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

.table td {
  font-size: 12px;
  text-align: center;
  line-height: 30px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
  color: #000;
}

.table th {
  font-size: 14px;
  font-weight: normal;
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
}

/* LIST */
.list {
  margin: 0 0 20px 40px;
}

.list li {
  list-style: disc;
  margin: 5px 0;
  font-size: 1em;
  line-height: 1.5em;
  text-align: left;
}

.list--no-ls li {
  list-style: none;
}

.list li::first-letter {
  text-transform: uppercase;
}

/* LAZY LOAD VIDEO */
[data-video] {
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
}

.ytvideo[data-video]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
}

.ytvideo[data-video]::after {
  content: "\f167";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font: 70px / normal FontAwesome;
  color: var(--light);
  transition: 0.3s;
}

[data-video]:hover::after {
  color: red;
}

[data-video] * {
  width: 100%;
  height: 100%;
}

/* SWEET ALERT */
.sweet-alert .lead.text-muted {
  text-align: center;
}

/* FIM SWEET ALERT */

/* SEARCH PAGE */
.search {
  position: relative;
}

.search input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: var(--grey);
  font: normal 14px / normal var(--primary-font);
}

.search input::placeholder {
  font: normal 14px / normal var(--primary-font);
  color: var(--grey);
}

.search button {
  border: none;
  outline: none;
  text-decoration: none;
  background-color: transparent;
  color: var(--grey);
  font-size: 18px;
  transition: 0.3s;
}

.search--topo button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.search button:hover {
  color: var(--dark);
}

.search .button-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORMULÁRIO / CONTATO PAGE */
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form :is(input, textarea, select) {
  width: 100%;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0 0.875rem;
  border: 1px solid var(--grey);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: var(--primary-font);
  background-color: #fff;
  color: var(--grey);
  transition: var(--transition);
}

.form :is(input, textarea, select):hover,
.form :is(input, textarea, select):active,
.form :is(input, textarea, select):focus {
  border-color: var(--secondary-color);
}

.form :is(input, textarea)::placeholder,
.form label {
  font-size: 0.875rem;
  font-family: var(--primary-font);
  color: var(--grey);
}

.form [type="submit"] {
  max-width: 280px;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background-color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.form [type="submit"]:hover {
  background-color: var(--grey);
}

.form [type="submit"]:active,
.form [type="submit"]:focus {
  background-color: var(--dark);
}

.form__obrigatory {
  display: block;
  margin: 0.75rem 0;
  font-size: 0.75rem;
  color: var(--alert);
}

.address-map {
  width: 100%;
  height: 450px;
  margin: 15px 0 0;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

/* FOOTER */
footer {
  padding: 15px;
  clear: both;
}

.copyright-footer {
  padding: 15px 100px;
  background-color: #008e7d;
}

.copyright-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-footer * {
  color: #eee;
  font-size: 10px;
}

.copyright-footer .selos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.copyright-footer .selos a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.copyright-footer .selos i {
  font-size: 14px;
}

.copyright-footer .selos strong {
  background: #fff;
  color: #363b36;
  padding: 1px 6px;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {

  footer *,
  .copyright-footer * {
    text-align: center;
  }

  footer .social {
    justify-content: center;
  }

  .copyright-footer {
    padding: 15px;
  }

  .copyright-footer .wrapper {
    flex-direction: column;
  }
}

/* WHATSAPP BUTTON 1*/
.wpp-container {
  position: relative;
}

/* BUTTONS */
.wppButton {
  position: fixed;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.wppButton__image {
  width: 60%;
}

.wppButton:hover {
  transform: scale(1.1);
}

/* POP-UP */
.wppPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999998;
}

.wppPopup__inner {
  max-width: 400px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border-radius: 0.5rem;
  background-color: #ccc;
  transition: transform 0.3s;
}

.wppPopup :is(.wppPopup__head, .wppPopup__body) {
  padding: 1.25rem;
}

/* POP-UP HEAD */

.wppPopup .wppPopup__head {
  background-color: #009688;
  border-radius: 0.5rem 0.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
}

.wppPopup .wppPopup__head .wppPopup__icon i {
  color: #fff;
}

.wppPopup .wppPopup__head .wppPopup__info span {
  display: block;
  color: #fff;
  font-size: 0.85em;
  margin: 5px 0;
}

.wppPopup .wppPopup__head .wppPopup__info span:nth-child(0n + 3) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wppPopup .wppPopup__head .wppPopup__info span:nth-child(0n + 3):before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: green;
}

/* POP-UP BODY */

.wppPopup .wppPopup__body .wppPopup__label {
  display: block;
  background-color: #fcf8e3;
  font-size: 0.85em;
  padding: 0.35em 0.5em;
  border-radius: 1em;
  line-height: 15px;
  text-align: center;
  margin-bottom: 0.75rem;
}

.wppPopup .wppPopup__body .wppPopup__alert {
  display: block;
  width: 100%;
  background-color: var(--alert);
  color: #fff;
  font-size: 0.85em;
  padding: 0.35em 0.5em;
  border-radius: 1em;
  line-height: 15px;
  text-align: center;
  margin-bottom: 0.75rem;
}

/* POP-UP BODY FORM */
.wppPopup .wppPopup__body .wppPopup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  height: 40px;
  border-radius: 50px;
  overflow: hidden;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input :is(span, input) {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  padding: 0.25em;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input span {
  max-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input select,
.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input input,
.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input input::placeholder {
  font-size: 0.85em;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-submit button {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  padding: 0.5em 1.25em;
  border-radius: 50px;
  box-shadow: 0px 2px 0px #999;
  transition: 0.3s;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-submit button:hover {
  background-color: #57b846;
  color: #fff;
  box-shadow: unset;
  transform: translateY(2px);
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-submit button:hover svg path {
  fill: #fff;
}

/* POP-UP MESSAGE */
.wppPopup .wppPopup__message p {
  text-align: center;
  font-size: 0.85em;
}

/* POP-UP CLOSE BUTTON */
.wppPopup .wppClose {
  position: fixed;
  top: -48px;
  right: -48px;
  font-size: 2em;
  border-radius: 50%;
  color: #fff;
  background: #ccc;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  cursor: pointer;
  transition: 0.3s;
}

.wppPopup .wppClose:hover {
  background-color: #222;
  color: #fff;
}

@media only screen and (max-width: 576px) {
  .wppPopup .wppClose {
    top: -56px;
    right: 4px;
  }
}

/* POP-UP STATES */
.wppPopup.wppActive {
  display: block;
  animation: showWpp 0.3s;
}

.wppPopup .wppError::placeholder {
  color: var(--alert);
}

/* KEYFRAMES */
@keyframes animateWpp {
  from {
    box-shadow: 0 0 0 0px rgba(85, 205, 108, 0.1);
  }

  to {
    box-shadow: 0 0 0 8px rgba(85, 205, 108, 0.5);
  }
}

@keyframes showWpp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ANIMATE */
.scrollanimation:not(.fadeIn, .fadeInLeft, .fadeInRight) {
  animation: none !important;
}

@media only screen and (max-width: 768px) {
  .scrollanimation {
    animation: none !important;
  }
}

/* FIM ANIMATE */

/* *** RULES CSS *** */
/* MARGIN */
.m-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

/* PADDING */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

/* EXTRA LARGE DEVICE */
@media only screen and (min-width: 1024px) {

  /* WIDTH/HEIGHT */
  .w-100 {
    width: 100%;
  }

  .mw-100 {
    max-width: 100%;
  }

  .h-100 {
    height: 100%;
  }

  .mh-100 {
    max-height: 100%;
  }

  .w-75 {
    width: 75%;
  }

  .mw-75 {
    max-width: 75%;
  }

  .h-75 {
    height: 75%;
  }

  .mh-75 {
    max-height: 75%;
  }

  .w-50 {
    width: 50%;
  }

  .mw-50 {
    max-width: 50%;
  }

  .h-50 {
    height: 50%;
  }

  .mh-50 {
    max-height: 50%;
  }

  .w-25 {
    width: 25%;
  }

  .mw-25 {
    max-width: 25%;
  }

  .h-25 {
    height: 25%;
  }

  .mh-25 {
    max-height: 25%;
  }

  .w-0 {
    width: 0%;
  }

  .mw-0 {
    max-width: 0%;
  }

  .h-0 {
    height: 0%;
  }

  .mh-0 {
    max-height: 0%;
  }
}

/* IMAGE ALIGN */
.picture-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.picture-left {
  float: left;
}

.picture-right {
  float: right;
}

/* FONT SIZE */
.large {
  font-size: large;
}

.larger {
  font-size: larger;
}

.x-large {
  font-size: x-large;
}

.xx-large {
  font-size: xx-large;
}

.medium {
  font-size: medium;
}

.small {
  font-size: small;
}

.smaller {
  font-size: smaller;
}

.x-small {
  font-size: x-small;
}

.xx-small {
  font-size: xx-small;
}

.display-1 {
  font-size: 6em;
}

.display-2 {
  font-size: 5.5em;
}

.display-3 {
  font-size: 4.5em;
}

.display-4 {
  font-size: 3.5em;
}

/* RESPONSIVE FONT-SIZE */
.fs-14 {
  font-size: 1em;
}

.fs-16 {
  font-size: 1.14em;
}

.fs-18 {
  font-size: 1.28em;
}

.fs-20 {
  font-size: 1.42em;
}

.fs-22 {
  font-size: 1.57em;
}

.fs-24 {
  font-size: 1.71em;
}

.fs-26 {
  font-size: 1.85em;
}

.fs-28 {
  font-size: 2em;
}

.fs-30 {
  font-size: 2.14em;
}

.fs-32 {
  font-size: 2.28em;
}

.fs-34 {
  font-size: 2.42em;
}

.fs-36 {
  font-size: 2.57em;
}

.fs-38 {
  font-size: 2.71em;
}

.fs-40 {
  font-size: 2.85em;
}

.fs-42 {
  font-size: 3em;
}

.fs-44 {
  font-size: 3.14em;
}

.fs-46 {
  font-size: 3.28em;
}

.fs-48 {
  font-size: 3.42em;
}

.fs-50 {
  font-size: 3.57em;
}

.fs-52 {
  font-size: 3.71em;
}

.fs-54 {
  font-size: 3.85em;
}

.fs-56 {
  font-size: 4em;
}

.fs-58 {
  font-size: 4.14em;
}

.fs-60 {
  font-size: 4.28em;
}

.fs-62 {
  font-size: 4.42em;
}

.fs-64 {
  font-size: 4.57em;
}

.fs-66 {
  font-size: 4.71em;
}

.fs-68 {
  font-size: 4.85em;
}

.fs-70 {
  font-size: 5em;
}

.fs-72 {
  font-size: 5.14em;
}

.fs-74 {
  font-size: 5.28em;
}

.fs-76 {
  font-size: 5.42em;
}

.fs-78 {
  font-size: 5.57em;
}

.fs-80 {
  font-size: 5.71em;
}

.fs-82 {
  font-size: 5.85em;
}

.fs-84 {
  font-size: 6em;
}

.fs-86 {
  font-size: 6.14em;
}

.fs-88 {
  font-size: 6.28em;
}

.fs-90 {
  font-size: 6.42em;
}

.fs-92 {
  font-size: 6.57em;
}

.fs-94 {
  font-size: 6.71em;
}

.fs-96 {
  font-size: 6.85em;
}

.fs-98 {
  font-size: 7em;
}

.fs-100 {
  font-size: 7.14em;
}

.fs-102 {
  font-size: 7.28em;
}

.fs-104 {
  font-size: 7.42em;
}

.fs-106 {
  font-size: 7.57em;
}

.fs-108 {
  font-size: 7.71em;
}

.fs-110 {
  font-size: 7.85em;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  [class*="fs-3"] {
    font-size: calc(2.14em - 0.14vw - 0.14vh);
  }

  [class*="fs-4"] {
    font-size: calc(2.85em - 0.85vw - 0.85vh);
  }

  [class*="fs-5"] {
    font-size: calc(3.57em - 0.57vw - 0.57vh);
  }

  [class*="fs-6"],
  [class*="fs-7"],
  [class*="fs-8"],
  [class*="fs-9"],
  [class*="fs-10"],
  [class*="fs-11"]:not(.fs-11) {
    font-size: calc(4.28em - 0.28vw - 0.28vh);
  }
}

/* FONT WEIGHT */
.fw-normal {
  font-weight: 400;
}

.fw-bold {
  font-weight: 700;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* TEXT TRANSFORM */
.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

/* DISPLAY */
.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.d-table-cell {
  display: table-cell;
}

.d-table-row {
  display: table-row;
}

.d-flex {
  display: flex;
}

.d-flex-wrap {
  flex-wrap: wrap;
}

.d-inline-flex {
  display: inline-flex;
}

/* JUSTIFY CONTENT */
.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  .justify-content-md-center {
    justify-content: center;
  }

  .justify-content-md-start {
    justify-content: flex-start;
  }

  .justify-content-md-end {
    justify-content: flex-end;
  }

  .justify-content-md-between {
    justify-content: space-between;
  }

  .justify-content-md-around {
    justify-content: space-around;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .justify-content-sm-center {
    justify-content: center;
  }

  .justify-content-sm-start {
    justify-content: flex-start;
  }

  .justify-content-sm-end {
    justify-content: flex-end;
  }

  .justify-content-sm-between {
    justify-content: space-between;
  }

  .justify-content-sm-around {
    justify-content: space-around;
  }
}

/* ALIGN ITEMS */
.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  .align-items-md-center {
    align-items: center;
  }

  .align-items-md-start {
    align-items: flex-start;
  }

  .align-items-md-end {
    align-items: flex-end;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .align-items-sm-center {
    align-items: center;
  }

  .align-items-sm-start {
    align-items: flex-start;
  }

  .align-items-sm-end {
    align-items: flex-end;
  }
}

/* FLEX DIRECTION */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  .flex-md-row {
    flex-direction: row;
  }

  .flex-md-column {
    flex-direction: column;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  .flex-sm-row {
    flex-direction: row;
  }

  .flex-sm-column {
    flex-direction: column;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
}

/* FLOAT */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

/* POSITION */
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.t-0 {
  top: 0;
}

.b-0 {
  bottom: 0;
}

.l-0 {
  left: 0;
}

.r-0 {
  right: 0;
}

.t-50 {
  top: 50%;
}

.b-50 {
  bottom: 50%;
}

.l-50 {
  left: 50%;
}

.r-50 {
  right: 50%;
}

/* Z-INDEX */
.z-minus-1 {
  z-index: -1;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.z-6 {
  z-index: 6;
}

.z-7 {
  z-index: 7;
}

.z-8 {
  z-index: 8;
}

.z-9 {
  z-index: 9;
}

.z-999 {
  z-index: 999;
}

/* OBJECT FIT */
.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}

/* BORDER */
.rounded {
  border-radius: 15px;
}

.rounded-circle {
  border-radius: 50%;
}

.border {
  border: 1px solid #dee2e6;
}

.border-top {
  border-top: 1px solid #dee2e6;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6;
}

.border-left {
  border-left: 1px solid #dee2e6;
}

.border-right {
  border-right: 1px solid #dee2e6;
}

.border-dark {
  border-color: var(--dark);
}

.border-light {
  border-color: var(--light);
}

/* COLORS */
.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.grey {
  color: var(--grey);
}

.black {
  color: #000;
}

.white {
  color: #fff;
}

.dark {
  color: var(--dark);
}

.light {
  color: var(--light);
}

/* BG COLORS */
.bg-primary-color {
  background-color: var(--primary-color);
}

.bg-secondary-color {
  background-color: var(--secondary-color);
}

.bg-grey {
  background-color: var(--grey);
}

.bg-black {
  background-color: #000;
}

.bg-white {
  background-color: #fff;
}

.bg-dark {
  background-color: var(--dark);
}

.bg-light {
  background-color: var(--light);
}

/* HIDDEN */
.hidden {
  display: none;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/* CLEAR */
.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.clear {
  clear: both;
}

/* HIDDEN/SHOW DEVICES */
.show-mobile {
  display: none;
}

.show-desk {
  display: block;
}

.hide-mobile {
  display: block;
}

.hide-desk {
  display: none;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  .show-mobile {
    display: block;
  }

  .show-desk {
    display: none;
  }

  .hide-desk {
    display: block;
  }

  .hide-mobile {
    display: none;
  }
}

/* COL SYSTEM */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  --spacing: 0px;
}

.row::after,
.row::before {
  clear: both;
}

.col-1 {
  flex: 1 0 calc(8.33% - var(--spacing));
  max-width: calc(8.33% - var(--spacing) / 2);
}

.col-2 {
  flex: 1 0 calc(16.66% - var(--spacing));
  max-width: calc(16.66% - var(--spacing) / 2);
}

.col-3 {
  flex: 1 0 calc(25% - var(--spacing));
  max-width: calc(25% - var(--spacing) / 2);
}

.col-4 {
  flex: 1 0 calc(33.33% - var(--spacing));
  max-width: calc(33.33% - var(--spacing) / 2);
}

.col-5 {
  flex: 1 0 calc(41.66% - var(--spacing));
  max-width: calc(41.66% - var(--spacing) / 2);
}

.col-6 {
  flex: 1 0 calc(50% - var(--spacing));
  max-width: calc(50% - var(--spacing) / 2);
}

.col-7 {
  flex: 1 0 calc(58.33% - var(--spacing));
  max-width: calc(58.33% - var(--spacing) / 2);
}

.col-8 {
  flex: 1 0 calc(66.66% - var(--spacing));
  max-width: calc(66.66% - var(--spacing) / 2);
}

.col-9 {
  flex: 1 0 calc(75% - var(--spacing));
  max-width: calc(75% - var(--spacing) / 2);
}

.col-10 {
  flex: 1 0 calc(83.33% - var(--spacing));
  max-width: calc(83.33% - var(--spacing) / 2);
}

.col-11 {
  flex: 1 0 calc(91.66% - var(--spacing));
  max-width: calc(91.66% - var(--spacing) / 2);
}

.col-12 {
  flex: 1 0 100%;
  max-width: 100%;
}

/* EXTRA LARGE DEVICE */
@media only screen and (max-width: 1024px) {
  .col-xl-1 {
    flex: 1 0 calc(8.33% - var(--spacing));
    max-width: calc(8.33% - var(--spacing) / 2);
  }

  .col-xl-2 {
    flex: 1 0 calc(16.66% - var(--spacing));
    max-width: calc(16.66% - var(--spacing) / 2);
  }

  .col-xl-3 {
    flex: 1 0 calc(25% - var(--spacing));
    max-width: calc(25% - var(--spacing) / 2);
  }

  .col-xl-4 {
    flex: 1 0 calc(33.33% - var(--spacing));
    max-width: calc(33.33% - var(--spacing) / 2);
  }

  .col-xl-5 {
    flex: 1 0 calc(41.66% - var(--spacing));
    max-width: calc(41.66% - var(--spacing) / 2);
  }

  .col-xl-6 {
    flex: 1 0 calc(50% - var(--spacing));
    max-width: calc(50% - var(--spacing) / 2);
  }

  .col-xl-7 {
    flex: 1 0 calc(58.33% - var(--spacing));
    max-width: calc(58.33% - var(--spacing) / 2);
  }

  .col-xl-8 {
    flex: 1 0 calc(66.66% - var(--spacing));
    max-width: calc(66.66% - var(--spacing) / 2);
  }

  .col-xl-9 {
    flex: 1 0 calc(75% - var(--spacing));
    max-width: calc(75% - var(--spacing) / 2);
  }

  .col-xl-10 {
    flex: 1 0 calc(83.33% - var(--spacing));
    max-width: calc(83.33% - var(--spacing) / 2);
  }

  .col-xl-11 {
    flex: 1 0 calc(91.66% - var(--spacing));
    max-width: calc(91.66% - var(--spacing) / 2);
  }

  .col-xl-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* LARGE DEVICE */
@media only screen and (max-width: 992px) {
  .col-lg-1 {
    flex: 1 0 calc(8.33% - var(--spacing));
    max-width: calc(8.33% - var(--spacing) / 2);
  }

  .col-lg-2 {
    flex: 1 0 calc(16.66% - var(--spacing));
    max-width: calc(16.66% - var(--spacing) / 2);
  }

  .col-lg-3 {
    flex: 1 0 calc(25% - var(--spacing));
    max-width: calc(25% - var(--spacing) / 2);
  }

  .col-lg-4 {
    flex: 1 0 calc(33.33% - var(--spacing));
    max-width: calc(33.33% - var(--spacing) / 2);
  }

  .col-lg-5 {
    flex: 1 0 calc(41.66% - var(--spacing));
    max-width: calc(41.66% - var(--spacing) / 2);
  }

  .col-lg-6 {
    flex: 1 0 calc(50% - var(--spacing));
    max-width: calc(50% - var(--spacing) / 2);
  }

  .col-lg-7 {
    flex: 1 0 calc(58.33% - var(--spacing));
    max-width: calc(58.33% - var(--spacing) / 2);
  }

  .col-lg-8 {
    flex: 1 0 calc(66.66% - var(--spacing));
    max-width: calc(66.66% - var(--spacing) / 2);
  }

  .col-lg-9 {
    flex: 1 0 calc(75% - var(--spacing));
    max-width: calc(75% - var(--spacing) / 2);
  }

  .col-lg-10 {
    flex: 1 0 calc(83.33% - var(--spacing));
    max-width: calc(83.33% - var(--spacing) / 2);
  }

  .col-lg-11 {
    flex: 1 0 calc(91.66% - var(--spacing));
    max-width: calc(91.66% - var(--spacing) / 2);
  }

  .col-lg-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  .col-md-1 {
    flex: 1 0 calc(8.33% - var(--spacing));
    max-width: calc(8.33% - var(--spacing) / 2);
  }

  .col-md-2 {
    flex: 1 0 calc(16.66% - var(--spacing));
    max-width: calc(16.66% - var(--spacing) / 2);
  }

  .col-md-3 {
    flex: 1 0 calc(25% - var(--spacing));
    max-width: calc(25% - var(--spacing) / 2);
  }

  .col-md-4 {
    flex: 1 0 calc(33.33% - var(--spacing));
    max-width: calc(33.33% - var(--spacing) / 2);
  }

  .col-md-5 {
    flex: 1 0 calc(41.66% - var(--spacing));
    max-width: calc(41.66% - var(--spacing) / 2);
  }

  .col-md-6 {
    flex: 1 0 calc(50% - var(--spacing));
    max-width: calc(50% - var(--spacing) / 2);
  }

  .col-md-7 {
    flex: 1 0 calc(58.33% - var(--spacing));
    max-width: calc(58.33% - var(--spacing) / 2);
  }

  .col-md-8 {
    flex: 1 0 calc(66.66% - var(--spacing));
    max-width: calc(66.66% - var(--spacing) / 2);
  }

  .col-md-9 {
    flex: 1 0 calc(75% - var(--spacing));
    max-width: calc(75% - var(--spacing) / 2);
  }

  .col-md-10 {
    flex: 1 0 calc(83.33% - var(--spacing));
    max-width: calc(83.33% - var(--spacing) / 2);
  }

  .col-md-11 {
    flex: 1 0 calc(91.66% - var(--spacing));
    max-width: calc(91.66% - var(--spacing) / 2);
  }

  .col-md-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  [class*="col-"] {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 1 0 calc(8.33% - var(--spacing));
    max-width: calc(8.33% - var(--spacing) / 2);
  }

  .col-sm-2 {
    flex: 1 0 calc(16.66% - var(--spacing));
    max-width: calc(16.66% - var(--spacing) / 2);
  }

  .col-sm-3 {
    flex: 1 0 calc(25% - var(--spacing));
    max-width: calc(25% - var(--spacing) / 2);
  }

  .col-sm-4 {
    flex: 1 0 calc(33.33% - var(--spacing));
    max-width: calc(33.33% - var(--spacing) / 2);
  }

  .col-sm-5 {
    flex: 1 0 calc(41.66% - var(--spacing));
    max-width: calc(41.66% - var(--spacing) / 2);
  }

  .col-sm-6 {
    flex: 1 0 calc(50% - var(--spacing));
    max-width: calc(50% - var(--spacing) / 2);
  }

  .col-sm-7 {
    flex: 1 0 calc(58.33% - var(--spacing));
    max-width: calc(58.33% - var(--spacing) / 2);
  }

  .col-sm-8 {
    flex: 1 0 calc(66.66% - var(--spacing));
    max-width: calc(66.66% - var(--spacing) / 2);
  }

  .col-sm-9 {
    flex: 1 0 calc(75% - var(--spacing));
    max-width: calc(75% - var(--spacing) / 2);
  }

  .col-sm-10 {
    flex: 1 0 calc(83.33% - var(--spacing));
    max-width: calc(83.33% - var(--spacing) / 2);
  }

  .col-sm-11 {
    flex: 1 0 calc(91.66% - var(--spacing));
    max-width: calc(91.66% - var(--spacing) / 2);
  }

  .col-sm-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* EXTRA SMALL DEVICE */
@media only screen and (max-width: 320px) {
  .col-xs-1 {
    flex: 1 0 calc(8.33% - var(--spacing));
    max-width: calc(8.33% - var(--spacing) / 2);
  }

  .col-xs-2 {
    flex: 1 0 calc(16.66% - var(--spacing));
    max-width: calc(16.66% - var(--spacing) / 2);
  }

  .col-xs-3 {
    flex: 1 0 calc(25% - var(--spacing));
    max-width: calc(25% - var(--spacing) / 2);
  }

  .col-xs-4 {
    flex: 1 0 calc(33.33% - var(--spacing));
    max-width: calc(33.33% - var(--spacing) / 2);
  }

  .col-xs-5 {
    flex: 1 0 calc(41.66% - var(--spacing));
    max-width: calc(41.66% - var(--spacing) / 2);
  }

  .col-xs-6 {
    flex: 1 0 calc(50% - var(--spacing));
    max-width: calc(50% - var(--spacing) / 2);
  }

  .col-xs-7 {
    flex: 1 0 calc(58.33% - var(--spacing));
    max-width: calc(58.33% - var(--spacing) / 2);
  }

  .col-xs-8 {
    flex: 1 0 calc(66.66% - var(--spacing));
    max-width: calc(66.66% - var(--spacing) / 2);
  }

  .col-xs-9 {
    flex: 1 0 calc(75% - var(--spacing));
    max-width: calc(75% - var(--spacing) / 2);
  }

  .col-xs-10 {
    flex: 1 0 calc(83.33% - var(--spacing));
    max-width: calc(83.33% - var(--spacing) / 2);
  }

  .col-xs-11 {
    flex: 1 0 calc(91.66% - var(--spacing));
    max-width: calc(91.66% - var(--spacing) / 2);
  }

  .col-xs-12 {
    flex: 1 0 100%;
    max-width: 100%;
  }
}

/* GRID SYSTEM */
.grid {
  display: grid;
}

[class*="grid-col-"] {
  display: grid;
  gap: 25px;
  width: 100%;
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-col-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-col-1-2 {
  grid-template-columns: 1fr 2fr;
}

.grid-col-2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid-col-1-3 {
  grid-template-columns: 1fr 3fr;
}

.grid-col-3-1 {
  grid-template-columns: 3fr 1fr;
}

.grid-col-1-4 {
  grid-template-columns: 1fr 4fr;
}

.grid-col-4-1 {
  grid-template-columns: 4fr 1fr;
}

.grid-col-1-5 {
  grid-template-columns: 1fr 5fr;
}

.grid-col-5-1 {
  grid-template-columns: 5fr 1fr;
}

.grid-col-2-3 {
  grid-template-columns: 2fr 3fr;
}

.grid-col-3-2 {
  grid-template-columns: 3fr 2fr;
}

/* SMALL DEVICE TO LARGE DEVICE */
@media only screen and (min-width: 577px) and (max-width: 992px) {
  [class*="grid-col"]:not(.grid-col-3) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  [class*="grid-col-"] {
    grid-template-columns: 100%;
  }
}

/* GAP FOR FLEX and GRID ELEMENTS */
.gap-0 {
  gap: 0px;
  --spacing: 0px;
}

.gap-10 {
  gap: 10px;
  --spacing: 10px;
}

.gap-20 {
  gap: 20px;
  --spacing: 20px;
}

.gap-30 {
  gap: 30px;
  --spacing: 30px;
}

.gap-40 {
  gap: 40px;
  --spacing: 40px;
}

.gap-50 {
  gap: 50px;
  --spacing: 50px;
}

.gap-60 {
  gap: 60px;
  --spacing: 60px;
}

.gap-70 {
  gap: 70px;
  --spacing: 70px;
}

.gap-80 {
  gap: 80px;
  --spacing: 80px;
}

.gap-90 {
  gap: 90px;
  --spacing: 90px;
}

.gap-100 {
  gap: 100px;
  --spacing: 100px;
}

/* ROW GAP */

.rgap-0 {
  row-gap: 0;
}

.rgap-10 {
  row-gap: 10px;
}

.rgap-20 {
  row-gap: 20px;
}

.rgap-30 {
  row-gap: 30px;
}

.rgap-40 {
  row-gap: 40px;
}

.rgap-50 {
  row-gap: 50px;
}

.rgap-60 {
  row-gap: 60px;
}

.rgap-70 {
  row-gap: 70px;
}

.rgap-80 {
  row-gap: 80px;
}

.rgap-90 {
  row-gap: 90px;
}

.rgap-100 {
  row-gap: 100px;
}

/* COLUMN GAP */

.cgap-0 {
  column-gap: 0;
  --spacing: 0;
}

.cgap-10 {
  column-gap: 10px;
  --spacing: 10px;
}

.cgap-20 {
  column-gap: 20px;
  --spacing: 20px;
}

.cgap-30 {
  column-gap: 30px;
  --spacing: 30px;
}

.cgap-40 {
  column-gap: 40px;
  --spacing: 40px;
}

.cgap-50 {
  column-gap: 50px;
  --spacing: 50px;
}

.cgap-60 {
  column-gap: 60px;
  --spacing: 60px;
}

.cgap-70 {
  column-gap: 70px;
  --spacing: 70px;
}

.cgap-80 {
  column-gap: 80px;
  --spacing: 80px;
}

.cgap-90 {
  column-gap: 90px;
  --spacing: 90px;
}

.cgap-100 {
  column-gap: 100px;
  --spacing: 100px;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  [class*="gap-"] {
    gap: 2em;
  }
}

/* ADDRESS */
.address {
  font-style: normal;
}

.address :is(span, a) {
  display: block;
  font: 13px/22px var(--primary-font);
  color: var(--grey);
}

.address a:hover {
  color: var(--primary-color);
}

/* *** PULL YOUR CUSTOM SITE CSS *RULES* BELLOW *** */

/* *** END RULES CSS *** */
/* ============== HEADER ============== */
header {
  background-color: white;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

header:is(.headerFixed, .topofixo) .headerFixed__hide {
  height: 0px;
  overflow: hidden;
  transition: 0.3s ease-out;
}

header .header__logo {
  margin: 0.75rem 0;
}

header .header__logo img {
  width: 90%;
}

header .header__contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 5px;
}

header .header__contact :is(a, span) {
  color: var(--grey);
  font-size: 0.875rem;
  transition: 0.3s ease-out;
}

header .header__contact>a:hover {
  color: var(--primary-color);
}

header .header__menu {
  width: 100%;
  height: auto;
  padding: 0;
  background-color: var(--primary-color);
}

/* SEARCH */
header .search {
  box-shadow: unset;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .search .search__form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  max-width: 12rem;
  margin: auto 0;
  padding: 5px;
  border-radius: 9999px;
  background-color: white;
  border: 3px solid #008e7d;
  transition: 1s;
}

header .search .search__input {
  height: 100%;
  color: var(--grey);
  font-size: 1rem;
  border: none;
  outline: none;
  background: transparent;
  width: 0px;
  border-radius: 9999px;
  padding: 0px 0px 0px 0px;
  transition: 1s;
}

.search__form:hover .search__input {
  width: 130px;
}

header .search .search__input::placeholder {
  font-size: 1rem;
  color: var(--grey);
}

header .search .search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  aspect-ratio: 1/1;
  color: var(--primary-color);
  font-size: 1rem;
  border: unset;
  background: unset;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 9999px;
  transition: 0.3s ease-out;
  outline: unset;
}

header .search .search__button:hover {
  color: white;
  background-color: var(--primary-color);
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  header {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header:is(.headerFixed, .topofixo) .headerFixed__hide {
    height: auto;
    overflow: unset;
  }

  header .header__contact {
    display: none;
  }

  header .search {
    margin-bottom: 1rem;
  }

  header .search .search__form {
    border: 2px solid rgba(0, 0, 0, 0.25);
  }

  header .header__menu {
    background-color: transparent;
  }
}

@media screen and (max-width: 576px) {
  header {
    flex-direction: column;
  }
}

/* MENU */
header #menu ul {
  height: 100%;
  display: flex;
  gap: 0.25rem;
}

header #menu li {
  padding: 0;
  position: relative;
  border-right: 1px dotted rgba(255, 255, 255, 0.548);
  padding-right: 5px;
}

header #menu li:first-child {
  border-left: 1px dotted rgba(255, 255, 255, 0.548);
  /* Adiciona uma borda à esquerda */
  padding-left: 5px;
}

header #menu li ul li:first-child,
header #menu li ul li {
  border-left: none;
  border-right: none;
}

header #menu li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px 1rem;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.active-menu-topo,
header #menu li:hover>a {
  background-color: var(--secondary-color);
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) {
  display: block;
  visibility: hidden;
  opacity: 0;
  right: 100px;
  padding: 10px;
  background-color: #d10031e1;
}

header #menu .dropdown:hover :is(.sub-menu, .sub-menu-info) {
  visibility: visible;
  opacity: 1;
  right: 0;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li {
  display: flex;
  flex-direction: column-reverse;
  padding: 0;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:before {
  border-top: 1px solid #fff;
  position: relative;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li a {
  padding: 0.75rem 0.875rem;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:hover>a {
  background-color: var(--secondary-color);
  color: #fff;
}

/* ============ FIM HEADER ============ */

/* ASIDE */
.aside .aside__btn,
.aside .aside__menu h2,
.aside .aside__contato h2 {
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 10px;
  display: block;
  transition: 0.3s;
  color: #fff;
}

.aside .aside__btn {
  color: #fff;
  text-align: center;
  border-radius: 3px;
}

.aside .aside__btn:hover {
  background-color: var(--dark);
}

.aside .aside__menu h2 a {
  color: #fff;
}

.aside .aside__menu nav ul li {
  border-left: 2px solid var(--primary-color);
  margin: 10px 0;
  padding: 5px;
  transition: 0.2s;
}

.aside .aside__menu nav ul li a {
  color: var(--dark);
  font-size: 12px;
  border-left: 0;
  padding: 0;
  transition: 0.3s;
}

.aside .aside__menu nav ul li:hover {
  border-left-color: var(--dark);
  background-color: #f0f0f0;
}

.aside .aside__menu nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold;
}

.aside .aside__contato h2 {
  text-align: center;
}

.aside .aside__contato a {
  color: var(--dark);
  text-align: center;
  display: block;
  margin: 10px;
  transition: all 0.2s ease;
}

.aside .aside__contato a:hover {
  color: #5492c3;
}

.aside .fb-page {
  display: block;
  margin-bottom: 25px;
}

/* =============================== FOOTER =============================== */
footer {
  background-color: rgb(19, 18, 18);
  padding: 25px 0;
  border-top: 5px solid var(--secondary-color);
}

footer .card_image {
  width: 100%;
  max-width: 260px;
  margin-bottom: 50px;
}

footer h3 {
  margin-top: 0;
  font-size: 18px;
  color: white;
}

footer .card_text {
  color: rgba(255, 255, 255, 0.432);
  font-size: 13px;
}

footer h3:after {
  content: "";
  display: block;
  margin: 5px 0;
  height: 2.5px;
  background: var(--secondary-color);
  width: 10%;
}

footer .footer__menu {
  margin-top: 85px;
}

footer .footer__menu li a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.432);
  transition: 0.3s;
}

footer .footer__menu li a i {
  font-size: 10px;
}

footer .footer__menu li a:hover {
  color: var(--alert);
}

footer .address :is(span, a):not(.btn) {
  color: rgba(255, 255, 255, 0.432);
  font-size: 14px;
  line-height: 25px;
  transition: 0.3s;
}

footer .address a:not(.btn):hover {
  color: var(--alert);
}

footer .social {
  gap: 10px;
  margin-top: 15px;
}

footer .social__icons {
  font-size: 15px;
  width: 30px;
  opacity: 0.75;
  color: white;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(48, 48, 48);
}

footer .social__icons:hover {
  opacity: 1;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  footer img {
    display: block;
    margin: 0 auto;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  footer h3:after {
    margin-left: auto;
    margin-right: auto;
  }

  footer .address .btn {
    display: inline-block;
    margin: 1rem auto;
    width: auto;
  }

  footer .social {
    justify-content: center;
  }
}

/* DESTAQUES */

.destaques-mpi {
  margin: 32px 0;
}

.destaques-mpi__title {
  margin: 0 0 30px 0;
}

.destaques-mpi__title span {
  color: var(--dark);
}

/* FIM DESTAQUES */

/* CLIENTES */

.clientes {
  padding: 32px 0;
}

.clientes__title {
  margin: 0 0 30px 0;
}

.clientes__item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 8px;
  margin: 0 10px;
  background-color: #fff;
}

.clientes__carousel {
  padding: 0 16px;
}

.clientes__image {
  max-width: 100%;
  max-height: 100%;
}

/* FIM CLIENTES */

.header_contact--top .btn {
  border-radius: 25px;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--alert);
  padding: 10px 40px;
}

.header_contact--top .btn:hover {
  background-color: var(--secondary-color);
  color: white;
}

.header_contact--top i {
  color: var(--alert);
}

/* =============================== EMPHASYS TITLE =============================== */

.title-03 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2em;
  font-weight: initial;
}

.title-03:after {
  content: "";
  display: block;
  margin: 0.5em auto;
  width: 5%;
  height: 0.25em;
  border-radius: 20px;
  background-color: var(--secondary-color);
}

.title-04 {
  text-align: start;
  color: var(--primary-color);
  font-size: 2em;
  font-weight: initial;
}

.title-04:after {
  content: "";
  display: block;
  margin: 0.5em auto;
  width: 100%;
  height: 0.15em;
  border-radius: 20px;
  background-color: var(--secondary-color);
}

.title-05 {
  text-align: start;
  color: var(--primary-color);
  font-weight: initial;
  line-height: 27px;
}

.title-05:after {
  content: "";
  display: block;
  width: 10%;
  margin-top: 0.3em;
  height: 0.15em;
  border-radius: 20px;
  background-color: var(--secondary-color);
}

.title-05 span {
  font-size: 18px;
}

/* =============================== ORGANIC TABS =============================== */
.organictabs {
  position: relative;
  border-top: 5px solid var(--primary-color);
  margin-top: 20px;
}

.organictabs::before {
  display: none;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 290px;
  height: 130px;
  box-shadow: 2px 2px 5px 0px #000000a3;
  background-color: white;
}

.organictabs--mod-2 {
  position: absolute;
  right: 50px;
  top: 40px;
  width: 400px;
}

.organictabs--mod-2 .contato,
.organictabs--mod-2 .contato__social,
.organictabs--mod-2 .contato__info {
  box-shadow: none !important;
  background-color: transparent !important;
}

.organictabs--mod-2 .neumorphic__navigation-menu {
  background-color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 2px 2px 5px 0px #000000a3;
  border-radius: 40px;
}

.organictabs--mod-2 .neumorphic__navigation {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 10px;
  /* box-shadow: 1rem 0.3rem 0.6rem -0.6rem #000000, -0.2rem -0.2rem 0.5rem #f9f9f9; */
}

.organictabs--mod-2 .neumorphic__navigation span {
  padding: 15px;
  display: block;
  font-size: 14px;
  transition-delay: 0s;
  transition-duration: 0.5s;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dark);
  background-color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.organictabs--mod-2 .neumorphic__navigation span.wait-animation {
  pointer-events: none;
}

.organictabs--mod-2 .neumorphic__navigation span:not(:first-of-type):not(:last-of-type) {
  margin: 0 10px;
}

.organictabs--mod-2 .neumorphic__navigation span.active {
  color: white;
  background-color: var(--secondary-color);
  transition-delay: 0.25s;
  transition-duration: 0.5s;
}

.organictabs--mod-2 .neumorphic__navigation span:not(.active):hover {
  transform: translateY(-2px);
}

.organictabs--mod-2 .neumorphic__navigation .tabs--fx {
  position: absolute;

  color: white;
  border-radius: 50%;
  opacity: 0;
}

.organictabs--mod-2 .neumorphic__content {
  padding: 0px;
}

.organictabs--mod-2 .neumorphic__content h2 {
  color: var(--dark);
  background-color: #fffffff3;
  text-align: center;
  width: 100%;
  padding: 20px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 3px 3px #00000040;
}

.organictabs--mod-2 .neumorphic__content div>div {
  background-color: #fffffff3;
  padding: 20px;
  box-shadow: 0px 0px 3px 3px #00000040;
}

@media only screen and (max-width: 768px) {
  .organictabs {
    position: relative;
    border-top: 5px solid var(--primary-color);
    margin-top: 20px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .organictabs--mod-2 {
    position: initial;
    width: 100%;
  }

  .organictabs iframe {
    margin-top: 20px !important
  }
}

.galeria .card_cover img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid #ddd;
  transition: 0.5s;
}

.galeria .card_cover:hover img {
  transform: scale(1.02);
}

.sobre .slick-carousel {
  box-shadow: 1px 1px 6px 0px #000000a1;
}

.sobre .slick-carousel img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.sobre .slick-carousel .slick-next:before,
.sobre .slick-carousel .slick-prev:before {
  color: white;
}

.sobre .slick-carousel .slick-disabled {
  background-color: var(--light) !important;
}

.sobre .slick-carousel .slick-disabled::before {
  color: rgba(0, 0, 0, 0.527) !important;
}

.sobre .slick-carousel .slick-next,
.sobre .slick-carousel .slick-prev {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre .slick-carousel .slick-prev {
  left: -25px;
}

.sobre .slick-carousel .slick-next {
  right: -25px;
}

.slick-produtos .slick-next:before,
.slick-produtos .slick-prev:before {
  color: white;
}

.slick-produtos .slick-next,
.slick-produtos .slick-prev {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-produtos .slick-disabled {
  background-color: var(--light) !important;
}

.slick-produtos .slick-disabled::before {
  color: rgba(0, 0, 0, 0.527) !important;
}

.slick-produtos .slick-prev {
  left: -25px;
}

.slick-produtos .slick-next {
  right: -25px;
}

.sobre .btn {
  border-radius: 30px;
}

.depoimentos {
  background-color: var(--light);
}

.depoimentos .card_depoimento {
  padding: 5px 10px;
}

.depoimentos .card_desc {
  position: relative;
  background-color: white;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 8px 0px #00000082;
}

.depoimentos .card_desc::before {
  content: "";
  position: absolute;
  left: 70px;
  bottom: -13px;
  width: 25px;
  height: 25px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: 4px 5px 3px 1px #00000030;
}

.depoimentos .card_desc p {
  margin: 0;
}

.depoimentos .row .col-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.depoimentos .row .col-2 img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.depoimentos .row .col-10 .card_title {
  color: var(--dark);
}

.gm-style .place-card-large {
  opacity: 1;
}

/* =============================== ACCORDION =============================== */

.accordion .accordion__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
  margin: 5px 0;
  font-size: 18px;
  background-color: var(--alert);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.accordion .accordion__button:after {
  content: "\2b";
  font-family: "FontAwesome";
  color: #fff;
}

.accordion .accordion__button.accordion--active:after {
  content: "\f068";
}

.accordion .accordion__button:hover,
.accordion .accordion__button.accordion--active {
  background-color: var(--secondary-color);
}

.accordion .accordion__button+* {
  padding: 5px 15px;
  background-color: var(--light);
}

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
  }

  45% {
    transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes slideFromTop {
  0% {
    top: 0%;
  }

  100% {
    top: 50%;
  }
}

@keyframes slideToTop {
  0% {
    top: 50%;
  }

  100% {
    top: 0%;
  }
}

@keyframes slideFromBottom {
  0% {
    top: 70%;
  }

  100% {
    top: 50%;
  }
}

@keyframes slideToBottom {
  0% {
    top: 50%;
  }

  100% {
    top: 70%;
  }
}

.showSweetAlert {
  animation: showSweetAlert 0.3s;
}

.showSweetAlert[data-animation=none] {
  animation: none;
}

.showSweetAlert[data-animation=slide-from-top] {
  animation: slideFromTop 0.3s;
}

.showSweetAlert[data-animation=slide-from-bottom] {
  animation: slideFromBottom 0.3s;
}

.hideSweetAlert {
  animation: hideSweetAlert 0.3s;
}

.hideSweetAlert[data-animation=none] {
  animation: none;
}

.hideSweetAlert[data-animation=slide-from-top] {
  animation: slideToTop 0.3s;
}

.hideSweetAlert[data-animation=slide-from-bottom] {
  animation: slideToBottom 0.3s;
}

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }

  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }

  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }

  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }

  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }

  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

.animateSuccessTip {
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  animation: animateSuccessLong 0.75s;
}

.sa-icon.sa-success.animate::after {
  animation: rotatePlaceholder 4.25s ease-in;
}

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.animateErrorIcon {
  animation: animateErrorIcon 0.5s;
}

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }

  50% {
    transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }

  80% {
    transform: scale(1.15);
    margin-top: -6px;
  }

  100% {
    transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}

.animateXMark {
  animation: animateXMark 0.5s;
}

@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }

  100% {
    border-color: #F8BB86;
  }
}

.pulseWarning {
  animation: pulseWarning 0.75s infinite alternate;
}

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }

  100% {
    background-color: #F8BB86;
  }
}

.pulseWarningIns {
  animation: pulseWarningIns 0.75s infinite alternate;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sweet-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1040;
}

.sweet-alert {
  background-color: #ffffff;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 2000;
}

@media all and (max-width: 767px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}

.sweet-alert .form-group {
  display: none;
}

.sweet-alert .form-group .sa-input-error {
  display: none;
}

.sweet-alert.show-input .form-group {
  display: block;
}

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: -9px;
  opacity: 0;
  visibility: hidden;
}

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}

.sweet-alert button.confirm[disabled] {
  color: transparent;
}

.sweet-alert button.confirm[disabled]~.la-ball-fall {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 50%;
  margin: 20px auto;
  position: relative;
  box-sizing: content-box;
}

.sweet-alert .sa-icon.sa-error {
  border-color: #d43f3a;
}

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #d9534f;
  display: block;
  top: 37px;
  border-radius: 2px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  transform: rotate(45deg);
  left: 17px;
}

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  transform: rotate(-45deg);
  right: 16px;
}

.sweet-alert .sa-icon.sa-warning {
  border-color: #eea236;
}

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #f0ad4e;
}

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #f0ad4e;
}

.sweet-alert .sa-icon.sa-info {
  border-color: #46b8da;
}

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #5bc0de;
}

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #5bc0de;
}

.sweet-alert .sa-icon.sa-success {
  border-color: #4cae4c;
}

.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: #ffffff;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
  transform-origin: 60px 60px;
}

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
  transform-origin: 0px 60px;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(92, 184, 92, 0.2);
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: #ffffff;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #5cb85c;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
}

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
}

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}

.sweet-alert .btn-default:focus {
  border-color: #cccccc;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(204, 204, 204, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(204, 204, 204, 0.6);
}

.sweet-alert .btn-success:focus {
  border-color: #4cae4c;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(76, 174, 76, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(76, 174, 76, 0.6);
}

.sweet-alert .btn-info:focus {
  border-color: #46b8da;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(70, 184, 218, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(70, 184, 218, 0.6);
}

.sweet-alert .btn-danger:focus {
  border-color: #d43f3a;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(212, 63, 58, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(212, 63, 58, 0.6);
}

.sweet-alert .btn-warning:focus {
  border-color: #eea236;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(238, 162, 54, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(238, 162, 54, 0.6);
}

.sweet-alert button::-moz-focus-inner {
  border: 0;
}

/*!
* Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
* Copyright 2015 Daniel Cardoso <@DanielCardoso>
* Licensed under MIT
*/
.la-ball-fall,
.la-ball-fall>div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-fall.la-dark {
  color: #333;
}

.la-ball-fall>div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-fall {
  width: 54px;
  height: 18px;
}

.la-ball-fall>div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  -moz-animation: ball-fall 1s ease-in-out infinite;
  -o-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}

.la-ball-fall>div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}

.la-ball-fall>div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}

.la-ball-fall>div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-fall.la-sm>div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-fall.la-2x>div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-fall.la-3x>div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

/*
* Animation
*/

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    -moz-transform: translateY(-145%);
    -o-transform: translateY(-145%);
    transform: translateY(-145%);
  }

  10% {
    opacity: .5;
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  90% {
    opacity: .5;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    -moz-transform: translateY(145%);
    -o-transform: translateY(145%);
    transform: translateY(145%);
  }
}

/* Estilos para os alertas */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
  }
  
  .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
  }
  
  /* Loader */
  .loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  
  .loader {
    width: 48px;
    height: 48px;
    border: 5px solid #78be20;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

   /* FORMULÁRIO */
   .form--contato :is(input, textarea, select) {
    padding: 0.875rem 1rem;
    margin: 0.5rem 0 0;
    border-width: 2px;
    border-color: #0004;
  }

  .form--contato input#anexo {
    padding: 0.72rem 1rem;
  }

  .form--contato select {
    line-height: 100%;
    padding: 0.813rem 1rem;
  }

  .form--contato label {
    text-transform: uppercase;
  }

  .form--contato [type="submit"] {
    position: relative;
    min-width: fit-content;
    padding: 0.875rem 1.5rem;
    color: var(--grey);
    font-size: 0.875rem;
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    background-color: transparent;
    transition: var(--transition);
  }

  .form--contato [type="submit"]:hover {
    color: #fff;
    background-color: transparent;
    border-color: var(--primary-color);
  }

  .form--contato [type="submit"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
  }

  .form--contato [type="submit"]:hover::before {
    width: 100%;
    opacity: 1;
  }

  .form--contato [type="submit"]:active,
  .form--contato [type="submit"]:focus {
    color: #fff;
    border-color: var(--dark);
  }

  .form--contato [type="submit"]:active::before,
  .form--contato [type="submit"]:focus::before {
    background-color: var(--dark);
    width: 100%;
    opacity: 1;
  }

  /* INFORMAÇÕES DE CONTATO */
  .contato .contato__item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2rem;
  }

  .contato .contato__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    padding: 1em;
    color: #fff;
    font-size: 1.5rem;
    background-color: var(--primary-color);
    border-radius: 999px;
    transition: var(--transition);
    outline: transparent solid 2px;
  }

  .contato .contato__icon:hover {
    background-color: var(--secondary-color);
    outline-color: var(--secondary-color);
    outline-offset: 0.375rem;
  }

  .contato .contato__info .info__title {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
  }

  .contato .contato__info :is(span, a):not(.social__link, .roll) {
    display: block;
    color: var(--grey);
    font-size: 0.875rem;
    line-height: 1.5;
    transition: var(--transition);
    word-break: break-all;
  }

  .contato .contato__info a:hover {
    color: var(--primary-color);
  }

  .contato .contato__info a:active,
  .contato .contato__info a:focus {
    color: var(--primary-color);
    text-decoration: underline;
  }

  .contato .contato__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .contato .social__link {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: 0.25rem;
    overflow: hidden;
    position: relative;
    color: var(--grey);
    transition: var(--transition);
  }

  .contato .social__link .roll {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .contato .social__link:hover,
  .contato .social__link:hover .roll {
    color: #fff;
  }

  .contato .social__link:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
  }

  .contato .social__link .roll:first-child {
    transform: translate(-50%, -50%);
  }

  .contato .social__link .roll:last-child {
    transform: translate(-50%, 100%);
  }

  .contato .social__link:hover .roll:first-child {
    top: 0;
    transform: translate(-50%, -100%);
  }

  .contato .social__link:hover .roll:last-child {
    transform: translate(-50%, -50%);
  }

  @media screen and (max-width: 576px) {
    .contato__left {
      order: 1;
    }
  }