:root {
  --body-strong: 700;
  --body-xs: 12px;
  --body-default: 16px;
  --body-lg: 1.125rem;
  --heading-hero: 44px;
  --heading-xl: 40px;
  --heading-lg: 32px;
  --heading-md: 28px;
  --heading-sm: 24px;
  --heading-xs: 20px;
  --heading-xxs: 16px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-round: 50%;
  --color-default: #1D9791;
  --color-secondary-orange: #F5CA3C;
  --border-neutral: #E6E6E6;
  --background-color-default: #1D9791;
  --background-color-light: #E8F1F5;
  --background-color-white: #ffffff;
  --background-color-alert: #F5CA3C;
}

.color-brand-default {
  color: var(--color-default);
}

.background-color-brand-contrast {
  background: var(--wp--preset--color--contrast);
}

.background-color-brand-700 {
  background: var(--wp--preset--color--primary-700);
}

.strong {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.justify-space-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-yellow {
  color: var(--color-secondary-orange);
  font-weight: 700;
}

.box-shadow {
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}

.transition,
.attachment-transition {
  transition: all .3s ease-in-out;
}

img {
  width: 100%;
  height: auto;
}

.site-main,
.home,
.hero,
body {
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: .003s;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    /* -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0); */
  }

  100% {
    opacity: 1;
    /* transform: none; */
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  transition: all .3s ease-in-out;
  background: var(--wp--preset--color--base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 24px;
  line-height: 1.4;
}


/* GRID */

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
  position: relative;
}

.grid-row,
.row-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}

.grid-item {
  /* height: 250px; */
  /* flex-basis: 100%; */
  /* -ms-flex: auto; */
  /* width: 250px; */
  /* position: relative; */
  /* padding: 8px 16px; */
  /* box-sizing: border-box; */
}

@media (min-width: 576px) {

  .container-sm,
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1024px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container {
    max-width: 1296px;
  }

  .grid-item.grid-half {
    flex-basis: 50%;
  }

  .grid-item.grid-3x4 {
    flex-basis: 80%;
  }

  .grid-item.grid-3 {
    flex-basis: 33.33%;
  }

  .grid-item.grid-4 {
    flex-basis: 25%;
  }

  .grid-item.grid-5 {
    flex-basis: 20%;
  }

  .grid-item.grid-6 {
    flex-basis: 16.6%;
  }
}

@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {

  .container-xxl,
  .container-xl {
    max-width: 1500px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  /* margin-top: var(--bs-gutter-y); */
}

.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  padding-left: 0;
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto>* {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1>* {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2>* {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3>* {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4>* {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5>* {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6>* {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}


/* HEADER */

#header-box {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10000;
  background: white;
  box-shadow: 1px 6px 14px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 1px 6px 14px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 1px 6px 14px 0px rgba(0, 0, 0, 0.14);
  transition: all .3s ease-in-out;
}

#header-box.is-scrolling {
  width: 100%;
  position: fixed;
  transform: translate(0%, 0%);
  transition: all .3s ease-in-out;

}

.header,
.menu>ul,
#menu-menu-principal {
  display: flex;
  flex-wrap: wrap;
}

.mobile #menu-menu-principal {
  flex-direction: column;
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.mobile #menu-menu-principal::before {
  content: 'MENU';
  font-size: 1.125rem;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--wp--preset--color--contrast);
}

.header-menu {
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0px 4px 40px 10px rgba(0, 0, 0, 0.1);
  ;
}

#site-title {
  text-indent: -10000000px;
  margin: 0;
  height: 1px;
}

/* menu */
.menu-menu-principal-container,
.menu-menu-principal,
.menu-item {
  display: flex;
  align-items: center;
}

.mobile .menu-item {
  justify-content: start;
  margin-bottom: 16px;
}

.mobile .btn-primary.menu-item {
  justify-content: center;
  background: none;
  border: 2px solid #fff;
  margin-top: 24px;
}

.menu-rodape-container .menu-item {
  justify-content: start;
}

.menu-rodape-container .menu-item.current-menu-item a,
.menu-rodape-container .menu-item.menu-item-object-produtos-stock a span {
  color: #fff;
  transition: all .3s ease-in-out;
}

.no-mobile #menu-menu-principal>.menu-item:last-child {
  margin-left: 24px;
  margin-right: 0;
}

