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

.quimatic-builder-component--big-numbers-gray {
    background: #f2f2f2;
}

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

.quimatic-builder-component--big-numbers-gray .quimatic-builder-component__inner,
.quimatic-builder-component--big-numbers-with-seal .quimatic-builder-component__inner {
    padding-top: 24px;
    padding-bottom: 24px;
}

.quimatic-big-numbers {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.quimatic-builder-component--big-numbers-with-seal .quimatic-big-numbers {
    max-width: 1280px;
}

.quimatic-big-numbers__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.quimatic-big-numbers__title {
    flex: 1 1 auto;
    min-width: 0;
    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-big-numbers__title > :first-child {
    margin-top: 0;
}

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

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

.quimatic-big-numbers__seal {
    display: block;
    flex: 0 0 auto;
    width: 208px;
    height: 97.307px;
    object-fit: cover;
}

.quimatic-big-numbers__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.quimatic-big-numbers__row {
    display: grid;
    gap: 16px;
    width: 100%;
}

.quimatic-big-numbers__row--columns-1 {
    grid-template-columns: minmax(0, 1fr);
}

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

.quimatic-big-numbers__row--columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quimatic-big-numbers__item {
    min-width: 0;
    padding: 16px 16px 16px 32px;
    border: 1px solid var(--quimatic-orange);
    opacity: 0;
    transform: translate(-16px, 64px);
    transition: opacity 720ms ease, transform 820ms cubic-bezier(0.22, 0.84, 0.24, 1);
    transition-delay: var(--big-number-delay, 0ms);
    will-change: opacity, transform;
}

.quimatic-builder-component--big-numbers.is-revealed .quimatic-big-numbers__item {
    opacity: 1;
    transform: translate(0, 0);
}

.quimatic-big-numbers__value {
    margin: 0;
    color: #0d0d0d;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.3;
}

.quimatic-big-numbers__label {
    margin: 0;
    color: var(--quimatic-text);
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.26px;
}

@media (prefers-reduced-motion: reduce) {
    .quimatic-big-numbers__item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

    .quimatic-builder-component--big-numbers .quimatic-builder-component__inner {
        padding: 64px 24px;
    }

    .quimatic-big-numbers__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .quimatic-big-numbers__row,
    .quimatic-big-numbers__row--columns-2,
    .quimatic-big-numbers__row--columns-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .quimatic-big-numbers__title {
        font-size: 32px;
    }

    .quimatic-big-numbers__value {
        font-size: 52px;
    }

    .quimatic-big-numbers__label {
        font-size: 22px;
    }
}

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

    .quimatic-builder-component--big-numbers .quimatic-builder-component__inner {
        padding: 56px 16px;
    }

    .quimatic-big-numbers {
        gap: 18px;
    }

    .quimatic-big-numbers__header {
        align-items: center;
        gap: 13px;
        text-align: center;
    }

    .quimatic-big-numbers__title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.4px;
        text-align: center;
    }

    .quimatic-big-numbers__seal {
        width: 172px;
        height: auto;
        object-fit: contain;
    }

    .quimatic-big-numbers__grid,
    .quimatic-big-numbers__row {
        gap: 10px;
    }

    .quimatic-big-numbers__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 17px;
        text-align: center;
    }

    .quimatic-big-numbers__value {
        width: 100%;
        font-size: 36px;
        line-height: 1.3;
    }

    .quimatic-big-numbers__label {
        width: 100%;
        font-size: 17px;
        line-height: 1.35;
        letter-spacing: -0.26px;
    }
}

/* 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-depoimentos.css */
.quimatic-builder-component--testimonials-carousel {
    border: 0;
    background: #ffffff;
    margin-inline: -20px;
}

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

.quimatic-testimonials-carousel {
    --testimonials-carousel-edge-offset: max(64px, calc(50vw - 656px));
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.quimatic-testimonials-carousel__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;
    text-align: left;
}

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

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

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

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

.quimatic-testimonials-carousel__viewport {
    width: 100vw;
    height: 320px;
    margin-left: calc(0px - var(--testimonials-carousel-edge-offset));
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.quimatic-testimonials-carousel__track {
    display: flex;
    gap: 16px;
    height: 100%;
    padding-inline: var(--testimonials-carousel-edge-offset);
    transition: transform 360ms ease;
    will-change: transform;
}

.quimatic-testimonials-carousel.is-dragging .quimatic-testimonials-carousel__viewport {
    cursor: grabbing;
}

.quimatic-testimonials-carousel.is-dragging .quimatic-testimonials-carousel__track {
    transition: none;
}

.quimatic-testimonials-carousel__card {
    display: flex;
    flex: 0 0 424px;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    height: 320px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #f2f2f2;
    overflow: hidden;
    border-radius: 24px;
}

.quimatic-testimonials-carousel__quote-wrap {
    display: flex;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
}

.quimatic-testimonials-carousel__quote {
    flex: 1 1 auto;
    min-width: 0;
    max-height: 196px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 12px;
    scrollbar-color: #ff4e00 transparent;
    scrollbar-width: thin;
    color: #000000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-testimonials-carousel__quote::-webkit-scrollbar {
    width: 8px;
}

.quimatic-testimonials-carousel__quote::-webkit-scrollbar-track {
    background: transparent;
}

.quimatic-testimonials-carousel__quote::-webkit-scrollbar-thumb {
    min-height: 72px;
    border: 0;
    border-radius: 0;
    background: #ff4e00;
}

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

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

.quimatic-testimonials-carousel__author {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 48px;
}

.quimatic-testimonials-carousel__avatar {
    display: block;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    -webkit-user-drag: none;
}

.quimatic-testimonials-carousel__author-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.quimatic-testimonials-carousel__author-name,
.quimatic-testimonials-carousel__author-role {
    margin: 0;
}

.quimatic-testimonials-carousel__author-name {
    color: var(--quimatic-orange);
    font-weight: 600;
}

.quimatic-testimonials-carousel__author-role {
    color: #4c4c4c;
    font-weight: 400;
}

.quimatic-testimonials-carousel__controls {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    padding-right: 56px;
}

.quimatic-testimonials-carousel__controls[hidden] {
    display: none;
}

.quimatic-testimonials-carousel__dots {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.quimatic-testimonials-carousel__dot {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #f5d8cc;
    cursor: pointer;
}

.quimatic-testimonials-carousel__dot.is-active {
    background: #cc3e00;
}

.quimatic-testimonials-carousel__buttons {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.quimatic-testimonials-carousel__button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--quimatic-text);
    border-radius: 0;
    background: #ffffff;
    color: var(--quimatic-text);
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

@media (hover: hover) {
  .quimatic-testimonials-carousel__button:hover:not(:disabled) {
    border-color: var(--quimatic-orange);
    color: var(--quimatic-orange);
    background: #fff7f3;
  }
}

.quimatic-testimonials-carousel__button:disabled {
    border-color: #d8d8d8;
    color: #9a9a9a;
    cursor: default;
}

.quimatic-testimonials-carousel__button-icon {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 220ms ease;
}

@media (hover: hover) {
  .quimatic-testimonials-carousel__button--prev:hover:not(:disabled) .quimatic-testimonials-carousel__button-icon {
    transform: translateX(-4px);
  }
}

@media (hover: hover) {
  .quimatic-testimonials-carousel__button--next:hover:not(:disabled) .quimatic-testimonials-carousel__button-icon {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
    .quimatic-testimonials-carousel__track {
        transition: none;
    }
}

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

    .quimatic-builder-component--testimonials-carousel .quimatic-builder-component__inner {
        padding: 32px 24px;
    }

    .quimatic-testimonials-carousel {
        --testimonials-carousel-edge-offset: 24px;
    }

    .quimatic-testimonials-carousel__card {
        flex-basis: calc(50vw - var(--testimonials-carousel-edge-offset) - 8px);
    }

    .quimatic-testimonials-carousel__controls {
        padding-right: 0;
    }
}

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

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

    .quimatic-builder-component--testimonials-carousel .quimatic-builder-component__inner {
        padding: 32px 16px;
        background: #ffffff;
    }

    .quimatic-testimonials-carousel {
        --testimonials-carousel-edge-offset: 0px;
        gap: 24px;
    }

    .quimatic-testimonials-carousel__title {
        width: 100%;
        max-width: 100%;
        font-size: 28px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0;
        text-align: left;
        white-space: normal;
    }

    .quimatic-testimonials-carousel__title strong,
    .quimatic-testimonials-carousel__title b {
        color: var(--quimatic-orange);
        font-weight: 600;
    }

    .quimatic-testimonials-carousel__content {
        gap: 16px;
    }

    .quimatic-testimonials-carousel__viewport {
        width: 100%;
        height: auto;
        min-height: 0;
        margin-left: 0;
    }

    .quimatic-testimonials-carousel__track {
        gap: 16px;
        padding-inline: 0;
    }

    .quimatic-testimonials-carousel__card {
        flex-basis: 100%;
        justify-content: space-between;
        gap: 16px;
        height: auto;
        min-height: 280px;
        padding: 25px;
        border: 1px solid rgba(0, 0, 0, 0.15);
        background: #f2f2f2;
    }

    .quimatic-testimonials-carousel__quote {
        flex: 0 1 auto;
        max-height: none;
        overflow: visible;
        padding-right: 0;
        color: #000000;
        font-size: 16px;
        font-style: normal;
        line-height: 26px;
    }

    .quimatic-testimonials-carousel__author {
        gap: 12px;
    }

    .quimatic-testimonials-carousel__author-content {
        font-size: 14px;
        line-height: 20px;
    }

    .quimatic-testimonials-carousel__author-name {
        font-size: 16px;
        line-height: 24px;
    }

    .quimatic-testimonials-carousel__controls {
        align-items: center;
        justify-content: space-between;
        min-height: 34px;
        padding-right: 0;
    }

    .quimatic-testimonials-carousel__dots {
        justify-content: flex-start;
    }

    .quimatic-testimonials-carousel__dot {
        background: #f5d8cc;
    }

    .quimatic-testimonials-carousel__dot.is-active {
        width: 8px;
        background: #cc3e00;
    }

    .quimatic-testimonials-carousel__buttons {
        display: flex;
        gap: 12px;
    }

    .quimatic-testimonials-carousel__button {
        width: 34px;
        height: 34px;
    }

    .quimatic-testimonials-carousel__button-icon {
        width: 16px;
        height: 16px;
    }
}

/* 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/cases-de-sucesso.css */
.quimatic-builder-component--success-cases {
    border: 0;
    background: var(--quimatic-orange);
    margin-inline: -20px;
}

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

.quimatic-success-cases {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.quimatic-success-cases__title {
    margin: 0;
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.quimatic-success-cases__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.quimatic-success-cases__card {
    flex: 0 1 calc((100% - 32px) / 3);
    min-width: 0;
    min-height: 238px;
    padding: 24px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
}

.quimatic-success-cases__list--count-4 .quimatic-success-cases__card {
    flex-basis: calc((100% - 16px) / 2);
}

.quimatic-success-cases__card-title {
    margin: 0 0 20px;
    color: var(--quimatic-orange);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.quimatic-success-cases__card-description {
    margin: 0;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
}

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

    .quimatic-builder-component--success-cases .quimatic-builder-component__inner {
        padding: 40px 24px;
    }

    .quimatic-success-cases__list {
        flex-direction: column;
    }

    .quimatic-success-cases__card,
    .quimatic-success-cases__list--count-4 .quimatic-success-cases__card {
        flex-basis: auto;
        width: 100%;
    }
}

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

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

    .quimatic-success-cases__title,
    .quimatic-success-cases__card-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .quimatic-success-cases__card {
        min-height: 0;
    }

    .quimatic-success-cases__card-description {
        font-size: 18px;
        line-height: 1.45;
    }
}

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

.quimatic-builder-component--categorias-de-produtos .product-categories {
    position: relative;
    z-index: 0;
    --product-categories-media-width: clamp(320px, 42vw, 695px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 4vw, 48px);
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(24px, 3vw, 32px);
    background: #f2f2f2;
    background-color: #ffffff;
}

.quimatic-builder-component--categorias-de-produtos .product-categories::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    background: #ffffff;
    transform: translateX(-50%);
}

.quimatic-builder-component--categorias-de-produtos .product-categories__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, var(--product-categories-media-width));
    grid-template-areas:
        "title title"
        "accordion media";
    align-items: start;
    width: 100%;
    column-gap: clamp(32px, 4vw, 72px);
    row-gap: 0;
}

.quimatic-builder-component--categorias-de-produtos .product-categories__accordion {
    grid-area: accordion;
    min-width: 0;
}

