body {
  font-family: "Roboto", sans-serif;
  background-color: #000000 !important;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
  /* ajuste conforme a altura do navbar */
}

.navbar-toggler {
  margin: auto !important;
  border: none !important;
}

.navbar-brand {
  margin: auto !important;
}

/* =========================
   HERO CARROSSEL (Patrocínio)
   ========================= */

.sponsor-hero {
  padding: 0.75rem 0 0rem;
  background-color:  -var(background-color)
}

/* “Boxed”: laterais pequenas e hero centralizado */
.sponsor-hero--boxed .sponsor-hero__wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 12px;
  /* pequeno nas laterais */
}

@media (min-width: 992px) {
  .sponsor-hero--boxed .sponsor-hero__wrap {
    padding: 0 16px;
  }
}

/* Carrossel: altura controlada e visual premium */
.sponsor-carousel {
  --h: clamp(160px, 22vw, 340px);
  /* mantém sua altura automática */

  height: var(--h);
  border-radius: 18px 18px 0 0;
  overflow: hidden;

  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.sponsor-carousel .carousel-inner,
.sponsor-carousel .carousel-item,
.sponsor-carousel .sponsor-link {
  height: 100%;
}

.sponsor-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  outline: none;
}

.sponsor-link:focus-visible {
  outline: 2px solid rgba(255, 193, 7, 0.75);
  outline-offset: 4px;
  border-radius: 18px;
}

.sponsor-media {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.sponsor-img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1);
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: saturate(1.02) contrast(1.02);
}

.sponsor-link:hover .sponsor-img {
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.05);
}

/* Badge Patrocínio */
.sponsor-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #ffc107;

  padding: 0.35rem 0.7rem;
  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;

  backdrop-filter: blur(6px);
}

/* Controles */
.sponsor-control {
  width: 12%;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.sponsor-carousel:hover .sponsor-control {
  opacity: 1;
}

.sponsor-carousel .carousel-control-prev-icon,
.sponsor-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.75));
}

/* Mobile: mantém altura confortável */
@media (max-width: 576px) {
  .sponsor-badge {
    left: 305px;
  }

  .sponsor-carousel {
    --h: 190px;
  }
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1571902943202-507ec2618e8f?q=80&w=1975&auto=format&fit=crop") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 5rem 2rem;
  margin-block-end: 3rem;
}

.hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: 3px;
  text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #dee2e6;
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 2.5rem !important;
}

.section-title::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  inline-size: 80px;
  block-size: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border: none;
}

.card-link:hover .card-img-top {
  transform: scale(1.05);
}

.card-img-top {
  inline-size: 100%;
  block-size: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
  background-color: #ffffff;
  padding: 0.5rem;
}

.card-title {
  font-weight: bold;
  transition: transform 0.3s ease;
}

.card-text-hover {
  font-size: 0.8rem;
  color: #adb5bd;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s ease;
}

.card-link:hover .card-text-hover {
  color: #ffc107;
}

.footer {
  background-color: #212529;
  color: white;
  padding: 3rem 0;
  margin-block-start: 5rem;
}

.social-icons a {
  color: #adb5bd;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.2);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .sponsor-carousel {
    --h: clamp(160px, 22vw, 250px);
  }

  .card-img-top {
    block-size: 160px;
  }

  .logohero {
    inline-size: 18rem !important;
  }
}

@media (max-width: 576px) {
  .card-img-top {
    block-size: 140px;
  }
}

.logomenu {
  inline-size: 10rem;
  height: 1rem;
  width: 1rem;
}

.logohero {
  inline-size: 10 rem;
}

/* ===== HERO TEXTUAL PREMIUM ===== */

