/* =============================== HEADER =============================== */
@media screen and (min-width: 768.05px) {
  header:not(.headerFixed) {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9999;
  }
}
header .logo img {
  display: block;
  margin: 1.75rem auto;
  width: 100%;
  max-width: 200px;
  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 {
  padding: 8px 0;
  font-size: 14px;
  color: #fff;
}
header .topo .social__icons {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  border: 2px solid #fff;
}
header .topo .social__icons i {
  font-size: 16px;
}
header .topo :is(span, a) {
  font: 14px var(--primary-font);
  color: #fff;
  transition: 0.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: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px;
  padding-bottom: 10px;
  border-bottom: 4px solid transparent;
  text-transform: uppercase;
}
header #menu > ul > li:hover > a {
  transform: translateY(-5px);
}

header #menu > ul > li:focus-within > a,
header #menu > ul > li > a.active-menu-topo {
  border-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: 0.3s;
  color: #fff;
}
.aside .aside__btn {
  color: #fff;
  text-align: center;
  border-radius: 3px;
}
.aside .aside__btn:hover {
  background-color: var(--dark);
}
.aside .aside__menu h2 a {
  color: #fff;
}
.aside .aside__menu nav ul li {
  border-left: 2px solid var(--primary-color);
  margin: 10px 0;
  padding: 5px;
  transition: 0.2s;
}
.aside .aside__menu nav ul li a {
  color: var(--dark);
  font-size: 12px;
  border-left: 0;
  padding: 0;
  transition: 0.3s;
}
.aside .aside__menu nav ul li:hover {
  border-left-color: var(--dark);
  background-color: #f0f0f0;
}
.aside .aside__menu nav ul li a.active-menu-aside {
  color: var(--primary-color);
  font-weight: bold;
}
.aside .aside__contato h2 {
  text-align: center;
}
.aside .aside__contato a {
  color: var(--dark);
  text-align: center;
  display: block;
  margin: 10px;
  transition: all 0.2s ease;
}
.aside .aside__contato a:hover {
  color: #5492c3;
}
.aside .fb-page {
  display: block;
  margin-bottom: 25px;
}

/* =============================== FOOTER =============================== */

footer {
  padding: 0 !important;
  background-color: var(--secondary-color);
  border-top: 5px solid var(--primary-color);
  position: relative;
  z-index: 1;
}
footer h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: white;
}
footer .logo {
  width: 100%;
}
footer .logo img {
  display: block;
  width: 100%;
  object-fit: contain;
  height: 80px;
}

footer .address :is(a, span) {
  font-size: 16px;
  line-height: 28px;
  color: white;
  transition: 0.3s;
}
footer .address :is(a, span) i {
  color: white;
}
footer .address a:hover:not(.btn) {
  color: var(--primary-color);
}

footer .social {
  gap: 8px;
  justify-content: center;
}
footer .social .social__icons {
  font-size: 26px;
  color: white;
  opacity: 0.5;
}
footer .social .social__icons:hover {
  opacity: 1;
}

footer .footer__menu {
  padding: 1rem 0;
  background-color: var(--primary-color);
}
footer .footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
footer .footer__menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.25rem;
}
footer .footer__menu ul li:not(:last-child):after {
  content: "/";
  color: #fff;
  padding-left: 0.75em;
}
footer .footer__menu ul li a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
footer .footer__menu li a:hover {
  color: var(--secondary-color);
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  footer * {
    text-align: center;
  }
  footer .footer__menu ul li {
    width: 100%;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  footer .footer__menu ul {
    flex-direction: column;
  }
  footer .footer__menu ul li:after {
    display: none;
  }
}

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

/* ==================== Cards mod-21 ==================== */

.card.card--mod-21 {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}
.card.card--mod-21 .card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
}
.card.card--mod-21 .card__title {
  margin: 0;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc((1.125rem * 3) * 1.3);
  font-size: 1.125rem;
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
  line-height: 1.3;
}
.card.card--mod-21 .card__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 2px solid #fffc;
  opacity: 0;
  border-radius: 0.25rem;
  transition: all 0.3s ease-out;
  transition-delay: 0s;
}
.card.card--mod-21:focus .card__title,
.card.card--mod-21:hover .card__title {
  height: 100%;
}
.card.card--mod-21:hover .card__title::after {
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  margin: 1rem;
  opacity: 1;
  transition-delay: 0.2s;
}

/* ================== FIM Cards mod-21 ================== */

/* ================== FIM Cards mod-21 ================== */
.aside-mod-01 {
  padding: 1em;
  margin-left: 0;
  margin-top: 2em;
}
.aside-mod-01 .aside__menu {
  border-radius: 1.25rem;
  background: var(--Black-10, #fafafa);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 1em;
}
.aside-mod-01 .aside__menu h2 {
  padding: 10px 0;
  margin: 0;
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.247);
}
.aside-mod-01 li {
  margin: 14px 0 0 0;
}
.aside-mod-01 li a {
  transition: 0.5s;
}
.aside-mod-01 li a.active-menu-aside,
.aside-mod-01 li a:hover {
  color: var(--secondary-color);
}
.aside-mod-01 .aside__contato h2 {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 1rem;
  background-color: var(--primary-color);
  transition: 0.3s ease-out;
  border-radius: 24px;
  font-weight: 200;
  font-size: 1.3rem;
  transition: 0.35s;
}