.menu-item {
  position: relative;
}

.menu-item a {
  margin: 0 12px;
  transition: all .3s ease-in-out;
  font-weight: 500;
}

.menu-item a:hover,
.menu-rodape-container .menu-item.menu-item-object-produtos-stock a:hover span {
  font-weight: 700;
  color: var(--color-default);
  transition: all .3s ease-in-out;
}

.menu-item.menu-item-131 a:hover{
  color: #fff;
}


.mobile .menu-item a {
  color: #fff;
  margin: 0;
}

.current-menu-item a,
.current-menu-ancestor>a,
.current_page_parent>a,
.produtos-stock-template-default #menu-item-213>a,
.single-produtos-stock .menu-item-object-produtos-stock a,
.single-linhas-especiais .menu-item-object-linhas-especiais a,
.tax-produtos_categories .menu-item-object-produtos-stock a {
  font-weight: 700;
  color: var(--color-default);
}

.mobile #menu-rodape .current-menu-item a,
.mobile #menu-rodape .current-menu-ancestor>a,
.mobile #menu-rodape .current_page_parent>a,
.mobile #menu-rodape .produtos-stock-template-default #menu-item-213>a,
.mobile #menu-rodape .single-produtos-stock .menu-item-object-produtos-stock a,
.mobile #menu-rodape .tax-produtos_categories .menu-item-object-produtos-stock a {
  color: var(--wp--preset--color--primary-500);
}

.mobile .current-menu-item a,
.mobile .current-menu-ancestor>a,
.mobile .current_page_parent>a,
.mobile .produtos-stock-template-default #menu-item-213>a,
.mobile .single-produtos-stock .menu-item-object-produtos-stock a,
.mobile .tax-produtos_categories .menu-item-object-produtos-stock a {}

.current-menu-item>.sub-menu li a,
.post-type-archive-produtos-stock #menu-item-214.current_page_parent>a,
.post-type-archive-produtos-stock #menu-item-950.current_page_parent>a,
.single-produtos-stock #menu-item-950.current_page_parent>a,
.post-type-archive-linhas-especiais #menu-item-950.current_page_parent>a,
.single-linhas-especiais #menu-item-950.current_page_parent>a,
.term-linhas-especiais #menu-item-950.current_page_parent>a,
.produtos-stock-template-default #menu-item-214.current_page_parent>a,
.tax-produtos_categories #menu-item-123.current_page_parent>a,
.tax-produtos_categories.term-linhas-especiais .menu-item-object-produtos-stock a,
.search #menu-item-950.current_page_parent>a,
.tax-produtos_categories #menu-item-950.current_page_parent>a,
.error404 #menu-item-950.current_page_parent>a{
  font-weight: 500;
  color: var(--wp--preset--color--contrast);
}

.sub-menu {
  display: none;
  position: absolute;
  width: 140px;
  left: -0;
  background-color: #fff;
  z-index: 1;
  top: 100%;
}

.menu-item:hover .sub-menu {
  display: block;
}

.sub-menu>.menu-item a {
  display: block;
  padding: 16px 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid #eaeaea;
}

.sub-menu>.menu-item:last-child a {
  border-bottom: 0;
}

/* Menu*/
.no-mobile .menu-icon,
.no-mobile .menu-icon .navicon:before,
.no-mobile .menu-icon .navicon:after {
  display: none;
  opacity: 0;
  width: 1;
  height: 1;
  overflow: hidden;
}

.menu-label {
  margin-inline-end: 8px;
  font-family: var(--font-family-title)
}

.menu-icon {
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 24px 16px;
  position: absolute;
  user-select: none;
  z-index: 300;
  top: 8px;
  right: 20px;
}

.menu-icon .navicon {
  background: var(--background-color-default);
  display: block;
  height: 4px;
  border-radius: 4px;
  position: relative;
  transition: background .2s ease-out;
  width: 32px
}

.menu-icon .navicon:before,
.menu-icon .navicon:after {
  background: var(--background-color-default);
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
  border-radius: 4px
}

.menu-icon .navicon:before {
  top: 10px
}

.menu-icon .navicon:after {
  top: -10px;
}

.menu-btn {
  display: none;
}

