/******************** HEADER ********************/

/* HEADER */

header {
  background: var(--primary-color);
  padding: 3rem 0;
}

header .logo img {
  display: block;
  width: 100%;
  object-fit: contain;
  max-width: 241px;
}

/* TOPO */
header .topo {
  background-color: var(--primary-color);
  font-size: 13px;
  color: #fff;
}

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(--secondary-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: var(--nav-gap);
  margin: 8px 0
}

header #menu li {
  position: relative;
  display: inline-block;
  margin: 0;
}

header #menu a {
  font-size: var(--nav-size);
  font-weight: 500;
  font-family: var(--primary-font);
  color: var(--nav-color);
  display: block;
  box-sizing: border-box;
  padding: 0px;
  text-align: center;
  transition: .3s;
  text-transform: uppercase;
}

header #menu>ul>li:hover>a,
header #menu>ul>li>a.active-menu-topo {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: bold;
}

/* SUB MENU */
header #menu .dropdown :is(.sub-menu, .sub-menu-info) {
  display: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 7;
  width: 230px;
  height: auto;
  background-color: var(--primary-color);
}

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: #fff;
  border-bottom: 2px solid transparent;
}

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 {
  border-bottom-color: #fff;
}

/* 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(--black);
  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;
  background-color: transparent;
}

header.header-home:not(.headerFixed) #menu a {
  color: var(--primary-color);
}

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

/* 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(--black);
  background-color: transparent;
  font: normal 12px/normal var(--primary-font);
}

.search input::placeholder {
  font: normal 14px/normal var(--primary-font);
  color: var(--black);
}

.search button {
  border: none;
  outline: none;
  text-decoration: none;
  background-color: transparent;
  color: var(--black);
  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(--black);
}

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


/* BREADCRUMB BASE */

.bread__title {
  margin: 0;
  color: #000000;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--secondary-font);
  letter-spacing: .25rem;
}

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

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

}

/* 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: 1rem;
  width: 100%;
  margin: 8px 0;
  /* outline: transparent solid 2px;
  outline-offset: 1px; */
  font: 12px/normal var(--primary-font);
  background-color: #000;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  border: none;
}

/* .form :is(input, textarea, select):hover,
.form :is(input, textarea, select):active,
.form :is(input, textarea, select):focus {
  outline: var(--primary-color) solid 2px;
} */

.form label,
.form :is(input, textarea)::placeholder {
  font: 12px/normal var(--primary-font);
  color: #fff;
}

.form textarea {
  height: 100px;
}

.form [type="submit"] {
  max-width: 200px;
  width: 100%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: var(--primary-color);
  cursor: pointer;
  outline: transparent solid 2px;
  outline-offset: 1px;
  border: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.form [type="submit"]:active,
.form [type="submit"]:focus,
.form [type="submit"]:hover {
  background-color: var(--secondary-color);
}

.form__obrigatory {
  display: block;
  margin: 16px 0;
  font-size: 12px;
  color: var(--black);
}

.contato .address {
  font-style: normal;
}

.contato .address :is(span, a) {
  display: block;
  font: 1rem var(--primary-font);
  color: #fff;
  margin: .5rem 0;
}

.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(--black);
  font-size: 18px;
  margin-top: 8px;
  transition: .3s;
}

.contato .social .social__icons:hover {
  color: var(--primary-color);
}

.contato .mapa {
  width: 100%;
  height: 258px;
}

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

  .form [class*=col-] {
    padding: 0 !important;
  }

}

/* FOOTER */

.logo-footer {
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;

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

footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  background-color: var(--primary-color);
}

footer .footer__title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffff;
  text-transform: uppercase;
}

footer .footer__link {
  font-size: .9rem;
  display: block;
  margin: 0 0 8px 0;
  color: #fff;
  outline: transparent solid 1px;
  outline-offset: 5px;
  transition: .3s;
}

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

footer .footer__menu nav ul li a {
  color: #ffff;
  font-size: .9rem;
  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;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius);
  font-size: 18px;
  background-color: var(--black);
  color: #fff;
  text-align: center;
  transition: .3s;
}