.quimatic-builder-component--categorias-de-produtos .product-categories__title {
    grid-area: title;
    margin: 0 0 42px;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: clamp(32px, 3vw, 40px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    text-wrap: balance;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion {
    margin-left: 4px;
    border-top: 1px solid transparent;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__item {
    margin-top: 8px;
    border-bottom: 1px solid #cecccc;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__trigger {
    width: 100%;
    padding: 12px 0 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__trigger:focus-visible {
    outline: 2px solid #ff4e00;
    outline-offset: 3px;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__item-title {
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: clamp(21px, 1.8vw, 24px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.24px;
    cursor: pointer;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__panel {
    margin: 0;
    padding: 0 0 10px 1px;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__description {
    max-width: min(100%, 470px);
    margin: 0;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
    cursor: pointer;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__link {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    margin-top: 34px;
    color: #0a0203;
    font-family: "Myriad Pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: color 220ms ease;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__link svg {
    position: relative;
    top: -1px;
    transform: translateX(0);
    transition: transform 220ms ease;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__trigger:focus-visible + .product-accordion__panel .product-accordion__link,
.quimatic-builder-component--categorias-de-produtos .product-accordion__panel:focus-within .product-accordion__link {
    color: #ff4e00;
}

@media (hover: hover) {
  .quimatic-builder-component--categorias-de-produtos .product-accordion__trigger:hover + .product-accordion__panel .product-accordion__link,
  .quimatic-builder-component--categorias-de-produtos .product-accordion__panel:hover .product-accordion__link {
    color: #ff4e00;
  }
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__trigger:focus-visible + .product-accordion__panel .product-accordion__link svg,
.quimatic-builder-component--categorias-de-produtos .product-accordion__panel:focus-within .product-accordion__link svg {
    transform: translateX(5px);
}

@media (hover: hover) {
  .quimatic-builder-component--categorias-de-produtos .product-accordion__trigger:hover + .product-accordion__panel .product-accordion__link svg,
  .quimatic-builder-component--categorias-de-produtos .product-accordion__panel:hover .product-accordion__link svg {
    transform: translateX(5px);
  }
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__item.is-active .product-accordion__item-title {
    color: #ff4e00;
    font-size: clamp(21px, 1.8vw, 24px);
    line-height: 1.4;
    letter-spacing: -0.24px;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__item:not(.is-active) .product-accordion__panel {
    display: none;
}

.quimatic-builder-component--categorias-de-produtos .product-accordion__mobile-media {
    display: none;
}

.quimatic-builder-component--categorias-de-produtos .product-categories__media {
    grid-area: media;
    width: 100%;
    max-width: var(--product-categories-media-width);
    justify-self: end;
}

.quimatic-builder-component--categorias-de-produtos .product-categories__image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 20px;
    object-fit: contain;
    object-position: top;
    -webkit-clip-path: polygon(0 0, 84% 0, 100% 18%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 80% 0, 100% 25%, 100% 100%, 0 100%);
}

.quimatic-builder-component--categorias-de-produtos .product-categories__button {
    width: min(100%, 303px);
    min-height: 48px;
    margin-top: 12px;
    padding: 8px 20px;
    border: 1px solid #ff4e00;
    background: #ff4e00;
    color: #ffffff;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.quimatic-builder-component--categorias-de-produtos .product-categories__button:focus-visible {
    border-color: #ff4e00;
    background-color: #ffffff;
    color: #ff4e00;
    outline: none;
}

@media (hover: hover) {
  .quimatic-builder-component--categorias-de-produtos .product-categories__button:hover {
    border-color: #ff4e00;
    background-color: #ffffff;
    color: #ff4e00;
    outline: none;
  }
}

@media (max-width: 1360px) {
    .quimatic-builder-component--categorias-de-produtos .product-categories {
        --product-categories-media-width: clamp(300px, 38vw, 520px);
        padding: 56px 24px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__content {
        column-gap: 32px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__title {
        margin: 0;
    }
}

@media (max-width: 1180px) {
    .quimatic-builder-component--categorias-de-produtos .product-categories__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "accordion"
            "media";
        gap: 32px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__media {
        justify-self: center;
    }
}

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

    .quimatic-builder-component--categorias-de-produtos .product-categories {
        gap: 28px;
        padding: 56px 16px;
        background-color: #ffffff;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__content {
        gap: 18px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__title {
        margin: 0;
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: -0.4px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-left: 0;
        padding-top: 9px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__item {
        margin-top: 0;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__trigger {
        padding-top: 14px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__item-title,
    .quimatic-builder-component--categorias-de-produtos .product-accordion__item.is-active .product-accordion__item-title {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: -0.24px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__description {
        max-width: 100%;
        font-size: 15px;
        line-height: 22.5px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__link {
        margin-top: 15px;
        line-height: 21px;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__mobile-media {
        display: none;
        width: 100%;
        aspect-ratio: 358 / 232;
        margin-top: 0;
        overflow: hidden;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__item.is-active .product-accordion__mobile-media {
        display: block;
    }

    .quimatic-builder-component--categorias-de-produtos .product-accordion__mobile-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__media {
        display: none;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__image {
        margin-top: 0;
        -webkit-clip-path: none;
        clip-path: none;
    }

    .quimatic-builder-component--categorias-de-produtos .product-categories__button {
        width: 100%;
        max-width: 360px;
        margin-top: 0;
    }
}

/* styles/componentes/certificacoes.css */
.quimatic-builder-component--certifications {
    border: 0;
    background: var(--quimatic-orange);
    margin-inline: -20px;
}

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

.quimatic-certifications {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.quimatic-certifications__text {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    min-width: 0;
    max-width: 768px;
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
}

.quimatic-certifications__title {
    width: 100%;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.quimatic-certifications__title > :first-child,
.quimatic-certifications__description > :first-child {
    margin-top: 0;
}

.quimatic-certifications__title > :last-child,
.quimatic-certifications__description > :last-child {
    margin-bottom: 0;
}

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

.quimatic-certifications__description {
    width: 100%;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.24px;
}

.quimatic-certifications__panel {
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background: #ffffff;
    overflow: hidden;
}

.quimatic-certifications__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    margin: 0;
}

.quimatic-certifications__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

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

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

    .quimatic-certifications {
        flex-direction: column;
    }

    .quimatic-certifications__text {
        max-width: 100%;
    }

    .quimatic-certifications__panel {
        width: 100%;
    }
}

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

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

    .quimatic-certifications {
        gap: 32px;
    }

    .quimatic-certifications__text,
    .quimatic-certifications__panel {
        flex: 0 0 auto;
    }

    .quimatic-certifications__title {
        font-size: 40px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

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

    .quimatic-certifications__panel {
        padding: 16px;
        overflow: visible;
    }

    .quimatic-certifications__image {
        width: auto;
        max-width: 100%;
    }
}

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

.quimatic-builder-component--conteudo-noticia .quimatic-builder-component__inner {
    max-width: none;
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 24px 64px;
}

.quimatic-news-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    width: min(100%, 768px);
    margin: 0 auto;
}

.quimatic-news-content__body {
    width: 100%;
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

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

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

.quimatic-news-content__body p,
.quimatic-news-content__body ul,
.quimatic-news-content__body ol {
    margin: 0 0 16px;
}

.quimatic-news-content__body p {
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--Text-Sizes-Text-Regular, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.quimatic-news-content__body ul,
.quimatic-news-content__body ol {
    padding-left: 24px;
}

.quimatic-news-content__body li + li {
    margin-top: 8px;
}

.quimatic-news-content__body h2,
.quimatic-news-content__body h3,
.quimatic-news-content__body h4,
.quimatic-news-content__body h5,
.quimatic-news-content__body h6 {
    margin: 48px 0 26px;
    color: #0d0d0d;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

.quimatic-news-content__body h2 {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.quimatic-news-content__body h3 {
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.4px;
}

.quimatic-news-content__body h6 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.24px;
}

.quimatic-news-content__body h4 {
    margin-top: 42px;
    margin-bottom: 19px;
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    font-family: "Myriad Pro";
    font-size: var(--Text-Sizes-Heading-4, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.32px;
}

.quimatic-news-content__body h5 {
    margin: 69px 0 16px;
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    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: 140%;
    letter-spacing: -0.24px;
}

.quimatic-news-content__body strong,
.quimatic-news-content__body b {
    font-weight: 600;
}

.quimatic-news-content__body em,
.quimatic-news-content__body i {
    font-style: italic;
}

.quimatic-news-content__body a {
    color: var(--quimatic-orange);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.quimatic-news-content__body .aligncenter,
.quimatic-news-content__body .has-text-align-center,
.quimatic-news-content__body [style*="text-align: center"] {
    text-align: center;
}

.quimatic-news-content__body hr {
    width: 100%;
    height: 0;
    margin-top: 48px;
    margin-bottom: 48px;
    border: 0;
    border-top: 1px solid var(--Color-Scheme-2-Border, rgba(13, 13, 13, 0.15));
    stroke-width: 1px;
    stroke: var(--Color-Scheme-2-Border, rgba(13, 13, 13, 0.15));
}

.quimatic-news-content__body img {
    display: block;
    width: 100%;
    height: auto;
}

.quimatic-news-content__body figure,
.quimatic-news-content__body .wp-caption {
    width: 100% !important;
    max-width: 100%;
    margin: 64px 0;
}

.quimatic-news-content__body figure img,
.quimatic-news-content__body .wp-caption img {
    display: block;
    width: 100%;
    height: auto;
}

.quimatic-news-content__body iframe,
.quimatic-news-content__body video {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border: 0;
    border-radius: 24px;
    background: #0d0d0d;
    box-shadow: 0 24px 48px rgba(13, 13, 13, 0.12);
}

.quimatic-news-content__body iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 320px;
}

.quimatic-news-content__body video {
    height: auto;
}

.quimatic-news-content__body .wp-block-embed,
.quimatic-news-content__body .wp-block-video,
.quimatic-news-content__body .wp-block-embed__wrapper,
.quimatic-news-content__body .wp-video,
.quimatic-news-content__body .video-wrapper,
.quimatic-news-content__body .embed-container {
    width: 100%;
    max-width: 100%;
    margin: 48px auto;
}

.quimatic-news-content__body .wp-block-embed.aligncenter,
.quimatic-news-content__body .wp-block-video.aligncenter,
.quimatic-news-content__body .wp-block-embed__wrapper.aligncenter,
.quimatic-news-content__body .wp-video.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.quimatic-news-content__body p > iframe:only-child,
.quimatic-news-content__body div > iframe:only-child {
    margin-top: 48px;
    margin-bottom: 48px;
}

.quimatic-news-content__body .wp-block-button,
.quimatic-news-content__body .wp-block-buttons {
    margin: 32px 0;
}

.quimatic-news-content__body .wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quimatic-news-content__body .wp-block-button.aligncenter,
.quimatic-news-content__body .wp-block-buttons.aligncenter,
.quimatic-news-content__body .wp-block-buttons.is-content-justification-center {
    justify-content: center;
}

.quimatic-news-content__body .wp-block-button__link,
.quimatic-news-content__body a.wp-block-button__link,
.quimatic-news-content__body a.wp-element-button,
.quimatic-news-content__body .wp-block-file__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 16px 28px;
    border: 1px solid #0d0d0d;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)) padding-box,
        linear-gradient(135deg, #0d0d0d, #343434) border-box;
    box-shadow: 0 14px 30px rgba(13, 13, 13, 0.12);
    color: #ffffff;
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-underline-offset: 0;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.quimatic-news-content__body .wp-block-button__link:hover,
.quimatic-news-content__body a.wp-block-button__link:hover,
.quimatic-news-content__body a.wp-element-button:hover,
.quimatic-news-content__body .wp-block-file__button:hover,
.quimatic-news-content__body .wp-block-button__link:focus-visible,
.quimatic-news-content__body a.wp-block-button__link:focus-visible,
.quimatic-news-content__body a.wp-element-button:focus-visible,
.quimatic-news-content__body .wp-block-file__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(13, 13, 13, 0.18);
    color: #ffffff;
    text-decoration: none;
}

.quimatic-news-content__body .is-style-outline .wp-block-button__link,
.quimatic-news-content__body .wp-block-button.is-style-outline > .wp-block-button__link {
    background: #ffffff;
    border-color: rgba(13, 13, 13, 0.18);
    box-shadow: none;
    color: #0d0d0d;
}

.quimatic-news-content__body .is-style-outline .wp-block-button__link:hover,
.quimatic-news-content__body .wp-block-button.is-style-outline > .wp-block-button__link:hover,
.quimatic-news-content__body .is-style-outline .wp-block-button__link:focus-visible,
.quimatic-news-content__body .wp-block-button.is-style-outline > .wp-block-button__link:focus-visible {
    color: #0d0d0d;
    border-color: #0d0d0d;
    background: #f6f4ef;
}

.quimatic-news-content__body figcaption,
.quimatic-news-content__body .wp-caption-text {
    display: flex;
    gap: 8px;
    margin: 8px 0 0;
    color: #0d0d0d;
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-news-content__body figcaption::before,
.quimatic-news-content__body .wp-caption-text::before {
    content: "";
    display: block;
    flex: 0 0 2px;
    align-self: stretch;
    background: rgba(13, 13, 13, 0.15);
}

.quimatic-news-content__body blockquote {
    display: flex;
    gap: 20px;
    margin: 52px 0 36px 0;
    padding: 0 20px 0 0;
    overflow: hidden;
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    font-family: "Myriad Pro";
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 28px;
}

.quimatic-news-content__body blockquote::before {
    content: "";
    display: block;
    flex: 0 0 2px;
    align-self: stretch;
    background: rgba(13, 13, 13, 0.15);
}

.quimatic-news-content__body blockquote > * {
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.quimatic-news-content__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding-top: 48px;
    border-top: 1px solid var(--Color-Scheme-2-Border, rgba(13, 13, 13, 0.15));
    color: var(--Color-Scheme-2-Text, #0D0D0D);
    font-family: "Myriad Pro";
    font-size: var(--Text-Sizes-Text-Medium, 18px);
    font-style: normal;
    line-height: 150%;
    text-align: center;
}

.quimatic-news-content__author-name,
.quimatic-news-content__author-description {
    margin: 0;
}

.quimatic-news-content__author-name {
    font-weight: 600;
}

.quimatic-news-content__author-description {
    font-weight: 400;
}

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

    .quimatic-builder-component--conteudo-noticia .quimatic-builder-component__inner {
        padding: 48px 24px;
    }
}

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

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

    .quimatic-news-content {
        gap: 24px;
    }

    .quimatic-news-content__body h2 {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.32px;
    }

    .quimatic-news-content__body h6 {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: -0.24px;
    }

    .quimatic-news-content__body h2,
    .quimatic-news-content__body h3,
    .quimatic-news-content__body h4,
    .quimatic-news-content__body h5,
    .quimatic-news-content__body h6 {
        margin-top: 32px;
    }

    .quimatic-news-content__body figure,
    .quimatic-news-content__body .wp-caption {
        margin: 24px 0;
    }

    .quimatic-news-content__body .wp-block-embed,
    .quimatic-news-content__body .wp-block-video,
    .quimatic-news-content__body .wp-block-embed__wrapper,
    .quimatic-news-content__body .wp-video,
    .quimatic-news-content__body p > iframe:only-child,
    .quimatic-news-content__body div > iframe:only-child {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .quimatic-news-content__body iframe {
        min-height: 220px;
        border-radius: 18px;
    }

    .quimatic-news-content__body figcaption,
    .quimatic-news-content__body .wp-caption-text {
        font-size: 14px;
    }

    .quimatic-news-content__body .wp-block-button,
    .quimatic-news-content__body .wp-block-buttons {
        margin: 24px 0;
    }

    .quimatic-news-content__body .wp-block-button__link,
    .quimatic-news-content__body a.wp-block-button__link,
    .quimatic-news-content__body a.wp-element-button,
    .quimatic-news-content__body .wp-block-file__button {
        width: 100%;
        min-height: 52px;
        padding: 14px 20px;
    }

    .quimatic-news-content__body blockquote {
        margin: 36px 0;
        padding-right: 20px;
        font-size: 20px;
        line-height: 28px;
    }

    .quimatic-news-content__author {
        padding-top: 48px;
    }
}

/* styles/componentes/conteudo-relacionado.css */
.quimatic-builder-component--conteudo-relacionado {
    border: 0;
    background: var(--Color-Neutral-Lightest, #f2f2f2);
}

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

.quimatic-related-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
}

.quimatic-related-content__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.quimatic-related-content__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: 120%;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.quimatic-related-content__title span {
    color: var(--quimatic, #ff4e00);
}

.quimatic-related-content__all-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--Black-Quimatic, #0a0203);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease;
}

.quimatic-related-content__all-link svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}

.quimatic-related-content__all-link:focus-visible {
    color: var(--quimatic, #ff4e00);
}

@media (hover: hover) {
  .quimatic-related-content__all-link:hover {
    color: var(--quimatic, #ff4e00);
  }
}

.quimatic-related-content__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 384px));
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.quimatic-related-content .quimatic-news-card {
    display: flex;
    flex-direction: column;
    gap: 16.794px;
    width: 100%;
    min-height: 414px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--quimatic, #ff4e00);
    color: inherit;
    text-decoration: none;
}

.quimatic-related-content .quimatic-news-card__image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 292.5 / 164.266;
    height: auto;
    overflow: hidden;
    background: #ffffff;
}

.quimatic-related-content .quimatic-news-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
    transition: transform 360ms ease;
}

.quimatic-related-content .quimatic-news-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    min-height: 165.326px;
}

.quimatic-related-content .quimatic-news-card__text {
    display: flex;
    flex-direction: column;
    gap: 4.198px;
}

.quimatic-related-content .quimatic-news-card__date {
    color: #7a7a7a;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 12.595px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.quimatic-related-content .quimatic-news-card__title {
    display: -webkit-box;
    max-height: 89.022px;
    margin: 0;
    overflow: hidden;
    color: #141414;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20.472px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.674px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.quimatic-related-content .quimatic-news-card__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    color: #000000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 17.913px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.435px;
    white-space: nowrap;
}

.quimatic-related-content .quimatic-news-card__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 260ms ease;
}

.quimatic-related-content .quimatic-news-card__link svg {
    flex: 0 0 auto;
    width: 21.196px;
    height: 21.196px;
    transform: translateX(0);
    transition: transform 240ms ease;
}

.quimatic-related-content .quimatic-news-card:focus-visible .quimatic-news-card__image {
    transform: scale(1.04);
}

@media (hover: hover) {
  .quimatic-related-content .quimatic-news-card:hover .quimatic-news-card__image {
    transform: scale(1.04);
  }
}

.quimatic-related-content .quimatic-news-card:focus-visible .quimatic-news-card__link svg {
    transform: translateX(5px);
}

@media (hover: hover) {
  .quimatic-related-content .quimatic-news-card:hover .quimatic-news-card__link svg {
    transform: translateX(5px);
  }
}

.quimatic-related-content .quimatic-news-card:focus-visible .quimatic-news-card__link::after {
    width: 100%;
}

@media (hover: hover) {
  .quimatic-related-content .quimatic-news-card:hover .quimatic-news-card__link::after {
    width: 100%;
  }
}

@media (max-width: 991px) {
    .quimatic-builder-component--conteudo-relacionado .quimatic-builder-component__inner {
        padding: 56px 24px;
    }

    .quimatic-related-content__grid {
        grid-template-columns: repeat(2, minmax(0, 384px));
    }
}

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

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

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

    .quimatic-related-content {
        gap: 24px;
    }

    .quimatic-related-content__header {
        display: contents;
    }

    .quimatic-related-content__title {
        order: 1;
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .quimatic-related-content__all-link {
        order: 3;
        justify-content: center;
        width: 100%;
        min-height: 42px;
        padding: 9px 1px;
        border: 1px solid var(--quimatic, #ff4e00);
        background: #ffffff;
        color: var(--quimatic, #ff4e00);
        font-size: 14.6px;
        line-height: 21.87px;
        text-align: center;
    }

    .quimatic-related-content__all-link svg {
        display: none;
    }

    .quimatic-related-content__grid {
        order: 2;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .quimatic-related-content .quimatic-news-card {
        gap: 12px;
        min-height: 0;
        padding-bottom: 16px;
    }

    .quimatic-related-content .quimatic-news-card:nth-child(n + 3) {
        display: none;
    }

    .quimatic-related-content .quimatic-news-card__image-wrap {
        aspect-ratio: 343 / 201.38;
    }

    .quimatic-related-content .quimatic-news-card__content {
        justify-content: space-between;
        min-height: 129.19px;
        gap: 0;
    }

    .quimatic-related-content .quimatic-news-card__text {
        gap: 4.19px;
    }

    .quimatic-related-content .quimatic-news-card__date {
        font-size: 13px;
    }

    .quimatic-related-content .quimatic-news-card__title {
        max-height: 81px;
        font-size: 20px;
        line-height: 27px;
    }

    .quimatic-related-content .quimatic-news-card__link {
        font-size: 16px;
        line-height: 22.4px;
    }

    .quimatic-related-content .quimatic-news-card__link svg {
        width: 22px;
        height: 22px;
    }
}

/* 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/formulario-contato.css */
.quimatic-builder-component--contact-form {
    border: 0;
    background: #f2f2f2;
    margin-inline: -20px;
}

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

.quimatic-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 632px));
    gap: 48px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

.quimatic-contact-form--without-sidebar {
    justify-content: center;
}

.quimatic-contact-form__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    min-height: 100%;
}

.quimatic-contact-form__intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.quimatic-contact-form__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;
    text-transform: uppercase;
}

.quimatic-contact-form__title > :first-child,
.quimatic-contact-form__description > :first-child {
    margin-top: 0;
}

.quimatic-contact-form__title > :last-child,
.quimatic-contact-form__description > :last-child {
    margin-bottom: 0;
}

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

.quimatic-contact-form__description {
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.24px;
}

.quimatic-contact-form__media {
    position: relative;
    flex: 1 1 0;
    width: 100%;
    min-height: 1px;
    overflow: hidden;
}

.quimatic-contact-form__picture,
.quimatic-contact-form__image {
    display: block;
    width: 100%;
    height: 100%;
}

.quimatic-contact-form__image {
    object-fit: cover;
}

.quimatic-contact-form__panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
    padding: 36px 40px 38px 40px;
    border: 1px solid #eaeaea;
    background: #ffffff;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.quimatic-contact-form--without-sidebar .quimatic-contact-form__panel {
    max-width: 632px;
}

.quimatic-contact-form__group {
    display: contents;
}

.quimatic-contact-form__group-heading {
    display: none;
}

.quimatic-contact-form__row {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.quimatic-contact-form__row--two > .quimatic-contact-form__field {
    flex: 1 1 0;
}

.quimatic-contact-form__row--three > .quimatic-contact-form__field {
    flex: 1 1 0;
}

.quimatic-contact-form__field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    width: 100%;
}

.quimatic-contact-form__label {
    color: #314158;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.quimatic-contact-form__label span {
    color: var(--quimatic-orange);
}

.quimatic-contact-form__feedback {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    color: #b42318;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    pointer-events: none;
}

.quimatic-contact-form__city-suggestions {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    max-height: 224px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.quimatic-contact-form__city-suggestions[hidden] {
    display: none;
}

.quimatic-contact-form__city-suggestion {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #edf2f7;
    background: #ffffff;
    color: #314158;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.quimatic-contact-form__city-suggestion:last-child {
    border-bottom: 0;
}

.quimatic-contact-form__city-suggestion.is-active {
    background: rgba(255, 78, 0, 0.08);
    color: var(--quimatic-orange);
}

@media (hover: hover) {
  .quimatic-contact-form__city-suggestion:hover {
    background: rgba(255, 78, 0, 0.08);
    color: var(--quimatic-orange);
  }
}

.quimatic-contact-form__city-suggestion--status {
    cursor: default;
}

@media (hover: hover) {
  .quimatic-contact-form__city-suggestion--status:hover {
    background: #ffffff;
    color: #314158;
  }
}

.quimatic-contact-form__field-error {
    color: #ff0000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-contact-form__input,
.quimatic-contact-form__select,
.quimatic-contact-form__textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    background: #ffffff;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.quimatic-contact-form__input,
.quimatic-contact-form__select {
    height: 50px;
    padding: 12px 16px;
}

.quimatic-contact-form__select {
    appearance: none;
    padding-right: 36px;
    background-image: linear-gradient(45deg, transparent 50%, var(--quimatic-text) 50%), linear-gradient(135deg, var(--quimatic-text) 50%, transparent 50%);
    background-position: calc(100% - 17px) 22px, calc(100% - 12px) 22px;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
}

.quimatic-contact-form__textarea {
    min-height: 124px;
    padding: 12px 16px;
    resize: vertical;
}

.quimatic-contact-form__input::placeholder,
.quimatic-contact-form__textarea::placeholder,
.quimatic-contact-form__select:invalid {
    color: #717182;
}

@media (hover: hover) {
  .quimatic-contact-form__input:hover,
  .quimatic-contact-form__select:hover,
  .quimatic-contact-form__textarea:hover {
    border-color: #4c4c4c;
  }
}

.quimatic-contact-form__input:focus,
.quimatic-contact-form__select:focus,
.quimatic-contact-form__textarea:focus {
    border-color: var(--quimatic-orange);
    box-shadow: none;
}

.quimatic-contact-form__field.has-error .quimatic-contact-form__input,
.quimatic-contact-form__field.has-error .quimatic-contact-form__select,
.quimatic-contact-form__field.has-error .quimatic-contact-form__textarea {
    border-color: #e2e8f0;
}

@media (hover: hover) {
  .quimatic-contact-form__field.has-error .quimatic-contact-form__input:hover,
  .quimatic-contact-form__field.has-error .quimatic-contact-form__select:hover,
  .quimatic-contact-form__field.has-error .quimatic-contact-form__textarea:hover {
    border-color: #4c4c4c;
  }
}

.quimatic-contact-form__field.has-error .quimatic-contact-form__input:focus,
.quimatic-contact-form__field.has-error .quimatic-contact-form__select:focus,
.quimatic-contact-form__field.has-error .quimatic-contact-form__textarea:focus {
    border-color: var(--quimatic-orange);
}

.quimatic-contact-form__field--file {
    padding-bottom: 24px;
}

.quimatic-contact-form__upload {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 30px 17px;
    border: 1px dashed #7f7f7f;
    background: #ffffff;
    color: #314158;
    cursor: pointer;
    text-align: center;
}

.quimatic-contact-form__file {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.quimatic-contact-form__upload-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #97a6ba;
}

.quimatic-contact-form__upload-icon svg {
    display: block;
    width: 48px;
    height: 48px;
}

.quimatic-contact-form__upload-text {
    color: #314158;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-contact-form__upload-text span {
    color: var(--quimatic-orange);
}

.quimatic-contact-form__upload-helper {
    color: #62748e;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.quimatic-contact-form__submit {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 8px 20px;
    border: 1px solid var(--quimatic-orange);
    border-radius: 0;
    background: var(--quimatic-orange);
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, outline-color 160ms ease;
}

@media (hover: hover) {
  .quimatic-contact-form__submit:not(:disabled):hover {
    background: transparent;
    color: var(--quimatic-orange);
  }
}

.quimatic-contact-form__submit:not(:disabled):active {
    background: rgba(0, 0, 0, 0.2);
    color: var(--quimatic-orange);
}

.quimatic-contact-form__submit:focus-visible {
    outline: 1px solid var(--quimatic-orange);
    outline-offset: 4px;
}

.quimatic-contact-form__submit:disabled {
    border-color: #7f7f7f;
    background: #7f7f7f;
    color: rgba(255, 255, 255, 0.4);
    cursor: default;
}

@media (max-width: 1199px) {
    .quimatic-contact-form {
        gap: 32px;
    }

    .quimatic-contact-form__panel {
        padding: 32px;
    }
}

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

    .quimatic-builder-component--contact-form .quimatic-builder-component__inner {
        padding: 32px 24px;
    }

    .quimatic-contact-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .quimatic-contact-form__media {
        flex: 0 0 auto;
        aspect-ratio: 57 / 40;
    }
}

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

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

    .quimatic-contact-form {
        gap: 16px;
    }

    .quimatic-contact-form__aside {
        gap: 48px;
    }

    .quimatic-contact-form__intro {
        gap: 12px;
    }

    .quimatic-contact-form__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .quimatic-contact-form__description {
        font-size: 18px;
        line-height: 1.5;
        letter-spacing: 0;
    }

    .quimatic-contact-form__media {
        aspect-ratio: 16 / 9;
    }

    .quimatic-contact-form__panel {
        gap: 24px;
        padding: 40px 8px;
    }

    .quimatic-contact-form__row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .quimatic-contact-form__group {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .quimatic-contact-form__group-heading {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-height: 41px;
        padding-bottom: 9px;
        border-bottom: 1px solid #e2e8f0;
    }

    .quimatic-contact-form__group-icon {
        display: grid;
        flex: 0 0 32px;
        place-items: center;
        width: 32px;
        height: 32px;
        background: rgba(255, 107, 53, 0.1);
        color: var(--quimatic-orange);
    }

    .quimatic-contact-form__group-icon svg {
        display: block;
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.4;
        stroke-linecap: square;
        stroke-linejoin: miter;
    }

    .quimatic-contact-form__group--files .quimatic-contact-form__group-icon svg {
        width: 24px;
        height: 24px;
    }

    .quimatic-contact-form__group-title {
        color: #4c4c4c;
        font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.7px;
        text-transform: uppercase;
    }

    .quimatic-contact-form__label {
        color: #4c4c4c;
        font-weight: 400;
    }

    .quimatic-contact-form__input,
    .quimatic-contact-form__select,
    .quimatic-contact-form__textarea {
        background: #f8fafc;
        font-size: 14px;
    }

    .quimatic-contact-form__select {
        background-color: #f8fafc;
    }

    .quimatic-contact-form__textarea {
        min-height: 144px;
    }

    .quimatic-contact-form__upload {
        min-height: 144px;
        padding: 33px 17px;
    }

    .quimatic-contact-form__field--file {
        padding-bottom: 0;
    }

    .quimatic-contact-form__upload-text {
        font-size: 16px;
        line-height: 24px;
        max-width: 190px;
    }

    .quimatic-contact-form__submit {
        min-height: 58px;
        padding: 16px 20px;
    }
}

.quimatic-contact-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4c4c4c;
    font-size: 14px;
    line-height: 20px;
}

.quimatic-contact-form__checkbox input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--quimatic-orange);
}

/* 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/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/imagem-com-texto.css */
.quimatic-builder-component--image-text {
    border: 0;
    background: #ffffff;
    margin-inline: -20px;
}

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

.quimatic-image-text__section-title {
    width: min(100%, 1440px);
    margin: 0 auto 24px;
    padding: 24px 64px 0 24px;
    color: #0A0203;
    text-align: center;
    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-image-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 640px));
    gap: 32px;
    align-items: start;
    justify-content: center;
}

.quimatic-image-text--without-media {
    grid-template-columns: minmax(0, 1fr);
}

.quimatic-image-text--reversed .quimatic-image-text__media {
    order: 2;
}

.quimatic-image-text--reversed .quimatic-image-text__content {
    order: 1;
}

.quimatic-image-text__media {
    position: relative;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-height: 450px;
    aspect-ratio: 640 / 449.15335;
    overflow: hidden;
}

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

.quimatic-image-text__content {
    display: grid;
    align-content: start;
    gap: 24px;
    min-width: 0;
    padding: 24px;
    background: #ffffff;
}

.quimatic-image-text__title {
    margin: 0;
    color: var(--quimatic-orange);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.quimatic-image-text__subtitle {
    margin: 0;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.24px;
}

.quimatic-image-text__description {
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

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

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

.quimatic-image-text__description ul {
    margin: 0;
    padding-left: 30px;
    list-style: disc;
}

.quimatic-image-text__description li {
    margin: 0;
}

.quimatic-image-text__description li + li {
    margin-top: 0;
}

.quimatic-image-text__description strong,
.quimatic-image-text__description b {
    font-weight: 600;
}

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

    .quimatic-builder-component--image-text .quimatic-builder-component__inner {
        padding: 32px 24px;
    }

    .quimatic-image-text__section-title {
        padding: 0 24px;
        font-size: 36px;
    }

    .quimatic-image-text {
        grid-template-columns: minmax(0, 1fr);
    }

    .quimatic-image-text__media {
        aspect-ratio: 57 / 40;
    }
}

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

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

    .quimatic-image-text__section-title {
        margin-bottom: 24px;
        padding: 0 16px;
        font-size: 28px;
        line-height: 1.2;
    }

    .quimatic-image-text {
        gap: 28px;
    }

    .quimatic-image-text__media {
        order: 2;
        aspect-ratio: 640 / 449.15335;
    }

    .quimatic-image-text__image {
        object-position: center;
    }

    .quimatic-image-text__content {
        order: 1;
        gap: 16px;
        padding: 0;
    }

    .quimatic-image-text__title {
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: -0.4px;
        text-transform: uppercase;
    }

    .quimatic-image-text__subtitle {
        font-size: 20px;
        line-height: 25px;
        letter-spacing: -0.24px;
    }

    .quimatic-image-text__description {
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        letter-spacing: 0;
    }
}

/* styles/componentes/imagem-destacada.css */
.quimatic-builder-component--imagem-destacada {
    border: 0;
    overflow: hidden;
    background: #ffffff;
}

.quimatic-builder-component--imagem-destacada .quimatic-builder-component__inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 64px 0 0;
}

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

.quimatic-highlight-image__title {
    width: min(100%, 768px);
    padding: 0 24px;
    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-align: center;
    text-transform: uppercase;
}

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

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

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

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

.quimatic-highlight-image__media {
    width: 100%;
    aspect-ratio: 1440 / 500;
    overflow: hidden;
    background: #f2f2f2;
}

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

@media (max-width: 767px) {
    .quimatic-builder-component--imagem-destacada .quimatic-builder-component__inner {
        padding-top: 40px;
    }

    .quimatic-highlight-image {
        gap: 24px;
    }

    .quimatic-highlight-image__title {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -0.28px;
    }

    .quimatic-highlight-image__media {
        aspect-ratio: 16 / 9;
    }
}

/* styles/componentes/noticia-destaque.css */
.quimatic-builder-component--noticia-destaque {
    border: 0;
    background: #f2f2f2;
}

.quimatic-builder-component--noticia-destaque .quimatic-builder-component__inner {
    max-width: none;
    width: min(100%, 1408px);
    margin: 0 auto;
    padding: var(--quimatic-section-spacing) 48px;
}

.quimatic-featured-news {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.quimatic-featured-news__section-title {
    width: min(100%, 806px);
    margin: 0;
    color: #000000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.quimatic-featured-news__card {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
}

.quimatic-featured-news__media {
    position: relative;
    display: block;
    flex: 1 1 50%;
    min-width: 0;
    overflow: hidden;
}

.quimatic-featured-news__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
    transition: transform 360ms ease;
}

.quimatic-featured-news__content {
    display: flex;
    flex: 1 1 50%;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    min-height: 420px;
    padding: 32px;
}

.quimatic-featured-news__card--without-image .quimatic-featured-news__content {
    flex-basis: 100%;
}

.quimatic-featured-news__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.quimatic-featured-news__date {
    color: #7a7a7a;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-featured-news__title {
    width: 100%;
    color: #0d0d0d;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.quimatic-featured-news__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    color: #0d0d0d;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-featured-news__link svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}

.quimatic-featured-news__card:focus-visible .quimatic-featured-news__image {
    transform: scale(1.035);
}

@media (hover: hover) {
  .quimatic-featured-news__card:hover .quimatic-featured-news__image {
    transform: scale(1.035);
  }
}

.quimatic-featured-news__card:focus-visible .quimatic-featured-news__link {
    color: var(--quimatic-orange);
}

@media (hover: hover) {
  .quimatic-featured-news__card:hover .quimatic-featured-news__link {
    color: var(--quimatic-orange);
  }
}

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

    .quimatic-featured-news__card {
        flex-direction: column;
    }

    .quimatic-featured-news__media {
        flex-basis: auto;
        aspect-ratio: 16 / 9;
    }

    .quimatic-featured-news__content {
        min-height: 320px;
    }
}

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

    .quimatic-builder-component--noticia-destaque .quimatic-builder-component__inner {
        padding: 32px 12px 16px;
    }

    .quimatic-featured-news {
        gap: 24px;
    }

    .quimatic-featured-news__section-title {
        width: 100%;
        color: #0a0203;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .quimatic-featured-news__card {
        min-height: 0;
    }

    .quimatic-featured-news__media {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 640 / 480;
    }

    .quimatic-featured-news__content {
        flex: 0 0 auto;
        justify-content: flex-start;
        min-height: 0;
        padding: 16px 8px;
        gap: 24px;
    }

    .quimatic-featured-news__text {
        gap: 16px;
    }

    .quimatic-featured-news__date {
        font-size: 16px;
        line-height: 1.5;
    }

    .quimatic-featured-news__title {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: 0;
    }

    .quimatic-featured-news__link {
        border-bottom: 1px solid currentColor;
        color: var(--quimatic-orange);
        font-size: 20px;
        line-height: 1.5;
    }

    .quimatic-featured-news__link svg {
        width: 24px;
        height: 24px;
    }
}

/* styles/componentes/noticias-interna-destaque.css */
.quimatic-builder-component--noticias-interna-destaque {
    border: 0;
    background: #f2f2f2;
}

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

.quimatic-news-internal-highlight {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.quimatic-news-internal-highlight__content {
    display: flex;
    flex: 0 0 522px;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    min-height: 450px;
}

.quimatic-news-internal-highlight--without-media .quimatic-news-internal-highlight__content {
    flex-basis: min(100%, 760px);
}

.quimatic-news-internal-highlight__title,
.quimatic-news-internal-highlight__title p,
.quimatic-news-internal-highlight__title h1,
.quimatic-news-internal-highlight__title h2,
.quimatic-news-internal-highlight__title h3,
.quimatic-news-internal-highlight__title h4,
.quimatic-news-internal-highlight__title h5,
.quimatic-news-internal-highlight__title h6 {
    margin: 0;
    color: #0d0d0d;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.quimatic-news-internal-highlight__title > :first-child {
    margin-top: 0;
}

.quimatic-news-internal-highlight__title > :last-child {
    margin-bottom: 0;
}

.quimatic-news-internal-highlight__title span[style*="color"],
.quimatic-news-internal-highlight__title strong,
.quimatic-news-internal-highlight__title em {
    color: var(--quimatic-orange);
    font-style: normal;
}

.quimatic-news-internal-highlight__bottom {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.quimatic-news-internal-highlight__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quimatic-news-internal-highlight__meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    color: #0d0d0d;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-news-internal-highlight__meta-line strong {
    font-weight: 600;
}

.quimatic-news-internal-highlight__share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.quimatic-news-internal-highlight__share-title {
    margin: 0;
    color: #0d0d0d;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-news-internal-highlight__share-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quimatic-news-internal-highlight__share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--quimatic-orange);
    text-decoration: none;
}

.quimatic-news-internal-highlight__share-link svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.quimatic-news-internal-highlight__media {
    flex: 1 1 auto;
    min-width: 0;
    height: 450px;
    margin: 0;
    overflow: hidden;
}

.quimatic-news-internal-highlight__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .quimatic-builder-component--noticias-interna-destaque .quimatic-builder-component__inner {
        padding: 40px 24px;
    }

    .quimatic-news-internal-highlight {
        flex-direction: column;
        gap: 32px;
    }

    .quimatic-news-internal-highlight__content {
        flex-basis: auto;
        min-height: 0;
        gap: 40px;
    }

    .quimatic-news-internal-highlight__media {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--noticias-interna-destaque {
        margin-inline: -16px;
        background: #ffffff;
    }

    .quimatic-builder-component--noticias-interna-destaque .quimatic-builder-component__inner {
        padding: 32px 16px;
    }

    .quimatic-news-internal-highlight {
        gap: 24px;
    }

    .quimatic-news-internal-highlight__content {
        display: contents;
    }

    .quimatic-news-internal-highlight__title-wrap {
        order: 1;
        width: 100%;
    }

    .quimatic-news-internal-highlight__title,
    .quimatic-news-internal-highlight__title p,
    .quimatic-news-internal-highlight__title h1,
    .quimatic-news-internal-highlight__title h2,
    .quimatic-news-internal-highlight__title h3,
    .quimatic-news-internal-highlight__title h4,
    .quimatic-news-internal-highlight__title h5,
    .quimatic-news-internal-highlight__title h6 {
        font-size: 32px;
        line-height: 1.3;
    }

    .quimatic-news-internal-highlight__media {
        order: 2;
        width: 100%;
        aspect-ratio: 738 / 450;
    }

    .quimatic-news-internal-highlight__bottom {
        order: 3;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        gap: 16px;
    }

    .quimatic-news-internal-highlight__meta {
        flex: 1 1 auto;
        min-width: 0;
    }

    .quimatic-news-internal-highlight__meta-line {
        gap: 4px;
        font-size: 12px;
        line-height: 1.5;
    }

    .quimatic-news-internal-highlight__share {
        flex: 0 0 auto;
    }

    .quimatic-news-internal-highlight__share-title {
        font-size: 12px;
        line-height: 1.5;
    }

    .quimatic-news-internal-highlight__share-links {
        gap: 12px;
    }
}

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

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

.quimatic-builder-component--noticias-destaques .quimatic-builder-component__inner {
    padding-top: 24px;
    padding-bottom: 24px;
}

.quimatic-news {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.quimatic-news--listagem {
    gap: 48px;
}

.quimatic-news--destaques {
    gap: 64px;
}

.quimatic-news__filters {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.quimatic-news__search {
    display: flex;
    align-items: center;
    width: 458px;
    height: 40px;
    padding: 8px;
    border: 1px solid #7f7f7f;
    background: #ffffff;
    overflow: hidden;
}

.quimatic-news__search-icon {
    display: inline-flex;
    flex: 0 0 auto;
    color: #717d96;
}

.quimatic-news__search-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    border: 0;
    background: transparent;
    color: #141414;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    outline: 0;
    top: 1px;
    position: relative;
    left: 6px;
}

.quimatic-news__search-input::placeholder {
    color: #717d96;
}

.quimatic-news__search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 12px;
    border: 0;
    background: var(--quimatic-orange);
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    cursor: pointer;
}

.quimatic-news__selects {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    min-width: 0;
}

.quimatic-news__select {
    height: 40px;
    min-width: 116px;
    padding: 8px 38px 8px 12px;
    border: 1px solid #7f7f7f;
    border-radius: 0;
    background-color: #ffffff;
    background-image: linear-gradient(45deg, transparent 50%, #0a0203 50%), linear-gradient(135deg, #0a0203 50%, transparent 50%);
    background-position: calc(100% - 18px) 17px, calc(100% - 13px) 17px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    color: #000000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    appearance: none;
}

.quimatic-news__select[name="conteudo_categoria"] {
    min-width: 208px;
}

.quimatic-news__select[name="conteudo_tag"] {
    min-width: 208px;
}

.quimatic-news__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.quimatic-news__title {
    margin: 0;
    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-news__all-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--quimatic-text);
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease;
}

.quimatic-news__all-link:focus-visible {
    color: var(--quimatic-orange);
    border-bottom-color: var(--quimatic-orange);
}

@media (hover: hover) {
  .quimatic-news__all-link:hover {
    color: var(--quimatic-orange);
    border-bottom-color: var(--quimatic-orange);
  }
}

.quimatic-news__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 292px));
    justify-content: space-between;
    gap: 104px 34px;
    width: 100%;
}

.quimatic-news-card {
    display: flex;
    flex-direction: column;
    gap: 16.794px;
    width: 292px;
    min-height: 364px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--quimatic-orange);
    color: inherit;
    text-decoration: none;
}

.quimatic-news-card__image-wrap {
    display: block;
    width: 100%;
    height: 164.266px;
    overflow: hidden;
    background: #f2f2f2;
}

.quimatic-news-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center;
    transition: transform 360ms ease;
}

.quimatic-news-card__content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    min-height: 165.326px;
}

.quimatic-news-card__text {
    display: flex;
    flex-direction: column;
    gap: 4.198px;
}

.quimatic-news-card__date {
    color: #7a7a7a;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 12.595px;
    font-weight: 400;
    line-height: normal;
}

.quimatic-news-card__title {
    display: -webkit-box;
    max-height: 116px;
    margin: 0;
    overflow: hidden;
    color: #141414;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20.472px;
    font-weight: 400;
    line-height: 29.674px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.quimatic-news-card__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    padding-bottom: 2px;
    color: #000000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 17.913px;
    font-weight: 600;
    line-height: 25.435px;
}

.quimatic-news-card__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: currentColor;
    transition: width 260ms ease;
}

.quimatic-news-card__link svg {
    transform: translateX(0);
    transition: transform 240ms ease;
}

.quimatic-news-card:focus-visible .quimatic-news-card__image {
    transform: scale(1.04);
}

@media (hover: hover) {
  .quimatic-news-card:hover .quimatic-news-card__image {
    transform: scale(1.04);
  }
}

.quimatic-news-card:focus-visible .quimatic-news-card__link svg {
    transform: translateX(5px);
}

@media (hover: hover) {
  .quimatic-news-card:hover .quimatic-news-card__link svg {
    transform: translateX(5px);
  }
}

.quimatic-news-card:focus-visible .quimatic-news-card__link::after {
    width: 100%;
}

@media (hover: hover) {
  .quimatic-news-card:hover .quimatic-news-card__link::after {
    width: 100%;
  }
}

.quimatic-news__empty {
    margin: 0;
    color: #475467;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

.quimatic-news__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 34px;
}

.quimatic-news__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f2f2f2;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.quimatic-news__page--arrow {
    border: 1px solid var(--quimatic-text);
    background: #ffffff;
}

.quimatic-news__page.is-current {
    border: 1px solid var(--quimatic-orange);
    background: var(--quimatic-orange);
}

.quimatic-news__page.is-disabled {
    opacity: 0.35;
}

.quimatic-news-single {
    width: min(100%, 960px);
    margin: 0 auto;
}

.quimatic-builder-component--noticia-interna {
    border: 0;
    background: #ffffff;
}

.quimatic-builder-component--noticia-interna .quimatic-builder-component__inner {
    width: min(100%, 1440px);
    max-width: none;
    padding: 72px 64px 96px;
}

.quimatic-news-single__date {
    margin: 0 0 12px;
    color: #7a7a7a;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

.quimatic-news-single__title {
    margin: 0 0 32px;
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.48px;
}

.quimatic-news-single__image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
}

.quimatic-news-single__content {
    color: #475467;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
}

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

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

@media (max-width: 1199px) {
    .quimatic-news__filters {
        flex-direction: column;
    }

    .quimatic-news__search {
        width: 100%;
        max-width: 458px;
    }

    .quimatic-news__selects {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    .quimatic-news__grid {
        grid-template-columns: repeat(3, minmax(0, 292px));
        justify-content: start;
    }
}

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

    .quimatic-builder-component--noticias .quimatic-builder-component__inner,
    .quimatic-builder-component--noticias-destaques .quimatic-builder-component__inner {
        padding: 64px 24px;
    }

    .quimatic-news__grid {
        grid-template-columns: repeat(2, minmax(0, 292px));
    }

    .quimatic-builder-component--noticia-interna .quimatic-builder-component__inner {
        padding: 64px 24px 80px;
    }
}

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

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

    .quimatic-builder-component--noticias-destaques .quimatic-builder-component__inner {
        padding: 55px 16px 56px;
    }

    .quimatic-news--listagem {
        gap: 48px;
    }

    .quimatic-news--destaques {
        gap: 24px;
    }

    .quimatic-news__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .quimatic-news__title {
        font-size: 32px;
    }

    .quimatic-news--destaques .quimatic-news__header {
        display: contents;
    }

    .quimatic-news--destaques .quimatic-news__title {
        order: 0;
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: -0.4px;
    }

    .quimatic-news--destaques .quimatic-news__grid {
        order: 1;
        gap: 22px;
    }

    .quimatic-news--destaques .quimatic-news__all-link {
        order: 2;
        justify-content: center;
        width: 100%;
        min-height: 40px;
        padding: 8px 1px;
        border: 1px solid var(--quimatic-orange);
        background: var(--quimatic-orange);
        color: #ffffff;
        font-size: 16px;
        line-height: 24px;
    }

    .quimatic-news--destaques .quimatic-news__all-link svg {
        display: none;
    }

    .quimatic-news--destaques .quimatic-news__all-link:focus-visible {
        border-color: var(--quimatic-orange);
        background: #ffffff;
        color: var(--quimatic-orange);
    }

    @media (hover: hover) {
      .quimatic-news--destaques .quimatic-news__all-link:hover {
        border-color: var(--quimatic-orange);
        background: #ffffff;
        color: var(--quimatic-orange);
      }
    }

    .quimatic-news--listagem .quimatic-news__filters {
        display: none;
    }

    .quimatic-news__search {
        max-width: none;
    }

    .quimatic-news__search-input {
        font-size: 13px;
    }

    .quimatic-news__search-button {
        padding-inline: 10px;
    }

    .quimatic-news__selects {
        flex-direction: column;
        gap: 10px;
    }

    .quimatic-news__select,
    .quimatic-news__select[name="conteudo_categoria"],
    .quimatic-news__select[name="conteudo_tag"] {
        width: 100%;
        min-width: 0;
    }

    .quimatic-news__grid {
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch;
        gap: 22px;
    }

    .quimatic-news-card {
        width: 100%;
        max-width: none;
        min-height: 0;
        gap: 12px;
    }

    .quimatic-news-card__image-wrap {
        height: auto;
        aspect-ratio: 343 / 201.38;
    }

    .quimatic-news-card__content {
        flex: 0 0 auto;
        justify-content: flex-start;
        min-height: 0;
        gap: 0;
    }

    .quimatic-news-card__text {
        gap: 4px;
    }

    .quimatic-news-card__date {
        font-size: 13px;
        line-height: normal;
    }

    .quimatic-news-card__title {
        max-height: 116px;
        font-size: 20px;
        line-height: 27px;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .quimatic-news--destaques .quimatic-news-card__title {
        display: block;
        max-height: none;
        overflow: visible;
        text-overflow: clip;
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .quimatic-news-card__link {
        gap: 4px;
        padding-bottom: 2px;
        font-size: 16px;
        line-height: 22.4px;
    }

    .quimatic-news__pagination {
        gap: 8px;
        flex-wrap: wrap;
        min-height: 40px;
        margin-top: 0;
    }

    .quimatic-news__page.is-disabled {
        opacity: 1;
    }

    .quimatic-builder-component--noticia-interna .quimatic-builder-component__inner {
        padding: var(--quimatic-section-spacing) 16px 64px;
    }

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

    .quimatic-news-single__content {
        font-size: 18px;
    }
}

/* styles/componentes/onde-comprar.css */
.quimatic-builder-component--onde-comprar {
    border: 0;
    background: #ffffff;
}

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

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-builder-component__inner {
    padding-bottom: 0;
}

.quimatic-where-to-buy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.quimatic-where-to-buy__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.quimatic-where-to-buy__page-title {
    margin: 0;
    color: #101828;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.48px;
}

.quimatic-where-to-buy__page-description {
    margin: 0;
    color: #4a5565;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-where-to-buy__page-description > :first-child,
.quimatic-where-to-buy__card-description > :first-child {
    margin-top: 0;
}

.quimatic-where-to-buy__page-description > :last-child,
.quimatic-where-to-buy__card-description > :last-child {
    margin-bottom: 0;
}

.quimatic-where-to-buy__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.quimatic-where-to-buy__section-title {
    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-where-to-buy__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
    width: 100%;
}

.quimatic-where-to-buy__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    min-height: 198px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition:
        min-height 0.28s ease,
        height 0.28s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.quimatic-where-to-buy__card:focus-visible {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: 0;
}

@media (hover: hover) {
  .quimatic-where-to-buy__card:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: 0;
  }
}

.quimatic-where-to-buy__card.is-active {
    min-height: 200px;
    border-top: 2px solid var(--quimatic-orange);
    border-left: 2px solid var(--quimatic-orange);
    border-right: 2px solid var(--quimatic-orange);
    border-bottom: 1px solid var(--quimatic-orange);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active) {
    height: 136px;
    min-height: 136px;
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):focus-visible {
    height: 198px;
    min-height: 198px;
}

@media (hover: hover) {
  .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):hover {
    height: 198px;
    min-height: 198px;
  }
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__grid {
    align-items: end;
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active) .quimatic-where-to-buy__card-description {
    max-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card[aria-current="false"] .quimatic-where-to-buy__card-title {
    position: relative;
    top: 6px;
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):focus-visible .quimatic-where-to-buy__card-description {
    max-height: 96px;
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) {
  .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):hover .quimatic-where-to-buy__card-description {
    max-height: 96px;
    opacity: 1;
    transform: translateY(0);
  }
}

.quimatic-where-to-buy__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid transparent;
    border-radius: 50%;
    color: var(--quimatic-orange);
    transition: background-color 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.quimatic-where-to-buy__card:focus-visible .quimatic-where-to-buy__icon {
    border-color: var(--quimatic-orange);
}

@media (hover: hover) {
  .quimatic-where-to-buy__card:hover .quimatic-where-to-buy__icon {
    border-color: var(--quimatic-orange);
  }
}

.quimatic-where-to-buy__icon-image {
    display: block;
    width: 24px;
    height: 24px;
}

.quimatic-where-to-buy__icon-image {
    object-fit: contain;
}

.quimatic-where-to-buy__card.is-active .quimatic-where-to-buy__icon {
    border-color: var(--quimatic-orange);
    background: var(--quimatic-orange);
}

.quimatic-where-to-buy__card.is-active .quimatic-where-to-buy__icon-image {
    filter: brightness(0) invert(1);
}

.quimatic-where-to-buy__card-title {
    margin: 0;
    color: #0a0a0a;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.quimatic-where-to-buy__card.is-active .quimatic-where-to-buy__card-title {
    color: var(--quimatic-orange);
}

.quimatic-where-to-buy__card-description {
    margin: 0;
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .quimatic-where-to-buy__card,
    .quimatic-where-to-buy__icon,
    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active) .quimatic-where-to-buy__card-description {
        transition: none;
    }
}

.quimatic-where-to-buy__journeys {
    width: 100%;
}

.quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__journeys {
    margin-top: -24px;
}

.quimatic-where-to-buy__journey {
    width: 100%;
    padding-top: 0;
}

.quimatic-where-to-buy__journey[hidden] {
    display: none;
}

.quimatic-where-to-buy__quick-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
    width: 100%;
    padding: 24px 32px;
    background: #f9fafb;
}

.quimatic-where-to-buy__quick-search input,
.quimatic-where-to-buy-form__input,
.quimatic-where-to-buy-form__select,
.quimatic-where-to-buy-form__textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    background: #ffffff;
    color: #101828;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    outline: none;
}

.quimatic-where-to-buy__quick-search input,
.quimatic-where-to-buy__quick-search button,
.quimatic-where-to-buy-form__input,
.quimatic-where-to-buy-form__select {
    min-height: 54px;
}

.quimatic-where-to-buy__quick-search input,
.quimatic-where-to-buy-form__input,
.quimatic-where-to-buy-form__select {
    padding: 12px 16px;
}

.quimatic-where-to-buy__quick-search button,
.quimatic-where-to-buy-form__submit,
.quimatic-where-to-buy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 20px;
    border: 1px solid var(--quimatic-orange);
    background: var(--quimatic-orange);
    color: #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;
    cursor: pointer;
    margin-top: 28px;
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

@media (hover: hover) {
  .quimatic-where-to-buy__quick-search button:hover:not(:disabled),
  .quimatic-where-to-buy-form__submit:hover:not(:disabled),
  .quimatic-where-to-buy__button:hover {
    background: #ffffff;
    color: var(--quimatic-orange);
  }
}

.quimatic-where-to-buy__store-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: var(--quimatic-section-spacing) 0;
    background: transparent;
    isolation: isolate;
}

.quimatic-where-to-buy__store-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    border-top: 1px solid var(--quimatic-orange);
    background: #f2f2f2;
    z-index: -1;
}

.quimatic-where-to-buy__commercial-panel {
    position: relative;
    width: 100%;
    padding: 0 0 24px;
    isolation: isolate;
}

.quimatic-where-to-buy__commercial-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    border-top: 1px solid var(--quimatic-orange);
    background: #f2f2f2;
    z-index: -1;
}

.quimatic-where-to-buy-store-search {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 36px 40px;
    border: 1px solid #eaeaea;
    background: #ffffff;
    box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
}

.quimatic-where-to-buy-store-search__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 41px;
    margin-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.quimatic-where-to-buy-store-search__heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--quimatic-orange);
    position: relative;
    bottom: 7px;
}