.hero-textual {
  position: relative;
  padding: 1rem;
  background: radial-gradient(circle at top left,
      rgba(255, 193, 7, 0.15),
      transparent 45%),
    radial-gradient(circle at bottom right,
      rgba(255, 193, 7, 0.08),
      transparent 40%),
    linear-gradient(180deg, #1a1a1a, #121212);
  border-block-end: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-box {
  max-inline-size: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-block-end: 1.2rem;
}

.hero-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-block-end: 1.2rem;
}

.hero-heading span {
  color: #ffc107;
}

.hero-description {
  color: #adb5bd;
  font-size: 1.1rem;
  max-inline-size: 620px;
  margin: 0 auto 1rem;
}

.hero-cta .btn {
  margin-block-start: 0.5rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-textual {
    padding: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

/* =========================
   CATEGORIAS (DESKTOP/MOBILE)
   ========================= */

.category-nav {
  margin-block: 1.25rem 1.5rem;
}

/* Desktop: pílulas em linha */
.category-nav__desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

/* Botão/pílula */
.category-pill {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121212;
  color: #dee2e6;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.15s ease, border-color 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.category-pill:hover {
  border-color: rgba(255, 193, 7, 0.55);
  transform: translateY(-1px);
}

.category-pill.active {
  background: #ffc107;
  border-color: #ffc107;
  color: #111;
}

/* Mobile wrapper */
.category-nav__mobile {
  display: none;
}

/* Botão "Categorias" */
.category-toggle {
  width: 100%;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dee2e6;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
}

.category-toggle:hover {
  border-color: rgba(255, 193, 7, 0.55);
}

/* Painel expandido do mobile */
.category-nav__mobile-panel {
  margin-top: 0.75rem;
}

.category-mobile-body {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.6rem;
  display: grid;
  gap: 0.5rem;
}

/* Botões do mobile (ocupam 100%) */
.category-mobile-btn {
  width: 100%;
  text-align: left;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.category-mobile-btn.active {
  background: #ffc107;
  border-color: #ffc107;
  color: #111;
}

/* Breakpoint: no mobile some desktop e aparece o botão */
@media (max-width: 991px) {
  .category-nav__desktop {
    display: none;
  }

  .category-nav__mobile {
    display: block;
  }
}

/* Subcategorias (desktop) */
.category-subnav__desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.category-sub-pill {
  padding: 0.38rem 0.85rem;
  font-size: 0.8rem;
  opacity: 0.95;
  background: #0f0f0f;
}

.category-sub-pill:hover {
  opacity: 1;
}

/* =========================
   HERO FIXA + CAROUSEL PROFISSIONAL
   ========================= */

.hero-fixed {
  /* HERO NUNCA MUDA DE ALTURA */
  --hero-h: clamp(290px, 32vw, 430px);
}

/* Mantém seu visual (gradiente etc.) da hero-textual.
   Agora só garantimos altura fixa e estrutura sólida. */
.hero-fixed .hero-carousel,
.hero-fixed .carousel-inner,
.hero-fixed .carousel-item {
  height: var(--hero-h);
}

/* garante slide “limpo” sem artefatos */
.hero-fixed .carousel-item {
  backface-visibility: hidden;
  will-change: transform;
}

/* Cada slide ocupa 100% e não influencia altura */
.hero-fixed .carousel-item {
  position: relative;
}

/* Frame interno: centraliza conteúdo e garante altura */
.hero-fixed .hero-frame {
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
}

/* Texto: usa a mesma estética do seu hero-box */
.hero-fixed .hero-content {
  max-inline-size: 760px;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}

/* Slide de anúncio: área clicável ocupando tudo */
.hero-fixed .hero-ad-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Card do anúncio ocupa a hero inteira */
.hero-fixed .hero-ad-card {
  height: 100%;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f0f0f;
  /* fundo para "contain" */
  display: grid;
  place-items: center;
}

/* IMAGEM SE ADAPTA À SESSÃO (NÃO CORTA) */
.hero-fixed .hero-ad-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* mantém a imagem inteira */
  object-position: center;
  /* centraliza */
  display: block;
}

/* Opcional: selo discreto */
.hero-fixed .hero-ad-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: #ffc107;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Controles */
.hero-fixed .hero-control {
  width: 12%;
}

.hero-fixed .carousel-control-prev-icon,
.hero-fixed .carousel-control-next-icon {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.75));
}

/* Indicadores */
.hero-fixed .hero-indicators {
  margin-bottom: -1.45rem;
  display: none;
}

.hero-fixed .hero-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Mobile: pode reduzir um pouco */
@media (max-width: 768px) {
  .hero-fixed {
    --hero-h: 350px;
  }

  .logoglow {
    width: 15rem !important;
    align-items: center;
  }
}

/* Fade mais rápido no hero */

[data-bs-theme="dark"] .carousel .carousel-indicators [data-bs-target],
[data-bs-theme="dark"].carousel .carousel-indicators [data-bs-target] {
  background-color: white !important;
}

.logoglow {
  width: 7rem;
  align-items: center;
}

.bi-star-fill::before {
  color: white;
}

/* CARDS */
body {
  font-family: "Roboto", sans-serif;
  background-color: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
  /* ajuste conforme a altura do navbar */
}

.section-title {
  margin: 1.5rem;
  margin-left: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 1px;
  color: #dee2e6;
  position: relative;
  padding-block-end: 10px;
  margin-block-end: 2.5rem !important;
}

.section-title::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  inline-size: 80px;
  block-size: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

/* Card mais compacto (estilo da sua 2ª imagem, mas tema escuro) */

/* =========================
   PRODUCT CARD (sem Bootstrap)
   ========================= */

.product-card {
  position: relative;
  height: 100%;
  /* substitui h-100 */
  display: flex;
  flex-direction: column;

  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgb(0, 0, 0);

  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
}

/* BADGES */
.product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-badge {
  display: inline-flex;
  align-items: center;

  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.2px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.product-badge--frete {
  background: rgb(25, 135, 84);
  color: white;
}

.product-badge--desconto {
  background: rgba(255, 193, 7, 0.18);
  color: #ffe08a;
  border-color: rgba(255, 193, 7, 0.25);
}

/* IMAGEM */
.product-media {
  padding: 5px 3px 10px;
  /* espaço do badge */
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0));
}

.product-img {
  width: 100%;
  height: 120px;
  /* card menor */
  object-fit: contain;
  display: block;

  background: #fff;
  padding: 6px;
  border-radius: 10px;
}

/* CONTEÚDO */
.product-body {
  padding: 10px 10px 0;
  color: #dee2e6;
  flex: 1;
  /* empurra footer pra baixo */
}