.mobile .menu-btn:checked~.menu-menu-principal-container {
  transform: translateX(0);
  z-index: 200;
  overflow-y: scroll;
}

.menu-btn:checked~.menu-icon .navicon {
  background: #fff0;
}

.menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  top: 0;
  background: var(--background-color-default);
}

.mobile .menu-menu-principal-container {
  clear: both;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  top: 80px;
  right: 0;
  padding: 80px 40px 24px 40px;
  background: var(--green-dark);
  transform: translateX(160%);
  transition: all .5s ease-in-out;
  position: fixed;
  z-index: 200;
  background: var(--background-color-default);
  justify-content: start;
  align-items: start;
  animation: fadeInAnimation ease 2s;
  animation-fill-mode: forwards;
}

/* slider home*/
.mobile .hero-top img {
  display: none;
}

.title_slider {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--wp--preset--color--primary-600);
  margin-bottom: 16px;
}

.description_slider {
  margin-bottom: 40px;
}

.owl-dots,
.owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent
}

.owl-nav {
  margin-top: 10px
}

.owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px
}

.owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px 4px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: all .2s ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  width: 16px;
  background: var(--background-color-default);
}

@media (min-width: 768px) {

  .title_slider,
  .description_slider,
  .hero-top .item .button {
    padding-left: 40px;
  }
}

/* slider fornecedores */
.fornecedores {
  padding: 40px 0 64px 0;
}

.title-scetion-fornecedores {
  font-size: var(--wp--preset--font-size--medium);
  margin-bottom: 24px;
}

.fornecedores-slider .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fornecedores-slider .item img {
  max-width: 180px;
}

/* Página Fornecedores */
.row-fornecedores img{
  max-width: 180px;
}


/* BTN */

.button {
  display: inline-flex;
}

.button.button-group {
  margin: 24px 0;
}

.btn-text-white {
  color: #fff;
}

.btn {
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
}

.btn:hover {
  background: var(--wp--preset--color--primary-600);
  color: #fff;
}

.btn-primary {
  background: var(--wp--preset--color--primary-500);
  color: #fff;
}

.btn-secondary {
  border: 2px solid var(--color-default);
  color: var(--color-default);
}

.btn-secondary.btn-secondary-light {
  border: 2px solid #fff;
  color: #fff;
}

.btn-tertiary {
  background: var(--background-color-light);
  transition: all .2s ease-in-out;
  transform: translate(-4px);
}

.btn-tertiary:hover {
  background: var(--background-color-default);
  transform: translate(2px);
}

.btn-tertiary:hover.btn-icon.btn-icon-arrow:after {
  filter: brightness(0) invert(1);
}

.btn-tertiary.btn-icon {
  width: 40px;
  height: 40px;
  display: flex;
  padding: 0;
  margin-right: 0;
  align-items: center;
  justify-content: center;
}

.button-sm-icon{
  width: 48px;
  height: 48px;
}

.button-sm-icon a{
  padding: 0;
  width: 48px;
  height: 48px;
  margin: 0;
}

.button-sm-icon .btn-icon-right::after {
  margin-left: 0;
}

.btn-icon.btn-icon-arrow:after {
  content: url(../img/arrow.svg);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-right a {
  margin: 0;
}

.btn-icon-right::after,
.btn-icon-left::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
}

.btn-icon-right::after,
.btn-icon-left::before {
  content: url('../img/icon-whatsapp.svg');
  filter: saturate(0) brightness(0) invert(100%);
}

.btn-icon-right::after {
  margin-left: 8px;
}

.btn-icon-left::before {
  margin-right: 8px;
}

.btn-alert {
  background: var(--background-color-alert);
  color: var(--wp--preset--color--contrast);
}

.box-consultores .btn-alert {
  padding: 16px 20px;
  margin-right: 0;
}

.btn-delivery {
  width: 80px;
  height: 80px;
}

