/** Shopify CDN: Minification failed

Line 481:0 Unexpected "}"

**/
/* Resource Hub Styles */

/* Hero Section */
.resource-hub-main .resource-hub-content{
    max-width: 1000px;
    margin: 0 auto;
}
.resource-hub-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 200px;
}

/* .resource-hub-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
} */

.resource-hub-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 0;
}

.resource-hub-hero__title {
  margin-bottom: 1.5rem;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1;
  margin-bottom: 10px;
}

.resource-hub-hero__description {
  margin-bottom: 3rem;
  font-size: 14px;
  opacity: 0.9;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
}

.resource-hub-hero__description p {
  margin-bottom: 0;
}

/* Filter Buttons */
.resource-hub-hero__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.resource-filter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
}

.resource-filter-btn:hover,
.resource-filter-btn.active {
  background: rgba(255, 255, 255, 0.9);
  color: rgb(var(--color-foreground));
  border-color: rgba(255, 255, 255, 0.9);
}

.resource-filter-btn:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Main Section */
.resource-hub-main {
  background: rgb(var(--color-background));
}

.resource-hub-main__header {
  text-align: center;
  margin-bottom: 4rem;
}

.resource-hub-main__title {
  margin-bottom: 1rem;
}

.resource-hub-main__description {
  font-size: 1.125rem;
  opacity: 0.8;
}

.resource-hub-main__description p {
  margin-bottom: 0;
}

/* Resource Content and Groups - Grid Unificado Estilo Coda.io */
.resource-hub-content {
  display: grid;
  grid-template-columns: repeat(var(--columns-desktop, 3), 1fr);
  gap: 1.5rem;
  align-items: start;
}

.resource-group {
  grid-column: 1 / -1;
  display: contents;
}

