
    body, html {
  overflow-x: hidden
}

dl, h3, menu, ol, p, pre, ul {
  margin: 1em 0
}

nav ol, nav ul, ul {
  list-style: none
}

legend, menu, ol, ul {
  padding: 0
}

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
}

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
}

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
}

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;
  white-space: normal
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  border: 1px solid #ccc;
  outline: transparent solid 2px;
  outline-offset: 1px;
  line-height: normal;
  padding: 6px;
  width: 100%;
  border-radius: var(--border-radius);
}

:is(button, input, select, textarea):active, :is(button, input, select, textarea):focus, :is(button, input, select, textarea):hover {
  outline: currentColor solid 2px;
  outline-offset: 1px
}

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 {
  margin: 0
}/* 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(--secondary-color);
  -webkit-transition: .3s;
  transition: .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: .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: .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;
  width: max-content;
}

.widget__search .search i {
  color: var(--grey);
  -webkit-transition: .3s;
  transition: .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 (max-width: 767.98px) {
  .widget__search .search {
    width: 95%;
  }

  .widget__search .search__buttons {
    -webkit-box-shadow: -5px 0 0 #fff;
    box-shadow: -5px 0 0 #fff;
  }
}

/* BOTÕES GTRANSLATE */
.widget__lang {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  top: 0 !important;
}

#goog-gt-tt {
  display: none !important;
}

#google_translate_element2 {
  display: none !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.goog-te-menu-value:hover {
  text-decoration: none !important;
}

.translate-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.translate-container img {
  width: 32px;
}

.skiptranslate {
  display: none;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .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: 50%;
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1em;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 6px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.alertCart h2 {
  text-align: center;
  color: var(--primary-color);
}

.alertCart .btn {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* CARRINHO */
/* **TABELA** */
.carrinho .carrinho__head {
  border-bottom: 2px solid var(--border-color);
}

.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%;
  border-radius: var(--border-radius);
  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 (max-width: 1199.98px) {
  .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: .3s;
  transition: .3s;
}

.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 (max-width: 767.98px) {
  .carrinho .carrinho__body .carrinho__row {
    padding: 0.8em;
  }

  .carrinho .inputNumber * {
    font-size: 1em !important;
  }
}

/* END CARRINHO */

/* PAGINAÇÃO */
.form__pages {
  width: 100%;
}

.form__pages .search__pages,
.form__pages .view__pages {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form__pages .search__pages {
  position: relative;
}

.form__pages input[type="search"],
.form__pages select {
  font-family: var(--primary-font);
  width: 100%;
  height: 35px;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0 8px;
  font-size: 12px;
  border-radius: var(--border-radius);
}

.form__pages input[type="search"]::placeholder,
.form__pages .view__pages label {
  font-size: 12px;
  color: var(--primary-color);
}

.form__pages .search__pages button[type="submit"] {
  width: 26px;
  height: 26px;
  border-radius: 26px;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0;
  font-size: 12px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.form__pages .view__pages {
  gap: 8px;
  justify-content: flex-end;
}

.form__pages .view__pages select {
  max-width: 100px;
  border-radius: var(--border-radius);
  color: var(--primary-color);
  height: 35px;
}

/* 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: .3s;
  transition: .3s;
}

.search-card:hover .search-card__cover {
  opacity: .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: .3s;
  transition: .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: .3s;
  transition: .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 (max-width: 767.98px) {
  .aside-sig {
    margin: 15px auto;
  }
}

/* ASIDE SIG FIXED */

.aside-sig-fixed {
  background-color: rgba(255, 255, 255, 0.95);
  border-top: 6px solid var(--primary-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.05), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
  border-radius: 16px 0 0 16px;
  margin: 0;
  box-sizing: border-box;
  padding: 32px 24px;
  position: fixed;
  z-index: 9998;
  height: auto;
  width: 280px;
  right: -280px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: .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: .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.10);
}

.aside-sig-fixed:hover {
  right: 0;
}

.aside-sig-fixed:hover::before {
  opacity: 0;
}

.aside-sig-fixed :is(.aside__menu, .aside__contact) {
  transition-duration: 0.5s;
  transition-delay: 0.4s;
  opacity: 0;
  transform: translateX(80px);
}

.aside-sig-fixed:hover :is(.aside__menu, .aside__contact) {
  opacity: 1;
  transform: translateX(0);
}

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

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

.aside-sig-fixed nav {
  max-height: 300px;
  overflow-y: scroll;
}

.aside-sig-fixed .aside__menu .aside-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  position: relative;
  padding-bottom: 16px;
}

.aside-sig-fixed .aside__menu .aside-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--dark);
  display: block;
}

.aside-sig-fixed .aside__menu .aside-title a {
  transition: 0.3s;
  display: block;
  color: var(--primary-color);
}

.aside-sig-fixed .aside__menu .aside-title:hover a {
  color: var(--dark);
}

.aside-sig-fixed .aside__nav ul {
  padding-right: 4px;
}

.aside-sig-fixed .aside__nav ul li {
  margin: 4px 0;
}

.aside-sig-fixed .aside__nav li a {
  display: block;
  padding: 12px;
  margin: 0;
  font-size: 12px;
  transition: .3s;
  color: var(--grey);
  background-color: #F0F0F0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

.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;
  position: static;
  z-index: 0;
}

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

/* 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: .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: .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: .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: .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 (max-width: 767.98px) {
  .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: var(--border-radius);
  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 {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-inc-custom-gallery .gallery__main img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.prod-inc-custom-gallery .gallery__nav {
  overflow: hidden;
}

.prod-inc-custom-gallery .gallery__nav .slick-arrow+.slick-list {
  margin-right: 52px;
}

.prod-inc-custom-gallery .gallery__nav button.slick-arrow {
  background-color: var(--light);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  width: 42px;
  height: 50%;
  transform: unset;
  border-radius: unset;
  transition: .3s;
}

.prod-inc-custom-gallery .gallery__nav button.slick-arrow:hover {
  background-color: var(--primary-color);
}

.prod-inc-custom-gallery .gallery__nav button.slick-arrow:hover::before {
  color: #fff;
}

.prod-inc-custom-gallery .gallery__nav button.slick-prev.slick-arrow {
  left: auto;
  right: 0;
  top: 0;
}

.prod-inc-custom-gallery .gallery__nav button.slick-next.slick-arrow {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  filter: brightness(0.9);
}


.prod-inc-custom-gallery .gallery__nav {
  width: 100%;
}

.prod-inc-custom-gallery .gallery__nav .gallery__item {
  margin: 0 8px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 1/1;
  width: auto !important;
  height: auto !important;
}

.prod-inc-custom-gallery .gallery__nav .gallery__item img {
  display: block;
  margin: 0 auto;
  aspect-ratio: 1/1;
  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 (max-width: 767.98px) {}

/* **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: .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: var(--border-radius) var(--border-radius) 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;
  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);
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .prod-inc-tab {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
  }

  .prod-inc-tab .tab__link {
    width: 100%;
    border-radius: 0;
    text-align: center;
  }
}

/* *****END PRODUTOS***** */

/* SERVIÇOS */
.card--serv {
  overflow: hidden;
  position: relative;
  border-radius: var(--border-radius);
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  height: 100%;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.card--serv .card__image, .card--serv .card__title {
  /* flex: 1; */
}

.card--serv .card__description {
  flex: 5;
}

.card--serv .card__image img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--img-rounded);
}

.card--serv .card__title h2 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey);
  text-align: left;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.card--serv .card__description {
  margin: 0;
  color: var(--grey);
  font-size: 12px;
  line-height: 1.8;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--serv .card__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}

.card--serv .card__link span {
  position: relative;
  margin-left: -98px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  height: 32px;
  padding: 4px 8px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.card--serv:hover span {
  margin-left: 0;
}

.card--serv .card__link span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 32px;
  display: block;
  background-color: var(--primary-color);
}

.card--serv .card__link i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  height: 32px;
  padding: 4px 8px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

@media (max-width: 1199.98px) {
  .card--serv {
    height: auto;
  }
}

/* END CARD */

.service-inc__cover {
border-radius: 30px;
overflow: hidden;
}

