/*
  IW8 Hub de Produtos

  Este arquivo contém somente os estilos específicos da página produtos.php.
  O header e os demais componentes globais continuam em home.css.
*/

.site-products-v3 {
  --products-hero-min-h: var(--hero-h);
  --products-finder-bg: rgba(58, 64, 61, .48);
  --products-finder-border: var(--header-sticky-border, rgba(255, 255, 255, .16));
  --products-finder-text: #262b29;
  --products-panel-max-h: 420px;
  overflow: visible;
}

.products-hero-shell {
  position: relative;
  width: 100%;
  height: var(--products-hero-min-h);
  min-height: 620px;
  max-height: 1080px;
  overflow: visible;
  background-image:
    linear-gradient(90deg, rgba(12, 15, 14, .72) 0%, rgba(12, 15, 14, .5) 48%, rgba(12, 15, 14, .12) 100%),
    url("../img/banner-hero-home.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.products-hero {
  position: absolute;
  left: var(--content-left);
  top: var(--hero-content-top);
  z-index: 5;
  width: var(--content-w);
  color: var(--white);
}

.products-hero__content {
  width: var(--hero-content-w);
}

.products-hero__content h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: min(52px, 4.1666667vw);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .58), 0 2px 6px rgba(0, 0, 0, .42);
}

.products-hero__content p {
  width: var(--hero-text-w);
  min-height: min(38px, 1.9791667vw);
  margin: min(26px, 1.3541667vw) 0 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: min(16px, .8333333vw);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .56), 0 1px 4px rgba(0, 0, 0, .44);
}

.products-finder {
  position: relative;
  width: 100%;
  margin-top: min(72px, 3.75vw);
}

.products-finder__main {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) minmax(270px, .9fr) 210px;
  align-items: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--products-finder-border);
  border-radius: 12px;
  background: var(--products-finder-bg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.products-finder__search,
.products-finder__categories {
  min-width: 0;
}

.products-finder__label {
  display: block;
  margin: 0 0 7px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.products-finder__input-wrap,
.products-finder__categories-toggle {
  width: 100%;
  height: 58px;
  border: 1px solid #d9dddb;
  border-radius: 8px;
  background: #fff;
  color: var(--products-finder-text);
}

.products-finder__input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.products-finder__input-wrap svg,
.products-finder__category-search svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #6a716e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-finder__input-wrap input,
.products-finder__category-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--products-finder-text);
  font: 600 16px/1.2 var(--font-main);
}

.products-finder__input-wrap input::placeholder,
.products-finder__category-search input::placeholder {
  color: #838986;
  opacity: 1;
}

.products-finder__categories {
  position: relative;
}

.products-finder__categories-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.products-finder__categories-arrow {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 2px solid #656b68;
  border-bottom: 2px solid #656b68;
  transform: translateY(3px) rotate(225deg);
  transition: transform .18s ease;
}

.products-finder__categories-toggle[aria-expanded="true"] .products-finder__categories-arrow {
  transform: translateY(-2px) rotate(45deg);
}

.products-finder__submit {
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background .18s ease, transform .18s ease;
}

.products-finder__submit:hover,
.products-finder__submit:focus-visible,
.products-finder__apply:hover,
.products-finder__apply:focus-visible {
  background: var(--orange-hover);
}

.products-finder__submit:active,
.products-finder__apply:active {
  transform: translateY(1px);
}

.products-finder__input-wrap:focus-within,
.products-finder__categories-toggle:focus-visible,
.products-finder__category-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 92, 0, .14);
  outline: 0;
}

.products-finder__panel {
  position: absolute;
  right: 0;
  top: auto;
  bottom: calc(100% + 10px);
  z-index: 1100;
  width: min(680px, calc(100vw - 48px));
  max-height: min(420px, var(--products-panel-max-h));
  display: grid;
  grid-template-rows: auto auto auto minmax(40px, 1fr) auto;
  overflow: hidden;
  border: 1px solid #e0e3e1;
  border-radius: 12px;
  background: #fff;
  color: var(--products-finder-text);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.products-finder__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.products-finder__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px 14px;
}