.aside-mod-01 .aside__contato {
  text-align: center;
  background-color: var(--primary-color);
  padding: 2rem;
  border-radius: 24px;
  margin-top: 1em;
}
.aside-mod-01 .aside__contato h2 {
  margin: 0;
}
.aside-mod-01 .aside__contato .btn {
  color: var(--grey);
  padding: 10px;
  font-weight: bold;
}
.aside-mod-01 .aside__contato a {
  color: var(--light);
  display: block;
  margin: 10px;
  transition: 0.3s ease-out;
}
.aside-mod-01 .aside__contato a:focus,
.aside-mod-01 .aside__contato a:hover {
  color: var(--secondary-color);
}

/* =============================== ACCORDION =============================== */

.accordion .accordion__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 5px;
  font-size: 18px;
  background-color: transparent;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  cursor: pointer;
  transition: 0.3s;
}

.accordion .accordion__button:after {
  content: "\2b";
  font-family: "FontAwesome";
  color: var(--primary-color);
}

.accordion .accordion__button.accordion--active:after {
  content: "\f068";
}

.accordion .accordion__button + * {
  padding: 5px 15px;
}
.video-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 660px;
  overflow: hidden;
}
.video-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #00000085;
  height: 660px;
}
.video-banner video {
  width: 100%;
}
.video-banner .card_video {
  width: 80%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.video-banner .btn {
  max-width: 250px;
  width: 100%;
}
.video-banner .btn--white {
  background-color: white;
  color: black;
  border-radius: 0;
  border: 2px solid white;
  text-transform: uppercase;
}
.video-banner .btn--white:hover {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}
.video-banner .btn--outline {
  border-color: white;
  color: white;
  border-radius: 0;
  text-transform: uppercase;
}
.video-banner .btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.cta {
  background: var(--background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 3em 0;
}

.cta h2 {
  font-size: 45px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 35px;
}
.cta h2 span {
  font-weight: bold;
  font-size: 30px;
}

/* =============================== CARD =============================== */
.card-mod-14-group {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}
.card--mod-14 {
  padding: 4em 2em;
  height: 400px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.card--mod-14:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 80%);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-out 0.1s;
}
.card--mod-14:hover:after {
  opacity: 1;
}
.card--mod-14 .card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(0, 0, 0, 75%), rgba(0, 0, 0, 75%)),
    var(--background);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-out;
}
.card--mod-14:hover .card__image {
  transform: scale(1.5);
}
.card--mod-14 .card__icon {
  font-size: 2rem;
  margin: 1rem 0;
  color: #fff;
}
.card--mod-14 .card__title,
.card--mod-14 .card__text {
  margin: 5px 0;
  color: #fff;
}
.card--mod-14 .card__title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}
.card--mod-14 .card__text {
  text-align: left;
}
.card--mod-14 .card__btn {
  position: absolute;
  bottom: 50px;
  left: 50px;
  background-color: transparent;
  border-radius: 30px;
  border: 1.5px solid #fff;
  padding: 12px 38px;
  z-index: 6;
}
.card--mod-14:hover .card__btn {
  background-color: #fff;
  color: var(--dark);
}
.card--mod-14 .card__overlay {
  left: 0;
  bottom: 0;
  right: inherit;
  top: inherit;
}
.card--mod-14 .card:hover .card__overlay {
  left: 0;
  bottom: 0;
  right: inherit;
  top: inherit;
}
.card--mod-14 .card__overlay:before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 400px;
  height: 400px;
  transform: translate(-100%, 100%);
  background-color: var(--primary-color);
  z-index: 1;
  border-radius: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.25);
}
.card--mod-14:hover .card__overlay:before {
  transform: translate(0, 0);
}
.card--mod-14 .card__overlay:after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -130px;
  width: 400px;
  height: 400px;
  transform: translate(-100%, 100%);
  border: 1px solid #fff;
  z-index: 5;
  border-radius: 100%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}
.card--mod-14:hover .card__overlay:after {
  transform: translate(0, 0);
}
/* LARGE DEVICE */
@media only screen and (max-width: 992px) {
  .card--mod-14 {
    margin: 0;
  }
  .card--mod-14 .card__overlay:before,
  .card--mod-14 .card__overlay:after {
    transform: translate(0, 0);
  }
}

.title_01 {
  font-size: 2em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 25px;
}

.title_01 span {
  font-size: 20px;
}

.slick-carousel .slick-next,
.slick-carousel .slick-prev {
  top: -5%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}
.slick-carousel .slick-prev {
  left: 95% !important;
}

.title_home--02 {
  font-size: 2em;
  font-weight: normal;
  margin-bottom: 1em;
  position: relative;
  line-height: 25px;
}
.title_home--02::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20%;
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}
.title_home--02 span {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 3px;
}

.title_home--03 {
  font-size: 2em;
  font-weight: normal;
  margin-bottom: 1em;
  position: relative;
  line-height: 25px;
  text-align: center;
}
.title_home--03::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 135%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}
.title_home--03 span {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 3px;
}

.card_home-prod {
  height: 450px;
}
