@charset "UTF-8";
/* reset.scss */
/* A simple CSS reset to remove default browser styles */
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  transition: all 0.2s ease-in-out;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Inter", "Arial Narrow", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img.lazy {
  width: 0.0625rem;
  height: 0.0625rem;
}

.desktop__only {
  display: flex;
}
@media (max-width: 1216px) {
  .desktop__only {
    display: none;
  }
}

.tablet-desktop__only {
  display: flex;
}
@media (max-width: 768px) {
  .tablet-desktop__only {
    display: none;
  }
}

.tablet__only {
  display: flex;
}
@media (min-width: 1216px) {
  .tablet__only {
    display: none;
  }
}

.mobile__only {
  display: flex;
}
@media (min-width: 768px) {
  .mobile__only {
    display: none;
  }
}

.swiper-button-prev, .swiper-button-next {
  background-image: none !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  cursor: not-allowed;
  pointer-events: auto;
}

.swiper .swiper-pagination-bullets {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 120px;
  background-color: #3D3D3D;
  cursor: pointer;
  opacity: 1;
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 32px;
  background-color: #FFFFFF;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  z-index: 1;
  background-image: none;
}
.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  display: none;
}
.swiper .swiper-button-next.swiper-button-disabled,
.swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: all;
}

/************************** Media queries breakpoints **************************/
/* Extra small screen / phone */
/* Small screen / tablet */
/* Medium screen / desktop */
/* Large screen / wide desktop */
/************************** Grid system **************************/
/* Number of columns in the grid. */
/* Padding between columns. Gets divided in half for the left and right. */
/************************** Centered container element **************************/
/************************** Creates a row **************************/
/* Generate the extra small columns */
/* Generate the small columns */
/* Generate the medium columns */
/* Generate the large columns */
/************************** Displays **************************/
/* Table Responsive */
.transition__fast {
  transition: 250ms ease-in all;
}