footer .social .social__icons:hover {
  background: #fff;
  color: var(--primary-color);
}


/* COPYRIGHT FOOTER */
footer .footer__copyright {
  background-color: var(--secondary-color);
}

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: 767.98px) {

  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: 100%;
    width: 100%;
    margin: 0 auto;
  }

  footer .footer__menu nav ul li a {
    width: 100%;
  }

  footer .social,
  footer .footer__copyright .copyright__selos {
    justify-content: center;
  }

}

/******************** 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: #00000075;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
  border-radius: 0rem !important;
}

.card--categorias .card__link:hover .card__title {
  height: 100%;
  border-radius: 10px;
}

.card--categorias .card__link .card__cover {
  width: 100%;
  height: 100%;
  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;
  }
}

/* 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: 8px;
  background-color: var(--primary-color);
}

.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;
  border-radius: var(--border-radius);
  background-color: #fff;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 10.85px 23.085px 0px rgba(21, 21, 21, 0.15);

  position: relative;
}

.prova-social .card--prova-social .card__body::after {
  content: var(--inicialCliente);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 900;
  width: 60px;
  height: 60px;
  font-size: 23px;
  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 .card__stars {
  color: var(--black);
}

.prova-social .card--prova-social .card__body :is(.card__text, .card__name) {
  font-size: 14px;
  text-align: center;
  color: var(--black);
}

.prova-social .card--prova-social .card__body .card__text {
  margin-inline: 1rem;
  line-height: 1.2;
}

/* BANNER PADRÃO */

.slick-banner__content {
  transform: translateY(0);
}

.slick-banner .slick-slide:not(a)>div h2 {
  color: #fff;
  font-size: 3.5rem;
}

.slick-banner .slick-slide:not(a)>div h2 span {
  font-weight: 700;
}

.slick-banner .slick-slide:not(a)>div p {
  color: #fff;
  font-size: 1.4rem;
}

/* BANNER PADRÃO */

/******************** CONTEÚDO PÁGINAS ********************/

/******************** PERSONALIZADO ********************/

.letter-spacing {
  letter-spacing: .25rem;
}

.sub-title {
  border-bottom: 2px solid #000;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;  
}

@media (min-width: 991.98px) {
  
  .wrapper-custom-r {
    width: 100%;
    margin: 0 !important;
    padding-right: 10%;
  }

  .wrapper-custom-l {
    width: 100%;
    margin: 0 !important;
    padding-left: 10%;
  }

  .rounded-r {
    border-radius: 0 1rem 1rem 0;
  }

  .rounded-l {
    border-radius: 1rem 0 0 1rem;
  }

}

.btn-transparent {
  border: 2px solid #fff;
  color: #fff;
  padding: .4rem 1rem;
}

/******************** PERSONALIZADO ********************/

/******************** HOME ********************/

#brands-carousel {
  padding-block: 2rem;
}

#brands-carousel figure{
  height: 140px;
  margin-inline: 3rem;
}

#brands-carousel figure img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* --------------------------------------- */

.card-serv-home {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-serv-home figure {
  width: 100%;
  height: 100%;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 3px solid var(--primary-color);
}

.card-serv-home figure img {
  width: 100%;
  height: 100%;
  transition: .3s;
}

.card-serv-home:hover figure img {
  filter: brightness(1.1);
}

.card-serv-home figure a {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: .6rem 1rem;
  z-index: 2;
}

.card-serv-home figure a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--primary-color);
  z-index: -1;
} 

/******************** HOME ********************/

/******************** SERVICOS ********************/

.card-serv-perso {
  box-shadow: 0 113px 32px 0 rgba(0, 0, 0, 0.00), 0 73px 29px 0 rgba(0, 0, 0, 0.01), 0 41px 25px 0 rgba(0, 0, 0, 0.05), 0 18px 18px 0 rgba(0, 0, 0, 0.09), 0 5px 10px 0 rgba(0, 0, 0, 0.10);
  margin: .5rem;
  border-radius: .8rem;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;

  background: var(--primary-color);
  height: 380px;
  position: relative;
  overflow: hidden;
}