.service-inc__cover a {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-inc__cover a img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.service-inc__gallery .gallery__item {
  margin: 0 8px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.service-inc__gallery .gallery__item img {
  display: block;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.service-inc__gallery .slick-list .slick-track {
  justify-content: flex-start;
}

.service-inc__gallery .slick-arrow+.slick-list {
  margin-right: 52px;
}

.service-inc__gallery button.slick-arrow {
  background-color: var(--light);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  width: 42px;
  height: 50%;
  transform: unset;
  border-radius: unset;
  transition: .3s;
}

.service-inc__gallery button.slick-arrow:hover {
  background-color: var(--primary-color);
}

.service-inc__gallery button.slick-arrow:hover::before {
  color: #fff;
}

.service-inc__gallery button.slick-prev.slick-arrow {
  left: auto;
  right: 0;
  top: 0;
}

.service-inc__gallery button.slick-next.slick-arrow {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  filter: brightness(0.9);
}


/* FIM SERVICOS */

/* 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: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.blog-card .blog-card__info {
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px;
  width: 100%;
  margin: 0 auto;
}

.blog-card .blog-card__date {
  font-size: 8px;
  color: var(--grey);
  font-weight: bold;
}

.blog-card .blog-card__title {
  color: var(--dark);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  margin: 0;
}

.blog-card:hover .blog-card__title {
  color: var(--primary-color);
}

.blog-card .blog-card__description p {
  font-size: var(--text);
  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;
  text-align: left;
}

.blog-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.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: var(--border-radius);
  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: var(--border-radius);
  display: inline-block;
  transition: 0.3s;
}

.blog-card__tags a:hover {
  background-color: var(--dark);
}

/* BLOG.INC */
.blog-inc__date {
  font-size: 12px;
  color: var(--grey);
  font-weight: bold;
}

.blog-inc__cover img {
  margin-bottom: 12px;
}

.blog-inc__gallery .gallery__item {
  margin-right: 8px;
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  overflow: hidden;
}

.blog-inc__gallery .gallery__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-inc__gallery .gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-inc__gallery .slick-arrow+.slick-list {
  margin-right: 42px;
}

.blog-inc__gallery button.slick-arrow {
  background-color: var(--light);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  transition: .3s;
}

.blog-inc__gallery button.slick-arrow:hover {
  background-color: var(--primary-color);
}

.blog-inc__gallery button.slick-arrow:hover::before {
  color: #fff;
}

.blog-inc__gallery button.slick-prev.slick-arrow {
  right: 0;
  left: auto;
  top: 40%;
}

.blog-inc__gallery button.slick-next.slick-arrow {
  right: 0;
  left: auto;
  top: 60%;
}

/* NEWSLETTER */
.newsletter-form .row {
  margin: 0 -8px;
}

.newsletter-form [class*=col-]:not([class*=grid-]) {
  padding: 8px
}

.newsletter-form input:not([type="checkbox"]) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px;
  border-radius: var(--border-radius);
  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: .3s;
  transition: .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('https://www.religpsicologia.com.br/imagens/loading.gif') 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;
  width: max-content;
}

.newsletter-form .label-consentimento {
  color: #FFF;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .newsletter-form input[type="submit"] {
    width: 100%;
  }
}

/* DOWNLOADS */
.download-card {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px;
  border: var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  -webkit-transition: .3s;
  transition: .3s;
}

.download-card:hover {
  background-color: var(--primary-color);
}

.download-card__link {
  display: flex;
}

.download-card .download-card__icon {
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 32px;
  color: var(--primary-color);
  -webkit-transition: .3s;
  transition: .3s;
}

.download-card:hover .download-card__icon {
  color: #fff;
}

.download-card .download-card__description {
  width: 85%;
}

.download-card .download-card__title {
  margin: 0;
  font-size: 14px;
  color: var(--primary-color);
  -webkit-transition: .3s;
  transition: .3s;
}

.download-card:hover :is(.download-card__title, .download-card__text) {
  color: #fff
}

.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: .5s;
  transition: .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: .5s;
  transition: .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 {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: 0 1px 1px rgba(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: var(--border-radius);
}

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

.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: var(--border-radius);
  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;
}

.author__cover {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author__image {
  display: block;
  aspect-ratio: 3/3;
  object-fit: contain;
  padding: 32px;
}

.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__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 (max-width: 767.98px) {
  .article-container {
    float: none;
    width: 100%;
  }
}

/* FIM BLOG SECTION */

/* 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, .5);
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: var(--border-radius);
}

.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 (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: var(--border-radius);
}

.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-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 */
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 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: #7EC67A;
	--secondary-color: #00B7DD;
	--tertiary-color: transparent;
	--white: #fff;
	--black: #000;
	--grey: #5c5c5c;
	--dark: #343433;
	--light: #EDEDED;
	--alert: #b31610;
	--success: #4caf50;

	/* DEFAULT BORDER */
	--border-radius: 4px;
	--img-rounded: 8px;
	--border-color: #ccc;
	--box-shadow: 0 15px 10px -15px #111;

	/* SIMETRIA */
	--window-width: 1920px;
	--wrapper-width: 80%;
	--container-padding: 52px 0;

	/* SLICK BANNER */
	--slider-height: 33rem;

	/* BANNER*/
	--title-banner: 2.5rem;
	--text-banner: 1.3rem;
	--btn-size-banner: 20px;
	--btn-padding-banner: 10px 14px;
	/* TITLE*/
	--title-color: #000;
	--title: 2rem;
	--ln-height-title: 1.2;
	--fw-title: 400;
	/*TEXT*/
	--subtitle1: 1.75rem;
	--subtitle2: 1.125rem;
	--subtitle3: 1.2rem;
	--text: 1rem;
	--text-color: #000;
	--ln-height-text: 1.2;
	--fw-text: 400;
	/*NAVEGATION*/
	--nav-color: #333;
	--nav-size: 15px;
	--nav-gap: 2rem;
	/*BTN*/
	--btn-padding: 8px 12px;
	--btn-size: 14px;
	--btn-radius: 4px;

}

/* SMALL DEVICE */
@media (max-width: 767.98px) {

	:root {
		--container-padding: 16px 0;
		--wrapper-width: 95%;
	}

}

@media screen and (min-width: 1440px) {
	:root {
		/* SLICK BANNER */
		--slider-height: 42rem;
	}
}

html {
	max-width: var(--window-width);
	width: 100%;
	margin: 0 auto;
}

body {
	font-size: 16px;
	font-family: var(--primary-font);
	text-decoration: none;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {

	body {
		font-size: 12px;
	}

}

h1,
h2,
h3,
h4 {
	font-family: var(--primary-font);
	color: var(--title-color);
	margin: 16px 0;
	font-size: var(--text);
	line-height: var(--ln-height-title);
	font-family: var(--primary-font);
	font-weight: var(--fw-title);
}

h1 {
	font-size: var(--title);
}

h2 {
	font-size: var(--subtitle1);
}

h3 {
	font-size: var(--subtitle2);
}

p {
	font-size: var(--text);
	line-height: var(--ln-height-text);
	font-family: var(--primary-font);
	font-weight: var(--fw-text);
	margin: 8px 0;
	color: var(--text-color);
	text-align: left;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {

	h1,
	h2,
	h3,
	h4 {
		font-size: calc(var(--title) - 100%);
	}

}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: .3s;
}

a:active,
a:focus,
a:hover {
	text-decoration: none;
}

hr {
	display: block;
	margin: 16px 0;
	height: 1px;
	border-top: 1px solid #ccc;
}


/* TABELA */
table {
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

table thead th {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--dark);
	overflow: hidden;
	word-break: normal;
	box-sizing: border-box;
	padding: 8px;
}

table tbody tr:not(:last-child) {
	border-bottom: 1px solid var(--dark);
}

table tbody td {
	font-size: 12px;
	font-weight: 400;
	text-align: left;
	color: var(--dark);
	overflow: hidden;
	word-break: break-all;
	box-sizing: border-box;
	padding: 8px;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {

	.table-container {
		width: 100%;
		overflow-x: auto;
	}

	table {
		width: 100%;
		border-collapse: collapse;
		table-layout: unset;
	}

	table :is(td, th) {
		font-size: 8px;
	}

}


/* LIST */
ul {
	margin: 0 0 20px 40px;
}

ul li {
	color: var(--text-color);
	font-size: var(--text);
	margin: 14px 0;
	list-style: disc;
	line-height: 18px;
	text-align: left;
}

ul.list--no-ls li {
	list-style: none;
}

ul li::first-letter {
	text-transform: uppercase;
}


/* CONTAINERS */
.wrapper {
	max-width: var(--window-width);
	width: var(--wrapper-width);
	margin: 0 auto;
	clear: both;
}

.container {
	max-width: 100%;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: var(--container-padding);
	clear: both;
}

section,
article {
	width: 100%;
}


/* CARDS */
.card-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.card {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: var(--border-radius);
	width: 100%;
	position: relative;
	overflow: hidden;
	-webkit-transition: .3s;
	transition: .3s;
}

.card__image {
	display: block;
	width: 100%;
	object-fit: cover;
	-webkit-transition: .3s;
	transition: .3s;
}

.card__title {
	font-size: 16px;
	color: var(--grey);
	-webkit-transition: .3s;
	transition: .3s;
}

.card__text {
	font-size: 14px;
	color: var(--grey);
}

.card__btn {
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 12px 16px;
	border-radius: var(--border-radius);
	font-size: 14px;
	background-color: var(--primary-color);
	color: #fff;
	-webkit-transition: .3s;
	transition: .3s;
}

.card__overlay {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: .5s;
	transition: .5s;
}

.card:hover .card__overlay {
	opacity: 1;
}

/* LARGE DEVICE */
@media (max-width: 1199.98px) {

	.card-group {
		grid-template-columns: repeat(3, 1fr);
	}

}

/* MEDIUM DEVICE */
@media (max-width: 991.98px) {

	.card-group {
		grid-template-columns: repeat(2, 1fr);
	}

}

/* EXTRA SMALL DEVICE */
@media (max-width: 575.98px) {
	.card-group {
		grid-template-columns: 1fr;
	}

}


/* padrão */
.btn {
	display: inline-block;
	padding: var(--btn-padding);
	font-size: var(--btn-size);
	text-align: center;
	text-decoration: none;
	border-radius: var(--btn-radius);
	transition: .3s;
	cursor: pointer;
}

/* solid */
.btn--primary {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
}

.btn--primary:hover,
.btn--primary:focus {
	background-color: var(--secondary-color);
}

/* secondary solid */
.btn--secondary {
	background-color: var(--secondary-color);
	color: #fff;
	border: none;
}

.btn--secondary:hover,
.btn--secondary:focus {
	background-color: var(--primary-color);
}

/* tertiary solid */
.btn--tertiary {
	background-color: var(--tertiary-color);
	color: #fff;
	border: none;
}

.btn--tertiary:hover,
.btn--tertiary:focus {
	background-color: var(--primary-color);
}

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

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

/* outlines */

/* outline white */
.btn--outline-white {
	border: 1px solid #fff;
	color: #fff;
}

.btn--outline-white:hover,
.btn--outline-white:focus {
	background-color: #fff;
	color: var(--primary-color, #000);
}

/* outline black */
.btn--outline-black {
	border: 1px solid #000;
	color: #000;
}

.btn--outline-black:hover,
.btn--outline-black:focus {
	background-color: #000;
	color: #fff;
}

.btn--outline-primary {
	background: transparent;
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}

.btn--outline-primary:hover,
.btn--outline-primary:focus {
	background: var(--primary-color);
	color: #fff;
}

.btn--outline-secondary {
	background: transparent;
	border: 1px solid var(--secondary-color);
	color: var(--secondary-color);
}

.btn--outline-secondary:hover,
.btn--outline-secondary:focus {
	background: var(--secondary-color);
	color: #fff;
}

.btn--outline-tertiary {
	background: transparent;
	border: 1px solid var(--tertiary-color);
	color: var(--tertiary-color);
}

.btn--outline-tertiary:hover,
.btn--outline-tertiary:focus {
	background: var(--tertiary-color);
	color: #fff;
}



/* SMALL DEVICE */
@media (max-width: 767.98px) {
	.btn {
		display: block;
		width: 100%;
	}

}

/* HEADER */

/* header fixo */
.headerFixed {
	position: fixed !important;
	max-width: var(--window-width);
	width: 100%;
	z-index: 999;
	top: 0;
	left: 50%;
	transform: translateX(-50%);

}

.header-home.headerFixed {
	background-color: var(--white);
}

.headerFixed .topo {
	display: none;
}

.headerFixed .logo img {
	width: 100%;
	margin: 8px auto;
}

.headerFixed:is(.headerSlide, .headerFade) {
	animation-delay: 0.5s;
	animation-duration: 0.30s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}


/* header fixo - efeito slide */
.headerSlide {
	animation-name: headerSlide;
	transform: translate(-50%, -100%);
}

@keyframes headerSlide {
	from {
		transform: translate(-50%, -100%);
	}

	to {
		transform: translate(-50%, 0);
	}

}


/* header fixo - efeito fade */
.headerFade {
	animation-name: headerFade;
	opacity: 0;
}

@keyframes headerFade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

/* LARGE DEVICE */
@media (max-width: 1199.98px) {
	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: 6px;
		background: var(--primary-color);
		color: #fff;
		border-radius: 50%;
		font-size: 22px;
	}

}


/* BROWSE HAPPY PROMPT */

#cookies-message p {
	color: white;
}

.browsehappy {
	margin: 32px 0;
	background: #ccc;
	color: #000;
	padding: 32px 0;
}


/* SCROLL UP BUTTON */
#scrollUp {
	position: fixed;
	bottom: -100px;
	right: 12px;
	z-index: 9999;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	background-color: var(--secondary-color);
	cursor: pointer;
	opacity: 0;
	-webkit-transition: .3s;
	transition: .3s;
}

#scrollUp::after {
	content: '\f077';
	font: 18px/normal FontAwesome;
	color: #fff;
}

#scrollUp.is-active {
	-webkit-transition: .5s;
	transition: .5s;
	bottom: 0;
	opacity: 1;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {

	#scrollUp {
		width: 40px;
		height: 40px;
	}

	#scrollUp::after {
		font-size: 12px;
	}

}

/* *** RULES CSS BS *** */

.w-auto {
	width: auto;
}

.h-auto {
	height: auto;
}

.w-fit {
	width: fit-content;
}

.h-fit {
	height: fit-content;
}

.min-w-100 {
	min-width: 100%;
}

.min-h-100 {
	min-height: 100%;
}

.max-w-screen {
	max-width: 100vw;
}

.max-h-screen {
	max-height: 100vh;
}

.blend-normal {
	mix-blend-mode: normal;
}

.blend-multiply {
	mix-blend-mode: multiply;
}

.blend-screen {
	mix-blend-mode: screen;
}

.blend-overlay {
	mix-blend-mode: overlay;
}


/* Z-INDEX */
.z-0 {
	z-index: 0;
}

.z-1 {
	z-index: 1;
}

.z--1 {
	z-index: -1;
}

.z-999 {
	z-index: 9999;
}