.component__container {
  width: -webkit-fill-available;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (min-width: 480px) {
  .component__container {
    max-width: 480px;
  }
}
@media only screen and (min-width: 768px) {
  .component__container {
    max-width: 768px;
  }
}
@media only screen and (min-width: 992px) {
  .component__container {
    max-width: 992px;
  }
}
@media only screen and (min-width: 1216px) {
  .component__container {
    max-width: 1216px;
    padding: 0;
  }
}

.component__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.component__row:before, .component__row:after {
  content: " ";
  display: table;
}
.component__row:after {
  clear: both;
}

@font-face {
  font-family: "BlocklynGrunge";
  src: url("./fonts/BlocklynGrunge.eot");
  src: url("./fonts/BlocklynGrunge.eot?#iefix") format("embedded-opentype"), url("./fonts/BlocklynGrunge.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BlocklynGrunge";
  src: url("./fonts/BlocklynGrunge-Italic.eot");
  src: url("./fonts/BlocklynGrunge-Italic.eot?#iefix") format("embedded-opentype"), url("./fonts/BlocklynGrunge-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
/* Checkout */
.spot {
  border-radius: 12px;
  overflow: hidden;
}
.spot.outstock .spot__image, .spot.outstock .spot__name, .spot.outstock .spot__price {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .spot:hover .spot__content .spot__title {
    margin-bottom: 12px;
  }
  .spot:hover .spot__content .spot__title h3 a {
    text-decoration: underline;
    color: #87C540;
  }
  .spot:hover .spot__image .spot__colors {
    bottom: 10px;
  }
}
.spot .spot__image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.spot .spot__image .spot__colors {
  position: absolute;
  bottom: -100px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spot .spot__image .spot__colors > div {
  width: 28px;
  height: 28px;
  border-radius: 1200px;
  border: 1px solid #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.spot .spot__image .spot__colors > div.active {
  border: 1px solid #141414;
}
.spot .spot__image .spot__colors > div div {
  width: 20px;
  height: 20px;
  border-radius: 1200px;
}
.spot .spot__image .image__wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.5%;
}
.spot .spot__image .image__wrapper img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.spot .spot__image a {
  width: 100%;
}
.spot .spot__image a .item__image {
  display: none;
}
.spot .spot__image a .item__image.active {
  display: block;
}
.spot .spot__image a img {
  height: auto;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .spot .spot__image:hover a .spot-overlay {
    opacity: 1;
    visibility: visible;
    transform: none;
    position: relative;
    left: 0;
  }
  .spot .spot__image:hover a .spot-main-image {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.spot .spot__image .spot__tags {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  min-height: 28px;
}
.spot .spot__image .spot__tags > *:not(:last-child) {
  margin-bottom: 4px;
}
.spot .spot__image .spot__tags > span {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #040404;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #FFF;
  border-radius: 4px;
  padding: 0 5px;
}
.spot .spot__image a img {
  max-height: unset;
  width: 100%;
}
.spot .spot__image .spot-overlay {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.spot .spot__image .wish-list-spot {
  border: 1px solid rgba(202, 138, 97, 0.1607843137);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .spot .spot__image .wish-list-spot:hover {
    background-color: #87C540;
  }
  .spot .spot__image .wish-list-spot:hover svg path {
    stroke: #FFF;
  }
}
.spot .spot__image .wish-list-spot.fill-red-300 svg path {
  stroke: #FFF;
}
.spot .spot__content {
  padding: 24px 16px;
}
.spot .spot__content .spot__form {
  width: 100%;
  height: auto;
  z-index: 2;
  margin-top: 6px;
}
.spot .spot__content .spot__form input {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #8F8F8F;
  padding: 0px 15px;
  text-align: center;
  margin: 0px;
  border: none;
  outline: none;
}
.spot .spot__content .spot__form input:first-of-type {
  display: none;
}
.spot .spot__content .spot__form input:focus {
  box-shadow: unset;
  outline: none;
}
.spot .spot__content .spot__form button {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-style: normal;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  margin-top: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0px;
  font-weight: 700;
  transition: 0.5s;
  cursor: pointer;
  opacity: 1;
  background-color: #ca8a61;
  border: 1px solid #dd6d02;
  border-radius: 8px;
  color: #fff;
}
.spot .spot__content .spot__form button:hover {
  background-color: transparent;
  color: #CA8A61;
}
.spot .spot__content .spot__form button:hover svg path {
  stroke: #CA8A61;
}
.spot .spot__content .spot__title {
  margin-bottom: 12px;
}
.spot .spot__content .spot__title h3 a {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #141414;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 52px;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .spot .spot__content .spot__title h3 a {
    font-size: 18px;
    height: auto;
  }
}
.spot .spot__content .spot__description > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #7A7A7A;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .spot .spot__content .spot__description > p {
    font-size: 11px;
    line-height: 160%;
  }
}
.spot .spot__content .spot__checkout {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .spot .spot__content .spot__checkout {
    align-items: flex-end;
  }
}
.spot .spot__content .spot__checkout .spot__cart a {
  width: 158px;
  height: 46px;
  gap: 8px;
  border-radius: 1120px;
  border: 1px solid #F5F5F5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.spot .spot__content .spot__checkout .spot__cart a:hover {
  background-color: #87C540;
  border-color: #87C540;
}
.spot .spot__content .spot__checkout .spot__cart a:hover svg path {
  stroke: #000;
}
.spot .spot__content .spot__checkout .spot__cart a span {
  font-weight: 600;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.25px;
  color: #292929;
}
.spot .spot__content .spot__checkout .price__values {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spot .spot__content .spot__checkout .price__values span.suggest {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.25px;
  color: #8F8F8F;
}
.spot .spot__content .spot__checkout .price__values .values__content {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .spot .spot__content .spot__checkout .price__values .values__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.spot .spot__content .spot__checkout .price__values .price__before {
  display: flex;
  align-items: center;
  gap: 4px;
}
.spot .spot__content .spot__checkout .price__values .price__before span:not(.discount) {
  text-decoration: line-through;
  color: #7A7A7A;
  font-weight: 300;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.25px;
}
.spot .spot__content .spot__checkout .price__values .price__before span.discount {
  font-weight: 500;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.25px;
  color: #3D3D3D;
}
.spot .spot__content .spot__checkout .price__values .price__normal {
  display: flex;
  align-items: center;
  gap: 4px;
}
.spot .spot__content .spot__checkout .price__values .price__normal span:not(.pix) {
  color: #3D3D3D;
  font-weight: 700;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.25px;
}
@media (max-width: 768px) {
  .spot .spot__content .spot__checkout .price__values .price__normal span:not(.pix) span {
    width: 100%;
    display: block;
  }
}
.spot .spot__content .spot__checkout .price__values .price__normal s {
  text-decoration: line-through;
  color: #7A7A7A;
  font-weight: 300;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0.25px;
}
@media (max-width: 768px) {
  .spot .spot__content .spot__checkout .price__values .price__normal s {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-flex;
  }
}
.spot .spot__content .spot__checkout .price__values .price__normal b {
  font-weight: 700;
  font-size: 11px;
  line-height: 160%;
  letter-spacing: 0.19px;
}
@media (max-width: 768px) {
  .spot .spot__content .spot__checkout .price__values .price__normal b {
    width: -moz-fit-content;
    width: fit-content;
    display: inline-flex;
  }
}

/* Transições definidas via Alpine */
.transition-enter,
.transition-leave {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Entrando da direita */
.enter-start {
  transform: translateX(100%);
  opacity: 0;
}

.enter-end {
  transform: translateX(0);
  opacity: 1;
}

/* Saindo para a esquerda */
.leave-start {
  transform: translateX(0);
  opacity: 1;
}

.leave-end {
  transform: translateX(-100%);
  opacity: 0;
}

#cookie-law-info-again {
  display: none !important;
}

#header {
  position: absolute;
  width: 100%;
  z-index: 100;
}
#header.header--bike {
  position: relative;
}
#header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
#header .floatingMenu {
  position: absolute;
  left: 0;
  text-align: left;
  padding: 8px;
  background: white;
  border: 1px solid #e5e5e5;
  top: calc(100% + 25px);
  width: -moz-max-content;
  width: max-content;
  flex-direction: column;
  gap: 5px;
  border-radius: 5px;
  min-width: 150px;
  z-index: 2;
  display: flex;
  visibility: hidden;
  opacity: 0;
}
#header .floatingMenu.isOpen {
  visibility: visible;
  opacity: 1;
}
#header .floatingMenu a {
  color: #141414;
  text-decoration: none;
  text-transform: capitalize;
}
#header .floatingMenu a:hover {
  text-decoration: underline;
}
#header .topbar {
  color: #fff;
  background-color: #141414;
  padding: 12px 0;
  font-size: 0.625rem;
}
@media screen and (min-width: 1023px) {
  #header .topbar {
    font-size: 0.75rem;
  }
}
#header .topbar_infoText {
  flex: 1;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #header .topbar_infoText {
    text-align: right;
    grid-column: 1/span 2;
  }
}
#header .topbar_links {
  display: none;
  gap: 8px;
  justify-content: end;
}
@media screen and (min-width: 1023px) {
  #header .topbar_links {
    display: flex;
  }
}
#header .topbar_links button {
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
#header .topbar_links-container {
  position: relative;
}
#header .topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: end;
}
@media screen and (min-width: 1024px) {
  #header .topbar .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#header .header {
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4784313725);
}
#header .header:hover {
  background: #191919;
}
#header .header .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
#header .header_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header_menu {
  display: none;
}
@media screen and (min-width: 1024px) {
  #header .header_menu {
    display: block;
  }
}
#header .header_rightitens {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2.625rem;
}
@media screen and (min-width: 1024px) {
  #header .header_rightitens {
    overflow: hidden;
  }
}
#header .header_rightitens button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0;
}
#header .header_rightitens .header_search {
  position: relative;
}
@media screen and (max-width: 1023px) {
  #header .header_rightitens .header_search {
    min-width: 18px;
  }
}
#header .header_login {
  background-color: #87C540;
  color: black;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 120px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header_login:hover {
  background-color: black;
  color: #87C540;
}
#header .header #formSearch {
  background-color: #292929;
  display: flex;
  align-items: center;
  padding: 6px 25px;
  border-radius: 50px;
}
@media screen and (max-width: 1023px) {
  #header .header #formSearch {
    position: absolute;
    left: auto;
    right: 0;
    top: -28px;
    bottom: 0;
    width: 65vw;
    height: 42px;
  }
}
@media screen and (max-width: 321px) {
  #header .header #formSearch {
    width: 62vw;
  }
}
#header .header #formSearch input {
  background: none;
  border: 0;
  padding: 10px 6px;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  #header .header #formSearch input {
    flex: 1;
  }
}
#header .header #formSearch input:focus-visible,
#header .header #formSearch input :focus {
  outline: none;
}
#header .header #formSearch input:-internal-autofill-selected {
  background-color: #292929 !important;
  color: #fff !important;
}
#header .header #formSearch input::-moz-placeholder {
  color: #CCCCCC;
}
#header .header #formSearch input::placeholder {
  color: #CCCCCC;
}

