/* =============================== HEADER =============================== */

/* HEADER */
header {
  background-color: #fff;
}

.header-pages {
  border-bottom: 2px solid var(--primary-color);
}

header .logo img {
  display: block;
  margin: 8px 0;
  aspect-ratio: 5/2;
  object-fit: contain;
  width: 100%;
}

/* TOPO */
header .topo {
  background-color: var(--dark);
  padding: 8px 0;
  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(--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: 8px;
  margin: 8px 0
}

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

header #menu a {
  font-size: 14px;
  display: block;
  box-sizing: border-box;
  padding: 14px;
  text-align: center;
  color: var(--dark);
  border-bottom: 2px solid transparent;
  transition: .3s;
  text-transform: uppercase;
}

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

/* SUB MENU */
header #menu .dropdown :is(.sub-menu, .sub-menu-info) {
  display: none;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 7;
  width: 230px;
  height: auto;
  background-color: var(--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(--grey);
  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: linear-gradient(to bottom, rgb(104 100 100 / 50%), transparent);
}

header.header-home:not(.headerFixed) #menu a {
  color: var(--dark);
  font-weight: 600;
}

header.header-home:not(.headerFixed) #menu>ul>li:hover>a,
header.header-home:not(.headerFixed) #menu>ul>li>a.active-menu-topo {
  color: #ffffff;
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  color: var(--dark);
}

header.header-home:not(.headerFixed) #menu>ul>li.dropdown:not([data-icon-menu]):hover>a::after {
  color: #fff;
}

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


/* BREADCRUMB BASE */
.bread {
  padding: 14px 0;
}

.bread__title {
  margin: 0;
  color: #000;
}

#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: #000;
  text-transform: uppercase;
}

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

.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(--dark);
  font-size: 12px;
  border-left: 0;
  padding: 0;
  transition: .3s;
}

.aside .aside__menu nav ul li:hover {
  border-left-color: var(--dark);
  background-color: #f0f0f0;
}

.aside .aside__menu nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold;
}

.aside .aside__contato h2 {
  text-align: center;
}

.aside .aside__contato a {
  color: var(--dark);
  text-align: center;
  display: block;
  margin: 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;
}

.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: 60px;
}

.form [type="submit"] {
  max-width: 280px;
  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 {
  outline: var(--primary-color) solid 2px;
}

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

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

.contato .address :is(span, a) {
  display: block;
  font: 13px/22px var(--primary-font);
  color: var(--grey);
}

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

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


/* FOOTER */
footer {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
  background-color: var(--secondary-color);
}

footer .footer__title {
  margin: 0 0 8px 0;
  color: #fff;
}

footer .footer__link {
  font-size: 12px;
  display: block;
  margin: 0 0 8px 0;
  color: #fff;
  width: max-content;
  outline: transparent solid 1px;
  outline-offset: 5px;
  transition: .3s;
  width: 35ch;
}

footer .footer__link:hover {
  font-weight: bold;
}

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: #fff;
  font-size: 14px;
  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;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius);
  font-size: 18px;
  background-color: transparent;
  color: #fff;
  text-align: center;
  transition: .3s;
}

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


/* COPYRIGHT FOOTER */

.footer__copyright {
  border-top: 2px solid var(--primary-color);
  background-color: var(--secondary-color);
}

footer .footer__copyright .copyright__text {
  color: #fff;
  font-size: 8px;
}

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 .col-3:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


footer .col-3 img {
  max-width: 100%;
  height: auto;
}

/* Linha divisória entre as colunas */
footer .col-3:not(:last-child) {
  border-right: 2px solid #fff;
  padding-right: 20px;
}

footer .col-3:not(:first-child) {
  padding-left: 20px;
}



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

  footer * {
    text-align: center;
  }

  footer .col-3 img {
    max-width: 200px;
  }

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

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



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

/* EMPRESA */
.empresa img {
  object-fit: cover;
  aspect-ratio: 6/6;
}

/* CATEGORIAS MPI */

.card--categorias .card__link {
  position: relative;
  display: block;
}

.card--categorias .card__link .card__title {
  position: absolute;
  bottom: 45px;
  left: 0;
  margin: 0;
  display: flex;
  width: 60%;
  height: 46px;
  justify-content: center;
  align-items: center;
  background: #000000;
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  padding: 15px;
  border-radius: 0 10px 10px 0;
  text-align: center;
  transition:
    height 0.6s ease,
    width 0.6s ease,
    background-color 0.6s ease,
    border-radius 0.6s ease,
    bottom 0.6s ease;
  opacity: 1;
}

.card--categorias .card__link:hover .card__title {
  height: 100%;
  width: 100%;
  bottom: 0;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
}


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

/* 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%;
  background-color: var(--light);
  border-radius: var(--border-radius);
}

.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 .card--prova-social .card__body {
  min-height: 320px;
  height: 100%;
  padding: 32px 16px;
  text-align: center;
  margin-top: 32px;
  border-radius: var(--border-radius);
  background-color: #fff;

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

  position: relative;
}

.prova-social .card--prova-social .card__body .card__text {
  flex: 3;
}

:root {
  --inicialCliente: '';
}

.prova-social .card--prova-social .card__body::after {
  content: var(--inicialCliente);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 900;
  width: 50px;
  height: 50px;
  font-size: 13px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: #fff solid 2px;
  outline-offset: -5px;
}

.prova-social .card--prova-social .card__body .card__stars {
  color: var(--primary-color);
}

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

/* -------------- data anima -------------- */
[data-anima] {
  opacity: 0;
  transition: 1s;
}