/* BOX SHADOW */
.shadow-sm {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.shadow-md {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shadow-lg {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* CURSOR */
.cursor-pointer {
	cursor: pointer;
}

.cursor-default {
	cursor: default;
}

/* USER SELECT */
.user-select-none {
	user-select: none;
}

.user-select-text {
	user-select: text;
}

/* TRANSITIONS */
.transition-fast {
	transition: all 0.2s ease;
}

.transition {
	transition: all 0.3s ease;
}

.transition-slow {
	transition: all 0.5s ease;
}

/* TRANSFORM EFFECTS */
.scale-hover:hover {
	transform: scale(1.2);
}

/* OVERFLOW */
.overflow-hidden {
	overflow: hidden;
}

.overflow-auto {
	overflow: auto;
}

.overflow-scroll {
	overflow: scroll;
}

/* LETTER SPACING */
.ls-0 {
	letter-spacing: 0;
}

.ls-1 {
	letter-spacing: 0.5px;
}

.ls-2 {
	letter-spacing: 1px;
}

.ls-3 {
	letter-spacing: 2px;
}

/* OPACITY */
.opacity-0 {
	opacity: 0;
}

.opacity-25 {
	opacity: 0.25;
}

.opacity-50 {
	opacity: 0.5;
}

.opacity-75 {
	opacity: 0.75;
}

.opacity-100 {
	opacity: 1;
}

/* LINE HEIGHT */
.ln-height-100 {
	line-height: 100%;
}

.ln-height-120 {
	line-height: 120%;
}

.ln-height-140 {
	line-height: 140%;
}

.ln-height-150 {
	line-height: 150%;
}

.ln-height-160 {
	line-height: 160%;
}

.ln-height-180 {
	line-height: 180%;
}

.ln-height-200 {
	line-height: 200%;
}

.ln-height-1 {
	line-height: 1;
}

.ln-height-1-2 {
	line-height: 1.2;
}

.ln-height-1-3 {
	line-height: 1.3;
}

.ln-height-1-4 {
	line-height: 1.4;
}

.ln-height-1-5 {
	line-height: 1.5;
}

.ln-height-1-6 {
	line-height: 1.6;
}

.ln-height-1-8 {
	line-height: 1.8;
}

.ln-height-2 {
	line-height: 2;
}

/* LETTER SPACING */
.lt-spacing-0 {
	letter-spacing: 0;
}

.lt-spacing-0-5 {
	letter-spacing: 0.5px;
}

.lt-spacing-1 {
	letter-spacing: 1px;
}

.lt-spacing-1-5 {
	letter-spacing: 1.5px;
}

.lt-spacing-2 {
	letter-spacing: 2px;
}

.lt-spacing-3 {
	letter-spacing: 3px;
}

.lt-spacing-4 {
	letter-spacing: 4px;
}

.lt-spacing-5 {
	letter-spacing: 5px;
}

.lt-spacing-6 {
	letter-spacing: 6px;
}

.lt-spacing-8 {
	letter-spacing: 8px;
}

.lt-spacing-10 {
	letter-spacing: 10px;
}

/* NEGATIVOS */
.lt-spacing--0-5 {
	letter-spacing: -0.5px;
}

.lt-spacing--1 {
	letter-spacing: -1px;
}

.lt-spacing--1-5 {
	letter-spacing: -1.5px;
}

.lt-spacing--2 {
	letter-spacing: -2px;
}

.lt-spacing--3 {
	letter-spacing: -3px;
}

.lt-spacing--4 {
	letter-spacing: -4px;
}

.lt-spacing--5 {
	letter-spacing: -5px;
}


/* WORD SPACING */
.wd-spacing-0 {
	word-spacing: 0;
}

.wd-spacing-2 {
	word-spacing: 2px;
}

.wd-spacing-4 {
	word-spacing: 4px;
}

.wd-spacing-6 {
	word-spacing: 6px;
}

.wd-spacing-8 {
	word-spacing: 8px;
}

.wd-spacing-10 {
	word-spacing: 10px;
}

.wd-spacing-12 {
	word-spacing: 12px;
}

.wd-spacing-14 {
	word-spacing: 14px;
}

.wd-spacing-16 {
	word-spacing: 16px;
}

.wd-spacing-20 {
	word-spacing: 20px;
}

/* NEGATIVOS */
.wd-spacing--2 {
	word-spacing: -2px;
}

.wd-spacing--4 {
	word-spacing: -4px;
}

.wd-spacing--6 {
	word-spacing: -6px;
}

.wd-spacing--8 {
	word-spacing: -8px;
}

.wd-spacing--10 {
	word-spacing: -10px;
}



/* TEXT SHADOW */
.text-shadow-sm {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.text-shadow-lg {
	text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.text-shadow-none {
	text-shadow: none;
}

/* TEXT DECORATION */
.text-underline {
	text-decoration: underline;
}

.text-line-through {
	text-decoration: line-through;
}

.text-no-decoration {
	text-decoration: none;
}

/* WHITE SPACE */
.white-space-nowrap {
	white-space: nowrap;
}

.white-space-normal {
	white-space: normal;
}

.white-space-pre {
	white-space: pre;
}

/* WORD BREAK */
.break-word {
	word-break: break-word;
}

.break-all {
	word-break: break-all;
}

.no-wrap {
	white-space: nowrap;
}

/* BORDER RADIUS */
.br-0 {
	border-radius: 0px;
}

.br-4 {
	border-radius: 4px;
}

.br-8 {
	border-radius: 8px;
}

.br-16 {
	border-radius: 16px;
}

.br-32 {
	border-radius: 32px;
}

.br-circle {
	border-radius: 50%;
}

/* BORDER WIDTH */
.border-1 {
	border-width: 1px;
}

.border-2 {
	border-width: 2px;
}

.border-4 {
	border-width: 4px;
}

.border-0 {
	border-width: 0px;
}

/* BORDER STYLE */
.border-solid {
	border-style: solid;
}

.border-dashed {
	border-style: dashed;
}

.border-dotted {
	border-style: dotted;
}

.border-none {
	border-style: none;
}


/* MARGIN */

/* Margens gerais */
.m-auto {
	margin: 0 auto !important;
}

.m-0 {
	margin: 0px !important;
}

.m-4 {
	margin: 4px !important;
}

.m-8 {
	margin: 8px !important;
}

.m-12 {
	margin: 12px !important;
}

.m-14 {
	margin: 14px !important;
}

.m-16 {
	margin: 16px !important;
}

.m-32 {
	margin: 32px !important;
}

.m-64 {
	margin: 64px !important;
}


/* Margens horizontais */
.mx-0 {
	margin-left: 0px !important;
	margin-right: 0px !important;
}

.mx-4 {
	margin-left: 4px !important;
	margin-right: 4px !important;
}

.mx-8 {
	margin-left: 8px !important;
	margin-right: 8px !important;
}

.mx-12 {
	margin-left: 12px !important;
	margin-right: 12px !important;
}

.mx-14 {
	margin-left: 14px !important;
}

.mx-16 {
	margin-left: 16px !important;
	margin-right: 16px !important;
}

.mx-32 {
	margin-left: 32px !important;
	margin-right: 32px !important;
}

.mx-64 {
	margin-left: 64px !important;
	margin-right: 64px !important;
}


/* Margens verticais */
.my-0 {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.my-4 {
	margin-top: 4px !important;
	margin-bottom: 4px !important;
}

.my-8 {
	margin-top: 8px !important;
	margin-bottom: 8px !important;
}

.my-12 {
	margin-top: 12px !important;
	margin-bottom: 12px !important;
}

.my-14 {
	margin-top: 14px !important;
}

.my-16 {
	margin-top: 16px !important;
	margin-bottom: 16px !important;
}

.my-32 {
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}

.my-64 {
	margin-top: 64px !important;
	margin-bottom: 64px !important;
}


/* Margem superior */
.mt-0 {
	margin-top: 0px !important;
}

.mt-4 {
	margin-top: 4px !important;
}

.mt-8 {
	margin-top: 8px !important;
}

.mt-12 {
	margin-top: 12px !important;
}

.mt-14 {
	margin-top: 14px !important;
}

.mt-16 {
	margin-top: 16px !important;
}

.mt-32 {
	margin-top: 32px !important;
}

.mt-64 {
	margin-top: 64px !important;
}

/* Margem inferior */
.mb-0 {
	margin-bottom: 0px !important;
}

.mb-4 {
	margin-bottom: 4px !important;
}

.mb-8 {
	margin-bottom: 8px !important;
}

.mb-12 {
	margin-bottom: 12px !important;
}

.mb-14 {
	margin-bottom: 14px !important;
}

.mb-16 {
	margin-bottom: 16px !important;
}

.mb-32 {
	margin-bottom: 32px !important;
}

.mb-64 {
	margin-bottom: 64px !important;
}


/* Margem esquerda */
.ml-0 {
	margin-left: 0px !important;
}

.ml-4 {
	margin-left: 4px !important;
}

.ml-8 {
	margin-left: 8px !important;
}

.ml-12 {
	margin-left: 12px !important;
}

.ml-14 {
	margin-left: 14px !important;
}

.ml-16 {
	margin-left: 16px !important;
}

.ml-32 {
	margin-left: 32px !important;
}

.ml-64 {
	margin-left: 64px !important;
}


/* Margem direita */
.mr-0 {
	margin-right: 0px !important;
}

.mr-4 {
	margin-right: 4px !important;
}

.mr-8 {
	margin-right: 8px !important;
}

.mr-12 {
	margin-right: 12px !important;
}

.mr-14 {
	margin-right: 14px !important;
}

.mr-16 {
	margin-right: 16px !important;
}

.mr-32 {
	margin-right: 32px !important;
}

.mr-64 {
	margin-right: 64px !important;
}


/* PADDING */

/* Padding geral */
.p-0 {
	padding: 0px !important;
}

.p-4 {
	padding: 4px !important;
}

.p-8 {
	padding: 8px !important;
}

.p-12 {
	padding: 12px !important;
}

.p-14 {
	padding: 14px !important;
}

.p-16 {
	padding: 16px !important;
}

.p-32 {
	padding: 32px !important;
}

.p-64 {
	padding: 64px !important;
}


/* Padding horizontal */
.px-0 {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.px-4 {
	padding-left: 4px !important;
	padding-right: 4px !important;
}

.px-8 {
	padding-left: 8px !important;
	padding-right: 8px !important;
}

.px-12 {
	padding-left: 12px !important;
	padding-right: 12px !important;
}

.px-14 {
	padding-left: 14px !important;
	padding-right: 14px !important;
}

.px-16 {
	padding-left: 16px !important;
	padding-right: 16px !important;
}

.px-32 {
	padding-left: 32px !important;
	padding-right: 32px !important;
}

.px-64 {
	padding-left: 64px !important;
	padding-right: 64px !important;
}


/* Padding vertical */
.py-0 {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.py-4 {
	padding-top: 4px !important;
	padding-bottom: 4px !important;
}

.py-8 {
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}

.py-12 {
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}

.py-14 {
	padding-top: 14px !important;
	padding-bottom: 14px !important;
}

.py-16 {
	padding-top: 16px !important;
	padding-bottom: 16px !important;
}

.py-32 {
	padding-top: 32px !important;
	padding-bottom: 32px !important;
}

.py-64 {
	padding-top: 64px !important;
	padding-bottom: 64px !important;
}


/* Padding superior */
.pt-0 {
	padding-top: 0px !important;
}

.pt-4 {
	padding-top: 4px !important;
}

.pt-8 {
	padding-top: 8px !important;
}

.pt-12 {
	padding-top: 12px !important;
}

.pt-14 {
	padding-top: 14px !important;
}

.pt-16 {
	padding-top: 16px !important;
}

.pt-32 {
	padding-top: 32px !important;
}

.pt-64 {
	padding-top: 64px !important;
}


/* Padding inferior */
.pb-0 {
	padding-bottom: 0px !important;
}

.pb-4 {
	padding-bottom: 4px !important;
}

.pb-8 {
	padding-bottom: 8px !important;
}

.pb-12 {
	padding-bottom: 12px !important;
}

.pb-14 {
	padding-bottom: 14px !important;
}

.pb-16 {
	padding-bottom: 16px !important;
}

.pb-32 {
	padding-bottom: 32px !important;
}

.pb-64 {
	padding-bottom: 64px !important;
}


/* Padding esquerda */
.pl-0 {
	padding-left: 0px !important;
}

.pl-4 {
	padding-left: 4px !important;
}

.pl-8 {
	padding-left: 8px !important;
}

.pl-12 {
	padding-left: 12px !important;
}

.pl-14 {
	padding-left: 14px !important;
}

.pl-16 {
	padding-left: 16px !important;
}

.pl-32 {
	padding-left: 32px !important;
}

.pl-64 {
	padding-left: 64px !important;
}


/* Padding direita */
.pr-0 {
	padding-right: 0px !important;
}

.pr-4 {
	padding-right: 4px !important;
}

.pr-8 {
	padding-right: 8px !important;
}

.pr-12 {
	padding-right: 12px !important;
}

.pr-14 {
	padding-right: 14px !important;
}

.pr-16 {
	padding-right: 16px !important;
}

.pr-32 {
	padding-right: 32px !important;
}

.pr-64 {
	padding-right: 64px !important;
}


/* Padding geral - Nova escala */
.p-10 {
	padding: 10px !important;
}

.p-20 {
	padding: 20px !important;
}

.p-30 {
	padding: 30px !important;
}

.p-40 {
	padding: 40px !important;
}

.p-50 {
	padding: 50px !important;
}

.p-60 {
	padding: 60px !important;
}

.p-70 {
	padding: 70px !important;
}

.p-80 {
	padding: 80px !important;
}

.p-90 {
	padding: 90px !important;
}

.p-100 {
	padding: 100px !important;
}

/* Padding horizontal - Nova escala */
.px-10 {
	padding-inline: 10px !important;
}

.px-20 {
	padding-inline: 20px !important;
}

.px-30 {
	padding-inline: 30px !important;
}

.px-40 {
	padding-inline: 40px !important;
}

.px-50 {
	padding-inline: 50px !important;
}

.px-60 {
	padding-inline: 60px !important;
}

.px-70 {
	padding-inline: 70px !important;
}

.px-80 {
	padding-inline: 80px !important;
}

.px-90 {
	padding-inline: 90px !important;
}

.px-100 {
	padding-inline: 100px !important;
}

/* Padding vertical - Nova escala */
.py-10 {
	padding-block: 10px !important;
}

.py-20 {
	padding-block: 20px !important;
}

.py-30 {
	padding-block: 30px !important;
}

.py-40 {
	padding-block: 40px !important;
}

.py-50 {
	padding-block: 50px !important;
}

.py-60 {
	padding-block: 60px !important;
}

.py-70 {
	padding-block: 70px !important;
}

.py-80 {
	padding-block: 80px !important;
}

.py-90 {
	padding-block: 90px !important;
}

.py-100 {
	padding-block: 100px !important;
}

/* Padding superior - Nova escala */
.pt-10 {
	padding-top: 10px !important;
}

.pt-20 {
	padding-top: 20px !important;
}

.pt-30 {
	padding-top: 30px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pt-50 {
	padding-top: 50px !important;
}

.pt-60 {
	padding-top: 60px !important;
}

.pt-70 {
	padding-top: 70px !important;
}

.pt-80 {
	padding-top: 80px !important;
}

.pt-90 {
	padding-top: 90px !important;
}

.pt-100 {
	padding-top: 100px !important;
}

/* Padding inferior - Nova escala */
.pb-10 {
	padding-bottom: 10px !important;
}

.pb-20 {
	padding-bottom: 20px !important;
}

.pb-30 {
	padding-bottom: 30px !important;
}

.pb-40 {
	padding-bottom: 40px !important;
}

.pb-50 {
	padding-bottom: 50px !important;
}

.pb-60 {
	padding-bottom: 60px !important;
}

.pb-70 {
	padding-bottom: 70px !important;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.pb-90 {
	padding-bottom: 90px !important;
}

.pb-100 {
	padding-bottom: 100px !important;
}

/* Padding esquerda - Nova escala */
.pl-10 {
	padding-left: 10px !important;
}

.pl-20 {
	padding-left: 20px !important;
}

.pl-30 {
	padding-left: 30px !important;
}

.pl-40 {
	padding-left: 40px !important;
}

.pl-50 {
	padding-left: 50px !important;
}

.pl-60 {
	padding-left: 60px !important;
}

.pl-70 {
	padding-left: 70px !important;
}

.pl-80 {
	padding-left: 80px !important;
}

.pl-90 {
	padding-left: 90px !important;
}

.pl-100 {
	padding-left: 100px !important;
}

/* Padding direita - Nova escala */
.pr-10 {
	padding-right: 10px !important;
}

.pr-20 {
	padding-right: 20px !important;
}

.pr-30 {
	padding-right: 30px !important;
}

.pr-40 {
	padding-right: 40px !important;
}

.pr-50 {
	padding-right: 50px !important;
}

.pr-60 {
	padding-right: 60px !important;
}

.pr-70 {
	padding-right: 70px !important;
}

.pr-80 {
	padding-right: 80px !important;
}

.pr-90 {
	padding-right: 90px !important;
}

.pr-100 {
	padding-right: 100px !important;
}

/* MARGIN - Nova Escala 10-100 */
.m-10 {
	margin: 10px !important;
}

.m-20 {
	margin: 20px !important;
}

.m-30 {
	margin: 30px !important;
}

.m-40 {
	margin: 40px !important;
}

.m-50 {
	margin: 50px !important;
}

.m-60 {
	margin: 60px !important;
}

.m-70 {
	margin: 70px !important;
}

.m-80 {
	margin: 80px !important;
}

.m-90 {
	margin: 90px !important;
}

.m-100 {
	margin: 100px !important;
}

.mx-10 {
	margin-inline: 10px !important;
}

.mx-20 {
	margin-inline: 20px !important;
}

.mx-30 {
	margin-inline: 30px !important;
}

.mx-40 {
	margin-inline: 40px !important;
}

.mx-50 {
	margin-inline: 50px !important;
}

.mx-60 {
	margin-inline: 60px !important;
}

.mx-70 {
	margin-inline: 70px !important;
}

.mx-80 {
	margin-inline: 80px !important;
}

.mx-90 {
	margin-inline: 90px !important;
}

.mx-100 {
	margin-inline: 100px !important;
}

.my-10 {
	margin-block: 10px !important;
}

.my-20 {
	margin-block: 20px !important;
}

.my-30 {
	margin-block: 30px !important;
}

.my-40 {
	margin-block: 40px !important;
}

.my-50 {
	margin-block: 50px !important;
}

.my-60 {
	margin-block: 60px !important;
}

.my-70 {
	margin-block: 70px !important;
}

.my-80 {
	margin-block: 80px !important;
}

.my-90 {
	margin-block: 90px !important;
}

.my-100 {
	margin-block: 100px !important;
}

.mt-10 {
	margin-top: 10px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mt-70 {
	margin-top: 70px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-90 {
	margin-top: 90px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mb-10 {
	margin-bottom: 10px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-50 {
	margin-bottom: 50px !important;
}

.mb-60 {
	margin-bottom: 60px !important;
}

.mb-70 {
	margin-bottom: 70px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-90 {
	margin-bottom: 90px !important;
}

.mb-100 {
	margin-bottom: 100px !important;
}

.ml-10 {
	margin-left: 10px !important;
}

.ml-20 {
	margin-left: 20px !important;
}

.ml-30 {
	margin-left: 30px !important;
}

.ml-40 {
	margin-left: 40px !important;
}

.ml-50 {
	margin-left: 50px !important;
}

.ml-60 {
	margin-left: 60px !important;
}

.ml-70 {
	margin-left: 70px !important;
}

.ml-80 {
	margin-left: 80px !important;
}

.ml-90 {
	margin-left: 90px !important;
}

.ml-100 {
	margin-left: 100px !important;
}

.mr-10 {
	margin-right: 10px !important;
}

.mr-20 {
	margin-right: 20px !important;
}

.mr-30 {
	margin-right: 30px !important;
}

.mr-40 {
	margin-right: 40px !important;
}

.mr-50 {
	margin-right: 50px !important;
}

.mr-60 {
	margin-right: 60px !important;
}

.mr-70 {
	margin-right: 70px !important;
}

.mr-80 {
	margin-right: 80px !important;
}

.mr-90 {
	margin-right: 90px !important;
}

.mr-100 {
	margin-right: 100px !important;
}


/* EXTRA LARGE DEVICE */
@media (min-width: 1200px) {

	/* WIDTH / HEIGHT */
	.w-0 {
		width: 0%
	}

	.mw-0 {
		max-width: 0%
	}

	.h-0 {
		height: 0%
	}

	.mh-0 {
		max-height: 0%
	}

	.w-10 {
		width: 10%
	}

	.mw-10 {
		max-width: 10%
	}

	.h-10 {
		height: 10%
	}

	.mh-10 {
		max-height: 10%
	}

	.w-20 {
		width: 20%
	}

	.mw-20 {
		max-width: 20%
	}

	.h-20 {
		height: 20%
	}

	.mh-20 {
		max-height: 20%
	}

	.w-30 {
		width: 30%
	}

	.mw-30 {
		max-width: 30%
	}

	.h-30 {
		height: 30%
	}

	.mh-30 {
		max-height: 30%
	}

	.w-40 {
		width: 40%
	}

	.mw-40 {
		max-width: 40%
	}

	.h-40 {
		height: 40%
	}

	.mh-40 {
		max-height: 40%
	}

	.w-50 {
		width: 50%
	}

	.mw-50 {
		max-width: 50%
	}

	.h-50 {
		height: 50%
	}

	.mh-50 {
		max-height: 50%
	}

	.w-60 {
		width: 60%
	}

	.mw-60 {
		max-width: 60%
	}

	.h-60 {
		height: 60%
	}

	.mh-60 {
		max-height: 60%
	}

	.w-70 {
		width: 70%
	}

	.mw-70 {
		max-width: 70%
	}

	.h-70 {
		height: 70%
	}

	.mh-70 {
		max-height: 70%
	}

	.w-80 {
		width: 80%
	}

	.mw-80 {
		max-width: 80%
	}

	.h-80 {
		height: 80%
	}

	.mh-80 {
		max-height: 80%
	}

	.w-90 {
		width: 90%
	}

	.mw-90 {
		max-width: 90%
	}

	.h-90 {
		height: 90%
	}

	.mh-90 {
		max-height: 90%
	}

	.w-100 {
		width: 100%
	}

	.mw-100 {
		max-width: 100%
	}

	.h-100 {
		height: 100%
	}

	.mh-100 {
		max-height: 100%
	}


}


/* IMAGE ALIGN */
.picture-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.picture-left {
	float: left;
}

.picture-right {
	float: right;
}

/* FONT-SIZE FIXO EM PX */

.fs-8 {
	font-size: 8px;
}

.fs-10 {
	font-size: 10px;
}

.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

.fs-16 {
	font-size: 16px;
}

.fs-18 {
	font-size: 18px;
}

.fs-20 {
	font-size: 20px;
}

.fs-22 {
	font-size: 22px;
}

.fs-24 {
	font-size: 24px;
}

.fs-26 {
	font-size: 26px;
}

.fs-28 {
	font-size: 28px;
}

.fs-30 {
	font-size: 30px;
}

.fs-32 {
	font-size: 32px;
}

.fs-34 {
	font-size: 34px;
}

.fs-36 {
	font-size: 36px;
}

.fs-38 {
	font-size: 38px;
}

.fs-40 {
	font-size: 40px;
}

.fs-42 {
	font-size: 42px;
}

.fs-44 {
	font-size: 44px;
}

.fs-46 {
	font-size: 46px;
}

.fs-48 {
	font-size: 48px;
}

.fs-50 {
	font-size: 50px;
}

.fs-52 {
	font-size: 52px;
}

.fs-54 {
	font-size: 54px;
}

.fs-56 {
	font-size: 56px;
}

.fs-58 {
	font-size: 58px;
}

.fs-60 {
	font-size: 60px;
}

.fs-62 {
	font-size: 62px;
}

.fs-64 {
	font-size: 64px;
}

.fs-66 {
	font-size: 66px;
}

.fs-68 {
	font-size: 68px;
}

.fs-70 {
	font-size: 70px;
}

.fs-72 {
	font-size: 72px;
}

.fs-74 {
	font-size: 74px;
}

.fs-76 {
	font-size: 76px;
}

.fs-78 {
	font-size: 78px;
}

.fs-80 {
	font-size: 80px;
}

.fs-82 {
	font-size: 82px;
}

.fs-84 {
	font-size: 84px;
}

.fs-86 {
	font-size: 86px;
}

.fs-88 {
	font-size: 88px;
}

.fs-90 {
	font-size: 90px;
}

.fs-92 {
	font-size: 92px;
}

.fs-94 {
	font-size: 94px;
}

.fs-96 {
	font-size: 96px;
}

.fs-98 {
	font-size: 98px;
}

.fs-100 {
	font-size: 100px;
}

.fs-102 {
	font-size: 102px;
}

.fs-104 {
	font-size: 104px;
}

.fs-106 {
	font-size: 106px;
}

.fs-108 {
	font-size: 108px;
}

.fs-110 {
	font-size: 110px;
}



/* SMALL DEVICE */
@media (max-width: 767.98px) {

	[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 (max-width: 991.98px) {

	.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 (max-width: 767.98px) {

	.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 (max-width: 991.98px) {

	.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 (max-width: 767.98px) {

	.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 (max-width: 991.98px) {

	.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 (max-width: 767.98px) {

	.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  */

.img-rounded {
	border-radius: var(--img-rounded);
}

.rounded {
	border-radius: 16px;
}

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

/* FONTS */

.primary-font {
	font-family: var(--primary-font);
}

.secondary-font {
	font-family: var(--secondary-font);
}

.tertiary-font {
	font-family: var(--tertiary-font);
}

/* COLORS */
.primary-color {
	color: var(--primary-color);
}

.secondary-color {
	color: var(--secondary-color);
}

.tertiary-color {
	color: var(--tertiary-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 (max-width: 991.98px) {

	.show-mobile {
		display: block
	}

	.show-desk {
		display: none
	}

	.hide-desk {
		display: block
	}

	.hide-mobile {
		display: none
	}

}

.shadow {
	box-shadow: 6px 6px 68px rgba(0, 0, 0, 0.15);
}

.titulo {
	position: relative;
}

/* Linha embaixo (padrão) */
.titulo.line-bottom::after {
	content: "";
	display: block;
	width: 20%;
	min-width: 3rem;
	height: .25rem;
	margin-top: .5rem;
	background-color: var(--primary-color);
	margin-left: auto;
	margin-right: auto;
}

/* Linha em cima */
.titulo.line-top::before {
	content: "";
	display: block;
	width: 20%;
	min-width: 3rem;
	height: .25rem;
	margin-bottom: .5rem;
	background-color: var(--primary-color);
	margin-left: auto;
	margin-right: auto;
}

/* Linha à esquerda */
.titulo.line-left::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3rem;
	height: .25rem;
	background-color: var(--primary-color);
}

/* Linha à direita */
.titulo.line-right::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 3rem;
	height: .25rem;
	background-color: var(--primary-color);
}

/* Linha completa (full) embaixo */
.titulo.line-bottom-full::after {
	content: "";
	display: block;
	width: 100%;
	height: .25rem;
	margin-top: .5rem;
	background-color: var(--primary-color);
}



/* COL SYSTEM */
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 0px;
	--spacing: 0px;
	margin: 0 -16px;
}

.row::after,
.row::before {
	content: '';
	clear: both;
	display: table;
}

[class*=col-]:not([class*=grid-]) {
	padding: 16px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* offsets padrão (mobile first) */
.offset-1 {
	margin-left: 8.33%;
}

.offset-2 {
	margin-left: 16.66%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33%;
}

.offset-5 {
	margin-left: 41.66%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33%;
}

.offset-8 {
	margin-left: 66.66%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33%;
}

.offset-11 {
	margin-left: 91.66%;
}

/* Breakpoints iguais ao Bootstrap */
@media (min-width: 576px) {
	.offset-sm-1 {
		margin-left: 8.33%;
	}

	.offset-sm-2 {
		margin-left: 16.66%;
	}

	.offset-sm-3 {
		margin-left: 25%;
	}

	.offset-sm-4 {
		margin-left: 33.33%;
	}

	.offset-sm-5 {
		margin-left: 41.66%;
	}

	.offset-sm-6 {
		margin-left: 50%;
	}

	.offset-sm-7 {
		margin-left: 58.33%;
	}

	.offset-sm-8 {
		margin-left: 66.66%;
	}

	.offset-sm-9 {
		margin-left: 75%;
	}

	.offset-sm-10 {
		margin-left: 83.33%;
	}

	.offset-sm-11 {
		margin-left: 91.66%;
	}
}

@media (min-width: 768px) {
	.offset-md-1 {
		margin-left: 8.33%;
	}

	.offset-md-2 {
		margin-left: 16.66%;
	}

	.offset-md-3 {
		margin-left: 25%;
	}

	.offset-md-4 {
		margin-left: 33.33%;
	}

	.offset-md-5 {
		margin-left: 41.66%;
	}

	.offset-md-6 {
		margin-left: 50%;
	}

	.offset-md-7 {
		margin-left: 58.33%;
	}

	.offset-md-8 {
		margin-left: 66.66%;
	}

	.offset-md-9 {
		margin-left: 75%;
	}

	.offset-md-10 {
		margin-left: 83.33%;
	}

	.offset-md-11 {
		margin-left: 91.66%;
	}
}

@media (min-width: 992px) {
	.offset-lg-1 {
		margin-left: 8.33%;
	}

	.offset-lg-2 {
		margin-left: 16.66%;
	}

	.offset-lg-3 {
		margin-left: 25%;
	}

	.offset-lg-4 {
		margin-left: 33.33%;
	}

	.offset-lg-5 {
		margin-left: 41.66%;
	}

	.offset-lg-6 {
		margin-left: 50%;
	}

	.offset-lg-7 {
		margin-left: 58.33%;
	}

	.offset-lg-8 {
		margin-left: 66.66%;
	}

	.offset-lg-9 {
		margin-left: 75%;
	}

	.offset-lg-10 {
		margin-left: 83.33%;
	}

	.offset-lg-11 {
		margin-left: 91.66%;
	}
}

@media (min-width: 1200px) {
	.offset-xl-1 {
		margin-left: 8.33%;
	}

	.offset-xl-2 {
		margin-left: 16.66%;
	}

	.offset-xl-3 {
		margin-left: 25%;
	}

	.offset-xl-4 {
		margin-left: 33.33%;
	}

	.offset-xl-5 {
		margin-left: 41.66%;
	}

	.offset-xl-6 {
		margin-left: 50%;
	}

	.offset-xl-7 {
		margin-left: 58.33%;
	}

	.offset-xl-8 {
		margin-left: 66.66%;
	}

	.offset-xl-9 {
		margin-left: 75%;
	}

	.offset-xl-10 {
		margin-left: 83.33%;
	}

	.offset-xl-11 {
		margin-left: 91.66%;
	}
}

/* inset padrão (mobile first) */
.inset-1 {
	margin-right: 8.33%;
}

.inset-2 {
	margin-right: 16.66%;
}

.inset-3 {
	margin-right: 25%;
}

.inset-4 {
	margin-right: 33.33%;
}

.inset-5 {
	margin-right: 41.66%;
}

.inset-6 {
	margin-right: 50%;
}

.inset-7 {
	margin-right: 58.33%;
}

.inset-8 {
	margin-right: 66.66%;
}

.inset-9 {
	margin-right: 75%;
}

.inset-10 {
	margin-right: 83.33%;
}

.inset-11 {
	margin-right: 91.66%;
}

/* Breakpoints iguais ao Bootstrap */
@media (min-width: 576px) {
	.inset-sm-1 {
		margin-right: 8.33%;
	}

	.inset-sm-2 {
		margin-right: 16.66%;
	}

	.inset-sm-3 {
		margin-right: 25%;
	}

	.inset-sm-4 {
		margin-right: 33.33%;
	}

	.inset-sm-5 {
		margin-right: 41.66%;
	}

	.inset-sm-6 {
		margin-right: 50%;
	}

	.inset-sm-7 {
		margin-right: 58.33%;
	}

	.inset-sm-8 {
		margin-right: 66.66%;
	}

	.inset-sm-9 {
		margin-right: 75%;
	}

	.inset-sm-10 {
		margin-right: 83.33%;
	}

	.inset-sm-11 {
		margin-right: 91.66%;
	}
}

@media (min-width: 768px) {
	.inset-md-1 {
		margin-right: 8.33%;
	}

	.inset-md-2 {
		margin-right: 16.66%;
	}

	.inset-md-3 {
		margin-right: 25%;
	}

	.inset-md-4 {
		margin-right: 33.33%;
	}

	.inset-md-5 {
		margin-right: 41.66%;
	}

	.inset-md-6 {
		margin-right: 50%;
	}

	.inset-md-7 {
		margin-right: 58.33%;
	}

	.inset-md-8 {
		margin-right: 66.66%;
	}

	.inset-md-9 {
		margin-right: 75%;
	}

	.inset-md-10 {
		margin-right: 83.33%;
	}

	.inset-md-11 {
		margin-right: 91.66%;
	}
}

@media (min-width: 992px) {
	.inset-lg-1 {
		margin-right: 8.33%;
	}

	.inset-lg-2 {
		margin-right: 16.66%;
	}

	.inset-lg-3 {
		margin-right: 25%;
	}

	.inset-lg-4 {
		margin-right: 33.33%;
	}

	.inset-lg-5 {
		margin-right: 41.66%;
	}

	.inset-lg-6 {
		margin-right: 50%;
	}

	.inset-lg-7 {
		margin-right: 58.33%;
	}

	.inset-lg-8 {
		margin-right: 66.66%;
	}

	.inset-lg-9 {
		margin-right: 75%;
	}

	.inset-lg-10 {
		margin-right: 83.33%;
	}

	.inset-lg-11 {
		margin-right: 91.66%;
	}
}

@media (min-width: 1200px) {
	.inset-xl-1 {
		margin-right: 8.33%;
	}

	.inset-xl-2 {
		margin-right: 16.66%;
	}

	.inset-xl-3 {
		margin-right: 25%;
	}

	.inset-xl-4 {
		margin-right: 33.33%;
	}

	.inset-xl-5 {
		margin-right: 41.66%;
	}

	.inset-xl-6 {
		margin-right: 50%;
	}

	.inset-xl-7 {
		margin-right: 58.33%;
	}

	.inset-xl-8 {
		margin-right: 66.66%;
	}

	.inset-xl-9 {
		margin-right: 75%;
	}

	.inset-xl-10 {
		margin-right: 83.33%;
	}

	.inset-xl-11 {
		margin-right: 91.66%;
	}
}



.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 (max-width: 1200px) {
	.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 (max-width: 1199.98px) {
	.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 (max-width: 991.98px) {
	.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 (max-width: 767.98px) {
	.row {
		margin: 0 -8px;
	}

	[class*=col-] {
		flex: 1 0 100%;
		max-width: 100%;
		padding: 8px;
	}

	.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 (max-width: 575.98px) {
	.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: 16px;
	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: 576px) and (max-width: 1199.98px) {
	[class*="grid-col"]:not(.grid-col-3) {
		grid-template-columns: repeat(2, 1fr)
	}
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
	[class*="grid-col-"] {
		grid-template-columns: 100%;
	}
}


/* ORDER UTILITIES */
.order-0 {
	order: 0;
}

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

.order-4 {
	order: 4;
}

.order-5 {
	order: 5;
}

.order-6 {
	order: 6;
}

.order-7 {
	order: 7;
}

.order-8 {
	order: 8;
}

.order-9 {
	order: 9;
}

.order-10 {
	order: 10;
}

.order-11 {
	order: 11;
}

.order-12 {
	order: 12;
}

/* GAP FOR FLEX and GRID ELEMENTS */
.gap-0 {
	gap: 0px;
	--spacing: 0px;
}

.gap-4 {
	gap: 4px;
	--spacing: 4px;
}

.gap-8 {
	gap: 8px;
	--spacing: 8px;
}

.gap-12 {
	gap: 12px;
	--spacing: 12px;
}

.gap-16 {
	gap: 16px;
	--spacing: 16px;
}

.gap-20 {
	gap: 20px;
	--spacing: 20px;
}

.gap-24 {
	gap: 24px;
	--spacing: 24px;
}

.gap-32 {
	gap: 32px;
	--spacing: 32px;
}

.gap-40 {
	gap: 40px;
	--spacing: 40px;
}

.gap-48 {
	gap: 48px;
	--spacing: 48px;
}

.gap-56 {
	gap: 56px;
	--spacing: 56px;
}

.gap-64 {
	gap: 64px;
	--spacing: 64px;
}

.gap-80 {
	gap: 80px;
	--spacing: 80px;
}

.gap-96 {
	gap: 96px;
	--spacing: 96px;
}

.gap-128 {
	gap: 128px;
	--spacing: 128px;
}


/* ROW GAP */

.rgap-0 {
	row-gap: 0;
}

.rgap-8 {
	row-gap: 8px;
}

.rgap-16 {
	row-gap: 16px;
}

.rgap-32 {
	row-gap: 32px;
}

.rgap-64 {
	row-gap: 64px;
}

/* COLUMN GAP */

.cgap-0 {
	column-gap: 0;
	--spacing: 0;
}

.cgap-8 {
	column-gap: 8px;
	--spacing: 8px;
}

.cgap-16 {
	column-gap: 16px;
	--spacing: 16px;
}

.cgap-32 {
	column-gap: 32px;
	--spacing: 32px;
}

.cgap-64 {
	column-gap: 64px;
	--spacing: 64px;
}

/* GAP FOR FLEX AND GRID ELEMENTS - Nova Escala 10-100 */
.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 - Nova Escala 10-100 */
.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 - Nova Escala 10-100 */
.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 (max-width: 767.98px) {
	[class*="gap-"]:not(.g-cols) {
		gap: 16px;
	}
}

/* *** END RULES CSS *** *//* =============================== HEADER =============================== */

/* HEADER */

header .logo img {
  display: block;
  margin: 14px 0;
  width: 85px;
}

header .btn {
  border-radius: 10px;
  background: var(--primary-color);
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 21px;
  text-transform: uppercase;
}



/* TOPO */
header .topo {
  background-color: #1c1a498f;
  padding: 4px 0;
  font-size: 13px;
  color: #fff;
}


.header-pages .topo {
  display: none;
}

.header-home .cabecalho .wrapper {
  background-color: #fff;
  border-radius: 38px;
  transform: translateY(1.5rem);
  position: relative;
}



header .cabecalho .espaco {
  gap: 20px;
  position: relative;
}


header .topo :is(span, a) {
  font: 13px var(--primary-font);
  color: #fff;
  outline: transparent solid 1px;
  outline-offset: 5px;
  border-bottom: 1px solid transparent;
  transition: .3s;
}

header .topo a:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}

/* MENU */
header #menu {
  text-align: center;
  width: 100%;
  position: relative;
}

header #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 100px;
  margin: 5px 0
}

header #menu li {
  position: relative;
  display: inline-block;
  margin: 0;
}

header #menu a {
  color: var(--primary-color);
  text-align: center;
  font-family: "Encode Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: .3s ease;
}

header #menu>ul>li:hover>a,
header #menu>ul>li>a.active-menu-topo {

  color: var(--primary-color) !important;
}

/* SUB MENU */

header .sub-menu-info {
  position: relative;
  z-index: 99;
}

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(--white);
  border-radius: 10px;
  z-index: 99;
}

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 12px;
  box-sizing: border-box;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:first-of-type {
  padding-top: 12px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:last-of-type {
  padding-bottom: 12px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li a {
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 12px;
  text-align: left;
  text-decoration: none;
  color: #000000;
}

header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li:hover>a,
header #menu .dropdown> :is(.sub-menu, .sub-menu-info)>li>a.active-menu-topo {
  color: var(--primary-color);
  transform: translateY(15px);
}

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

/* MENU DROPDOWN ARROWS */
header #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  content: "\f107";
  font-family: "FontAwesome";
  color: var(--primary-color);
  margin-left: 4px;
  font-size: 14px;
  transition: 0.3s;
}

header #menu>ul>li.dropdown:not([data-icon-menu])>a.active-menu-topo::after,
header #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: var(--primary-color);
}

/* HEADER HOME */

header.header-home:not(.headerFixed) {
  position: absolute;
  max-width: var(--window-width);
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

header.header-home:not(.headerFixed) #menu a {
  color: var(--primary-color);
}

header #menu>ul>li:hover>a,
header #menu>ul>li>a.active-menu-topo {
  color: var(--secondary-color);

}

header #menu>ul>li:hover>a {
  display: block;
  color: var(--secondary-color) !important;
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  color: #fff;
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: var(--primary-color);
}

header.header-home:not(.headerFixed) .search input,
header.header-home:not(.headerFixed) .search input::placeholder,
header.header-home:not(.headerFixed) .search button {
  color: #FFF;
}

header.header-home:not(.headerFixed) .search input::placeholder {
  color: #c4C4C4;
}

/* SEARCH */
.search {
  position: relative;
}

.search input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 12px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  color: var(--grey);
  background-color: transparent;
  font: normal 12px/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;
  width: max-content;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.search--topo {
  margin: 8px 0
}

.search--topo button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: max-content;
}

.search button:hover {
  color: var(--dark);
}

.search .button-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-content {
  opacity: 0;
  transition: opacity .2s ease .2s;
}

.search-content.search-active {
  opacity: 1;
}

.search-content .no-results {
  margin: 0 0 32px 0;
  text-align: left;
  font-size: 18px;
}

.search-content ul {
  margin: 0;
}

.search-content ul li {
  margin: 0;
  list-style: none;
}

.search-content ul li a {
  float: left;
  appearance: button;
  background-color: var(--primary-color);
  background-image: none;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: #fff 4px 4px 0 0, var(--primary-color) 4px 4px 0 1px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 6px 6px 12px 6px;
  overflow: visible;
  padding: 12px 40px;
  text-align: center;
  text-transform: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  transition: .3s;
}

.search-content ul li a:focus {
  text-decoration: none;
}

.search-content ul li a:not([disabled]):active,
.search-content li a:not([disabled]):hover {
  box-shadow: unset;
  transform: translate(3px, 3px);
}


@media screen and (min-width: 992px) {
  .header-home .cabecalho {
    position: fixed;
    z-index: 99;
    width: 100%;
  }


  .header-pages {

    padding: 24px 0 125px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 444;
  }

  .header-pages::before {
    content: "";
    background: url("https://www.localhost/religpsicologia.com.br/imagens/bread.webp") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}


@media screen and (min-width: 1440px) {
  header #menu a {

    font-size: 20px;
    font-weight: 500;
  }

   .header-pages::before {
    content: "";
    background: url("https://www.localhost/religpsicologia.com.br/imagens/bread.webp") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%;
    background-position: bottom;
  }
}


/* BREADCRUMB BASE */
.bread {
  padding: 272px 0 14px 0;
}

.bread__title {
  margin: 0;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 700;
}

.contato .bread__title {
  color: #fff;
}

#breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  clear: both;
  margin: 0;
}

#breadcrumb * {
  -webkit-transition: .3s;
  transition: .3s;
}

#breadcrumb a {
  display: inline-flex;
  align-items: center;
  height: fit-content;
}

#breadcrumb a:hover * {
  color: var(--primary-color);
}

#breadcrumb .bread__column {
  display: inline-flex;
  align-items: center;
}

#breadcrumb .bread__column,
#breadcrumb .bread__column a {
  font: 12px var(--primary-font);
  color: #000000;
}

.contato #breadcrumb .bread__column,
.contato #breadcrumb .bread__column a {
  color: #fff;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:first-child:before {
  content: "\e3af";
  font-family: "FontAwesome";
  font-size: 12px;
  margin-right: 4px;
}

.bread:is(.bread--default, .bread--mpi) .bread__column:not(:last-child)::after {
  content: "❱";
  margin-left: 6px;
  font-size: 14px;
}


/* SMALL DEVICE */
@media (max-width: 767.98px) {

  #breadcrumb .bread__column,
  #breadcrumb .bread__column a {
    display: flex;
    max-width: 82px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

}

@media screen and (min-width: 1440px) {
  .bread {
  padding: 312px 0 14px 0;
}

}

/* ASIDE CONFIG*/

aside nav {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

aside nav ul {
  margin: 0
}

aside nav>ul>li>ul {
  display: none;
}

aside li {
  margin: 6px 0 0 0;
  list-style: none;
}

aside li a {
  font-size: 12px;
  text-transform: uppercase;
}

aside nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold !important;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  aside {
    width: 100%;
    float: none;
    margin: 16px 0;
  }

}

/* ASIDE COMPONENTS */
.aside .aside__btn,
.aside .aside__menu h2,
.aside .aside__contato h2 {
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 12px;
  display: block;
  transition: .3s;
  color: #fff;
  border-radius: var(--border-radius);
}

.aside .aside__btn {
  color: #fff;
  text-align: center;
  border-radius: var(--border-radius);
  margin-bottom: 16px;
}

.aside .aside__btn:hover {
  background-color: var(--black);
}

.aside .aside__menu h2 a {
  color: #fff;
}

.aside .aside__menu nav ul li {
  border-left: 2px solid var(--primary-color);
  margin: 12px 0;
  padding: 6px;
  transition: .2s;
}

.aside .aside__menu nav ul li a {
  color: var(--black);
  font-size: 12px;
  border-left: 0;
  padding: 0;
  transition: .3s;
}

.aside .aside__menu nav ul li:hover {
  border-left-color: var(--black);
  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(--black);
  text-align: center;
  display: block;
  margin: 12px;
  transition: all .2s ease;
}

.aside .aside__contato a:hover {
  color: #5492c3;
}

.aside .fb-page {
  display: block;
  margin-bottom: 24px;
}


/* FORMULARIO / CONTATO PAGE */
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

.form *:focus,
.form *:active {
  outline: unset;
}

.form :is(input, textarea, select) {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  margin: 8px 0;
  outline: transparent solid 2px;
  outline-offset: 1px;
  font: 12px/normal var(--primary-font);
  background-color: #fff;
  color: var(--grey);
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: .625rem;
}

.form :is(input, textarea, select):hover,
.form :is(input, textarea, select):active,
.form :is(input, textarea, select):focus {
  outline: currentColor solid 2px;
}

.form label,
.form :is(input, textarea)::placeholder {
  font: 12px/normal var(--primary-font);
  color: var(--grey);
}

.form textarea {
  height: 180px;
}

.form [type="submit"] {
  display: flex;
  width: fit-content;
  padding: 12px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.form [type="submit"]:active,
.form [type="submit"]:focus,
.form [type="submit"]:hover {
  color: var(--secondary-color);
}

.form__obrigatory {
  display: block;
  margin: 16px 0;
  font-size: 12px;
  color: var(--grey);
}

.contato {
  background: url('https://www.religpsicologia.com.br/imagens/contato/contato.webp') no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .contato {
    background: url('https://www.religpsicologia.com.br/imagens/contato/mobile.webp') no-repeat;
    background-size: cover;
  }
}

.contato .address {
  font-style: normal;
}

.contato .right .address :is(span, a) {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
}

.contato .address a:hover {
  color: var(--primary-color);
}

.contato .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px
}

.contato .social .social__icons {
  color: var(--dark);
  font-size: 18px;
  margin-top: 8px;
  transition: .3s;
}

.contato .social .social__icons:hover {
  color: var(--primary-color);
}

.contato .mapa {
  width: 100%;
  height: 258px;
}


.contato .left h2 {
  color: #FFF;
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  margin: 0;
}

.contato .left h2>span {
  display: block;
}

.contato .left p {
  color: #FFF;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 22px 0 0 0;
}


.contato .left .social a {
  margin: 0;
}

.contato .left .social i {
  color: #fff;
  font-size: 30px;
}

.contato .right h3 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin: 22px 0 8px 0;
}

.g-recaptcha {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .form textarea {
    height: auto;
  }
}

@media screen and (min-width: 1440px) {
  .contato .left h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 90px;
  }

  .contato .left p {
    font-size: 24px;
    font-weight: 400;
    margin: 32px 0 0 0;
  }

}

/* FOOTER */
footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  margin-bottom: 2rem;

}

.contato footer {
  margin: 0;
}

.wrapper-footer {
  border-radius: 20px;
  background: #F1F3F5;
  padding-inline: 2rem;
  padding-block: 1.5rem;
}

footer .footer__title {
  margin: 0 0 12px 0;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

footer .footer__link {

  margin: 0 0 8px 0;
  transition: .3s;
  color: #000;
  font-family: Montserrat;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  gap: 8px;
  word-break: break-all;
}

footer .footer__link:hover {
  font-weight: 500;
}

footer .footer__menu nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0;
}

footer .footer__menu nav ul li {
  display: inline;
  margin: 0;
  color: #fff;
}

footer .footer__menu nav ul li a {
  color: #000;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  transition: .3s;
}

footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

footer .social .social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #000;
  text-align: center;
  transition: .3s;
}

footer .social .social__icons:hover {
  background: #fff;
  color: var(--primary-color);
}

footer .logo-footer a img {
  max-width: 220px;
}



/* COPYRIGHT FOOTER */
footer .footer__copyright {
  width: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #7EC67A 0%, #00B7DD 100%);
}

footer .footer__copyright .wrapper {

  padding: 2rem;
  border-radius: 10px;

}

footer .footer__copyright .copyright__text {
  color: #fff;
  font-size: 10px;
}

footer .footer__copyright .copyright__selos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

footer .footer__copyright .copyright__selos a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

footer .footer__copyright .copyright__selos i {
  font-size: 14px;
  color: #fff;
}

footer .footer__copyright .copyright__selos strong {

  color: #fff;
  padding: 1px 6px;
  font-size: 8px
}

footer .footer__copyright .copyright__selos img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

footer .footer__copyright .row {
  margin-left: -4px;
  margin-right: -4px;
}

footer .footer__copyright [class*=col-] {
  padding: 4px;
}


/* SMALL DEVICE */
@media (max-width: 992px) {
  .logo-footer a img {
    max-width: 140px;
  }

  footer * {
    text-align: center;
  }

  footer .footer__link {
    margin-left: auto;
    margin-right: auto;
  }

  footer .footer__menu nav ul {
    flex-direction: column;
    width: 100%;
  }

  footer .footer__menu nav ul li {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
  }

  footer .footer__menu nav ul li a {
    width: 100%;
    border: 1px solid var(--light);
    justify-content: center;
  }

  footer .social,
  footer .footer__copyright .copyright__selos {
    justify-content: center;
  }

}


@media screen and (min-width: 1440px) {
  footer .footer__title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 400;
  }

  footer .footer__link {

    margin: 0 0 8px 0;

    font-size: 14px;
    font-weight: 400;
    gap: 8px;
  }

  footer .footer__menu nav ul li a {

    font-size: 14px;
    font-weight: 500;
  }

}


/******************** CONTEÚDO PÁGINAS ********************/

/* CATEGORIAS MPI */

.card--categorias .card__link {
  position: relative;
  display: block;
}

.card--categorias .card__link .card__title {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  color: white;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
  border-radius: 0 0 10px 10px;
}

.card--categorias .card__link:hover .card__title {
  height: 100%;
  border-radius: 10px;
}

.card--categorias .card__link .card__cover {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* SMALL DEVICE */
@media (max-width: 767.98px) {
  .card--categorias .card__link .card__cover {
    aspect-ratio: 3/3;
    height: auto;
    object-fit: cover;
  }
}

/* categoria destaque */
.corpo-destaque-1 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  min-height: 260px;
}

.corpo-destaque-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.9) 100%);
  background-size: 100% 140%;
  transition: background-size .4s ease-in-out;
  background-position: 0px -20px;
}

.corpo-destaque-1:hover:before {
  background-size: 100% 109%;
}

.corpo-destaque-1 h3 {
  position: relative;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 0;
  transform: translateY(49px);
  transition: all .4s ease-in-out;
  color: white;
}

.corpo-destaque-1:hover h3 {
  transform: translateY(0px);
}

.saiba-mais {
  background-color: white;
  color: black;
  padding: 4px 16px;
  opacity: 0;
  transform: translateY(40px);
  transition: all .4s ease-in-out !important;
}

.corpo-destaque-1:hover .saiba-mais {
  transform: translateY(0px);
}

.text-destaque {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  padding-bottom: 8px;
  height: 100%;
  width: 100%;
  padding-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .4s ease-in-out;
}


.corpo-destaque-1:hover .saiba-mais {
  opacity: 1;
}

.corpo-destaque-1 figure {
  height: 100%;
  width: 100%;
}

.corpo-destaque-1 figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* fim categoria destaque */

/* PROVA SOCIAL */

.prova-social .card--prova-social {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: var(--secondary-color);
  box-shadow: 0 10.85px 23.085px 0 rgba(21, 21, 21, 0.15);
}

.prova-social .card--prova-social .card__image {
  display: block;
  margin: 0 auto;
  width: auto;
  filter: brightness(0.5);
  aspect-ratio: 6/2;
  object-fit: contain;
}

.prova-social .espaco-prova {
  margin-inline: 3rem !important;
}

.prova-social .card--prova-social .card__body {
  min-height: 280px;
  height: 100%;
  text-align: center;
  margin-top: 32px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 18px 37.5px 0 rgba(0, 0, 0, 0.25);



  padding: 64.5px 12px 12px 12px;
}

.prova-social .card--prova-social .card__body .cover {

  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 900;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 18px 37.5px 0px rgba(0, 0, 0, 0.25);
}

.prova-social .card--prova-social .card__body .cover svg {
  height: 22px;
}

.prova-social .card--prova-social .card__body .card__stars {
  color: var(--black);
}


.prova-social .card--prova-social .card__body h3 {
  color: #050505;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.prova-social .card--prova-social .card__body .card__text {
  margin-inline: 1rem;
  line-height: 1.2;
  font-size: 14px;
  text-align: center;
  color: var(--black);
  height: 100px;
  overflow: auto;
  scrollbar-width: none;
}

.prova-social .card--prova-social .card__body .card__text::-webkit-scrollbar {
  display: none;
  /* Chrome, Edge, Safari */
}

@media screen and (min-width: 1440px) {
  .prova-social .card--prova-social .card__body h3 {

    font-size: 20px;
    font-weight: 500;
  }

}

/* CTA */


.cta .subtitle {
  color: #000;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin: 0 0 8px 0;
}

.cta .title {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 35px;
  margin: 0 0 11px 0;
}

.cta .title span {
  font-weight: 700;
}

.cta p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 18px 0;
}

