/* ****** AJUSTES ESPECIFICOS PARA O TEMPLATE DE MARKETPLACE ****** */




.bg-white {
  background-color: white;
}

/* HOME HERO */

.hero-cta-banner {
  display: block;
  width: 100%;
  max-height: 500px;
  height: 100%;
}

.hero-cta-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 479px) {
  .hero-cta-banner {
    max-height: none;
  }
}

.card-config {
    display: grid;
    grid-template-columns: 40% 60%;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background-color: var(--color-banner);
}

.card-config .card-text {
  display: flex;
  flex-direction: column;
  color: white;
  justify-content: space-between;
  margin: 30px;
  word-wrap: break-word;
  max-height: 80%;
  overflow: auto;
}

.card-config .card-text h2 {
    font-size: 48px;
    line-height: 48px;
}

.card-config .card-text .cta {
    border-radius: 4px;
    border-width: 1px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    max-width: 250px;
    padding: 8px 35px;
    text-decoration: none;
    margin-top: 30px;
}

.card-config .card-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

.card-config .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .card-config {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 0;
        max-height: 800px;
    }

    .card-config .card-text {
        border-radius: 12px 12px 0 0;
        order: 1;
    }

    .card-config .card-text h2 {
      font-size: 24px;
      line-height: 24px;
    }

    .card-config .card-image {
        border-radius: 0 0 12px 12px;
        order: 2;
        min-height: 200px;
    }
    .card-config .card-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* HERO BANNER */
.banner-slider-container {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.banner-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
  width: 100%;
}

.banner-slide {
  min-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.4s;
}

.banner-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 18px 0 14px 0;
  z-index: 2;
}

.banner-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms cubic-bezier(.2,.9,.2,1);
  box-shadow: none;
}

.banner-slider-container:hover .banner-nav-button,
.banner-slider-container:focus-within .banner-nav-button {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.banner-nav-button.left {
  left: 10px;
}

.banner-nav-button.right {
  right: 10px;
}

.banner-nav-button svg {
  width: 14px;
  height: 14px;
  display: block;
}

@media (max-width: 479px) {
  .banner-nav-button {
    display: none !important;
  }
}

.banner-dot {
  height: 14px;
  width: 14px;
  background: var(--color-border);
  border-radius: 50%;
  transition: width 0.4s cubic-bezier(.77, 0, .18, 1), background 0.3s;
  cursor: pointer;
  position: relative;
}

.banner-dot.active {
  width: 38px;
  height: 14px;
  background: #2575fc;
  border-radius: 7px;
}

.horizontal-separator {
  display: flex;
  margin:auto;
  width: 98vw;
  height: 2px;
  background-color: #ededf1;
  border-radius: 5px;
}
/* HOME CATEGORY ICONS */

.categories-nav {
  position: relative;
  max-width: 80vw;
  margin: auto;
  padding-bottom: 1rem;
  overflow: hidden;
}

.categories-nav .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

/* Container dos cards com carrossel horizontal */
.categories-nav__list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  width: fit-content;
  padding: 0;
  flex-wrap: nowrap; /* impede quebra de linha */
}

/* Cada card de categoria */
.categories-nav__item {
  flex: 0 0 auto;
  width: 125px;
  height: 84px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  border: 1px solid #CCCCCC;
  justify-content: center;
}

/* Link interno */
.categories-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-decoration: none;
  text-align: center;
  color: var(--color-text);
}

.categories-nav__link:hover {
  background: var(--color-bg-light);
}

/* Ícone */
.categories-nav__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.categories-nav__icon.active {
  filter: none;
}

/* Título */
.categories-nav__title {
  font-size: 13px;
  font-weight: 600;
}

.categories-nav__title.active {
  font-weight: bold;
}
/* Oculta botões caso necessário (classe usada no script) */
.arrow.hidden {
  display: none;
}

/* PRODUCT LISTING */

.products_config {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
  overflow: hidden;
}

.products_config .product_title {
  margin-bottom: 16px;
  font-weight: 700;
}

.products_config .product_cards {
  display: flex;
  list-style: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0 0 16px 0;
  gap: 16px;
  will-change: transform;
  touch-action: pan-y;
}

@media (max-width: 767px) {
  .products_config .product_cards {
    margin-left: 20px;
  }
}