.product-title {
  margin: 0 0 6px 0;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.2;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rating-stars {
  color: #ffc107;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.rating-text {
  color: #adb5bd;
  font-size: 0.82rem;
  font-weight: 700;
}

/* PREÇOS */
.product-prices {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.price-old {
  color: rgba(222, 226, 230, 0.55);
  text-decoration: line-through;
  font-weight: 800;
  font-size: 0.8rem;
}

.price-pill {
  background: rgba(255, 193, 7, 0.18);
  color: #ffe08a;
  border: 1px solid rgba(255, 193, 7, 0.25);
  font-weight: 900;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-main {
  font-size: 1.02rem;
  font-weight: 950;
  color: #fff;
  margin-bottom: 4px;
}

.price-meta {
  display: grid;
  gap: 2px;
  font-size: 0.8rem;
  color: rgba(222, 226, 230, 0.85);
}

/* VENDEDOR / TAGS */
.product-seller {
  margin: 8px 0 6px;
  font-size: 0.8rem;
  color: #adb5bd;
  font-weight: 700;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.product-tags .tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(222, 226, 230, 0.92);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
}

/* FOOTER + BOTÃO */
.product-footer {
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  background: #ffc107;
  color: #111;
  text-decoration: none;
  font-weight: 950;
  border-radius: 10px;
  padding: 9px 10px;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.product-btn:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* MOBILE: vira LISTA e reduz informações */
@media (max-width: 576px) {
  .product-card {
    flex-direction: row;
    align-items: stretch;
    max-width: 90%;
    margin: auto;
  }

  .product-media {
    margin: auto;
    width: 112px;
    flex: 0 0 112px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .product-img {
    height: 86px;
    padding: 6px;
  }

  /* mantém o essencial */
  .product-tags,
  .product-seller,
  .price-installments {
    display: none !important;
  }

  .product-body {
    padding: 10px;
  }

  .product-prices {
    margin-bottom: 0;
  }

  .product-footer {
    display: none;
    border-top: none;
    padding: 8px 10px 10px;
  }

  .product-btn {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

/* Card inteiro clicável (wrapper) */
.product-link {
  display: flex;
  flex: 1;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

/* realce de hover/focus no card quando passar o mouse no link */
.product-link:hover .product-card {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
}

/* acessibilidade: foco via teclado */
.product-link:focus-visible {
  outline: 2px solid rgba(255, 193, 7, 0.75);
  outline-offset: 4px;
  border-radius: 14px;
}

/* seu "botão" agora é um span */
.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 80%;

  background: #ffc107;
  color: #111;
  font-weight: 950;
  border-radius: 10px;
  padding: 9px 10px;
}

/* =========================
   GRID PRÓPRIA (sem Bootstrap)
   ========================= */

.product-grid {
  --gap: 16px;
  /* controla o espaçamento entre cards */
  --cols: 5;
  /* número de colunas no desktop */

  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  align-items: stretch;

  /* opcional: limita largura da seção para não “espalhar” em telas grandes */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.product-cell {
  display: flex;
  min-width: 0;
  height: 100%;
}

/* breakpoints (ajuste se quiser) */
@media (max-width: 1200px) {
  .product-grid {
    --cols: 4;
  }
}

@media (max-width: 992px) {
  .product-grid {
    --cols: 3;
  }
}

@media (max-width: 768px) {
  .product-grid {
    --cols: 2;
  }
}

@media (max-width: 576px) {
  .product-grid {
    --cols: 1;
    /* vira lista */
    --gap: 12px;
  }

  /* Se você estiver usando o card em lista (flex row) no mobile, mantém aqui */
  .product-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .product-media {
    width: 112px;
    flex: 0 0 112px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .product-img {
    height: 86px;
    padding: 6px;
    border-radius: 10px;
  }

  /* esconde o que não é essencial */
  .product-tags,
  .product-seller,
  .price-installments {
    display: none !important;
  }

  .product-footer {
    border-top: none;
    padding: 8px 10px 10px;
  }
}

/* Esconde qualquer badge/tag/preço que ficou vazio */
.price-pill:empty,
.price-old:empty,
.product-badge--frete:empty,
.tag:empty {
  display: none !important;
}

/* ===== Loader bonitinho ===== */
.section-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.section-loader .spinner {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.85);
  animation: spin 0.85s linear infinite;
  flex: 0 0 auto;
}

.section-loader .loader-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-loader .loader-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-top: 2px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   SESSÕES (SPLIT) — GlowCorps
   (apenas adiciona; não altera suas regras atuais)
   ========================= */

.gc-divider {
  border: 0;
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(90deg,
      rgba(255, 193, 7, 0),
      rgba(255, 193, 7, 0.35),
      rgba(255, 193, 7, 0));
}

.gc-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: center;

  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
}

.gc-split__media {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-split__img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.gc-split__content {
  padding: 0.35rem 0.25rem;
}

.gc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  color: #ffc107;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.18);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;

  margin-bottom: 0.75rem;
}

.gc-title {
  margin: 0 0 0.6rem 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: 0.8px;
  color: #dee2e6;
  line-height: 1.05;
}

.gc-text {
  margin: 0 0 0.9rem 0;
  color: rgba(222, 226, 230, 0.85);
  font-size: 1rem;
  line-height: 1.5;
}

.gc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.55rem;
}

.gc-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(222, 226, 230, 0.88);
  font-weight: 700;
}

.gc-bullets i {
  color: #ffc107;
  font-size: 1.1rem;
}

.gc-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* ===== Ofertas / Linkbox ===== */

.gc-offers {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.gc-linkbox {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem;
}

.gc-linkbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.gc-offer-name {
  font-weight: 900;
  color: #dee2e6;
  line-height: 1.1;
}

.gc-offer-price {
  margin-top: 0.2rem;
  font-weight: 950;
  color: #ffffff;
  opacity: 0.95;
}

.gc-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(222, 226, 230, 0.7);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}

.gc-offer-url {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;

  background: #0f0f0f;
  border: 1px solid rgba(255, 193, 7, 0.25);
  color: rgba(222, 226, 230, 0.92);

  outline: none;
}

.gc-offer-url:focus {
  border-color: rgba(255, 193, 7, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.12);
}

.gc-note {
  margin-top: 0.75rem;
  color: rgba(222, 226, 230, 0.65);
  font-size: 0.92rem;
}

/* ===== Responsivo ===== */
@media (max-width: 991px) {
  .gc-split {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .gc-split__img {
    height: 260px;
  }

  .gc-linkbox__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.main-block {
  margin: 28px 0;
}

.main-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.main-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.subnav-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.subnav-btn.is-active {
  background: #ffc107;
  /* mantém vibe do btn-warning */
  color: #111;
  border-color: rgba(0, 0, 0, 0.25);
}

/* Barra simples: "Todas as categorias" + hamburger */
.catbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px auto 10px;
  max-width: 1100px;
}

.catbar-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.catbar-btn {
  width: 42px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.burger {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

/* Overlay + Menu */
.cat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

.cat-menu {
  position: fixed;
  top: 90px;
  right: 18px;
  width: 320px;
  max-width: calc(100vw - 36px);
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  z-index: 9999;
  overflow: hidden;
}

.cat-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.cat-close {

  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cat-menu-content {
  padding: 12px 14px 14px;
  max-height: 60vh;
  overflow: auto;
}

.cat-main {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  font-size: 0.88rem;
  margin: 10px 0 8px;
}

.cat-sublist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-subbtn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
}

.cat-subbtn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================
   CATEGORIAS PREMIUM (SEM BOOTSTRAP)
   ========================= */

.cats {
  margin: 1.2rem 0 2rem;
  padding: 1rem;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 20%,
      rgba(255, 193, 7, 0.1),
      transparent 45%),
    linear-gradient(180deg, #141414, #0f0f0f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.cats__head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.cats__title {
  color: #adb5bd;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cats__row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.cats__pill {
  text-decoration: none;
  user-select: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(0, 0, 0, 0.35));
  color: #dee2e6;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s ease, border-color 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.cats__pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 193, 7, 0.55);
}

.cats__pill.is-active {
  border-color: rgba(255, 193, 7, 0.85);
  background: rgba(255, 193, 7, 0.14);
  color: #ffc107;
}

.cats__pill.is-active::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffc107;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.18);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.cats__pill--sub {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
  background: #0c0c0c;
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0.95;
}

.cats__pill--sub:hover {
  opacity: 1;
}

.cats__row--sub {
  display: none;
  /* fica oculto até a categoria ficar ativa */
  padding-top: 0.2rem;
}

.cats__row--sub.is-active {
  display: flex;
}

/* Mobile: vira “faixa” com scroll horizontal */
@media (max-width: 768px) {
  .cats {
    padding: 0.9rem;
  }

  .cats__row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }

  .cats__row::-webkit-scrollbar {
    height: 6px;
  }

  .cats__row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
  }
}

.sticky-top {
  z-index: 3;
}

/* CHIPS (compactos) */
.subcat-bar {
  margin: 12px 0 18px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15, 15, 15, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.subcat-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.subcat-chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #e9ecef;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: transform 0.12s ease, border-color 0.18s ease,
    background 0.18s ease, color 0.18s ease;
}

.subcat-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 193, 7, 0.45);
}

.subcat-chip.is-active {
  background: rgba(255, 193, 7, 0.14);
  border-color: rgba(255, 193, 7, 0.85);
  color: #ffc107;
}

@media (max-width: 768px) {
  .subcat-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .subcat-row::-webkit-scrollbar {
    height: 5px;
  }

  .subcat-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
  }
}

/* PAGINAÇÃO */
.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0 6px;
}