.quimatic-where-to-buy-store-search__heading-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quimatic-where-to-buy-store-search__heading h4 {
    margin: 0;
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.quimatic-where-to-buy-store-search__heading-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.quimatic-where-to-buy-store-search__heading-copy p {
    margin: 0;
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.7px;
}

.quimatic-where-to-buy-store-search__row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    width: min(100%, 700px);
}

.quimatic-where-to-buy-store-search__field {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.quimatic-where-to-buy-store-search__field label {
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-where-to-buy-store-search__field label span {
    color: var(--quimatic-orange);
}

.quimatic-where-to-buy-store-search__field input {
    width: 100%;
    height: 50px;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    background: #f8fafc;
    color: #717182;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    caret-color: #717182;
    -webkit-text-fill-color: #717182;
    outline: 0;
}

.quimatic-where-to-buy-store-search__field input::placeholder {
    color: #717182;
    opacity: 1;
}

.quimatic-where-to-buy-store-search__field input:not(:placeholder-shown) {
    border-color: var(--quimatic-orange);
    color: var(--quimatic-orange);
    caret-color: var(--quimatic-orange);
    -webkit-text-fill-color: var(--quimatic-orange);
}

.quimatic-where-to-buy-store-search__field input:focus {
    border-color: var(--quimatic-orange);
    background: #f8fafc;
}

.quimatic-where-to-buy-store-search__row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 240px;
    height: 50px;
    padding: 12px 24px;
    border: 1px solid var(--quimatic-orange);
    border-radius: 0;
    background: var(--quimatic-orange);
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

@media (hover: hover) {
  .quimatic-where-to-buy-store-search__row button:hover:not([disabled]) {
    background: #ffffff;
    color: var(--quimatic-orange);
  }
}

.quimatic-where-to-buy-store-search__row button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.quimatic-where-to-buy-store-search__status {
    width: 100%;
    margin: 16px 0 0;
    color: #4a5565;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.quimatic-where-to-buy-store-search__status[hidden] {
    display: none;
}

.quimatic-where-to-buy-results {
    display: flex;
    flex-direction: column;
    gap: 76px;
    width: 100%;
    margin-top: 48px;
}

.quimatic-where-to-buy-results[hidden] {
    display: none;
}

.quimatic-where-to-buy-results__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}

.quimatic-where-to-buy-store-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 212px;
    padding: 24px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
}