.resource-group__header {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.resource-group__title {
  margin-bottom: 0.75rem;
  font-size: 25px;
  letter-spacing: 0;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.resource-group__description {
  font-size: 16px;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.resource-group__description p {
  margin-bottom: 0;
}

.resource-group__see-more {
  color: rgb(var(--color-accent, var(--color-foreground)));
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(var(--color-accent, var(--color-foreground)), 0.3);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  display: inline-block;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.resource-group__see-more:hover {
  background: rgba(var(--color-accent, var(--color-foreground)), 0.1);
  border-color: rgb(var(--color-accent, var(--color-foreground)));
}

/* Grid Responsivo */
@media screen and (max-width: 989px) {
  .resource-hub-content {
    grid-template-columns: repeat(var(--columns-tablet, 2), 1fr);
    gap: 1.25rem;
  }
}

@media screen and (max-width: 749px) {
  .resource-hub-content {
    grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
    gap: 1rem;
  }

  .resource-hub-hero__content {
    padding: 4rem 0;
  }

  .resource-hub-hero__filters {
    flex-direction: column;
    align-items: center;
  }
}

/* Resource Grid - Remover grid individual dos grupos */
.resource-hub-grid {
  display: contents;
}

.resource-filter-btn {
  width: 100%;
  max-width: fit-content;
}

.resource-card {
  background: #fefefe;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
  height: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--color-foreground), 0.15);
}

.resource-card__image {
  position: relative;
  overflow: hidden;
  background: #fff7ae;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.05);
}

.resource-card__placeholder {
    font-size: 130px;
    font-weight: 800;
    transform: translateY(27px);
    color: #9b1f7f;
}

.resource-card__image img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 749px) {
  .resource-card__image {
    padding: 1.25rem;
    min-height: 100px;
  }
  
  .resource-card__image img {
    width: 50px;
    height: 50px;
  }
}

.resource-card:hover .resource-card__image img {
  transform: scale(1.05);
}

.resource-card__type {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #9b1f7f;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.resource-card__content {
  padding: 1.25rem;
  background: rgb(var(--color-background));
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-card__title {
  margin: 0.5rem;
  line-height: 1.3;
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  flex: 1;
  text-align: center;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.resource-card__title a:hover {
  color: rgb(var(--color-accent, var(--color-foreground)));
}

.resource-card__description {
  color: rgba(var(--color-foreground), 0.65);
  line-height: 1.4;
  font-size: 12px;
  text-align: center;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-card__description p {
  margin-bottom: 0;
}

.resource-card__action {
  margin-top: auto;
}

.resource-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  text-decoration: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.resource-card__button:hover {
  background: rgba(var(--color-foreground), 0.8);
  transform: translateY(-1px);
}

.resource-card__button .icon {
  width: 1rem;
  height: 1rem;
}

/* Help Center Section - Estilo Coda.io */
.resource-hub-help-center {
  background: rgb(var(--color-background));
  padding: 4rem 0;
}

.resource-hub-help-center .page-width {
    max-width: 1000px;
    margin: 0 auto;
}

.help-center__header {
  text-align: left;
  margin-bottom: 2.5rem;
  max-width: none;
}

.help-center__title {
  margin-bottom: 0.75rem;
  font-size: 25px;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.help-center__description {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 2rem;
  color: rgba(var(--color-foreground), 0.8);
}

.help-center__description p {
  margin-bottom: 0;
}

.help-center__main-link {
  margin-top: 1.5rem;
  display: inline-block;
}

.help-center__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 9px;
  overflow: hidden;
}

.help-center-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  background: rgb(var(--color-background));
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border: 1px solid #e1e1e1;
  background: rgb(var(--color-background));
  border-radius: 9px;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
}

.help-center-item:hover {
  background: rgba(var(--color-foreground), 0.025);
}

.help-center-item__content {
  flex: 1;
  padding-right: 1rem;
}

.help-center-item__title {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 16px;
  color: rgb(var(--color-foreground));
  line-height: 1.3;
  margin-top: 0px;
  letter-spacing: 0;
}

.help-center-item__title a {
  color: inherit;
  text-decoration: none;
}

.help-center-item__description {
  color: rgba(var(--color-foreground), 0.65);
  line-height: 1.5;
  font-size: 12px;
}

.help-center-item__description p {
  margin-bottom: 0;
}

.help-center-item__arrow {
  margin-left: 1rem;
  color: rgba(var(--color-foreground), 0.4);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.help-center-item:hover .help-center-item__arrow {
  transform: translateX(0.25rem);
  color: rgba(var(--color-foreground), 0.7);
}

.help-center-item__arrow .icon {
  width: 1.25rem;
  height: 1.25rem;
}
}

/* Need Help Section - Estilo Coda.io */
.resource-hub-need-help {
  background: rgba(var(--color-foreground), 0.02);
  padding: 4rem 0;
}

.need-help__header {
  text-align: center;
  margin-bottom: 3rem;
}

.need-help__title {
  margin-bottom: 0.75rem;
  font-size: 25px;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.need-help__description {
  font-size: 14px;
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 0;
}

.need-help__description p {
  margin-bottom: 0;
}

.need-help__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(var(--columns-desktop, 3), 1fr);
  margin-bottom: 3rem;
}

@media screen and (max-width: 989px) {
  .need-help__grid {
    grid-template-columns: repeat(var(--columns-tablet, 2), 1fr);
  }
}

@media screen and (max-width: 749px) {
  .need-help__grid {
    grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
  }

  .need-help__title {
    font-size: 2rem;
  }
}

.need-help-card {
  background: #fffef4;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.need-help-card:hover {
  border-color: rgba(var(--color-foreground), 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.need-help-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 0.5rem;
  color: rgba(var(--color-foreground), 0.7);
}

.need-help-card__icon .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.need-help-card__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.need-help-card__title {
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 16px;
  color: rgb(var(--color-foreground));
  line-height: 1.3;
}

.need-help-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.need-help-card__title a:hover {
  color: rgb(var(--color-accent, var(--color-foreground)));
}

.need-help-card__description {
  color: rgba(var(--color-foreground), 0.65);
  line-height: 1.5;
  font-size: 11px;
  margin-bottom: 0;
}

.need-help-card__description p {
  margin-bottom: 0;
}

/* Bottom CTA - Estilo Coda.io */
.need-help__bottom-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgb(var(--color-background));
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-top: 0;
}

.need-help__cta-title {
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.need-help__cta-description {
  color: rgba(var(--color-foreground), 0.7);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.5;
}

.need-help__cta-description p {
  margin-bottom: 0;
}

.need-help__cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 749px) {
  .need-help__cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .need-help__cta-actions .button {
    width: 100%;
    max-width: 250px;
  }
}

/* Empty States */
.resource-hub-empty,
.help-center-empty,
.need-help-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(var(--color-foreground), 0.6);
}

.resource-hub-empty h3,
.help-center-empty h3,
.need-help-empty h3 {
  margin-bottom: 0.5rem;
  color: rgba(var(--color-foreground), 0.8);
}

/* Filter States e Animações */
.resource-card.hidden,
.resource-group.hidden {
  display: none;
}

.resource-card.filtering {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

.resource-card.showing {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.resource-card {
  transition: all 0.3s ease;
}

/* Animation States */
.resource-card,
.resource-group {
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.resource-card{
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.resource-card.filtering,
.resource-group.filtering {
  opacity: 0.3;
}

.resource-card.showing,
.resource-group.showing {
  opacity: 1;
}

/* Button Variations */
.button--secondary {
  background: transparent;
  border: 1px solid rgba(var(--color-foreground), 0.2);
  color: rgb(var(--color-foreground));
}

.button--secondary:hover {
  background: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
  border-color: rgb(var(--color-foreground));
}

.button--primary {
  background: rgb(var(--color-accent, var(--color-foreground)));
  color: rgb(var(--color-background));
  border: 1px solid rgb(var(--color-accent, var(--color-foreground)));
}

.button--primary:hover {
  background: rgba(var(--color-accent, var(--color-foreground)), 0.9);
  border-color: rgba(var(--color-accent, var(--color-foreground)), 0.9);
}

/* Responsive Grid Variables */
.resource-hub-grid[data-columns="1"],
.need-help__grid[data-columns="1"] {
  --columns-desktop: 1;
}

.resource-hub-grid[data-columns="2"],
.need-help__grid[data-columns="2"] {
  --columns-desktop: 2;
}

.resource-hub-grid[data-columns="3"],
.need-help__grid[data-columns="3"] {
  --columns-desktop: 3;
}

.resource-hub-grid[data-columns="4"],
.need-help__grid[data-columns="4"] {
  --columns-desktop: 4;
}

.resource-hub-grid[data-columns="5"],
.need-help__grid[data-columns="5"] {
  --columns-desktop: 5;
}

.resource-hub-grid[data-columns="6"],
.need-help__grid[data-columns="6"] {
  --columns-desktop: 6;
}

.resource-hub-grid[data-columns-tablet="1"],
.need-help__grid[data-columns-tablet="1"] {
  --columns-tablet: 1;
}

.resource-hub-grid[data-columns-tablet="2"],
.need-help__grid[data-columns-tablet="2"] {
  --columns-tablet: 2;
}

.resource-hub-grid[data-columns-tablet="3"],
.need-help__grid[data-columns-tablet="3"] {
  --columns-tablet: 3;
}

.resource-hub-grid[data-columns-tablet="4"],
.need-help__grid[data-columns-tablet="4"] {
  --columns-tablet: 4;
}

.resource-hub-grid[data-columns-mobile="1"],
.need-help__grid[data-columns-mobile="1"] {
  --columns-mobile: 1;
}

.resource-hub-grid[data-columns-mobile="2"],
.need-help__grid[data-columns-mobile="2"] {
  --columns-mobile: 2;
}