.pager-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #e9ecef;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease,
    transform 0.12s ease;
}

.pager-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 193, 7, 0.45);
}

.pager-btn.is-active {
  background: rgba(255, 193, 7, 0.14);
  border-color: rgba(255, 193, 7, 0.85);
  color: #ffc107;
}

.pager-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* =========================
   Subcategorias (chips) - Suplementos
========================= */
.subcat-bar {
  margin-bottom: 12px;
}

.subcat-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 6px;
}

.subcat-row::-webkit-scrollbar {
  display: none;
}

.subcat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: transform 0.08s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.subcat-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.subcat-chip:active {
  transform: translateY(1px);
}

.subcat-chip i {
  font-size: 14px;
  opacity: 0.95;
}

.subcat-chip.is-active {
  background: rgba(255, 193, 7, 0.95);
  border-color: rgba(255, 193, 7, 0.95);
  color: #111;
  font-weight: 700;
}

/* =========================
   Barra Global de Abas (SPA)
========================= */
.route-tabs {
  margin: 8px 0 14px;
}

.route-tabs__row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 6px;
}

.route-tabs__row::-webkit-scrollbar {
  display: none;
}

.route-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: transform 0.08s ease, background 0.15s ease,
    border-color 0.15s ease;
}

.route-tab:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.route-tab:active {
  transform: translateY(1px);
}

.route-tab i {
  font-size: 14px;
  opacity: 0.95;
}

.route-tab.is-active {
  background: rgba(255, 193, 7, 0.95);
  border-color: rgba(255, 193, 7, 0.95);
  color: #111;
  font-weight: 700;
}

.route-tab__chev {
  margin-left: 2px;
  opacity: 0.85;
  font-size: 13px;
}

/* Subcategorias (aparece só em /suplementos) */
.route-tabs__sub {
  margin-top: 8px;
  display: none;
}

.route-tabs__sub.is-open {
  display: block;
}

/* =========================
   Barra global de categorias
========================= */
#globalCatsBar {
  margin: 10px 0 16px;
}

#globalCatsBar .subcat-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 2px 6px;
}

#globalCatsBar .subcat-row::-webkit-scrollbar {
  display: none;
}

#globalCatsBar .subcat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: transform 0.08s ease, background 0.15s ease,
    border-color 0.15s ease;
}

#globalCatsBar .subcat-chip:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

#globalCatsBar .subcat-chip:active {
  transform: translateY(1px);
}

#globalCatsBar .subcat-chip i {
  font-size: 14px;
  opacity: 0.95;
}

#globalCatsBar .subcat-chip.is-active {
  background: rgba(255, 193, 7, 0.95);
  border-color: rgba(255, 193, 7, 0.95);
  color: #111;
  font-weight: 700;
}

/* Subcategorias: só mostram quando estiver em /suplementos */
#globalCatsSub {
  display: none;
  margin-top: 8px;
}

#globalCatsBar.is-sub-open #globalCatsSub {
  display: flex;
}

/* =========================
   Categorias: mobile colapsável
========================= */
#globalCatsToggle {
  display: none;
  width: 100%;
  margin: 10px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  text-align: left;
}