.quimatic-where-to-buy-store-card__heading {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.quimatic-where-to-buy-store-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    background: #fff0eb;
    color: var(--quimatic-orange);
}

.quimatic-where-to-buy-store-card__badge svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quimatic-where-to-buy-store-card h4 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #101828;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.quimatic-where-to-buy-store-card address {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    color: #4a5565;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.quimatic-where-to-buy-store-card__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4a5565;
    margin-top: -8px;
}

.quimatic-where-to-buy-store-card__contact a {
    color: #4a5565;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}

.quimatic-where-to-buy-store-card__line {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
}

.quimatic-where-to-buy-store-card__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    width: 16px;
    height: 20px;
    color: #667085;
}

.quimatic-where-to-buy-store-card__meta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quimatic-where-to-buy-store-card__address-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.quimatic-where-to-buy-store-card__site span:last-child {
    text-decoration: underline;
}

.quimatic-where-to-buy-store-card__contact a:focus-visible {
    color: #101828;
    outline: 0;
}

@media (hover: hover) {
  .quimatic-where-to-buy-store-card__contact a:hover {
    color: #101828;
    outline: 0;
  }
}

.quimatic-where-to-buy-results__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 184px;
    min-height: 48px;
    padding: 12px 32px;
    border: 1px solid var(--quimatic-orange);
    background: var(--quimatic-orange);
    color: #ffffff;
    cursor: pointer;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.quimatic-where-to-buy-results__more[hidden] {
    display: none;
}