.products_config .product_cards .product_card {
  display: flex;
  position: relative;
  flex-direction: column;
  max-width: 300px;
  min-width: 220px;
  width: 80vw;
  height: auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 4px 0px #D1D1D133;
  margin: 0;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.products_config .product_cards .product_card .sticker-discount {
    display: flex;
    position: absolute;
    margin-top: 65%;
    left: 10px;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 14px;
    gap: 10px;
}

.products_config .product_cards .product_card .sticker-discount svg {
  width: 20px;
  height: 20px;
}

.products_config .product_cards .product_card .sticker-discount span {
  font-weight: 500;
  display: flex;
  align-items: center;
}

.products_config .product_cards .product_card a {
  display: flex;
  position: relative;
  text-decoration: none;
  color: inherit;
  flex-direction: column;
  height: 100%;
}

.products_config .product_cards .product_card .main-image {
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.products_config .product_cards .product_card .product_infos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: inherit;
}

.products_config .product_cards .product_card .product_infos .infos {
  display: flex;
  flex-direction: column;
  margin: 8px;
}

.products_config .product_cards .product_card .product_infos .infos .breadcrumb {
  color: rgba(124, 123, 123, 1);
  margin: 0;
  padding: 0;
}

.products_config .product_cards .product_card .product_infos .infos .title {
  color: var(--Grey-800, rgba(51, 51, 51, 1));
  margin: 0;
  padding: 0;
}

.products_config .product_cards .product_card .product_infos .infos .seller {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 0;
  font-weight: 700;
}

.products_config .product_cards .product_card .product_infos .infos .seller img {
  max-height: 32px;
  height: 100%;
  width: 100%;
  max-width: 32px;
}

.products_config .product_cards .product_card .product_infos .price {
  display: flex;
  flex-direction: column;
  margin: 8px;
  gap: 8px;
}

.products_config
  .product_cards
  .product_card
  .infos
  .price
  .message_value {
  font-weight: 600;
  font-size: 11px;
  color: var(--color-text);
}

.products_config .product_cards .product_card .product_infos .price .value {
  font-weight: 700;
  font-size: 23px;
  color: var(--color-main);
}

.arrow {
  display: flex;
  position: absolute;
  align-self: anchor-center;
  align-items: center;
  margin: 0;
  background: rgba(255, 255, 255, 1);
  color: #ccc;
  border: 1px solid #eeeef2;
  border-radius: 4px;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: rgb(255, 255, 255);
  filter: blur(0px);
  opacity: 1;
}

.arrow-left {
  left: 8px;
}

.arrow-right {
  right: 8px;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.section_images_product {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 80vw;
  margin: 40px auto;
  overflow: hidden;
}

.section_images_product .images_product {
  display: flex;
  list-style: none;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0 0 16px 0;
  gap: 16px;
  will-change: transform;
  touch-action: pan-y;
}

.section_images_product .image-product {
  flex-shrink: 0;
  width: 250px;
  border-radius: 8px;
  overflow: hidden;
}

.section_images_product .image-product img {
  display: block;
  width: 250px;
  height: 300px;
  object-fit: cover;
}

/* Dots for mobile navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  margin-top: 0;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  background: #bbb;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-block;
}

.carousel-dot.active {
  background: var(--color-main);
}

@media (max-width: 991px) {
  .products_config .product_cards .product_card {
    max-width: 260px;
  }
}

@media (max-width: 767px) {
  .products_config .product_cards .product_card {
    max-width: 80vw;
  }
  .products_config {
    max-width: 100vw;
  }
}

@media (max-width: 479px) {
  .products_config .product_cards .product_card {
    min-width: 85vw;
    max-width: 80vw;
  }
  .products_config {
    max-width: 100vw;
  }
  .product_title {
    margin: 20px 0 10px 14px;
    font-size: 1.15em;
  }
}


/* HOME PRODUCT LIST */

.header-product {
  display: flex;
  flex-direction: column;
  width: 80vw;
  margin: 10px auto 0 auto;
  gap: 10px;
}

.breadcrumb {
  color: #aaa7a7;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.breadcrumb a {
  text-decoration: none;
  color: inherit;
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide img {
  width: 250px;
  height: 300px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.content-product {
  display: flex;
  flex-direction: row;
  width: 80vw;
  margin: 10px auto 0 auto;
  gap: 10px;
}

.content-product .main {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 80%;
  width: 100%;
}

.content-product .main .title-config h1 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--color-text);
}

.content-product .main .title-config .seller-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.content-product .main .title-config .seller-info img {
  width: 100%;
  max-width: 32px;
  height: 100%;
  max-height: 32px;
  border-radius: 4px;
  object-fit: contain;
}
.content-product .main .title-config .seller-info h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.content-product .main .contact {
  display: flex;
  gap: 20px;
}
.content-product .main .contact .group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}

.content-product .main .contact .group .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.content-product > .main > .contact > .group > .text > h2,
p {
  color: #393734;
  margin: 0;
  padding: 0;
}
.content-product > .main > .contact > .group > .text > a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  color: #d56a2c;
}

