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

header {
  background: linear-gradient(90deg, #3290de, #7bc6f1 45%, #3592dd);
}

header .logo img {
  display: block;
  margin: 1.75rem auto;
  width: 100%;
  max-width: 150px;
  height: auto;
}

header .logo .logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/1;
  background-color: var(--light);
  color: var(--primary-color);
  width: 250px;
  border-radius: 4px;
  font-weight: bold;
  margin: 1.75rem auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

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

header .topo :is(span, a) {
  font: 13px var(--primary-font);
  color: #fff;
  transition: .3s;
}

header .topo a:hover {
  opacity: 0.75;
}


/* MENU */
header #menu>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 4px;
}

header #menu>ul>li {
  margin: 0;
}

header #menu>ul>li>a {
  color: var(--light);
  padding: 11px 15px;
}

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

header #menu>ul>li.dropdown [class*='sub-menu'] {
  background-color: var(--primary-color);
}

header #menu>ul>li.dropdown [class*='sub-menu']>li:hover>a,
header #menu>ul>li.dropdown [class*='sub-menu']>li>a.active-menu-topo {
  background-color: #fff;
  color: var(--primary-color);
}

/* MENU DROPDOWN ARROWS */
header #menu>ul>li.dropdown:not([data-icon-menu])>a::after {
  content: "\f107";
  font-family: FontAwesome;
  margin-left: 4px;
  font-size: 12px
}

/* ASIDE */
.aside .aside__btn,
.aside .aside__menu h2,
.aside .aside__contato h2 {
  font-size: 14px;
  background-color: var(--primary-color);
  padding: 10px;
  display: block;
  transition: .3s;
  color: #fff;
}

.aside .aside__btn {
  color: #fff;
  text-align: center;
  border-radius: 3px;
}

.aside .aside__btn:hover {
  background-color: var(--dark);
}

.aside .aside__menu h2 a {
  color: #fff;
}

.aside .aside__menu nav ul li {
  border-left: 2px solid var(--primary-color);
  margin: 10px 0;
  padding: 5px;
  transition: .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: 10px;
  transition: all .2s ease;
}

.aside .aside__contato a:hover {
  color: #5492c3;
}

.aside .fb-page {
  display: block;
  margin-bottom: 25px;
}


/* =============================== FOOTER =============================== */
footer {
  background-color: #f1f1f1;
  padding: 25px 0;
}

footer h3 {
  margin-top: 0;
  font-size: 18px;
  color: var(--dark);
}

footer h3:after {
  content: '';
  display: block;
  margin: 5px 0;
  height: 2.5px;
  background: var(--dark);
  width: 10%;
}

footer .footer__menu li a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--dark);
  transition: .3s;
}

footer .footer__menu li a i {
  font-size: 10px;
}

footer .footer__menu li a:hover {
  color: var(--primary-color);
}

footer .address :is(span, a):not(.btn) {
  color: var(--dark);
  font-size: 14px;
  line-height: 25px;
  transition: .3s;
}

footer .address a:not(.btn):hover {
  color: var(--primary-color);
}

footer .social {
  gap: 10px;
  margin-top: 15px;
}

footer .social__icons {
  font-size: 32px;
  opacity: 0.75;
  color: var(--dark);
}

footer .social__icons:hover {
  opacity: 1;
}

/* MEDIUM DEVICE */
@media only screen and (max-width:768px) {
  footer img {
    display: block;
    margin: 0 auto;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width:576px) {
  footer h3:after {
    margin-left: auto;
    margin-right: auto;
  }

  footer .address .btn {
    display: inline-block;
    margin: 1rem auto;
    width: auto;
  }

  footer .social {
    justify-content: center;
  }
}

/* DESTAQUES */

.destaques-mpi {
  margin: 32px 0;
}

.destaques-mpi__title {
  margin: 0 0 30px 0;
  color: var(--primary-color);
}

.destaques-mpi__title span {
  color: var(--dark);
}

/* FIM DESTAQUES */

/* CLIENTES */

.clientes {
  padding: 32px 0;
}

.clientes__title {
  margin: 0 0 30px 0;
}

.clientes__item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 8px;
  margin: 0 10px;
  background-color: #fff;
}

.clientes__carousel {
  padding: 0 16px;
}

.clientes__image {
  max-width: 100%;
  max-height: 100%;
}

/* FIM CLIENTES */


.card--mod-23 {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: .5rem
}

.card--mod-23 .card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  opacity: .2;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  transition: .3s ease-out;
}

.card--mod-23:focus-within,
.card--mod-23:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 0 0 2px var(--secondary-color)
}

.card--mod-23 .card__description {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem;
  height: 100%
}

.card--mod-23 .card__title {
  color: #fff;
  font-size: 1.125rem;
  text-shadow: 0 0 .25rem var(--dark);
  line-height: 1.3;
  margin: 0
}

.card--mod-23 .card__link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: .3s ease-out;
}

.card--mod-23 .card__link:active,
.card--mod-23 .card__link:focus,
.card--mod-23 .card__link:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: currentColor
}

.card_prod--home {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

.card_prod--home img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.card_prod--home .card_title {
  font-size: 1em;
  font-weight: 400;
  text-align: center;
}

.card_prod--home a {
  background-color: white;
  border: 1px solid var(--primary-color);
  padding: 5px 20px;
  border-radius: 15px;
}

.btn_mercado {
  background-color: #ecb240;
  color: var(--primary-color);
  font-size: 16px;
}

.btn_mercado:hover {
  background-color: white;
  color: var(--primary-color);
}

.video_iframe iframe {
  width: 100%;
  height: 400px;
}

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

.bg-contact input {
  background: transparent;
  border-radius: 5px;
}

.bg-contact input :is(input, textarea)::placeholder {
  color: white;
}

.ir_footer {
  background-color: white;
  border-radius: 20px;
}

.ir_footer:hover label {
  color: white !important;
}

.ir_footer::before {
  border-radius: 15px;
}

.filters #pesquisa {
  padding: 12px;
  width: 85%;
  border-radius: 5px;
  border: 2px solid #0000001f;
}

.filters #tipo {
  border: 2px solid #0000001f;
  padding: 12px;
  border-radius: 5px;
}

.bg-parallax_blog {
  background: var(--background);
  background-position: center;
  background-size: cover;
  padding: 7em 4em 7em 13em;
  border-radius: 25px;
  background-repeat: no-repeat;
}

.bg-parallax_blog .btn {
  background-color: white;
  color: var(--primary-color);
}

.card--mod-16 {
  border-radius: 22px 0 22px 0;
}

.card--mod-16 .card__image {
  height: 260px;
  object-fit: cover;
}

.card--mod-16 .card__image:hover {
  opacity: 0.8;
}

.card--mod-16 .card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 5px;
  height: 45px;
  margin: 0;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  background: var(--primary-color);
  color: #fff;
}

.card--mod-16:hover .card__title {
  opacity: 0.8;
}

.sub_res .res_bg {
  background: #ba62f0;
  padding: 2em;
}

.sub_res .res_bg p {
  color: white;
}

.bg-alt_colora {
  background: #1f120d;
}

.card_eventos {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 5px;
  border: 4px solid var(--secondary-color);
  border-radius: 25px;
  padding: 5px;
}

.card_eventos img {
  width: 160px;
  height: 140px;
  object-fit: cover;
  border-radius: 15px;
}

.btn--relatorio {
  background-color: #fff;
  color: #444;
  border: 1px solid #444;
  font-size: 12px;
}


.btn--relatorio i {
  color: rgb(253, 189, 72);
  padding-left: 10px;
  font-size: 18px;
}