.products-finder__panel-header strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.products-finder__panel-header [data-selected-count] {
  display: block;
  margin-top: 4px;
  color: #737976;
  font-size: 13px;
  font-weight: 600;
}

.products-finder__panel-close {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f0f2f1;
  color: #353a38;
  cursor: pointer;
  font: 400 28px/1 var(--font-main);
}

.products-finder__category-search {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 22px 14px;
  padding: 0 14px;
  border: 1px solid #dfe2e0;
  border-radius: 8px;
  background: #fafafa;
}

.products-finder__category-search input {
  font-size: 14px;
}

.products-finder__select-all,
.products-finder__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.products-finder__select-all {
  margin: 0 22px;
  padding: 0 0 14px;
  border-bottom: 1px solid #eceeed;
  font-size: 14px;
  font-weight: 800;
}

.products-finder__select-all input,
.products-finder__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.products-finder__checkbox {
  position: relative;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  border: 1.5px solid #aeb4b1;
  border-radius: 4px;
  background: #fff;
}

.products-finder__select-all input:checked + .products-finder__checkbox,
.products-finder__option input:checked + .products-finder__checkbox {
  border-color: var(--orange);
  background: var(--orange);
}

.products-finder__select-all input:checked + .products-finder__checkbox::after,
.products-finder__option input:checked + .products-finder__checkbox::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.products-finder__select-all input:focus-visible + .products-finder__checkbox,
.products-finder__option input:focus-visible + .products-finder__checkbox {
  outline: 3px solid rgba(247, 92, 0, .22);
  outline-offset: 2px;
}

.products-finder__category-list {
  overflow-y: auto;
  padding: 16px 22px 20px;
  scrollbar-color: var(--orange) #eceeed;
  scrollbar-width: thin;
}

.products-finder__segment + .products-finder__segment {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #eceeed;
}

.products-finder__segment h2 {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.products-finder__group + .products-finder__group {
  margin-top: 17px;
}

.products-finder__group h3 {
  margin: 0 0 11px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(247, 92, 0, .3);
  color: #3d423f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.products-finder__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.products-finder__option {
  color: #565c59;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.products-finder__option:hover {
  color: var(--orange);
}

.products-finder__empty {
  margin: 0;
  padding: 30px 10px;
  color: #6f7572;
  font-size: 14px;
  text-align: center;
}

.products-finder__panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 22px;
  border-top: 1px solid #eceeed;
  background: #fafafa;
}

