/*
  IW8 Home V3 - Topo + Hero
  Estrutura baseada em um wrapper unico de primeira dobra.
  A imagem do hero fica no background de .home-hero-shell.
  Header, menu, CTA e conteudo do hero ficam sobre a imagem.
*/

:root {
  --page-bg: #f4f4f4;
  --orange: #f75c00;
  --orange-hover: #d94d00;
  --white: #ffffff;
  --black: #000000;
  --font-main: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  --font-menu: "Inter", "Segoe UI", Arial, sans-serif;

  /* Hero */
  --hero-h: min(1080px, 56.25vw);

  /* Topo */
  --topbar-top: 40px;
  --topbar-h: 60px;

  --logo-w: 79px;
  --logo-h: 50px;

  --menu-w: 570px;
  --menu-h: 60px;

  --store-w: 155px;
  --store-h: 60px;

  /* Espacos e ferramentas do topo */
  --header-gap-logo: 136px;
  --actions-w: 136px;
  --header-gap-actions-store: 32px;

  /* Largura real do conjunto: logo + gap + menu + ferramentas + gap + CTA */
  --topbar-w: calc(
    var(--logo-w) +
    var(--header-gap-logo) +
    var(--menu-w) +
    var(--actions-w) +
    var(--header-gap-actions-store) +
    var(--store-w)
  );

  --topbar-left: calc((100vw - var(--topbar-w)) / 2);

  /* Regua geral das sections: alinha com o conjunto logo + menu + ferramentas + CTA */
  --content-left: var(--topbar-left);
  --content-w: var(--topbar-w);
  --products-gap: 24px;
  --products-peek: 72px;
  --radius-main: 10px;
  --sticky-topbar-top: 10px;
  --header-sticky-bg: rgba(58, 64, 61, .76);
  --header-sticky-border: rgba(255, 255, 255, .16);

  /* Conteudo do hero */
  --hero-content-left: var(--content-left);
  --hero-content-top: min(386px, 20.1041667vw);
  --hero-content-w: min(900px, 46.875vw);
  --hero-text-w: min(748px, 38.9583333vw);
  --hero-cta-w: min(396px, 20.625vw);
  --hero-cta-h: min(76px, 3.9583333vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  background: var(--page-bg);
  font-family: var(--font-main);
}

html {
  scrollbar-color: var(--orange) #1f2322;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1f2322;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #1f2322;
  border-radius: 999px;
  background: var(--orange);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-hover);
}

img {
  display: block;
  max-width: 100%;
}

.site-home-v3 {
  width: 100%;
  overflow-x: hidden;
}

.home-hero-shell {
  position: relative;
  width: 100%;
  height: var(--hero-h);
  min-height: 620px;
  max-height: 1080px;
  overflow: hidden;
  background-image: url("../img/banner-hero.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.site-header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: calc(var(--topbar-top) + var(--topbar-h));
  pointer-events: none;
  transition: height .22s ease, background .22s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid var(--header-sticky-border);
  background: var(--header-sticky-bg);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity .22s ease;
}

.site-header.is-sticky {
  position: fixed;
  height: calc(var(--topbar-h) + (var(--sticky-topbar-top) * 2));
}

.site-header.is-sticky::before {
  opacity: 1;
}

.site-header__bar {
  position: absolute;
  left: var(--content-left);
  top: var(--topbar-top);
  width: var(--content-w);
  height: var(--topbar-h);
  display: grid;
  grid-template-columns: var(--logo-w) var(--header-gap-logo) var(--menu-w) var(--actions-w) var(--header-gap-actions-store) var(--store-w);
  align-items: center;
  pointer-events: auto;
  transition: top .22s ease;
}

.site-header.is-sticky .site-header__bar {
  top: var(--sticky-topbar-top);
}

.site-header__logo {
  grid-column: 1;
  width: var(--logo-w);
  height: var(--logo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
}

.site-header__logo:link,
.site-header__logo:visited,
.site-header__logo:hover,
.site-header__logo:focus {
  text-decoration: none;
}

.site-header__logo img {
  width: var(--logo-w);
  height: var(--logo-h);
  object-fit: contain;
}

.site-nav {
  grid-column: 3;
  position: relative;
  width: var(--menu-w);
  height: var(--menu-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border-radius: var(--radius-main);
  background: var(--white);
  white-space: nowrap;
}

.site-nav__item {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.site-nav__link,
.site-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #000000;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  font-family: var(--font-menu);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color .18s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__button:hover,
.site-nav__button:focus-visible {
  color: var(--orange);
  outline: 0;
}

.site-nav__arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(1px);
  transition: transform .18s ease;
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% - min(8px, 0.4166667vw));
  left: 50%;
  min-width: 220px;
  padding: min(10px, 0.5208333vw);
  border-bottom: 5px solid var(--orange);
  border-radius: var(--radius-main);
  background: var(--white);
  box-shadow: 0 min(16px, 0.8333333vw) min(28px, 1.4583333vw) rgba(0, 0, 0, .14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, min(8px, 0.4166667vw));
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-nav__dropdown a {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border-radius: min(4px, 0.2083333vw);
  color: #000000;
  text-align: left;
  text-decoration: none;
  font-family: var(--font-menu);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus-visible {
  background: #f4f4f4;
  color: var(--orange);
  outline: 0;
}

.site-nav__item.is-submenu-open > .site-nav__button .site-nav__arrow {
  transform: translateY(1px) rotate(180deg);
}

.site-nav__item.is-submenu-open > .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


/* Dropdown Produtos: mega menu por segmento, agrupamento e categoria */
.site-nav__item--products {
  position: static;
}

.site-nav__dropdown--products {
  position: fixed;
  left: 50%;
  top: calc(var(--topbar-top) + var(--topbar-h));
  width: min(1080px, calc(100vw - 48px));
  --products-dropdown-max-h: min(620px, calc(100dvh - var(--topbar-top) - var(--topbar-h) - 24px));
  max-height: var(--products-dropdown-max-h);
  padding: 22px 18px 24px 26px;
  overflow: hidden;
  border-bottom-width: 5px;
  transform: translate(-50%, 6px);
  box-shadow: 0 min(16px, 0.8333333vw) min(28px, 1.4583333vw) rgba(0, 0, 0, .14);
}

.site-nav__dropdown-scroll {
  max-height: calc(var(--products-dropdown-max-h) - 46px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 14px 18px 0;
  scrollbar-gutter: stable;
  scrollbar-color: var(--orange) var(--white);
}

.site-nav__dropdown-scroll::-webkit-scrollbar-track {
  background: var(--white);
}

.site-nav__dropdown-scroll::-webkit-scrollbar-corner {
  background: var(--white);
}

.site-nav__dropdown-scroll::-webkit-scrollbar-thumb {
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--orange);
}

.site-nav__dropdown-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--orange-hover);
}



.site-header.is-sticky .site-nav__dropdown--products {
  top: calc(var(--sticky-topbar-top) + var(--topbar-h));
  --products-dropdown-max-h: min(620px, calc(100dvh - var(--sticky-topbar-top) - var(--topbar-h) - 24px));
  max-height: var(--products-dropdown-max-h);
}

.site-nav__item.is-submenu-open > .site-nav__dropdown--products {
  transform: translate(-50%, 0);
}

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

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

.site-nav-products-menu__column > .site-nav-products-menu__segment + .site-nav-products-menu__segment {
  margin-top:22px;
}

.site-nav-products-menu__segment {
  min-width: 0;
}

.site-nav-products-menu__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;
}

.site-nav-products-menu__group + .site-nav-products-menu__group {
  margin-top: 14px;
}

.site-nav-products-menu__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;
}