#globalCatsToggle .gc-toggle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#globalCatsToggle .gc-toggle-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

#globalCatsToggle .gc-chevron {
  transition: transform 0.15s ease;
  opacity: 0.9;
}

#globalCatsBar.is-open #globalCatsToggle .gc-chevron {
  transform: rotate(180deg);
}

/* Wrapper que contém as linhas de chips */
#globalCatsWrap {
  display: block;
}

/* Mobile: mostra botão e colapsa */
@media (max-width: 576px) {
  #globalCatsToggle {
    display: block;
  }

  /* fechado por padrão no mobile */
  #globalCatsBar:not(.is-open) #globalCatsWrap {
    display: none;
  }

  /* quando abre */
  #globalCatsBar.is-open #globalCatsWrap {
    display: block;
  }
}

/* Garantia extra para não “cortar” chips */
#globalCatsBar .subcat-row {
  flex-wrap: nowrap;
  overflow-x: auto;
}

/* ===== Mobile: quando abrir, expandir PARA BAIXO (wrap) ===== */
@media (max-width: 576px) {

  /* Quando estiver aberto, as linhas viram "quebradas" */
  #globalCatsBar.is-open .subcat-row {
    flex-wrap: wrap !important;
    overflow-x: hidden !important;
    padding-bottom: 0 !important;
  }

  /* Só um respiro entre as linhas */
  #globalCatsBar.is-open #globalCatsSub {
    margin-top: 10px;
  }
}


.vd-route-meta {
  min-width: 0;
}

.vd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.vd-bc-muted {
  opacity: 0.75;
}

.vd-bc-sep {
  opacity: 0.5;
}

.vd-bc-current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.vd-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 7, 0.35);
  color: rgba(255, 193, 7, 0.95);
  font-size: 0.78rem;
  line-height: 1.5;
}

.vd-route-title {
  margin: 6px 0 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.15;
  display: none;
}

.vd-route-actions {
  flex: 0 0 auto;
  padding-top: 2px;
}

.vd-route-btn {
  border-radius: 999px;
  padding: 6px 12px;
}

/* Wrapper “pai” das sections: deixa claro que são filhas */
.vd-group {
  display: grid;
  grid-template-columns: 6px 1fr;
  border-radius: 14px;
  padding: 14px 14px;
  /* background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07); */
}

.vd-group__content {
  min-width: 0;
}

/* Responsivo: mantém botão no topo e não quebra */
@media (max-width: 576px) {
  .vd-route-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .vd-route-actions {
    width: 100%;
  }

  .vd-route-btn {
    width: fit-content;
  }
}

.vd-route-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0 14px;
  padding: 6px 15px;
}

.vd-route-head--compact .vd-route-title {
  display: none;
  /* segurança caso exista */
}

.vd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.vd-bc-sep {
  opacity: 0.5;
}

.vd-bc-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.vd-bc-link:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.vd-bc-current {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.vd-route-title {
  margin: 6px 0 0;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1.15;
}

.vd-route-btn {
  border-radius: 999px;
  padding: 6px 12px;
}

@media (max-width: 576px) {
  .vd-route-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cat-trigger__label {
    display: none;
  }
}

/* public/components/menu/menu.css */
:root {
  --cat-bg: #0e0e0f;
  --cat-bg-2: #141416;
  --cat-border: rgba(255, 255, 255, 0.08);
  --cat-text: rgba(255, 255, 255, 0.92);
  --cat-muted: rgba(255, 255, 255, 0.65);
  --cat-accent: #f7b500;
  --cat-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);

  --cat-item-bg: rgba(255, 255, 255, 0.03);
  --cat-item-bg-hover: rgba(255, 255, 255, 0.05);
  --cat-radius: 14px;
}

/* Root do componente */
.cat-root {
  position: relative;
  z-index: 1000;
}

/* Trigger (hamburger) */
.cat-trigger {
  position: fixed;
  top: 10px;
  left: 28px;
  z-index: 1002;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 44px;
  padding: 0 14px;
  /* ✅ espaço pro texto */
  width: auto;
  /* ✅ não fixa mais 44px */

  border-radius: 12px;
  background: rgba(10, 10, 10);
  border: 1px solid var(--cat-accent);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);

  cursor: pointer;
  user-select: none;
}

.cat-trigger:hover {
  border-color: rgba(247, 181, 0);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.cat-hamburger {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-hamburger i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--cat-accent);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Overlay */
.cat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1001;
}

/* Drawer */
.cat-drawer {
  position: fixed;
  top: 0;
  left: 0;

  height: 100dvh;
  /* ✅ em vez de 100vh */
  width: 340px;
  max-width: calc(100vw - 40px);

  background: rgba(14, 14, 15);
  border-right: 1px solid var(--cat-border);
  /* box-shadow: var(--cat-shadow); */

  transform: translateX(-105%);
  z-index: 1002;
  outline: none;

  display: flex;
  /* ✅ */
  flex-direction: column;
  /* ✅ */
  overflow: hidden;
  /* ✅ evita scroll no drawer inteiro */
}

/* Abrir */
html.cat-menu-open .cat-drawer,
body.cat-menu-open .cat-drawer {
  transform: translateX(0);
}

/* Header do drawer */
.cat-drawer__header {
  height: 45px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-bottom: 1px solid var(--cat-border); */
}

.cat-drawer__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--cat-text);
}



.cat-close:hover {
  border-color: rgba(247, 181, 0, 0.35);
}

/* Conteúdo */
.cat-nav {
  
  padding: 12px;

  flex: 1 1 auto;
  /* ✅ ocupa o restante do drawer */
  overflow-y: auto;
  /* ✅ scroll vertical */
  overflow-x: hidden;

  -webkit-overflow-scrolling: touch;
  /* ✅ iOS smooth */
  overscroll-behavior: contain;
  /* ✅ não “puxa” a página */
  touch-action: pan-y;
  /* ✅ gesto vertical garantido */
  background-color: #000000;

  padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
  /* ✅ iPhone */
}