.products-finder__clear,
.products-finder__apply {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.products-finder__clear {
  border: 1px solid #d8dcda;
  background: #fff;
  color: #4c524f;
}

.products-finder__apply {
  border: 0;
  background: var(--orange);
  color: #fff;
}

.products-hub-content {
  min-height: 180px;
  background: var(--page-bg);
}

.products-featured-section {
  position: relative;
  width: 100%;
  padding: 64px 0 72px;
  overflow: hidden;
  background: var(--page-bg);
}

.products-featured-section__inner {
  width: var(--content-w);
  margin: 0 auto;
}

.products-featured-section__header {
  margin-bottom: 18px;
}

.products-section-title {
  margin: 0;
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.products-featured-section__header .products-section-title {
  max-width: 780px;
}

.products-carousel__controls {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.products-carousel__button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #020405;
  color: var(--white);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.products-carousel__button span {
  position: relative;
  width: 30px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 0;
}

.products-carousel__button span::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.products-carousel__button span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border-color: currentColor;
  border-style: solid;
}

.products-carousel__button--prev span::before {
  left: 2px;
}

.products-carousel__button--prev span::after {
  left: 1px;
  border-width: 0 0 4px 4px;
  transform: translateY(-50%) rotate(45deg);
}

.products-carousel__button--next span::before {
  right: 2px;
}

.products-carousel__button--next span::after {
  right: 1px;
  border-width: 4px 4px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.products-carousel__button:hover,
.products-carousel__button:focus-visible {
  background: var(--orange);
  color: #020405;
  outline: 0;
}

.products-carousel {
  width: 100%;
  overflow: hidden;
}

.products-carousel__track {
  display: flex;
  gap: var(--products-gap);
  padding-bottom: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.products-carousel__track::-webkit-scrollbar {
  display: none;
}

.products-product-card {
  flex: 0 0 calc((100% - (var(--products-gap) * 3) - var(--products-peek)) / 3);
  overflow: hidden;
  border-radius: 10px;
  background: #676868;
  scroll-snap-align: start;
}

.products-carousel__track .products-product-card:nth-child(even) {
  background: #020405;
}

.products-product-card__media {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border: 0;
  border-top: 5px solid #676868;
  border-radius: 10px;
  background: var(--white);
}

.products-carousel__track .products-product-card:nth-child(even) .products-product-card__media {
  border-top-color: #020405;
}

.products-product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.products-product-card__body {
  min-height: 128px;
  padding: 28px 26px 22px;
}

.products-product-card__body h3 {
  min-height: 46px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.products-product-card__button {
  min-width: 148px;
  height: 56px;
  margin-top: 16px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}

.products-product-card__button:hover,
.products-product-card__button:focus-visible {
  background: var(--orange-hover);
  color: var(--white);
  outline: 0;
}

.products-directory-section {
  position: relative;
  width: 100%;
  padding: 72px 0 84px;
  background: var(--white);
}

.products-directory-section__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.products-directory-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 34px;
  row-gap: 0;
  align-items: start;
}

.products-directory-menu__column {
  display: grid;
  min-width: 0;
  gap: 0;
  align-content: start;
}

.products-directory-menu__column > .products-directory-segment + .products-directory-segment {
  margin-top: 22px;
}

.products-directory-segment {
  min-width: 0;
}

.products-directory-segment__title {
  margin: 0 0 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--orange);
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.products-directory-group + .products-directory-group {
  margin-top: 14px;
}

.products-directory-group {
  min-width: 0;
}

.products-directory-group__title {
  margin: 0 0 6px;
  color: var(--orange);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.products-directory-group__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.products-directory-group__links li + li {
  margin-top: 2px;
}

.products-directory-group__links a {
  display: block;
  min-height: 0;
  padding: 5px 0;
  border-radius: 0;
  color: #2f3432;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: color .18s ease;
}

.products-directory-group__links a:hover,
.products-directory-group__links a:focus-visible {
  color: var(--orange);
  outline: 0;
}

.products-expertise-section {
  position: relative;
  width: 100%;
  padding: 72px 0 84px;
  background: var(--page-bg);
}

.products-expertise-section__inner {
  width: var(--content-w);
  margin: 0 auto;
}

.products-expertise-section__content {
  max-width: 1040px;
}

.products-expertise-section__text {
  max-width: 980px;
  margin-top: 30px;
}

.products-expertise-section__text p {
  margin: 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
}

.products-expertise-section__text p + p {
  margin-top: 20px;
}

.products-contact-section {
  position: relative;
  width: 100%;
  padding: 0 0 84px;
  background: var(--page-bg);
}

.products-contact-section__inner {
  width: var(--content-w);
  margin: 0 auto;
}

.products-contact-card {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  padding: 50px 56px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 12%, rgba(247, 92, 0, .18), transparent 34%),
    linear-gradient(135deg, #1f2422 0%, #303633 100%);
  box-shadow: 0 20px 46px rgba(18, 22, 20, .14);
}

.products-contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--orange);
}

.products-contact-card__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.products-contact-card .products-section-title {
  max-width: 790px;
  color: var(--white);
}

.products-contact-card__content p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -.01em;
}

.products-contact-card__action {
  position: relative;
  z-index: 1;
}

.products-contact-card__button {
  min-width: 286px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border-radius: 10px;
  background: var(--whatsapp);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}

.products-contact-card__button:hover,
.products-contact-card__button:focus-visible {
  background: var(--whatsapp-hover);
  color: var(--white);
  outline: 0;
  transform: translateY(-2px);
}

.products-contact-card__button img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1259px) {
  .site-products-v3 {
    --products-hero-min-h: 800px;
  }

  .products-finder {
    margin-top: 56px;
  }

  .products-hero {
    top: var(--hero-content-top);
  }

  .products-hero__content {
    width: var(--hero-content-w);
  }

  .products-hero__content h1 {
    font-size: min(52px, 4.1666667vw);
  }

  .products-hero__content p {
    width: var(--hero-text-w);
    font-size: min(16px, .8333333vw);
  }

  .products-finder__main {
    grid-template-columns: minmax(280px, 1.2fr) minmax(250px, .85fr) 190px;
  }

  .products-finder__panel-header {
    padding: 14px 18px 10px;
  }

  .products-finder__panel-header strong {
    font-size: 16px;
  }

  .products-finder__panel-close {
    width: 34px;
    height: 34px;
  }

  .products-finder__category-search {
    height: 42px;
    margin: 0 18px 10px;
  }

  .products-finder__select-all {
    margin: 0 18px;
    padding-bottom: 10px;
  }

  .products-finder__category-list {
    padding: 12px 18px 14px;
  }

  .products-finder__panel-actions {
    padding: 10px 18px;
  }

  .products-finder__clear,
  .products-finder__apply {
    min-height: 40px;
  }

  .products-directory-section {
    padding: 64px 0 76px;
  }

  .products-expertise-section {
    padding: 64px 0 76px;
  }

  .products-contact-section {
    padding-bottom: 76px;
  }

  .products-contact-card {
    gap: 42px;
    padding: 44px 46px;
  }

  .products-contact-card__button {
    min-width: 260px;
  }
}

@media (max-width: 1024px) {
  .site-products-v3 {
    --products-hero-min-h: 790px;
  }

  .products-hero-shell {
    min-height: 790px;
  }

  .products-hero {
    left: 24px;
    top: 260px;
    width: calc(100% - 48px);
  }

  .products-hero__content {
    width: min(760px, calc(100vw - 48px));
  }

  .products-hero__content h1 {
    font-size: 45px;
  }

  .products-hero__content p {
    width: min(620px, calc(100vw - 48px));
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.2;
  }

  .products-finder {
    margin-top: 44px;
  }

  .products-finder__main {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .8fr);
  }

  .products-finder__submit {
    grid-column: 1 / -1;
  }

  .products-featured-section {
    padding: 44px 24px 64px;
  }

  .products-section-title {
    font-size: 34px;
  }

  .products-product-card {
    flex-basis: calc((100% - (var(--products-gap) * 2) - var(--products-peek)) / 2);
  }

  .products-product-card__media {
    height: 220px;
  }

  .products-product-card__body {
    min-height: 122px;
    padding: 24px 22px 20px;
  }

  .products-product-card__body h3 {
    font-size: 21px;
  }

  .products-directory-section {
    padding: 60px 24px 76px;
  }

  .products-directory-section__inner {
    width: 100%;
  }

  .products-directory-menu {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-directory-menu__column {
    gap: 0;
  }

  .products-directory-menu__column > .products-directory-segment + .products-directory-segment {
    margin-top: 20px;
  }

  .products-directory-segment__title {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .products-directory-group + .products-directory-group {
    margin-top: 12px;
  }

  .products-directory-group__title {
    font-size: 13px;
  }

  .products-directory-group__links a {
    min-height: 32px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 14px;
  }

  .products-directory-group__links a:hover,
  .products-directory-group__links a:focus-visible {
    background: #f4f5f4;
  }

  .products-expertise-section {
    padding: 60px 24px 72px;
  }

  .products-expertise-section__inner {
    width: 100%;
  }

  .products-contact-section {
    padding: 0 24px 72px;
  }

  .products-contact-section__inner {
    width: 100%;
  }

  .products-contact-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 38px;
  }

  .products-contact-card__content,
  .products-contact-card .products-section-title,
  .products-contact-card__content p {
    max-width: none;
  }

  .products-contact-card__button {
    min-width: 0;
    width: min(100%, 310px);
  }
}

@media (max-width: 640px) {
  .site-products-v3 {
    --products-hero-min-h: 820px;
  }

  .products-hero-shell {
    min-height: 820px;
    background-image:
      linear-gradient(180deg, rgba(12, 15, 14, .44) 0%, rgba(12, 15, 14, .72) 58%, rgba(12, 15, 14, .86) 100%),
      url("../img/banner-hero-home-mobile.webp");
    background-position: center top;
  }

  .products-hero {
    left: 16px;
    top: 225px;
    width: calc(100% - 32px);
  }

  .products-hero__content,
  .products-hero__content p {
    width: 100%;
  }

  .products-hero__content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .products-hero__content p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.2;
  }

  .products-finder {
    margin-top: 36px;
  }

  .products-finder__main {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px;
  }

  .products-finder__submit {
    grid-column: auto;
  }

  .products-finder__input-wrap,
  .products-finder__categories-toggle,
  .products-finder__submit {
    height: 54px;
  }

  .products-finder__panel {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-height: min(86dvh, 760px);
    border-radius: 18px 18px 0 0;
    transform: translateY(24px);
  }

  .products-finder__panel.is-open {
    transform: translateY(0);
  }

  .products-finder__options {
    grid-template-columns: 1fr;
  }

  .products-finder__panel-header {
    padding: 18px 16px 12px;
  }

  .products-finder__category-search {
    margin: 0 16px 12px;
  }

  .products-finder__select-all {
    margin: 0 16px;
  }

  .products-finder__category-list {
    padding: 15px 16px 18px;
  }

  .products-finder__panel-actions {
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  }

  .products-finder__clear,
  .products-finder__apply {
    flex: 1 1 auto;
    padding: 0 12px;
  }

  body.products-filter-open {
    overflow: hidden;
  }

  .products-featured-section {
    padding: 40px 16px 56px;
  }

  .products-section-title {
    font-size: 28px;
  }

  .products-carousel__controls {
    margin-top: 24px;
  }

  .products-product-card {
    flex-basis: calc(100% - var(--products-gap) - var(--products-peek));
  }

  .products-product-card__media {
    height: 190px;
  }

  .products-product-card__body {
    min-height: 116px;
    padding: 22px 18px 18px;
  }

  .products-product-card__body h3 {
    font-size: 19px;
  }

  .products-product-card__button {
    height: 56px;
    font-size: 13px;
  }

  .products-directory-section {
    padding: 48px 16px 64px;
  }

  .products-directory-menu {
    gap: 16px;
  }

  .products-directory-menu__column > .products-directory-segment + .products-directory-segment {
    margin-top: 18px;
  }

  .products-directory-segment__title {
    font-size: 15px;
  }

  .products-directory-group__title,
  .products-directory-group__links a {
    font-size: 13px;
  }

  .products-expertise-section {
    padding: 52px 16px 60px;
  }

  .products-expertise-section__text {
    margin-top: 24px;
  }

  .products-expertise-section__text p {
    font-size: 15px;
    line-height: 1.5;
  }

  .products-expertise-section__text p + p {
    margin-top: 18px;
  }

  .products-contact-section {
    padding: 0 16px 60px;
  }

  .products-contact-card {
    gap: 28px;
    padding: 36px 24px 30px;
  }

  .products-contact-card::before {
    right: 0;
    bottom: auto;
    width: auto;
    height: 6px;
  }

  .products-contact-card__content p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .products-contact-card__button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products-finder__panel,
  .products-finder__categories-arrow,
  .products-finder__submit,
  .products-finder__apply,
  .products-carousel__button,
  .products-product-card__button,
  .products-directory-group__links a,
  .products-contact-card__button {
    transition: none;
  }
}