.btn-link {
  text-decoration: underline;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 0;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.btn-link:hover {
  transform: translateX(8px);
  background: none;
}

.single-produtos-stock .btn-link {
  margin: 0;
}

.icon,
.icon-xxl {
  content: '';
  display: block;
  margin: 0 8px;
}

.icon {
  width: 24px;
  height: 24px;
}

.icon-xxl {
  width: 80px;
  height: 80px;
}

.icon-arrow {
  content: url('../img/arrow.svg');
}

.icon-delivery {
  content: url(../img/icon-delivery.svg);
}

.icon-whatsapp {
  content: url(../img/icon-whatsapp.svg);
  margin: 0 8px 0 0;
}

/* HOME */
.hero.section {
  padding: 24px 0 48px 0;
}

.mobile .hero.section {
  padding: 64px 0 48px 0;
}

.cards-home img {
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.cards-home.section a {
  display: block;
  transition: all .3s ease-in-out;
}

.mobile .cards-home.section .link-card {
  margin-bottom: 24px;
}

.cards-home.section a:hover {
  transform: translateY(-8px);
}

/* BLOG */
.wp-block-image {
  margin-bottom: 24px;
}


/* PRODUTOS */

.no-mobile .products-content,
.no-mobile .header-section-product {
  padding: 0 40px;
  justify-content: space-between;
  align-items: start;
}

.no-mobile .related-linha-especial .header-section-product {
  padding: 0;
}

.featured-product,
.cards-home {
  position: relative;
}

.featured-product::before,
.cards-home::after {
  content: '';
  display: block;
  width: 100%;
  background: var(--wp--preset--color--contrast);
  position: absolute;
  z-index: -1;
}

.cards-home.section {
  padding-bottom: 64px;
}

.cards-home::after {
  height: 150px;
  bottom: 0;
}

.featured-product::before {
  height: 280px;
}

.title-featured-product {
  color: var(--color-secondary-orange);
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.title-featured-product::after {
  content: url('../img/line.svg');
  display: block;
}

article.produtos-stock {
  margin-bottom: 24px;
}

.card-product {
  height: calc(100% - 24px);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0 16px 24px 16px;
  margin-bottom: 24px;
  border: 1px solid var(--border-neutral);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  position: relative;
}

.card-box{
 background: #fff;
 padding: 24px 16px;
}

.infos-product,
.infos-post {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.box-left {
  width: 100%;
}

.title-product {
  font-size: var(--heading-xxs);
  font-weight: var(--body-strong);
  max-width: 85%;
  margin-bottom: 4px;
}

.link-product:hover .title-product {
  color: var(--color-default);
}

.link-product img,
.card-product img {
  transform: scale(.7);
  transition: all .3s ease-in-out;
}

.link-page img {
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.link-product:hover img {
  transform: scale(.8);
}

.link-page:hover img {
  transform: scale(.9);
}

.link-product:hover .btn-tertiary {
  background: var(--background-color-default);
  transform: translate(0px);
}

.link-product:hover .btn-tertiary.btn-icon.btn-icon-arrow:after {
  filter: brightness(0) invert(1);
}

.link-product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.codigo {
  font-size: var(--body-xs);
  margin: 0;
}

.codigo-md {
  font-size: var(--body-default);
}

.codigo-lg,
.ref-lg {
  font-size: var(--body-lg);
}

/* todos os produtos */
.top-archive-produto,
.top-header-box-page {
  padding: 80px 0;
  background: var(--wp--preset--color--contrast);
  color: #fff;
}

.top-header-box-page {
  padding: 48px 0;
}

.top-header-box-page h2 {
  font-size: var(--heading-md);
  font-weight: bold;
}

.header-archive h1 {
  text-transform: uppercase;
}

.header-archive h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

.no-mobile .header-archive h2 {
  max-width: 80%;
}

.search-form,
.search-box-product {
  margin-top: 40px;
}

.searchandfilter ul {
  width: 100%;
}

.search-box-product li:first-child {
  width: 100%;
  max-width: 440px;
}

.search-field,
.search-box-product input {
  padding: 12px 24px;
  border-radius: 40px !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--wp--preset--color--contrast);
  width: 100%;
  max-width: 430px;
  margin-right: 16px;
}

.search-field::placeholder,
.search-box-product input::placeholder {
  color: var(--wp--preset--color--contrast);
}

.search-submit,
.search-box-product input[type="submit"] {
  background: var(--background-color-default);
  border: 0;
  padding: 12px 24px;
  border-radius: 40px !important;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.search-box-product select,
.search-field,
.search-box-product input {
  padding: 12px 24px;
  border-radius: 40px !important;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--wp--preset--color--contrast);
  border: 0;
}

.mobile .search-box-product select,
.mobile .search-box-product input {
  margin-bottom: 24px;
}

.search-submit:hover {
  background: var(--wp--preset--color--contrast-3);
}

.section-all-products {
  position: relative;
}

.section-all-products::before {
  content: '';
  display: block;
  width: 100%;
  height: 240px;
  position: absolute;
  top: -80px;
  background: var(--background-color-default);
  z-index: -1;
}

.section-all-products .header-section {
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}

.section-all-products .header-section .title-featured-product {
  color: #fff;
}

.section-all-products .header-section .title-featured-product::after,
.related-posts-after-content .header-section .title-featured-product::after {
  content: url('../img/line-dark.svg');
}


/* PAGE */

.container-cards {
  margin-bottom: 80px;
}

.container-cards .row {
  row-gap: 24px;
}

.title-section--more {
  font-size: var(--heading-sm);
  font-weight: 700;
  border-top: 1px solid #8C8575;
  padding: 64px 0 40px 0;
  width: 100%;
}

.container-cards .title-post {
  font-size: var(--heading-xs);
}

.container-cards .entry-meta--item {
  font-size: 12px;
}


/* SINGLE PRODUTO */

.single-produtos-stock #content {
  margin-bottom: 0;
}

.single-produtos-stock .header-section-product {
  padding: 0;
}

.cat-produtos {
  font-weight: 500;
  font-size: 1.25rem;
}

.single-produtos-stock .top-archive-produto {
  padding: 48px 0;
}

.single-produtos-stock .header-archive {}

.single-produtos-stock .related-posts-after-content .icon-arrow,
.single-linhas-especiais .related-posts-after-content .icon-arrow,
.single .related-posts-after-content .icon-arrow {
  filter: brightness(0) invert(1);
}

.single-produtos-stock .header-archive h2,
. {
  font-size: 1.75em;
}

.descricao-produto--title {
  margin-bottom: 8px;
}

.descricao-produto--cod,
.descricao-produto--ref {
  margin-bottom: 8px;
}

/* box consultores */
.section.section-box-consultores {
  /* padding-bottom: 56px; */
}

.box-consultores {
  background: var(--background-color-white);
  padding: 40px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}

.box-consultores--title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 8px;
}

.box-consultores p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.mobile .section-box-lojas {
  margin-bottom: 40px;
}

.section-box-lojas .lojas .loja {
  width: 100%;
  margin: 12px 0;
}

.section-box-lojas .lojas h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: block;
  width: 100%;
}

/* Relacionados */
.related {
  position: relative;
  padding: 40px 0;
}

.related::before {
  position: absolute;
  top: 0;
  content: '';
  display: block;
  width: 100%;
  height: 220px;
  background: var(--background-color-default);
  z-index: -1;
}

.related-posts-after-content .title-featured-product {
  color: #ffffff;
}

.related-linha-especial .button {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.related-linha-especial .box-left {
  width: 80%;
}

.related-linha-especial .link-product {
  justify-content: start;
}

.post-type-archive-linhas-especiais .infos-post {
  margin-top: 40px;
}


/* SINGLE - NOTICIAS */

.single-post .section-frete {
  margin-top: 80px
}

.page-id-125 .post-image {
  padding-top: 80px;
  height: 320px;
  margin-bottom: 260px;
  position: relative;
}

.no-mobile .page-id-125 .post-image {
  margin-bottom: 120px;
}

.no-mobile .post-image>.section-lojas {
  width: 100%;
  position: absolute;
  bottom: -64px;
  padding-bottom: 0;
}

.section-noticias {
  margin: 80px 0;
}

.header-page-post h2,
.header-page-post {
  font-size: 14px;
  font-weight: 300;
}

.descricao-post--title {
  margin-bottom: 24px;
}

.card-noticia {
  padding: 24px 16px;
  background: #fff;
  gap: 16px;
  display: flex;
}

.entry-meta {
  display: flex;
  flex-direction: row;
  margin: 16px 0;
}

.entry-meta--item {
  font-size: 14px;
  background: #EFECE5;
  color: #8C8575;
  padding: 8px;
  border-radius: 50px;
  margin-right: 8px;
}

.title-post {
  font-size: var(--heading-sm);
  font-weight: 700;
}


/* CONTENT */

.section {
  padding-bottom: 40px;
}

.page-404{
  padding: 80px 0;
}

.header-section .header-subtitle {
  color: var(--color-default);
  font-size: var(--heading-xxs);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.header-section .header-title {
  font-size: var(--heading-xl);
  font-weight: 700;
  margin-bottom: 24px;
}

#content {
  margin: 80px 0;
}

.entry-content a {
  font-weight: 700;
  color: var(--color-default);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--wp--preset--color--primary-600);
}

.wp-block-list {
  margin: 24px 0;
  list-style: disc;
  padding-left: 24px;
  line-height: 1.4;
}

ol.wp-block-list {
  list-style: decimal;
}

.wp-block-heading {
  margin-bottom: 24px;
}

.container-content-page h2 {
  font-weight: 700;
  font-size: var(--heading-lg);
  line-height: 120%;
}


/* FRETE */

.section-frete {
  color: #fff;
}

.frete-box {
  background: var(--wp--preset--color--contrast-3);
  border-radius: var(--radius-md);
  padding: 40px 24px;
}

.no-mobile .frete-box {
  padding: 40px 80px;
}

.frete-box>.row {
  column-gap: 40px;
}

.section-frete .title-section {
  font-size: var(--heading-md);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.no-mobile .col-box {
  display: flex;
}

.col-box {
  align-items: center;
}

.col-box p {
  margin-bottom: 0;
}

.mobile .col-box p {
  padding: 24px 0 0 0;
}

/* LINHAS ESPECIAIS */
.logo-partner {
  max-width: 160px;
}

.content-hero ul li {
  margin-bottom: 8px;
}

.section--image img {
  display: block;
  padding-bottom: 0;
}

.title-product-linha-especial {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 8px;
}

/* VISITA TÉCNICA */

.section.section-visita-tecnica {
  padding-bottom: 0;
}

.section-visita-tecnica--image img {
  display: block;
}

.section-hero-visita-tecnica,
.section-hero-page,
.section-hero-details {
  color: #fff;
}

.section-hero-visita-tecnica h2:first-child,
.section-hero-page h2:first-child,
.section-hero-details h2:first-child {
  font-size: var(--heading-hero);
  font-weight: 700;
}

.section-hero-details {
  padding: 40px 0;
}

.orange {
  color: var(--color-secondary-orange);
}

.no-mobile .header-section-hero-text {
  padding: 0 40px;
  z-index: 1;
}

.page-template-page-visita .header-section-hero-text ul {
  padding-left: 16px;
}

.page-template-page-visita .header-section-hero-text ul li {
  padding-left: 8px;
}

.page-template-page-visita .header-section-hero-text ul li::marker {
  content: '✓';
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.section-cta-visitas {
  position: relative;
}

.section-cta-visitas::after {
  content: '';
  display: block;
  width: 100%;
  height: 64px;
  background: var(--wp--preset--color--primary-700);
  position: absolute;
  top: 0;
  z-index: -2;
}

.cta-box {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-md);
}

.cta-box h2 {
  font-size: var(--heading-xs);
  font-weight: 700;
}

.cta-box p {
  margin-bottom: 0;
}

.cta-box .button {
  width: 100%;
}

.no-mobile .cta-box .button {
  display: flex;
  justify-content: end;
}

.no-mobile .cta-box {
  padding: 40px 80px;
}

.section-hero-page {
  padding: 64px 0;
}

.section-page-hero-image {
  height: 280px;
  overflow: hidden;
}


/* LOJAS */

.box-lojas {
  background: var(--background-color-white);
  padding: 40px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
}

.no-mobile .box-lojas {
  padding: 40px 80px;
}

.box-lojas h2 {
  font-weight: bold;
  font-size: var(--heading-md);
  margin-bottom: 8px;
}

.no-mobile .box-lojas p,
.no-mobile .loja {
  margin: 0;
}

.lojas {
  flex-wrap: wrap;
  justify-content: space-between;
}

.loja {
  position: relative;
  display: flex;
  margin-bottom: 24px;
}

.loja::before {
  content: url(../img/icon-location.svg);
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.loja p {
  margin-bottom: 4px;
}

.loja-text .loja--endereco {
  font-weight: 700;
}

.loja-text .loja-telefone {
  font-weight: 700;
  color: var(--color-default);
}

.separador-lojas {
  display: none;
}

.no-mobile .separador-lojas {
  display: block;
  width: 1px;
  height: 60px;
  background: #C2C2C2;
}

.separador-lojas.separador-lojas-vertical {
  width: 60px;
  height: 1px;
}


/* INSTAGRAM */

.section.section-instagram {
  padding: 40px 0;
}

.header-section-instagram {
  margin-bottom: 80px;
}

.section-component-social {
  padding: 40px 0;
}

.title-featured-instagram {
  font-size: var(--heading-md);
  line-height: 1.2;
  margin-bottom: 8px;
}


/* IFRAME RESPONSIVE */

.video-responsivo iframe,
.iframe-responsivo iframe {}

.video-responsivo,
.iframe-responsivo,
.issuuembed,
.wp-block-embed-youtube .wp-block-embed__wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  margin: 40px 0;
  z-index: 2;
}

.support .video-responsivo {
  margin: 0;
}

.issuuembed {
  height: auto !important;
  width: 100% !important;
}

.video-responsivo iframe,
.iframe-responsivo iframe,
.issuuembed iframe,
.is-type-video .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  padding-bottom: 100%;
}

.ratio-3x2 {
  padding-bottom: 66.66667%;
}

.ratio-4x3 {
  padding-bottom: 75%;
}

.ratio-16x9,
.issuuembed,
.wp-block-embed-youtube .wp-block-embed__wrapper {
  padding-bottom: 56.25%;
}


/* NAV LINKS - PAGINAÇÃO */

.nav-links {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.nav-links .page-numbers {
  width: 48px;
  height: 48px;
  margin: 8px;
  padding: 16px;
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  border: 1px solid var(--wp--preset--color--contrast);
  border-radius: 40px;
  text-align: center;
  transition: all .3s ease-in-out;
}

.nav-links .page-numbers.current {
  background: var(--background-color-default);
  color: #fff;
  border: 1px solid var(--background-color-default);
}

.prev.page-numbers,
.next.page-numbers {
  width: auto;
  border: 1px solid transparent;
}

.page-numbers:hover {
  background: var(--background-color-default);
  color: #fff;
  border: 2px solid var(--background-color-default);
  font-weight: 700;
}


/* FOOTER */

.footer {
  background: url('../img/simbol-stock.svg') no-repeat left center var(--wp--preset--color--contrast-3);
  color: var(--wp--preset--color--primary-light);
  padding: 96px 0 32px 0;
}

.mobile .container-infos-footer {
  flex-direction: column;
}

.no-mobile .container-infos-footer {
  padding-left: 40px;
}

.container-infos-footer {
  justify-content: space-between;
  flex-wrap: wrap;
}

.mobile .box-footer {
  margin-bottom: 40px;
}

.container-infos-footer a {
  margin: 0 0 16px 0;
  display: block;
  font-weight: 300;
}

.title-footer {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.loja-footer {
  margin-bottom: 16px;
}

.loja-footer h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.loja-footer p {
  margin-bottom: 0px;
  font-size: 14px;
  color: var(--wp--preset--color--primary-light);
}

.logo-footer {
  max-width: 200px;
}

.mobile .logo-footer {
  margin-bottom: 40px;
}

.copyright-footer {
  width: 100%;
  justify-content: space-between;
}

#menu-politicas {
  display: flex;
}

#menu-politicas a {
  font-weight: 400;
  margin-left: 0;
}

#copyright,
#menu-politicas {
  font-size: 12px;
  margin-top: 40px;
}

.background-icon {
  content: url('../img/simbolo-stock.svg');
  display: block;
  width: 500px;
  height: 350px;
  position: absolute;
  top: 80px;
  right: 100px;
  z-index: 0;
  /* cursor: none; */
}

.section-no-results-search,
.section-no-results-search h2{
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 4px 0;
}
.section-no-results-search h2{
  font-weight: 600;
  margin-bottom: 24px;

}
.section-no-results-search h2
.section-no-results-search h3{
  line-height: 1.5;
}

.section-no-results-search .btn-primary{
  color: #fff;
}

.consultor-thumb{
  max-width: 64px;
  height: 64px;
  border-radius: 100%;
  margin-bottom: 16px;
}

.consultor-thumb img{
  border-radius: 100px;
}