.content-product .main .description {
  display: flex;
  flex-direction: column;
  background-color: #fff3dd;
  padding: 20px;
  border-radius: 8px;
  gap: 20px;
  font-family: var(--font-family);
}

.content-product .main .description h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.content-product .main .description .see-more {
  display: flex;
  gap: 5px;
  cursor: pointer;
  margin: 0 auto;
  width: 150px;
  color: #d56a2c;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
}

/* FAQ SESSION */

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    max-height: 100px;
    opacity: 1;
  }
}

.content-product .main .faq-lista {
  display: grid;
  grid-column: 2 / 4;
}

.content-product .main .js-accordion dt.opened {
  background-color: #e1e1e1;
  border-radius: 8px;
}

.content-product .main .faq-lista dt {
  position: relative;
  display: flex;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #464646;
  font-size: 1.3em;
  background-color: transparent;
  border-radius: 0px;
  box-shadow: 0 1px 0 0 #bdbdbd;
  padding: 10px;
  font-family: var(--font-family);
}

.content-product .main .faq-lista dt .right {
  position: absolute;
  top: 10px;
  right: 20px;
  transition: transform 0.3s;
  transform: rotate(180deg);
}

.content-product .main .faq-lista dt.opened .right {
  transform: rotate(0deg);
}

.content-product .main .faq-lista dd {
  display: block;
  margin-bottom: 0.5rem;
  margin-left: 30px;
}

.content-product .main .js .js-accordion dd {
  display: none;
}

.content-product .main .js-accordion dt {
  cursor: pointer;
}

.content-product .main .js-accordion dd.opened {
  display: block;
  animation: slideDown 0.5s backwards;
}

.content-product .details {
  display: flex;
  width: 20vw;
  flex-direction: column;
  gap: 20px;
}
.content-product .details .card-aside, .content-product .main .card-mobile {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.content-product .details .card-aside .line-design, .content-product .main .card-mobile .line-design {
  width: calc(100% - 30px);
  height: 2px;
  background-color: #004a27;
  margin: 0 auto;
}

.content-product .details .card-aside .cta-items, .content-product .main .card-mobile .cta-items {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

.content-product .details .card-aside .cta-items .text-from, .content-product .main .card-mobile .cta-items .text-from {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.content-product .details .card-aside .cta-items .box-price, .content-product .main .card-mobile .cta-items .box-price {
  font-family: var(--font-family);
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  padding: 0;
  margin: 0;
}

.content-product .details .card-aside .cta-items .box-price .price, .content-product .main .card-mobile .cta-items .box-price .price {
  font-weight: 700;
  font-size: 25px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #d56a2c;
}

.content-product .details .card-aside .cta-items .box-price .details, .content-product .main .card-mobile .cta-items .box-price .details {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  width: 50%;
}

.content-product .details .card-aside .cta-items .parcel, .content-product .main .card-mobile .cta-items .parcel {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #7c7c7c;
}

.content-product .details .card-aside .cta-items .cta-button, .content-product .main .card-mobile .cta-items .cta-button {
  background-color: var(--color-main);
  color: var(--color-main-contrast);
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 479px) {
  .hide-mobile-600 {
    display: none !important;
  }
}

.content-product .details .card-aside .tarif {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}

.content-product .details .card-aside .tarif .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: var(--font-family);
}

.content-product .details .card-aside .tarif .content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.content-product .details .card-aside .tarif .content p {
  font-size: 12px;
  line-height: 16px;
  vertical-align: middle;
}
.content-product .details .card-aside .tarif .cta-button {
  border: 1px solid rgba(0, 74, 39, 1);
  background-color: transparent;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #004a27;
  font-weight: bold;
}

.main .card-mobile {
  display: none !important;
}

.main .card-mobile .cta-items {
  width: 100%;
}

.main .card-mobile .cta-items .box-price  .details {
  display: block;
}

.go-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  cursor: pointer;
  transform: scale(1);
  transition: 0.2s;
  color: white;
  background-color: var(--color-main);
  width: 45px;
  height: 45px;
  border-radius: 8px;
  border-width: 1px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.go-to-top:hover {
  color: white;
  opacity: 1;
  transform: scale(1.01);
}

.go-to-top[title]:hover::before {
  content: attr(title);
  position: absolute;
  left: -210%;
  top: 50%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  font-size: 1em;
  white-space: nowrap;
  border-radius: 5px;
  transform: translateY(-50%);
}

.go-to-top[title]:hover::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-style: solid;
  border-color: transparent #000 transparent transparent;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .go-to-top {
    bottom: 20px;
    right: 16px;
  }
}