/* Bloco de item (root/main/sub) */
.cat-node {
  /* border-radius: var(--cat-radius); */
  /* border: 1px solid var(--cat-border); */
  background: #000000;
  overflow: hidden;
  /* margin-bottom: 10px; */
}

/* Linha clicável (label + chevron) */
.cat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  transition: background 140ms ease, border-color 140ms ease;
}

.cat-node:hover>.cat-row {
  background: var(--cat-item-bg-hover);
}

/* Link (nome) */
.cat-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;

  text-decoration: none;
  color: var(--cat-text);
}

.cat-link:focus {
  outline: none;
}

.cat-text {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ícone só em root */
/* Ícone só em root (agora é IMG) */
.cat-icon {
  width: 26px;
  height: 26px;
  /* border-radius: 8px; */
  flex: 0 0 auto;
  /* background: rgba(255, 255, 255, 0.04); */
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Fallback (quando não há ícone definido) */
.cat-icon--fallback {
  background: rgba(247, 181, 0, 0.14);
  border: 1px solid rgba(247, 181, 0, 0.25);
}

/* Chevron (botão separado do link) */
.cat-chevron {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04); */
  color: var(--cat-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.cat-chevron:hover {
  border-color: rgba(247, 181, 0, 0.3);
}

.cat-chevron svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.7);
  transition: transform 180ms ease;
}

/* Expansão */
.cat-children {
  height: 0;
  overflow: hidden;
  transition: height 220ms ease;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.1);
}

/* Indent para níveis */

.cat-node[data-level="1"] .cat-row {
  padding-left: 14px;
}

.cat-node[data-level="2"] .cat-row {
  padding-left: 18px;
}

/* Rotação da setinha quando aberto */
.cat-node[aria-expanded="true"]>.cat-row .cat-chevron svg {
  transform: rotate(180deg);
}

/* Estado sem filhos: some chevron e remove borda superior */
.cat-node[data-has-children="0"] .cat-chevron {
  display: none;
}

.cat-node[data-has-children="0"] .cat-children {
  display: none;
}

/* Vazio / loading / erro */
.cat-empty {
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--cat-muted);
  font-size: 13px;
  margin: 8px 0;
}

/* Travar scroll quando aberto */


/* Chevron: só o ícone (sem borda, sem fundo) */
.cat-chevron {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* remove o "quadrado" no hover */
.cat-chevron:hover {
  background: transparent;
}

/* remove borda/outline do foco */
.cat-chevron:focus,
.cat-chevron:focus-visible {
  outline: none;
  box-shadow: none;
}

/* ícone */
.cat-chevron i {
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
}

/* opcional: hover só mudando a cor do ícone */
.cat-chevron:hover i {
  color: var(--cat-accent);
}

#spa-view {
  scroll-margin-top: 90px;
  /* ajuste fino caso o navbar “coma” o topo */
}

.cat-trigger__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--cat-text);
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 360px) {
  .cat-trigger__label {
    display: none;
  }

  .cat-trigger {
    padding: 0;
    width: 44px;
  }
}

/* public/components/menu/menu.css */

:root {
  --mega-bg: #0e0e0f;
  --mega-panel: rgba(15, 16, 17, 0.98);
  --mega-border: rgba(255, 255, 255, 0.08);
  --mega-text: rgba(255, 255, 255, 0.92);
  --mega-muted: rgba(255, 255, 255, 0.62);
  --mega-accent: #f7b500;
  --mega-shadow: 0 22px 70px rgba(0, 0, 0, 0.65);
  --mega-radius: 14px;
  --background-color: rgb(0,0,0) ;
}