.cta .btn {
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--primary-color);
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: .3s ease;
}

.cta .btn:hover {
  background: #00B7DD;
}

.cta img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media screen and (min-width: 1440px) {
  .cta .subtitle {

    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 11px 0;
  }

  .cta .title {

    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
    margin: 0 0 11px 0;
  }



  .cta p {

    font-size: 24px;
    font-weight: 400;
    margin: 0 0 18px 0;
  }

  .cta .btn {

    padding: 15px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 400;
  }
}

/* BANNER PADRÃO */

.slick-banner__content {
  transform: translateY(0);
}

.slick-banner .slick-slide:not(a)>div h2 {
  margin: 0;
  color: #FFFFFF;
  font-family: Poppins;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.slick-banner__content--custom h2 {
  color: var(--secondary-color) !important;
}

.slick-banner .slick-slide:not(a)>div h2 span {
  font-weight: 700;
  display: block;
}

.slick-banner .slick-slide:not(a)>div p {
  margin: 8px 0 18px 0;
  color: #FFFFFF;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 41.6px;
}

.slick-banner__content--custom p {
  color: var(--primary-color) !important;
}

.slick-banner .slick-slide:not(a)>div a.btn {
  margin: 0;
  display: flex;
  padding: 8px 48px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #FFF;
  color: #1D1D1F;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: .3s ease;
}

.slick-banner .slick-slide:not(a)>div a.btn:hover {
  background: #F1F3F5;
}

@media screen and (min-width: 1440px) {
  .slick-banner .slick-slide:not(a)>div h2 {

    font-size: 64px;
    font-weight: 400;
  }


  .slick-banner .slick-slide:not(a)>div p {
    margin: 16px 0 32px 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 41.6px;
  }

  .slick-banner .slick-slide:not(a)>div a.btn {

    padding: 15px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 400;
  }
}

/* BANNER PADRÃO */

/******************** CONTEÚDO PÁGINAS ********************/

/* =============================== PERSONALIZADO CSS =============================== */

/* =============================== HOME =============================== */
/* =============================== HOME =============================== */

/* =============================== QUEM SOMOS =============================== */

/* MISSÃO VISÃO E VALORES */
.container-aspectos {
  margin-block: 3rem;
}

.corpo-aspectos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  justify-content: flex-start;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  height: 100%;
  position: relative;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.corpo-aspectos:hover {
  border: 2px solid transparent;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.75);
}