.quimatic-where-to-buy-results__more:focus-visible {
    outline: 2px solid #101828;
    outline-offset: 2px;
}

.quimatic-where-to-buy-results__more:disabled {
    cursor: wait;
    opacity: 0.65;
}

@media (hover: hover) {
  .quimatic-where-to-buy-results__more:not(:disabled):hover {
    background: #d94300;
    border-color: #d94300;
  }
}

.quimatic-where-to-buy-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    padding: 40px;
    border: 1px solid #eaeaea;
    background: #ffffff;
    box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
}

.quimatic-where-to-buy-form fieldset {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.quimatic-where-to-buy-form__section {
    width: 100%;
    max-width: 560px;
}

.quimatic-where-to-buy-form__section--tight {
    gap: 8px;
}

.quimatic-where-to-buy-form__section--tight .quimatic-where-to-buy-form__row {
    gap: 8px;
}

.quimatic-where-to-buy-form__section-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 41px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}

.quimatic-where-to-buy-form__section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.1);
}

.quimatic-where-to-buy-form__section-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.quimatic-where-to-buy-form__section-heading h4 {
    margin: 0;
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.quimatic-where-to-buy-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.quimatic-where-to-buy-form__row--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quimatic-where-to-buy-form__field {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.quimatic-where-to-buy-form__label {
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-where-to-buy-form__label span {
    color: var(--quimatic-orange);
}

.quimatic-where-to-buy-form__input,
.quimatic-where-to-buy-form__select,
.quimatic-where-to-buy-form__textarea {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #717182;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-where-to-buy-form__input::placeholder,
.quimatic-where-to-buy-form__textarea::placeholder {
    color: #717182;
    opacity: 1;
}

.quimatic-where-to-buy-form__input,
.quimatic-where-to-buy-form__select {
    height: 50px;
    min-height: 50px;
    padding: 12px 16px;
}

.quimatic-where-to-buy-form__select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #667085 50%),
        linear-gradient(135deg, #667085 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 13px) calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    padding-right: 36px;
}

.quimatic-where-to-buy-form__textarea {
    min-height: 149px;
    resize: none;
    padding: 12px 16px;
}

.quimatic-where-to-buy-form__submit {
    align-self: stretch;
    width: 100%;
    max-width: 560px;
    min-height: 62px;
    margin-top: auto;
    padding: 16px 20px;
    font-size: 20px;
}

.quimatic-where-to-buy-form--commercial {
    align-items: flex-start;
    gap: 16px;
}

.quimatic-where-to-buy-form__intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 560px;
    margin-bottom: 8px;
}

.quimatic-where-to-buy-form__intro-title {
    margin: 0;
    color: #0a0203;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.quimatic-where-to-buy-form__intro-subtitle {
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-where-to-buy-form__intro-subtitle > *:first-child {
    margin-top: 0;
}

.quimatic-where-to-buy-form__intro-subtitle > *:last-child {
    margin-bottom: 0;
}

.quimatic-where-to-buy__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: 40px auto 0 auto;
    padding: 64px 32px 60px 32px;
    text-align: center;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
}

.quimatic-where-to-buy__empty-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.quimatic-where-to-buy__empty-icons span {
    display: block;
    width: 64px;
    height: 64px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quimatic-where-to-buy__empty h4 {
    margin: 32px 0 4px 0;
    color: #101828;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.32px;
}

.quimatic-where-to-buy__empty p {
    max-width: 800px;
    margin: 0;
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.5;
}

.quimatic-where-to-buy__empty[hidden] {
    display: none;
}

.quimatic-where-to-buy__commercial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    padding: 24px 0 0;
}

.quimatic-where-to-buy__benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    max-width: 608px;
    padding-top: 7px;
    padding-right: 16px;
}

.quimatic-where-to-buy__benefits-heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quimatic-where-to-buy__benefits-heading > span {
    color: #0a0203;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.quimatic-where-to-buy__benefits-heading div {
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-where-to-buy__benefit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.quimatic-where-to-buy__benefit {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.quimatic-where-to-buy__benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--quimatic-orange);
}

.quimatic-where-to-buy__benefit-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.quimatic-where-to-buy__benefit-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quimatic-where-to-buy__benefit-content strong {
    color: var(--quimatic-orange);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.quimatic-where-to-buy__benefit-content span {
    color: #4c4c4c;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .quimatic-builder-component--onde-comprar .quimatic-builder-component__inner {
        padding-right: 24px;
        padding-bottom: 96px;
        padding-left: 24px;
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-builder-component__inner {
        padding-bottom: 0;
    }

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

    .quimatic-where-to-buy__quick-search,
    .quimatic-where-to-buy__commercial-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .quimatic-where-to-buy-results__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quimatic-where-to-buy__store-panel {
        padding-right: 0;
        padding-left: 0;
    }

    .quimatic-where-to-buy__commercial-panel {
        padding-bottom: 72px;
    }

    .quimatic-where-to-buy__benefits {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .quimatic-builder-component--onde-comprar {
        width: calc(100% + 32px);
        margin-right: -16px;
        margin-left: -16px;
        background: #ffffff;
    }

    .quimatic-builder-component--onde-comprar .quimatic-builder-component__inner {
        padding: 32px 0 72px;
        background: #ffffff;
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-builder-component__inner {
        padding-bottom: 0;
    }

    .quimatic-where-to-buy {
        gap: 0;
    }

    .quimatic-where-to-buy__header,
    .quimatic-where-to-buy__content {
        padding-right: 16px;
        padding-left: 16px;
    }

    .quimatic-where-to-buy__header {
        gap: 4px;
        margin-bottom: 32px;
    }

    .quimatic-where-to-buy__page-title {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.3;
        letter-spacing: -0.32px;
        color: #0a0203;
        text-transform: uppercase;
    }

    .quimatic-where-to-buy__page-description {
        color: #4a5565;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
    }

    .quimatic-where-to-buy__content {
        position: relative;
        z-index: 1;
        gap: 32px;
        padding-bottom: 20px;
        background: #ffffff;
    }

    .quimatic-where-to-buy__content::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        z-index: -1;
        width: 100vw;
        background: #ffffff;
        transform: translateX(-50%);
    }

    .quimatic-where-to-buy__section-title {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0;
        color: #ff4e00;
    }

    .quimatic-where-to-buy__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .quimatic-where-to-buy__card {
        position: relative;
        min-height: 0;
        display: grid;
        grid-template-columns: 40px minmax(0, 1fr) 18px;
        grid-template-areas:
            "icon title chevron"
            "icon description chevron";
        column-gap: 14px;
        row-gap: 4px;
        padding: 19px 17px;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: none;
        align-items: start;
    }

    .quimatic-where-to-buy__card::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 17px;
        width: 7px;
        height: 7px;
        border-right: 1.5px solid #555555;
        border-bottom: 1.5px solid #555555;
        transform: translateY(-50%) rotate(-45deg);
    }

    .quimatic-where-to-buy__card.is-active {
        min-height: 0;
        border: 1px solid var(--quimatic-orange);
        background: #ffede5;
        box-shadow: none;
    }

    .quimatic-where-to-buy__card:focus-visible {
        background: #ffffff;
    }

    @media (hover: hover) {
      .quimatic-where-to-buy__card:hover {
        background: #ffffff;
      }
    }

    .quimatic-where-to-buy__card.is-active::after {
        border-color: var(--quimatic-orange);
        transform: translateY(-65%) rotate(45deg);
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active),
    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):focus-visible {
        height: auto;
        min-height: 0;
    }

    @media (hover: hover) {
      .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):hover {
        height: auto;
        min-height: 0;
      }
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__grid {
        align-items: stretch;
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active) .quimatic-where-to-buy__card-description,
    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):focus-visible .quimatic-where-to-buy__card-description {
        max-height: none;
        opacity: 1;
        transform: none;
    }

    @media (hover: hover) {
      .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card:not(.is-active):hover .quimatic-where-to-buy__card-description {
        max-height: none;
        opacity: 1;
        transform: none;
      }
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__card[aria-current="false"] .quimatic-where-to-buy__card-title {
        position: static;
        top: auto;
    }

    .quimatic-where-to-buy__card > *:not(.quimatic-where-to-buy__icon) {
        max-width: none;
    }

    .quimatic-where-to-buy__icon,
    .quimatic-where-to-buy__card.is-active .quimatic-where-to-buy__icon,
    .quimatic-where-to-buy__card:focus-visible .quimatic-where-to-buy__icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        grid-area: icon;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    @media (hover: hover) {
      .quimatic-where-to-buy__card:hover .quimatic-where-to-buy__icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        grid-area: icon;
        border: 0;
        border-radius: 0;
        background: transparent;
      }
    }

    .quimatic-where-to-buy__icon-image {
        width: 28px;
        height: 28px;
        filter: none;
    }

    .quimatic-where-to-buy__card.is-active .quimatic-where-to-buy__icon-image {
        filter: none;
    }

    .quimatic-where-to-buy__card-title,
    .quimatic-where-to-buy__card.is-active .quimatic-where-to-buy__card-title {
        grid-area: title;
        align-self: center;
        color: #1a1a1a;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }

    .quimatic-where-to-buy__card-description {
        grid-area: description;
        color: #555555;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
    }

    .quimatic-builder-component--onde-comprar.has-active-journey .quimatic-where-to-buy__journeys {
        margin-top: 0;
    }

    .quimatic-where-to-buy__journeys {
        width: 100%;
        background: #f2f2f2;
    }

    .quimatic-where-to-buy__store-panel,
    .quimatic-where-to-buy__commercial-panel {
        position: relative;
        padding: 24px 16px 32px;
        background: transparent;
    }

    .quimatic-where-to-buy__store-panel::before,
    .quimatic-where-to-buy__commercial-panel::before {
        display: none;
    }

    .quimatic-where-to-buy-store-search {
        gap: 24px;
        padding: 16px 8px;
        border: 1px solid #eaeaea;
        box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
    }

    .quimatic-where-to-buy-store-search__heading {
        gap: 8px;
        min-height: 41px;
        margin-bottom: 0;
        padding-bottom: 9px;
    }

    .quimatic-where-to-buy-store-search__heading-icon {
        width: 32px;
        height: 32px;
        bottom: 0;
        background: rgba(255, 107, 53, 0.12);
    }

    .quimatic-where-to-buy-store-search__heading-icon svg {
        width: 16px;
        height: 16px;
    }

    .quimatic-where-to-buy-store-search__heading h4 {
        font-size: 10px;
        line-height: 20px;
        letter-spacing: 0.7px;
    }

    .quimatic-where-to-buy-store-search__heading-copy p {
        font-size: 10px;
        font-weight: 300;
        line-height: 20px;
        letter-spacing: 0;
    }

    .quimatic-where-to-buy-store-search__row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 8px;
        align-items: end;
        width: 100%;
    }

    .quimatic-where-to-buy-store-search__field label {
        font-size: 14px;
    }

    .quimatic-where-to-buy-store-search__field input {
        height: 44px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .quimatic-where-to-buy-store-search__row button {
        flex-basis: auto;
        width: 100%;
        height: 50px;
        padding: 16px 24px;
        font-size: 20px;
    }

    .quimatic-where-to-buy-results {
        gap: 24px;
        margin-top: 12px;
    }

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

    .quimatic-where-to-buy-store-card {
        gap: 16px;
        min-height: 0;
        padding: 12px;
        border-width: 2px;
    }

    .quimatic-where-to-buy-store-card__heading {
        gap: 16px;
        align-items: center;
    }

    .quimatic-where-to-buy-store-card__badge {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .quimatic-where-to-buy-store-card__badge svg {
        width: 24px;
        height: 24px;
    }

    .quimatic-where-to-buy-store-card h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .quimatic-where-to-buy-store-card address,
    .quimatic-where-to-buy-store-card__contact a {
        font-size: 12px;
        line-height: 20px;
    }

    .quimatic-where-to-buy-store-card__meta-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    .quimatic-where-to-buy-store-card__meta-icon svg {
        width: 16px;
        height: 16px;
    }

    .quimatic-where-to-buy-store-card__contact {
        gap: 8px;
    }

    .quimatic-where-to-buy-store-card__line {
        gap: 8px;
    }

    .quimatic-where-to-buy-store-card__address-copy {
        gap: 0;
    }

    .quimatic-where-to-buy-results__more {
        width: 100%;
    }

    .quimatic-where-to-buy__quick-search,
    .quimatic-where-to-buy-form__row,
    .quimatic-where-to-buy-form__row--three {
        grid-template-columns: minmax(0, 1fr);
    }

    .quimatic-where-to-buy-form {
        gap: 24px;
        padding: 40px 8px;
        border: 1px solid #eaeaea;
        box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
    }

    .quimatic-where-to-buy__commercial-grid {
        gap: 16px;
        padding-top: 0;
    }

    .quimatic-where-to-buy__benefits-heading > span,
    .quimatic-where-to-buy__empty h4 {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: -0.24px;
    }

    .quimatic-where-to-buy__benefits-heading {
        gap: 12px;
    }

    .quimatic-where-to-buy__benefits-heading div {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;
    }

    .quimatic-where-to-buy__benefits {
        gap: 16px;
        padding-top: 0;
        padding-right: 0;
    }

    .quimatic-where-to-buy__benefit-list {
        gap: 8px;
    }

    .quimatic-where-to-buy__benefit {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 8px;
    }

    .quimatic-where-to-buy__benefit-icon {
        width: 64px;
        min-height: 64px;
    }

    .quimatic-where-to-buy__benefit-icon svg {
        width: 32px;
        height: 32px;
    }

    .quimatic-where-to-buy__benefit-content strong {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }

    .quimatic-where-to-buy__benefit-content span {
        font-size: 14px;
        line-height: 1.5;
    }

    .quimatic-where-to-buy-form__intro {
        gap: 12px;
        margin-bottom: 0;
    }

    .quimatic-where-to-buy-form__intro-title {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: -0.24px;
    }

    .quimatic-where-to-buy-form__intro-subtitle {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;
    }

    .quimatic-where-to-buy-form fieldset,
    .quimatic-where-to-buy-form__section {
        gap: 16px;
        max-width: none;
    }

    .quimatic-where-to-buy-form__section--tight,
    .quimatic-where-to-buy-form__section--tight .quimatic-where-to-buy-form__row {
        gap: 16px;
    }

    .quimatic-where-to-buy-form__section-heading {
        min-height: 41px;
        padding-bottom: 9px;
    }

    .quimatic-where-to-buy-form__section-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        background: rgba(255, 107, 53, 0.1);
    }

    .quimatic-where-to-buy-form__section-icon svg {
        width: 16px;
        height: 16px;
    }

    .quimatic-where-to-buy-form__section-heading h4 {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.7px;
    }

    .quimatic-where-to-buy-form__label {
        font-size: 14px;
    }

    .quimatic-where-to-buy-form__input,
    .quimatic-where-to-buy-form__select {
        height: 50px;
        min-height: 50px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .quimatic-where-to-buy-form__textarea {
        min-height: 149px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .quimatic-where-to-buy-form__submit {
        max-width: none;
        min-height: 56px;
        padding: 16px 20px;
        border-color: #7f7f7f;
        background: #7f7f7f;
        color: rgba(255, 255, 255, 0.4);
        font-size: 16px;
    }

    .quimatic-where-to-buy-form__checkbox {
        font-size: 14px;
        line-height: 20px;
    }

    .quimatic-where-to-buy__empty {
        gap: 12px;
        margin-top: 12px;
        padding: 24px 16px;
        border: 1px solid #f0f0f0;
        background: #ffffff;
        box-shadow: 0 12px 16px rgba(0, 0, 0, 0.08);
    }

    .quimatic-where-to-buy__empty-icons {
        gap: 8px;
    }

    .quimatic-where-to-buy__empty-icons span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border: 1px solid #e5e7eb;
        background: #f2f4f7;
    }

    .quimatic-where-to-buy__empty-icons span.is-active {
        border-color: var(--quimatic-orange);
        background: var(--quimatic-orange);
        color: #ffffff;
    }

    .quimatic-where-to-buy__empty p {
        font-size: 14px;
        line-height: 1.5;
    }

    .quimatic-where-to-buy__button {
        min-height: 42px;
        width: auto;
        padding: 10px 16px;
        font-size: 14px;
    }
}

.quimatic-where-to-buy-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4c4c4c;
    font-size: 15px;
    line-height: 22px;
}

.quimatic-where-to-buy-form__checkbox input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--quimatic-orange);
}