/* seu trigger (mantendo estrutura) */
.mega-trigger {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgb(255 255 255 / 34%);
  color: var(--mega-text);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  z-index: 1006;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.mega-trigger:hover {
  border-color: rgba(247, 181, 0, 0.35);
}

.mega-trigger:focus-visible {
  outline: 2px solid rgba(247, 181, 0, 0.45);
  outline-offset: 2px;
}

/* Painel ancorado (JS posiciona com left/top/width) */
.mega-panel {
  position: fixed;
  z-index: 9999;
  max-height: calc(100vh - 140px);
  overflow: auto;

  background: var(--mega-panel);
  border: 1px solid var(--mega-border);
  /* border-radius: var(--mega-radius); */
  box-shadow: var(--mega-shadow);

  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.mega-panel[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-panel__inner {
  border: 1px solid #ffc107bb;
  padding: 14px 16px 16px;
}

/* Barra superior de ROOTs (sempre visível) */
.mega-top {
  padding-bottom: 12px;
  border-bottom: 1px solid #ffc107;
}

.mega-rootsBar {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.mega-rootsBar::-webkit-scrollbar {
  height: 8px;
}

.mega-rootsBar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

/* “pills” estilo growth (só que preto/laranja) */
.mega-rootPill {
  min-width: 104px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 10px;
  text-decoration: none;
  color: var(--mega-text);

  display: grid;
  grid-template-rows: 34px auto;
  justify-items: center;
  gap: 8px;

  transition: transform 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
}

.mega-rootPill:hover {
  /* transform: translateY(-1px); */
  border-color: rgba(247, 181, 0, 0.35);
  background: rgba(247, 181, 0, 0.06);
}

.mega-rootPill--disabled {
  opacity: 0.65;
  cursor: default;
}

.mega-rootIcon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.mega-rootIcon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.mega-rootIcon i {
  font-size: 22px;
}

.mega-rootIcon--fallback {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-rootLabel {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.86);
}

/* Corpo: seções (cada ROOT) */
.mega-body {
  padding-top: 14px;
  display: flex;
  gap: 15px;
}

.mega-section {
  background: rgb(255 255 255 / 5%);
  /* border: 1px solid rgb(255 255 255 / 34%); */
  padding: 2%;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
  border-radius: 5%;
}

.mega-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mega-rootHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mega-rootHeader__title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.92);
}

.mega-rootHeader__cta {
  background: rgba(247, 181, 0, 0.12);
  border: 1px solid rgba(247, 181, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.mega-rootHeader__cta:hover {
  background: rgba(247, 181, 0, 0.18);
  border-color: rgba(247, 181, 0, 0.55);
}

/* Grid de MAINs: auto-fit (fica “cheio” como o da Growth) */
.mega-grid {
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
  gap: 50px;
}

.mega-col {
  /* background: #ffc1070c; */
  border-radius: 12px;
  min-height: 110px;
}

.mega-mainTitle {
  display: inline-block;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.mega-mainTitle:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(247, 181, 0, 0.65);
}

.mega-mainTitle--disabled {
  opacity: 0.72;
}

.mega-subList {
  display: grid;
  gap: 8px;
}

.mega-subLink {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 200;
  font-size: 13px;
}

.mega-subLink:hover {
  color: #fff;
}

.mega-subLink--disabled {
  opacity: 0.55;
  cursor: default;
}

.mega-subEmpty {
  color: var(--mega-muted);
  font-size: 13px;
}

.mega-empty {
  color: rgba(255, 255, 255, 0.72);
  padding: 12px 6px;
}

.mega-empty--compact {
  padding: 6px 0 0;
}

.mega-skeleton {
  color: rgba(255, 255, 255, 0.62);
  padding: 10px 6px;
}

.mega-rootHeader__titleLink {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.3px;

  color: rgb(255, 197, 22);
  text-decoration: none;
}

.mega-rootHeader__titleLink:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(247, 181, 0, 0.65);
  text-underline-offset: 3px;
}

/* estado ativo na ROOT (barra de cima) */
.mega-rootPill.is-active {
  border-color: rgba(247, 181, 0, 0.55);
  background: rgba(247, 181, 0, 0.1);
}

/* =========================
   MENU dentro da TOPBAR (override do "fixed")
========================= */
.topbar .cat-trigger {
  position: static !important;
  top: auto !important;
  left: auto !important;
  z-index: auto !important;

  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
}

/* no mobile, deixa só o ícone (sem texto “Categorias”) */
@media (max-width: 768px) {

  .cat-trigger {
    top: 7px;
    left: 10px;
  }

  .topbar .cat-trigger__label {
    display: none;
  }

  .topbar .cat-trigger {
    padding: 0 12px;
  }
}

/* =========================
   TOPBAR (sticky abaixo da hero)
========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 4;

  width: 100%;
  background-color:  -var(--background-color);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  /* ocupa a largura total, mas mantém “miolo” alinhado */
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 18px;

  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.topbar__brand img {
  height: 45px;
  width: auto;
  display: block;
}

.topbar__center {
  flex: 1;
  min-width: 0;
}

.topbar__search {
  position: relative;
}

.topbar__search input {
  padding-right: 44px;
}

.topbar__searchBtn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.topbar__searchBtn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.topbar__search {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar__search i {
  font-size: 16px;
  opacity: 0.85;
  color: white;
}

.topbar__search input {
  flex: 1;
  min-width: 0;

  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);

  font-size: 14px;
}

.topbar__search input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__btn {
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;

  border: 1px solid rgba(247, 181, 0, 0.55);
  background: rgba(247, 181, 0, 0.14);
  color: rgba(255, 255, 255, 0.95);

  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 12px;

  cursor: pointer;
}

.topbar__btn:hover {
  background: rgba(247, 181, 0, 0.2);
  border-color: rgba(247, 181, 0, 0.75);
}

/* =========================
   MOBILE: só hambúrguer + busca
========================= */
@media (max-width: 768px) {
  .topbar__right {
    display: none;
  }

  /* sem botões à direita */
  .topbar__brand {
    display: none;
  }

  /* some logo no mobile */
  .topbar__inner {
    padding: 10px 60px;
  }
}

/* Overlay do drawer (mobile) */
.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  z-index: 9998;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

body.mega-open .mega-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.mega-open {
  overflow: hidden;
}

/* ===== MODO DRAWER ===== */
.mega-panel[data-mode="drawer"] {
  position: fixed;
  z-index: 9999;

  height: 100vh;
  max-height: 100vh;

  /* visual */
  background: rgba(15, 16, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 16px 16px 0;

  /* animação lateral */
  transform: translateX(-105%);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

/* quando abre */
.mega-panel[data-mode="drawer"][aria-hidden="false"] {
  transform: translateX(0);
}

/* garante scroll interno */
.mega-panel[data-mode="drawer"] .mega-panel__inner {
  height: 100%;
  overflow: auto;
}

/* ===== MODO DROPDOWN (desktop) =====
   se você ainda estiver com translateY(-8px), mantenha como +8px */
.mega-panel[data-mode="dropdown"] {
  transform: translateY(8px);
}

.mega-panel[data-mode="dropdown"][aria-hidden="false"] {
  transform: translateY(0);
}

/* Desktop: esconde o mount mobile */
@media (min-width: 769px) {
  .menu-mobile {
    display: none !important;
  }

  .navbar {
    display: none;
  }
}

/* Mobile: esconde o mount do topbar */
@media (max-width: 768px) {
  .topbar__menu {
    display: none !important;
  }

  #btnInstallMobile {
    display: none;
  }
}

.sponsor-badge {
  display: none !important;
}

.vd-section--component {
  padding: 6px 0;
}

.sponsor-slot {
  grid-column: 1 / -1;
  /* pega todas as colunas */
  width: 100%;
  display: block;
}

.sponsor-slot>bdg-sponsor-row {
  display: block;
  width: 100%;
}

/* =========================
   SPONSOR BAR
   ========================= */
.sponsorbar {
  position: sticky;
  top: 0;
  z-index: 2;
  /* acima dos cards */
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.sponsorbar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  /* padding: 10px 14px; */
  /* max-width: 1400px; */
  /* margin: 0 auto; */
}

.sponsorbar__title {
  margin: 0;
  white-space: nowrap;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  font-size: 1.6rem;
  line-height: 1;
  opacity: 0.95;
}

/* Desktop rail */
.sponsorbar__rail {
  flex: 1;
  min-width: 0;
  /* importante pro overflow funcionar */
}

.sponsorbar__list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  /* a gente controla a “janela” via JS */
  white-space: nowrap;
}

/* Item */
.sponsorbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* padding: 6px 10px; */
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* background: rgba(255, 255, 255, 0.04); */
  transition: transform 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
}

.sponsorbar__item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  /* background: rgba(255, 255, 255, 0.06); */
}

.sponsorbar__avatar {
  margin: auto;
  width: 15%;

  /* border-radius: 50%; */
  object-fit: cover;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}

.sponsorbar__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.95;
}

