/* styles/componentes/cards-com-icones.css */
.quimatic-builder-component--cards-com-icones {
  border: 0;
  overflow: visible;
  background: #ffffff;
}

.quimatic-builder-component--cards-com-icones .quimatic-builder-component__inner {
  width: min(100%, 1440px);
  max-width: none;
  margin: 0 auto;
  padding: var(--quimatic-section-spacing) 64px;
}

.quimatic-icon-cards--secao {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.quimatic-icon-cards__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 768px;
}

.quimatic-icon-cards__heading-title,
.quimatic-icon-cards__heading-title > * {
  margin: 0;
  color: var(--black-quimatic, #0a0203);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--Text-Sizes-Heading-3, 40px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.quimatic-icon-cards__heading-title strong {
  color: var(--quimatic, #ff4e00);
  font-weight: 600;
}

.quimatic-icon-cards__heading-subtitle {
  margin: 0;
  color: var(--gray-600, #475467);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--Text-Sizes-Heading-5, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.24px;
}

.quimatic-icon-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.quimatic-icon-cards--secao .quimatic-icon-cards__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quimatic-icon-cards__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
  min-height: 166px;
  padding: 24px;
  border: 1px solid var(--color-neutral-lighter, #d8d8d8);
  background: #f2f2f2;
}

.quimatic-icon-cards--secao .quimatic-icon-cards__card {
  gap: 16px;
  min-height: 0;
  border-color: var(--Color-Scheme-3-Border, rgba(0, 0, 0, 0.15));
  overflow: hidden;
}

.quimatic-icon-cards__header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.quimatic-icon-cards--secao .quimatic-icon-cards__header {
  align-items: flex-start;
}

.quimatic-icon-cards__icon {
  display: grid;
  flex: 0 0 64px;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.quimatic-icon-cards__icon-image {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.quimatic-icon-cards__icon--fallback {
  color: var(--quimatic, #ff4e00);
}

.quimatic-icon-cards__fallback-icon {
  display: block;
  width: 42px;
  height: 42px;
}

.quimatic-icon-cards__icon--fallback .quimatic-icon-cards__fallback-icon path {
  fill: currentColor;
}

.quimatic-icon-cards__title {
  min-width: 0;
  margin: 0;
  color: var(--quimatic, #ff4e00);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--Text-Sizes-Heading-3, 40px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
  overflow-wrap: anywhere;
}

.quimatic-icon-cards__text {
  width: 100%;
  color: var(--black-quimatic, #0a0203);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: var(--Text-Sizes-Heading-5, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.24px;
}

.quimatic-icon-cards--secao .quimatic-icon-cards__text {
  color: var(--Color-Scheme-3-Text, #000000);
}

.quimatic-icon-cards__text > :first-child {
  margin-top: 0;
}

.quimatic-icon-cards__text > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .quimatic-icon-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quimatic-icon-cards--secao .quimatic-icon-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .quimatic-builder-component--cards-com-icones .quimatic-builder-component__inner {
    padding: 40px 24px;
  }
}

@media (max-width: 767px) {
  .quimatic-builder-component--cards-com-icones {
    margin-inline: -16px;
    background: #ffffff;
  }

  .quimatic-builder-page--products .quimatic-builder-component--cards-com-icones,
  .quimatic-builder-page--product-single .quimatic-builder-component--cards-com-icones {
    margin-inline: -8px;
  }

  .quimatic-builder-component--cards-com-icones .quimatic-builder-component__inner {
    padding: 32px 16px;
    background: #ffffff;
  }

  .quimatic-icon-cards__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .quimatic-icon-cards--secao .quimatic-icon-cards__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .quimatic-icon-cards__card {
    gap: 12px;
    min-height: 150px;
    padding: 17px 17px 1px;
  }

  .quimatic-icon-cards__header {
    height: 48px;
    gap: 12px;
  }

  .quimatic-icon-cards__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .quimatic-icon-cards__icon-image {
    width: 32px;
    height: 32px;
  }

  .quimatic-icon-cards__fallback-icon {
    width: 32px;
    height: 32px;
  }

  .quimatic-icon-cards__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    overflow-wrap: normal;
  }

  .quimatic-icon-cards__heading-title,
  .quimatic-icon-cards__heading-title > * {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }

  .quimatic-icon-cards__heading-subtitle {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.2px;
  }

  .quimatic-icon-cards__text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
  }
}

/* styles/componentes/cta.css */
.quimatic-builder-component--cta {
    border: 0;
    background: #ffffff;
    margin-inline: -20px;
}

.quimatic-builder-component--cta .quimatic-builder-component__inner {
    max-width: none;
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: var(--quimatic-section-spacing) 64px;
}

.quimatic-builder-component--cta-background-cinza .quimatic-builder-component__inner {
    padding-top: 24px;
    padding-bottom: 24px;
}

.quimatic-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1312px;
    min-height: 207px;
    margin: 0 auto;
    padding: 64px 24px;
    background: var(--quimatic-orange);
    overflow: hidden;
}

.quimatic-cta--background-laranja {
    background: var(--quimatic-orange);
}

.quimatic-cta--background-cinza {
    background: #f2f2f2;
}

.quimatic-cta--has-background-image {
    background-color: var(--quimatic-orange);
}

.quimatic-cta__background-picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.quimatic-cta__background-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.quimatic-cta::after {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -1px;
    width: 120.367px;
    height: 101px;
    background: #ffffff;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    pointer-events: none;
}

.quimatic-cta--background-cinza::after {
    background: #ffffff;
}

.quimatic-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: min(100%, 960px);
    text-align: center;
}

.quimatic-cta--background-cinza .quimatic-cta__title,
.quimatic-cta--background-cinza .quimatic-cta__description {
    color: #0a0203;
}

.quimatic-cta--background-cinza .quimatic-cta__content {
    width: min(100%, 700px);
}

.quimatic-cta__title {
    width: 100%;
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.quimatic-cta__title > :first-child,
.quimatic-cta__description > :first-child {
    margin-top: 0;
}

.quimatic-cta__title > :last-child,
.quimatic-cta__description > :last-child {
    margin-bottom: 0;
}

.quimatic-cta__title p,
.quimatic-cta__title h1,
.quimatic-cta__title h2,
.quimatic-cta__title h3,
.quimatic-cta__title h4,
.quimatic-cta__title h5,
.quimatic-cta__title h6 {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

.quimatic-cta__description {
    width: 100%;
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.quimatic-cta--background-cinza .quimatic-cta__description {
    color: #606060;
    font-weight: 400;
}

.quimatic-cta__actions {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
}

.quimatic-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    min-height: 30px;
    padding: 8px 20px;
    border: 1px solid #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.quimatic-cta__button--primary {
    background: #ffffff;
    color: var(--quimatic-orange);
}

.quimatic-cta__button--secondary {
    background: transparent;
    color: #ffffff;
}

.quimatic-cta__button--primary:focus-visible {
    background: transparent;
    color: #ffffff;
}

@media (hover: hover) {
  .quimatic-cta__button--primary:hover {
    background: transparent;
    color: #ffffff;
  }
}

.quimatic-cta__button--secondary:focus-visible {
    background: #ffffff;
    color: var(--quimatic-orange);
}

@media (hover: hover) {
  .quimatic-cta__button--secondary:hover {
    background: #ffffff;
    color: var(--quimatic-orange);
  }
}

.quimatic-cta--background-cinza .quimatic-cta__button--primary {
    border-color: var(--quimatic-orange);
    background: var(--quimatic-orange);
    color: #ffffff;
}

.quimatic-cta--background-imagem .quimatic-cta__button--primary {
    border-color: var(--quimatic-orange);
    background: var(--quimatic-orange);
    color: #ffffff;
}

.quimatic-cta--background-cinza .quimatic-cta__button {
    width: 215.933px;
    min-height: 40px;
}

.quimatic-cta--background-imagem .quimatic-cta__button {
    width: 215.933px;
    min-height: 40px;
}

.quimatic-cta--background-cinza .quimatic-cta__button--secondary {
    border-color: var(--quimatic-orange);
    background: transparent;
    color: var(--quimatic-orange);
}

.quimatic-cta--background-imagem .quimatic-cta__button--secondary {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--quimatic-orange);
}

.quimatic-cta--background-cinza .quimatic-cta__button--primary:focus-visible {
    background: transparent;
    color: var(--quimatic-orange);
}

@media (hover: hover) {
  .quimatic-cta--background-cinza .quimatic-cta__button--primary:hover {
    background: transparent;
    color: var(--quimatic-orange);
  }
}

.quimatic-cta--background-imagem .quimatic-cta__button--primary:focus-visible {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

@media (hover: hover) {
  .quimatic-cta--background-imagem .quimatic-cta__button--primary:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
}

.quimatic-cta--background-cinza .quimatic-cta__button--secondary:focus-visible {
    background: var(--quimatic-orange);
    color: #ffffff;
}

@media (hover: hover) {
  .quimatic-cta--background-cinza .quimatic-cta__button--secondary:hover {
    background: var(--quimatic-orange);
    color: #ffffff;
  }
}

.quimatic-cta--background-imagem .quimatic-cta__button--secondary:focus-visible {
    border-color: var(--quimatic-orange);
    background: var(--quimatic-orange);
    color: #ffffff;
}

@media (hover: hover) {
  .quimatic-cta--background-imagem .quimatic-cta__button--secondary:hover {
    border-color: var(--quimatic-orange);
    background: var(--quimatic-orange);
    color: #ffffff;
  }
}

@media (max-width: 991px) {
    .quimatic-builder-component--cta {
        margin-inline: 0;
    }

    .quimatic-builder-component--cta .quimatic-builder-component__inner {
        padding: var(--quimatic-section-spacing) 24px;
    }

    .quimatic-builder-component--cta-background-cinza .quimatic-builder-component__inner {
        padding: 40px 24px;
    }

    .quimatic-cta {
        min-height: 0;
        padding: 56px 20px;
    }

    .quimatic-cta::after {
        width: 92px;
        height: 78px;
    }

    .quimatic-cta__title {
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .quimatic-cta--background-cinza .quimatic-cta__description {
        font-size: 18px;
    }

    .quimatic-cta--background-cinza .quimatic-cta__button {
        width: 100%;
        max-width: 320px;
    }

    .quimatic-cta--background-imagem .quimatic-cta__button {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--cta {
        margin-inline: -16px;
    }

    .quimatic-builder-page--products .quimatic-builder-component--cta,
    .quimatic-builder-page--product-single .quimatic-builder-component--cta {
        margin-inline: -8px;
    }

    .quimatic-builder-component--cta .quimatic-builder-component__inner {
        padding: 32px 16px;
    }

    .quimatic-cta {
        padding: 32px 15px 72px;
    }

    .quimatic-cta--background-cinza {
        padding: 40px 16px 72px;
    }

    .quimatic-cta::after {
        width: 86.806px;
        height: 73px;
    }

    .quimatic-cta--background-cinza::after {
        width: 73px;
        height: 61px;
    }

    .quimatic-cta__content {
        gap: 24px;
    }

    .quimatic-cta__title {
        font-size: 28px;
        letter-spacing: 0;
    }

    .quimatic-cta--background-cinza .quimatic-cta__content {
        gap: 14px;
    }

    .quimatic-cta--background-cinza .quimatic-cta__title {
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: 0;
    }

    .quimatic-cta__description {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .quimatic-cta--background-cinza .quimatic-cta__description {
        font-size: 16px;
        line-height: 23.2px;
    }

    .quimatic-cta__actions {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .quimatic-cta__button {
        width: 100%;
    }

    .quimatic-cta--background-cinza .quimatic-cta__button {
        max-width: none;
    }

    .quimatic-cta--background-imagem .quimatic-cta__button {
        max-width: none;
    }
}

/* styles/componentes/hero-banner.css */
.quimatic-builder-component--hero {
    border: 0;
    background: #f2f2f2;
    margin-inline: -20px;
}

.quimatic-builder-component--hero .quimatic-builder-component__inner {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 24px;
}

.quimatic-hero-banner {
    display: flex;
    gap: 16px;
    align-items: stretch;
    width: 100%;
    height: 528px;
}

.quimatic-hero-banner__content {
    display: flex;
    flex: 0 0 570px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    min-width: 570px;
    height: 100%;
    padding: 40px 32px 36px;
    background: #ffffff;
}

.quimatic-hero-banner__title {
    margin: 0;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
}

.quimatic-hero-banner__title > :first-child {
    margin-top: 0;
}

.quimatic-hero-banner__title > :last-child {
    margin-bottom: 0;
}

.quimatic-hero-banner__title p,
.quimatic-hero-banner__title h1,
.quimatic-hero-banner__title h2,
.quimatic-hero-banner__title h3,
.quimatic-hero-banner__title h4,
.quimatic-hero-banner__title h5,
.quimatic-hero-banner__title h6 {
    margin: 0;
    color: inherit;
    font-family: inherit;
}

.quimatic-hero-banner__title h1,
.quimatic-hero-banner__title p {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.56px;
}

.quimatic-hero-banner__title h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.48px;
}

.quimatic-hero-banner__title h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.4px;
}

.quimatic-hero-banner__title h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.32px;
}

.quimatic-hero-banner__title h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.24px;
}

.quimatic-hero-banner__title h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.2px;
}

.quimatic-hero-banner__description {
    color: #475467;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.quimatic-hero-banner__description p {
    margin: 0;
}

.quimatic-hero-banner__description strong {
    color: #344054;
    font-weight: 600;
}

.quimatic-hero-banner__media {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.quimatic-hero-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quimatic-hero-banner__media--slider .quimatic-hero-banner__image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease-in-out;
}

.quimatic-hero-banner__media--slider .quimatic-hero-banner__image.is-active {
    opacity: 1;
}

.quimatic-hero-banner__image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.quimatic-hero-banner__media--slider .quimatic-hero-banner__image-link {
    position: absolute;
    inset: 0;
}

.quimatic-builder-component--hero-slides .hero-banner {
    display: block;
    box-sizing: border-box;
    width: min(100%, 1440px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 22px 24px 24px;
    background-color: #f2f2f2;
}

.quimatic-builder-component--hero-slides .hero-banner__slider {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.quimatic-builder-component--hero-slides .hero-banner__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms ease;
}

.quimatic-builder-component--hero-slides .hero-banner__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.quimatic-builder-component--hero-slides .hero-banner__slide .hero-banner__title,
.quimatic-builder-component--hero-slides .hero-banner__slide .hero-banner__description,
.quimatic-builder-component--hero-slides .hero-banner__slide .hero-banner__media {
    opacity: 0;
}

.quimatic-builder-component--hero-slides .hero-banner__slide .hero-banner__title {
    transform: translateY(2px);
    transition: opacity 240ms linear, transform 240ms ease;
}

.quimatic-builder-component--hero-slides .hero-banner__slide .hero-banner__description {
    transform: translateY(2px);
    transition: opacity 240ms linear, transform 240ms ease;
}

.quimatic-builder-component--hero-slides .hero-banner__slide .hero-banner__media {
    transform: none;
    transition: opacity 1600ms ease;
}

.quimatic-builder-component--hero-slides .hero-banner__slide.is-active .hero-banner__title,
.quimatic-builder-component--hero-slides .hero-banner__slide.is-active .hero-banner__description,
.quimatic-builder-component--hero-slides .hero-banner__slide.is-active .hero-banner__media {
    opacity: 1;
    transform: translateY(0);
}

.quimatic-builder-component--hero-slides .hero-banner__content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 480px;
}

.quimatic-builder-component--hero-slides .hero-banner__text-box {
    display: flex;
    flex-direction: column;
    width: 524px;
    padding: 32px;
    --hero-text-gap: 0px;
    gap: var(--hero-text-gap);
    background-color: #ffffff;
    transition: gap 280ms ease;
}

.quimatic-builder-component--hero-slides .hero-banner__slide.is-content-settled .hero-banner__text-box {
    --hero-text-gap: 24px;
}

.quimatic-builder-component--hero-slides .hero-banner__title {
    margin: 0;
    color: #0a0203;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.56px;
}

.quimatic-builder-component--hero-slides .hero-banner__title strong {
    color: #ff4e00;
    font-weight: 700;
}

.quimatic-builder-component--hero-slides .hero-banner__description {
    margin: 0;
    color: #7f7f7f;
    font-family: "Atkinson Hyperlegible", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 29.25px;
}

.quimatic-builder-component--hero-slides .hero-banner__description p {
    margin: 0;
}

.quimatic-builder-component--hero-slides .hero-banner__description strong {
    font-weight: 700;
}

.quimatic-builder-component--hero-slides .hero-banner__media {
    flex: 1;
    min-width: 0;
    height: 480px;
}

a.hero-banner__media {
    cursor: pointer;
}

.quimatic-builder-component--hero-slides .hero-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
    .quimatic-hero-banner__media--slider .quimatic-hero-banner__image,
    .quimatic-builder-component--hero-slides .hero-banner__slide,
    .quimatic-builder-component--hero-slides .hero-banner__title,
    .quimatic-builder-component--hero-slides .hero-banner__description,
    .quimatic-builder-component--hero-slides .hero-banner__media,
    .quimatic-builder-component--hero-slides .hero-banner__text-box {
        transition: none;
    }
}

@media (max-width: 991px) {
    .quimatic-builder-component--hero {
        margin-inline: 0;
    }

    .quimatic-builder-component--hero .quimatic-builder-component__inner {
        padding: 20px;
    }

    .quimatic-hero-banner {
        flex-direction: column;
        height: auto;
    }

    .quimatic-hero-banner__content {
        flex: 0 0 auto;
        min-width: 0;
        height: auto;
        padding: 24px 24px 28px;
    }

    .quimatic-hero-banner__media {
        height: 360px;
    }

    .quimatic-builder-component--hero-slides .hero-banner {
        padding: 22px 24px 24px;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--hero {
        margin-inline: -16px;
    }

    .quimatic-builder-component--hero .quimatic-builder-component__inner {
        padding: 12px 12px 16px;
    }

    .quimatic-hero-banner {
        gap: 12px;
    }

    .quimatic-hero-banner__content {
        gap: 24px;
        padding: 20px 8px;
    }

    .quimatic-hero-banner__title h1,
    .quimatic-hero-banner__title h2,
    .quimatic-hero-banner__title p {
        font-size: 32px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: -0.28px;
    }

    .quimatic-hero-banner__title h3 {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.28px;
    }

    .quimatic-hero-banner__title h4 {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -0.26px;
    }

    .quimatic-hero-banner__title h5 {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: -0.24px;
    }

    .quimatic-hero-banner__title h6 {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: -0.2px;
    }

    .quimatic-hero-banner__description {
        color: #7f7f7f;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }

    .quimatic-hero-banner__media {
        display: block;
        flex: 0 0 206px;
        width: 100%;
        height: 206px;
        min-height: 206px;
    }

    .quimatic-builder-component--hero-slides .hero-banner {
        padding: 12px 12px 16px;
    }

    .quimatic-builder-component--hero-slides .hero-banner__slider {
        display: grid;
        min-height: 0;
    }

    .quimatic-builder-component--hero-slides .hero-banner__slide {
        position: relative;
        grid-area: 1 / 1;
        inset: auto;
        display: block;
        opacity: 0;
        pointer-events: none;
        transition: opacity 360ms ease;
    }

    .quimatic-builder-component--hero-slides .hero-banner__slide.is-active {
        opacity: 1;
        pointer-events: auto;
    }

    .quimatic-builder-component--hero-slides .hero-banner__content {
        flex-direction: column;
        gap: 12px;
        height: auto;
    }

    .quimatic-builder-component--hero-slides .hero-banner__text-box {
        box-sizing: border-box;
        width: 100%;
        min-height: 296px;
        padding: 8px 12px;
        --hero-text-gap: 0px;
        transition: gap 280ms ease;
    }

    .quimatic-builder-component--hero-slides .hero-banner__title {
        font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
        font-size: 32px;
        font-weight: 600;
        line-height: 40px;
        letter-spacing: -0.28px;
    }

    .quimatic-builder-component--hero-slides .hero-banner__title strong {
        font-weight: 600;
    }

    .quimatic-builder-component--hero-slides .hero-banner__description {
        color: #7f7f7f;
        font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0;
    }

    .quimatic-builder-component--hero-slides .hero-banner__media {
        height: 260px;
    }
}

/* styles/componentes/produtos-em-destaque.css */
.quimatic-builder-component--produtos-em-destaque {
    border: 0;
    background-color: #ffffff;
}

.quimatic-builder-component--produtos-em-destaque-bg-cinza {
    background-color: #f2f2f2;
}

.quimatic-builder-component--produtos-em-destaque .featured-products {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 0 24px;
    overflow-x: hidden;
    background-color: #ffffff;
    --featured-side-gutter: 64px;
    --featured-container-max: 1312px;
    --featured-card-transition-duration: 220ms;
    --featured-card-transition-easing: ease;
}

.quimatic-builder-component--produtos-em-destaque-bg-cinza .featured-products {
    background-color: #f2f2f2;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--featured-container-max), calc(100% - (var(--featured-side-gutter) * 2)));
    margin: 0 auto 20px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__header--with-link {
    align-items: flex-end;
    margin-bottom: 40px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__heading {
    min-width: 0;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__title {
    margin: 0;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__title > :first-child {
    margin-top: 0;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__title > :last-child {
    margin-bottom: 0;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__title p,
.quimatic-builder-component--produtos-em-destaque .featured-products__title h1,
.quimatic-builder-component--produtos-em-destaque .featured-products__title h2,
.quimatic-builder-component--produtos-em-destaque .featured-products__title h3,
.quimatic-builder-component--produtos-em-destaque .featured-products__title h4,
.quimatic-builder-component--produtos-em-destaque .featured-products__title h5,
.quimatic-builder-component--produtos-em-destaque .featured-products__title h6 {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__title strong,
.quimatic-builder-component--produtos-em-destaque .featured-products__title b {
    color: #ff4e00;
    font-weight: 600;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__subtitle {
    margin: 21px 0 0;
    color: #ff4e00;
    font-family: "Myriad Pro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.24px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__filters {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 64px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    font-family: "Myriad Pro", sans-serif;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select {
    position: relative;
    width: auto;
    min-width: 0;
    min-height: 42px;
    z-index: 1;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #7f7f7f;
    background: #ffffff;
    transition: border-color 220ms ease;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-open {
    z-index: 10;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-open .featured-products__custom-select-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-label {
    flex: 1 1 auto;
    min-width: 0;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #191919;
    transition: color 220ms ease, transform 220ms ease;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-options {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-option {
    width: 100%;
    padding: 4px 0;
    border: 0;
    background: transparent;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-selected .featured-products__custom-select-trigger {
    color: #ff4e00;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-open .featured-products__custom-select-panel {
    border-color: #b2b2b2;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-open .featured-products__custom-select-trigger {
    color: #ff4e00;
    font-weight: 700;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-open .featured-products__custom-select-icon {
    color: #ff4e00;
    transform: rotate(180deg);
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select.is-open .featured-products__custom-select-options {
    display: flex;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-trigger:focus-visible {
    outline: none;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__custom-select:focus-within .featured-products__custom-select-panel {
    border-color: #ff4e00;
}

@media (hover: hover) {
  .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select:not(.is-open):hover .featured-products__custom-select-trigger,
  .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select:not(.is-open):hover .featured-products__custom-select-icon {
    color: #ff4e00;
  }
}

@media (hover: hover) {
  .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select:not(.is-open):hover .featured-products__custom-select-panel {
    border-color: #7f7f7f;
  }
}

.quimatic-builder-component--produtos-em-destaque .featured-products__select--order + .featured-products__custom-select {
    width: 244px;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__select--category + .featured-products__custom-select {
    width: 244px;
    display: none;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__all-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    padding-bottom: 1px;
    border-bottom: 1px solid #0a0203;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition: color 220ms ease, border-color 220ms ease;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__all-link svg {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    transition: transform 220ms ease;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__all-link:focus-visible {
    border-color: #ff4e00;
    color: #ff4e00;
}

@media (hover: hover) {
  .quimatic-builder-component--produtos-em-destaque .featured-products__all-link:hover {
    border-color: #ff4e00;
    color: #ff4e00;
  }
}

.quimatic-builder-component--produtos-em-destaque .featured-products__all-link:focus-visible svg {
    transform: translate(2px, -2px);
}

@media (hover: hover) {
  .quimatic-builder-component--produtos-em-destaque .featured-products__all-link:hover svg {
    transform: translate(2px, -2px);
  }
}

.quimatic-builder-component--produtos-em-destaque .featured-products__viewport {
    width: min(var(--featured-container-max), calc(100% - (var(--featured-side-gutter) * 2)));
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
    touch-action: pan-y;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__viewport.is-dragging {
    cursor: grabbing;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__track {
    display: flex;
    align-items: stretch;
    gap: 10px;
    transition: transform 320ms ease;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__card {
    flex: 0 0 336px;
    width: 336px;
    min-width: 0;
}

@media (min-width: 1361px) {
    .quimatic-builder-component--produtos-em-destaque .featured-products--carrossel.featured-products--few-cards .featured-products__track {
        justify-content: center;
    }
}

.quimatic-builder-component--produtos-em-destaque .featured-products__navigation {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(var(--featured-container-max), calc(100% - (var(--featured-side-gutter) * 2)));
    margin: 35px auto 0;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: #ff4e00;
    cursor: pointer;
    overflow: hidden;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__nav-button[disabled] {
    padding: 0;
    opacity: 0.5;
    cursor: default;
}

.quimatic-builder-component--produtos-em-destaque .featured-products__nav-button svg {
    display: block;
    width: 40px;
    height: 40px;
    pointer-events: none;
    transition: transform 220ms ease;
    will-change: transform;
}

@media (hover: hover) {
  .quimatic-builder-component--produtos-em-destaque .featured-products__nav-button[data-featured-prev]:hover:not([disabled]) svg {
    transform: translateX(-4px);
  }
}

@media (hover: hover) {
  .quimatic-builder-component--produtos-em-destaque .featured-products__nav-button[data-featured-next]:hover:not([disabled]) svg {
    transform: translateX(4px);
  }
}

.quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__viewport {
    cursor: default;
    touch-action: auto;
    user-select: auto;
    -webkit-user-select: auto;
}

.quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    transition: none;
    transform: none !important;
}

.quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__card {
    flex: initial;
    width: 100%;
}

.quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__navigation {
    display: none;
}

@media (max-width: 1360px) {
    .quimatic-builder-component--produtos-em-destaque .featured-products {
        padding: 80px 0 56px;
        --featured-side-gutter: 24px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__header {
        flex-direction: column;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__header--with-link {
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__filters {
        flex-wrap: wrap;
        width: 100%;
        margin-top: 0;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select {
        min-width: 200px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card {
        flex-basis: calc((100% - 10px) / 2);
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__card {
        flex-basis: initial;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__subtitle {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--produtos-em-destaque {
        margin-inline: -16px;
        background-color: #f2f2f2;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 32px 16px;
        background-color: #f2f2f2;
        box-sizing: border-box;
        --featured-side-gutter: 0px;
    }

    .quimatic-builder-page--products .quimatic-builder-component--produtos-em-destaque,
    .quimatic-builder-page--product-single .quimatic-builder-component--produtos-em-destaque {
        margin-inline: -8px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__header {
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        margin-bottom: 0;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__header--with-link {
        display: contents;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__header--with-filters {
        min-height: 0;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__header--with-link {
        margin-bottom: 24px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__heading {
        width: 100%;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__title {
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__subtitle {
        margin: 10px 0 0;
        font-size: 20px;
        line-height: 27px;
        letter-spacing: 0;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__filters {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
        min-height: 0;
        margin-top: 18px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select,
    .quimatic-builder-component--produtos-em-destaque .featured-products__select--order + .featured-products__custom-select,
    .quimatic-builder-component--produtos-em-destaque .featured-products__select--category + .featured-products__custom-select {
        width: 100%;
        min-width: 0;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-panel {
        min-height: 44px;
        gap: 10px;
        padding: 10px 12px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-trigger,
    .quimatic-builder-component--produtos-em-destaque .featured-products__custom-select-option {
        font-size: 16px;
        line-height: 24px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__viewport {
        order: 2;
        width: 100%;
        overflow: visible;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__track {
        gap: 10px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card {
        flex: 0 0 100%;
        width: 100%;
        height: 447px;
        min-height: 447px;
        padding-bottom: 0;
        overflow: hidden;
        background: #ffffff;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-image-wrap {
        min-height: 0;
        height: auto;
        aspect-ratio: 336 / 218;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-image {
        max-width: 115px;
        max-height: 195px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-title {
        height: auto;
        min-height: 0;
        max-height: 50.4px;
        margin: 16px 12px 8px;
        font-size: 18px;
        line-height: 25.2px;
        -webkit-line-clamp: 2;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-description {
        height: 63px;
        min-height: 63px;
        max-height: 63px;
        margin: 0 12px;
        font-size: 14px;
        line-height: 21px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-chips {
        height: 21px;
        min-height: 21px;
        max-height: 21px;
        margin: 8px 12px 0;
        overflow: hidden;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-chip {
        font-size: 14px;
        line-height: 21px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__card-button {
        width: calc(100% - 24px);
        min-height: 42px;
        margin: auto 12px 12px;
        padding: 8px 1px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__track {
        grid-template-columns: 1fr;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products--cards .featured-products__card {
        flex: initial;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__navigation {
        order: 3;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 0;
        padding-top: 6px;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__all-link {
        order: 4;
        justify-content: center;
        width: 100%;
        min-height: 42px;
        padding: 9px 1px;
        border: 1px solid #ff4e00;
        background: #ffffff;
        color: #ff4e00;
        font-size: 14.6px;
        line-height: 21.87px;
        text-align: center;
    }

    .quimatic-builder-component--produtos-em-destaque .featured-products__all-link svg {
        display: none;
    }
}

