:root {
  --brand-color--text-dark: #515151;
  --brand-color--primary: #000d1f;
  --brand-color--white: white;
  --brand-color--neutral: #f2f2f2;
  --brand-color--text: #7f7f7f;
  --brand-color--terciary: #5ee7ff;
  --white: white;
  --brand-color--secondary: #0094e6;
  --black: black;
}

body {
  color: var(--brand-color--text-dark);
  font-family: Gotham, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Magistral, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 132%;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: all .35s;
}

strong {
  color: var(--brand-color--primary);
  font-weight: 500;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.hero {
  border-radius: 24px;
  width: 100%;
  height: 80%;
  position: relative;
}

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  border-bottom: 1px solid #f2f2f23d;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 18px;
  display: flex;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-navbar {
  height: 30px !important;
}

.budget-list_item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all ease 0.2s;

  &:hover {
    background: rgb(236, 232, 232);
  }
}

.budget-list_item_title-box_title {
  color: black;
  font-size: 13px;
  font-weight: 600;
  margin-left: 25px;
}

.budget-list_item_image-box {
  width: 72px;
  object-fit: cover;
}

.budget-list_item_image-box-img {
  width: 72px;
  display: block;
}

.search-result {
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  z-index: 9999;
  border-radius: 10px;
  width: 100%;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.5);
}

.navbar_firstmenu {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 33%;
  display: flex;
}

.budget-list_item {
  background: white;
  padding: 15px;
}

.navbar_secondmenu {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-end;
  align-items: center;
  width: 33%;
  display: flex;
}

.navbar_menuicon {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--brand-color--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all .35s;
  display: flex;
}

.navbar_menuicon:hover {
  border-color: var(--brand-color--primary);
  background-color: var(--brand-color--primary);
}

.navbar_menuicon.outline {
  border-color: var(--brand-color--primary);
  color: var(--brand-color--primary);
}

.navbar_menuicon.outline:hover {
  color: var(--brand-color--neutral);
}