[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, 50px, 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);
}

/* 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);
}

/* -------------- data anima -------------- */

/* ---------------------------------------- PERSONALIZADO ---------------------------------------- */
.subtitle-top {
  position: relative;
  display: inline-block;
  padding-top: 10px;
}

.subtitle-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;
  background:
    linear-gradient(to right,
      #808080 0%,
      /* cinza começa */
      #808080 20%,
      /* cinza vai até 40% */
      #f36f21 20%,
      /* laranja começa exatamente aqui */
      #f36f21 80%,
      /* laranja vai até 60% */
      #808080 20%,
      /* cinza volta */
      #808080 20%
      /* cinza até o final */
    );
}


/* --- home --- */
.infos-banner i {
  font-size: 30px;
  color: white;
}

#section-infos {
  position: relative;
  transform: translateY(-8rem);
  margin-bottom: -8rem;
}

@media (max-width: 767.98px) {
  #section-infos {
    position: relative;
    transform: none;
    margin-bottom: auto;
  }
}

/* servicos home */
.fig-servicos-home {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 0;
  border-radius: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.fig-servicos-home img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.fig-servicos-home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Título */
.titulo-servico {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

/* Hover */
a:hover .fig-servicos-home {
  transform: scale(1.02);
  filter: brightness(0.9);
}

a:hover .titulo-servico {
  transform: translateY(-4px);
}

/* servicos home */

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

/* --- home --- */

/* --- empresa --- */
.cards-empresa i {
  color: var(--primary-color);
  font-size: 60px;
  transition: color 0.8s ease;
}

.cards-empresa {
  width: 350px;
  height: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.cards-empresa:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cards-empresa:hover i {
  color: var(--secondary-color);
}

/* --- empresa --- */

/* --- galeria --- */
.fig-carrossel-est img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.fig-carrossel-est {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- galeria --- */

/* =============================== SEÇÃO CONTATO =============================== */
/* CONTATO MOD 2 */
.wrapper.contato-2__wrapper--small{
  max-width: 600px !important;
}
.wrapper.contato-2__wrapper--medium{
  max-width: 1100px !important;
}
.contato-2__title{
  font-size: 2.4rem;
  color: var(--dark);
  text-transform: uppercase;
}
.contato-2__text{
font-size: 1.27rem;
}
.contato-2__title span{
  font-size: 1.1rem;
  color: var(--primary-color);
}

.contato-box {
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  transition: all 0.3s ease-out;
}

.contato-box:hover {
  transform: scale(1.03) translateX(5px) translateY(-5px);
  border-bottom: 2px solid var(--secondary-color);
}

.contato-box__icon{
  font-size: 3rem;
  color: var(--primary-color);
  transition: all 0.3s ease-out;
}

.contato-box__title{
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: bold;
}

.contato-box__address :is(span, a) {
  display: block;
  color: var(--grey);
  font-size: 0.9rem;
  text-align: center;
  margin: 8px 0;
  transition: font-weight 0.6s ease, color 0.6s ease;
}

.contato-box__address :is(span, a):hover {
  font-weight: bold;
  color: var(--secondary-color);
}

.contato-box:hover .contato-box__icon {
  color: var(--secondary-color);
}


.contato-2__form .row [class*="col-"]{
  padding: 8px;
}

.contato-2__form :is(input, textarea, select) {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 18px;

width: 100%;
margin: 6px 0;

border: 1px solid #c4c4c4;
border-radius: 6px;

font: 12px var(--primary-font);
color: var(--grey);

-webkit-transition: .3s;
transition: .3s;

outline: none;
text-align: left;
}

/* BOTÃO SUBMIT */
.contato-2__form .ir {
display: block;
position: relative;

max-width: 242px;
width: 100%;
height: 50px;

border: 2px solid var(--grey);

transition: .3s;
  margin: 8px 0;
}

.contato-2__form .ir:hover {
border-color: var(--primary-color);
}

.contato-2__form .ir:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 1%;
height: 100%;
background-color: var(--primary-color);
transition: .3s;
z-index: 0;
opacity: 0;
}

.contato-2__form .ir:hover:before {
width: 100%;
opacity: 1;
}

.contato-2__form .ir label, 
.contato-2__form .ir [type='submit'] {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
width: 100%;
margin: 0;
text-align: center;
}

.contato-2__form .ir label {
color: var(--grey);
font-size: 14px;
font-weight: bold;
}

.contato-2__form .ir:hover label {
color: #fff;
}

.contato-2__form .ir [type='submit'] {
background-color: transparent;
outline: none;
border: none;
}

.mapa-contato-2{
  width: 100%;
}
.mapa-contato-2 iframe{
  width: 100%;
  height: 380px;
  margin-bottom: 0;
}
/* ===============================  END SEÇÃO CONTATO =============================== */

/* ---------------------------------------- PERSONALIZADO ---------------------------------------- */