
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: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
}
h6 {
  font-size: 0.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;
}
dl,
menu,
ol,
p,
pre,
ul {
  margin: 1em 0;
}
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: -0.5em;
}
sub {
  bottom: -0.25em;
}
dd {
  margin: 0 0 0 40px;
}
menu,
ol,
ul {
  padding: 0;
}
nav ol,
nav ul {
  list-style: none;
}
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: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}
button,
input {
  line-height: normal;
  border: 1px solid #ccc;
  padding: 5px;
}
button,
select {
  text-transform: none;
}
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 {
  list-style: none;
  margin: 0;
  padding: 0;
} /* BASE STYLES CSS */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}



    .banner-background {
        width: 100%;
        height: 32vw;
        background-size: cover;
        background-position: center;
        background-image: var(--background);
    }

    .banner-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .banner-content__title {
        color: #FFF;
        text-align: center;
        font-size: 30px;
        text-shadow: 1px 1px 0px #000;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0 0 30px 0;
    }

    .banner-content__button {
        background-color: transparent;
        color: #FFF;
        border: 1px solid #FFF;
        padding: 12px;
        text-transform: uppercase;
        border-radius: 2px;
        transition: all 0.3s ease;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .banner-content__button:hover {
        border-color: var(--secondary-color);
        background-color: var(--secondary-color);
    }

    .empresa {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .empresa__content {
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .empresa__image {
        width: 45%;
        box-shadow: 0px 0px 10px #ccc;
        border-radius: 5px;
    }

    .empresa__title {
        color: var(--primary-color);
        text-transform: uppercase;
        font-weight: 500;
        position: relative;
        text-align: left;
    }

    .empresa__title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 50px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    .empresa__subtitle {
        text-align: left;
        text-transform: uppercase;
        color: var(--secondary-color);
    }

    .empresa__text {
        font-size: 15px;
        line-height: 25px;
        text-align: justify;
    }

    .empresa__button {
        margin: 30px 0 40px 0;
        border: 1px solid var(--primary-color);
        padding: 10px;
        color: var(--primary-color);
        background-color: transparent;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .empresa__button:hover {
        background-color: var(--primary-color);
        color: #FFF;
    }

    .parallax-aluminio-mundo {
        width: 100%;
        height: 415px;
        background-size: cover;
        background-position: center;
        background-image: var(--background);
        background-attachment: fixed;
    }

    .parallax-aluminio-mundo__content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .parallax-aluminio-mundo__text {
        color: #FFF;
        text-align: center;
        font-size: 23px;
        line-height: 40px;
    }

    .bg-light {
        background-color: #f8f9fa;
        padding: 30px 0;
    }

    .carousel-produtos-home {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .carousel-produtos-home .product-card__image {
        height: 266px;
    }

    .carousel-produtos-home__button {
        border: 1px solid var(--primary-color);
        padding: 10px;
        color: var(--primary-color);
        background-color: transparent;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .carousel-produtos-home__button:hover {
        background-color: var(--primary-color);
        color: #FFF;
    }

    .title-produtos-destaque {
        text-align: center;
        text-transform: uppercase;
    }

    .parallax-contato {
        width: 100%;
        padding: 50px 0;
        background-size: cover;
        background-position: center;
        background-image: var(--background);
        background-attachment: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .parallax-contato__title {
        color: #FFF;
        text-align: center;
        position: relative;
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 100px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 300;
    }

    .parallax-contato__title::before {
        content: '';
        position: absolute;
        width: 50px;
        height: 3px;
        background-color: #FFF;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
    }

    .parallax-contato .obrigatorio {
        color: #FFF !important;
    }

        /* Informações */
    .informacoes-section {
        background-color: #f8f9fa;
        padding: 50px 0;
    }

    .informacoes-title {
        color: var(--primary-color);
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 30px;
    }

    .informacoes-carousel {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    /* Responsivo */
    @media only screen and (max-width: 765px) {
        .banner-background {
            height: 320px;
        }

        .parallax-aluminio-mundo {
            height: 600px;
        }

        .empresa {
            flex-direction: column;
        }

        .empresa__content {
            width: 100%;
            align-items: center;
        }

        .empresa__image {
            width: 100%;
            margin: 30px 0;
        }

        .empresa__title {
            text-align: center;
        }

        .empresa__title::before {
            left: 50%;
            transform: translateX(-50%);
        }

        .empresa__subtitle {
            text-align: center;
        }
    }


    .title-breadcrumb {
        background: var(--primary-color);
        box-sizing: border-box;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .obrigado {
        text-align: center;
        font-size: 30px;
        text-decoration: none;
        margin: 20px 0;
        color: #666;
    }

    .txtcenter {
        text-align: center;
    }

    .title-breadcrumb #breadcrumb {
        width: auto;
        margin-top: 0px;
        float: right;
        background: white;
        border-radius: 5px;
        box-sizing: border-box;
        padding: 10px;
    }

    .title-breadcrumb #breadcrumb a {
        color: var(--text-color);
        text-decoration: none;
    }

    .title-breadcrumb #breadcrumb a:hover {
        color: #bbb;
        text-decoration: none;
    }

    #breadcrumb {
        display: inline-block;
        clear: both;
        width: 100%;
        color: #333;
        font-size: 12px;
        margin-top: 15px;
    }

    #breadcrumb div {
        display: inline;
    }

    #breadcrumb a {
        color: var(--text-color);
        text-decoration: none;
    }

    #breadcrumb a:hover {
        color: #bbb;
        text-decoration: none;
    }


    summary {
        cursor: pointer;
        font-weight: bold;
    }

    summary::before {
        content: "+";
        display: inline-block;
        margin-right: 5px;
    }

    [open] summary::before {
        content: "-";
    }

    details {
        margin: 15px 0;
        padding: 10px;
        background: var(--primary-color);
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        color: white;
    }

    details p {
        color: white;
    }

    .faq {
        margin: 10px 0px;
        font-size: 16px;
        color: white;
    }

    details[open] {
        margin-bottom: 20px;
    }

    [data-tab="guia-instalacao"] {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 30px;
    }

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

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

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  body {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--primary-font);
  color: var(--primary-color);
  margin: 25px 0;
}

h1 {
  font-size: 2.25em;
}

/* 36px */
h2 {
  font-size: 1.5em;
}

/* 24px */
h3 {
  font-size: 1.125em;
}

/* 18px */

p {
  font: 1em/1.5 var(--primary-font);
  margin: 15px 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

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

/* COOKIES */
#cookies-message p {
  color: #fff;
}

/* FIM COOKIES */

/* PAGE LOADING */

.page-loading {
  position: fixed;
  background-color: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  height: 100%;
  z-index: 999999999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 16px;
  overflow: hidden;
}

.page-loading__spinner {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}

.page-loading__spinner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  animation-name: pageloadingRotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  border: 4px solid var(--light);
  border-top: 4px solid var(--primary-color);
}

.page-loading__logo {
  width: 100%;
  max-width: 250px;
  transition: 0.5s;
  position: relative;
  bottom: 0;
  opacity: 1;
}

.page-loading__logo--fade {
  opacity: 0;
  transform: scale(1.5);
}

@keyframes pageloadingRotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* FIM PAGE LOADING */

/* HEADER */

/* header fixo */
.headerFixed {
  position: fixed !important;
  width: 100%;
  z-index: 999;
  top: 0px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.headerFixed .topo {
  display: none;
}

.headerFixed .logo img {
  max-width: 180px;
  margin: 16px auto;
}

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

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

@keyframes headerSlide {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

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

@keyframes headerFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

/* MENU */
header #menu {
  text-align: center;
}

header #menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

header #menu a {
  display: block;
  padding: 8px 12px;
  text-align: center;
  transition: 0.3s;
}

/* ACTIVE MENU TOPO */
.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 10px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:first-of-type {
  padding-top: 10px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li:last-of-type {
  padding-bottom: 10px;
}

header #menu .dropdown :is(.sub-menu, .sub-menu-info) li a {
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  color: #fff;
}