/* styles/componentes/perguntas-frequentes.css */
.quimatic-builder-component--perguntas-frequentes {
    border: 0;
    background: #ffffff;
}

.quimatic-builder-component--perguntas-frequentes .quimatic-builder-component__inner {
    width: min(100%, 1440px);
    max-width: none;
    margin: 0 auto;
    padding: 0 64px 24px;
}

.quimatic-faq {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    gap: 32px;
    align-items: start;
}

.quimatic-faq__intro {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: none;
    min-width: 0;
    padding-top: 24px;
}

.quimatic-faq__title {
    width: 100%;
    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;
}

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

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

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

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

.quimatic-faq__description {
    width: 100%;
    margin: 0;
    color: #475467;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--Text-Sizes-Text-Medium, 18px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-faq__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 215.933px;
    min-height: 38px;
    padding: 7.289px 18.222px;
    border: 0.911px 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-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

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

.quimatic-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 112px;
}

.quimatic-builder-component--perguntas-frequentes .quimatic-faq__list {
    padding-top: 0;
}

.quimatic-faq__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 16px 16px 8px;
    border: 0.75px solid var(--Color-Graphite-Lighter, #cecccc);
    box-shadow: inset 0 0 0 0 transparent;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.quimatic-faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.quimatic-faq__trigger-label {
    flex: 1 1 auto;
    min-width: 0;
    color: var(--Color-Neutral-Dark, #4c4c4c);
    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;
    transition: color 220ms ease;
}

.quimatic-faq__trigger-icon {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    color: #4c4c4c;
    transition: transform 220ms ease, color 220ms ease;
}

.quimatic-faq__trigger-icon path {
    fill: currentColor;
}

@media (hover: hover) and (pointer: fine) {
    .quimatic-faq__item:hover {
        border-color: var(--quimatic, #ff4e00);
        box-shadow: inset 0 0 0 0.75px var(--quimatic, #ff4e00);
    }

    .quimatic-faq__item:hover .quimatic-faq__trigger-label {
        color: var(--black-quimatic, #0a0203);
    }

    .quimatic-faq__item:hover .quimatic-faq__trigger-icon {
        color: var(--quimatic, #ff4e00);
    }
}

.quimatic-faq__item.is-open {
    border-color: var(--quimatic, #ff4e00);
    box-shadow: inset 0 0 0 0.75px var(--quimatic, #ff4e00);
}

.quimatic-faq__item.is-open .quimatic-faq__trigger-label {
    color: var(--black-quimatic, #0a0203);
}

.quimatic-faq__item.is-open .quimatic-faq__trigger-icon {
    color: var(--quimatic, #ff4e00);
}

.quimatic-faq__item.is-open .quimatic-faq__trigger-icon {
    transform: rotate(180deg);
}

.quimatic-faq__panel {
    margin: 0;
    padding: 0;
    color: var(--Color-Neutral-Dark, #4c4c4c);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: var(--Text-Sizes-Heading-6, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

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

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

.quimatic-faq__panel p {
    margin: 0;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}

.quimatic-faq__panel strong,
.quimatic-faq__panel b {
    font-weight: 700;
}

.quimatic-faq__more {
    display: none;
}

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

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

    .quimatic-faq__intro {
        position: static;
        max-width: none;
        padding-top: 72px;
    }

    .quimatic-faq__list {
        padding-top: 0;
    }
}

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

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

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

    .quimatic-faq {
        gap: 24px;
    }

    .quimatic-faq__intro {
        gap: 16px;
        padding-top: 0;
    }

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

    .quimatic-faq__description {
        font-size: 18px;
        line-height: 1.5;
    }

    .quimatic-faq__button {
        width: 100%;
    }

    .quimatic-faq__list {
        gap: 8px;
    }

    .quimatic-faq__item {
        gap: 10px;
        padding: 16px 16px 8px;
    }

    .quimatic-faq__trigger {
        gap: 12px;
    }

    .quimatic-faq__trigger-label {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0;
    }

    .quimatic-faq__panel {
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: -0.18px;
    }

    .quimatic-faq__more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 38px;
        padding: 8.56px 1px 7.44px;
        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-transform: uppercase;
        cursor: pointer;
    }

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

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

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

.quimatic-builder-component--produtos .products-page {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 80px;
  background: #ffffff;
}

.quimatic-builder-component--produtos .products-page::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.quimatic-builder-component--produtos .products-catalog {
  padding: 24px 64px 0;
}

.quimatic-builder-component--produtos .products-catalog__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.quimatic-builder-component--produtos .products-catalog__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;
  text-transform: uppercase;
}

.quimatic-builder-component--produtos .products-catalog__subtitle {
  margin: 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 .products-catalog__mobile-toggle {
  display: none;
}

.quimatic-builder-component--produtos .products-catalog__mobile-toggle-icon,
.quimatic-builder-component--produtos .products-catalog__mobile-toggle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.quimatic-builder-component--produtos .products-catalog__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.quimatic-builder-component--produtos .products-catalog__mobile-toggle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quimatic-builder-component--produtos .products-catalog__controls {
  margin-bottom: 40px;
}

.quimatic-builder-component--produtos .products-catalog__toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.quimatic-builder-component--produtos .products-catalog__filters,
.quimatic-builder-component--produtos .products-catalog__sort {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.quimatic-builder-component--produtos .products-catalog__sustainable-toggle {
  min-width: 196px;
  min-height: 40px;
  border: 1px solid #7f7f7f;
  border-radius: 0;
  background-color: #ffffff;
  color: #0a0203;
  font-family: 'Myriad Pro', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.quimatic-builder-component--produtos .products-catalog__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;
}

.quimatic-builder-component--produtos .products-catalog__custom-select {
  position: relative;
  width: 244px;
  min-width: 0;
  min-height: 42px;
  z-index: 1;
}

.quimatic-builder-component--produtos .products-catalog__select--mobile-category + .products-catalog__custom-select {
  display: none;
}

.quimatic-builder-component--produtos .products-catalog__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 .products-catalog__custom-select.is-open {
  z-index: 10;
}

.quimatic-builder-component--produtos .products-catalog__custom-select.is-open .products-catalog__custom-select-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.quimatic-builder-component--produtos .products-catalog__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 .products-catalog__custom-select-label {
  flex: 1 1 auto;
  min-width: 0;
}

.quimatic-builder-component--produtos .products-catalog__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 .products-catalog__custom-select-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.quimatic-builder-component--produtos .products-catalog__custom-select-options {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.quimatic-builder-component--produtos .products-catalog__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 .products-catalog__custom-select.is-selected .products-catalog__custom-select-trigger {
  color: #ff4e00;
}

.quimatic-builder-component--produtos .products-catalog__custom-select.is-open .products-catalog__custom-select-panel {
  border-color: #b2b2b2;
}

.quimatic-builder-component--produtos .products-catalog__custom-select.is-open .products-catalog__custom-select-trigger {
  color: #ff4e00;
  font-weight: 700;
}

.quimatic-builder-component--produtos .products-catalog__custom-select.is-open .products-catalog__custom-select-icon {
  color: #ff4e00;
  transform: rotate(180deg);
}

.quimatic-builder-component--produtos .products-catalog__custom-select.is-open .products-catalog__custom-select-options {
  display: flex;
}

.quimatic-builder-component--produtos .products-catalog__custom-select-trigger:focus-visible {
  outline: none;
}

.quimatic-builder-component--produtos .products-catalog__custom-select:focus-within .products-catalog__custom-select-panel {
  border-color: #ff4e00;
}

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

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

.quimatic-builder-component--produtos .products-catalog__sustainable-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.quimatic-builder-component--produtos .products-catalog__sustainable-toggle:focus-within,
.quimatic-builder-component--produtos .products-catalog__sustainable-toggle.is-active {
  border-color: #ff4e00;
  background: #ff4e00;
  color: #ffffff;
}

@media (hover: hover) {
  .quimatic-builder-component--produtos .products-catalog__sustainable-toggle:hover {
    border-color: #ff4e00;
    background: #ff4e00;
    color: #ffffff;
  }
}

.quimatic-builder-component--produtos .products-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 12px;
}

.quimatic-builder-component--produtos .products-catalog__grid .featured-products__card {
  width: 100%;
}

.quimatic-builder-component--produtos .products-catalog__status {
  margin-bottom: 28px;
}

.quimatic-builder-component--produtos .products-catalog__results {
  margin: 0;
  color: #7f7f7f;
  font-family: 'Myriad Pro', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.quimatic-builder-component--produtos .products-catalog__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 32px;
  border: 1px solid #d9d9d9;
  background: #f8f8f8;
}

.quimatic-builder-component--produtos .products-catalog__empty p {
  margin: 0;
  color: #0a0203;
  font-family: 'Myriad Pro', sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.quimatic-builder-component--produtos .products-catalog__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 20px;
  border: 1px solid #ff4e00;
  background: #ffffff;
  color: #ff4e00;
  font-family: 'Myriad Pro', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: background-color 220ms ease, color 220ms ease;
}

.quimatic-builder-component--produtos .products-catalog__reset:focus-visible {
  background: #ff4e00;
  color: #ffffff;
}

@media (hover: hover) {
  .quimatic-builder-component--produtos .products-catalog__reset:hover {
    background: #ff4e00;
    color: #ffffff;
  }
}

.quimatic-builder-component--produtos .products-catalog__pagination {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quimatic-builder-component--produtos .products-catalog__page-arrow,
.quimatic-builder-component--produtos .products-catalog__page-number,
.quimatic-builder-component--produtos .products-catalog__page-ellipsis {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.quimatic-builder-component--produtos .products-catalog__page-arrow {
  border: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.quimatic-builder-component--produtos .products-catalog__page-number {
  border: 0;
  background: #f2f2f2;
  color: #0a0203;
  font-family: 'Myriad Pro', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.quimatic-builder-component--produtos .products-catalog__page-ellipsis {
  width: auto;
  color: #7f7f7f;
  font-family: 'Myriad Pro', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.quimatic-builder-component--produtos .products-catalog__page-number.is-active,
.quimatic-builder-component--produtos .products-catalog__page-number:focus-visible {
  background: #ff4e00;
  color: #ffffff;
}

@media (hover: hover) {
  .quimatic-builder-component--produtos .products-catalog__page-number:hover {
    background: #ff4e00;
    color: #ffffff;
  }
}

.quimatic-builder-component--produtos .products-catalog__page-arrow.is-disabled,
.quimatic-builder-component--produtos .products-catalog__page-number[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 1360px) {
  .quimatic-builder-component--produtos .products-catalog {
    padding-left: 24px;
    padding-right: 24px;
  }

  .quimatic-builder-component--produtos .products-catalog__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .quimatic-builder-component--produtos .products-catalog__sort {
    justify-content: flex-start;
  }

  .quimatic-builder-component--produtos .products-catalog__status {
    margin-bottom: 24px;
  }

  .quimatic-builder-component--produtos .products-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .quimatic-builder-component--produtos {
    margin-inline: -8px;
  }

  .quimatic-builder-component--produtos .products-page {
    padding-bottom: 56px;
  }

  .quimatic-builder-component--produtos .products-catalog {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 32px;
  }

  .quimatic-builder-component--produtos .products-catalog__intro {
    gap: 12px;
    margin-bottom: 0;
  }

  .quimatic-builder-component--produtos .products-catalog__title {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -0.32px;
  }

  .quimatic-builder-component--produtos .products-catalog__subtitle {
    color: #ff6b35;
    font-size: 20px;
    line-height: 1.5;
  }

  .quimatic-builder-component--produtos .products-catalog__mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: auto;
    max-width: none;
    min-height: 44px;
    padding: 7px 4px;
    border: 1px solid #ff4e00;
    border-radius: 0;
    background: #ffffff;
    color: #ff4e00;
    appearance: none;
    font-family: 'Myriad Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: none;
  }

  .quimatic-builder-component--produtos .products-catalog__mobile-toggle-label {
    flex: 0 0 auto;
    text-align: left;
  }

  .quimatic-builder-component--produtos .products-catalog__mobile-toggle-arrow {
    transition: transform 220ms ease;
  }

  .quimatic-builder-component--produtos .products-catalog__mobile-toggle[aria-expanded='true'] .products-catalog__mobile-toggle-arrow {
    transform: none;
  }

  .quimatic-builder-component--produtos .products-catalog__controls {
    display: none;
    width: 100%;
    max-width: 343px;
    margin: 24px 0;
  }

  .quimatic-builder-component--produtos .products-catalog__controls.is-open {
    display: block;
  }

  .quimatic-builder-component--produtos .products-catalog__filters,
  .quimatic-builder-component--produtos .products-catalog__sort {
    display: contents;
  }

  .quimatic-builder-component--produtos .products-catalog__toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .quimatic-builder-component--produtos .products-catalog__custom-select,
  .quimatic-builder-component--produtos .products-catalog__sustainable-toggle {
    width: 100%;
    min-width: 0;
    min-height: 40px;
  }

  .quimatic-builder-component--produtos .products-catalog__custom-select-panel {
    min-height: 40px;
    gap: 16px;
    padding: 8px 12px;
  }

  .quimatic-builder-component--produtos .products-catalog__custom-select[data-products-custom-select='ordem'] {
    order: 1;
  }

  .quimatic-builder-component--produtos .products-catalog__custom-select[data-products-custom-select='industria'] {
    order: 2;
  }

  .quimatic-builder-component--produtos .products-catalog__custom-select[data-products-custom-select='linha'] {
    order: 3;
  }

  .quimatic-builder-component--produtos .products-catalog__select--mobile-category + .products-catalog__custom-select {
    display: none;
  }

  .quimatic-builder-component--produtos .products-catalog__custom-select-trigger,
  .quimatic-builder-component--produtos .products-catalog__custom-select-option {
    font-size: 16px;
    line-height: 24px;
  }

  .quimatic-builder-component--produtos .products-catalog__sustainable-toggle {
    display: none;
    border-color: #ff4e00;
    color: #ff4e00;
  }

  .quimatic-builder-component--produtos .products-catalog__status {
    display: none;
  }

  .quimatic-builder-component--produtos .products-catalog__grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .quimatic-builder-component--produtos .products-catalog__controls.is-open ~ .products-catalog__grid,
  .quimatic-builder-component--produtos .products-catalog__controls.is-open ~ .products-catalog__empty {
    margin-top: 0;
  }

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card {
    width: 100%;
    max-width: 343px;
    height: 447px;
    padding: 0 0 12px;
    background: #ffffff;
  }

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card-image-wrap {
    min-height: 218px;
  }

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

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card-title {
    margin: 16px 12px 8px;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    font-size: 18px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card-description {
    margin: 0 12px;
    height: 42px;
    min-height: 42px;
    max-height: 42px;
    color: #606060;
    font-size: 14px;
    font-weight: 400;
    -webkit-line-clamp: 2;
  }

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card-chips {
    margin: 8px 12px 0;
    min-height: 21px;
  }

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card-chip {
    font-size: 14px;
  }

  .quimatic-builder-component--produtos .products-catalog__grid .featured-products__card-button {
    width: calc(100% - 24px);
    min-height: 40px;
    margin: auto 12px 0;
  }

  .quimatic-builder-component--produtos .products-catalog__empty {
    margin-top: 24px;
    padding: 24px 20px;
  }

  .quimatic-builder-component--produtos .products-catalog__pagination {
    margin-top: 32px;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .quimatic-builder-component--produtos .products-catalog__page-arrow,
  .quimatic-builder-component--produtos .products-catalog__page-number {
    flex: 0 0 40px;
  }

  .quimatic-builder-component--produtos .products-catalog__page-number.is-active {
    color: #0a0203;
  }

  .quimatic-builder-component--produtos .products-catalog__page-ellipsis {
    position: relative;
    width: 26px;
    height: 40px;
    font-size: 0;
  }

  .quimatic-builder-component--produtos .products-catalog__page-ellipsis::before {
    content: '•••';
    color: #606060;
    font-family: 'Myriad Pro', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .quimatic-builder-component--produtos .products-catalog__title {
    font-size: 32px;
  }

  .quimatic-builder-component--produtos .products-catalog__subtitle {
    font-size: 20px;
  }
}

/* styles/componentes/quero-comprar.css */
.quimatic-builder-component--quero-comprar {
    border: 0;
    background: #ff4e00;
}

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

.quimatic-buy {
    width: 100%;
}

.quimatic-buy__card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 650px;
    overflow: hidden;
    background: #ffffff;
}

.quimatic-buy--without-image .quimatic-buy__card {
    grid-template-columns: minmax(0, 1fr);
}

.quimatic-buy__panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    padding: 48px 40px 0 40px;
    background: #ffffff;
}

.quimatic-buy__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(10, 2, 3, 0.05);
}

.quimatic-buy__badge img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.quimatic-buy__title {
    margin: 28px 0 0;
    color: #000000;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.quimatic-buy__text {
    max-width: 560px;
    margin: 12px 0 0;
    color: #667085;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.35;
}

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

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

.quimatic-buy__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    width: 100%;
    max-width: 600px;
    min-height: 40px;
    margin: 28px 0 24px;
    border: 1px solid #cfd5df;
    background: #ffffff;
    box-sizing: border-box;
}

.quimatic-buy__field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    min-height: 38px;
    padding: 0 12px;
    box-sizing: border-box;
}

.quimatic-buy__search-icon {
    display: inline-flex;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: #667085;
}

.quimatic-buy__search-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.quimatic-buy__search-icon path,
.quimatic-buy__search-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quimatic-buy__input {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    color: #101828;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.quimatic-buy__input::-webkit-search-decoration,
.quimatic-buy__input::-webkit-search-cancel-button,
.quimatic-buy__input::-webkit-search-results-button,
.quimatic-buy__input::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.quimatic-buy__input::placeholder {
    color: #667085;
    opacity: 1;
}

.quimatic-buy__input:focus {
    outline: 0;
}

.quimatic-buy__form.is-active {
    border-color: #ff4e00;
}

.quimatic-buy__form.is-active .quimatic-buy__search-icon {
    color: #ff4e00;
}

.quimatic-buy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 121px;
    min-height: 32px;
    height: 32px;
    margin: 4px 4px 4px 0;
    padding: 0 24px;
    border: 0;
    background: #ff4e00;
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.quimatic-buy__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    width: 32px;
    align-self: center;
    height: 32px;
    margin-right: 4px;
    border: 0;
    background: #0a0203;
    color: #ffffff;
    cursor: pointer;
}

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

.quimatic-buy__clear span {
    display: block;
    margin-top: -1px;
    font-size: 24px;
    line-height: 1;
}

.quimatic-buy__button:focus-visible {
    background: #0a0203;
}

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

.quimatic-buy__button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.quimatic-buy__status,
.quimatic-buy__results,
.quimatic-buy__empty {
    width: 100%;
    max-width: 600px;
    margin: 0 0 18px;
    box-sizing: border-box;
}

.quimatic-buy__status {
    color: #667085;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.quimatic-buy__status[hidden],
.quimatic-buy__results[hidden],
.quimatic-buy__empty[hidden] {
    display: none;
}

.quimatic-buy__results {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

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

.quimatic-buy-store-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
    padding: 18px 22px 14px;
    border: 1px solid #d9dee8;
    background: #ffffff;
}

.quimatic-buy-store-card__heading {
    display: block;
    width: 100%;
}

.quimatic-buy-store-card h4 {
    margin: 0;
    color: #1f2937;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.quimatic-buy-store-card__contact {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr) minmax(0, 1.3fr);
    gap: 16px;
    align-items: start;
    color: #667085;
}

.quimatic-buy-store-card address,
.quimatic-buy-store-card__contact a {
    color: #667085;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-decoration: none;
    margin: 0;
    font-style: normal;
}

.quimatic-buy-store-card__contact a:focus-visible {
    color: #101828;
    outline: 0;
}

@media (hover: hover) {
  .quimatic-buy-store-card__contact a:hover {
    color: #101828;
    outline: 0;
  }
}

.quimatic-buy-store-card__line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
}

.quimatic-buy-store-card__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
    width: 16px;
    height: 20px;
    color: #667085;
}

.quimatic-buy-store-card__meta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quimatic-buy-store-card__address-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.quimatic-buy-store-card__site span:last-child {
    text-decoration: underline;
}

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

.quimatic-buy__load-more {
    width: 100%;
    min-height: 41px;
    border: 0;
    background: #ff5a0a;
    color: #ffffff;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.quimatic-buy__pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    background: #f2f2f2;
    color: #0a0203;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.quimatic-buy__pagination a:focus-visible {
    border-color: #ff4e00;
    color: #0a0203;
    outline: 0;
}

@media (hover: hover) {
  .quimatic-buy__pagination a:hover {
    border-color: #ff4e00;
    color: #0a0203;
    outline: 0;
  }
}

.quimatic-buy__pagination a.is-active {
    border-color: #ff4e00;
    background: #ff4e00;
    color: #0a0203;
}

.quimatic-buy__pagination a.is-disabled {
    pointer-events: none;
    opacity: 0.35;
}

.quimatic-buy__pagination-arrow {
    border: 0 !important;
    background: transparent !important;
}

.quimatic-buy__pagination-arrow svg {
    display: block;
    width: 40px;
    height: 40px;
}

.quimatic-buy__pagination-arrow:focus-visible {
    border-color: transparent;
}

@media (hover: hover) {
  .quimatic-buy__pagination-arrow:hover {
    border-color: transparent;
  }
}

.quimatic-buy__empty {
    padding: 20px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.quimatic-buy__empty h3 {
    margin: 0 0 8px;
    color: #101828;
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

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

.quimatic-buy__map {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    min-height: 300px;
    margin-top: 18px;
    margin-left: 0;
    overflow: hidden;
}

.quimatic-buy__map-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.quimatic-buy__aside {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.quimatic-buy__image-wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
    overflow: hidden;
    background: #ebe5dc;
}

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

.quimatic-buy--has-results .quimatic-buy__image-wrap {
    display: none;
}

.quimatic-buy--has-results .quimatic-buy__aside {
    padding: 48px 40px 32px 32px;
    background: #ffffff;
}

.quimatic-buy--has-results .quimatic-buy__panel {
    padding-right: 32px;
}

@media (max-width: 1180px) {
    .quimatic-builder-component--quero-comprar .quimatic-builder-component__inner {
        padding: var(--quimatic-section-spacing) 24px;
    }

    .quimatic-buy__card {
        min-height: 560px;
    }

    .quimatic-buy__panel {
        padding: 32px 32px 0;
    }

    .quimatic-buy__title {
        font-size: 46px;
    }

    .quimatic-buy__text {
        font-size: 18px;
    }

    .quimatic-buy__image-wrap {
        min-height: 420px;
    }

    .quimatic-buy--has-results .quimatic-buy__aside {
        padding: 32px 24px 24px;
    }
}

@media (max-width: 1024px) {
    .quimatic-buy__card {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .quimatic-buy__panel {
        min-height: 0;
        padding-bottom: 24px;
    }

    .quimatic-buy__map {
        min-height: 260px;
    }

    .quimatic-buy__contact,
    .quimatic-buy-store-card__contact {
        grid-template-columns: minmax(0, 1fr);
    }

    .quimatic-buy__aside {
        min-height: 0;
    }

    .quimatic-buy--has-results .quimatic-buy__aside {
        padding: 0 24px 24px;
    }
}

@media (max-width: 768px) {
    .quimatic-builder-component--quero-comprar .quimatic-builder-component__inner {
        padding: 32px 16px;
    }

    .quimatic-buy__panel {
        padding: 24px 20px 20px;
    }

    .quimatic-buy__title {
        font-size: 38px;
    }

    .quimatic-buy__text {
        font-size: 16px;
    }

    .quimatic-buy__form,
    .quimatic-buy__status,
    .quimatic-buy__results,
    .quimatic-buy__empty {
        max-width: none;
    }

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

    .quimatic-buy__image-wrap {
        min-height: 320px;
    }

    .quimatic-buy--has-results .quimatic-buy__aside {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .quimatic-buy__title {
        font-size: 30px;
    }

    .quimatic-buy__form {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
    }

    .quimatic-buy__field {
        min-height: 54px;
        grid-column: 1 / -1;
    }

    .quimatic-buy__input {
        min-height: 54px;
        font-size: 16px;
    }

    .quimatic-buy__button {
        width: auto;
        min-height: 54px;
        margin: 0;
    }

    .quimatic-buy__clear {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-right: 6px;
    }

    .quimatic-buy__status,
    .quimatic-buy__results,
    .quimatic-buy__empty {
        max-width: none;
        margin-left: 0;
    }

    .quimatic-buy__map {
        min-height: 210px;
        margin-left: 0;
    }
}

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

.quimatic-builder-component--solucoes .industrial-sectors {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 64px;
    background-color: #ffffff;
}

.quimatic-builder-component--solucoes .industrial-sectors__heading {
    width: 100%;
}

.quimatic-builder-component--solucoes .industrial-sectors__title {
    margin: 4px 0 0;
    color: #0a0203;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-transform: uppercase;
}

.quimatic-builder-component--solucoes .industrial-sectors__cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.quimatic-builder-component--solucoes .sector-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 212px;
    height: 400px;
    padding: 10px 1px;
    overflow: hidden;
    border: 1px solid transparent;
    color: #ffffff;
    text-decoration: none;
}

.quimatic-builder-component--solucoes .sector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.4) 100%);
}

.quimatic-builder-component--solucoes .sector-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quimatic-builder-component--solucoes .sector-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(255, 78, 0, 0.72);
    opacity: 0;
    transition: opacity 320ms ease;
}

.quimatic-builder-component--solucoes .sector-card__label {
    position: absolute;
    top: 354px;
    left: 0;
    right: 0;
    z-index: 3;
    width: max-content;
    max-width: calc(100% - 16px);
    margin: 0 auto;
    padding: 0;
    color: #ffffff;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
    transform: none;
    transition: top 280ms ease, transform 280ms ease;
}

.quimatic-builder-component--solucoes .sector-card__icon {
    position: absolute;
    top: 399px;
    left: 0;
    right: 0;
    z-index: 3;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    text-align: center;
    transform: none;
    transition: top 280ms ease;
}

.quimatic-builder-component--solucoes .sector-card:focus-visible .sector-card__overlay {
    opacity: 1;
}

@media (hover: hover) {
  .quimatic-builder-component--solucoes .sector-card:hover .sector-card__overlay {
    opacity: 1;
  }
}

.quimatic-builder-component--solucoes .sector-card:focus-visible .sector-card__icon {
    top: 260px;
}

@media (hover: hover) {
  .quimatic-builder-component--solucoes .sector-card:hover .sector-card__icon {
    top: 260px;
  }
}

.quimatic-builder-component--solucoes .sector-card:focus-visible .sector-card__label {
    top: 51%;
    transform: translateY(-50%);
}

@media (hover: hover) {
  .quimatic-builder-component--solucoes .sector-card:hover .sector-card__label {
    top: 51%;
    transform: translateY(-50%);
  }
}

.quimatic-builder-component--solucoes .sector-card:focus-visible {
    outline: 2px solid #ff4e00;
    outline-offset: 3px;
}

.quimatic-builder-component--solucoes .industrial-sectors__button {
    width: 303.333px;
    min-height: 42px;
    padding: 8px 20px;
    border: 1px solid #ff4e00;
    background: #ff4e00;
    color: #ffffff;
    text-align: center;
    font-family: "Myriad Pro", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color 260ms ease, border-color 260ms ease, color 260ms ease;
}

.quimatic-builder-component--solucoes .industrial-sectors__button:focus-visible {
    border-color: #ff4e00;
    background-color: #ffffff;
    color: #ff4e00;
    outline: none;
}

@media (hover: hover) {
  .quimatic-builder-component--solucoes .industrial-sectors__button:hover {
    border-color: #ff4e00;
    background-color: #ffffff;
    color: #ff4e00;
    outline: none;
  }
}

@media (max-width: 1360px) {
    .quimatic-builder-component--solucoes .industrial-sectors {
        padding: 80px 24px;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__cards {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .quimatic-builder-component--solucoes .sector-card {
        flex: 0 0 212px;
    }
}

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

    .quimatic-builder-component--solucoes .industrial-sectors {
        gap: 28px;
        padding: 56px 16px;
        background-color: #ffffff;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__heading {
        padding-top: 2.795px;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__title {
        margin: 0;
        text-align: left;
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: -0.4px;
        white-space: normal;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__cards {
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        height: 406px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .quimatic-builder-component--solucoes .sector-card {
        flex: 0 0 260px;
        width: 260px;
        max-width: 260px;
        height: 400px;
        scroll-snap-align: start;
    }

    .quimatic-builder-component--solucoes .sector-card__label {
        top: 354px;
        font-size: 20px;
        line-height: 28px;
    }

    .quimatic-builder-component--solucoes .sector-card__icon {
        display: none;
    }

    .quimatic-builder-component--solucoes .industrial-sectors__button {
        width: 100%;
        max-width: 360px;
        min-height: 42px;
        padding: 8px 21px;
    }
}

/* styles/componentes/texto-e-cards.css */
.quimatic-builder-component--text-cards {
    border: 0;
    background: #f2f2f2;
    margin-inline: -20px;
}

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

.quimatic-text-cards {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 80px;
    width: 100%;
    max-width: 1312px;
    margin: 0 auto;
}

.quimatic-text-cards__content {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

.quimatic-text-cards__title {
    width: 100%;
    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-text-cards__title > :first-child,
.quimatic-text-cards__text > :first-child {
    margin-top: 0;
}

.quimatic-text-cards__title > :last-child,
.quimatic-text-cards__text > :last-child {
    margin-bottom: 0;
}

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

.quimatic-text-cards__text {
    width: 100%;
    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-text-cards__text strong,
.quimatic-text-cards__text b {
    font-weight: 600;
}

.quimatic-text-cards__cards-area {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.quimatic-text-cards__cards-title {
    width: 100%;
    margin: 0;
    color: var(--quimatic, #ff4e00);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.24px;
}

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

.quimatic-text-cards__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-width: 0;
    min-height: 186px;
    padding: 24px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
}

.quimatic-text-cards__icon {
    display: block;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    overflow: hidden;
}

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

.quimatic-text-cards__card-content {
    width: 100%;
    min-width: 0;
    color: var(--quimatic-text, #0a0203);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}

.quimatic-text-cards__card-title {
    width: 100%;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: inherit;
}

.quimatic-text-cards__card-text {
    width: 100%;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    letter-spacing: inherit;
}

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

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

.quimatic-text-cards__card-text p {
    margin: 0;
}

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

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

    .quimatic-text-cards {
        flex-direction: column;
        gap: 32px;
    }

    .quimatic-text-cards__content,
    .quimatic-text-cards__cards-area,
    .quimatic-text-cards__cards {
        width: 100%;
    }
}

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

    .quimatic-builder-component--text-cards .quimatic-builder-component__inner {
        padding: 56px 16px;
    }

    .quimatic-text-cards {
        gap: 28px;
    }

    .quimatic-text-cards__content {
        gap: 28px;
    }

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

    .quimatic-text-cards__text {
        font-size: 16px;
        line-height: 1.625;
        letter-spacing: 0;
    }

    .quimatic-text-cards__cards-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .quimatic-text-cards__cards-area {
        gap: 16px;
    }

    .quimatic-text-cards__cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 8.909px;
    }

    .quimatic-text-cards__card {
        gap: 11.136px;
        min-height: 0;
        padding: 13.364px;
        border-width: 0.557px;
    }

    .quimatic-text-cards__icon {
        width: 35.637px;
        height: 35.637px;
    }

    .quimatic-text-cards__icon-image,
    .quimatic-text-cards__default-icon {
        width: 35.637px;
        height: 35.637px;
    }

    .quimatic-text-cards__card-content {
        font-size: 13.364px;
    }
}

/* styles/componentes/texto-imagem-cta.css */
.quimatic-builder-component--texto-imagem-cta {
    border: 0;
    overflow: hidden;
    background: #ffffff;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta {
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 0px;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    width: 100vw;
    background: #ffffff;
    transform: translateX(-50%);
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__layout {
    display: flex;
    align-items: center;
    gap: 104px;
    width: calc(100% - max((100% - var(--quimatic-container-width, 1312px)) / 2, var(--quimatic-container-gutter, 64px)));
    margin-right: 0;
    margin-left: max((100% - var(--quimatic-container-width, 1312px)) / 2, var(--quimatic-container-gutter, 64px));
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__content {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    gap: 32px;
    max-width: 607.73px;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__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--texto-imagem-cta .text-image-cta__description {
    margin: 0;
    color: #606060;
    font-family: "Myriad Pro", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 215.933px;
    min-height: 38px;
    padding: 2px 14px 0;
    border: 1px solid #ff4e00;
    color: inherit;
    font-family: "Myriad Pro", sans-serif;
    font-size: 14.58px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__button--primary {
    background: #ff4e00;
    color: #ffffff;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__button--secondary {
    background: #ffffff;
    color: #ff4e00;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__button--primary:focus-visible {
    background: #ffffff;
    color: #ff4e00;
}

@media (hover: hover) {
  .quimatic-builder-component--texto-imagem-cta .text-image-cta__button--primary:hover {
    background: #ffffff;
    color: #ff4e00;
  }
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__button--secondary:focus-visible {
    background: #ff4e00;
    color: #ffffff;
}

@media (hover: hover) {
  .quimatic-builder-component--texto-imagem-cta .text-image-cta__button--secondary:hover {
    background: #ff4e00;
    color: #ffffff;
  }
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__media {
    flex: 1 1 0;
    min-width: 0;
    height: 394px;
}

.quimatic-builder-component--texto-imagem-cta .text-image-cta__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%, 0 73%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 19% 100%, 0 73%);
}

@media (max-width: 1360px) {
    .quimatic-builder-component--texto-imagem-cta .text-image-cta {
        padding: 80px 24px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__layout {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__content {
        max-width: 100%;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__title {
        font-size: 32px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__actions {
        flex-wrap: wrap;
        gap: 16px;
        width: 100%;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__button {
        width: calc((100% - 16px) / 2);
        min-width: 220px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__media {
        width: 100%;
        height: 360px;
    }
}

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

    .quimatic-builder-component--texto-imagem-cta .text-image-cta {
        padding: 32px 16px;
        background: #ffffff;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta::before {
        left: 0;
        width: 100%;
        transform: none;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__layout {
        gap: 24px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__content {
        gap: 20px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__text {
        gap: 12px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__title {
        font-size: 28px;
        line-height: 33.6px;
        letter-spacing: -0.4px;
        text-transform: uppercase;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__description {
        font-size: 16px;
        line-height: 24px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__button {
        width: 100%;
        min-width: 0;
        min-height: 38px;
        padding: 7px 1px 8px;
        line-height: 21.87px;
        white-space: nowrap;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__media {
        width: 100%;
        height: auto;
        aspect-ratio: 343 / 212.42;
    }

    .quimatic-builder-component--texto-imagem-cta .text-image-cta__image {
        -webkit-clip-path: none;
        clip-path: none;
    }
}

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

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

.quimatic-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.quimatic-timeline__heading {
    position: sticky;
    top: 0;
    flex: 1 1 0;
    min-width: 0;
    max-width: 768px;
    padding-right: 32px;
    padding-top: 120px;
    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-timeline__heading > :first-child {
    margin-top: 0;
}

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

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

.quimatic-timeline__list {
    display: flex;
    flex-direction: column;
    flex: 0 1 auto;
    min-width: 0;
    padding-top: 152px;
    gap: 16px;
}

.quimatic-timeline__event {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 15px minmax(260px, 420px);
    gap: 16px;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.quimatic-timeline__event--reverse .quimatic-timeline__media {
    grid-column: 3;
}

.quimatic-timeline__event--reverse .quimatic-timeline__content {
    grid-column: 1;
    grid-row: 1;
}

.quimatic-timeline__event--reverse .quimatic-timeline__marker {
    grid-column: 2;
    grid-row: 1;
}

.quimatic-timeline__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f2f2f2;
}

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

.quimatic-timeline__marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    top: 8px;
    position: relative;
}

.quimatic-timeline__dot {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: var(--quimatic-orange);
}

.quimatic-timeline__line {
    flex: 1 1 auto;
    width: 3px;
    margin-top: 8px;
    background: #7f7f7f;
}

.quimatic-timeline__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.quimatic-timeline__event-title {
    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-timeline__event-text {
    color: var(--quimatic-text);
    font-family: "Myriad Pro", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

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

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

@media (max-width: 1399px) {
    .quimatic-timeline__heading {
        max-width: 34%;
    }

    .quimatic-timeline__event {
        grid-template-columns: minmax(220px, 1fr) 15px minmax(220px, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .quimatic-timeline__list {
        padding-top: 300px;
    }
}

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

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

    .quimatic-timeline {
        flex-direction: column;
        gap: 32px;
    }

    .quimatic-timeline__heading {
        position: static;
        max-width: 100%;
        padding-right: 0;
        padding-top: 0;
        font-size: 36px;
    }

    .quimatic-timeline__list {
        width: 100%;
        padding-top: 0;
    }

    .quimatic-timeline__event {
        grid-template-columns: 15px minmax(0, 1fr);
        gap: 0 16px;
        align-items: start;
    }

    .quimatic-timeline__event + .quimatic-timeline__event {
        margin-top: 24px;
    }

    .quimatic-timeline__event--reverse .quimatic-timeline__media,
    .quimatic-timeline__media {
        grid-column: 2;
        grid-row: 1;
    }

    .quimatic-timeline__event--reverse .quimatic-timeline__content,
    .quimatic-timeline__content {
        grid-column: 2;
        grid-row: 2;
        margin-top: 16px;
    }

    .quimatic-timeline__event--reverse .quimatic-timeline__marker,
    .quimatic-timeline__marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        min-height: 100%;
    }
}

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

    .quimatic-builder-component--timeline .quimatic-builder-component__inner {
        padding: 48px 16px 0;
    }

    .quimatic-timeline {
        gap: 28px;
    }

    .quimatic-timeline__heading {
        padding-top: 3px;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.4px;
    }

    .quimatic-timeline__list {
        gap: 0;
    }

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

    .quimatic-timeline__event + .quimatic-timeline__event {
        margin-top: 0;
    }

    .quimatic-timeline__media {
        aspect-ratio: 16 / 9;
    }

    .quimatic-timeline__event--reverse .quimatic-timeline__content,
    .quimatic-timeline__content {
        gap: 4px;
        margin-top: 4px;
        padding-bottom: 32px;
    }

    .quimatic-timeline__event-title {
        font-size: 32px;
        line-height: 1.3;
        letter-spacing: -0.32px;
    }

    .quimatic-timeline__event-text {
        font-size: 16px;
        line-height: 1.5;
    }
}

