/* 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/carrossel-de-videos.css */
.quimatic-builder-component--carrossel-de-videos {
  border: 0;
  overflow: hidden;
  background: #ffffff;
}

.quimatic-builder-component--carrossel-de-videos .quimatic-builder-component__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--quimatic-section-spacing) 0;
}

.quimatic-video-carousel__heading {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 64px;
  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;
  text-transform: uppercase;
  text-align: center;
}

.quimatic-video-carousel__heading > :first-child {
  margin-top: 0;
}

.quimatic-video-carousel__heading > :last-child {
  margin-bottom: 0;
}

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

.quimatic-video-carousel__heading span {
  color: #ff4e00;
}

.quimatic-video-carousel__viewport {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.quimatic-video-carousel__track {
  display: flex;
  gap: 24px;
  box-sizing: border-box;
  padding-inline: 64px;
  transition: transform 420ms ease;
  will-change: transform;
}

/* Vídeo único: centraliza. Com mais de um, mantém alinhado à esquerda. */
.quimatic-video-carousel:not([data-video-carousel]) .quimatic-video-carousel__track {
  justify-content: center;
}

.quimatic-video-carousel__slide {
  flex: 0 0 min(833.209px, 57.86vw);
  min-width: 0;
}

.quimatic-video-carousel__media {
  position: relative;
  aspect-ratio: 833.209 / 468.495;
  overflow: hidden;
  background: #f2f2f2;
}

.quimatic-video-carousel__media-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
}

button.quimatic-video-carousel__media-link {
  font: inherit;
}

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

.quimatic-video-carousel__video-preview {
  pointer-events: none;
}

.quimatic-video-carousel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.quimatic-video-carousel__play svg {
  display: block;
  width: 100%;
  height: 100%;
}

.quimatic-video-carousel__caption {
  min-height: 57px;
  padding: 6px 12px;
  background: #f2f2f2;
}

.quimatic-video-carousel__caption h3 {
  margin: 0;
  color: var(--black-quimatic, #0a0203);
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.18px;
  text-transform: uppercase;
}

.quimatic-video-carousel__caption p {
  margin: 0;
  color: #475467;
  font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.quimatic-video-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 120px 0 64px;
}

.quimatic-video-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quimatic-video-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f5d8cc;
  cursor: pointer;
  transition: background-color 220ms ease;
}

.quimatic-video-carousel__dot.is-active {
  background: #ff4e00;
}

.quimatic-video-carousel__arrows {
  display: flex;
  gap: 16px;
}

.quimatic-video-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--black-quimatic, #0a0203);
  background: #ffffff;
  color: var(--black-quimatic, #0a0203);
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.quimatic-video-carousel__arrow:focus-visible {
  border-color: #ff4e00;
  background: #ff4e00;
  color: #ffffff;
}

@media (hover: hover) {
  .quimatic-video-carousel__arrow:hover {
    border-color: #ff4e00;
    background: #ff4e00;
    color: #ffffff;
  }
}

.quimatic-video-carousel__arrow svg {
  width: 24px;
  height: 24px;
  transition: transform 220ms ease;
}

.quimatic-video-carousel__arrow--prev:focus-visible:not(:disabled) svg {
  transform: translateX(-4px);
}

@media (hover: hover) {
  .quimatic-video-carousel__arrow--prev:hover:not(:disabled) svg {
    transform: translateX(-4px);
  }
}

.quimatic-video-carousel__arrow--next:focus-visible:not(:disabled) svg {
  transform: translateX(4px);
}

@media (hover: hover) {
  .quimatic-video-carousel__arrow--next:hover:not(:disabled) svg {
    transform: translateX(4px);
  }
}

.quimatic-video-carousel__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

@media (max-width: 991px) {
  .quimatic-video-carousel__heading {
    padding-inline: 24px;
  }

  .quimatic-video-carousel__track {
    padding-inline: 24px;
  }

  .quimatic-video-carousel__slide {
    flex-basis: min(760px, 78vw);
  }

  .quimatic-video-carousel__controls {
    padding-inline: 24px;
  }
}

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

  .quimatic-builder-component--carrossel-de-videos .quimatic-builder-component__inner {
    gap: 24px;
    padding: 32px 16px;
  }

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

  .quimatic-video-carousel__heading {
    width: 100%;
    padding: 0;
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.28px;
    text-align: center;
  }

  .quimatic-video-carousel__viewport {
    width: 100%;
    margin-inline: 0;
  }

  .quimatic-video-carousel__track {
    gap: 24px;
    padding: 0;
  }

  .quimatic-video-carousel__slide {
    flex-basis: 100%;
  }

  .quimatic-video-carousel__media {
    height: 193px;
    aspect-ratio: auto;
  }

  .quimatic-video-carousel__play {
    width: 52px;
    height: 52px;
  }

  .quimatic-video-carousel__caption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 64px;
    padding: 12px 12px 0;
  }

  .quimatic-video-carousel__caption h3 {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .quimatic-video-carousel__caption p {
    font-size: 12px;
    line-height: 16px;
  }

  .quimatic-video-carousel__controls {
    width: 100%;
    align-items: flex-end;
    gap: 24px;
    padding: 0;
  }

  .quimatic-video-carousel__arrows {
    margin-left: auto;
    gap: 12px;
  }

  .quimatic-video-carousel__arrow {
    width: 34px;
    height: 34px;
  }

  .quimatic-video-carousel__arrow svg {
    width: 16px;
    height: 16px;
  }
}