/* // Mobile */
@media (max-width: 991px) {
  .content-product .main {
    max-width: 100vw;
    width: 100vw;
  }
  .content-product .details {
    display: none;
  }
  .main .card-mobile {
    display: flex !important;
  }
  .main .card-mobile .cta-items .cta-button {
    margin: 0;
    width: 100%;
    max-width: 96%;
  }

}


/* SELECTIONS */
.header-selection {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.header-selection .breadcrumb {
  color: #aaa7a7;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}
.header-selection .breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.header-selection .banner-container {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.header-selection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.header-selection .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.header-selection .text-config {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30%;
  left: 10%;
  text-align: left;
  gap: 30px;
  z-index: 2;
}

.header-selection .title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.header-selection .subtitle {
  font-size: 1.2rem;
  margin: 0;
}

/* ANIMATIONS  */
.js .js-scroll {
  transition: all 0.3s;
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
}
.js .js-scroll.left {
  transform: translate3d(20px, 0, 0);
}
.js .js-scroll.start {
  transform: translate3d(0, -20px, 0);
}
.js .js-scroll.end {
  transform: translate3d(0, 20px, 0);
}
.js .js-scroll.active-animation {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hub-config {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 48px 0;
}

.hub-title-config {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  margin-bottom: 16px;
}

.hub-title-config h1 {
  padding: 0;
  margin: 0;
  color: var(--color-text);
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
}

.hub-title-config span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-secondary);
}

.hub-list {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.2fr;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0px 0px 0px 0px #d1d1d1, 0px 0px 1px 0px #d1d1d1fa,
    0px 2px 2px 0px #d1d1d1d9, 0px 4px 2px 0px #d1d1d180,
    0px 6px 3px 0px #d1d1d126, 0px 10px 3px 0px #d1d1d105;
}

.hub-list picture {
  display: flex;
  grid-row: 1;
  align-self: stretch;
}

.hub-list picture img {
  width: 288px;
  height: 100%;
  max-height: 210px;
  object-fit: cover;
  border-radius: 16px;
}

.hub-list-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-row: 1;
}

.hub-list-info h2 {
  color: var(--color-text);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  margin: 0;
}

.hub-list-address {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: #595959;
}

.hub-list-address-separator {
  color: #595959;
  font-size: 16px;
  font-weight: bold;
  margin: 0 6px;
  vertical-align: middle;
}

.hub-list-address-city {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  vertical-align: middle;
}

.hub-list-address-city svg {
  flex-shrink: 0;
}

.hub-list-tags {
  display: flex;
  gap: 8px;
}

.hub-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #ccc;
  background-color: #f7fafd;
  padding: 4px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-secondary);
  border-radius: 4px;
}

.hub-list-coupon-info {
  font-family: var(--font-family);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text);
  border: 1px dashed #12b76a;
  padding: 8px;
  border-radius: 8px;
}

.hub-list-coupon-info i {
  text-transform: capitalize;
  font-weight: bold;
  color: #12b76a;
}

.hub-list-side-coupon {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-row: 1;
}

.hub-cta-with-coupon {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #e8fdf3;
  border-radius: 16px;
  padding: 8px;
}

.hub-coupon-applied {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  padding: 8px;
  color: #0e8b51;
}

.hub-price-info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text);
  margin-top: 8px;
}

.hub-price-value {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hub-old-price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: line-through;
  color: #999999;
}

.hub-new-price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color-text-secondary);
}

.hub-cta {
  display: block;
  background-color: #009e59;
  padding: 8px;
  border-top: 1px solid #009e59;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hub-cta:hover {
  background-color: #007a47;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 158, 89, 0.3);
}

.hub-cta.planne-widget,
.hub-cta.planne-widget-product-adder {
  all: unset !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}