.corpo-aspectos h3 {
  margin-top: 2rem;
  font-weight: 500;
  margin-bottom: 0;
}

.corpo-aspectos p {
  font-size: 13px;
  text-align: center;
}

.corpo-aspectos figure {
  background-color: var(--primary-color);
  border-radius: 100%;
  width: 70px;
  height: 70px;
  padding: 1rem;
  position: absolute;
  top: -38px;
  left: 41%;

}

.corpo-aspectos figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.corpo-aspectos ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 8px 0;
  gap: 25px;
}

.corpo-aspectos ul li {}

@media (max-width: 767.98px) {

  .grid-aspectos {
    gap: 54px;
  }
}

/* fim /* MISSÃO VISÃO E VALORES */

/* =============================== QUEM SOMOS =============================== */

/* =============================== CONTATO =============================== */
/* =============================== CONTATO =============================== */


/* =============================== PERSONALIZADO CSS =============================== */


/******************** MEDIA QUERIES (PÁGINAS RESPONSIVAS) ********************/

@media only screen and (min-width: 1600px) {}

@media only screen and (min-width: 1800px) {}

@media only screen and (min-width: 1920px) {}

@media only screen and (max-width: 576px) {}

/******************** MEDIA QUERIES (PÁGINAS RESPONSIVAS) ********************/