/* Separador | */
.sponsorbar__sep {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  user-select: none;
}

/* Mobile single */
.sponsorbar__single {
  display: none;
  flex: 1;
  min-width: 0;
}

/* Responsivo: no mobile vira “1 por vez” */
@media (max-width: 680px) {
  .sponsorbar__viewport {
    display: flex;
  }

  .sponsorbar__inner {
    gap: 10px;
  }

  .sponsorbar__title {
    font-size: 1.4rem;
  }

  .sponsorbar__rail {
    display: none;
  }

  .sponsorbar__single {
    display: flex;
    justify-content: flex-end;
  }

  .sponsorbar__item {
    width: 100%;
    /* justify-content: space-between; */
  }

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

  .sponsorbar__avatar {
    width: 50%;
  }

  .sponsorbar {
    margin: auto !important;
  }
}

.sponsorbar__inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000000;
  backdrop-filter: blur(8px);
  /* border-radius: 10px; */
}

/* animação suave do carrossel mobile */
.sponsorbar__viewport {
  transition: opacity 220ms ease, transform 220ms ease;
  opacity: 1;
  transform: translateY(0);
}

.sponsorbar__viewport.is-fading {
  opacity: 0;
  transform: translateY(4px);
}

/* =========================================================
   FORÇAR: usar SEMPRE o menu-mobile e DESATIVAR menu normal
   Cole no FINAL do style.css
   ========================================================= */

/* some com o menu "normal" (mega/desktop) */
#catMegaRoot,
.mega-root,
.topbar__menu,
.navbar {
  display: none !important;
}

/* força o menu mobile aparecer em qualquer largura */
.menu-mobile,
[data-menu-mobile],
#catMenuRoot {
  display: block !important;
}

/* ===== MENU MOBILE COMO SIDEBAR (PUSH) ===== */
:root {
  --cat-drawer-w: 295px;
  /* ajuste como quiser */
}

/* garante largura fixa no drawer */
.cat-drawer {
  width: var(--cat-drawer-w);
}

/* desliga overlay/backdrop (não sobrepor) */
.cat-overlay {
  display: none !important;
}

/* quando o menu abre, empurra o site inteiro */
/* ✅ NÃO travar scroll da página (menu agora é PUSH) */
html.cat-menu-open,
body.cat-menu-open {
  overflow-x: hidden;
  /* só impede scroll horizontal */
}

/* se você está usando push por padding-left, mantenha isso aqui */
body.cat-menu-open {
  padding-left: var(--cat-drawer-w);
  transition: padding-left 0.2s ease;
}

/* por padrão: NUNCA empurra (mobile) */
body.cat-menu-open {
  padding-left: 0;
  transition: padding-left 0.2s ease;
}

/* ✅ só no desktop empurra o conteúdo */
@media (min-width: 769px) {
  body.cat-menu-open {
    padding-left: var(--cat-drawer-w);
  }
}

/* ===== Scrollbar bonita só no menu lateral ===== */
.cat-nav {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgb(255 255 255 / 55%) rgba(255, 255, 255, 0.06);
}

.cat-nav::-webkit-scrollbar {
  width: 10px;
}

.cat-nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.cat-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 193, 7, 0.55);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.35);
}

.cat-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 193, 7, 0.8);
}

/* ===== Hierarquia visual do menu ===== */

/* ROOT (nível 0) mais “forte” */
.cat-node[data-level="0"]>.cat-row {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cat-node[data-level="0"] .cat-text {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* MAIN (nível 1) como seção */
.cat-node[data-level="1"] {
  background: rgba(255, 255, 255, 0.02);
}

.cat-node[data-level="1"]>.cat-row {
  padding: 11px 10px 11px 40px;
}

.cat-node[data-level="1"] .cat-text {
  font-weight: 800;
  font-size: 13px;
  opacity: .95;
}

/* SUB (nível 2) como lista */
.cat-node[data-level="2"] {
  background: transparent;
}

.cat-node[data-level="2"]>.cat-row {
  padding: 9px 10px 9px 26px;
}

.cat-node[data-level="2"] .cat-text {
  font-weight: 600;
  font-size: 13px;
  opacity: .85;
}

/* separador leve entre blocos */
.cat-node+.cat-node {
  margin-top: 6px;
}

/* ✅ Mobile: overlay ativo (não push) */
@media (max-width: 768px) {
  .cat-overlay {
    display: block;
  }
}

/* ✅ Desktop: overlay desativado (push) */
@media (min-width: 769px) {
  .cat-overlay {
    display: none !important;
  }
}