/* Modal de vídeo */
.quimatic-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.quimatic-video-modal[hidden] {
  display: none;
}

.quimatic-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.quimatic-video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
}

.quimatic-video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.quimatic-video-modal__frame iframe,
.quimatic-video-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.quimatic-video-modal__frame video {
  object-fit: contain;
}

.quimatic-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.quimatic-video-modal__close svg {
  width: 28px;
  height: 28px;
}

body.quimatic-video-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .quimatic-video-modal {
    padding: 16px;
  }

  .quimatic-video-modal__close {
    top: -38px;
  }
}

/* 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/downloads.css */
.quimatic-builder-component--downloads {
    border: 0;
    overflow: hidden;
    background: #ffffff;
    scroll-margin-top: 88px;
}

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

.quimatic-downloads {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.quimatic-downloads__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: min(100%, 768px);
    text-align: center;
}

.quimatic-downloads__title {
    width: 100%;
    color: var(--black-quimatic, #0a0203);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--Text-Sizes-Heading-2, 48px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

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

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

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

.quimatic-downloads__title strong,
.quimatic-downloads__title b {
    color: var(--quimatic, #ff4e00);
    font-weight: 600;
}

.quimatic-downloads__title-highlight {
    color: var(--quimatic, #ff4e00);
}

.quimatic-downloads__subtitle {
    width: 100%;
    margin: 0;
    color: #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-downloads__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.quimatic-downloads__card {
    display: flex;
    flex: 0 0 249.6px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    width: 249.6px;
    min-width: 0;
    min-height: 236px;
    padding: 24px;
    border: none;
    background: #f2f2f2;
    border-radius: 0;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

.quimatic-downloads__card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    min-height: 0;
}

.quimatic-downloads__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--quimatic, #ff4e00);
    position: relative;
    top: -4px;
    left: -4px;
}

.quimatic-downloads__card-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 0;
}

.quimatic-downloads__card-eyebrow {
    width: 100%;
    margin: 0;
    color: var(--color\/neutral, #7f7f7f);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.quimatic-downloads__icon img,
.quimatic-downloads__icon svg {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.quimatic-downloads__icon--default svg path,
.quimatic-downloads__icon--default svg circle {
    fill: #ff4e00;
    stroke: none;
}

.quimatic-downloads__card-title {
    width: 100%;
    margin: 0;
    color: var(--color-scheme-3-text, #0a0203);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
}

.quimatic-downloads__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    padding: 8px 16px;
    border: 1px solid var(--quimatic, #ff4e00);
    background: var(--quimatic, #ff4e00);
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14.58px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: background-color 220ms ease, color 220ms ease;
}

.quimatic-downloads__button svg {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

.quimatic-downloads__button:focus-visible {
    background: #0a0203;
    color: #ffffff;
}

@media (hover: hover) {
  .quimatic-downloads__button:hover {
    background: #0a0203;
    color: #ffffff;
  }
}

.quimatic-downloads__navigation {
    display: none;
}

.quimatic-downloads__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-downloads__nav-button[disabled] {
    opacity: 0.5;
    cursor: default;
}

.quimatic-downloads__nav-button svg {
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 220ms ease;
}

@media (hover: hover) {
  .quimatic-downloads__nav-button[data-quimatic-downloads-prev]:not([disabled]):hover svg {
    transform: translateX(-4px);
  }
}

@media (hover: hover) {
  .quimatic-downloads__nav-button[data-quimatic-downloads-next]:not([disabled]):hover svg {
    transform: translateX(4px);
  }
}

@media (max-width: 1180px) {
    .quimatic-builder-component--downloads .quimatic-builder-component__inner {
        padding-right: 24px;
        padding-left: 24px;
    }
}

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

    .quimatic-builder-component--downloads .quimatic-builder-component__inner {
        padding: 32px 16px;
        box-sizing: border-box;
    }

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

    .quimatic-downloads {
        align-items: flex-start;
        gap: 24px;
    }

    .quimatic-downloads__header {
        align-items: flex-start;
        gap: 24px;
        text-align: left;
    }

    .quimatic-downloads__title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 0;
    }

    .quimatic-downloads__subtitle {
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
    }

    .quimatic-downloads__grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
        width: 100%;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 0;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .quimatic-downloads__grid::-webkit-scrollbar {
        display: none;
    }

    .quimatic-downloads__card {
        flex: 0 0 min(249.6px, 100%);
        width: min(249.6px, 100%);
        height: auto;
        min-height: 280px;
        scroll-snap-align: start;
    }

    .quimatic-downloads__card-content {
        flex: 1 0 auto;
        min-height: min-content;
    }

    .quimatic-downloads__card-eyebrow,
    .quimatic-downloads__card-title {
        letter-spacing: 0;
        overflow-wrap: anywhere;
    }

    .quimatic-downloads__button {
        flex: 0 0 auto;
    }

    .quimatic-downloads__navigation {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding-top: 6px;
    }
}

/* styles/componentes/grid-de-cards-com-imagens.css */
.quimatic-builder-component--image-card-grid {
    border: 0;
    background: #ffffff;
}

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

.quimatic-image-card-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.quimatic-image-card-grid__title {
    width: 100%;
    color: var(--black-quimatic, #0a0203);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.quimatic-image-card-grid__title > :first-child {
    margin-top: 0;
}

.quimatic-image-card-grid__title > :last-child {
    margin-bottom: 0;
}

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

.quimatic-image-card-grid__title strong {
    color: var(--quimatic, #ff4e00);
    font-weight: 600;
}

.quimatic-image-card-grid__list {
    display: flex;
    gap: 16px;
    width: 100%;
}

.quimatic-image-card-grid__column {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.quimatic-image-card-grid__card {
    display: flex;
    align-items: stretch;
    min-width: 0;
    height: 145px;
    background: transparent;
    overflow: hidden;
}

.quimatic-image-card-grid__media {
    flex: 0 0 145px;
    width: 145px;
    height: 145px;
    overflow: hidden;
    background: #f2f2f2;
}

.quimatic-image-card-grid__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quimatic-image-card-grid__content {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
    height: 145px;
    padding: 32px 32px 32px 24px;
    background: var(--color-neutral-lightest, #f2f2f2);
    overflow: hidden;
    -webkit-clip-path: polygon(0 0, calc(100% - 47px) 0, 100% 47px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, calc(100% - 47px) 0, 100% 47px, 100% 100%, 0 100%);
}

.quimatic-image-card-grid__content-inner {
    position: relative;
    width: 100%;
    min-width: 0;
    color: var(--Color-Scheme-4-Text, #000000);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
}

.quimatic-image-card-grid__card-title {
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: uppercase;
}

.quimatic-image-card-grid__card-text {
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-image-card-grid__card-text > :first-child {
    margin-top: 0;
}

.quimatic-image-card-grid__card-text > :last-child {
    margin-bottom: 0;
}

.quimatic-image-card-grid__card-text p {
    margin: 0;
}

@media (max-width: 1180px) {
    .quimatic-image-card-grid__list {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .quimatic-builder-component--image-card-grid .quimatic-builder-component__inner {
        padding: 40px 24px;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--image-card-grid {
        margin-inline: -16px;
        background: #ffffff;
    }

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

    .quimatic-builder-component--image-card-grid .quimatic-builder-component__inner {
        padding: 32px 16px;
        background: #ffffff;
    }

    .quimatic-image-card-grid {
        gap: 24px;
    }

    .quimatic-image-card-grid__title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 0;
    }

    .quimatic-image-card-grid__list,
    .quimatic-image-card-grid__column {
        gap: 8px;
    }

    .quimatic-image-card-grid__card {
        flex-direction: column;
        height: auto;
    }

    .quimatic-image-card-grid__media {
        display: none;
    }

    .quimatic-image-card-grid__content {
        height: auto;
        min-height: 128px;
        padding: 20px 20px 8px 8px;
        align-items: center;
        -webkit-clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 40px, 100% 100%, 0 100%);
        clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 40px, 100% 100%, 0 100%);
    }

    .quimatic-image-card-grid__card-title {
        font-size: 20px;
        line-height: 30px;
    }

    .quimatic-image-card-grid__card-text {
        font-size: 16px;
        line-height: 24px;
    }
}

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

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

.quimatic-grid-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.quimatic-grid-cards__title {
    max-width: 768px;
    color: var(--quimatic-text);
    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-grid-cards__title > :first-child {
    margin-top: 0;
}

.quimatic-grid-cards__title > :last-child {
    margin-bottom: 0;
}

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

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

.quimatic-grid-cards__card {
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-width: 0;
    min-height: 166px;
    padding: 24px;
    border: 1px solid #d8d8d8;
    background: #f2f2f2;
}

.quimatic-grid-cards__list--remainder-1 .quimatic-grid-cards__card:last-child {
    grid-column: span 6;
}

.quimatic-grid-cards__list--remainder-2 .quimatic-grid-cards__card:nth-last-child(-n + 2) {
    grid-column: span 3;
}

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

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

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

.quimatic-grid-cards__default-icon {
    display: block;
    width: 48px;
    height: 48px;
}

.quimatic-grid-cards__card-title {
    min-width: 0;
    margin: 0;
    color: var(--quimatic-orange);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.32px;
}

.quimatic-grid-cards__card-text {
    width: 100%;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-grid-cards__card-text > :first-child {
    margin-top: 0;
}

.quimatic-grid-cards__card-text > :last-child {
    margin-bottom: 0;
}

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

    .quimatic-builder-component--grid-cards .quimatic-builder-component__inner {
        padding: 32px 24px;
    }

    .quimatic-grid-cards__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quimatic-grid-cards__card,
    .quimatic-grid-cards__list--remainder-1 .quimatic-grid-cards__card:last-child,
    .quimatic-grid-cards__list--remainder-2 .quimatic-grid-cards__card:nth-last-child(-n + 2) {
        grid-column: auto;
    }
}

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

    .quimatic-builder-component--grid-cards .quimatic-builder-component__inner {
        padding: var(--quimatic-section-spacing) 16px;
    }

    .quimatic-grid-cards {
        gap: 32px;
    }

    .quimatic-grid-cards__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.28px;
    }

    .quimatic-grid-cards__list {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .quimatic-grid-cards__card {
        min-height: 0;
        gap: 20px;
        padding: 24px;
    }

    .quimatic-grid-cards__card-header {
        gap: 8px;
    }

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

    .quimatic-grid-cards__icon-image {
        width: 42px;
        height: 42px;
    }

    .quimatic-grid-cards__default-icon {
        width: 48px;
        height: 48px;
    }

    .quimatic-grid-cards__card-title {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: -0.24px;
    }

    .quimatic-grid-cards__card-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0;
    }
}

/* 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;
    }
}