header #menu .dropdown > :is(.sub-menu, .sub-menu-info) > li:hover > a {
  background-color: #fff;
  color: var(--primary-color);
}

/* =========================================================================
   Estilos para o Cabeçalho Fixo (Sticky Header)
   ========================================================================= */

/* Garante que o header tenha altura e prepara a transição */
header#scrollheader {
    width: 100%;
    z-index: 999;
    /* Adiciona uma transição suave para todas as mudanças */
    transition: padding 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

header#scrollheader.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

}

header#scrollheader .site-logo img {
    max-height: 60px;
    width: auto;
    transition: max-height 0.3s ease-in-out;
}


header#scrollheader.sticky-header .site-logo img {
    max-height: 45px; 
}

#header-block {
    display: block;
}

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

/* BROWSE HAPPY PROMPT */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* SCROLL UP BUTTON */
#scrollUp {
  position: fixed;
  bottom: -100px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

#scrollUp.is-active {
  transition: 0.5s;
  bottom: 16px;
  opacity: 1;
}

#scrollUp.is-active:hover {
  background-color: var(--primary-color);
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  #scrollUp {
    width: 48px;
    height: 48px;
    right: 28px;
  }

  #scrollUp.is-active {
    bottom: 8px;
  }

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

/* BODY */
.wrapper {
  max-width: var(--wrapper-width);
  width: 100%;
  margin: 0 auto 10px;
  padding: 0 10px;
}

.container {
  max-width: 1920px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 0;
  clear: both;
}

section {
  float: left;
  width: 100%;
}

article {
  float: left;
  width: 67.5%;
}

article.full {
  width: 100%;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  article {
    float: none;
    width: 100%;
  }
}

/* BREADCRUMB BASE */
.bread {
  padding: 1.25em 0;
}

.bread__title {
  margin: 1em 0 0 0;
  color: var(--primary-color);
}

#breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  clear: both;
  margin: 0;
}

#breadcrumb * {
  -webkit-transition: 0.3s;
  transition: 0.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 :is(li, a) {
  font: 14px var(--primary-font);
  color: var(--grey);
}

.bread:is(.bread--default, .bread--mpi) .bread__column:first-child:before {
  content: "\e3af";
  font-family: "FontAwesome";
  font-size: 12px;
  margin-right: 4px;
  color: var(--grey);
}

.bread:is(.bread--default, .bread--mpi) .bread__column:not(:last-child)::after {
  content: "❱";
  margin-left: 6px;
  font-size: 14px;
  color: var(--grey);
}

