:root {
  --brand: #193774;
  --brand-dark: #102653;
  --green: #0daa5a;
  --red: #e91010;
  --bg: #e9e9e9;
  --line: #d8d8d8;
  --ink: #252b33;
  --muted: #667085;
  --surface: #fff;
  --shadow: 0 2px 7px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.product-body {
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.wide {
  width: min(1110px, calc(100% - 30px));
  margin-inline: auto;
}

.topbar__inner.wide,
.menu .wide {
  width: calc(100% - 64px);
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
}

.utility-bar {
  background: var(--brand-dark);
  color: #fff;
}

.utility-bar__inner {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
}

.utility-bar__inner a:hover,
.utility-bar__inner a:focus-visible {
  text-decoration: underline;
}

.topbar {
  border-bottom: 1px solid #e4e7ec;
  background: #fff;
}

.topbar__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 1fr);
  grid-template-areas: 'search logo action';
  align-items: center;
  gap: 28px;
  min-height: calc(var(--site-logo-height, 68px) + 28px);
  padding-block: 14px;
}

.logo,
.whatsapp-head {
  font-weight: 900;
}

.whatsapp-head {
  grid-area: action;
  justify-self: end;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0 19px;
  font-size: 0.75rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.whatsapp-head:hover,
.whatsapp-head:focus-visible {
  background: #098449;
}

.logo {
  grid-area: logo;
  justify-self: center;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: var(--site-logo-height, 68px);
  object-fit: contain;
}

.logo span {
  display: grid;
  width: 48px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: #fff;
  color: var(--brand);
  font-weight: 900;
}

.search {
  grid-area: search;
  display: flex;
  width: min(100%, 345px);
  justify-self: start;
  height: 42px;
  overflow: hidden;
  border: 1px solid #182434;
  border-radius: 999px;
  background: #fff;
}

.search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: #fff;
  padding-inline: 15px;
  color: #17202f;
  font-size: 0.875rem;
  outline: 0;
}

.search button {
  position: relative;
  width: 44px;
  border: 0;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.search button::before {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 12px;
  height: 12px;
  border: 2px solid #17202f;
  border-radius: 50%;
  content: '';
}

.search button::after {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  background: #17202f;
  content: '';
  transform: rotate(45deg);
}

.search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(25, 55, 116, 0.14);
}

.menu {
  position: relative;
  z-index: 30;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.menu .wide {
  overflow: visible;
}

.menu-list,
.site-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list {
  display: flex;
  min-height: 54px;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-entry,
.menu-dropdown {
  position: relative;
  display: flex;
  min-height: 54px;
  flex: 0 0 auto;
}

.menu-entry > a,
.menu-dropdown summary a {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  padding: 0 17px;
  color: #192231;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
}

.menu-dropdown summary {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: stretch;
  cursor: pointer;
  list-style: none;
}

.menu-categories-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 1px;
  background: var(--brand);
}

.menu-categories-icon::before,
.menu-categories-icon::after {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: var(--brand);
  content: '';
}

.menu-categories-icon::before {
  top: -6px;
}

.menu-categories-icon::after {
  top: 6px;
}

.menu-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-submenu__item {
  position: relative;
}

.site-submenu-dropdown {
  display: block;
}

.site-submenu-dropdown summary {
  display: block;
  list-style: none;
}

.site-submenu-dropdown summary::-webkit-details-marker {
  display: none;
}

.site-submenu {
  position: absolute;
  z-index: 40;
  top: calc(100% - 1px);
  left: 0;
  width: min(272px, calc(100vw - 30px));
  display: grid;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 5px 10px rgba(16, 24, 40, 0.14);
  padding: 5px 0;
}

.site-submenu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  border-radius: 0;
  color: #27313f;
  padding: 0 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
}

.site-submenu a:hover,
.site-submenu a:focus-visible {
  background: #edf1f8;
  color: var(--brand);
}