.navlink {
  color: var(--brand-color--neutral);
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.navlink:hover {
  color: var(--brand-color--primary);
}

.navlink.nohover:hover {
  color: var(--brand-color--neutral);
}

.navlink.dark {
  color: var(--brand-color--primary);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.navbarsearch {
  border: 1px solid var(--brand-color--neutral);
  color: var(--brand-color--neutral);
  border-radius: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 8px 13px;
  transition: all .35s;
  display: flex;
  height: 40px;
  background: white;
}

.navbarsearch:hover {
  background-color: #f1f1f1;
}

.navbarsearch.dark {
  background-color: white;
}

/* .navbarsearch.dark:hover {
  border-color: var(--brand-color--primary);
  background-color: #fff;
} */

.navbarsearchinput {
  color: black;
  background-color: transparent;
  border: none;
  margin-bottom: 0;
  padding-left: 0;
}

.navbarsearchinput::placeholder {
  color: black;
  opacity: 0.7;
}

.navbarsearchbtn {
  background-color: transparent;
  background-image: url('../images/search-clear.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 32px;
  height: 32px;
}

.navbarsearchbtn.gray {
  text-align: center;
  background-image: url('../images/search-icon.svg');
  width: 24px;
  height: 24px;
}

.langselector {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--brand-color--white);
  border-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  padding-right: 20px;
  transition: all .35s;
  display: flex;
}

.langselector:hover {
  background-color: var(--brand-color--primary);
}

.hero_bgvideo {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(#0003, #0003);
  border-radius: 0 0 16px 16px;
  flex-flow: column;
  justify-content: space-between;
  height: 80vh;
  padding-bottom: 48px;
  display: flex;
}

.navbardropdownselector {
  margin-left: 0;
  margin-right: 0;
  width: 180px;
}

.herodetailwrapper {
  justify-content: flex-end;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 12px;
  display: flex;
}

.herodetailcontent {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.detailline {
  background-color: var(--brand-color--neutral);
  opacity: .5;
  width: 6rem;
  height: 2px;
}

.detailtext {
  opacity: .5;
  color: var(--brand-color--neutral);
  text-transform: uppercase;
  font-family: Magistral, sans-serif;
  font-weight: 700;
}

.detailtext.heroabsolute {
  font-size: 18px;
  display: flex;
  position: absolute;
  inset: auto auto 10% 0%;
  transform: rotate(-90deg);
}

.herocontent {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heromaintitle {
  color: var(--brand-color--white);
  text-align: center;
  font-family: Magistral, sans-serif;
  font-size: 40px;
  line-height: 48px;
}

.herobluetitle {
  color: var(--brand-color--terciary);
}

.herosearch {
  background-color: var(--white);
  border: 1px solid #000d1f33;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: -34px auto 0;
  padding: 12px 16px;
  transition: all .35s;
  display: flex;
  position: relative;
  box-shadow: 0 0 5px #0003;
}

.herosearch:hover {
  border-color: var(--brand-color--terciary);
  box-shadow: 3px 3px 5px #0003;
}

.herosearch.wheresearch {
  width: 100%;
  margin-top: 0;
  padding: 5px 5px 5px 10px;
}

.herosearch.wheresearch.inactive {
  opacity: .4;
}

.herosearch.downloadsearch {
  width: 90%;
}

.herosearchinput {
  background-color: #0000;
  border: 1px #000;
  margin-bottom: 0;
  padding-left: 0;
}

.herosearchinput:focus-visible {
  color: var(--brand-color--primary);
}

.herosearchinput[data-wf-focus-visible] {
  color: var(--brand-color--primary);
}

.homecategory {
  margin-top: 80px;
  margin-bottom: 80px;
  overflow: hidden;
}

.homecategory.certificates{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 60px 30px;
  background: #000a1f;
  color: white;
  display: flex;
  justify-content: center;
  text-align: center;
}

.homecategory.secondary {
  padding-top: 0;
}

.titleboxwrapper {
  grid-column-gap: 24%;
  grid-row-gap: 24%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.titleboxwrapper._4_items {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
}

.titleboxwrapper.testimonialsslider {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  padding-left: 24px;
  padding-right: 24px;
}

.secondarytitle {
  color: var(--brand-color--primary);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
}

.secondarytitle.white {
  color: var(--brand-color--white);
}

.paragraph {
  color: var(--brand-color--text);
  letter-spacing: -.4px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 148%;
}

.paragraph.dark-text {
  color: var(--brand-color--text-dark);
}

.paragraph.white {
  color: var(--brand-color--white);
}

.paragraph.white.institutionalp {
  width: 40%;
}

.paragraph.white.medium {
  font-weight: 400;
}

.paragraph.white.medium.internalheaderp {
  width: 60%;
}

.paragraph.white.timelineitemdescription {
  text-align: right;
  width: 50%;
  font-size: 14px;
}

.paragraph.white.abouthighlightcolumns {
  color: var(--brand-color--text);
  column-count: 2;
}

.paragraph.white.detailhighlightp {
  color: var(--brand-color--text-dark);
  text-align: right;
  width: 30%;
  font-size: 14px;
}

.paragraph.small {
  font-size: 14px;
  line-height: 150%;
}

.paragraph.small.primarycolor {
  color: var(--brand-color--primary);
}

.paragraph.bold {
  font-weight: 500;
}

.paragraph.bold.primarycolor {
  color: var(--brand-color--primary);
}

.paragraph.bold.primarycolor.searchbuyresulttitle {
  font-size: 18px;
}

.paragraph.large {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.paragraph.large.dark {
  color: var(--brand-color--text-dark);
}

.bigbanner {
  background-image: url('../images/Produtos.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  height: 60vh;
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 32px;
  text-decoration: none;
  display: flex;
}

.bigbanner:hover {
  opacity: .7;
}

.bigbanner.secondary {
  background-image: url('../images/banner.jpg');
}

.bigbannercontent.align-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.primarytitle {
  color: var(--white);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Magistral, sans-serif;
  font-size: 70px;
  line-height: 100%;
}

.primarytitle.md {
  font-size: 50px;
}

.button {
  background-color: var(--white);
  color: var(--brand-color--primary);
  letter-spacing: -.2px;
  text-transform: uppercase;
  border-radius: 24px;
  flex: none;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  transition: all .35s;
}

.button.dark {
  background-color: var(--brand-color--primary);
  color: var(--white);
}

.button.dark:hover {
  background-color: var(--brand-color--white);
  color: var(--brand-color--primary);
}

.button.secondaryoutline {
  border: 1px solid var(--brand-color--primary);
  text-align: center;
  background-color: #0000;
  border-radius: 8px;
  font-weight: 500;
}

.button.secondaryoutline:hover {
  background-color: var(--brand-color--primary);
  color: var(--white);
}

.button.secondaryoutline.whiteoutline {
  border-color: var(--brand-color--neutral);
  color: var(--brand-color--neutral);
}

.button.secondaryoutline.whiteoutline:hover {
  opacity: .54;
}

.button.terciaryoutline {
  border: 1px solid var(--brand-color--primary);
  text-align: center;
  background-color: #0000;
  border-radius: 8px;
  padding: 12px 13px;
  font-weight: 500;
}

.button.terciaryoutline:hover {
  background-color: var(--brand-color--primary);
  color: var(--white);
}

.button.whatsapp {
  background-color: #5effc5;
  background-image: url('../images/whatsapp.svg');
  background-position: 12%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: 1px solid #5effc5;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  font-weight: 500;
  display: flex;
}

.button.call {
  border: 1px solid var(--brand-color--secondary);
  color: var(--brand-color--secondary);
  background-color: #0000;
  background-image: url('../images/call.svg');
  background-position: 12%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  justify-content: center;
  align-items: center;
  padding-left: 50px;
  font-weight: 500;
  display: flex;
}

.terciarytitle {
  color: var(--brand-color--primary);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 132%;
}

.terciarytitle.white {
  color: var(--brand-color--white);
}

.terciarybluehighlight {
  color: var(--brand-color--secondary);
}

.sliderdots {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sliderdot {
  background-color: var(--black);
  opacity: .2;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  transition:
    width 0.3s ease-in-out,
    height 0.3s ease-in-out,
    border-radius 0.3s ease-in-out,
    opacity 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
}

.sliderdot.active {
  background-color: var(--brand-color--secondary);
  opacity: 1;
  border-radius: 8px;
  width: 60px;
  height: 6px;
}

.sliderdot.light {
  background-color: var(--brand-color--text);
}

.sliderdot.activedark {
  background-color: var(--brand-color--primary);
  opacity: 1;
  border-radius: 8px;
  width: 60px;
  height: 6px;
}

.sliderarrows {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sliderarrow {
  width: 48px;
  height: 40px;
  transition: all .35s;
  cursor: pointer;
}

.sliderarrow:hover {
  opacity: .59;
}

.sliderarrow.inactive {
  opacity: .5;
}

.titleboxtextwrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.titleboxsliderwrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex: none;
  display: flex;
}

.productgrid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
}

.productgrid.new-products {
  margin-top: -80px;
  overflow: scroll;
}

.productitem {
  background-color: #f2f2f2;
  border-radius: 16px;
  flex: none;
  width: 420px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}

.no-results-message {
  font-size: 18px;
  color: var(--brand-color--text);
  width: 100%;
  text-align: center;
}

.search-feedback {
  color: var(--brand-color--text) !important;
}

.productitem:hover {
  opacity: .65;
}

.productitem.searchpage {
  flex: 1;
  width: 49%;
  min-width: 420px;
}

.productitem.internal {
  width: 100%;
}

.productitemtagbox {
  display: flex;
  flex-wrap: wrap; /* evita quebrar linha */
  overflow: hidden; /* esconde os itens que não cabem */
  gap: 8px; /* espaçamento entre tags */
}

.tag {
  background-color: var(--brand-color--secondary);
  color: var(--white);
  border-radius: 20px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
}

a.tag:hover {
  background-color: var(--brand-color--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.productitemtagbox .tag {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tag.outline {
  border: 1px solid var(--brand-color--secondary);
  color: var(--brand-color--secondary);
  background-color: #0000;
  font-size: 12px;
}

.tag.filtertag {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-color--primary);
  color: var(--brand-color--primary);
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  transition: all ease 0.2s;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  width: fit-content;
}

.tag.filtertag:hover {
  background-color: var(--brand-color--primary);
  color: white;
}

.tag.filtertag.active {
  background-color: var(--brand-color--primary);
  color: var(--white);
}

.tag.carac-tag {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-color--primary);
  color: var(--brand-color--primary);
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  transition: all ease 0.2s;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  width: fit-content;
}

.tag.carac-tag:hover {
  background-color: var(--brand-color--primary);
  color: white;
}

.tag.carac-tag.active {
  background-color: var(--brand-color--primary);
  color: var(--white);
}


.productitemref {
  color: var(--brand-color--primary);
  letter-spacing: .6px;
  text-transform: uppercase;
  font-family: Magistral, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.productitemimg {
  object-fit: contain;
  width: 100%;
  height: 260px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.productitemimg.small {
  height: 150px;
  margin-top: 0;
}

.productitemimg.horizontal {
  width: 150px;
  height: 120px;
  margin-top: 0;
  margin-bottom: 0;
}

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

.productiteminfobox.vertical {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.productitemname {
  color: var(--brand-color--primary);
  letter-spacing: -.4px;
  font-size: 18px;
  font-weight: 500;
}

.productitemdescription {
  color: var(--brand-color--text);
  letter-spacing: -.4px;
}

.divider {
  background-color: var(--brand-color--text);
  opacity: .2;
  width: 100%;
  height: 1px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.searchbuyresultsaddressbox .divider {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.divider.vertical {
  width: 2px;
  height: auto;
}

.divider.lessmargin {
  margin-top: 0;
  margin-bottom: 0;
}

.divider.bigmargin {
  margin-top: 64px;
  margin-bottom: 64px;
}

.bannerwrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: stretch;
  /*margin-bottom: 56px;*/
  display: flex;
}

.productbannerwrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: stretch;
  /*margin-bottom: 56px;*/
  display: flex;
  margin-top: 12px;
}

.mediumbanner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;          /* garante o raio também na imagem */
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 65%;
  height: 50vh;
  padding: 32px;
  text-decoration: none;
}

.mediumbanner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* mesmo efeito do background-size: cover */
  z-index: 0;
}

.bigbannercontent {
  position: relative;
  z-index: 1;                /* conteúdo por cima da imagem */
}

.mediumbanner:hover {
  opacity: .7;
}

.smallbanner {
  background-color: var(--brand-color--secondary);
  color: var(--brand-color--neutral);
  border-radius: 24px;
  flex-flow: column;
  justify-content: space-between;
  width: 35%;
  height: 50vh;
  padding: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 132%;
  display: flex;
}

.productsmallbanner {
  border-radius: 24px;
  width: 35%;
  display: flex;
}

.homeinstitutional {
  background-color: var(--brand-color--primary);
  padding-bottom: 120px;
}

.institutionalvideo {
  z-index: 9000;
  margin-bottom: 40px;
}

.brandsinfo {
  border-top: 1px solid #7f7f7f33;
  border-bottom: 1px solid #7f7f7f33;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.brandsinfolabel {
  color: var(--brand-color--text);
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
}

.brandswrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.brandsitemlogo {
  opacity: .25;
  filter: grayscale(25%);
}

.brandsitemlogo.color {
  opacity: 1;
  filter: none;
}

.content {
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.contentwrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
  display: flex;
}

.betobox {
  background-color: var(--brand-color--terciary);
  border-radius: 12px;
  flex: none;
  justify-content: center;
  align-items: flex-end;
  width: 350px;
  height: 350px;
  padding: 44px 44px 0;
  display: flex;
}

.contentfirstbox {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.contentlastbox {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.contentimagewrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.componentitem {
  background-color: #f2f2f2;
  border-radius: 16px;
  flex: none;
  width: 320px;
  padding: 24px;
  text-decoration: none;
}

.componentitem:hover {
  opacity: .65;
}

.componentitem.internal {
  width: 100%;
}

.componentitem.horizontal {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
}

.beaseller {
  margin-top: 80px;
  margin-bottom: 80px;
}

.beasellerbox {
  background-color: #0094E6;
  border-radius: 12px;
  padding: 32px 48px;
}

.beasellerbox .secondarytitle,
.beasellerbox .paragraph.small.primarycolor,
.beasellerbox strong {
  color: white !important;
}

.beasellerbox .button.dark {
  background-color: white !important;
  color: black !important;
}

.beasellerwrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.beasellertextbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.footer {
  background-color: var(--brand-color--primary);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding-top: 60px;
  padding-bottom: 32px;
}

.footercenterwrapper {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footercontactwrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
  margin-bottom: 40px;
  display: flex;
}

.footerlabel {
  color: var(--brand-color--terciary);
  font-weight: 500;
}

.footercontactitem {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--brand-color--text);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 12px;
  display: flex;
}

.footercontactnumber {
  color: var(--brand-color--white);
  text-transform: uppercase;
  font-family: Magistral, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 130%;
}

.footercontactnumber.email {
  text-transform: none;
  font-size: 24px;
}

.footercontactitembox {
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.footersitemap {
  margin-top: 32px;
  padding-top: 32px;
}

.footersitemapwrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border-top: 1px solid #5ee7ff4d;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 32px;
  display: flex;
}

.sitemapgrid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footersitemapitem {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sitemaplink {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--brand-color--white);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sitemaplink:hover {
  color: var(--brand-color--secondary);
}

.footercertifications {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footercompanyinfo {
  border-top: 1px solid var(--brand-color--terciary);
  color: var(--brand-color--text);
  flex-flow: column;
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
}

.footercompanyinfotitlebox {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-bottom: 12px;
  display: flex;
}

.footercompanytitle {
  color: var(--brand-color--neutral);
  font-size: 16px;
  font-weight: 500;
}

.footersocialwrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--brand-color--secondary);
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.footersociallinks {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footersignature {
  color: var(--brand-color--neutral);
  justify-content: space-between;
  margin-top: 32px;
  display: flex;
}

.div-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.menu {
  z-index: 999;
  background-color: var(--white);
  border-radius: 0 12px 12px 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 35%;
  max-width: 420px;
  height: 100%;
  padding: 24px;
  display: none;
  box-shadow: 3px 2px 5px #0003;
  overflow-y: auto;
  scrollbar-width: none;
}

.menuwrapper {
  flex: 1;
  width: 100%;
  margin-top: 12px;
}

.menulist {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
}

.menulist.withdivider {
  border-top: 1px solid #e2e2e2;
  padding-top: 24px;
}

.menulinkitem {
  color: var(--brand-color--primary);
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Magistral, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 18px !important;
  display: flex;
}

.menulinkitem:hover {
  opacity: .45;
}

.menulinkitemsecondary {
  color: var(--brand-color--primary);
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Magistral, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 18px !important;
  display: flex;
}

.menulinkitemsecondary:hover {
  opacity: .45;
}

.menusignature {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 12px;
  display: flex;
}

.menusignaturetext {
  text-align: right;
  letter-spacing: -.2px;
  font-size: 10px;
}

.menulistwrapper {
  flex-flow: column;
  display: flex;
}

.submenu {
  z-index: 999;
  background-color: var(--brand-color--neutral);
  border-radius: 0 12px 12px 0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 35%;
  max-width: 420px;
  height: 100%;
  margin-left: -8px;
  padding: 24px;
  display: none;
  box-shadow: 3px 2px 5px #0003;
}

.submenulist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.submenuitem {
  background-color: var(--white);
  border-radius: 16px;
  flex: none;
  width: 420px;
  padding: 12px 24px;
  text-decoration: none;
}

.submenuitem:hover {
  opacity: .65;
}

.submenuproductlist {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  max-height: 83vh;
  display: flex;
  overflow: scroll;
}

.fixedmenus {
  z-index: 9999;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
}

.dswrapper {
  background-color: #dadada;
}

.navbarwrapper.productnavbar {
  position: absolute;
  inset: 15px 0% auto;
}

.navbarwrapper {
  position: relative;
}

.internalheader {
  background-color: var(--brand-color--primary);
}

.internalheader.blogheader {
  background-color: var(--brand-color--secondary);
  height: auto;
}

.internalheadertitlebox {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
}

.internalheadertitlebox.withimage {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
}

.internalheadertitlebox.download {
  padding-bottom: 90px;
}

.internalheadersubtitle {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Magistral, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.internalheadersubtitle.gray {
  color: var(--brand-color--text);
}

.internalheadersubtitle.terciary {
  color: var(--brand-color--terciary);
}

.productlistwrapper {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.productlistgrid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  flex-direction: row;
}

.searchfilterwrapper {
  z-index: 3;
  flex: none;
  top: 20px;
  margin-bottom: 20px;
  max-width: 25%;
}

.quaternarytitle {
  color: var(--brand-color--primary);
  letter-spacing: -.7px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 132%;
}

.quaternarytitle.filtertitle {
  margin-bottom: 16px;
}

.filterlabel {
  color: var(--brand-color--text);
  letter-spacing: -.2px;
  text-transform: uppercase;
  border-bottom: 1px solid #7f7f7f40;
  margin-top: 0;
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-family: Magistral, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 132%;
}

.filtertagwrapper {
  grid-row-gap: 8px;
  display: inline-grid;
}

.filterlist {
  grid-column-gap: 32px;
  grid-row-gap: 42px;
  flex-flow: column;
  margin-top: 32px;
  display: flex;
}

.searchresultlist {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  align-items: stretch;
  margin-left: 8px;
  display: flex;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.blogpost-enter {
  animation: fadeSlideBlink 1s ease forwards;
}

@keyframes fadeSlideBlink {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  40% {
    opacity: 0.6;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
  }
}


.buttonbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid #f2f2f25e;
  justify-content: flex-start;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
}

.internalheaderimgbox {
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 60%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.contentdivider {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.contentdivider.blogdivider {
  margin-bottom: 24px;
}

.wheretobuy {
  padding-top: 60px;
  padding-bottom: 60px;
}

.producttypeselector {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
}

.producttypeselectoritem {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  background-color: var(--white);
  color: var(--brand-color--text);
  border: 1px solid #7f7f7f5c;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 255px;
  padding: 32px;
  transition: all .35s;
  display: flex;
}

.producttypeselectoritem:hover {
  border-color: var(--brand-color--secondary);
  background-color: var(--brand-color--neutral);
}

.producttypeselectoritem.w--current {
  background-color: var(--brand-color--primary);
  color: var(--brand-color--neutral);
}

.ctalabel {
  letter-spacing: .3px;
  text-transform: uppercase;
  font-weight: 500;
}

.searchdropdownlist {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  flex-flow: column;
  max-height: 240px;
  padding: 15px;
  display: flex;
  overflow: scroll;
}

.inactive-dropdown {
  display: none;
}

.searchdropdownitem {
  border-bottom-width: 1px;
  border-bottom-color: #eee;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  display: flex;
}

.searchdropdownitem:hover {
  background-color: var(--brand-color--neutral);
}

.searchdropdownmain {
  color: var(--brand-color--primary);
  letter-spacing: -.4px;
  width: 40%;
  font-size: 16px;
}

.searchdropdownsecondary {
  color: var(--brand-color--primary);
  letter-spacing: -.2px;
  font-size: 14px;
}

.searchdropdownitemcontent {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.wheretobuytabpane,
.searchbuyresults {
  margin-top: 24px;
}

.searchbuytitlebox {
  border-bottom: 1px solid #e6e6e6;
  justify-content: space-between;
  padding-bottom: 12px;
  display: flex;
}

.searchtitleboxcontent {
  flex-flow: column;
  justify-content: center;
  display: flex;
}

.searchbuyselection {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: right;
  flex-flow: column;
  display: flex;
}

.searchtitleboxresult {
  color: var(--brand-color--primary);
  letter-spacing: -.4px;
  font-size: 28px;
  font-weight: 500;
  line-height: 116%;
}

.searchresultsecondaryinfo {
  letter-spacing: -.4px;
}

.searchbuyresultslist {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.searchbuyresultsitem {
  border-bottom: 1px solid #e7e7e7;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 20px;
  display: flex;
}

.searchbuyresultsaddressbox,
.buttonboxvertical {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  width: 18%;
}

.searchbuytitlesplit {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
  width: 20%;
}

.downloadtabs {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.downloadtabitem {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-color--primary);
  background-color: var(--brand-color--white);
  border-radius: 32px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  height: 40px;
}

.downloadtabitem:hover {
  background-color: var(--brand-color--neutral);
}

.downloadtabitem.w--current {
  background-color: var(--brand-color--terciary);
}

.downloadtabitem.w--current:hover {
  background-color: var(--brand-color--secondary);
}

.downloadwrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.downloadcontentbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.downloaditem {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.downloaditem.white {
  color: var(--brand-color--neutral);
}

.downloadiconbox {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-color--primary);
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 16px;
  display: flex;
}

.downloadiconbox.white {
  border-color: var(--brand-color--neutral);
}

.downloaditemtitle {
  color: var(--brand-color--primary);
  font-size: 16px;
  font-weight: 500;
}

.downloaditemtitle.white {
  color: var(--brand-color--white);
}

.downloadinfobox {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
}

.downloaditemp {
  width: 40%;
}

.downloadlistwrapper {
  padding: 40px 5%;
}

.downloadlist {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.contactbox {
  background-color: var(--brand-color--secondary);
  border-radius: 24px;
  width: 100%;
  padding: 40px;
  transition: all .35s;
}

.input {
  /* border: 1px solid var(--brand-color--text); */
  border-radius: 24px;
  height: 60px;
  margin-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  transition: all .35s;
}

.input:hover {
  /* border-color: var(--brand-color--primary); */
  background-color: var(--brand-color--neutral);
}

.input.textarea {
  border: none;
  padding-top: 16px;
  padding-bottom: 16px;
}

.input.textarea:focus {
  outline: none;
}

.contactformdivider {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.formwrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 12px;
  display: flex;
}

.formsubmitbutton {
  background-color: var(--brand-color--primary);
  text-transform: uppercase;
  border-radius: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-weight: 700;
  transition: all .35s;
}

.formsubmitbutton:hover {
  background-color: var(--brand-color--terciary);
}

.blogmainwrapper {
  justify-content: space-between;
  display: flex;
}

.blogmainarticle {
  width: 49%;
}

.blogsecondaryarticles {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  width: 55%;
  display: flex;
}

.blogposthighlight {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--brand-color--text-dark);
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  width: 45%;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.blogposthighlight:hover {
  opacity: .6;
}

.blogpostitemtop {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.blogpostitemdown {
  background-color: var(--brand-color--neutral);
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
}

.blogpostitemdate {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.blogpostitemtitle {
  color: var(--brand-color--primary);
  letter-spacing: -.4px;
  font-size: 22px;
  font-weight: 500;
}

.blogpostitem {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--brand-color--text-dark);
  border-radius: 12px;
  padding: 0 20px;
  display: flex;
}

.blogpostitem:hover {
  background-color: var(--brand-color--neutral);
  opacity: .6;
}

.blogpostimg {
  border-radius: 12px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.blogpostitemtextbox {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.blogwrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.newsletterbox {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--brand-color--terciary);
  border-radius: 12px;
  flex-flow: column;
  padding: 40px;
  display: flex;
}

.newslettertitlebox {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.newslettertitle {
  color: var(--brand-color--primary);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 134%;
}

.newsletterp {
  letter-spacing: -.3px;
  width: 40%;
}

.newsletterform {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.newsletter {
  margin-top: 80px;
  margin-bottom: 80px;
}

.blogpostslist {
  padding-top: 40px;
  padding-bottom: 120px;
}

.blogpostslisttitlebox {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blogpostslisttagwrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  display: flex;
  flex-wrap: wrap;
}

.blogpostscategoriesselect {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.blogpostslistgrid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.blogpost {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  color: var(--brand-color--text-dark);
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 12px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  height: 430px;
  padding: 24px;
  text-decoration: none;
  display: flex;
}

.blogpost:hover {
  opacity: .6;
}

.internaltitlebox {
  flex: none;
}

.blogcontent {
  margin-top: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.blogcontentwrapper {
  flex-flow: column;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blogmaintitle {
  color: var(--brand-color--primary);
  letter-spacing: -1.2px;
  text-transform: none;
  font-family: Gotham, sans-serif;
  font-size: 48px;
  font-weight: 500;
}

.bloginfowrapper {
  justify-content: space-between;
  align-items: stretch;
  margin-top: 24px;
  display: flex;
}

.author {
  background-image: url('../images/favicon256.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 120px;
  width: 40px;
  height: 40px;
}

.authorwrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blogdatewrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blogpostinfowrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.blogpostcategorywrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.blogpostmainimage {
  object-fit: cover;
  border-radius: 24px;
  width: 90%;
  margin: 24px auto 24px;
  display: block;
  position: relative;
}

.blogpostmainimage.avatar {
  background-color: var(--brand-color--terciary);
  object-fit: contain;
  margin: 0;
  padding: 0 50px 0;
  position: relative;
}

.blogpostmainimage.fullwidth {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 0;
}

.blogpostmainimage.negativemargin {
  margin-bottom: -45px;
}

.blogcontentrichtext * {
  font-family: Gotham, sans-serif !important;
  background-color: transparent !important;
}

.blogcontentrichtext {
  margin-top: 32px !important;
}

.blogcontentrichtext h1 {
  color: var(--brand-color--primary) !important;
  letter-spacing: -1px !important;
  text-transform: none !important;
  font-size: 54px !important;
  margin-bottom: 25px !important;
}

.blogcontentrichtext h2 {
  color: var(--brand-color--primary )!important;
  letter-spacing: -1px !important;
  font-weight: 500 !important;
  margin-bottom: 15px !important;
}

.blogcontentrichtext h3 {
  color: var(--brand-color--primary) !important;
  letter-spacing: -.8px !important;
  font-weight: 400 !important;
}

.blogcontentrichtext h4,
.blogcontentrichtext h5,
.blogcontentrichtext h6 {
  color: var(--brand-color--primary) !important;
}

.blogcontentrichtext p {
  letter-spacing: -.2px !important;
  margin-bottom: 16px !important;
  font-size: 18px !important;
  color: var(--brand-color--text-dark) !important;
  line-height: 148% !important;
}

.blogcontentrichtext span {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.blogcontentrichtext blockquote {
  border-left-color: var(--brand-color--secondary) !important;
  color: var(--brand-color--primary) !important;
  letter-spacing: -.5px !important;
  width: 90% !important;
  margin-top: 24px !important;
  margin-bottom: 24px !important;
  padding-left: 32px !important;
  font-size: 22px !important;
  line-height: 142% !important;
  width: 100% !important;
  font-size: 19px !important;
}

.blogcontentrichtext strong {
  font-weight: 500 !important;
  color: var(--brand-color--primary) !important;
}

.blogcontentrichtext a {
  color: var(--brand-color--secondary) !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
}

.blogcontentrichtext strong {
  font-weight: 500 !important;
  color: var(--brand-color--primary) !important;
}

.blogcontentrichtext a {
  color: var(--brand-color--secondary) !important;
  font-weight: 500 !important;
  text-decoration: underline !important;
}

/* Quando o strong estiver dentro do link, herda a cor do <a> */
.blogcontentrichtext a strong {
  color: inherit !important;
}

.relatedposts {
  background-color: var(--brand-color--neutral);
  padding-top: 80px;
  padding-bottom: 120px;
}

.beasellersection {
  background-image: url('../images/sample-blog.jpg');
  background-position: 50% 0;
  background-size: cover;
  height: 50vh;
}

.beasellertitlebox {
  background-color: var(--brand-color--primary);
  height: auto;
  padding-top: 48px;
  padding-bottom: 48px;
}

.beasellercontent {
  width: 40%;
}

.beasellermaintitle {
  color: var(--brand-color--white);
  letter-spacing: -1.5px;
  text-transform: none;
  margin-bottom: 16px;
  font-family: Gotham, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
}

.beasellerp {
  font-size: 16px;
  line-height: 160%;
}

.beasellerp.gray {
  color: var(--brand-color--neutral);
}

.beasellermaincontent {
  padding-top: 80px;
  padding-bottom: 80px;
}

.beasellermainwrapper {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.beasellerform {
  z-index: 9000;
  background-color: var(--brand-color--terciary);
  border-radius: 12px;
  width: 30%;
  max-width: 450px;
  padding: 32px;
  position: sticky;
  top: -20px;
}

.beasellerformtitlebox {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.beasellerformblock {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  margin-top: 24px;
  display: flex;
}

.beasellerformsubtitle {
  color: var(--brand-color--primary);
  letter-spacing: -.4px;
  font-size: 16px;
  line-height: 124%;
}

.beasellermaincontentwrapper {
  position: relative;
}

.beasellercontentbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  margin-bottom: 32px;
  display: flex;
}

.beasellerinput {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.beasellerimage {
  border-radius: 12px;
}

.beasellerbignumbers {
  background-color: var(--brand-color--neutral);
  border-radius: 32px;
  justify-content: space-between;
  align-items: center;
  padding: 32px 50px;
  display: flex;
}

.beasellerbignumberitem {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--brand-color--primary);
  text-transform: uppercase;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-family: Magistral, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 145%;
  display: flex;
}

.beasellerbignumberhighlight {
  font-size: 50px;
  line-height: 100%;
}

.highlightlist {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.highlightitem {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--brand-color--neutral);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: 19px;
  display: flex;
}

.highlightitemicon {
  width: 50px;
}

.highlightitemtitle {
  color: var(--brand-color--primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 124%;
}

.highlightitemtitlebox {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.abouthero {
  background-color: var(--brand-color--primary);
}

.abouttitlebox {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.aboutmainimage {
  border-radius: 16px;
  margin-bottom: -60px;
}

.abouttitle {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--brand-color--white);
  flex-flow: column;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
}

.abouttitlehighlightp {
  color: var(--brand-color--terciary);
  width: 30%;
  font-size: 24px;
  font-weight: 500;
  line-height: 124%;
}

.abouttitledescriptionp {
  color: var(--brand-color--neutral);
  width: 40%;
}

.aboutmaincontent {
  padding-top: 120px;
  padding-bottom: 60px;
}

.aboutmaincontent.lessmargin {
  padding-top: 20px;
}

.aboutcontentchunk {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  width: 80%;
  margin: 30px auto 20px;
  display: flex;
}

.mobile-only {
  display: none;
}

.timelinewrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
  overflow: auto;
}

.timelineitem {
  background-image: url('../images/fridge-usage.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  flex-flow: column;
  flex: none;
  justify-content: flex-end;
  align-items: stretch;
  width: 50%;
  height: 400px;
  padding: 24px;
  display: flex;
}

.timelinecontentbox {
  opacity: 1;
  background-color: #000d1fb5;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.timelineitemyear {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  color: var(--brand-color--white);
  text-transform: uppercase;
  flex-flow: column;
  width: 20%;
  font-family: Magistral, sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.timelineitemyear.withicon {
  width: auto;
  font-size: 18px;
}

.timelineitemyear.withicon.color {
  color: var(--brand-color--primary);
}

.timelineyear {
  font-size: 30px;
  line-height: 30px;
}

.textlink {
  color: var(--brand-color--secondary);
  text-decoration: underline;
}

.textlink:hover {
  color: var(--brand-color--terciary);
}

.abouthighlightcontent {
  background-color: var(--brand-color--primary);
  border-radius: 12px;
  /*margin-top: -70px;*/
  padding-top: 80px;
  padding-bottom: 48px;
}

.overlapbanner {
  margin-bottom: -70px;
}

.abouthighlightcontent.secondabout {
  margin: 0;
  padding-bottom: 0;
}

.abouthighlightcontent.noimage {
  padding-top: 32px !important;
}

.abouthighlighttext {
  color: var(--brand-color--white);
  letter-spacing: -.3px;
  font-size: 20px;
  font-weight: 500;
  line-height: 144%;
}

.visionwrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.galleryrow {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: space-between;
  align-items: normal;
  display: flex;
}

.visionbox {
  background-color: var(--brand-color--secondary);
  background-image: url('../images/resfriar-symbol-bw.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  padding: 40px;
  display: flex;
  color: white;
}

.visiontitle {
  color: var(--white);
  letter-spacing: -.8px;
  flex-flow: column;
  font-size: 40px;
  font-weight: 700;
  line-height: 132%;
}

.visionp {
  color: var(--brand-color--neutral);
  font-size: 16px;
  line-height: 150%;
}

.certificateimage {
  object-fit: scale-down;
  border-radius: 24px;
  width: 90%;
  max-height: 600px;
  margin: 0 auto 24px;
  display: block;
}

.aboutavatarimagesubtitle {
  text-align: center;
}

.abouthighlighttitlebox {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
}

.aboutimage {
  background-color: var(--brand-color--secondary);
  background-image: url('../images/resfriar-symbol-bw.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  height: 400px;
  padding: 40px;
  display: flex;
}

.producthero {
  background-color: var(--brand-color--primary);
  padding: 15px 32px;
}

.productheroimage {
  object-fit: cover;
  background-position: 0 0;
  background-size: auto;
  border-radius: 12px;
  /*max-width: 80%;           !* largura limitada a 80% *!*/
  /*height: auto;*/
  height: 45vh;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 20px;
}

.productinfobox {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  margin-top: 32px;
  margin-bottom: 24px;
  display: flex;
}

.productinfoboxwrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.producttitle {
  color: var(--brand-color--white);
  font-size: 70px;
  line-height: 110%;
}

.producttitlespan {
  color: var(--brand-color--neutral);
  text-transform: uppercase;
  font-family: Magistral, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 90%;
}

.producttitlebox {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.productactionbox {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.availability {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--brand-color--neutral);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  line-height: 100%;
  display: flex;
}

.productavailabilitybox {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  height: 15px;
}

.referencebox {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  display: flex;
}

.referencelabel {
  color: var(--brand-color--neutral);
  text-transform: uppercase;
  font-family: Gotham, sans-serif;
  font-weight: 400;
}

.referencelabel.dark {
  color: var(--brand-color--text);
  margin-bottom: 4px;
}

.referencenumber {
  color: var(--white);
  letter-spacing: .7px;
  font-family: Magistral, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 124%;
}

.productbuttonbox {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  min-width: 270px;
  display: flex;
}

.aplications {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.aplicationstagswrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.productabout {
  background-color: var(--brand-color--neutral);
  padding-top: 30px;
  padding-bottom: 40px;
}

.productaboutcenter {
  /*grid-column-gap: 8px;*/
  /*grid-row-gap: 8px;*/
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.productgallerywrapper {
  width: 40%;
  max-height: 500px;
  margin: 0 auto 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.productgallerywrapper img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.productgallerywrapper.about img{
  width: 75% !important;
  border-radius: 12px;
}


.productgallerywrapper-home {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px !important;
  /* max-height: 550px; */
  border-radius: 10px;
}

.aplicationsdetails {
  flex-flow: column;
}

.aplicationsdetailswrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-around;
  align-items: center;
  margin: 0 12px;
  /*margin-top: 40px;*/
  display: flex;
}

.aplicationsdetailstextbox {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  width: 35%;
  display: flex;
}

.aplicationsdetailsiconswrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.aplicationsdetailsiconitem {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--brand-color--text);
  color: var(--brand-color--primary);
  text-transform: uppercase;
  border-radius: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 170px;
  padding: 24px;
  font-family: Magistral, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 130%;
  display: flex;
}

.secondaryhighlight {
  color: var(--brand-color--secondary);
}

.productdetails {
  padding-top: 80px;
  padding-bottom: 80px;
}

.productdetails.componentsdetails {
  padding-bottom: 180px;
}

.detailhighlighticonbox {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  display: flex;
}

.detailbox {
  background-color: var(--brand-color--neutral);
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 400px;
  padding: 40px 40px 0;
  display: flex;
}

.detailbox.center {
  justify-content: space-between;
  align-items: center;
  width: 40%;
  padding-bottom: 0;
}

.detailbox.bigger {
  width: 60%;
}

.detailbox.highlight {
  background-color: var(--brand-color--secondary);
  color: var(--brand-color--neutral);
  width: 40%;
  padding-bottom: 40px;
}

.detailp {
  color: var(--brand-color--primary);
  max-width: 420px;
  font-size: 16px;
  line-height: 150%;
}

.detailp.white {
  color: var(--brand-color--white);
}

.detailimgbox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.detailtitlebox {
  display: flex;
}

.detailphoneimg {
  object-fit: cover;
  object-position: 50% 0%;
  height: 280px;
}

.imagegalleryfullwidth {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 400px;
}

.detailhighlightbox {
  background-color: var(--brand-color--neutral);
  opacity: 1;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  display: flex;
}

.detailhighlightlist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
  padding-bottom: 30px;
}

.detailhilighttitlebox {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.detailhighlighttitle {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  width: 40%;
  display: flex;
}

.detailhighlightinfobox {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.detailhighlightitem {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.detailhighlightnumber {
  color: var(--brand-color--secondary);
  font-family: Magistral, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 30px;
}

.detailhighlightlabel {
  color: var(--brand-color--neutral);
  text-transform: uppercase;
  font-family: Magistral, sans-serif;
  font-weight: 700;
}

.detailhighlightinfowrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.dimensionsimage {
  margin: 40px auto;
}

.descriptiontabswrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.descriptiontabswrapper.center {
  justify-content: center;
  align-items: center;
}

.descriptiontabitem {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--brand-color--white);
  color: var(--brand-color--neutral);
  background-color: #0000;
  border-radius: 32px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.descriptiontabitem:hover {
  background-color: var(--brand-color--neutral);
}

.descriptiontabitem.w--current {
  border-color: var(--brand-color--terciary);
  background-color: var(--brand-color--terciary);
}

.descriptiontabitem.w--current:hover {
  background-color: var(--brand-color--secondary);
}

.detailsdescriptionbox {
  margin-top: 48px;
  margin-bottom: 22px;
}

.productdetailsubtitle {
  grid-column-gap: 32px;
  /*grid-row-gap: 32px;*/
  flex-flow: column;
  width: 100%;
  display: flex;
}

.detailsdescriptionlist {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.detailsdescriptionitem {
  border-bottom: 1px solid #dadada26;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
}

.detailslisttitle {
  color: var(--brand-color--neutral);
  text-transform: uppercase;
  font-family: Magistral, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.detailslisttitle.info {
  /*color: var(--brand-color--terciary);*/
  color: white;
  font-size: 18px;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 70%;
}

.detailsdescriptiontextbox {
  color: var(--brand-color--text);
}

.productsrelated {
  padding-top: 60px;
}

.productrelatedgrid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
}

.productrelatedgrid.new-products {
  margin-top: -80px;
  overflow: scroll;
}

.productrelatedgrid._2 {
  grid-template-columns: 1fr 1fr;
}

.testimonialsbox {
  background-color: var(--brand-color--secondary);
  border-radius: 16px;
  padding: 72px 0 72px 48px;
}

.testimonialstitle {
  color: var(--white);
  text-align: center;
}

.testimonialsstars {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--brand-color--terciary);
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 40px;
  font-weight: 400;
  display: flex;
}

.testimonialsstarsrating {
  color: var(--brand-color--terciary);
}

.testimonialslist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  overflow: auto;
}

.testimonialsitem {
  background-image: linear-gradient(#0000002b, #0000002b), url('../images/fridge-usage.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 12px;
  flex-flow: column;
  flex: none;
  justify-content: flex-end;
  align-items: stretch;
  width: 400px;
  height: 470px;
  padding: 20px;
  display: flex;
}

.testimonialsinfobox {
  color: var(--brand-color--text);
  background-color: #000d1fb3;
  border-radius: 12px;
  padding: 16px;
}

.testimonialp {
  color: var(--brand-color--neutral);
  font-size: 16px;
}

.faq {
  padding-top: 120px;
  padding-bottom: 120px;
}

.faqwrapper {
  justify-content: space-around;
  display: flex;
}

.faqlist {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
  width: 50%;
}

.faqitem {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  background-color: var(--brand-color--neutral);
  border-radius: 12px;
  flex-flow: column;
  padding: 32px;
  display: flex;
}

.faqtitle {
  color: var(--brand-color--primary);
  letter-spacing: -.4px;
  font-size: 20px;
  font-weight: 500;
}

.faqtitlebox {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 60%;
  display: flex;
}

.horizontalproductwrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.producthorizontalwrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  width: 60%;
}

.productaplicationslist {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  margin-top: 32px;
  display: flex;
}

._404_image {
  margin-left: auto;
  margin-right: auto;
}

.navbarmobile {
  border-bottom: 1px solid #f2f2f23d;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 18px;
  display: none;
  position: relative;
}

.wheretobuyheader {
  width: 100%;
}

.contact-page_content {
  position: relative;
  overflow: hidden;
  height: auto;
}

.contact-page_content_box {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 105px;
  padding-bottom: 70px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-page_content_box_left-box_item {
  margin-bottom: 35px;
}

.contact-page_content_box_left-box_item_title {
  margin-bottom: 3px;
  font-family: 'Proxima Nova', sans-serif;
  color: black;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.contact-page_content_box_left-box_item_number {
  font-family: Adinenue, sans-serif;
  color: #3c505a;
  font-size: 40px;
  line-height: 40px;
}

.contact-page_content_box_left-box_item_number:hover {
  color: #1e73be;
}

.contact-page_content_box_left-box_item_address {
  font-family: 'Proxima Nova', sans-serif;
  color: #3c505a;
  font-size: 13px;
  line-height: 23px;
  margin-right: 6rem;
}

.contact-title {
  margin-top: 7px;
  margin-bottom: 6px;
  color: #3c505a;
  font-size: 56px;
}

.contact-title.login-title {
  text-align: center;
}

.contact-page_content_box_right-box {
  -webkit-box-flex: 0;
  -webkit-flex: 0 55%;
  -ms-flex: 0 55%;
  flex: 0 55%;
}

.contact-page_content_box_bg-grey {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 60%;
  height: 2400px;
  background-color: #f4f4f4;
}

.contact-btn-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-btn-box.curriculo {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.contact-btn-box_left.dash-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding-right: 160px;
  padding-left: 160px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.contact-btn-box_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-btn-box_right_link {
  margin-right: 18px;
  color: #3c505a;
  font-size: 12px;
  line-height: 17px;
  text-decoration: underline;
  text-transform: uppercase;
}

.button.distribuition-internal-btn {
  padding: 16px 55px 16px 25px;
  /* float: right; */
  border-color: #1e73be;
  background-color: #1e73be;
  background-position: 90% 50%;
  background-size: 18px 18px;
  -webkit-transition: all 450ms ease;
  transition: all 450ms ease;
  color: white !important;
  font-weight: 500;
  background-image: url('../images/arrow-wht-right.svg');
  font-size: 12px;
  background-position: 89% 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
}

.input.distribuition-internal-input.white.textarea {
  min-height: 120px;
  margin-top: -12px;
  padding-top: 18px;
  border-radius: 27px;
  border: 1px solid rgb(229, 229, 229);
  margin-top: 6px;
  margin-bottom: 6px;
  background: white;
}

input.denuncia-identificar,
.consulta-protocolo {
  border: 1px solid rgb(229, 229, 229) !important;
  margin-bottom: 15px !important;
  background: white;
  border-radius: 30px !important;
}

input.denuncia-identificar:hover,
.consulta-protocolo:hover {
  background: white !important;
}

h2.denuncia-identificar {
  margin-bottom: 6px;
}

#denuncia-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#consulta-denuncia-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-page_email {
  color: #3c505a;
  font-size: 20px;
  font-weight: 700;
}

#denuncia-identificar {
  margin-bottom: 15px;
}

.products-item-textbox {
  width: 100%;
  padding: 20px 20px 20px 25px;
  border-radius: 0px 0px 8px 8px;
  background-color: #fafafa;
}

.prducts-item-textbox-type {
  margin-bottom: 5px;
  font-family: Adinenue, sans-serif;
  color: #b7b7b7;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.products-item-textbox-model {
  color: #3c505a;
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.7px;
}

.distribuition-internal-form-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}


.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.productgalleryimage {
  flex: 0 0 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
}

.sliderarrow.inactive {
  opacity: 0.3;
  /*pointer-events: none;*/
}

#rd_tmgr {
  visibility: hidden !important;
}


@media screen and (max-width: 991px) {

  /* Faça a caixa pai virar coluna */
  .contact-page_content_box {
    flex-direction: column-reverse;
    padding-top: 40px;
    /* ajuste se precisar */
    padding-bottom: 40px;
    /* ajuste se precisar */
  }

  /* Ambas as colunas ocupam 100% e ganham espaço embaixo */
  .contact-page_content_box_left-box,
  .contact-page_content_box_right-box {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  /* Opcional: esconda o fundo cinza se atrapalhar */
  .contact-page_content_box_bg-grey {
    display: none;
  }

  .navbar {
    display: none;
  }

  .productgallerywrapper {
    margin: 0;
  }

  .navbar_secondmenu {
    width: 100%;
  }

  .navbarsearch {
    background-color: var(--brand-color--neutral);
    flex: none;
    width: 100%;
  }

  .navbarsearchbtn {
    background-image: url('../images/search-icon.svg');
  }

  .langselector {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero_bgvideo {
    height: 70vh;
  }

  .heromaintitle {
    font-size: 30px;
    line-height: 124%;
  }

  .titleboxwrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .titleboxwrapper._4_items,
  .titleboxwrapper.testimonialsslider {
    justify-content: space-between;
    align-items: center;
  }

  .titleboxwrapper.mobilecenter {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-content: space-between;
    align-items: center;
  }

  .secondarytitle,
  .paragraph.white.institutionalp,
  .paragraph.white.medium.internalheaderp {
    width: 100%;
  }

  .paragraph.white.timelineitemdescription,
  .paragraph.white.detailhighlightp {
    text-align: left;
    width: 100%;
  }

  .bigbanner {
    height: 50vh;
    margin-top: 32px;
  }

  .primarytitle {
    font-size: 52px;
  }

  .button {
    text-align: center;
    width: 100%;
  }

  .titleboxtextwrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .titleboxsliderwrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .productgrid {
    overflow: auto;
  }

  .productitem.searchpage {
    min-width: 100%;
  }

  .tag {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .productiteminfobox.vertical {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: none;
  }

  .bannerwrapper {
    flex-flow: column;
  }

  .productbannerwrapper {
    flex-flow: column;
  }

  .mediumbanner {
    width: 100%;
    height: 30vh;
  }

  .smallbanner {
    width: 100%;
    height: 25vh;
  }

  .productsmallbanner {
    width: 100%;
  }

  .brandsinfo {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .brandsinfolabel {
    text-align: center;
    width: 100%;
  }

  .contentwrapper {
    flex-flow: column;
  }

  .componentitem {
    width: 49%;
  }

  .componentitem.horizontal {
    flex-flow: column;
    padding-left: 9px;
    padding-right: 9px;
  }

  .beasellerbox {
    flex-flow: column;
    display: flex;
  }

  .beasellerwrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
  }

  .beasellertextbox {
    width: 100%;
  }

  .footercontactwrapper,
  .footersitemapwrapper {
    flex-flow: column;
  }

  .sitemapgrid,
  .footercompanyinfo {
    width: 100%;
  }

  .menu {
    width: 100%;
    max-width: 100%;
    display: none;
  }

  .submenu {
    display: none;
  }

  .internalheader.blogheader {
    height: auto;
  }

  .internalheadertitlebox {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .internalheadertitlebox.withimage {
    flex-flow: column;
  }

  .productlistwrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .productlistgrid {
    flex-flow: column;
  }

  .searchfilterwrapper {
    width: 100%;
    max-width: 100%;
    position: static;
  }

  .searchresultlist {
    margin-left: 0;
  }

  .buttonbox {
    flex-flow: column;
  }

  .contentdivider {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .producttypeselector {
    flex-flow: column;
  }

  .producttypeselectoritem {
    width: 100%;
  }

  .searchbuytitlebox {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .searchtitleboxcontent {
    width: 100%;
  }

  .searchbuyselection {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .searchbuyresultsitem {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .searchbuyresultsaddressbox,
  .buttonboxvertical,
  .searchbuytitlesplit {
    width: 100%;
  }

  .downloadtabs {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .downloaditem {
    flex-flow: column;
  }

  .downloadinfobox,
  .downloaditemp {
    width: 100%;
  }

  .downloadlistwrapper {
    padding: 0%;
  }

  .blogmainwrapper {
    flex-flow: column;
  }

  .blogsecondaryarticles {
    width: 100%;
  }

  .blogposthighlight {
    width: 100%;
    height: 350px;
    margin-bottom: 24px;
  }

  .blogpostitem {
    padding-left: 0;
    padding-right: 0;
  }

  .newslettertitlebox {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .newsletterp {
    width: 100%;
  }

  .newsletterform {
    flex-flow: column;
  }

  .blogpostslisttitlebox {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .blogpostslistgrid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .blogcontentwrapper,
  .blogpostmainimage {
    width: 100%;
  }

  .beasellersection {
    height: 30vh;
  }

  .beasellertitlebox {
    height: auto;
  }

  .beasellercontent {
    width: 100%;
  }

  .beasellermaincontent {
    padding-bottom: 40px;
  }

  .beasellermainwrapper {
    flex-flow: column;
  }

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

  .beasellerbignumbers {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .highlightlist {
    margin-top: 32px;
  }

  .abouttitlebox {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .abouttitle,
  .abouttitlehighlightp,
  .abouttitledescriptionp,
  .aboutcontentchunk {
    width: 100%;
  }

  .timelinecontentbox {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    padding: 14px;
  }

  .galleryrow {
    flex-flow: column;
  }

  .visionbox {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    height: auto;
  }

  .aboutimage {
    width: 100%;
    height: 300px;
  }

  .producthero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .productinfoboxwrapper {
    flex-flow: column;
  }

  .producttitlebox {
    width: 100%;
    margin-bottom: 24px;
  }

  .productactionbox {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .aplications {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .productaboutcenter {
    /*grid-column-gap: 20px;*/
    /*grid-row-gap: 20px;*/
    text-align: center;
  }

  .aplicationsdetailswrapper {
    flex-flow: column;
  }

  .aplicationsdetailstextbox,
  .aplicationsdetailsiconswrapper,
  .detailhighlighticonbox {
    width: 100%;
  }

  .detailbox.center {
    width: 100%;
    height: 370px;
  }

  .detailbox.bigger {
    width: 100%;
    height: 360px;
  }

  .detailbox.highlight {
    width: 100%;
    height: 260px;
  }

  .imagegalleryfullwidth {
    height: 360px;
  }

  .detailhighlightbox {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .detailhilighttitlebox {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .detailhighlighttitle,
  .detailhighlightinfobox {
    width: 100%;
  }

  .detailsdescriptionitem {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
  }

  .productrelatedgrid {
    grid-template-columns: 1fr 1fr;
  }

  .productrelatedgrid._2 {
    grid-template-columns: 1fr;
  }

  .faqwrapper {
    flex-flow: column;
  }

  .faqtitlebox {
    width: 100%;
    margin-bottom: 24px;
  }

  .faqlist {
    width: 100%;
  }

  .producthorizontalwrapper {
    width: 100%;
  }

  .navbarmobile {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    align-items: stretch;
    padding-top: 18px;
    display: flex;
  }

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

  .navbarmobilelinks {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex: none;
    display: flex;
  }
  .timelineitem {
    width: 600px !important;
    flex: 0 0 600px ! important;
  }
  .timeline-slider-wrapper {
    width: 600px !important;
  }

  .searchbuyresultsaddressbox .divider {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .langselector {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .productgallerywrapper {
    width: 100%;
  }

  .responsive-dots {
    width: 100% !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    width: 50rem;
  }

  .searchdropdownmain {
    width: 100%;
  }

  .blogpostimg {
    width: 100%;
    height: 200px;
  }

  .navbar_firstmenu {
    width: 50%;
  }

  .detailtext.heroabsolute {
    display: none;
  }

  .secondarytitle {
    line-height: 132%;
  }

  .paragraph.white.abouthighlightcolumns {
    column-count: 1;
  }

  .bigbanner {
    height: 26rem;
    padding: 22px;
  }

  .primarytitle {
    font-size: 32px;
  }

  .primarytitle.md {
    font-size: 39px;
  }

  .titleboxsliderwrapper {
    justify-content: space-between;
    align-items: center;
    width: auto !important;
  }

  .tag {
    justify-content: center;
    align-items: center;
  }

  .productitemimg {
    height: 200px;
  }

  .divider.vertical {
    width: 100%;
    height: 2px;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .mediumbanner {
    padding: 16px;
  }

  .institutionalvideo {
    height: 30rem;
  }

  .brandswrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .betobox {
    width: 100%;
    height: 300px;
  }

  .componentitem {
    width: 100%;
  }

  .beasellerbox {
    padding: 24px;
  }

  .menu {
    display: none;
  }

  .menulinkitem {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
  }

  .menulinkitemsecondary {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 18px;
  }

  .menusignaturetext {
    line-height: 14px;
  }

  .fixedmenus {
    display: none;
  }

  .internalheadersubtitle {
    margin-bottom: 4px;
  }

  .filterlist {
    grid-template-columns: 1fr;
  }

  .searchdropdownitem {
    flex-flow: column;
  }

  .searchdropdownitemcontent {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .downloadtabitem,
  .downloadtabitem.w--current {
    justify-content: center;
    align-items: center;
  }

  .blogposthighlight {
    height: auto;
  }

  .blogpostitemtitle {
    font-size: 18px;
    line-height: 22px;
  }

  .blogpostitem {
    flex-flow: column;
  }

  .newsletterbox {
    padding: 24px;
  }

  .newslettertitle {
    font-size: 26px;
  }

  .blogmaintitle {
    font-size: 30px;
  }

  .bloginfowrapper {
    flex-flow: column;
  }

  .blogdatewrapper {
    margin-bottom: 24px;
  }

  .blogpostinfowrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .blogpostcategorywrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .beasellermaintitle {
    font-size: 30px;
  }

  .beasellerform {
    padding: 20px;
  }

  .highlightitem {
    flex-flow: column;
  }

  .aboutmainimage {
    object-fit: cover;
    height: 300px;
  }

  .abouttitle {
    padding-top: 40px;
  }

  .timelinewrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .timelineitem {
    width: 95%;
  }

  .timelineitemyear {
    width: 100%;
  }

  .abouthighlighttext {
    font-size: 18px;
  }

  .producthero {
    padding-left: 10px;
    padding-right: 10px;
  }

  .productheroimage {
    height: 30vh;
  }

  .producttitle {
    font-size: 30px;
  }

  .producttitlespan {
    font-size: 20px;
  }

  .aplicationstagswrapper {
    text-align: center;
    flex-flow: column;
    width: 100%;
  }

  .aplicationsdetailsiconswrapper {
    flex-flow: column;
  }

  .aplicationsdetailsiconitem {
    width: 100%;
    height: auto;
  }

  .detailbox.center {
    height: auto;
  }

  .detailbox.bigger {
    height: auto;
    padding: 24px;
  }

  .detailbox.highlight {
    padding: 22px;
  }

  .detailimgbox,
  .detailhighlightitem {
    flex-flow: column;
  }

  .detailhighlightlabel {
    text-align: center;
    width: 100%;
  }

  .detailhighlightinfowrapper {
    flex-flow: column;
    width: 100%;
  }

  .descriptiontabitem {
    justify-content: center;
    align-items: center;
  }

  .productrelatedgrid {
    grid-template-columns: 1fr;
  }

  .testimonialsbox {
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonialsitem {
    width: 90%;
    height: 400px;
  }

  .faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .faqitem {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .navbarmobilefirst {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .heading {
    font-size: 50px;
  }

  .arrowdropdown {
    display: none;
  }

  .contactformdivider {
    flex-direction: column;
  }

  .contactbox {
    padding: 20px;
  }
  .timelineitem {
    width: 350px !important;
    flex: 0 0 350px ! important;
  }
  .timeline-slider-wrapper {
    width: 350px !important;
  }
}

#w-node-_3487d249-8bec-4ed5-57c9-9bd43a99e848-39d774b5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-BookItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Magistral';
  src: url('../fonts/Magistral-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-XLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-XLightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.search-input { height: auto !important; }

/* Botão flutuante: Voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateY(100px);
  right: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #fff;
  color: #0094e6;
  border: 1px solid #0094e6;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  pointer-events: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.back-to-top img {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.back-to-top:hover {
  background-color: #0094e6;
  color: #fff;
}

.back-to-top:hover img {
  filter: brightness(0) invert(1);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