.bread--mpi {
  margin-bottom: 32px;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  #breadcrumb :is([itemprop="title"], [itemprop="name"]) {
    display: inline-block;
    max-width: 82px;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ASIDE */
aside {
  float: left;
  width: 27.5%;
  margin-left: 5%;
}

aside nav {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

aside nav > ul > li > ul {
  display: none;
}

aside li {
  margin: 5px 0 0 0;
}

aside .active-menu-aside {
  color: var(--primary-color);
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  aside {
    width: 100%;
    float: none;
    margin: 15px 0;
  }
}

/* =============================== ASIDE =============================== */

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

.aside-04 nav::-webkit-scrollbar-thumb {
  background-color: var(--dark);
}

.aside-04 {
  background-color: var(--primary-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  margin: 0;
  padding: 3em;
  position: fixed;
  z-index: 999999;
  height: auto;
  width: 300px;
  right: -300px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}

.aside-04::before {
  content: "\f0c9";
  font-family: "FontAwesome";
  width: 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  cursor: pointer;
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.aside-04:hover {
  right: 0;
}

.aside-04:hover::before {
  opacity: 0;
}

.aside-04 h2 {
  margin: 0 0 32px 0;
}

.aside-04 h2,
.aside-04 a {
  color: #fff;
}

.aside-04:hover .aside__menu,
.aside-04:hover .aside__contato {
  animation-name: anima__aside;
  animation-duration: 0.7s;
  animation-timing-function: ease-in-out;
}

.aside-04 .aside__menu li a {
  display: block;
  padding: 5px;
  margin: 5px 0;
  font-size: 12px;
  border-left: 1.5px solid #fff;
  transition: 0.3s;
}

.aside-04 .aside__menu li a:hover,
.aside-04 .aside__menu li a.active-menu-aside {
  border-left: 3px solid var(--dark);
  color: var(--dark);
}

@keyframes anima__aside {
  0% {
    transform: translateX(1000px);
  }

  100% {
    transform: translateX(0);
  }
}

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

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

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

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

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

.card__btn {
  display: inline-block;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  font-size: 14px;
  background-color: var(--primary-color);
  color: #fff;
  transition: 0.3s;
}

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

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

@media only screen and (max-width: 992px) {
  .card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  .card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 480px) {
  .card-group {
    grid-template-columns: 1fr;
  }
}

/* CARD MPI */
.card--mpi {
  display: block;
  color: #fff;
  outline: transparent solid 2px !important;
  outline-offset: 1px;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  transition: var(--transition);
  overflow: hidden;
}

.card--mpi:hover {
  background-color: var(--secondary-color);
}

.card--mpi:active,
.card--mpi:focus {
  outline: var(--secondary-color) solid 2px !important;
  outline-offset: 1px;
  background-color: var(--secondary-color);
}

.card--mpi .card__image {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}

.card--mpi:hover .card__image {
  opacity: 0.8;
}

.card--mpi .card__title {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 0.875em;
  line-height: 1.3;
  min-height: calc((0.875em * 3) * 1.3);
  justify-content: center;
  margin: 0;
  padding: 0.5em 0.75em;
  text-align: center;
  color: #fff;
}

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 0.5em;
  margin: 0.75em 0;
  padding: 0.875em 1.25em;
  text-align: center;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 500;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #fff;
  transition: var(--transition);
  outline: transparent solid 2px !important;
  outline-offset: 1px;
}

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

.btn:active,
.btn:focus {
  background-color: var(--secondary-color);
  outline: var(--primary-color) solid 2px !important;
}

@media only screen and (max-width: 576px) {
  .btn {
    display: block;
    width: 100%;
  }
}

/* SOCIAL ICONS */
.social {
  display: flex;
  align-items: center;
  gap: 1em;
}

.social__icons {
  color: #fff;
  font-size: 1em;
  transition: 0.3s;
}

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

.table td {
  font-size: 12px;
  text-align: center;
  line-height: 30px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
  color: #000;
}

.table th {
  font-size: 14px;
  font-weight: normal;
  padding: 10px 5px;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
  word-break: normal;
}

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

.list li {
  list-style: disc;
  margin: 5px 0;
  font-size: 1em;
  line-height: 1.5em;
  text-align: left;
}

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

.list li::first-letter {
  text-transform: uppercase;
}

/* LAZY LOAD VIDEO */
[data-video] {
  cursor: pointer;
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
}

.ytvideo[data-video]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
}

.ytvideo[data-video]::after {
  content: "\f167";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font: 70px / normal FontAwesome;
  color: var(--light);
  transition: 0.3s;
}

[data-video]:hover::after {
  color: red;
}

[data-video] * {
  width: 100%;
  height: 100%;
}

/* SWEET ALERT */
.sweet-alert .lead.text-muted {
  text-align: center;
}

/* FIM SWEET ALERT */

/* SEARCH PAGE */
.search {
  position: relative;
}

.search input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  color: var(--grey);
  font: normal 14px / 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;
  transition: 0.3s;
}

.search--topo button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.search button:hover {
  color: var(--dark);
}

.search .button-group {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORMULÁRIO / CONTATO PAGE */
.form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form :is(input, textarea, select) {
  width: 100%;
  padding: 0.75em 1em;
  margin: 0.5em 0 0.875em;
  border: 1px solid var(--grey);
  border-radius: var(--border-radius);
  font-size: 0.875em;
  font-family: var(--primary-font);
  background-color: #fff;
  color: var(--grey);
  transition: var(--transition);
}

.form :is(input, textarea, select):hover,
.form :is(input, textarea, select):active,
.form :is(input, textarea, select):focus {
  border-color: var(--secondary-color);
}

.form :is(input, textarea)::placeholder,
.form label {
  font-size: 0.875em;
  font-family: var(--primary-font);
  color: var(--grey);
}

.form [type="submit"] {
  max-width: 280px;
  width: 100%;
  margin-top: 1em;
  padding: 0.75em 1.25em;
  border: none;
  border-radius: var(--border-radius);
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  background-color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.form [type="submit"]:hover {
  background-color: var(--grey);
}

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

.form__obrigatory {
  display: block;
  margin: 0.75em 0;
  font-size: 0.75em;
  color: var(--alert);
}

.address-map {
  width: 100%;
  height: 450px;
  margin: 15px 0 0;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

/* FOOTER */
footer {
  padding: 15px;
  clear: both;
}

.copyright-footer {
  padding: 15px 100px;
  background-color: var(--primary-color);
}

.copyright-footer .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-footer * {
  color: #eee;
  font-size: 10px;
}

.copyright-footer .selos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.copyright-footer .selos a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.copyright-footer .selos i {
  font-size: 14px;
}

.copyright-footer .selos strong {
  background: #fff;
  color: #363b36;
  padding: 1px 6px;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  footer *,
  .copyright-footer * {
    text-align: center;
  }

  footer .social {
    justify-content: center;
  }

  .copyright-footer {
    padding: 15px;
  }

  .copyright-footer .wrapper {
    flex-direction: column;
  }

  footer .footer__menu nav ul li a {
    background-color: var(--primary-color);
    text-align: center;
    margin: 5px 0;
    color: var(--light) !important;
    width: 100%;
  }
}

/* WHATSAPP BUTTON 1*/
.wpp-container {
  position: relative;
}

/* BUTTONS */
.wppButton {
  position: fixed;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.wppButton__image {
  width: 60%;
}

.wppButton:hover {
  transform: scale(1.1);
}

/* POP-UP */
.wppPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999998;
}

.wppPopup__inner {
  max-width: 400px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  border-radius: var(--border-radius);
  background-color: #ccc;
  transition: transform 0.3s;
}

.wppPopup :is(.wppPopup__head, .wppPopup__body) {
  padding: 1.25em;
}

/* POP-UP HEAD */

.wppPopup .wppPopup__head {
  background-color: #009688;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25em;
}

.wppPopup .wppPopup__head .wppPopup__icon i {
  color: #fff;
}

.wppPopup .wppPopup__head .wppPopup__info span {
  display: block;
  color: #fff;
  font-size: 0.85em;
  margin: 5px 0;
}

.wppPopup .wppPopup__head .wppPopup__info span:nth-child(0n + 3) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wppPopup .wppPopup__head .wppPopup__info span:nth-child(0n + 3):before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: var(--border-radius);
  background-color: green;
}

/* POP-UP BODY */

.wppPopup .wppPopup__body .wppPopup__label {
  display: block;
  background-color: #fcf8e3;
  font-size: 0.85em;
  padding: 0.35em 0.5em;
  border-radius: var(--border-radius);
  line-height: 15px;
  text-align: center;
  margin-bottom: 0.75em;
}

.wppPopup .wppPopup__body .wppPopup__alert {
  display: block;
  width: 100%;
  background-color: var(--alert);
  color: #fff;
  font-size: 0.85em;
  padding: 0.35em 0.5em;
  border-radius: var(--border-radius);
  line-height: 15px;
  text-align: center;
  margin-bottom: 0.75em;
}

/* POP-UP BODY FORM */
.wppPopup .wppPopup__body .wppPopup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  height: 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input :is(span, input) {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  padding: 0.25em;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input span {
  max-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input input,
.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-input input::placeholder {
  font-size: 0.85em;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-submit button {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  padding: 0.5em 1.25em;
  border-radius: var(--border-radius);
  box-shadow: 0px 2px 0px #999;
  transition: 0.3s;
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-submit button:hover {
  background-color: #57b846;
  color: #fff;
  box-shadow: unset;
  transform: translateY(2px);
}

.wppPopup .wppPopup__body .wppPopup__form .wppPopup__form-submit button:hover svg path {
  fill: #fff;
}

/* POP-UP MESSAGE */
.wppPopup .wppPopup__message p {
  text-align: center;
  font-size: 0.85em;
}

/* POP-UP CLOSE BUTTON */
.wppPopup .wppClose {
  position: fixed;
  top: -48px;
  right: -48px;
  font-size: 2em;
  border-radius: 50%;
  color: #fff;
  background: #ccc;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  cursor: pointer;
  transition: 0.3s;
}

.wppPopup .wppClose:hover {
  background-color: #222;
  color: #fff;
}

@media only screen and (max-width: 576px) {
  .wppPopup .wppClose {
    top: -56px;
    right: 4px;
  }
}

/* POP-UP STATES */
.wppPopup.wppActive {
  display: block;
  animation: showWpp 0.3s;
}

.wppPopup .wppError::placeholder {
  color: var(--alert);
}

/* KEYFRAMES */
@keyframes animateWpp {
  from {
    box-shadow: 0 0 0 0px rgba(85, 205, 108, 0.1);
  }

  to {
    box-shadow: 0 0 0 8px rgba(85, 205, 108, 0.5);
  }
}

@keyframes showWpp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ANIMATE */
.scrollanimation:not(.fadeIn, .fadeInLeft, .fadeInRight) {
  animation: none !important;
}

@media only screen and (max-width: 768px) {
  .scrollanimation {
    animation: none !important;
  }
}

/* FIM ANIMATE */

/* *** RULES CSS *** */
/* MARGIN */
.m-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

.m-1 {
  margin: 0.25em !important;
}

.m-2 {
  margin: 0.5em !important;
}

.m-3 {
  margin: 0.75em !important;
}

.m-4 {
  margin: 1em !important;
}

.m-5 {
  margin: 1.25em !important;
}

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

.mx-1 {
  margin-left: 0.25em !important;
  margin-right: 0.25em !important;
}

.mx-2 {
  margin-left: 0.5em !important;
  margin-right: 0.5em !important;
}

.mx-3 {
  margin-left: 0.75em !important;
  margin-right: 0.75em !important;
}

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

.mx-5 {
  margin-left: 1.25em !important;
  margin-right: 1.25em !important;
}

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

.my-1 {
  margin-top: 0.25em !important;
  margin-bottom: 0.25em !important;
}

.my-2 {
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
}

.my-3 {
  margin-top: 0.75em !important;
  margin-bottom: 0.75em !important;
}

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

.my-5 {
  margin-top: 1.25em !important;
  margin-bottom: 1.25em !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25em !important;
}

.mt-2 {
  margin-top: 0.5em !important;
}

.mt-3 {
  margin-top: 0.75em !important;
}

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

.mt-5 {
  margin-top: 1.25em !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25em !important;
}

.mb-2 {
  margin-bottom: 0.5em !important;
}

.mb-3 {
  margin-bottom: 0.75em !important;
}

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

.mb-5 {
  margin-bottom: 1.25em !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25em !important;
}

.ml-2 {
  margin-left: 0.5em !important;
}

.ml-3 {
  margin-left: 0.75em !important;
}

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

.ml-5 {
  margin-left: 1.25em !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25em !important;
}

.mr-2 {
  margin-right: 0.5em !important;
}

.mr-3 {
  margin-right: 0.75em !important;
}

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

.mr-5 {
  margin-right: 1.25em !important;
}

/* PADDING */
.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25em !important;
}

.p-2 {
  padding: 0.5em !important;
}

.p-3 {
  padding: 0.75em !important;
}

.p-4 {
  padding: 1em !important;
}

.p-5 {
  padding: 1.25em !important;
}

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

.px-1 {
  padding-left: 0.25em !important;
  padding-right: 0.25em !important;
}

.px-2 {
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}

.px-3 {
  padding-left: 0.75em !important;
  padding-right: 0.75em !important;
}

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

.px-5 {
  padding-left: 1.25em !important;
  padding-right: 1.25em !important;
}

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

.py-1 {
  padding-top: 0.25em !important;
  padding-bottom: 0.25em !important;
}

.py-2 {
  padding-top: 0.5em !important;
  padding-bottom: 0.5em !important;
}

.py-3 {
  padding-top: 0.75em !important;
  padding-bottom: 0.75em !important;
}

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

.py-5 {
  padding-top: 1.25em !important;
  padding-bottom: 1.25em !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25em !important;
}

.pt-2 {
  padding-top: 0.5em !important;
}

.pt-3 {
  padding-top: 0.75em !important;
}

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

.pt-5 {
  padding-top: 1.25em !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25em !important;
}

.pb-2 {
  padding-bottom: 0.5em !important;
}

.pb-3 {
  padding-bottom: 0.75em !important;
}

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

.pb-5 {
  padding-bottom: 1.25em !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25em !important;
}

.pl-2 {
  padding-left: 0.5em !important;
}

.pl-3 {
  padding-left: 0.75em !important;
}

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

.pl-5 {
  padding-left: 1.25em !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25em !important;
}

.pr-2 {
  padding-right: 0.5em !important;
}

.pr-3 {
  padding-right: 0.75em !important;
}

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

.pr-5 {
  padding-right: 1.25em !important;
}

/* EXTRA LARGE DEVICE */
@media only screen and (min-width: 1024px) {
  /* WIDTH/HEIGHT */
  .w-100 {
    width: 100%;
  }

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

  .h-100 {
    height: 100%;
  }

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

  .w-75 {
    width: 75%;
  }

  .mw-75 {
    max-width: 75%;
  }

  .h-75 {
    height: 75%;
  }

  .mh-75 {
    max-height: 75%;
  }

  .w-50 {
    width: 50%;
  }

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

  .h-50 {
    height: 50%;
  }

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

  .w-25 {
    width: 25%;
  }

  .mw-25 {
    max-width: 25%;
  }

  .h-25 {
    height: 25%;
  }

  .mh-25 {
    max-height: 25%;
  }

  .w-0 {
    width: 0%;
  }

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

  .h-0 {
    height: 0%;
  }

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

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

.picture-left {
  float: left;
}

.picture-right {
  float: right;
}

/* FONT SIZE */
.large {
  font-size: large;
}

.larger {
  font-size: larger;
}

.x-large {
  font-size: x-large;
}

.xx-large {
  font-size: xx-large;
}

.medium {
  font-size: medium;
}

.small {
  font-size: small;
}

.smaller {
  font-size: smaller;
}

.x-small {
  font-size: x-small;
}

.xx-small {
  font-size: xx-small;
}

.display-1 {
  font-size: 6em;
}

.display-2 {
  font-size: 5.5em;
}

.display-3 {
  font-size: 4.5em;
}

.display-4 {
  font-size: 3.5em;
}

/* RESPONSIVE FONT-SIZE */
.fs-14 {
  font-size: 0.875em;
}

.fs-16 {
  font-size: 1em;
}

.fs-18 {
  font-size: 1.125em;
}

.fs-20 {
  font-size: 1.25em;
}

.fs-22 {
  font-size: 1.375em;
}

.fs-24 {
  font-size: 1.5em;
}

.fs-26 {
  font-size: 1.625em;
}

.fs-28 {
  font-size: 1.75em;
}

.fs-30 {
  font-size: 1.875em;
}

.fs-32 {
  font-size: 2em;
}

.fs-34 {
  font-size: 2.125em;
}

.fs-36 {
  font-size: 2.25em;
}

.fs-38 {
  font-size: 2.375em;
}

.fs-40 {
  font-size: 2.5em;
}

.fs-42 {
  font-size: 2.625em;
}

.fs-44 {
  font-size: 2.75em;
}

.fs-46 {
  font-size: 2.875em;
}

.fs-48 {
  font-size: 3em;
}

.fs-50 {
  font-size: 3.125em;
}

.fs-52 {
  font-size: 3.25em;
}

.fs-54 {
  font-size: 3.375em;
}

.fs-56 {
  font-size: 3.5em;
}

.fs-58 {
  font-size: 3.625em;
}

.fs-60 {
  font-size: 3.75em;
}

.fs-62 {
  font-size: 3.875em;
}

.fs-64 {
  font-size: 4em;
}

.fs-66 {
  font-size: 4.125em;
}

.fs-68 {
  font-size: 4.25em;
}

.fs-70 {
  font-size: 4.375em;
}

.fs-72 {
  font-size: 4.5em;
}

.fs-74 {
  font-size: 4.625em;
}

.fs-76 {
  font-size: 4.75em;
}

.fs-78 {
  font-size: 4.875em;
}

.fs-80 {
  font-size: 5em;
}

.fs-82 {
  font-size: 5.125em;
}

.fs-84 {
  font-size: 5.25em;
}

.fs-86 {
  font-size: 5.375em;
}

.fs-88 {
  font-size: 5.5em;
}

.fs-90 {
  font-size: 5.625em;
}

.fs-92 {
  font-size: 5.75em;
}

.fs-94 {
  font-size: 5.875em;
}

.fs-96 {
  font-size: 6em;
}

.fs-98 {
  font-size: 6.125em;
}

.fs-100 {
  font-size: 6.25em;
}

.fs-102 {
  font-size: 6.375em;
}

.fs-104 {
  font-size: 6.5em;
}

.fs-106 {
  font-size: 6.625em;
}

.fs-108 {
  font-size: 6.75em;
}

.fs-110 {
  font-size: 6.875em;
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  [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 only screen and (max-width: 768px) {
  .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 only screen and (max-width: 576px) {
  .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 only screen and (max-width: 768px) {
  .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 only screen and (max-width: 576px) {
  .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 only screen and (max-width: 768px) {
  .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 only screen and (max-width: 576px) {
  .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 */
.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);
}

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

.secondary-color {
  color: var(--secondary-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 only screen and (max-width: 768px) {
  .show-mobile {
    display: block;
  }

  .show-desk {
    display: none;
  }

  .hide-desk {
    display: block;
  }

  .hide-mobile {
    display: none;
  }
}

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

.row::after,
.row::before {
  clear: both;
}

.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 only screen and (max-width: 1024px) {
  .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 only screen and (max-width: 992px) {
  .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 only screen and (max-width: 768px) {
  .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 only screen and (max-width: 576px) {
  [class*="col-"] {
    flex: 1 0 100%;
    max-width: 100%;
  }

  .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 only screen and (max-width: 320px) {
  .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%;
  }
}

.bg-tertiary-color {
  background-color: var(--primary-color);
}

/* GRID SYSTEM */
.grid {
  display: grid;
}

[class*="grid-col-"] {
  display: grid;
  /* gap: 25px; */
  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: 577px) and (max-width: 992px) {
  [class*="grid-col"]:not(.grid-col-3) {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

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

.rgap-0 {
  row-gap: 0;
}

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

.cgap-0 {
  column-gap: 0;
  --spacing: 0;
}

.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 only screen and (max-width: 576px) {
  [class*="gap-"] {
    gap: 2em;
  }
}

/* ADDRESS */
.address {
  font-style: normal;
}

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

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

/* *** PULL YOUR CUSTOM SITE CSS *RULES* BELLOW *** */

/* *** END RULES CSS *** */ /* =============================== HEADER =============================== */

header {
  background-color: #fff;
}
header .logo img {
  display: block;
  margin: 1.75rem auto;
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* 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: 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: var(--grey);
  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: 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 {
  background-color: var(--dark);
}
footer .address strong {
  color: #fff;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
}
footer .address :is(a, span) {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  transition: 0.3s;
}

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

footer .footer__menu nav ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
footer .footer__menu nav ul li {
  display: inline;
  padding-left: 10px;
}
footer .footer__menu nav ul li a {
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
}
footer .footer__menu nav ul li a:hover {
  color: var(--primary-color);
}

footer .social {
  margin-top: 1.75em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
footer .social .social__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  font-size: 18px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
footer .social .social__icons:hover {
  background: #fff;
  color: var(--primary-color);
}

/* LARGE DEVICE */
@media only screen and (max-width: 992px) {
  footer .address * {
    text-align: center;
  }
  footer .footer__menu nav ul {
    align-items: center;
    justify-content: center;
  }
  footer .social {
    justify-content: center;
  }
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  footer .footer__menu nav ul li {
    display: block;
    padding: 0;
  }
  footer .footer__menu nav ul li a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 14px;
    display: block;
    margin: 0 auto;
  }
}

/* SMALL DEVICE */
@media only screen and (max-width: 576px) {
  footer .footer__menu nav ul {
    flex-direction: column;
    width: 100%;
  }
  footer .footer__menu nav ul li {
    max-width: 80%;
    width: 100%;
  }
  footer .footer__menu nav ul li a {
    width: 100%;
    margin: 5px auto;
    border: 1px solid var(--primary-color);
    color: #fff;
    background-color: var(--primary-color);
  }
}

/* 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 */
:is(h1, h2, h3, h4, h5)::first-letter {
  text-transform: uppercase;
}

/* ASIDE */
.mpi-aside .aside__btn {
  display: flex;
  width: 100%;
}
.mpi-aside .aside__contato h2,
.mpi-aside .aside__menu h2 a {
  display: block;
  margin: 0;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 1rem;
  border-radius: 0.25rem;
  background-color: var(--primary-color);
  transition: 0.3s ease-out;
}
.mpi-aside .aside__menu h2 a:focus,
.mpi-aside .aside__menu h2 a:hover {
  letter-spacing: 0.5px;
}
.mpi-aside .aside__menu nav {
  margin: 0.5rem 0;
}
.mpi-aside .aside__menu nav ul li a {
  display: block;
  padding: 0.5rem;
  color: var(--grey);
  font-size: 0.875rem;
  border-left: 2px solid #ccc;
  margin: 0.5rem 0;
  transition: 0.3s ease-out;
}
.mpi-aside .aside__menu nav ul li a.active-menu-aside,
.mpi-aside .aside__menu nav ul li a:focus,
.mpi-aside .aside__menu nav ul li a:hover {
  color: var(--primary-color);
  border-color: currentColor;
  background-color: var(--light);
}
.mpi-aside .aside__menu nav ul li a.active-menu-aside {
  font-weight: 700;
}
.mpi-aside .aside__contato {
  text-align: center;
}
.mpi-aside .aside__contato a {
  color: var(--dark);
  display: block;
  margin: 10px;
  transition: 0.3s ease-out;
}
.mpi-aside .aside__contato a:focus,
.mpi-aside .aside__contato a:hover {
  color: var(--primary-color);
}

/* SAIBA MAIS */
.more {
  margin-bottom: 20px;
}
.more h2 strong {
  font-size: 16px;
}

/* GALLERY */
p.alerta {
  font-weight: 700;
}

.mpi-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 10px;
}
.mpi-gallery li {
  border-radius: 3px;
  overflow: hidden;
}
.mpi-gallery li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.mpi-gallery li a::before {
  content: "\f002";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 20px;
  opacity: 0;
  transition: 0.3s;
  color: #fff;
  font-size: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.mpi-gallery li:hover a::before {
  padding-top: 0;
  opacity: 1;
}
.mpi-gallery li img {
  z-index: 2;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* PAGINAS RELACIONADAS */
.related-posting .related-posting__row {
  clear: both;
  display: block;
  background: #eee;
  border-left: 3px solid #ccc;
  padding: 10px 20px;
  transition: all 0.3s linear;
  min-height: 85px;
  margin: 0 0 2px 0;
  overflow: hidden;
}
.related-posting .related-posting__row:hover {
  border-color: var(--dark);
}
.related-posting .related-posting__row img {
  display: block;
  border: 1px solid #ccc;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.related-posting__cover {
  width: 100%;
  height: 100%;
}
.related-posting__title {
  text-align: left;
  font-size: 16px;
  text-transform: uppercase;
}

/* ORGANICTABS REGIOES */
.organictabs--regioes {
  margin: 10px 0;
}
.organictabs--regioes .organictabs__menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.organictabs--regioes.brasil .organictabs__menu {
  grid-template-columns: repeat(auto-fit, minmax(35px, 1fr));
}
.organictabs--regioes .organictabs__menu span {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccc;
  color: var(--dark);
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.organictabs--regioes.brasil .organictabs__menu span {
  height: 40px;
  font-size: 10px;
  font-weight: bold;
}
.organictabs--regioes .organictabs__menu span.active-tab {
  background-color: var(--dark);
  color: #fff;
}
.organictabs--regioes .organictabs__content {
  padding: 20px;
  background-color: #eee;
  overflow: hidden;
  padding: 10px;
}
.organictabs--regioes .organictabs__content ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 7px;
}
.organictabs--regioes .organictabs__content ul li {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
  color: var(--dark);
}

/* COPYRIGHT */
.copyright {
  font-size: 10px;
  color: #999;
  margin-bottom: 15px;
}
.copyright a {
  font-size: 10px;
  color: #999;
}

/* Contact */

/* FORMULÁRIO */
.form--contato :is(input, textarea, select) {
  padding: 0.875rem 1rem;
  margin: 0.5rem 0 0;
  border-width: 2px;
  border-color: #0004;
}
.form--contato input#anexo {
  padding: 0.72rem 1rem;
}
.form--contato select {
  line-height: 100%;
  padding: 0.813rem 1rem;
}
.form--contato label {
  text-transform: uppercase;
}
.form--contato [type="submit"] {
  position: relative;
  min-width: fit-content;
  padding: 0.875rem 1.5rem;
  color: var(--grey);
  font-size: 0.875rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #0004;
  border-radius: 0.25rem;
  background-color: transparent;
  transition: var(--transition);
}
.form--contato [type="submit"]:hover {
  color: #fff;
  background-color: transparent;
  border-color: var(--primary-color);
}
.form--contato [type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
  z-index: -1;
  opacity: 0;
}
.form--contato [type="submit"]:hover::before {
  width: 100%;
  opacity: 1;
}
.form--contato [type="submit"]:active,
.form--contato [type="submit"]:focus {
  color: #fff;
  border-color: var(--dark);
}
.form--contato [type="submit"]:active::before,
.form--contato [type="submit"]:focus::before {
  background-color: var(--dark);
  width: 100%;
  opacity: 1;
}

/* INFORMAÇÕES DE CONTATO */
.contato .contato__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}
.contato .contato__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  padding: 1em;
  color: #fff;
  font-size: 1.5rem;
  background-color: var(--primary-color);
  border-radius: 999px;
  transition: var(--transition);
  outline: transparent solid 2px;
}
.contato .contato__icon:hover {
  background-color: var(--secondary-color);
  outline-color: var(--secondary-color);
  outline-offset: 0.375rem;
}
.contato .contato__info .info__title {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
}
.contato .contato__info :is(span, a):not(.social__link, .roll) {
  display: block;
  color: var(--grey);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: var(--transition);
  word-break: break-all;
}
.contato .contato__info a:hover {
  color: var(--primary-color);
}
.contato .contato__info a:active,
.contato .contato__info a:focus {
  color: var(--primary-color);
  text-decoration: underline;
}
.contato .contato__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.contato .social__link {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
  color: var(--grey);
  transition: var(--transition);
}
.contato .social__link .roll {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  text-align: center;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.contato .social__link:hover,
.contato .social__link:hover .roll {
  color: #fff;
}
.contato .social__link:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}
.contato .social__link .roll:first-child {
  transform: translate(-50%, -50%);
}
.contato .social__link .roll:last-child {
  transform: translate(-50%, 100%);
}
.contato .social__link:hover .roll:first-child {
  top: 0;
  transform: translate(-50%, -100%);
}
.contato .social__link:hover .roll:last-child {
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 576px) {
  .contato__left {
    order: 1;
  }
}

/* SEARCH */

.search-content {
  opacity: 0;
  transition: opacity 0.2s 0.2s;
}
.search-content.search-active {
  opacity: 1;
}
.search-content .no-results {
  margin: 0 0 2rem;
  font-size: 1.125rem;
}
.search-content ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.875rem;
}
.search-content li a {
  appearance: button;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: #fff 4px 4px 0 0, var(--primary-color) 4px 4px 0 1px;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding: 0.75rem 2.5rem;
  text-align: center;
  user-select: none;
  transition: 0.3s;
}
.search-content li a:not([disabled]):active,
.search-content li a:not([disabled]):focus,
.search-content li a:not([disabled]):hover {
  box-shadow: unset;
  transform: translate(3px, 3px);
}
.search-content li a:not([disabled]):active,
.search-content li a:not([disabled]):focus {
  background-color: var(--grey);
}
@media screen and (min-width: 576px) {
  .search-content ul {
    flex-flow: row wrap;
  }
}

/* Blog */
.entry-header .entry-title {
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.6px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 1.3;
}

@media screen and (min-width: 940px) {
  .entry-header .entry-title {
    font-size: 32px;
    line-height: 1.5;
  }
}

#blog .blog-list .list-article {
  border-top: 1px solid #e9e9e9;
  padding: 25px 0px;
}

#blog .blog-list .list-article-thumb {
  float: left;
  margin-right: 30px;
}

#blog .blog-list .list-article-thumb a img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 940px) {
  #blog .blog-list .list-article-thumb {
    display: none;
  }
}

@media screen and (max-width: 720px) {
  #blog .blog-list .list-article-thumb {
    width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 30px;
    display: block;
  }

  #blog .blog-list .list-article-thumb img {
    width: 100%;
    border-radius: var(--border-radius);
  }
}

#blog .blog-list .list-article-content {
  float: none;
  overflow: hidden;
}

#blog .blog-list .list-article-meta {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

#blog .blog-list .entry-title {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
}

#blog .blog-list .entry-title a:hover {
  text-decoration: none;
}

#blog .blog-list .entry-excerpt p {
  margin-bottom: 0px;
}

#blog .blog-list .site-main .list-article:first-of-type {
  border-top: none;
  padding-top: 0px;
}

#blog .wp-post-image {
  max-width: 300px;
  height: 150px;
  object-fit: cover;
}

#blog .button-paged {
  background-color: var(--primary-color);
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 0.875em;
  line-height: 1.3;
  min-height: calc((0.875em * 3) * 1.3);
  justify-content: center;
  margin: 0;
  padding: 0.5em 0.75em;
  text-align: center;
  color: #fff;
  border-radius: var(--border-radius);
}

/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 2rem;
  line-height: 1;

  opacity: 0.75;
  color: var(--primary-dark-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "❰";
}

[dir="rtl"] .slick-prev:before {
  content: "❱";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "❱";
}

[dir="rtl"] .slick-next:before {
  content: "❰";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}

.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: var(--primary-color);
  border: 0;
  outline: none;
  background: var(--primary-color);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: var(--primary-dark-color);
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 1rem;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--primary-color);
}

/* ESTATISTICAS */

.estatisticas__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 32px;
}

.estatisticas__icon {
  display: flex;
  justify-content: center;
}

.estatisticas__icon i {
  color: #fff;
  font-size: 50px;
}

.estatisticas__number {
  color: #fff;
  text-align: center;
  font-size: 50px;
}

.estatisticas__text {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.estatisticas-home__title {
  border-bottom: 2px solid var(--primary-color);
  text-align: center;
  margin: 0 0 24px 0;
  padding-bottom: 24px;
  font-size: 20px;
  letter-spacing: 2px;
}

.estatisticas-home__button {
  background-color: var(--primary-color);
  color: #fff;
  display: block;
  width: fit-content;
  margin: 0 auto 36px auto;
  padding: 16px 32px;
  border-radius: 4px;
  transition: 0.3s;
}

.estatisticas-home__button:hover {
  background-color: var(--dark);
}

/* FIM ESTATISTICAS */

* GAP FOR ** DISPLAY GRID ** ELEMENTS */ .grid-gap-0 {
  gap: 0;
}

.grid-gap-10 {
  gap: 10px;
}

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

.grid-gap-30 {
  gap: 30px;
}

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

.grid-gap-50 {
  gap: 50px;
}

.grid-gap-60 {
  gap: 60px;
}

.grid-gap-70 {
  gap: 70px;
}

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

.grid-gap-90 {
  gap: 90px;
}

.grid-gap-100 {
  gap: 100px;
}

[class*="grid-col-"] {
  padding: 0 !important;
  float: none !important;
}

/* MEDIUM DEVICE */
@media only screen and (max-width: 768px) {
  [class*="grid-gap-"]:not(.grid-gap-0) {
    gap: 1.5em;
  }
}

/* SMALL DEVICE TO LARGE DEVICE */
@media only screen and (min-width: 577px) and (max-width: 992px) {
  [class*="grid-col"]:not(.grid-col-3) {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* INFORMAÇÕES HOME */

.informacoes-home {
  padding: 30px 0;
}

.informacoes-home__title {
  font-size: 20px;
  letter-spacing: 2px;
}

.informacoes-carousel .slick-prev,
.informacoes-carousel .slick-next {
  top: -30px;
  background-color: var(--primary-color);
  width: initial;
  height: initial;
  padding: 10px;
}

.informacoes-carousel .slick-prev::before,
.informacoes-carousel .slick-next::before {
  color: #fff;
}

.informacoes-carousel .slick-prev {
  right: 40px;
  left: initial;
}

.informacoes-carousel .slick-next {
  right: 0;
  left: initial;
}

.card-mpi {
  margin: 10px;
  box-shadow: 0 0 4px #999;
  overflow: hidden;
  border-radius: 4px;
}

.card-mpi * {
  box-sizing: border-box;
}

.card-mpi__image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card-mpi__title {
  width: 100%;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  transition: 0.3s;
}

.card-mpi:hover .card-mpi__title {
  background-color: var(--dark);
}

/* FIM INFORMAÇÕES HOME */

/* DEPOIMENTOS */

.depoimentos {
  margin: 48px 0;
}

.depoimentos__title {
  font-size: 32px;
  text-align: center;
  margin: 0 0 48px 0;
}

.depoimentos__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.depoimentos__side-info {
  width: calc(25% - 25px);
}

.depoimentos__carousel {
  width: calc(75% - 25px);
}

.depoimentos__side-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.depoimentos__side-title {
  text-align: center;
  margin: 0;
  font-size: 24px;
}

.depoimentos__overall-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.depoimentos__overall-rating i {
  color: #f6bb06;
  font-size: 28px;
}

.depoimentos__side-image {
  display: block;
  width: 100%;
  max-width: 110px;
  height: auto;
}

/* .depoimentos__carousel {
  padding: 0 16px 8px 16px;
} */

.depoimentos__carousel > .slick-list .slick-slide > div {
  margin-right: 12px;
}

.depoimentos__carousel .slick-arrow {
  display: none !important;
}

.depoimentos__item {
  position: relative;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  background-color: var(--light);
  padding: 20px;
  border-radius: 4px;
  height: 190px;
}

.depoimentos__carousel .slick-track {
  display: flex !important;
}

.depoimentos__carousel .slick-slide {
  height: inherit !important;
}

.depoimentos__google-icon {
  position: absolute;
  right: 8px;
  top: 8px;
  display: block;
  width: auto;
  height: 20px;
}

.depoimentos__item-heading {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}

.depoimentos__item-cover {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.depoimentos__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depoimentos__heading-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.depoimentos__heading-title {
  margin: 0;
  font-size: 14px;
}

.depoimentos__item-date {
  font-size: 12px;
  margin: 0;
}

.depoimentos__item-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.depoimentos__item-rating i {
  color: #f6bb06;
  font-size: 12px;
}

.depoimentos__item-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.depoimentos__text {
  margin: 0;
  font-size: 14px;
  color: #000;
}

@media only screen and (max-width: 768px) {
  .depoimentos__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .depoimentos__side-info,
  .depoimentos__carousel {
    width: 100%;
  }
}

/* FIM DEPOIMENTOS */

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;

  position: absolute;
  top: 50%;

  display: block;

  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 2rem;
  line-height: 1;

  opacity: 0.75;
  color: var(--primary-dark-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "❰";
}

[dir="rtl"] .slick-prev:before {
  content: "❱";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "❱";
}

[dir="rtl"] .slick-next:before {
  content: "❰";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}

.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: var(--primary-dark-color);
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 1rem;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: var(--primary-color);
}

/* INFORMAÇÕES HOME */

.informacoes-home {
  padding: 30px 0;
}

.informacoes-home__title {
  font-size: 20px;
  letter-spacing: 2px;
}

.informacoes-carousel > .slick-list .slick-slide > div {
  margin-right: 12px;
}

.informacoes-carousel .slick-prev,
.informacoes-carousel .slick-next {
  top: -30px;
  background-color: var(--primary-color);
  width: initial;
  height: initial;
  padding: 10px;
}

.informacoes-carousel .slick-prev::before,
.informacoes-carousel .slick-next::before {
  color: #fff;
}

.informacoes-carousel .slick-prev {
  right: 40px;
  left: initial;
}

.informacoes-carousel .slick-next {
  right: 0;
  left: initial;
}

.card-mpi {
  margin: 10px;
  box-shadow: 0 0 4px #999;
  overflow: hidden;
  border-radius: 4px;
}

.card-mpi * {
  box-sizing: border-box;
}

.card-mpi__image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.card-mpi__title {
  width: 100%;
  height: 50px;
  background-color: var(--primary-color);
  color: #fff;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  transition: 0.3s;
}

.card-mpi:hover .card-mpi__title {
  background-color: var(--dark);
}

/* FIM INFORMAÇÕES HOME */

/* =========================================================================
   Estilos para a Página 404
   ========================================================================= */

.main-404 {
    padding: 60px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-404-content {
    background: #f9f9f9;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.error-404-title {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 28px;
    margin: 10px 0 20px;
    color: #333;
}

.error-404-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.error-404-search {
    margin-bottom: 30px;
}

.error-404-search .search-form {
    display: flex;
    justify-content: center;
}

.error-404-search .search-field {
    width: 100%;
    max-width: 350px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}

.error-404-search .search-submit {
    padding: 12px 20px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
}

.error-404-actions .button-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.error-404-actions .button-primary:hover {
    background-color: #333;
}

.error-404-recent-posts {
    margin-top: 40px;
    text-align: left;
}

.error-404-recent-posts h3 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #555;
}

.error-404-recent-posts ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
}

.error-404-recent-posts ul li {
    margin-bottom: 10px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}

.error-404-recent-posts ul li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--primary-color);
}

.error-404-recent-posts ul li a:hover {
    background: #f5f5f5;
}

/* =========================================================================
   Estilos para o Menu Dropdown (Sub-itens)
   ========================================================================= */

/* Garante que o item pai tenha posicionamento relativo */
.nav-menu li.menu-item-has-children {
    position: relative;
}

/* O container do sub-menu (dropdown) */
.nav-menu .sub-menu {
    display: none; /* Escondido por padrão */
    position: absolute;
    top: 100%; /* Aparece logo abaixo do item pai */
    left: 0;
    background-color: #fff;
    min-width: 220px;
    z-index: 1000;
    list-style: none;
    max-height: 70vh!important;
    overflow: auto;
    padding: 10px 0;
    margin: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mostra o sub-menu quando o mouse passa sobre o item pai */
.nav-menu li.menu-item-has-children:hover > .sub-menu {
    display: block;
}

/* Estilo dos links dentro do dropdown */
.nav-menu .sub-menu li {
    width: 100%;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-menu .sub-menu li a:hover {
    background-color: var(--light);
    color: var(--primary-color);
}

/* Estilo da setinha indicadora de dropdown */
.nav-menu .menu-item-has-children > a .fa-caret-down {
    margin-left: 5px;
    font-size: 0.8em;
}
/* =========================================================================
   ESTRUTURA DO SINGLE POST (GRID E SIDEBAR STICKY)
   ========================================================================= */

.post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 320px; 
    gap: 40px;
    align-items: flex-start; /* Alinha os itens no topo */
    margin-top:20px;
}

/* Coluna principal e sidebar */
.post-main-content,
.post-sidebar {
    min-width: 0; 
}

/* EFEITO STICKY NA SIDEBAR */
.post-sidebar {
    position: -webkit-sticky; /* Para compatibilidade com Safari */
    position: sticky;
    top: 20px; /* Distância do topo que a sidebar vai "travar" */
}

/* Deixa o layout responsivo em telas menores (celular) */
@media (max-width: 900px) {
    .post-layout-grid {
        grid-template-columns: 1fr; /* Coluna única */
    }
    .post-sidebar {
        position: static; /* Desativa o efeito sticky no mobile */
        margin-top: 40px;
    }
}


/* =========================================================================
   ESTILOS DA SIDEBAR (Widgets, Formulário, etc.)
   ========================================================================= */

.sidebar-widget {
    background: #f9f9f9;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}
.sidebar-widget .widget-title {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}
/* Lista de posts recentes na sidebar */
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li { margin-bottom: 10px; border-bottom: 1px dotted #ccc; padding-bottom: 10px; }
.sidebar-widget ul li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-widget ul li a { text-decoration: none; color: #333; }
.sidebar-widget ul li a:hover { color: var(--primary-color); }

/* Formulário de Contato na sidebar */
.post-sidebar .wpcf7-form p { margin-bottom: 15px; }
.post-sidebar .wpcf7-form label { display: none; }
.post-sidebar .wpcf7-form input,
.post-sidebar .wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}
.post-sidebar .wpcf7-form .wpcf7-submit {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.post-sidebar .wpcf7-form .wpcf7-submit:hover { background: var(--dark); }


/* =========================================================================
   SEÇÕES DENTRO DA COLUNA PRINCIPAL (Relacionados e Comentários)
   ========================================================================= */

/* Estilos para Posts Relacionados */
.related-mpi-posts { margin-top: 50px; padding-top: 30px; border-top: 2px solid #f0f0f0; }
.related-mpi-posts h2 { text-align: center; font-size: 24px; margin-bottom: 30px; }
.related-mpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.related-mpi-card { display: block; text-decoration: none; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.related-mpi-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.related-mpi-card-image { width: 100%; height: 150px; object-fit: cover; display: block; }
.related-mpi-card-title { font-size: 16px; color: #333; padding: 15px; margin: 0; line-height: 1.4; }

/* Estilos para a Seção de Comentários */
.comments-area { margin-top: 50px; padding-top: 30px; border-top: 2px solid #f0f0f0; }
.comments-title { font-size: 24px; margin-bottom: 30px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.comment-list .comment { padding: 20px; margin-bottom: 20px; background: #fdfdfd; border: 1px solid #e9e9e9; border-radius: var(--border-radius); }
.comment-list .comment-body { display: grid; gap: 20px; }
.comment-author .avatar { border-radius: 50%; }
.comment-author .fn { font-weight: bold; font-style: normal; color: var(--primary-color); }
.comment-meta { font-size: 13px; color: #888; }
.comment-meta a { color: #888; text-decoration: none; }
.comment-content { margin-top: 10px; line-height: 1.6; }
.reply a { font-size: 13px; font-weight: bold; color: var(--secondary-color); text-decoration: none; background: #f0f0f0; padding: 5px 10px; border-radius: 4px; }
.reply a:hover { background: var(--primary-color); color: #fff; }
.comment-list .children { list-style: none; padding: 0; margin-top: 20px; margin-left: 30px; }
.comment-respond { padding: 30px; background: #f9f9f9; border: 1px solid #eee; border-radius: var(--border-radius); }
.comment-reply-title { font-size: 20px; margin-top: 0; margin-bottom: 20px; }
.comment-form p { margin-bottom: 15px; }
.comment-form label { display: block; font-weight: bold; margin-bottom: 5px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; }
.comment-form .form-submit .submit { background: var(--primary-color); color: #fff; border: none; padding: 12px 25px; border-radius: 4px; font-size: 16px; cursor: pointer; }
.comment-form .form-submit .submit:hover { background: var(--dark); }
.comments-title { font-size: 24px; margin-bottom: 30px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.artigo-principal{
  width: 100%;
}

.post-sidebarFix{
  width: 100%!important;
  top:100px!important;
}

/* =========================================================================
   Estilos para o Lazy Load do Google Maps
   ========================================================================= */

/* O placeholder que fica sobre o iframe vazio */
.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Esconde o placeholder quando o mapa começa a carregar */
.map-placeholder.is-loading {
    opacity: 0;
    pointer-events: none; /* Desativa o clique depois do primeiro */
}

.map-placeholder-content {
    text-align: center;
}

.load-map-button {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 16px;
}

.load-map-button:hover {
    background: var(--dark);
}

.load-map-button .fa-map-marker-alt {
    margin-right: 8px;
}
 
.post-recente-resumo {

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; 
    max-height: 110px; 
    margin-bottom:10px;
}

.post-recente-titulo{
  margin-bottom:10px;
}

section.secao-posts-recentes {
    margin-bottom: 40px;
}

/* =========================================================================
   Estilos para a Nova Página "Quem Somos"
   ========================================================================= */

/* Seção Herói */
.about-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-hero-text h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.about-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}
.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-hero-image .image-placeholder {
    width: 100%;
    height: 350px;
    background-color: #e9ecef;
    border-radius: 8px;
}

/* Seção de Valores */
.about-values {
    padding: 60px 0;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.value-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.value-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}
.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Seção de Conteúdo Principal */
.about-main-content {
    padding: 60px 0;
}
.about-main-content .wrapper {
    max-width: 800px; /* Deixa o texto principal mais estreito e legível */
}

/* Responsividade */
@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }
    .about-hero-image {
        grid-row: 1; /* Coloca a imagem no topo no mobile */
    }
}
@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   Estilos para a Seção de Posts Recentes (Layout GRID ESPECÍFICO 4 POSTS)
   ========================================================================= */
.recent-posts-custom-grid-section { padding: 60px 0; }
.recent-posts-custom-grid-section .section-header { text-align: center; margin-bottom: 50px; }
.recent-posts-custom-grid-section .section-title { font-size: 36px; color: var(--dark); margin-bottom: 10px; }
.recent-posts-custom-grid-section .section-subtitle { font-size: 18px; color: #6c757d; max-width: 600px; margin: 0 auto; }


.recent-posts-custom-grid {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-template-rows: 50% 1fr;
    gap: 10px;
    height: 500px;
}

/* Posicionamento dos Itens no Grid */
.post-item-large {
    grid-column: 1 / 2; /* Ocupa a primeira coluna */
    grid-row: 1 / 3;
   /* Ocupa da linha 1 até a 3 (ou seja, as duas linhas) */
}
.post-item-medium {
    grid-column: 2 / 3; /* Ocupa a segunda coluna */
    grid-row: 1 / 2;
    /* Ocupa a primeira linha */
}
/* Container dos 2 posts pequenos */
.small-posts-wrapper {
    grid-column: 2 / 3; /* Ocupa a segunda coluna */
    grid-row: 2 / 3;    /* Ocupa a segunda linha */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Cria 2 colunas internas para os posts pequenos */
    gap: 30px;
   
}


/* Estilo Geral dos Cards (comum a todos) */
.post-item-large, .post-item-medium, .post-item-small {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
     width: 100%;
}
.post-grid-thumbnail, .post-grid-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.post-grid-thumbnail img, .placeholder-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-item-large:hover img, .post-item-medium:hover img, .post-item-small:hover img { transform: scale(1.05); }
.placeholder-image { background-color: #e9ecef; }
.post-grid-overlay { background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%); z-index: 1; }
.post-grid-content { position: relative; z-index: 2; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; color: #fff; }
.post-grid-category a { background: var(--primary-color); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; text-decoration: none; display: inline-block; }
.post-grid-title { margin: 10px 0 0 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
.post-grid-title a { color: #fff; text-decoration: none; }


/* Ajustes de Fonte para cada tamanho */
.post-item-large .post-grid-title { font-size: 28px; }
.post-item-medium .post-grid-title { font-size: 22px; }
.post-item-small .post-grid-title { font-size: 16px; }
.post-item-small .post-grid-content { padding: 15px; }


/* Responsivo */
@media (max-width: 768px) {
    .recent-posts-custom-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .small-posts-wrapper {
        display: flex;
        flex-direction: column;
    }
    .post-item-large, .post-item-medium, .post-item-small {
        min-height: 250px; /* Altura mínima para todos no mobile */
    }
}

.wp-block-list > li {
  
  list-style: disc;
  margin-left: 20px;
  line-height: 1.6em;
}
.post-meta > span:first-child {
  font-size: 16px;
  font-style: italic;
  color:var(--secondary-color);
  
}
.post-meta > span  {
  font-size: 16px;
  font-style: italic;
  color:var(--primary-color);
  
}

/* =========================================================================
   Estilos para a Seção CTA Parallax
   ========================================================================= */

.cta-parallax-section {
    position: relative;
    padding: 100px 0;
    width: 100%;
    
    /* O Efeito Parallax */
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    
    z-index: 1;
}

/* O Overlay (sombra 0.4) */
.cta-parallax-section .cta-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1; /* Fica atrás do conteúdo */
}

.cta-parallax-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cta-parallax-section .cta-title {
    font-size: 38px;
    font-weight: 700;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    margin-top: 0;
    margin-bottom: 30px;
}

.cta-parallax-section .cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-parallax-section .cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Em style.css */

/* Overlay para o menu mobile */
.mobile-dark-overlay {
    display: none; /* Começa escondido */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 998; /* Z-index menor que o do menu */
}

/* =========================================================================
   Estilos para o Formulário da Sidebar (single.php)
   ========================================================================= */

.sidebar-form p {
    margin-bottom: 15px;
}

.sidebar-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.sidebar-form input[type="text"],
.sidebar-form input[type="email"],
.sidebar-form input[type="tel"],
.sidebar-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box; /* Garante que o padding não aumente a largura */
}

.sidebar-form .btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sidebar-form .btn-submit:hover {
    background: var(--dark);
}
/* =========================================================================
   Estilos para Mensagens de Feedback de Formulário
   ========================================================================= */

.form-feedback-message {
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    border: 1px solid;
    font-size: 16px;
}

.form-feedback-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.form-feedback-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}
/* =========================================================================
   Estilos para a Página de Resultados de Pesquisa
   ========================================================================= */

.search-results-page .wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Formulário de busca no topo da página */
.search-form-container {
    margin-bottom: 40px;
}
.search-form-container .search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}
.search-form-container .search-field {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
}
.search-form-container .search-submit {
    padding: 12px 20px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

/* Container da Grade de Cards */
.search-results-container .card-group {
    display: grid;
    /* Cria colunas que se ajustam automaticamente */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Estilo do card (reaproveita o estilo da sua seção de informações) */
.card.card--mpi {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card.card--mpi:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.card__title {
    font-size: 18px;
    color: var(--dark);
    padding: 20px;
    margin: 0;
    flex-grow: 1; /* Garante que os cards tenham a mesma altura */
}

/* Mensagem de "Nenhum resultado" */
.no-results-found {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
}
.no-results-found h2 {
    margin-top: 0;
}

h3.cardNew {
    color: var(--primary-color) !important;
}