.site-nav-products-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-products-menu__list li + li {
  margin-top: 2px;
}

.site-nav__dropdown .site-nav-products-menu__link {
  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;
}

.site-nav__dropdown .site-nav-products-menu__link:hover,
.site-nav__dropdown .site-nav-products-menu__link:focus-visible {
  background: transparent;
  color: var(--orange);
}

@media (max-width: 1024px) {
  .site-nav__item--products {
    position: relative;
  }

  .site-nav__dropdown--products {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 12px;
    overflow: hidden;
    transform: none;
  }


  .site-nav__dropdown-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    scrollbar-gutter: auto;
  }

  .site-header.is-sticky .site-nav__dropdown--products {
    top: auto;
    max-height: 0;
  }

  .site-nav__item.is-submenu-open .site-nav__dropdown--products,
  .site-header.is-sticky .site-nav__item.is-submenu-open .site-nav__dropdown--products {
    max-height: min(62dvh, 560px);
    overflow-y: auto;
    margin: 4px 0 8px;
    padding: 14px 12px 14px;
    transform: none;
  }

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

  .site-nav-products-menu__column {
    display: grid;
    gap: 0;
  }

  .site-nav-products-menu__column > .site-nav-products-menu__segment + .site-nav-products-menu__segment {
    margin-top: 20px;
  }

  .site-nav-products-menu__segment-title {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .site-nav-products-menu__group + .site-nav-products-menu__group {
    margin-top: 12px;
  }

  .site-nav-products-menu__group-title {
    font-size: 12px;
  }

  .site-nav__dropdown .site-nav-products-menu__link {
    min-height: 32px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 13px;
  }

  .site-nav__dropdown .site-nav-products-menu__link:hover,
  .site-nav__dropdown .site-nav-products-menu__link:focus-visible {
    background: #ffffff;
  }
}

@media (max-width: 640px) {
  .site-nav__item.is-submenu-open .site-nav__dropdown--products,
  .site-header.is-sticky .site-nav__item.is-submenu-open .site-nav__dropdown--products {
    max-height: min(58dvh, 500px);
  }

  .site-nav-products-menu__column > .site-nav-products-menu__segment + .site-nav-products-menu__segment {
    margin-top: 18px;
  }

  .site-nav-products-menu__segment-title {
    font-size: 14px;
  }

  .site-nav-products-menu__group-title,
  .site-nav__dropdown .site-nav-products-menu__link {
    font-size: 12px;
  }
}

.site-header__actions {
  grid-column: 4;
  width: 60px;
  height: var(--topbar-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: var(--radius-main);
  background: var(--white);
  justify-self: start;
}

.site-header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header-action__button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  appearance: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.site-header-action__button--budget {
  width: 76px;
  height: 42px;
  padding: 0 11px 0 8px;
  justify-content: center;
  gap: 5px;
  overflow: visible;
  border-radius: 999px;
  background: #fff0e9;
  color: var(--orange);
}

.site-header-action__icon,
.site-budget-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.site-header-action__count,
.site-budget-toggle__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  height: 14px;
  color: var(--black);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.005em;
}

.site-header-action__button:hover,
.site-header-action__button:focus-visible,
.site-header-action.is-action-open > .site-header-action__button {
  background: var(--orange);
  color: var(--black);
  outline: 0;
}

.site-header-action__button--budget:hover,
.site-header-action__button--budget:focus-visible,
.site-header-action--budget.is-action-open > .site-header-action__button--budget {
  background: #fff0e9;
  color: var(--orange);
}

.site-header-action__button svg,
.site-search__field button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header-action__icon img,
.site-budget-toggle__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.site-header-action__icon--budget-art {
  width: 30px;
  height: 30px;
  overflow: visible;
}

.site-header-action__icon--budget-art img {
  width: 42px;
  height: 42px;
  max-width: none;
  object-fit: contain;
  /*transform: translateX(-5px);*/
  transform: translateX(-5px) scale(1.35);
}

.site-header-action__button--budget .site-header-action__count {
  min-width: 16px;
  height: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  transform: translateX(-1px);
}

.site-header-action__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 30;
  border-bottom: 5px solid var(--orange);
  border-radius: var(--radius-main);
  background: var(--white);
  box-shadow: 0 16px 28px rgba(0, 0, 0, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.site-header-action.is-action-open > .site-header-action__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header-action__panel--search {
  width: 390px;
  padding: 18px;
}

.site-header-action__panel--budget {
  width: 310px;
  padding: 18px;
}

/* Orçamento oculto temporariamente no topo */
.site-header-action--budget,
.site-budget-toggle,
.site-budget-mobile-panel {
  display: none !important;
}

.site-search {
  width: 100%;
}

.site-search__label {
  display: block;
  margin: 0 0 10px;
  color: var(--black);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.005em;
}

.site-search__field {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.site-search__field input {
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--black);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
}

.site-search__field button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--orange);
  color: var(--black);
  cursor: pointer;
}