/* ==================== CUSTOM ==================== */

.custom-title {
  color: #000;
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin: 0 0 32px 0;
  text-align: center;
}

.custom-title>span {
  font-weight: 700;
}

@media screen and (min-width: 1440px) {
  .custom-title {

    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    margin: 0 0 42px 0;
  }
}

/* ================== FIM CUSTOM ================== */

/* ==================== WHO-WE-ARE-CONTAINER ==================== */

.who-we-are-container--pages .subtitle {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  display: block;
}

.who-we-are-container .title {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 18px 0;
}

.who-we-are-container--pages .title {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  margin: 0px 0 20px 0;
}

.who-we-are-container .title::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  transition: .3s ease;
  border-radius: 5px;
  width: 45px;
  height: 4px;
  background: var(--primary-color);

}

.who-we-are-container p,
.who-we-are-container--pages p {
  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.who-we-are-container a {
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--primary-color);
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 22px;
  transition: .3s ease;
}

.who-we-are-container a:hover {
  background: #00B7DD;
}

.who-we-are-container .cover {

  position: relative;
}

.who-we-are-container .cover img {
  position: relative;
  width: 100%;
  z-index: 1;
}

.who-we-are-container .cover::before,
.who-we-are-container .cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  border-radius: 30px;
  padding: 4px;
  background: linear-gradient(45deg, #7EC67A, #00B7DD);
  z-index: -1;
  transition: .3s ease;


}