.hub-cta.planne-widget div,
.hub-cta.planne-widget-product-adder div {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.hub-cta.planne-widget button,
.hub-cta.planne-widget-product-adder button {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: #009e59 !important;
  padding: 8px !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  color: white !important;
  text-align: center !important;
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  font-style: normal !important;
  line-height: 100% !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.hub-cta.planne-widget button:hover,
.hub-cta.planne-widget-product-adder button:hover {
  background: #007a47 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 158, 89, 0.3) !important;
}

.hub-preview-offer {
  display: flex;
  border: 1px solid #595959;
  border-radius: 8px;
  padding: 8px;
  justify-content: space-between;
  align-items: center;
}

.hub-preview-offer p {
  padding: 4px;
  margin: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
}

.hub-cta-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background-color: transparent;
  border: 1px solid #595959;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
}

.hub-list-offers h4 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  padding: 0;
  margin: 0;
}

.hub-offer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: white;
  padding: 16px;
  border-radius: 8px;
  gap: 16px;
  border: 1px solid #b3b3b3;
}

.hub-offer-info {
  display: flex;
  gap: 8px;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  text-align: left;
}

.hub-offer-info h5 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text);
  margin: 0;
  padding: 0;
}

.hub-offer-info p {
  display: flex;
  gap: 4px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-muted);
  margin: 0;
  padding: 0;
}

.hub-offer-attributes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hub-offer-attr {
  display: flex;
  gap: 4px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-text-muted);
  margin: 0;
  padding: 0;
}

.hub-offer-attr-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hub-offer-attr-icon svg {
  width: 16px;
  height: 16px;
}

.hub-tag-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hub-tag-icon svg {
  width: 14px;
  height: 14px;
}

.hub-offer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #009e59;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  border: 1px solid #009e59;
  width: 100%;
  max-width: 200px;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.hub-offer-cta:hover {
  background-color: #009e59;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 158, 89, 0.2);
}

.hub-offer-cta svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.hub-list.hidden {
  display: none;
}

.hub-see-all {
  display: block;
  max-width: 150px;
  width: 100%;
  margin: 16px auto;
  padding: 12px 24px;
  background-color: #fff;
  color: #009e59;
  border: 1px solid #009e59;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hub-see-all:hover {
  background-color: #007a47;
  color: white;
}

.hub-see-all.hidden {
  display: none;
}

.hub-empty-state {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.hub-list-offers {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  border-radius: 8px;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-20px);
}

.hub-list-offers.expanded {
  display: flex;
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .hub-list-offers.expanded {
    padding: 16px;
  }
}

.hub-cta-offer svg {
  transition: transform 0.3s ease;
}

.hub-cta-offer.expanded svg {
  transform: rotate(180deg);
}

/* Modal Styles */
.hub-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hub-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.hub-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 575px;
  width: 100%;
  position: relative;
  transform: scale(0.8) translateY(20px);
  transition: transform 0.3s ease;
}

.hub-modal-overlay.active .hub-modal-content {
  transform: scale(1) translateY(0);
}

.hub-modal-header {
  padding: 24px;
  text-align: center;
}

.hub-modal-header .separator {
  width: 100%;
  height: 2px;
  background-color: #e8e8e8;
  margin: 16px 0;
}

.hub-modal-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.hub-modal-logos img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
}

.hub-modal-message h3,
.hub-modal-message p {
  color: var(--color-text);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  text-align: center;
}

.hub-modal-arrow {
  width: 24px;
  height: 24px;
  color: #999;
}

.hub-modal-product-name {
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.hub-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}