@media screen and (min-width: 1024px) {
  #header .header .header_menu .header_mobile {
    display: none !important;
  }
  #header .header .header_menu .main-menu {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 2rem;
  }
  #header .header .header_menu .main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: color 0.2s ease-in-out;
  }
  #header .header .header_menu .main-menu a:hover {
    color: var(--mainColor);
  }
  #header .header .header_menu .main-menu > li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    border-bottom: 1px solid transparent;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children {
    /* Nome é altoexplicativo, mas apartir daqui trata do submenu */
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > a {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children:hover {
    border-bottom: 1px solid var(--mainColor);
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children:hover .submenu-wrapper {
    display: block;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children:hover > a {
    color: var(--mainColor);
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper {
    /* Isso é para ficar com 100% de largura da tela */
    display: none;
    padding: 40px 0px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: #292929;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container {
    /* Esse container é para o menu ficar certinho dentro dos 100% */
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 32px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container .submenu-image {
    height: 438px;
    overflow: hidden;
    width: -webkit-fill-available;
    position: relative;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container .submenu-image img {
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    width: 100%;
    height: 438px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container .submenu-image .submenu-image-text {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: end;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0) 41.5%, rgba(20, 20, 20, 0.64) 96.5%), linear-gradient(287.3deg, rgba(26, 27, 31, 0) 10.69%, #1A1B1F 98.14%);
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container .submenu-image .submenu-image-title {
    font-family: Anton, Arial, sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 130%;
    text-transform: uppercase;
    color: white;
    padding: 0px 24px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container .submenu-image .submenu-image-desc {
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    padding: 0px 24px 24px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu {
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li {
    /*
     Aqui trata das categorias de segundo nível
     que são exibidas no menu principal
    */
    width: 251px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu .sub-menu {
    display: none;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li:hover.menu-item-has-children {
    padding-right: 410px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li:hover > a {
    background: #525252;
    color: #fff;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li:hover > .sub-menu {
    display: grid;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li.menu-item-has-children > a::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../assets/chevron-right.svg");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: left center;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > a {
    padding: 16px 0 16px 16px;
    border-bottom: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu {
    left: 250px;
    padding: 0 32px;
    min-width: 423px;
    position: absolute;
    top: 0;
    width: -moz-fit-content;
    width: fit-content;
    right: auto;
    height: -webkit-fill-available;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    text-align: center;
    gap: 16px;
    height: 438px;
    overflow: auto;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu > li {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: start;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu > li.all-products {
    grid-column: 1/-1;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu .submenu-title {
    grid-column: 1/-1;
    text-align: left;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    padding: 17px 0;
    border-bottom: 1px solid white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu .submenu-title::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../assets/arrow-left-02.svg");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: left center;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu a {
    /*
        Essa é a estiliação das categorias de terceiro nível
        que são exibidas no menu principal
    */
    color: #B8B8B8;
  }
  #header .header .header_menu .main-menu > li.menu-item-has-children > .submenu-wrapper > .container > .sub-menu > li > .sub-menu a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 1023px) {
  #header .header .header_menu {
    display: block;
    position: fixed;
    top: -34px;
    bottom: 0;
    left: 0;
    width: 75vw;
    height: 100dvh;
    z-index: 99;
    background: black;
  }
  #header .header .header_menu .header_desktop {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) and (max-width: 475px) {
  #header .header .header_menu {
    width: 95vw;
  }
}
@media screen and (max-width: 1023px) {
  #header .header .header_menu .submenu-image {
    display: none;
  }
  #header .header .header_menu a {
    color: #CCCCCC;
    text-decoration: none;
  }
  #header .header .header_menu:not(.active) {
    transform: translateX(-200vw);
  }
  #header .header .header_menu .header_mobile {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  #header .header .header_menu .header_mobile .logo_area,
  #header .header .header_menu .header_mobile .contact_links {
    background-color: #292929;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  #header .header .header_menu .header_mobile .logo_area {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  #header .header .header_menu .header_mobile .logo_area > div {
    margin-top: 10px;
  }
  #header .header .header_menu .header_mobile .contact_links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
  }
  #header .header .header_menu .header_mobile #menu-default * {
    transition: none !important;
  }
  #header .header .header_menu .header_mobile #menu-default > li {
    padding: 22px 20px;
  }
  #header .header .header_menu .header_mobile #menu-default > li.menu-item-has-children a,
  #header .header .header_menu .header_mobile #menu-default > li .menu-item-has-children a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .header .header_menu .header_mobile #menu-default > li.menu-item-has-children > a:after,
  #header .header .header_menu .header_mobile #menu-default > li.menu-item-has-children > a .submenu-item-span,
  #header .header .header_menu .header_mobile #menu-default > li .menu-item-has-children > a:after,
  #header .header .header_menu .header_mobile #menu-default > li .menu-item-has-children > a .submenu-item-span {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("../assets/chevron-right.svg");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: left center;
  }
  #header .header .header_menu .header_mobile #menu-default > li.active > a {
    background: #87c540;
    color: #fff;
    height: 84px;
    left: 0;
    position: absolute;
    top: -84px;
    transition: none;
    width: calc(100% - 40px);
    z-index: 1;
    padding: 0px 20px;
    overflow: auto;
  }
  #header .header .header_menu .header_mobile #menu-default > li.active > a:after {
    transform: rotate(90deg);
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu {
    display: none;
    overflow: auto;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active {
    display: block !important;
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 24px;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active a {
    padding: 22px 0px;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active a::after {
    display: none;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active .menu-item-has-children > a {
    flex-direction: row-reverse;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active .menu-item-has-children.active > a > span {
    transform: rotate(90deg);
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active .sub-menu:not(.active) {
    display: none;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu.active .sub-menu.active {
    display: block;
    padding-left: 25px;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu .sub-menu {
    position: relative;
  }
  #header .header .header_menu .header_mobile #menu-default > li > .sub-menu .sub-menu .sub-menu {
    display: none;
  }
  #header .header .header_menu .menu-container {
    flex: 1;
    position: relative;
  }
}

#footer-svg {
  margin: auto auto 0 auto;
}
#footer-svg,
#footer-svg svg {
  width: 100%;
  height: 100%;
  max-width: 1440px;
}
#footer-svg svg {
  position: relative;
  bottom: -2px;
}

#footer {
  background-color: #73AF33;
  color: white;
  padding: 64px 0;
}
#footer .footer .row {
  display: flex;
  align-items: stretch;
  justify-content: start;
  gap: 12px;
}
@media screen and (max-width: 1023px) {
  #footer .footer .row {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  #footer .footer .row {
    gap: 64px;
  }
}
#footer .footer-title {
  font-family: "Roboto", "Anton", "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0%;
  margin-bottom: 24px;
}
#footer .footer li,
#footer .footer li a {
  font-family: "Roboto", "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0%;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
#footer .footer li a:hover {
  text-decoration: underline;
}
#footer .footer li + li {
  margin-top: 16px;
}
@media screen and (max-width: 1023px) {
  #footer .footer .separation-line {
    width: 100%;
    height: 1px;
    background-color: #fff;
  }
  #footer .footer .separation-line img {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  #footer .footer .social-midia ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
#footer .footer_newsletterArea {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-evenly;
  text-align: left;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #footer .footer_newsletterArea {
    max-width: 423px;
  }
}
#footer .footer_newsletterArea p {
  font-family: "Roboto", "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
}
#footer .footer_newsletterArea form {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-evenly;
  text-align: left;
  gap: 24px;
}
#footer .footer_newsletterArea form input[type=email],
#footer .footer_newsletterArea form input[type=text] {
  width: 100%;
  border: 1px solid #fff;
  padding: 16px 24px;
  background-color: transparent;
  color: #fff;
  font-family: "Roboto", "Anton", "Inter", sans-serif;
  border-radius: 50px;
  max-width: -webkit-fill-available;
}
#footer .footer_newsletterArea form input[type=email]::-moz-placeholder, #footer .footer_newsletterArea form input[type=text]::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
#footer .footer_newsletterArea form input[type=email]::placeholder,
#footer .footer_newsletterArea form input[type=text]::placeholder {
  color: #fff;
  opacity: 1;
}
#footer .footer_newsletterArea form button,
#footer .footer_newsletterArea form input[type=submit] {
  width: 75%;
  padding: 16px 24px;
  background-color: #000000;
  color: #fff;
  font-family: "Roboto", "Anton", "Inter", sans-serif;
  font-weight: 500;
  font-size: 16pxpx;
  letter-spacing: 0.02em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  #footer .footer_newsletterArea form button,
  #footer .footer_newsletterArea form input[type=submit] {
    width: 100%;
  }
}
#footer .footer_newsletterArea form button:hover,
#footer .footer_newsletterArea form input[type=submit]:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  color: rgb(45.5, 45.5, 45.5);
}
#footer .footer_newsletterArea form span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#footer .footer_newsletterArea form span,
#footer .footer_newsletterArea form p,
#footer .footer_newsletterArea form a {
  color: #fff;
  font-family: "Roboto", "Anton", "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0.02em;
}
#footer .footer_navArea {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  text-align: left;
  gap: 64px;
  flex: 1;
}
@media screen and (max-width: 1023px) {
  #footer .footer_navArea {
    gap: 34px;
    margin-top: 34px;
  }
}
#footer .footer_navArea .footer_menus {
  display: flex;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  gap: 12px;
}
@media screen and (max-width: 1023px) {
  #footer .footer_navArea .footer_menus {
    flex-direction: column;
  }
}
#footer .footer_navArea .grid-menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  #footer .footer_navArea .grid-menus {
    max-width: 551px;
  }
}
@media screen and (max-width: 1023px) {
  #footer .footer_navArea .grid-menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 14px;
  }
}
@media screen and (max-width: 375px) {
  #footer .footer_navArea .grid-menus {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
#footer .footer_navArea .store-location {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#footer .footer_navArea .store-location,
#footer .footer_navArea .store-location a,
#footer .footer_navArea .store-location li,
#footer .footer_navArea .store-location span,
#footer .footer_navArea .store-location p {
  font-family: "Inter", "Anton", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration-thickness: 0%;
}
#footer .footer_navArea .store-location a {
  color: white;
}
@media screen and (min-width: 1024px) {
  #footer .footer_navArea .store-location {
    max-width: 433px;
  }
}
@media screen and (max-width: 1023px) {
  #footer .footer_navArea .store-location span br {
    display: none;
  }
}

:root {
  --mainColor: #87C540;
}

body {
  background-color: #000;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  min-height: 100dvh;
}

body {
  min-height: inherit;
}

.container {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}

.interaction {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }
}
