.tab-view .tab-header {
  display: flex;
  white-space: pre-wrap;
  overflow-x: hidden;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--color-secondary);
}

.tab-view .header {
  cursor: pointer;
}

.tab-view .status {
  transition: width 0.3s;
  padding: 0 16px;
  width: 100%;
  /* width: 150%; */
  text-align: center;
}

.tab-view .status.active {
  border-bottom: 4px solid var(--color-orange);
}

.tab-header button {
  font-size: 16px;
  width: 100%;
}

.tab-view .content-card {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  background-color: var(--color-background-light-gray);
}

.tab-content .content {
  display: flex;
  gap: 32px;
}

.tab-content .tab-text {
  width: 100%;
}

.tab-content .tab-image,
.tab-content .tab-image img {
  width: 100%;
  text-align: center;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.products-tab-view .tab-header {
  display: flex;
  white-space: nowrap;
  overflow-x: hidden;
  margin: 40px 0 64px 0;
  gap: 16px;
}

.products-tab-view .header {
  font-size: 24px;
  cursor: pointer;
}

.products-tab-view .status {
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
  transition: var(--transition);

  border: 1px solid var(--color-primary);
  border-radius: var(--border-radius);
}

.products-tab-view .status.active,
.products-tab-view .status:not(.active):hover {
  background-color: var(--color-primary);
  transition: var(--transition);
}

.products-tab-view .status.active #tb-header-button,
.products-tab-view .status:not(.active):hover #tb-header-button {
  color: var(--color-white) !important;
  transition: var(--transition);
}

.products-tab-view .content-card {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  background-color: var(--color-background-light-gray);
}

.products-tab-view .tab-content .content .hide-mb.hide-tb,
.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.products-tab-view .tab-content .content {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.products-tab-view .tab-category > h5 {
  color: var(--color-black);
  margin-bottom: 32px;
}

@media screen and (max-width: 1080px) {
  .products-tab-view .header {
    font-size: 16px;
  }

  .products-tab-view .tab-content .content {
    gap: 48px;
  }

  .products-tab-view .tab-header {
    margin: 40px 0 32px 0;
  }
}

@media screen and (max-width: 767px) {
  .products-tab-view .tab-category > h5 {
    margin-bottom: 16px;
  }

  .products-tab-view .tab-content .content {
    gap: 24px;
  }
}

/* limpando estilização global */
.tiny-view,
.tiny-view * {
  all: revert;
}
.tiny-view {
  font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}
.tiny-view p {
  margin: 0 0 1em;
}
.tiny-view h1,
h2,
h3 {
  margin: 1.2em 0 0.5em;
  line-height: 1.25;
}
.tiny-view ul,
.tiny-view ol {
  margin: 0 0 1em 1.5em;
}