.site-submenu--nested {
  top: -6px;
  left: calc(100% - 6px);
  border-radius: 4px;
}

.mobile-menu {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  [data-menu-flyout]:hover > .site-submenu,
  [data-menu-flyout]:focus-within > .site-submenu {
    display: grid;
  }
}

.hero-slider {
  position: relative;
  background: #f4efe4;
}

.hero-slide {
  display: grid;
  grid-template-columns: 26% 27% 22% 25%;
  align-items: center;
  min-height: 258px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 95%, rgba(194, 154, 107, 0.35), transparent 25%),
    linear-gradient(90deg, #f6f0e5 0%, #fffdfa 45%, #f2e8da 100%);
}

.hero-product {
  position: relative;
  height: 258px;
}

.can {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #b7b7b7;
  border-radius: 7px 7px 12px 12px;
  background: linear-gradient(90deg, #f7f7f7, #dddddd);
  color: #111;
  box-shadow: 0 11px 20px rgba(0, 0, 0, 0.18);
}

.can b {
  font-size: 1.35rem;
}

.can span {
  margin-top: 8px;
  padding: 7px 10px;
  background: #c52b31;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.can small {
  margin-top: 9px;
  font-weight: 800;
}

.can--large {
  left: 72px;
  top: 36px;
  width: 142px;
  height: 170px;
}

.can--small {
  left: 190px;
  top: 82px;
  width: 94px;
  height: 125px;
}

.hero-message h1 {
  max-width: 440px;
  margin: 0;
  color: #060606;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.hero-surface {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 258px;
}

.wood-card {
  width: 122px;
  height: 150px;
  border: 4px solid #7a563f;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.6);
}

.wood-card--old {
  transform: rotate(-10deg) translateX(15px);
  background: repeating-linear-gradient(90deg, #4b3629 0 10px, #79533a 10px 20px);
}

.wood-card--new {
  transform: rotate(8deg) translateX(-8px);
  background: repeating-linear-gradient(90deg, #b98554 0 12px, #d7aa75 12px 24px);
}

.hero-bullets {
  padding-right: 42px;
  color: #0b0b0b;
  font-size: 1.23rem;
  font-weight: 800;
}

.hero-bullets p {
  margin: 9px 0;
}

.hero-bullets p::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #0b0b0b;
  vertical-align: middle;
}

.hero-bullets a {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  margin-top: 19px;
  border-radius: 999px;
  background: #c72f34;
  color: #fff;
  padding-inline: 22px;
  font-size: 0.96rem;
}

.slider-arrow,
.carousel-arrow {
  position: absolute;
  z-index: 3;
  width: 23px;
  height: 42px;
  border: 0;
  background: transparent;
}

.slider-arrow::before,
.carousel-arrow::before {
  content: "";
  position: absolute;
  inset: 9px 4px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 1px 4px rgba(16, 24, 40, 0.1);
  cursor: pointer;
}

.slider-arrow::before {
  inset: 15px 12px;
  border-color: var(--brand-dark);
  border-width: 3px 0 0 3px;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.slider-arrow--left {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow--left::before,
.carousel-arrow--left::before {
  transform: rotate(-45deg);
}

.slider-arrow--right {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-arrow--right::before,
.carousel-arrow--right::before {
  transform: rotate(135deg);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  height: 42px;
  align-items: center;
  background: var(--bg);
}

.slider-dots span,
.slider-dots button {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: #c8c8c8;
  padding: 0;
  cursor: pointer;
}

.slider-dots .is-active {
  background: #555;
}

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

.hero-slider--image {
  background: #fff;
}

.hero-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 560;
  min-height: 180px;
  max-height: 520px;
  overflow: hidden;
  background: #f3f4f6;
}

.hero-image-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-image-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-image-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-slider--image .slider-dots {
  height: 34px;
}

.section {
  background: var(--bg);
}

.product-carousel {
  padding: 10px 0 48px;
}

.product-carousel h2 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.carousel-frame {
  position: relative;
}

.carousel-frame .product-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-frame .product-row::-webkit-scrollbar {
  display: none;
}

.carousel-frame .product-card {
  /* Mantem uma parte do proximo card visivel para indicar a rolagem. */
  flex: 0 0 calc((100% - 56px) / 4.35);
  scroll-snap-align: start;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.carousel-arrow {
  top: 158px;
}

.carousel-arrow--left {
  left: -38px;
}

.carousel-arrow--right {
  right: -38px;
}

.product-card,
.mini-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card {
  height: 430px;
  min-height: 430px;
  max-height: 430px;
  overflow: hidden;
  padding: 10px 10px 12px;
}

.product-image,
.mini-image {
  display: grid;
  place-items: center;
  background: #fff;
}

.product-image {
  min-height: 205px;
}

.product-image img {
  max-width: 100%;
  max-height: 205px;
}

.product-card h3 {
  min-height: 50px;
  margin: 10px 0 8px;
  color: #676767;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.18;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card p {
  min-height: 58px;
  max-height: 58px;
  margin: 0 0 8px;
  color: #676767;
  font-size: 0.78rem;
  line-height: 1.24;
  overflow: hidden;
}

.category-body {
  background: #f1f1f1;
}

.category-page {
  min-height: 560px;
  padding: 18px 0 66px;
}

.category-page__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 34px;
}

.category-breadcrumb {
  margin: 0 0 8px;
  color: #6a6a6a;
  font-size: 0.75rem;
}

.category-breadcrumb a:hover,
.category-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.category-page h1 {
  margin: 0;
  color: #272c35;
  font-size: 2rem;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.category-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #363b43;
  font-size: 0.8rem;
}

.category-sort select {
  min-height: 34px;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  background: #fff;
  color: #30343b;
  padding: 0 8px;
}

.category-sort button {
  min-height: 34px;
  border: 0;
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.category-filters {
  display: grid;
  gap: 12px;
}

.category-filter {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.13);
}

.category-filter summary {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #363b43;
  padding: 0 34px 0 15px;
  font-size: 0.78rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.category-filter summary::-webkit-details-marker {
  display: none;
}

.category-filter summary::after {
  position: absolute;
  right: 15px;
  content: "+";
  color: #363b43;
  font-size: 1.1rem;
  font-weight: 400;
}

.category-filter[open] summary {
  border-bottom: 1px solid #e5e5e5;
}

.category-filter[open] summary::after {
  content: "-";
}

.category-filter__links {
  display: grid;
  gap: 2px;
  padding: 8px;
}

.category-filter__links a {
  border-radius: 2px;
  color: #555b64;
  padding: 8px 7px;
  font-size: 0.78rem;
  line-height: 1.2;
}

.category-filter__links a:hover,
.category-filter__links a:focus-visible,
.category-filter__links a.is-active {
  background: #edf1f8;
  color: var(--brand);
  font-weight: 900;
}

.category-filter__branch {
  display: grid;
  gap: 2px;
}

.category-filter__branch-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
}

.category-filter__branch-head > a {
  min-width: 0;
}

.category-filter__branch-head > a.is-parent-active {
  color: var(--brand);
  font-weight: 800;
}

.category-filter__toggle {
  display: grid;
  width: 28px;
  min-width: 28px;
  min-height: 30px;
  place-items: center;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: #4b5563;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1;
}

.category-filter__toggle:hover,
.category-filter__toggle:focus-visible {
  background: #edf1f8;
  color: var(--brand);
}

.category-filter__branch.is-collapsed .category-filter__toggle {
  transform: rotate(-90deg);
}

.category-filter__children {
  display: grid;
  gap: 2px;
  margin: 0 0 3px 15px;
  padding: 4px 0 4px 6px;
}

.category-filter__children a {
  position: relative;
  padding-left: 17px;
  font-size: 0.74rem;
}

.category-filter__children a::before {
  position: absolute;
  left: 6px;
  content: ">";
  color: #768196;
}

.product-category-links a {
  color: var(--brand);
  font-weight: 800;
}

.category-results__count {
  margin: 0 0 12px;
  color: #666;
  font-size: 0.78rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-product-card {
  display: flex;
  min-width: 0;
  min-height: 0;
  align-self: start;
  flex-direction: column;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 10px;
}

.category-product-card__image {
  min-height: 170px;
  display: grid;
  place-items: center;
}

.category-product-card__image img {
  max-width: 100%;
  max-height: 170px;
}

.category-product-card > small {
  min-height: 15px;
  color: #777;
  font-size: 0.66rem;
  line-height: 1.15;
}

.category-product-card h2 {
  min-height: 48px;
  margin: 6px 0 10px;
  color: #555;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.category-product-card h2 a:hover,
.category-product-card h2 a:focus-visible {
  color: var(--brand);
  text-decoration: underline;
}

.category-product-card strong {
  margin-top: 10px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.category-product-card__buy {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  margin-top: 10px;
  padding: 0 8px;
  font-size: 0.67rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.category-product-card__buy:hover,
.category-product-card__buy:focus-visible {
  background: #087d40;
}

.category-empty {
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  background: #fff;
  padding: 28px;
}

.category-empty h2 {
  margin: 0 0 8px;
  color: #30343b;
  font-size: 1.1rem;
}

.category-empty p {
  margin: 0 0 16px;
  color: #666;
}

.category-empty a {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
}

.product-card strong,
.consult {
  margin-top: auto;
  color: var(--brand);
  font-weight: 900;
}

.buy-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.buy,
.buy-line a {
  display: inline-flex;
  min-height: 30px;
  min-width: 108px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--green);
  color: #fff;
  padding: 0 14px;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buy-line small {
  color: #30343b;
  font-size: 0.66rem;
  font-weight: 800;
}

.placeholder-can,
.large-placeholder {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.placeholder-can {
  width: 110px;
  height: 145px;
}

.placeholder-can--small {
  width: 92px;
  height: 116px;
}

.promo-pair {
  padding: 0 0 54px;
}

.promo-pair__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.promo-banner {
  display: block;
  aspect-ratio: 16 / 7;
  border-radius: 4px;
  background: #e7ebf1;
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-carousel--launch {
  padding-top: 0;
}

.mini-card {
  min-height: 260px;
  padding: 10px;
}

.mini-image {
  min-height: 160px;
}

.mini-image img {
  max-width: 100%;
  max-height: 155px;
}

.mini-card h3 {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}

.category-mosaic {
  padding: 4px 0 52px;
}

.mosaic-grid {
  display: grid;
  gap: 14px;
}

.mosaic-card {
  display: block;
  min-height: 208px;
  border-radius: 4px;
  overflow: hidden;
}

.mosaic-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mosaic-grid--1 {
  grid-template-columns: 1fr;
}

.mosaic-grid--1 .mosaic-card {
  min-height: 300px;
}

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

.mosaic-grid--3 {
  grid-template-columns: 1.42fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.mosaic-grid--3 .mosaic-card--primary {
  grid-row: span 2;
  min-height: 430px;
}

.newsletter {
  min-height: 385px;
  display: grid;
  align-items: center;
  background: #d8d8d8;
  text-align: center;
}

.newsletter h2 {
  margin: 0 0 26px;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.newsletter p {
  max-width: 420px;
  margin: 0 auto 28px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.newsletter__notice {
  margin: 0 0 12px;
  color: #0b6f3f;
  font-size: 0.9rem;
  font-weight: 700;
}

.newsletter__notice--error {
  color: #a42b2b;
}

.newsletter-form input {
  width: min(345px, 70vw);
  height: 43px;
  border: 1px solid #aaa;
  background: #dcdcdc;
  padding-inline: 14px;
}

.newsletter-form button {
  height: 43px;
  border: 0;
  background: var(--green);
  color: #fff;
  padding-inline: 18px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  background: #333;
  color: #fff;
}

.site-footer .wide {
  width: min(1170px, calc(100% - 40px));
}

.site-footer__top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 322px;
  gap: 0;
  padding: 27px 0 32px;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 20px;
}

.site-footer__column h2,
.site-footer__payments strong,
.site-footer__service strong {
  margin: 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column p,
.site-footer__service a,
.site-footer__service span {
  margin: 0;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.2;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  text-decoration: underline;
}

.site-footer__newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  max-width: 351px;
}

.site-footer__column--newsletter {
  gap: 13px;
}

.site-footer__newsletter-form input {
  min-width: 0;
  height: 42px;
  border: 0;
  border-radius: 2px;
  background: #4b4b4b;
  color: #fff;
  padding: 0 14px;
}

.site-footer__newsletter-form input::placeholder {
  color: #fff;
}

.site-footer__newsletter-form button {
  width: 77px;
  min-height: 42px;
  border: 0;
  border-radius: 2px;
  background: #f8f8f8;
  color: #333;
  padding: 0 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer__instagram {
  margin-top: 4px;
}

.site-footer__lower {
  border-top: 1px solid #494949;
}

.site-footer__lower-inner {
  position: relative;
  min-height: 143px;
}

.site-footer__payments {
  position: absolute;
  top: 27px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 17px;
}

.site-footer__service {
  position: absolute;
  top: 27px;
  left: 53.5%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badge {
  display: inline-flex;
  min-width: 31px;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: #fff;
  padding: 2px 4px;
  font-size: 0.54rem;
  font-weight: 900;
}

.payment-badge--visa {
  color: #1a4fa3;
}

.payment-badge--mastercard {
  color: #d63425;
}

.payment-badge--elo {
  color: #233d70;
}

.payment-badge--pix {
  background: #3f5a57;
  color: #9ee9d8;
}

.site-footer__identity {
  position: absolute;
  bottom: 12px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transform: translateX(-50%);
}

.site-footer__monogram {
  display: grid;
  width: 34px;
  height: 28px;
  place-items: center;
  border-radius: 5px;
  background: #fff;
  color: #303030;
  font-size: 0.74rem;
  font-weight: 900;
}

.site-footer__identity strong {
  font-size: 0.88rem;
}

.site-footer__legal {
  position: absolute;
  bottom: 9px;
  left: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.66rem;
  line-height: 1.2;
}

.empty-state {
  padding: 20px;
  border-radius: 4px;
  background: #fff;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  padding: 42px 0;
  background: #fff;
}

.product-body .product-detail,
.product-body .description {
  position: relative;
}

.product-body .product-detail::before,
.product-body .description::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  margin-left: -50vw;
  background: #fff;
}

.gallery {
  display: grid;
  min-height: 480px;
  place-items: center;
}

.gallery img {
  max-width: 100%;
  max-height: 520px;
}

.large-placeholder {
  width: min(420px, 80%);
  height: 520px;
  font-size: 5rem;
}

.summary h1 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  line-height: 1.08;
}

.breadcrumb,
.help,
.description p {
  color: var(--muted);
}

.buy-row {
  width: min(100%, 260px);
  margin-top: 22px;
}

.buy-row .buy {
  width: 100%;
}

.description {
  padding: 35px 0 70px;
  background: #fff;
}

.description p {
  max-width: 860px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .carousel-arrow {
    display: none;
  }
}

@media (max-width: 940px) {
  .topbar__inner {
    grid-template-columns: minmax(200px, 1fr) auto minmax(140px, 1fr);
    grid-template-areas: 'search logo action';
    gap: 16px;
    min-height: calc(var(--site-logo-height, 68px) + 20px);
    padding-block: 10px;
  }

  .search {
    grid-column: auto;
    order: initial;
    width: min(100%, 290px);
  }

  .hero-slide {
    grid-template-columns: 1fr 1fr;
    padding: 24px 16px;
  }

  .hero-product,
  .hero-surface {
    display: none;
  }

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

  .category-layout {
    grid-template-columns: 198px minmax(0, 1fr);
    gap: 18px;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
  }

  .promo-pair__grid,
  .mosaic-grid--2,
  .mosaic-grid--3 {
    grid-template-columns: 1fr;
  }

  .mosaic-grid--3 {
    grid-template-rows: none;
  }

  .mosaic-grid--3 .mosaic-card--primary {
    grid-row: auto;
    min-height: 240px;
  }

  .gallery {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .wide {
    width: min(100% - 20px, 1110px);
  }

  .topbar__inner.wide,
  .menu .wide {
    width: calc(100% - 20px);
  }

  .utility-bar__inner {
    min-height: 28px;
    font-size: 0.7rem;
    text-align: center;
  }

  .topbar {
    border-bottom: 1px solid #e4e7ec;
    background: #fff;
  }

  .hero-image-stage {
    aspect-ratio: 16 / 9;
  }

  .topbar__inner {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas: 'logo' 'search' 'action';
    gap: 10px;
    min-height: 0;
    padding: 10px 0 12px;
  }

  .logo {
    justify-self: center;
    color: var(--ink);
  }

  .logo strong {
    display: none;
  }

  .logo span {
    width: 34px;
    height: 28px;
    border-radius: 4px;
    background: #fff;
    color: var(--brand);
    font-size: 0.72rem;
  }

  .logo img {
    max-width: min(55vw, 220px);
    height: var(--site-logo-height-mobile, 38px);
  }

  .search {
    width: 100%;
    justify-self: center;
    height: 38px;
    border: 1px solid #aeb7c3;
    border-radius: 999px;
    background: #fff;
  }

  .search input,
  .search button {
    background: #fff;
    font-size: 0.75rem;
  }

  .search input {
    padding-inline: 10px;
  }

  .search button {
    width: 40px;
    padding: 0;
  }

  .search button::before {
    top: 10px;
    left: 10px;
  }

  .search button::after {
    top: 23px;
    left: 23px;
  }

  .whatsapp-head {
    position: static;
    justify-self: center;
    display: inline-flex;
    min-height: 34px;
    padding: 0 15px;
    font-size: 0.68rem;
  }

  .menu {
    position: static;
    min-height: 0;
    border: 0;
  }

  .menu > .wide {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu__trigger,
  .mobile-menu__close,
  .mobile-menu__branch-toggle {
    border: 0;
    background: transparent;
    color: #17202f;
    cursor: pointer;
  }

  .mobile-menu__trigger {
    position: absolute;
    top: max(30px, calc(28px + 10px + (var(--site-logo-height-mobile, 38px) - 38px) / 2));
    left: 4px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
  }

  .mobile-menu__icon,
  .mobile-menu__icon::before,
  .mobile-menu__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 1px;
    background: var(--brand);
    content: '';
  }

  .mobile-menu__icon {
    position: relative;
  }

  .mobile-menu__icon::before,
  .mobile-menu__icon::after {
    position: absolute;
    left: 0;
  }

  .mobile-menu__icon::before {
    top: -6px;
  }

  .mobile-menu__icon::after {
    top: 6px;
  }

  .mobile-menu__backdrop {
    position: fixed;
    z-index: 60;
    inset: 0;
    border: 0;
    background: rgba(16, 24, 40, 0.48);
  }

  .mobile-menu__drawer {
    position: fixed;
    z-index: 70;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(320px, 88vw);
    overflow-y: auto;
    background: #fff;
    box-shadow: 5px 0 12px rgba(16, 24, 40, 0.18);
    transform: translateX(-100%);
    transition: transform 180ms ease-out;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open .mobile-menu__drawer {
    transform: translateX(0);
  }

  .mobile-menu__drawer-head {
    display: flex;
    min-height: 52px;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #e4e7ec;
    padding-inline: 10px;
  }

  .mobile-menu__close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    font-size: 1.5rem;
    line-height: 1;
  }

  .mobile-menu__list,
  .mobile-menu__children {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu__list {
    padding: 7px 0 18px;
  }

  .mobile-menu__row,
  .mobile-menu__link {
    display: flex;
    min-height: 46px;
    align-items: center;
  }

  .mobile-menu__row a,
  .mobile-menu__link {
    flex: 1;
    color: #17202f;
    padding: 0 18px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .mobile-menu__branch-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    font-size: 1.25rem;
    transition: transform 180ms ease-out;
  }

  .mobile-menu__branch-toggle[aria-expanded='true'] {
    transform: rotate(90deg);
  }

  .mobile-menu__children {
    margin: 0 14px 4px;
    border-left: 1px solid #d8dee8;
  }

  .mobile-menu__children .mobile-menu__row a,
  .mobile-menu__children .mobile-menu__link {
    padding-left: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
  }

  .mobile-menu__trigger:focus-visible,
  .mobile-menu__close:focus-visible,
  .mobile-menu__branch-toggle:focus-visible,
  .mobile-menu__row a:focus-visible,
  .mobile-menu__link:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: -2px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-message h1 {
    max-width: 12ch;
    font-size: 2.05rem;
  }

  .hero-bullets {
    padding-right: 0;
    font-size: 1rem;
  }

  .product-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .carousel-frame .product-row {
    gap: 10px;
  }

  .carousel-frame .product-card {
    flex-basis: calc((100% - 10px) / 2.22);
  }

  .category-page {
    padding: 16px 0 42px;
  }

  .category-page__head {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }

  .category-page h1 {
    font-size: 1.45rem;
  }

  .category-sort {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .category-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-filters {
    gap: 8px;
  }

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

  .category-product-card {
    min-height: 0;
    padding: 8px;
  }

  .category-product-card__image {
    min-height: 135px;
  }

  .category-product-card__image img {
    max-height: 135px;
  }

  .category-product-card h2 {
    min-height: 50px;
    font-size: 0.76rem;
  }

  .category-product-card__buy {
    min-height: 34px;
    font-size: 0.62rem;
  }

  .product-card {
    height: 274px;
    min-height: 274px;
    max-height: 274px;
    padding: 8px;
  }

  .product-image {
    height: 128px;
    min-height: 128px;
    max-height: 128px;
    overflow: hidden;
  }

  .product-image img {
    max-height: 118px;
    object-fit: contain;
  }

  .product-card h3 {
    min-height: 48px;
    max-height: 48px;
    font-size: 0.76rem;
  }

  .product-card p {
    display: none;
  }

  .buy-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .buy-line a {
    width: 100%;
    min-width: 0;
    min-height: 34px;
  }

  .placeholder-can {
    width: 92px;
    height: 116px;
  }

  .promo-pair {
    padding-bottom: 38px;
  }

  .mosaic-grid--1 .mosaic-card,
  .mosaic-card {
    min-height: 190px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: min(100%, 345px);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
    padding: 32px 0;
  }

  .site-footer .wide {
    width: min(1170px, calc(100% - 40px));
  }

  .site-footer__lower-inner {
    position: static;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
    padding: 24px 0;
  }

  .site-footer__payments,
  .site-footer__service,
  .site-footer__identity,
  .site-footer__legal {
    position: static;
    transform: none;
  }

  .site-footer__payments,
  .site-footer__service {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__legal {
    text-align: left;
  }

  .product-detail {
    gap: 12px;
    padding-top: 16px;
  }

  .gallery {
    min-height: 260px;
  }

  .large-placeholder {
    width: 210px;
    height: 240px;
    font-size: 3rem;
  }

  .buy-row {
    width: 100%;
  }
}

@media (max-width: 359px) {
  .product-row {
    grid-template-columns: 1fr;
  }

  .carousel-frame .product-card {
    flex-basis: 100%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}

.contact-body {
  background: #f4f5f7;
}

.contact-page {
  padding: 42px 0 58px;
}

.contact-page__intro {
  margin-bottom: 28px;
}

.contact-page__intro p {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page__intro h1 {
  margin: 0;
  color: #272c35;
  font-size: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-page__intro span {
  display: block;
  margin-top: 10px;
  color: #59616d;
  font-size: 0.94rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-panel {
  border: 1px solid #dde1e6;
  border-radius: 4px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.contact-panel h2 {
  margin: 0;
  color: #252b33;
  font-size: 1.2rem;
}

.contact-panel > p {
  margin: 9px 0 22px;
  color: #5b6470;
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 17px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #303741;
  font-size: 0.83rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bcc4ce;
  border-radius: 3px;
  background: #fff;
  color: #252b33;
  padding: 11px 12px;
  font: inherit;
  font-size: 0.9rem;
  outline: 0;
}

.contact-form input {
  min-height: 42px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(25, 55, 116, 0.14);
}

.contact-form small {
  color: #bd1f1f;
  font-size: 0.76rem;
  font-weight: 400;
}

.contact-form button,
.contact-map__route {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  background: var(--brand);
  color: #fff;
  padding: 0 18px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible,
.contact-map__route:hover,
.contact-map__route:focus-visible {
  background: var(--brand-dark);
}

.contact-feedback {
  margin-bottom: 18px;
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 0.87rem;
  line-height: 1.4;
}

.contact-feedback--success {
  border: 1px solid #8ac8a7;
  background: #edf9f2;
  color: #14703e;
}

.contact-feedback--error {
  border: 1px solid #e0a6a6;
  background: #fff1f1;
  color: #a22222;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.contact-map__route {
  margin-top: 16px;
}

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

.contact-channel {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #fff;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-channel--whatsapp {
  background: var(--green);
}

.contact-channel--whatsapp:hover,
.contact-channel--whatsapp:focus-visible {
  background: #098449;
}

.contact-channel--instagram {
  background: var(--brand);
}

.contact-channel--instagram:hover,
.contact-channel--instagram:focus-visible {
  background: var(--brand-dark);
}

@media (max-width: 640px) {
  .contact-page {
    padding: 28px 0 40px;
  }

  .contact-page__intro {
    margin-bottom: 20px;
  }

  .contact-page__intro h1 {
    font-size: 1.55rem;
  }

  .contact-layout,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-panel {
    padding: 20px;
  }

  .contact-map iframe {
    height: 310px;
  }

  .contact-form button,
  .contact-map__route,
  .contact-channels__buttons {
    width: 100%;
  }

  .contact-channels__buttons {
    grid-template-columns: 1fr;
  }
}

.about-body {
  background: #fff;
}

.about-intro {
  background: #fff;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  gap: 54px;
  padding: 54px 0;
}

.about-intro__copy {
  max-width: 570px;
}

.about-intro__eyebrow {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-intro h1 {
  margin: 0;
  color: #252b33;
  font-size: 2.45rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.about-intro__copy > :last-child {
  margin: 18px 0 0;
  color: #4f5966;
  font-size: 1.03rem;
  line-height: 1.6;
}

.about-intro__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e1e4e8;
  background: #fff;
}

.about-intro__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-story {
  padding-top: 38px;
}

.about-story p {
  margin: 0;
  color: #3d4651;
  font-size: 1rem;
  line-height: 1.72;
}

.about-story p + p {
  margin-top: 22px;
}

@media (max-width: 640px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 0;
  }

  .about-intro h1 {
    font-size: 1.8rem;
  }

  .about-intro__copy > :last-child {
    margin-top: 13px;
    font-size: 0.95rem;
  }

  .about-intro__media {
    width: min(100%, 440px);
  }

  .about-story {
    padding-top: 28px;
  }

  .about-story p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

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