.card-serv-perso i {
  background: #fff;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .5s;
}

.card-serv-perso i img {
  position: absolute;
  height: 80px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .5s;
}

.card-serv-perso:hover i {
  width: 6rem;
  height: 6rem;
  border-radius: 0 0 50% 0;
}

.card-serv-perso:hover i img {
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box-text-serv-home {
  position: absolute; 
  top: 40%;
  transition: .6s;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box-text-serv-home h2 {
  color: var(--primary-color);
  text-transform: uppercase;
}

.box-text-serv-home p {
  opacity: 0;
  transition: .3s;
}

.card-serv-perso:hover .box-text-serv-home {
  top: 22%;
}

.card-serv-perso:hover .box-text-serv-home h2 {
  color: #fff;
}

.card-serv-perso:hover .box-text-serv-home p {
  color: #fff;
  opacity: 1;
}

/******************** SERVICOS ********************/

/******************** CONTATO ********************/

.bg-contato {
  background-image: url(<?=$url?>imagens/bg-contato.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/******************** CONTATO ********************/

/******************** FOOTER ********************/

.bg-footer {
  background-image: url(<?=$url?>imagens/bg-footer.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 1199.98px) {
  
  .container-footer .wrapper .row > div:nth-child(-n+3) {
    position: relative;
  }

  .container-footer .wrapper .row > div:nth-child(-n+3)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 80%;
    background: #fff;
    transform: translate(0%, -50%);
  }

  .container-footer .wrapper .row > div  {
    padding: 2rem;
  }

}

/******************** FOOTER ********************/

/******************** CARD_CATEGORIA ********************/

.card--categorias {
  border-radius: 0 !important;
}

.card__link {
  position: relative;
  aspect-ratio: 1/1;
}

.card__link .btn-categorias {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  opacity: 0;
  transition: .4s;
  padding: .3rem .8rem;
  background: #fff;
  border-radius: 0;
  font-size: .9rem;
}

.card__link:hover .btn-categorias {
  bottom: 15%;
  opacity: 1;
}

.card--categorias.card--home:hover {
  transform: translate(0, -1rem);
} 

.card--categorias:hover .card__link .card__title {
  background: #0000009a;
}

/******************** CARD_CATEGORIA ********************/

/******************** HEADER_PAGES ********************/

header > .wrapper {
  padding: 1rem 4rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  /* margin-top: 1rem; */
  border-radius: .4rem;
  background: white;
}

/******************** HEADER_PAGES ********************/

/******************** PERSO_BANNER ********************/

.perso-banner {
  display: flex !important;
}

.perso-banner > div {
  background: var(--primary-color) !important;
  width: 50% !important;
}

.perso-banner figure {
  width: 100%;
  height: 80%;
}

.perso-banner figure img {
  width: 100%;
  height: 80%;
}

.perso-banner-text {
  transform: translate(65%, 0%);
}

.slick-banner {
  background: transparent !important;
}

.slick-banner .slick-slide:not(a) {
  background: transparent !important;
}

/******************** PERSO_BANNER ********************/

/******************** PERSO_BANNER ********************/

.contato .bread,
.contato .bread .bread__row {
  background: transparent;
}

.bread {
  padding: 4rem 0 0 0;
  background-image: url(<?=$url?>imagens/bg-bread.jpeg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bread__row {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background: #fff;
  padding: 2rem 2rem 0 2rem;
  width: auto;
  min-width: 10%;
  border-radius: .3rem .3rem 0 0;
}

/******************** PERSO_BANNER ********************/

/******************** CTA_HOME ********************/

.row-cta-home > div {
  padding-left: 12rem;
}

@media (min-width: 991.98px) {

  .row-cta-home {
    padding-top: 4rem;
  }

  .row-cta-home figure img {
    position: relative;
    left: 0;
    transition: .4s
  }
  
  .container:hover .row-cta-home figure img {
    scale: 1.35;
    position: relative;
    left: 20%;
    
    transform: translate(0%, -3rem);
  }

  .row-cta-home > div > div {
    margin-left: 17%;
  }

}

/******************** CTA_HOME ********************/