.who-we-are-container .cover::after {
  background: #fff;
  width: 99%;
  height: 95%;
  border-radius: 28px;
  z-index: 0;

}


.who-we-are-container--pages img {
  border-radius: 1.875rem;
}




@media screen and (min-width: 992px) {
  .who-we-are-container img {
    border-radius: 30px 0 0 30px;
  }

  .who-we-are-container:hover .cover::before {
    top: -32px;
    left: -32px;
  }


  .who-we-are-container:hover .cover::after {
    top: -27px;
    left: -27px;
  }

  .who-we-are-container:hover .title::before {
    width: 80px;
    background: linear-gradient(45deg, #7EC67A, #00B7DD);
  }
}

@media screen and (min-width: 1440px) {

  .who-we-are-container .cover {

    position: relative;
    left: 45px;
  }


  .who-we-are-container--pages .subtitle {

    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
  }

  .who-we-are-container--pages .title {

    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    margin: 8px 0 20px 0;
  }

  .who-we-are-container .title {

    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin: 0 0 32px 0;
  }

  .who-we-are-container p,
  .who-we-are-container--pages p {

    font-size: 22px;
    font-weight: 400;
  }

  .who-we-are-container a {

    padding: 15px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 400;
    margin-top: 32px;
  }


}



/* ================== FIM WHO-WE-ARE-CONTAINER ================== */

/* ==================== SERVICES-CONTAINER ==================== */

.services-container--home {
  overflow: hidden;
}

.services-container__card--home.row {
  padding: 24px;
}

.services-container__card--home.right {
  border-radius: 30px 0 0 30px;
  background: #D2EFD0;
  position: relative;

}

.services-container__card--home.right::before {
  content: '';
  position: absolute;
  top: 0;
  right: -180px;
  background: #D2EFD0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.services-container__card--home.left {
  border-radius: 0 30px 30px 0;
  background: #ADE0EB;
  position: relative;

}


.services-container__card--home.left::before {
  content: '';
  position: absolute;
  top: 0;
  left: -180px;
  background: #ADE0EB;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.services-container__card--home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 85%;
}

.services-container__card--home .title {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 12px 0;
}

.services-container__card--home p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.services-container--home .btn {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--primary-color);
  color: #FFF;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-top: 32px;
  transition: .3s ease;
}

.services-container--home .btn:hover {
  background: #00B7DD;
}

@media screen and (min-width: 992px) {
  .services-container__card--home img {
    height: 210px;
  }
}

@media screen and (min-width: 1440px) {
  .services-container__card--home .title {

    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    margin: 0 0 24px 0;
  }

  .services-container__card--home p {

    font-size: 22px;
    font-weight: 400;
    line-height: 35px;
  }

  .services-container__card--home img {
    height: 238px;
  }

  .services-container--home .btn {

    padding: 15px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 400;
    margin-top: 32px;
  }

  .services-container__card--home img {
    height: 302px;
  }

}

/* ================== FIM SERVICES-CONTAINER ================== */

/* ==================== MORE-INF-CONTAINER ==================== */

.more-inf-container .subtitle {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  margin: 0;
}

.more-inf-container .subtitle::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  transition: .3s ease;
  border-radius: 5px;
  width: 45px;
  height: 4px;
  background: var(--primary-color);

}

.more-inf-container .title {
  color: #000;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  margin: 8px 0 24px 0;
}

.more-inf-container .title>span {
  font-weight: 700;
}