.hub-modal-btn {
  width: 200px;
  box-sizing: border-box;
  padding: 12px 0;
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hub-modal-btn-primary {
  background-color: #009e59;
  color: #fff;
}

.hub-modal-btn-primary:hover {
  background-color: #008548;
}

.hub-modal-btn-secondary {
  background-color: transparent;
  color: #009e59;
  border: 1px solid #009e59;
}

.hub-modal-btn-secondary:hover {
  background-color: var(--color-bg-light);
}

.hub-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.hub-modal-close:hover {
  background-color: var(--color-bg-light);
}

@media (max-width: 767px) {
  body {
    padding: 0;
  }

  .hub-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .hub-list picture {
    grid-row: auto;
  }

  .hub-list picture img {
    width: 100%;
    height: 220px;
    border-radius: 16px 16px 0 0;
  }

  .hub-list-info {
    grid-row: auto;
    padding: 16px;
    gap: 12px;
  }

  .hub-list-info h2 {
    font-size: 17px;
  }

  .hub-list-tags {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hub-list-side-coupon {
    grid-row: auto;
    padding: 0 16px 16px;
  }

  .hub-cta-with-coupon {
    padding: 12px;
  }

  .hub-price-info {
    margin-top: 0;
  }

  .hub-cta {
    width: 100%;
    box-sizing: border-box;
  }

  .hub-preview-offer {
    flex-direction: row;
    align-items: center;
  }

  .hub-cta-offer {
    white-space: nowrap;
  }

  .hub-list-offers {
    grid-column: 1;
    padding: 0 16px 16px;
  }

  .hub-offer {
    flex-direction: column;
  }

  .hub-offer-cta {
    width: 100%;
    max-width: 100%;
  }

  .hub-title-config {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hub-title-config h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .hub-modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .hub-modal-header {
    padding: 16px;
  }

  .hub-modal-body {
    padding: 16px;
  }

  .hub-modal-actions {
    flex-direction: column-reverse;
    align-items: center;
    align-self: stretch;
    gap: 8px;
    margin-bottom: 0;
  }

  .hub-modal-btn {
    width: 100%;
    padding: 10px 8px;
    font-size: 14px;
  }
}

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hub-config {
  animation: fadeInUp 0.8s ease;
}

.hub-list {
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.hub-list:nth-child(2) { animation-delay: 0.1s; }
.hub-list:nth-child(3) { animation-delay: 0.2s; }
.hub-list:nth-child(4) { animation-delay: 0.3s; }
.hub-list:nth-child(5) { animation-delay: 0.4s; }
.hub-list:nth-child(6) { animation-delay: 0.5s; }

.hub-navbar-logo {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hub-searcher {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #D2D2D2;
  border-radius: 32px;
  padding: 8px 16px;
  gap: 10px;
}

.hub-searcher-input {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
}

.hub-searcher-input svg {
  flex-shrink: 0;
}

.hub-searcher-input input:focus,
.hub-searcher-input input:focus-visible {
  outline: none;
  box-shadow: none;
  border: none;
}

.hub-searcher-input input {
  width: 100%;
  border: none;
  color: #393939;
  font-size: 16px;
  padding: 8px;
}

.hub-searcher button {
  background-color: #009E59;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.hub-search-responsive-wrapper {
  display: none;
}

.hub-search-responsive {
  display: none;
  cursor: pointer;
}

.hub-search-mobile-expanded {
  display: none;
}

.hub-cart-responsive {
  display: none;
  cursor: pointer;
}

.hub-hamburger-responsive {
  display: none;
  cursor: pointer;
}

.hub-nav-menu {
  display: none;
}

.hub-nav-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-family-secondary);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.05);
  transition: background-color 0.2s ease;
}

.hub-nav-menu-item:hover {
  background-color: hsla(0, 0%, 100%, 0.05);
}

.hub-nav-menu-item svg {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .hub-searcher {
    display: none;
  }

  .hub-search-responsive-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #151515;
  }

  .hub-search-responsive {
    display: flex;
    padding: 16px;
  }

  .hub-cart-responsive {
    display: flex;
    padding: 16px;
    color: #151515;
  }

  .hub-hamburger-responsive {
    display: flex;
    padding: 16px;
  }

  .hub-nav-menu {
    background-color: #151515;
  }

  .navbar_content {
    position: relative;
  }

  .hub-search-mobile-expanded.active {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-navbar-bg);
    z-index: 100;
    padding: 0 16px;
  }

  .hub-searcher-mobile {
    display: flex;
    align-items: center;
    flex: 1;
    border: 1px solid #D2D2D2;
    border-radius: 32px;
    padding: 8px 16px;
    gap: 8px;
  }

  .hub-searcher-mobile input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #393939;
    background: transparent;
    min-width: 0;
    background-color: #fff;
    padding: 8px;
  }

  .hub-searcher-mobile input:focus,
  .hub-searcher-mobile input:focus-visible {
    outline: none;
    box-shadow: none;
    border: none;
  }

  .hub-searcher-mobile > .hub-search-mobile-search {
    background-color: #009E59;
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hub-search-mobile-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent;
  }
}

.hub-categories {
  display: flex;
  gap: 16px;
  margin: 24px auto 0;

  max-width: 1200px;
}

.hub-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 9999px;
  border: 1px solid #d2d2d2;
  background-color: #fff;
  color: #393939;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hub-category-link.hub-active {
  background-color: #e8e8e8;
}

@media (max-width: 767px) {
  .hub-categories {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .hub-categories::-webkit-scrollbar {
    display: none;
  }
}