.site-search__scopes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.site-search__scope {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  background: #ffffff;
  color: var(--black);
  padding: 0 10px;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.site-search__scope:hover,
.site-search__scope:focus-visible,
.site-search__scope.is-active {
  border-color: var(--orange);
  background: #fff4ee;
  color: var(--orange);
  outline: 0;
}

.site-budget-preview strong {
  display: block;
  color: var(--black);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: -0.005em;
}

.site-budget-preview p {
  margin: 8px 0 0;
  color: #4b4b4b;
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 500;
  line-height: 145%;
  letter-spacing: -0.005em;
}

.site-nav__mobile-tools {
  display: none;
}

.site-header__store {
  grid-column: 6;
  width: var(--store-w);
  height: var(--store-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-main);
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: min(16px, 0.8333333vw);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.site-header__store:hover,
.site-header__store:focus-visible,
.hero-content__cta:hover,
.hero-content__cta:focus-visible {
  background: var(--orange-hover);
  color: var(--black);
  outline: 0;
}

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

.hero-content h1 {
  width: var(--hero-content-w);
  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: -0.02em;
  text-transform: uppercase;
}

.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, 0.8333333vw);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-content__cta {
  width: var(--hero-cta-w);
  height: var(--hero-cta-h);
  margin-top: min(34px, 1.7708333vw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-main);
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: min(16px, 0.8333333vw);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}

.site-nav__mobile-store {
  display: none;
}

.site-nav-toggle,
.site-budget-toggle,
.site-budget-mobile-panel {
  display: none;
}

.home-next-section {
  min-height: 220px;
  background: var(--page-bg);
}

.home-stats-section {
  position: relative;
  width: 100%;
  min-height: 292px;
  padding: 116px 0 72px;
  background: var(--page-bg);
  overflow: hidden;
}

.home-stats-card {
  position: relative;
  z-index: 2;
  width: min(1306px, calc(100vw - 514px));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid var(--orange);
  border-radius: 10px;
  background: var(--white);
  transform: skewX(-18deg) translateX(36px);
}

.home-stats-card__item {
  min-height: 118px;
  display: grid;
  grid-template-rows: 68px 30px;
  row-gap: 18px;
  align-content: center;
  justify-items: center;
  text-align: center;
  transform: skewX(18deg) translateX(-14px) translateY(5px);
}

.home-stats-card__item strong {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--orange);
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  line-height: .89;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-stats-card__item span {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-stats-decor {
  position: absolute;
  top: 116px;
  z-index: 1;
  height: 150px;
  pointer-events: none;
}

.home-stats-decor--left {
  left: 0;
  width: 300px;
}

.home-stats-decor--right {
  right: 0;
  width: 250px;
}

.home-stats-decor__orange,
.home-stats-decor__black,
.home-stats-decor__gray {
  position: absolute;
  top: 0;
  height: 150px;
  transform: skewX(-18deg);
}

.home-stats-decor__orange {
  left: -70px;
  width: 260px;
  border-radius: 0 10px 10px 0;
  background: var(--orange);
}

.home-stats-decor__black {
  left: 185px;
  width: 64px;
  border-radius: 0 10px 10px 0;
  background: var(--black);
}

.home-stats-decor__gray {
  right: -75px;
  width: 250px;
  border-radius: 10px 0 0 10px;
  background: #676868;
}

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

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

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

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

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

.home-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-products-carousel__track .home-product-card:nth-child(odd) {
  background: #676868;
}

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

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

.home-products-carousel__track .home-product-card:nth-child(odd) .home-product-card__media {
  border-top-color: #676868;
}

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

.home-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: -0.02em;
  text-transform: uppercase;
}

.home-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(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: background .18s ease, color .18s ease;
}


/* Padrão comum dos CTAs: Produtos, Setores e Blog */
.home-product-card__button,
.home-sector-card__button,
.home-blog-card__button {
  height: 56px;
  font-size: 12px;
}

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

.home-about-section {
  position: relative;
  width: 100%;
  padding: 38px 0 34px;
  background: var(--page-bg);
  overflow: hidden;
}

.home-about-section__inner {
  width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: start;
  gap: 84px;
}

.home-about-section__content {
  max-width: 520px;
  padding-left: 14px;
}

.home-about-section__content h2 {
  margin: 0;
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-about-section__text {
  margin-top: 30px;
}

.home-about-section__text p {
  margin: 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-about-section__text p + p {
  margin-top: 18px;
}

.home-about-section__button {
  min-width: 240px;
  height: 60px;
  margin-top: 30px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: var(--radius-main);
  background: var(--white);
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: background .18s ease, color .18s ease;
}

.home-about-section__button:hover,
.home-about-section__button:focus-visible {
  background: var(--orange);
  color: var(--black);
  outline: 0;
}

.home-about-section__media {
  width: min(671px, 100%);
  margin: 0;
  justify-self: end;
  transform: translateX(-18px);
}

.home-about-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.home-store-section {
  position: relative;
  width: 100%;
  min-height: 790px;
  padding: 165px 0 213px;
  background: var(--page-bg);
  overflow: hidden;
}

.home-store-section__decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-store-section__decor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 76px;
  width: 993px;
  height: 590px;
  background-image: url("../img/fundo-laranja-section-store-home.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 993px 590px;
  transform: none;
}

.home-store-section__shape {
  display: none;
}

.home-store-section__inner {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100vw - 80px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.home-store-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1132 / 518;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-main);
  background-image: url("../img/compre-na-loja.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.home-store-card__content {
  width: min(680px, calc(100% - 56px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.home-store-card__content h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}

.home-store-card__content p {
  margin: 48px 0 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.home-store-card__button {
  width: min(310px, 100%);
  height: 58px;
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-main);
  background: var(--white);
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.home-store-card__button img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: filter .18s ease, transform .18s ease;
}

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

.home-store-card__button:hover img,
.home-store-card__button:focus-visible img {
  filter: brightness(0) invert(1);
}


.home-sectors-section {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: calc(100svh - 47px);
  margin-top: 0;
  padding: 128px 0 104px;
  display: flex;
  align-items: flex-start;
  background: #1f2322;
  overflow: hidden;
}

.home-sectors-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 88px;
  width: 496px;
  height: 12px;
  background: var(--orange);
  pointer-events: none;
}

.home-sectors-section__inner {
  position: relative;
  z-index: 2;
  width: var(--content-w);
  margin: 0 auto;
}

.home-sectors-section__header {
  max-width: 560px;
}

.home-sectors-section__header h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-sectors-section__header p {
  margin: 14px 0 0;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.home-sectors-section__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}

.home-sector-card {
  position: relative;
  min-height: 218px;
  padding: 66px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius-main);
  background: var(--white);
  color: var(--black);
  overflow: hidden;
}

.home-sector-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.home-sector-card p {
  position: relative;
  z-index: 2;
  max-width: 305px;
  margin: 12px 0 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.home-sector-card__button {
  position: relative;
  z-index: 2;
  width: 176px;
  height: 56px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-main);
  background: var(--orange);
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: background .18s ease, color .18s ease;
}

.home-sector-card__button:hover,
.home-sector-card__button:focus-visible {
  background: var(--orange-hover);
  color: var(--black);
  outline: 0;
}


.home-sector-card--custom {
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(247, 92, 0, .10) 0, rgba(247, 92, 0, 0) 42%),
    var(--white);
}

.home-sector-card--custom::before,
.home-sector-card--custom::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform: skewX(-18deg);
}

.home-sector-card--custom::before {
  right: -44px;
  top: -22px;
  width: 148px;
  height: 96px;
  border-radius: 0 0 0 var(--radius-main);
  background: var(--orange);
}

.home-sector-card--custom::after {
  right: -28px;
  bottom: -42px;
  width: 118px;
  height: 86px;
  border-radius: var(--radius-main) 0 0 0;
  background: #020405;
  opacity: .92;
}



.home-sector-card--custom .home-sector-card__button {
  background: #020405;
  color: var(--white);
}

.home-sector-card--custom .home-sector-card__button:hover,
.home-sector-card--custom .home-sector-card__button:focus-visible {
  background: var(--orange);
  color: var(--black);
}

@media (min-width: 1025px) {
  .site-header__logo {
    transform: translateX(-15px);
  }
}

@media (min-width: 1025px) and (max-width: 1259px) {
  .home-stats-card__item {
    grid-template-rows: 58px 26px;
    row-gap: 12px;
    transform: skewX(18deg) translateX(-14px) translateY(5px) scale(.82);
    transform-origin: center;
  }

  .home-stats-card__item strong {
    min-height: 58px;
    font-size: clamp(27px, 2.45vw, 34px);
    line-height: .9;
    white-space: nowrap;
  }

  .home-stats-card__item span {
    min-height: 26px;
    font-size: clamp(13px, 1.2vw, 17px);
    line-height: 1;
    white-space: nowrap;
  }
}

@media (min-width: 1025px) and (max-width: 1159px) {
  :root {
    --logo-w: 72px;
    --logo-h: 46px;

    --menu-w: 540px;
    --actions-w: 116px;
    --store-w: 134px;

    --header-gap-logo: 62px;
    --header-gap-actions-store: 16px;

    --topbar-w: calc(
      var(--logo-w) +
      var(--header-gap-logo) +
      var(--menu-w) +
      var(--actions-w) +
      var(--header-gap-actions-store) +
      var(--store-w)
    );

    --topbar-left: calc((100vw - var(--topbar-w)) / 2);

    --content-left: var(--topbar-left);
    --content-w: var(--topbar-w);
  }

  .site-header__logo img {
    width: var(--logo-w);
    height: var(--logo-h);
  }

  .site-nav {
    gap: 14px;
    padding: 0 18px;
  }

  .site-header__actions {
    gap: 0;
    padding: 0;
  }

  .site-header__store {
    font-size: 12px;
  }

}

@media (max-width: 1024px) {
  :root {
    --hero-h: 760px;
    --topbar-w: calc(100vw - 48px);
    --topbar-left: 24px;
    --topbar-top: 24px;
    --topbar-h: 64px;
    --products-gap: 20px;
    --products-peek: 70px;
    --logo-w: 79px;
    --logo-h: 50px;
  }

  .home-hero-shell {
    min-height: 760px;
    background-position: center top;
  }

  .site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .site-header__logo {
    flex: 0 0 auto;
  }

  .site-header__store {
    display: none;
  }

  .site-header__actions {
    display: none;
  }

  .site-nav__mobile-tools {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 4px 8px 12px;
    border-bottom: 1px solid #eeeeee;
  }

  .site-search--mobile .site-search__label {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .site-search--mobile .site-search__field {
    height: 42px;
  }

  .site-search--mobile .site-search__field button {
    height: 42px;
  }

  .site-search--mobile .site-search__scopes {
    gap: 7px;
    margin-top: 10px;
  }

  .site-search--mobile .site-search__scope {
    min-height: 30px;
    font-size: 12px;
  }

  .site-nav-toggle {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
    color: var(--black);
    cursor: pointer;
    appearance: none;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
  }

  .site-nav-toggle:hover,
  .site-nav-toggle:focus-visible {
    background: #ffffff;
    color: var(--orange);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
    outline: 0;
  }

  .site-budget-toggle {
    width: 76px;
    flex-direction: row;
    gap: 5px;
    margin-left: auto;
    overflow: visible;
    border-radius: 999px;
    background: #fff0e9;
  }

  .site-nav-toggle {
    margin-left: 8px;
  }

  .site-budget-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-budget-toggle__icon--budget-art {
    width: 31px;
    height: 31px;
    overflow: visible;
  }

  .site-budget-toggle__icon--budget-art img {
    width: 42px;
    height: 42px;
    max-width: none;
    object-fit: contain;
    /*transform: translateX(-5px);*/
    transform: translateX(-5px) scale(1.30);
  }

  .site-budget-toggle__count {
    min-width: 16px;
    height: 18px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 800;
  }

  .site-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }

  .site-header.is-menu-open .site-nav-toggle span {
    background: var(--orange);
  }

  .site-header.is-menu-open .site-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .site-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    left: var(--topbar-left);
    top: calc(var(--topbar-top) + var(--topbar-h) + 14px);
    z-index: 1001;
    width: min(420px, calc(100vw - 48px));
    max-height: calc(100dvh - var(--topbar-top) - var(--topbar-h) - 28px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .72);
    border-top: 5px solid var(--orange);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .22);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-sticky .site-nav,
  .site-header.is-sticky .site-budget-mobile-panel {
    top: calc(var(--sticky-topbar-top) + var(--topbar-h) + 14px);
    max-height: calc(100dvh - var(--sticky-topbar-top) - var(--topbar-h) - 28px);
  }

  .site-nav__item {
    width: 100%;
    height: auto;
    display: block;
  }

  .site-nav__link,
  .site-nav__button {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 12px;
    color: #000000;
    text-align: left;
    font-family: var(--font-menu);
    font-size: 15px;
    font-weight: 500;
    line-height: 145%;
    letter-spacing: -0.005em;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible,
  .site-nav__button:hover,
  .site-nav__button:focus-visible {
    background: #f4f4f4;
    color: var(--orange);
  }

  .site-nav__arrow {
    flex: 0 0 auto;
    transition: transform .18s ease;
  }

  .site-nav__dropdown {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 12px;
    background: #f4f4f4;
    box-shadow: none;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .22s ease, margin .22s ease, padding .22s ease;
  }

  .site-nav__item:hover .site-nav__dropdown,
  .site-nav__item:focus-within .site-nav__dropdown {
    max-height: 0;
    margin: 0;
    padding: 0 0 0 12px;
    transform: none;
  }

  .site-nav__item.is-submenu-open > .site-nav__button {
    color: var(--orange);
    background: #f4f4f4;
    border-bottom: 1px solid #f75c00;
  }

  .site-nav__item.is-submenu-open > .site-nav__button .site-nav__arrow {
    transform: rotate(180deg);
  }

  .site-nav__item.is-submenu-open .site-nav__dropdown {
    max-height: 320px;
    margin: 4px 0 8px;
    padding: 8px 0 8px 12px;
  }

  .site-nav__dropdown a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    color: #000000;
    font-family: var(--font-menu);
    font-size: 14px;
    font-weight: 500;
    line-height: 145%;
    letter-spacing: -0.005em;
  }

  .site-nav__dropdown a:hover,
  .site-nav__dropdown a:focus-visible {
    background: #ffffff;
    color: var(--orange);
  }

  .site-nav__mobile-store {
    min-height: 50px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--orange);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
  }

  .site-budget-mobile-panel {
    position: fixed;
    right: var(--topbar-left);
    top: calc(var(--topbar-top) + var(--topbar-h) + 14px);
    z-index: 1001;
    width: min(360px, calc(100vw - 48px));
    display: block;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-top: 5px solid var(--orange);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-header.is-budget-open .site-budget-mobile-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-budget-preview--mobile-panel {
    padding: 12px;
    border-radius: 12px;
    background: #f4f4f4;
  }

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

  .hero-content h1 {
    width: min(760px, calc(100vw - 48px));
    font-size: 48px;
  }

  .hero-content p {
    width: min(620px, calc(100vw - 48px));
    font-size: 16px;
    margin-top: 22px;
  }

  .hero-content__cta {
    width: min(396px, calc(100vw - 48px));
    height: 64px;
    margin-top: 28px;
    font-size: 15px;
  }

  .home-stats-section {
    min-height: auto;
    padding: 96px 24px 72px;
  }

  .home-stats-card {
    width: 100%;
    max-width: 760px;
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding: 28px 18px;
    transform: none;
  }

  .home-stats-card__item {
    min-height: 120px;
    row-gap: 10px;
    transform: none;
  }

  .home-stats-card__item strong {
    min-height: 60px;
    font-size: 34px;
  }

  .home-stats-card__item span {
    min-height: 28px;
    font-size: 17px;
  }

  .home-stats-decor {
    display: none;
  }

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

  .home-products-section__inner {
    width: var(--content-w);
  }

  .home-products-section__header h2 {
    font-size: 34px;
  }

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

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

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

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

  .home-about-section {
    padding: 44px 24px 48px;
  }

  .home-about-section__inner {
    width: var(--content-w);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
  }

  .home-about-section__content {
    max-width: none;
    padding-left: 0;
  }

  .home-about-section__content h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .home-about-section__text {
    margin-top: 24px;
  }

  .home-about-section__text p {
    font-size: 14px;
    line-height: 1.2;
  }

  .home-about-section__media {
    transform: none;
  }

  .home-about-section__button {
    min-width: 220px;
    height: 56px;
    margin-top: 26px;
    font-size: 14px;
  }



  .home-store-section {
    min-height: 700px;
    padding: 106px 24px 182px;
  }

  .home-store-section__decor::before {
    top: 0;
    width: 1050px;
    height: 624px;
    background-size: 1050px 624px;
    transform: none;
  }

  .home-store-section__inner {
    width: min(900px, calc(100vw - 48px));
  }

  .home-store-card {
    width: 100%;
    aspect-ratio: 1132 / 518;
    height: auto;
    min-height: 0;
  }

  .home-store-card__content h2 {
    font-size: 34px;
  }

  .home-store-card__content p {
    margin-top: 42px;
    font-size: 14px;
  }

  .home-store-card__button {
    height: 56px;
    margin-top: 42px;
    font-size: 13px;
  }

  .home-store-card__button img {
    width: 44px;
    height: 44px;
  }


  .home-sectors-section {
    min-height: auto;
    margin-top: 0;
    padding: 96px 24px 88px;
    align-items: flex-start;
  }

  .home-sectors-section::before {
    top: 60px;
    width: min(496px, 46vw);
    height: 11px;
  }

  .home-sectors-section__inner {
    width: var(--content-w);
  }

  .home-sectors-section__header h2 {
    font-size: 32px;
    line-height: 1.14;
  }

  .home-sectors-section__grid {
    margin-top: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-sector-card {
    min-height: 218px;
    padding: 62px 22px 16px;
  }

  .home-sector-card h3 {
    font-size: 21px;
  }

  .home-sector-card p {
    font-size: 15px;
  }

  .home-sector-card__button {
    width: 176px;
    height: 56px;
    margin-top: auto;
    font-size: 12px;
  }

  .home-sector-card--custom::before {
    right: -40px;
    top: -20px;
    width: 138px;
    height: 90px;
  }

  .home-sector-card--custom::after {
    right: -30px;
    bottom: -44px;
    width: 112px;
    height: 82px;
  }

}

@media (max-width: 640px) {
  :root {
    --hero-h: 720px;
    --topbar-w: calc(100vw - 32px);
    --topbar-left: 16px;
    --topbar-top: 18px;
    --sticky-topbar-top: 8px;
    --products-gap: 16px;
    --products-peek: 56px;
    --logo-w: 72px;
    --logo-h: 46px;
    --store-w: 132px;
    --store-h: 54px;
  }

  .home-hero-shell {
    min-height: 720px;
  }

  .site-nav,
  .site-budget-mobile-panel {
    top: calc(var(--topbar-top) + var(--topbar-h) + 12px);
    width: calc(100vw - 32px);
    max-height: calc(100dvh - var(--topbar-top) - var(--topbar-h) - 24px);
  }

  .site-header.is-sticky .site-nav,
  .site-header.is-sticky .site-budget-mobile-panel {
    top: calc(var(--sticky-topbar-top) + var(--topbar-h) + 12px);
    max-height: calc(100dvh - var(--sticky-topbar-top) - var(--topbar-h) - 24px);
  }

  .site-nav-toggle {
    width: 48px;
    height: 48px;
  }

  .site-budget-toggle {
    width: 76px;
    height: 48px;
  }

  .site-header__store {
    display: none;
  }
  .site-budget-toggle__icon--budget-art img {
    width: 40px;
    height: 40px;
    transform: translateX(-4px) scale(1.30);
    transform-origin: center;
  }

  .site-budget-toggle__count {
    min-width: 18px;
    height: 20px;
    font-size: 15px;
    font-weight: 800;
    color: var(--orange);
  }

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

  .hero-content h1 {
    width: 100%;
    font-size: 32px;
  }

  .hero-content p {
    width: 100%;
    font-size: 15px;
    margin-top: 18px;
  }

  .hero-content__cta {
    width: 100%;
    height: 58px;
    margin-top: 24px;
    font-size: 14px;
  }

  .home-stats-section {
    padding: 72px 16px 56px;
  }

  .home-stats-card {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .home-stats-card__item {
    min-height: 104px;
    row-gap: 8px;
  }

  .home-stats-card__item strong {
    min-height: 56px;
    font-size: 32px;
  }

  .home-stats-card__item span {
    min-height: 24px;
    font-size: 15px;
  }

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

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

  .home-products-section__header h2 {
    font-size: 28px;
  }

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

  .home-products-carousel__button {
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

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

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

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

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

  .home-product-card__button {
    min-width: 148px;
    height: 56px;
    font-size: 12px;
  }

  .home-about-section {
    padding: 40px 16px 44px;
  }

  .home-about-section__inner {
    width: var(--content-w);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-about-section__content {
    padding-left: 0;
  }

  .home-about-section__content h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .home-about-section__text {
    margin-top: 22px;
  }

  .home-about-section__text p {
    font-size: 14px;
    line-height: 1.2;
  }

  .home-about-section__text p + p {
    margin-top: 15px;
  }

  .home-about-section__button {
    width: 100%;
    min-width: 0;
    height: 54px;
    margin-top: 24px;
    font-size: 13px;
  }

  .home-about-section__media {
    width: 100%;
    justify-self: stretch;
  }



  .home-store-section {
    min-height: 599px;
    padding: 60px 16px 139px;
  }

  .home-store-section__decor::before {
    top: 0;
    width: 900px;
    height: 535px;
    background-size: 900px 535px;
    left: -180px;
    transform: none;
  }

  .home-store-card {
    width: 100%;
    height: 400px;
    min-height: 400px;
    background-position: center;
    background-size: 100% 100%;
  }

  .home-store-card__content {
    width: calc(100% - 36px);
  }

  .home-store-card__content h2 {
    font-size: 28px;
  }

  .home-store-card__content p {
    margin-top: 34px;
    font-size: 13px;
  }

  .home-store-card__button {
    width: 100%;
    height: 54px;
    margin-top: 36px;
    gap: 16px;
    font-size: 12px;
  }

  .home-store-card__button img {
    width: 40px;
    height: 40px;
  }


  .home-sectors-section {
    min-height: auto;
    margin-top: 0;
    padding: 84px 16px 78px;
    align-items: flex-start;
  }

  .home-sectors-section::before {
    top: 48px;
    width: 220px;
    height: 8px;
  }

  .home-sectors-section__inner {
    width: var(--content-w);
  }

  .home-sectors-section__header h2 {
    font-size: 27px;
    line-height: 1.14;
  }

  .home-sectors-section__header p {
    margin-top: 14px;
    font-size: 13px;
  }

  .home-sectors-section__grid {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-sector-card {
    min-height: 208px;
    padding: 54px 20px 16px;
  }

  .home-sector-card h3 {
    font-size: 21px;
  }

  .home-sector-card p {
    max-width: none;
    margin-top: 12px;
    font-size: 13px;
  }

  .home-sector-card__button {
    width: 176px;
    height: 56px;
    margin-top: auto;
    font-size: 12px;
  }

  .home-sector-card--custom::before {
    right: -42px;
    top: -24px;
    width: 132px;
    height: 82px;
  }

  .home-sector-card--custom::after {
    right: -34px;
    bottom: -46px;
    width: 108px;
    height: 76px;
  }

}



.home-sector-card--custom::before {
  right: -54px;
  top: -28px;
  width: 138px;
  height: 86px;
}

.home-sector-card--custom::after {
  right: -38px;
  bottom: -48px;
  width: 106px;
  height: 74px;
}






  .home-sector-card--custom::before {
    right: -48px;
    top: -26px;
    width: 132px;
    height: 82px;
  }

  .home-sector-card--custom::after {
    right: -36px;
    bottom: -46px;
    width: 104px;
    height: 72px;
  }


.home-reviews-section {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 120px 0 64px;
  background: var(--page-bg);
  overflow: hidden;
}

.home-reviews-section__inner {
  width: min(1016px, calc(100vw - 96px));
  margin: 0 auto;
}

.home-reviews-section__header {
  text-align: center;
}

.home-reviews-section__header h2 {
  margin: 0;
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
}

.home-reviews-section__header h2 span {
  color: var(--orange);
}

.home-reviews-carousel {
  --reviews-card-w: 236px;
  --reviews-gap: 24px;
  position: relative;
  width: calc((var(--reviews-card-w) * 4) + (var(--reviews-gap) * 3));
  max-width: 100%;
  margin: 78px auto 0;
}

.home-reviews-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.home-reviews-carousel__track {
  display: flex;
  gap: var(--reviews-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-reviews-carousel__track::-webkit-scrollbar {
  display: none;
}

.home-review-card {
  flex: 0 0 var(--reviews-card-w);
  min-height: 304px;
  display: flex;
  scroll-snap-align: start;
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.home-review-card--placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.home-review-card__inner {
  width: 100%;
  min-height: 304px;
  padding: 18px 17px 16px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.home-review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.home-review-card__avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  background: #eeeeee;
  object-fit: cover;
}

.home-review-card__avatar-fallback {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f1f1;
  color: var(--orange);
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.home-review-card__author {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.home-review-card__author strong {
  overflow: hidden;
  color: #1f2322;
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-review-card__author span {
  color: #676868;
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.home-review-card__stars {
  margin-top: 16px;
  color: #fbbc04;
  font-family: var(--font-menu);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
}

.home-review-card__text {
  margin: 14px 0 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.home-review-card__source {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #676868;
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
}

.home-review-card__source::before {
  content: "G";
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1f1f1;
  color: #1f2322;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
}

.home-review-card__link {
  color: inherit;
  text-decoration: none;
}

.home-review-card__link:hover,
.home-review-card__link:focus-visible {
  color: var(--orange);
  outline: 0;
}

.home-reviews-carousel__button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #020405;
  border-radius: 999px;
  background: var(--white);
  color: #020405;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

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

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

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

.home-reviews-carousel__button--prev {
  left: -30px;
}

.home-reviews-carousel__button--prev span::before {
  left: 4px;
}

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

.home-reviews-carousel__button--next {
  right: -30px;
}

.home-reviews-carousel__button--next span::before {
  right: 4px;
}

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

.home-reviews-carousel__button:hover,
.home-reviews-carousel__button:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
  outline: 0;
}

@media (max-width: 1024px) {
  .home-reviews-section {
    margin-top: 0;
    padding: 100px 24px 68px;
  }

  .home-reviews-section__inner {
    width: min(660px, calc(100vw - 48px));
  }

  .home-reviews-section__header h2 {
    font-size: 34px;
  }

  .home-reviews-carousel {
    --reviews-card-w: 220px;
    --reviews-gap: 22px;
    width: calc((var(--reviews-card-w) * 2) + var(--reviews-gap));
    margin-top: 56px;
  }

  .home-reviews-carousel__button {
    width: 48px;
    height: 48px;
  }

  .home-reviews-carousel__button--prev {
    left: -24px;
  }

  .home-reviews-carousel__button--next {
    right: -24px;
  }
}

@media (max-width: 640px) {
  .home-reviews-section {
    margin-top: 0;
    padding: 84px 16px 62px;
  }

  .home-reviews-section__inner {
    width: var(--content-w);
  }

  .home-reviews-section__header h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .home-reviews-carousel {
    --reviews-card-w: min(240px, calc(100vw - 104px));
    --reviews-gap: 16px;
    width: var(--reviews-card-w);
    margin-top: 42px;
  }

  .home-reviews-carousel__button {
    width: 42px;
    height: 42px;
  }

  .home-reviews-carousel__button--prev {
    left: -20px;
  }

  .home-reviews-carousel__button--next {
    right: -20px;
  }
}

.home-clients-section {
  position: relative;
  width: 100%;
  margin-top: 0;
  min-height: 590px;
  padding: 56px 56px;
  display: flex;
  align-items: center;
  background: var(--page-bg);
  color: #1f2322;
  overflow: hidden;
}

.home-clients-section__inner {
  width: var(--content-w);
  margin: 0 auto;
  transform: none;
} 

.home-clients-section__header {
  text-align: center;
  transform: none;
}

.home-clients-section__header h2 {
  margin: 0;
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-clients-section__header p {
  margin: 18px 0 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
}

.home-clients-section__marquees {
  width: 100vw;
  margin: 44px 0 0 calc((100vw - var(--content-w)) / -2);
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.home-clients-marquee {
  --clients-speed: 52s;
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.home-clients-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  will-change: transform;
  animation: home-clients-marquee var(--clients-speed) linear infinite;
}

.home-clients-marquee--reverse .home-clients-marquee__track {
  animation-direction: reverse;
}

.home-clients-marquee--row-2 {
  --clients-speed: 48s;
}

.home-clients-marquee--row-3 {
  --clients-speed: 50s;
}

.home-clients-logo {
  width: 184px;
  height: 78px;
  flex: 0 0 184px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 35, 34, .08);
  border-radius: 30px 0 30px 0;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.home-clients-logo img {
  width: 100%;
  height: 100%;
  max-width: 136px;
  max-height: 50px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .18s ease;
}

.home-clients-logo:hover,
.home-clients-logo:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 16px 36px rgba(247, 92, 0, .12);
  transform: translateY(-1px);
  outline: 0;
}

.home-clients-logo:hover img,
.home-clients-logo:focus-visible img {
  transform: scale(1.02);
}

.home-clients-section__footer {
  margin-top: 54px;
  display: flex;
  justify-content: center;
}

.home-clients-section__button {
  width: 325px;
  height: 70px;
  padding: 0 18px 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 0;
  border-radius: var(--radius-main);
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.home-clients-section__button img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-clients-section__button:hover,
.home-clients-section__button:focus-visible {
  background: var(--orange-hover);
  color: var(--white);
  outline: 0;
}

.home-clients-section__marquees:hover .home-clients-marquee__track,
.home-clients-section__marquees:focus-within .home-clients-marquee__track {
  animation-play-state: paused;
}

@keyframes home-clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-clients-marquee__track {
    animation: none;
    transform: none;
  }

  .home-clients-section__marquees {
    width: var(--content-w);
    margin-left: 0;
    overflow-x: auto;
  }
}

@media (max-width: 1024px) {
  .home-clients-section {
    min-height: 540px;
    margin-top: 0;
    padding: 54px 24px 54px;
  }

  .home-clients-section__inner {
    width: var(--content-w);
    transform: none;
  }

  .home-clients-section__header {
    transform: none;
  }

  .home-clients-section__header h2 {
    font-size: 30px;
    white-space: normal;
  }

  .home-clients-section__header p {
    font-size: 14px;
    white-space: normal;
  }

  .home-clients-section__marquees {
    width: calc(100vw - 48px);
    margin: 40px 0 0;
    gap: 12px;
  }

  .home-clients-logo {
    width: 158px;
    height: 68px;
    flex-basis: 158px;
    padding: 12px 20px;
  }

  .home-clients-logo img {
    max-width: 118px;
    max-height: 44px;
  }

  .home-clients-section__footer {
    margin-top: 50px;
  }

  .home-clients-section__button {
    width: 315px;
    height: 66px;
    font-size: 15px;
    gap: 20px;
    line-height: 1.45;
    letter-spacing: -0.005em;
  }

  .home-clients-section__button img {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}

@media (max-width: 640px) {
  .home-clients-section {
    min-height: 500px;
    margin-top: 0;
    padding: 54px 16px 54px;
  }

  .home-clients-section__inner {
    width: var(--content-w);
    transform: none;
  }

  .home-clients-section__header {
    transform: none;
  }
  
  .home-clients-section__header h2 {
    font-size: 26px;
  }

  .home-clients-section__header p {
    margin-top: 16px;
    font-size: 13px;
  }

  .home-clients-section__marquees {
    width: calc(100vw - 32px);
    margin-top: 32px;
    gap: 10px;
  }

  .home-clients-logo {
    width: 138px;
    height: 60px;
    flex-basis: 138px;
    padding: 10px 16px;
  }

  .home-clients-logo img {
    max-width: 104px;
    max-height: 38px;
  }

.home-clients-section__footer {
    margin-top: 44px;
  }

  .home-clients-section__button {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    gap: 16px;
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: -0.005em;
  }

  .home-clients-section__button img {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}



.home-blog-section {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 80px);
  padding: 54px 0 86px;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

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

.home-blog-section__header {
  max-width: 520px;
  margin-left: auto;
  text-align: right;
}

.home-blog-section__header h2 {
  margin: 0;
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-align: right;
  text-transform: uppercase;
}

.home-blog-section__header p {
  margin: 18px 0 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: right;
}

.home-blog-section__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #020405;
  border-radius: var(--radius-main);
  background: var(--white);
  color: var(--black);
}

.home-blog-card__media {
  width: 100%;
  height: 122px;
  background: #FF0000;
}

.home-blog-card__media {
  overflow: hidden;
}

.home-blog-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.home-blog-card--artigo-1 .home-blog-card__media img {
  object-position: center center;
}

.home-blog-card--artigo-2 .home-blog-card__media img {
  object-position: center center;
}

.home-blog-card--artigo-3 .home-blog-card__media img {
  object-position: center center;
}

.home-blog-card--red .home-blog-card__media {
  background: #FF0000;
}

.home-blog-card--blue .home-blog-card__media {
  background: #00D9FF;
}

.home-blog-card--green .home-blog-card__media {
  background: #00FF22;
}

.home-blog-card__body {
  min-height: 210px;
  padding: 24px 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-blog-card h3 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-card p {
  max-width: 300px;
  margin: 18px 0 20px;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

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

.home-blog-section__footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.home-blog-section__button {
  min-width: 216px;
  height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: var(--radius-main);
  background: var(--white);
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.home-blog-section__button:hover,
.home-blog-section__button:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  outline: 0;
}

@media (max-width: 1024px) {
  .home-blog-section {
    min-height: auto;
    padding: 82px 24px 84px;
    display: block;
  }

  .home-blog-section__inner {
    width: var(--content-w);
  }

  .home-blog-section__header {
    max-width: 540px;
  }

  .home-blog-section__header h2 {
    font-size: 32px;
  }

  .home-blog-section__header p {
    margin-top: 22px;
    font-size: 14px;
  }

  .home-blog-section__grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .home-blog-card:nth-child(n + 3) {
    display: none;
  }

  .home-blog-card__media {
    height: 128px;
  }

  .home-blog-card__body {
    min-height: 238px;
    padding: 26px 24px 22px;
  }

  .home-blog-card h3 {
    font-size: 23px;
  }

  .home-blog-card p {
    margin-top: 20px;
    margin-bottom: 22px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .home-blog-section {
    padding: 68px 16px 72px;
  }

  .home-blog-section__inner {
    width: var(--content-w);
  }

  .home-blog-section__header {
    max-width: none;
    text-align: left;
  }

  .home-blog-section__header h2,
  .home-blog-section__header p {
    text-align: left;
  }

  .home-blog-section__header h2 {
    font-size: 28px;
  }

  .home-blog-section__header p {
    margin-top: 18px;
    font-size: 14px;
  }

  .home-blog-section__grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-blog-card:nth-child(n + 3) {
    display: block;
  }

  .home-blog-card__media {
    height: 132px;
  }

  .home-blog-card__body {
    min-height: 238px;
    padding: 26px 22px 22px;
  }

  .home-blog-card h3 {
    font-size: 23px;
  }

  .home-blog-card p {
    max-width: none;
    margin-top: 20px;
    margin-bottom: 22px;
    font-size: 14px;
  }

  .home-blog-card__button {
    width: 164px;
    height: 56px;
    font-size: 12px;
  }


  .home-product-card__button,
  .home-sector-card__button,
  .home-blog-card__button {
    height: 56px;
    font-size: 12px;
  }

  .home-blog-section__footer {
    margin-top: 24px;
    justify-content: stretch;
  }

  .home-blog-section__button {
    width: 100%;
    min-width: 0;
    height: 62px;
    font-size: 13px;
  }
}

.home-budget-section {
  position: relative;
  width: 100%;
  padding: 28px 0 136px;
  background: var(--white);
  overflow: hidden;
}

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

.home-budget-card {
  width: min(850px, 100%);
  min-height: 252px;
  margin: 0 auto;
  padding: 44px 48px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: end;
  column-gap: 30px;
  border-radius: var(--radius-main);
  background: #D9D9D9;
}

.home-budget-card__content {
  align-self: start;
  min-width: 0;
}

.home-budget-card h2 {
  margin: 0;
  color: #1f2322;
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-budget-card p {
  max-width: 460px;
  margin: 26px 0 0;
  color: var(--black);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.home-budget-card__button {
  width: 260px;
  height: 54px;
  margin: 0;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  justify-self: end;
  border-radius: var(--radius-main);
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}

.home-budget-card__button-arrow {
  position: relative;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}

.home-budget-card__button-arrow::before,
.home-budget-card__button-arrow::after {
  content: "";
  position: absolute;
  display: block;
}

.home-budget-card__button-arrow::before {
  width: 25px;
  height: 4px;
  left: -3px;
  top: 14px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.home-budget-card__button-arrow::after {
  width: 13px;
  height: 13px;
  right: 0;
  top: 2px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

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

@media (max-width: 1024px) {
  .home-budget-section {
    padding: 34px 24px 102px;
  }

  .home-budget-section__inner {
    width: var(--content-w);
  }

  .home-budget-card {
    width: min(760px, 100%);
    min-height: 0;
    padding: 42px 38px 36px;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: end;
    column-gap: 26px;
  }

  .home-budget-card h2 {
    font-size: 32px;
    white-space: nowrap;
  }

  .home-budget-card p {
    max-width: 500px;
    margin-top: 24px;
    font-size: 13px;
  }

  .home-budget-card__button {
    width: min(282px, 100%);
    height: 54px;
    margin: 0;
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .home-budget-section {
    padding: 32px 16px 80px;
  }

  .home-budget-card {
    width: 100%;
    min-height: 0;
    padding: 34px 22px 26px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .home-budget-card h2 {
    font-size: 26px;
    white-space: normal;
  }

  .home-budget-card p {
    margin-top: 20px;
    font-size: 13px;
  }

  .home-budget-card p br {
    display: none;
  }

  .home-budget-card__button {
    width: 100%;
    height: 52px;
    gap: 18px;
    font-size: 12px;
  }

  .home-budget-card__button-arrow {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .home-budget-card__button-arrow::before {
    width: 23px;
    height: 3px;
    left: -2px;
    top: 13px;
    transform: rotate(-45deg);
  }

  .home-budget-card__button-arrow::after {
    width: 12px;
    height: 12px;
    right: 0;
    top: 2px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}



/* CTA Orçamento: seta usando o asset WEBP transparente */
.home-budget-card__button-arrow {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-image: url("../img/seta-botao-orcamento-home.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-budget-card__button-arrow::before,
.home-budget-card__button-arrow::after {
  content: none;
  display: none;
}

.site-footer {
  width: 100%;
  padding: 132px 0 76px;
  background: #D9D9D9;
  color: #000000;
}

.site-footer__inner {
  width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  align-items: start;
  column-gap: 0;
}

.site-footer__brand {
  min-width: 0;
}

.site-footer__logo {
  width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: 180px;
  height: auto;
  object-fit: contain;
}

.site-footer__company,
.site-footer__cnpj {
  color: #000000;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.site-footer__company {
  max-width: 310px;
  margin: 24px 0 0;
  text-transform: uppercase;
}

.site-footer__cnpj {
  margin: 8px 0 0;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.site-footer__social a {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  line-height: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  opacity: .78;
  outline: 0;
  transform: translateY(-1px);
}

.site-footer__social img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.site-footer__right {
  --footer-nav-w: 148px;
  --footer-service-w: 240px;
  --footer-columns-gap: 62px;
  --footer-right-w: calc(var(--footer-nav-w) + var(--footer-columns-gap) + var(--footer-service-w));
  min-width: 0;
  width: min(var(--footer-right-w), 100%);
  justify-self: end;
}

.site-footer__columns {
  width: 100%;
  display: grid;
  grid-template-columns: var(--footer-nav-w) var(--footer-service-w);
  align-items: start;
  column-gap: var(--footer-columns-gap);
}

.site-footer__nav h2 {
  margin: 0;
  color: #000000;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.site-footer__service h2 {
  margin: 0;
  color: #000000;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.site-footer__menu,
.site-footer__legal {
  list-style: none;
  padding: 0;
}

.site-footer__menu {
  margin: 24px 0 0;
}

.site-footer__legal-nav {
  margin-top: 48px;
  width: max-content;
}

.site-footer__legal {
  margin: 0;
}

.site-footer__menu li + li,
.site-footer__legal li + li {
  margin-top: 7px;
}

.site-footer__nav a,
.site-footer__service p,
.site-footer__service a,
.site-footer__legal a {
  color: #000000;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-decoration: none;
}

.site-footer__legal a {
  white-space: nowrap;
}

.site-footer__nav a,
.site-footer__service a,
.site-footer__legal a {
  transition: color .18s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__service a:hover,
.site-footer__service a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--orange);
  outline: 0;
}

.site-footer__service p {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
}

.site-footer__service p + p {
  margin-top: 8px;
}

.site-footer__service p:last-child a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__service p:last-child a::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-image: url("../img/wpp-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 86px 24px 72px;
  }

  .site-footer__inner {
    width: var(--content-w);
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__company {
    max-width: 340px;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__right {
    width: min(680px, 100%);
    justify-self: center;
    display: grid;
    grid-template-columns: var(--footer-nav-w) var(--footer-service-w);
    justify-content: center;
    column-gap: 152px;
  }

  .site-footer__columns {
    display: contents;
  }

  .site-footer__nav {
    grid-column: 1;
    grid-row: 1;
  }

  .site-footer__service {
    grid-column: 2;
    grid-row: 1;
  }

  .site-footer__legal-nav {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-top: 0;
    width: max-content;
  }

  .site-footer__logo,
  .site-footer__logo img {
    width: 166px;
  }

  .site-footer__company {
    margin-top: 24px;
  }

}

@media (max-width: 640px) {
  .site-footer {
    padding: 64px 16px 58px;
  }

  .site-footer__inner {
    width: var(--content-w);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 48px;
    text-align: center;
  }

  .site-footer__brand,
  .site-footer__right,
  .site-footer__nav,
  .site-footer__service {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__columns {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 48px;
  }

  .site-footer__nav,
  .site-footer__service,
  .site-footer__legal-nav {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__legal-nav {
    align-self: auto;
  }

  .site-footer__logo,
  .site-footer__logo img {
    width: 154px;
  }

  .site-footer__company,
  .site-footer__cnpj,
  .site-footer__nav h2,
  .site-footer__service h2,
  .site-footer__nav a,
  .site-footer__service p,
  .site-footer__service a,
  .site-footer__legal a {
    font-size: 13px;
  }

  .site-footer__menu {
    margin-top: 22px;
  }

  .site-footer__legal-nav {
    width: auto;
    margin-top: 32px;
  }

  .site-footer__menu,
  .site-footer__legal {
    width: 100%;
  }

  .site-footer__social {
    justify-content: center;
    margin-top: 14px;
  }

  .site-footer__service p {
    max-width: 260px;
    margin-top: 22px;
    text-align: center;
  }

  .site-footer__service p:last-child a {
    justify-content: center;
  }
}

/* Botão fixo do WhatsApp */
.site-whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.5vw, 42px);
  bottom: clamp(18px, 2.5vw, 42px);
  z-index: 1200;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  line-height: 0;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .24));
  transition: transform .18s ease, filter .18s ease;
}

.site-whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-whatsapp-float:hover,
.site-whatsapp-float:focus-visible {
  outline: 0;
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .28));
}

@media (max-width: 1024px) {
  .site-whatsapp-float {
    right: 24px;
    bottom: 24px;
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 640px) {
  .site-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* Ajuste solicitado: textos de corpo em 15px nas resoluções tablet/mobile, sem alterar footer */
@media (max-width: 1024px) {
  .hero-content p,
  .home-about-section__text p,
  .home-store-card__content p,
  .home-sectors-section__header p,
  .home-sector-card p,
  .home-review-card__text,
  .home-clients-section__header p,
  .home-blog-section__header p,
  .home-blog-card p,
  .home-budget-card p {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .hero-content p,
  .home-about-section__text p,
  .home-store-card__content p,
  .home-sectors-section__header p,
  .home-sector-card p,
  .home-review-card__text,
  .home-clients-section__header p,
  .home-blog-section__header p,
  .home-blog-card p,
  .home-budget-card p {
    font-size: 15px;
  }
}