.more-inf-container p {
  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.more-inf-container a {
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: var(--primary-color);
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 22px;
  transition: .3s ease;
}

.more-inf-container a:hover {
  background: #00B7DD;
}

.more-inf-container .cover {

  position: relative;
}

.more-inf-container .cover img {
  position: relative;
  z-index: 1;
}

.more-inf-container .cover::before,
.more-inf-container .cover::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 97%;
  border-radius: 30px;
  padding: 4px;
  background: linear-gradient(45deg, #7EC67A, #00B7DD);
  z-index: -1;
  transition: .3s ease;

}


.more-inf-container .cover::after {
  background: #fff;
  width: 99%;
  height: 95%;
  border-radius: 28px;
  z-index: 0;

}



@media screen and (min-width: 992px) {
  .more-inf-container img {
    border-radius: 0 30px 30px 0;
  }

  .more-inf-container:hover .cover::before {
    top: -32px;
    right: -32px;
  }

    .more-inf-container:hover .cover::after {
    top: -27px;
    right: -27px;
  }

  .more-inf-container:hover .subtitle::before {
    width: 80px;
    background: linear-gradient(45deg, #7EC67A, #00B7DD);
  }
}

@media screen and (min-width: 1440px) {
  .more-inf-container .title {

    font-size: 48px;
    font-weight: 300;
    line-height: 48px;
    margin: 8px 0 24px 0;
  }


  .more-inf-container .subtitle {

    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin: 0 0 32px 0;
  }

  .more-inf-container p {

    font-size: 22px;
    font-weight: 400;
  }

  .more-inf-container a {

    padding: 15px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 400;
    margin-top: 32px;
  }


  

}






/* ================== FIM MORE-INF-CONTAINER ================== */

/* ==================== OTHERS-CONTAINER ==================== */

.others-container {
  background-size: cover;
  border-radius: 1.875rem;
  background-repeat: no-repeat;

  animation: bgSlide 12s infinite ease-in-out;
}


@keyframes bgSlide {
  0% {
    background-image: url('https://www.religpsicologia.com.br/imagens/others/others.webp');
  }

  33% {
    background-image: url('https://www.religpsicologia.com.br/imagens/others/others-2.webp');
  }

  66% {
    background-image: url('https://www.religpsicologia.com.br/imagens/others/others-3.webp');
  }

  100% {
    background-image: url('https://www.religpsicologia.com.br/imagens/others/others.webp');
  }
}

.others-container h2 {
  color: #1D1D1F;
  text-align: center;
  font-family: Poppins;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 32px 0;
}

.others-container h2 span {
  font-weight: 700;
  display: block;
}

.others-container a {
  display: flex;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #FFF;
  color: #1D1D1F;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: .3s ease;
}

.others-container a:hover {
  background: #F1F3F5;
}

@media screen and (max-width: 992px) {
  .others-container {
    background-size: cover;
    border-radius: 1.875rem;
    background-repeat: no-repeat;

    animation: bgSlide 12s infinite ease;
  }


  @keyframes bgSlide {
    0% {
      background-image: url('https://www.religpsicologia.com.br/imagens/others/mobile.webp');
    }

    33% {
      background-image: url('https://www.religpsicologia.com.br/imagens/others/mobile-2.webp');
    }

    66% {
      background-image: url('https://www.religpsicologia.com.br/imagens/others/mobile-3.webp');
    }

    100% {
      background-image: url('https://www.religpsicologia.com.br/imagens/others/mobile.webp');
    }
  }

}

@media screen and (min-width: 1440px) {
  .others-container h2 {

    font-size: 64px;
    font-weight: 400;
    line-height: 70px;
    margin: 0 0 32px 0;
  }


  .others-container a {

    padding: 15px;
    border-radius: 15px;
    background: #FFF;
    font-size: 24px;
    font-weight: 400;
  }
}

/* ================== FIM OTHERS-CONTAINER ================== */


/* categoria home */
.ancora-categoria-home {
  position: relative;
  transition: all 0.5s ease-in-out;
}

.card-categoria-home {
  position: relative;
  transition: all 0.5s ease-in-out;
  transform: translate(10px, 0px);
}

.card-categoria-home:hover {
  transform: translate(-0px, -10px);
}

.ancora-categoria-home figure {
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  height: 310px;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.ancora-categoria-home figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ancora-categoria-home:hover figure {
  padding-left: 0rem;
  padding-top: 0rem;

}

.ancora-categoria-home figure::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.ancora-categoria-home:hover figure::before {


  background: linear-gradient(180deg, rgba(0, 183, 221, 0.35) 0%, rgba(126, 198, 122, 0.70) 73.16%);
  filter: blur(1.5px);
  mix-blend-mode: multiply;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}


.card-categoria-home a {
  display: flex;
  padding: 7px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #FFF;
  color: #1D1D1F;
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  opacity: 0;
  transition: .3s ease;
}

.card-categoria-home:hover a {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .card-categoria-home {
    transform: translate(0px, 0px);
  }
}

@media screen and (min-width: 1440px) {
  .card-categoria-home a {

    max-width: 160px;
    width: 100%;
    height: 61px;
    padding: 15px;
    border-radius: 15px;
    font-size: 22px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100px;
  }

}


/* fim categoria home */

/* ==================== TEAM-CONTAINER ==================== */

.team-container .title {
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 0 20px 0;
  text-align: center;
}


.team-container p {
  color: #000;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}


.team-container__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-container__card img {
  border-radius: 999999px;
  width: 172px;
  height: 170px;
  aspect-ratio: 41/42;
  object-fit: cover;
}


.team-container__card h3,
.team-container__card span {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
}

.team-container__card h3 {
  font-weight: 400;
  margin: 18px 0 4px 0;
}

.team-container__card span {
  font-weight: 700;
  display: block;
}

@media screen and (min-width: 1440px) {

  .team-container__card h3,
  .team-container__card span {

    font-size: 20px;
  }

  .team-container__card h3 {
    font-weight: 400;
    margin: 18px 0 8px 0;
  }

  .team-container .title {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    margin: 0 0 20px 0;
  }

  .team-container p {
    font-size: 22px;
    font-weight: 400;
  }

  .team-container__card img {
    border-radius: 999999px;
    width: 246px;
    height: 252px;
    aspect-ratio: 41/42;
    object-fit: cover;
  }


}

/* ================== FIM TEAM-CONTAINER ================== */


/* ==================== MVV-CONTAINER ==================== */

.mvv-container {
  overflow: hidden;
}

.mvv-container__card.row {
  padding: 24px;
}

.mvv-container__card.right {
  border-radius: 30px 0 0 30px;
  background: #ADE0EB;
  position: relative;


}

.mvv-container__card.right::before {
  content: '';
  position: absolute;
  top: 0;
  right: -180px;
  background: #ADE0EB;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.mvv-container__card.left {
  border-radius: 0 30px 30px 0;
  background: #D2EFD0;
  position: relative;



}


.mvv-container__card.left::before {
  content: '';
  position: absolute;
  top: 0;
  left: -180px;
  background: #D2EFD0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.mvv-container__card svg:nth-child(1) {
  width: 190px;
  height: 263px;
}

.mvv-container__card svg:nth-child(2) {
  width: 235px;
  height: 144px;
}

.mvv-container__card svg:nth-child(3) {
  width: 263px;
  height: 223px;
}

.mvv-container__card .title {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin: 0 0 12px 0;
}

.mvv-container__card p {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}


@media screen and (min-width: 992px) {
  .mvv-container__card img {
    height: 210px;
  }
}

@media screen and (min-width: 1440px) {
  .mvv-container__card .title {

    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    margin: 0 0 24px 0;
  }

  .mvv-container__card p {

    font-size: 22px;
    font-weight: 400;
    line-height: 35px;
  }


  .mvv-container__card svg:nth-child(1) {
    width: 263px;
    height: 263px;
  }

  .mvv-container__card svg:nth-child(2) {
    width: 235px;
    height: 144px;
  }

  .mvv-container__card svg:nth-child(3) {
    width: 263px;
    height: 223px;
  }

}

/* ================== FIM MVV-CONTAINER ================== */


/* CTA */
.bg-cta-custom {
  position: relative;
  background-image: url('https://www.religpsicologia.com.br/imagens/cta/cta-custom.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.bg-cta-custom ::before {
  position: absolute;
  content: '';
  top: 0px;
  right: -1px;
  width: 20%;
  height: 100%;
  background-color: var(--secondary-color);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}



.btn-cta-custom  {
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  font-size: 18px;
  padding: 11px 60px 10px 15px;
  font-weight: 600;
  width: fit-content;
  transition: all 500ms;
  position: relative;

}

.btn-cta-custom  span {
  transition: all 1000ms;
}

.btn-cta-custom :hover {
  outline: none;
  border: none;
  transition: all 1000ms;
}

.btn-cta-custom :hover span {
  opacity: 0;
  transition: all 500ms;
}

.btn-cta-custom ::after {
  font-family: 'FontAwesome';
  content: '\f061';
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  background-color: white;
  color: var(--primary-color);
  font-weight: 200;
  padding: 3px 10px;
  border-radius: 10px;
  position: absolute;
  right: 3px;
  top: 3px;
  transition: all 1000ms;

}

.btn-cta-custom :hover::after {
  transition: all 1000ms;
  width: 81%;
}

.cta-custom  .bg-white {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

@media (max-width: 767.98px) {
  .bg-cta-custom  {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .bg-cta-custom ::before {
    display: none;
  }

  .cta-custom  h3 {
    text-align: center;
  }

  .body-btn-cta-custom  {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* FIM CTA */


/* Fundo escurecido do popup */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none; /* controla abertura via JS */
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
}

/* Conteúdo do popup */
.popup-content {
	background: #ffffff;
	max-width: 600px;
	width: 100%;
	border-radius: 12px;
	padding: 30px 25px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
	animation: popupFade 0.4s ease;
}

/* Animação */
@keyframes popupFade {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Botão de fechar */
.popup .close {
	position: absolute;
	top: 15px;
	right: 18px;
	font-size: 28px;
	font-weight: bold;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
}

.popup .close:hover {
	color: #000;
}

/* Imagem */
.popup-content picture img {
	width: 100%;
	max-height: 220px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
}

/* Título */
.popup-content h2 {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 15px;
	color: #222;
}

/* Datas */
.popup-content span {
	display: block;
	font-size: 15px;
	margin-bottom: 6px;
	color: #444;
}

.popup-content span strong {
	color: #000;
}

/* Texto descritivo */
.popup-content p {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin-top: 15px;
}

/* Responsivo */
@media (max-width: 480px) {
	.popup-content {
		padding: 20px;
	}

	.popup-content h2 {
		font-size: 18px;
	}

	.popup-content p {
		font-size: 14px;
	}
}



@media screen and (min-width: 992px) {
  .container-card {
    margin-left: 24px !important;
  }
}

.btn-detalhe {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 14px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #000; 
    border-radius: 4px; 
    transition: 0.3s;
    border-radius: 0;
}

.btn-detalhe:hover {
    background: #000;
    color: #fff;
}
[data-anima] {
  opacity: 0;
  transition: 2s;
}

[data-anima].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação para a esquerda */
[data-anima="left"] {
  transform: translate3d(-50px, 0, 0);
}

[data-anima="left"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação para a direita */
[data-anima="right"] {
  transform: translate3d(50px, 0, 0);
}

[data-anima="right"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação para o centro (abaixo) */
[data-anima="center"] {
  transform: translate3d(0, 50px, 0);
}

[data-anima="center"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação para o topo */
[data-anima="top"] {
  transform: translate3d(0, -50px, 0);
}

[data-anima="top"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação para baixo */
[data-anima="bottom"] {
  transform: translate3d(0, 10rem, 0);
}

[data-anima="bottom"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação para a esquerda com rotação */
[data-anima="left-rotate"] {
  transform: translate3d(-50px, 0, 0) rotate(-45deg);
}

[data-anima="left-rotate"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}


[data-anima="right-rotate"] {
  transform: translate3d(50px, 0, 0) rotate(45deg);
}

[data-anima="right-rotate"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}


/* Animação para a direita com escala */
[data-anima="right-scale"] {
  transform: translate3d(50px, 0, 0) scale(0.5);
}

[data-anima="right-scale"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Animação para o topo com desfoque */
[data-anima="top-blur"] {
  transform: translate3d(0, -50px, 0);
  filter: blur(5px);
}

[data-anima="top-blur"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Animação de zoom */
[data-anima="zoom"] {
  transform: scale(0.5);
}

[data-anima="zoom"].animacao {
  opacity: 1;
  transform: scale(1);
}

/* Animação de shake (balanço) */
[data-anima="shake"] {
  transform: translateX(-10px);
}

[data-anima="shake"].animacao {
  opacity: 1;
  transform: translateX(10px);
}

[data-anima="shake"].animacao-2 {
  transform: translateX(-10px);
}

/* Animação de flip horizontal */
[data-anima="flip-horizontal"] {
  transform: rotateY(-90deg);
}

[data-anima="flip-horizontal"].animacao {
  opacity: 1;
  transform: rotateY(0deg);
}

/* Animação de flip vertical */
[data-anima="flip-vertical"] {
  transform: rotateX(90deg);
}

[data-anima="flip-vertical"].animacao {
  opacity: 1;
  transform: rotateX(0deg);
}

/* Animação de fade in */
[data-anima="fade-in"] {
  opacity: 0;
}

[data-anima="fade-in"].animacao {
  opacity: 1;
}

/* Animação de slide-up (subindo) */
[data-anima="slide-up"] {
  transform: translate3d(0, 50px, 0);
}

[data-anima="slide-up"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação de slide-down (descendo) */
[data-anima="slide-down"] {
  transform: translate3d(0, -50px, 0);
}

[data-anima="slide-down"].animacao {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Animação de scale-up (ampliando de forma suave) */
[data-anima="scale-up"] {
  transform: scale(0.3);
}

[data-anima="scale-up"].animacao {
  opacity: 1;
  transform: scale(1);
}

/* Animação de scale-down (diminuindo de forma suave) */
[data-anima="scale-down"] {
  transform: scale(1.5);
}

[data-anima="scale-down"].animacao {
  opacity: 1;
  transform: scale(1);
}@keyframes showSweetAlert{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes hideSweetAlert{0%{transform:scale(1)}100%{transform:scale(.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 .3s}.showSweetAlert[data-animation=none]{animation:none}.showSweetAlert[data-animation=slide-from-top]{animation:slideFromTop .3s}.showSweetAlert[data-animation=slide-from-bottom]{animation:slideFromBottom .3s}.hideSweetAlert{animation:hideSweetAlert .3s}.hideSweetAlert[data-animation=none]{animation:none}.hideSweetAlert[data-animation=slide-from-top]{animation:slideToTop .3s}.hideSweetAlert[data-animation=slide-from-bottom]{animation:slideToBottom .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:0;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 .75s}.animateSuccessLong{animation:animateSuccessLong .75s}.sa-icon.sa-success.animate::after{animation:rotatePlaceholder 4.25s ease-in}@keyframes animateErrorIcon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}.animateErrorIcon{animation:animateErrorIcon .5s}@keyframes animateXMark{0%{transform:scale(.4);margin-top:26px;opacity:0}50%{transform:scale(.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 .5s}@keyframes pulseWarning{0%{border-color:#f8d486}100%{border-color:#f8bb86}}.pulseWarning{animation:pulseWarning .75s infinite alternate}@keyframes pulseWarningIns{0%{background-color:#f8d486}100%{background-color:#f8bb86}}.pulseWarningIns{animation:pulseWarningIns .75s infinite alternate}@keyframes rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}body.stop-scrolling{height:100%;overflow:hidden}.sweet-overlay{background-color:rgba(0,0,0,.4);position:fixed;left:0;right:0;top:0;bottom:0;display:none;z-index:1040}.sweet-alert{background-color:#fff;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::after,.sweet-alert .sa-icon.sa-success::before{content:'';border-radius:50%;position:absolute;width:60px;height:120px;background:#fff;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,.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:#fff;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:#ccc;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(204,204,204,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(204,204,204,.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,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(76,174,76,.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,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(70,184,218,.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,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(212,63,58,.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,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(238,162,54,.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:-.2s;-moz-animation-delay:-.2s;-o-animation-delay:-.2s;animation-delay:-.2s}.la-ball-fall>div:nth-child(2){-webkit-animation-delay:-.1s;-moz-animation-delay:-.1s;-o-animation-delay:-.1s;animation-delay:-.1s}.la-ball-fall>div:nth-child(3){-webkit-animation-delay:0s;-moz-animation-delay:0s;-o-animation-delay:0s;animation-delay:0s}.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}@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%)}}  