:root {
  --primary: #005b49;
  --primary-dark: #004a3b;
  --btnPrimary: #0f8f6d;
  --secondary: #f5f3ee;
  --surface: #ffffff;
  --background: #ffffff;
  --text: #11322e;
  --text-soft: #67757d;
  --muted: #96a0a7;
  --border: #e8e8e8;
  --border-strong: #d8d8d8;
  --pill: #f2f2f2;
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container-width: 1240px;
  --container-mobile-padding: 14px;
  --header-height: 84px;
  --transition: .22s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button, input, details, summary { outline: none; }
button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 91, 73, 0.18);
}

.product-info,
.product-gallery {
  border: 1px solid var(--border);
  padding: 20px;
}

.no-scroll { overflow: hidden; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.container {
  width: min(var(--container-width), calc(100% - 32px));
  margin-inline: auto;
}
.narrow-container { width: min(1120px, calc(100% - 32px)); }

.topbar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.topbar__inner {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 35;
}
.header__inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header-left-icons,
.header-right-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-right-icons { justify-content: flex-end; }

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
  transition: var(--transition);
}
.icon-button:hover { background: #f7f8f8; }
.icon-button--plain {
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  color: var(--primary);
  font-size: 22px;
}
.icon-button--plain:hover { background: transparent; opacity: .82; }
.cart-button { position: relative; }
.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  border: 1px solid #d8e8e3;
  font-size: 11px;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary);
}
.brand__symbol {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  line-height: 1;
}
.brand__badge-icon {
  position: absolute;
  right: -6px;
  bottom: -2px;
  font-size: 13px;
  background: #fff;
  border-radius: 50%;
}
.brand__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.brand__line { display: block; }
.brand__name-main {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand__line--small {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
  letter-spacing: .02em;
}
.brand__line--small::before,
.brand__line--small::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: rgba(0, 91, 73, 0.55);
  vertical-align: middle;
  margin: 0 4px;
}
.brand--drawer,
.brand--footer { justify-content: flex-start; }

.header-search-row,
.desktop-search-row { padding-bottom: 14px; }
.header-search {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  height: 48px;
  overflow: hidden;
  background: #fff;
}
.header-search input {
  flex: 1;
  height: 100%;
  border: 0;
  padding: 0 16px;
  color: var(--text);
  font-size: 16px;
}
.header-search input::placeholder { color: #9a9ea3; }
.header-search button {
  width: 56px;
  height: 100%;
  border: 0;
  border-left: 1px solid #e7e7e7;
  background: #fff;
  color: var(--primary);
  font-size: 22px;
}
.desktop-search-toggle,
.desktop-search-row { display: none; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 48;
}
.mobile-drawer,
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: min(92vw, 380px);
  background: #fff;
  z-index: 50;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease;
}
.mobile-drawer {
  left: 0;
  transform: translateX(-102%);
}
.cart-drawer {
  right: 0;
  transform: translateX(102%);
}
.mobile-drawer.open,
.cart-drawer.open { transform: translateX(0); }
.drawer__header {
  padding: 18px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.drawer__nav {
  display: grid;
  gap: 2px;
  padding: 12px 10px;
}
.drawer__nav a,
.drawer__footer a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
}
.drawer__nav a:hover,
.drawer__footer a:hover { background: #f7f8f8; }
.drawer__footer {
  padding: 12px 10px 20px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.cart-drawer__header small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.cart-drawer__header h2 {
  margin: 0;
  font-size: 20px;
}
.cart-drawer__body { padding: 18px; flex: 1; overflow: auto; }
.cart-empty {
  min-height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  color: var(--text-soft);
}
.cart-empty i { font-size: 42px; color: var(--primary); }
.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
}
.cart-item__image {
  border-radius: 12px;
  background: #f3f3f3 center / cover no-repeat;
  aspect-ratio: 1 / 1;
}
.cart-item__content {
  display: grid;
  gap: 7px;
}
.cart-item__content strong { font-size: 15px; line-height: 1.45; }
.cart-item__content span { font-size: 14px; color: var(--text-soft); }
.cart-item__content b { font-size: 18px; color: var(--primary-dark); }
.cart-drawer__footer {
  padding: 18px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cart-total span { color: var(--text-soft); }
.cart-total strong { font-size: 20px; color: var(--primary-dark); }

/*
main { padding-bottom: 46px; }
*/

.breadcrumb {
  padding-left: 4px; padding-right: 4px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 52px;
  color: #8b97a0;
  font-size: 13px;
}
.breadcrumb i { font-size: 10px; color: #777; font-weight: 300; }
.breadcrumb span:last-child { color: #444; font-weight: 500; }

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: start;
  gap: 42px;
}
.product-gallery { position: sticky; top: calc(var(--header-height) + 28px); }
.gallery-main-wrap { position: relative; }
.gallery-main {
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: contain;
  background: #fff;
}
.gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  color: var(--primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 12px;
  box-shadow: var(--shadow-soft);
}
.gallery-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  z-index: 2;
}
.gallery-arrow--prev { left: 16px; }
.gallery-arrow--next { right: 16px; }
.gallery-dots {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #cfd5d9;
  padding: 0;
}
.gallery-dot.active { background: var(--primary); }
.gallery-thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 0px;
}
.gallery-thumb {
  width: 56px;
  height: 76px;
  border: 1px solid #e8dbcd;
  border-radius: 8px;
  padding: 2px;
  background: #fff;
  transition: var(--transition);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.product-info h1 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
}
.product-tag--outline {
  background: #fff;
  border: 1px solid #009b3a;
  color: #009b3a;
}
.product-tag--soft {
  background: #f5f5f5;
  color: #a7a5a5;
}
.rating-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
}
.stars {
  color: #ffb300;
  letter-spacing: 1px;
  font-size: 14px;
}
.stars--large { font-size: 18px; }
.rating-line a {
  color: #6f7d84;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0 22px;
}
.price-area { display: grid; gap: 10px; }
.price-label {
  font-size: 15px;
  color: var(--text-soft);
}
.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-row strong {
  color: #102f2a;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.installment {
  font-size: 21px;
  color: #37474f;
}
.pix-highlight {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 17px;
}
.payment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border: solid 1px #99999947;
  padding: 4px 10px;
  background: transparent;
  font-weight: normal;
  font-size: 16px;
}

.quantity-block {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}
.field-label {
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.quantity-control {
  width: 150px;
  height: 52px;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.quantity-control button,
.quantity-control input {
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.quantity-control input { appearance: textfield; }

.btn {
  min-height: 54px;
  border-radius: 12px;
  border: 0;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: var(--transition);
}
.btn--primary {
  background: var(--btnPrimary);
  color: #fff;
}
.btn--primary:hover { background: var(--primary-dark); }

.btn--outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid #d9d9d9;
}
.btn--outline:hover { background: #f8f9f9; }
.btn--buy {
  width: 100%;
  margin-top: 20px;
  min-height: 68px;
  font-size: 17px;
  font-weight: 700;
}
.btn--full { width: 100%; }
.buy-feedback {
  min-height: 22px;
  padding-top: 8px;
  color: #108641;
  font-size: 13px;
  font-weight: 700;
}

.shipping-box,
.trust-grid,
.info-accordion details,
.review-card,
.product-card,
.store-benefit,
.footer__contact,
.description-image-card,
.spec-grid div {
  box-shadow: none;
}
.shipping-box {
  margin: 0px auto 12px auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}
.shipping-box__title {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.shipping-box__title i {
  color: var(--primary);
  font-size: 22px;
}
.shipping-box__title strong {
  display: block;
  font-size: 17px;
}
.shipping-box__title span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  margin-top: 4px;
}
.shipping-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 16px;
}
.shipping-input-wrap { display: grid; gap: 8px; }
.shipping-input-wrap label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}
.shipping-input-wrap input {
  width: 100%;
  height: 50px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  padding: 0 14px;
}
.cep-link {
  display: inline-block;
  margin-top: 11px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}
.shipping-results {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: #f7f8f8;
  border: 1px solid #ebeeee;
}
.shipping-option i {
  color: var(--primary);
  font-size: 18px;
}
.shipping-option > div {
  flex: 1;
  display: grid;
  gap: 2px;
}
.shipping-option strong { font-size: 14px; }
.shipping-option span { color: var(--text-soft); font-size: 13px; }
.shipping-option b { color: var(--primary-dark); font-size: 15px; }

.trust-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;;
  gap: 10px;
}
.trust-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.trust-card i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f9f7;
  color: var(--primary);
  font-size: 18px;
}
.trust-card strong {
  display: block;
  font-size: 13px;
  margin-bottom: 0px;
}
.trust-card span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.info-accordion {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.info-accordion details {
    color: var(--primary);
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.info-accordion summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.info-accordion summary::-webkit-details-marker { display: none; }
.info-accordion summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.info-accordion summary i:first-child { color: var(--primary); }
.info-accordion details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-heading--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-heading--row { align-items: center; }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.section-heading h2,
.about-copy h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 36px;
  letter-spacing: -0.03em;
}
.section-heading p,
.about-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.description-section,
.reviews-section,
.about-section,
.related-section,
.store-benefits {
  margin-top: 72px;
}
.description-hero--image img,
.description-image-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: #fff;
}
.description-hero--image img {
  aspect-ratio: 16 / 8.6;
  object-fit: contain;
}
.description-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}
.description-split--reverse { grid-template-columns: .95fr 1.05fr; }
.description-split--reverse .description-copy { order: 2; }
.description-split--reverse .description-image-card { order: 1; }
.description-copy h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}
.description-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.8;
}
.description-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.description-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24443e;
  font-weight: 600;
}
.description-copy li i { color: var(--primary); font-size: 18px; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.spec-grid div {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.spec-grid span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  margin-bottom: 6px;
}
.spec-grid strong { font-size: 15px; color: var(--primary-dark); }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviews-score {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f8f6;
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
}
.reviews-summary div {
  display: grid;
  gap: 6px;
  color: var(--text-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: #fff;
}
.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4f2;
  color: var(--primary);
  font-weight: 800;
}
.review-author strong { display: block; font-size: 14px; margin-bottom: 4px; }
.review-author span:last-child { color: var(--text-soft); font-size: 12px; }
.review-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}
.verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #108641;
  font-size: 13px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.description-image-card--about img { aspect-ratio: 1 / 1; object-fit: contain; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 8px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}
.related-viewport { overflow: hidden; }
.related-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .28s ease;
}
.product-card {
  flex: 0 0 calc((100% - 54px) / 4);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.product-card__image {
  position: relative;
  background: #f7f8f8;
}
.product-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
}
.product-card__body { padding: 16px; }
.product-card__body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.45;
  min-height: 46px;
  color: var(--primary-dark);
}
.product-card__price {
  font-size: 24px;
  font-weight: 800;
  color: #102f2a;
  letter-spacing: -0.03em;
}
.product-card__installment {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 13px;
}

.store-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.store-benefit {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.store-benefit i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff7f4;
  color: var(--primary);
  font-size: 21px;
}
.store-benefit strong { display: block; margin-bottom: 4px; font-size: 16px; }
.store-benefit span { color: var(--text-soft); font-size: 14px; }

.footer {
  background: var(--primary);
  padding-top: 44px;
  padding-bottom: 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .7fr 1fr;
  gap: 26px;
}
.footer__brand-col p,
.footer__contact p,
.footer__grid a {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}
.footer__grid h3 {
  margin: 0 0 14px;
  font-size: 17px;
  color: #fff;
}
.footer__grid > div:not(.footer__brand-col):not(.footer__contact) {
  display: grid;
  align-content: start;
}
.footer__grid a { margin-bottom: 7px; }
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}
.footer__contact p {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.payment-methods span,
.security-seal {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
}
.security-seal {
  margin-top: 12px;
  gap: 8px;
  width: fit-content;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid #e3e5e6;
  color: #fff;
  font-size: 13px;
}

.modal-backdrop,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 65;
}
.modal-backdrop {
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 16px;
}
.payment-modal {
  width: min(760px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 { margin: 0; font-size: 28px; color: var(--primary-dark); }
.payment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 24px 0;
}
.payment-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-soft);
  padding: 10px 14px;
  font-weight: 700;
}
.payment-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.payment-content { padding: 24px; }
.payment-panel { display: none; }
.payment-panel.active { display: block; }
.installment-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
}
.installment-row {
  display: grid;
  grid-template-columns: .5fr 1fr .8fr;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
}
.installment-row:nth-child(odd) { background: #fafbfb; }
.installment-row strong { justify-self: end; color: var(--primary-dark); }
.payment-highlight {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: #f4f9f7;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.payment-highlight i { font-size: 26px; color: var(--primary); }
.payment-highlight strong { display: block; font-size: 18px; margin-bottom: 4px; }
.payment-highlight span { color: var(--text-soft); font-size: 14px; }

.lightbox {
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  padding: 18px;
}
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  border-radius: 20px;
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(24px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #102f2a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 80;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#logoheader {
  height: 40px;
}


.promo-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;
  max-width: 100%;

  padding: 8px 12px;

  background: #ffffff;
  border: 1px solid #dfe3e1;
  border-radius: 4px;

  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #111;
}



.promo-box {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;
  max-width: 100%;

  padding: 8px 12px;

  background: #ffffff;
  border: 1px solid #dfe3e1;
  border-radius: 4px;

  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #111;
}



.promo-pix {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.pix-icon {
  color: #00a86b;
  font-size: 18px;
  line-height: 1;
}

.promo-pix strong {
  font-weight: 700;
}

.promo-priority {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px 8px;

  background: #00b578;
  color: #ffffff;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;

  white-space: nowrap;
}

.header__inner {padding-left: 4px; padding-right: 4px;}
@media (min-width: 1440px) {
  :root { --container-width: 1320px; }
}

@media (max-width: 1199px) {
  .product-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-gallery { position: static; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .product-info,
  .product-gallery {
    border: none !important;
    padding: 0 !important;
  }

}


@media (max-width: 992px) {
  :root { --header-height: 86px; }
  .container, .narrow-container { width: min(var(--container-width), calc(100% - 28px)); }
  .section-heading h2,
  .about-copy h2 { font-size: 30px; }
  .description-split,
  .description-split--reverse,
  .about-grid,
  .store-benefits__grid { grid-template-columns: 1fr; }
  .description-split--reverse .description-copy,
  .description-split--reverse .description-image-card { order: initial; }
  .product-card { flex-basis: calc((100% - 18px) / 2); }
}

@media (max-width: 768px) {
  .topbar__inner { height: 42px; font-size: 13px; }
  .container, .narrow-container { width: calc(100% - 28px); }
  .site-header { position: static; }
  .header__inner { min-height: 72px; }
  .brand__symbol { font-size: 33px; }
  .brand__name-main { font-size: 15px; }
  .brand__line--small { font-size: 9px; }
  .header-search-row { padding-top: 0; }
  .breadcrumb {
    min-height: 44px;
    font-size: 12px;
    gap: 7px;
  }
  .product-section { gap: 2px; }
  .gallery-main img {
    aspect-ratio: auto;
    height: auto;
  }
  .gallery-badge {
    top: 12px;
    left: 12px;
    font-size: 12px;
    padding: 7px 10px;
  }
  .gallery-zoom,
  .gallery-arrow { display: none; }
  .gallery-dots { display: none; }
  .gallery-thumbs {
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }
  .gallery-thumb {
    width: 53px;
    height: 73px;
  }
  .product-meta { margin-top: 12px; margin-bottom: 10px; }
  .product-info h1 {
    font-size: 24px;
    line-height: 1.25;
  }
  .rating-line { margin-top: 8px; font-size: 13px; }
  .product-divider { margin: 12px 0 18px; }
  .price-label { font-size: 14px; }
  .price-row strong {
    font-size: 29px;
  }
  .installment,
  .pix-highlight { font-size: 16px; }
  .payment-link { font-size: 15px; }
  .quantity-control { width: 132px; height: 48px; }
  .shipping-form { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .related-track { gap: 12px; }
  .product-card { flex-basis: calc((100% - 12px) / 2); }
  .store-benefits__grid { gap: 12px; }
  .footer__grid,
  .footer__bottom { grid-template-columns: 1fr; display: grid; }
  .footer__bottom { gap: 6px; }
  .modal-backdrop { padding: 10px; }
  .payment-modal { border-radius: 20px; }
  .modal-header,
  .payment-content { padding: 18px; }
  .payment-tabs { padding: 16px 18px 0; }
}

@media (max-width: 576px) {
  body { background: #fff; }
  .container, .narrow-container { width: calc(100% - 30px); }
  .topbar__inner { height: 43px; }
  .header__inner { min-height: 66px; }
  .breadcrumb { margin-top: 4px; }
  .product-section { gap: 2px; }
  .product-meta { gap: 8px; }
  .product-tag { font-size: 11px; }
  .product-info h1 { font-size: 20px; }
  .price-row strong { font-size: 25px; }
  .installment,
  .pix-highlight,
  .payment-link { font-size: 14px; }
  .btn--buy { min-height: 64px; font-size: 14px; }
  .shipping-box,
  .review-card,
  .product-card__body,
  .store-benefit,
  .trust-card,
  .info-accordion summary,
  .info-accordion details p { padding-left: 14px; padding-right: 14px; }
  .store-benefit { padding-top: 16px; padding-bottom: 16px; }
  .section-heading h2,
  .about-copy h2,
  .description-copy h3 { font-size: 24px; }
  .description-section,
  .reviews-section,
  .about-section,
  .related-section,
  .store-benefits { margin-top: 52px; }
}

@media (max-width: 430px) {
  .container, .narrow-container { width: calc(100% - 16px); }
  .gallery-thumb { width: 51px; height: 71px; }
  .reviews-score { width: 58px; height: 58px; font-size: 24px; }
}

@media (max-width: 390px) {
  .topbar__inner { font-size: 12px; }
  .header-left-icons, .header-right-icons { gap: 12px; }
  .icon-button--plain { font-size: 18px; }
  .brand__symbol { font-size: 30px; }
  .brand__name-main { font-size: 14px; }
  .gallery-thumb { width: 48px; height: 68px; }
  .product-info h1 { font-size: 18px; }
  .price-row strong { font-size: 24px; }
}

@media (max-width: 360px) {
  .container, .narrow-container { width: calc(100% - 14px); }
  .header-left-icons, .header-right-icons { gap: 10px; }
  .gallery-thumb { width: 44px; height: 63px; }
  .price-row strong { font-size: 22px; }
  .product-card { flex-basis: 84%; }
}




.buy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
}

.quantity-block {
  margin: 0;
  flex: 0 0 120px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 40px 40px;

  width: 120px;
  height: 60px;

  border: 1px solid #e3e3e3;
  border-radius: 11px;

  background: #fff;
  overflow: hidden;
}

.quantity-control button,
.quantity-control input {
  width: 100%;
  height: 100%;

  border: 0;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  font-size: 16px;
  color: #172b2b;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control input {
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
}

/* tira as setinhas do input number */
.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn--buy {
  flex: 1;

  width: auto;
  height: 60px;
  min-height: 60px;

  margin: 0;

  border: 0;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}



.shipping-box {
  width: 100%;
  padding: 16px 10px;

  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 3px;

  font-family: Arial, sans-serif;
}

.shipping-title {
  margin-bottom: 14px;

  text-align: center;

  font-size: 16px;
  font-weight: 700;

  color: var(--primary);
}


/* CEP + BOTÃO NA MESMA LINHA */
.shipping-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 90%;
  margin: auto;
}


/* CAMPO CEP */
.shipping-form input {
  flex: 1;

  min-width: 0;
  height: 40px;

  padding: 0 10px;

  background: #fff;

  border: 1px solid #d9d9d9;
  border-radius: 3px;

  font-size: 16px;

  color: #555;
}

.shipping-form input::placeholder {
  color: #999;
}


/* BOTÃO CALCULAR */
.shipping-form button {
  width: 130px;
  height: 40px;

  flex-shrink: 0;

  border: 0;
  border-radius: 3px;

  background: var(--primary-dark);
  color: #fff;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;
}


/* ENDEREÇO */
.shipping-address {
  display: flex;
  align-items: center;
  gap: 6px;

  margin-top: 10px;

  font-size: 15px;
  color: #111;
}

.shipping-address i {
  color: #000;
}


/* RESULTADO */
.shipping-results {
  margin-top: 8px;

  border-bottom: 1px solid #ddd;
}


/* LINHAS DA TABELA */
.shipping-table {
  display: grid;

  grid-template-columns:
    1fr
    1fr
    1fr;

  align-items: center;

  min-height: 44px;

  border-top: 1px solid #ddd;
}


/* CÉLULAS */
.shipping-table > div {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 6px;

  text-align: center;

  font-size: 14px;
  font-weight: 700;

  color: var(--primary);
}


/* LINHAS ENTRE COLUNAS */
.shipping-table > div + div {
  border-left: 1px solid #e5e5e5;
}


/* CABEÇALHO */
.shipping-table-head {
  border-top: 0;
}

.shipping-table-head > div {
  font-weight: 700;
  color: var(--primary);
}


/* NOME PADRÃO / EXPRESSO */
.shipping-table:not(.shipping-table-head)
> div:first-child {
  color: #555;
}


/* MOBILE */
@media (max-width: 480px) {

  .shipping-form {
    gap: 8px;
  }

  .shipping-form button {
    width: 120px;
  }

  .shipping-form input,
  .shipping-form button {
    height: 40px;
  }

  .shipping-table > div {
    font-size: 13px;
    padding: 9px 4px;
  }

}

.payment-methods-box {
  position: relative;

  width: 100%;

  margin-top: 20px;
  padding: 26px 18px 13px;

  background: #fff;

  border: 1px solid #e4e4e4;
  border-radius: 5px;
}


/* TÍTULO NO MEIO DA BORDA */
.payment-methods-title {
  position: absolute;

  top: -9px;
  left: 50%;

  transform: translateX(-50%);

  padding: 0 35px;

  background: #fff;

  color: var(--primary);

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;

  white-space: nowrap;
}


/* LISTA DAS FORMAS DE PAGAMENTO */
.payment-methods-list {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  flex-wrap: wrap;
}


/* CADA BANDEIRA */
.payment-card {
  width: 44px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  border: 1px solid #e5e5e5;
  border-radius: 3px;
}


/* IMAGENS */
.payment-card img {
  display: block;

  max-width: 34px;
  max-height: 19px;

  object-fit: contain;
}


/* MOBILE */
@media (max-width: 480px) {

  .payment-methods-box {
    max-width: 100%;

    padding-left: 10px;
    padding-right: 10px;
  }

  .payment-methods-title {
    padding: 0 18px;
  }

  .payment-methods-list {
    gap: 6px;
  }

  .payment-card {
    width: 42px;
    height: 28px;
  }

}

.customer-opinions {
  width: 100%;
  max-width: 1460px;

  margin: 0 auto;

  padding: 70px 20px 60px;

  font-family: Arial, sans-serif;

  overflow: hidden;
}


/* TÍTULO */
.customer-opinions__title {
  margin: 0 0 30px;

  text-align: center;

  font-size: 30px;
  font-weight: 700;

  color: #202b36;
}


/* ÁREA VISÍVEL */
.customer-opinions__viewport {
  width: 100%;
  overflow: hidden;
}


/* TRILHO */
.customer-opinions__track {
  display: flex;

  gap: 16px;

  width: 100%;

  transition: transform 0.35s ease;
}


/* CARD */
.customer-review-card {
  flex: 0 0 calc((100% - 32px) / 3);

  min-width: calc((100% - 32px) / 3);

  padding: 18px 16px;

  background: #ffffff;

  border-radius: 8px;

  border: 1px solid rgba(0,0,0,.05);

  box-sizing: border-box;
}


/* CABEÇALHO */
.customer-review-card__header {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 12px;
}


/* FOTO */
.customer-review-card__avatar {
  width: 58px;
  height: 58px;

  flex-shrink: 0;

  object-fit: cover;

  border-radius: 50%;

  border: 2px solid #ffffff;

  box-shadow:
    0 0 0 1px #dddddd;
}


/* NOME */
.customer-review-card__name {
  font-size: 21px;
  font-weight: 700;

  color: #202b36;
}


/* ESTRELAS */
.customer-review-card__stars {
  margin-bottom: 8px;

  color: #ffb400;

  font-size: 19px;

  line-height: 1;
}


/* TEXTO */
.customer-review-card__text {
  margin: 0;

  color: #26333c;

  font-size: 16px;

  line-height: 1.55;
}


/* CONTROLES */
.customer-opinions__controls {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 16px;

  margin-top: 30px;
}


/* SETAS */
.customer-opinions__arrow {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: #ffffff;

  border: 0;
  border-radius: 50%;

  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.10);

  color: #000000;

  font-size: 32px;

  cursor: pointer;

  transition: 0.2s ease;
}

.customer-opinions__arrow:hover {
  
  transform: scale(1.2);

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.14);
}


/* =========================================
   TABLET
   2 CARDS
   ========================================= */

@media (max-width: 992px) {

  .customer-opinions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .customer-review-card {
    flex: 0 0 calc((100% - 14px) / 2);

    min-width: calc((100% - 14px) / 2);
  }

  .customer-opinions__track {
    gap: 14px;
  }

}


/* =========================================
   MOBILE
   1 CARD
   ========================================= */

@media (max-width: 600px) {


  .customer-opinions__title {
    margin-bottom: 28px;

    font-size: 22px;
  }

  .customer-opinions__track {
    gap: 0;
  }

  .customer-review-card {
    flex: 0 0 100%;

    min-width: 100%;

    padding:
      17px 15px
      16px;
  }

  .customer-review-card__avatar {
    width: 56px;
    height: 56px;
  }

  .customer-review-card__name {
    font-size: 20px;
  }

  .customer-review-card__stars {
    font-size: 19px;
  }

  .customer-review-card__text {
    font-size: 16px;
  }

  .customer-opinions__controls {
    margin-top: 28px;
  }

}


.best-sellers {
  width: 100%;

  padding: 45px 0 55px 0;

  background: #ffffff;

  overflow: hidden;

  font-family: Arial, sans-serif;
}


/* CONTAINER */
.best-sellers__container {
  width: 100%;
  max-width: 1520px;

  margin: 0 auto;

  padding: 0 18px;
}


/* TÍTULO */
.best-sellers__title {
  margin: 0 0 28px;

  color: var(--primary);

  font-size: 27px;
  font-weight: 700;
}


/* JANELA DO CARROSSEL */
.best-sellers__viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;

  cursor: grab;

  user-select: none;
}

.best-sellers__viewport:active {
  cursor: grabbing;
}


/* TRACK */
.best-sellers__track {
  display: flex;
  max-width: 100%;

  align-items: stretch;

  gap: 8px;

  transition: transform 0.35s ease;

  will-change: transform;
}


/* CARD */
.best-product-card {
  flex: 0 0 calc((100% - 32px) / 5);
  min-width: calc((100% - 32px) / 5);

  box-sizing: border-box;
  overflow: hidden;
}


/* LINK */
.best-product-card__link {
  display: flex;
  flex-direction: column;

  height: 100%;

  color: inherit;

  text-decoration: none;
}


/* IMAGEM */
.best-product-card__image-wrap {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #ffffff;
}

.best-product-card__image {
  width: 100%;

  aspect-ratio: 1 / 1.2;

  object-fit: cover;

  display: block;

  transition: transform 0.25s ease;
}

.best-product-card:hover
.best-product-card__image {
  transform: scale(1.015);
}


/* CONTEÚDO */
.best-product-card__content {
  display: flex;
  flex-direction: column;

  flex: 1;

  padding-top: 12px;
}


/* NOME */
.best-product-card__name {
  margin: 0 0 0px;

  min-height: 42px;

  color: #438478;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}


/* PREÇO */
.best-product-card__price {
  display: block;

  margin-bottom: 2px;

  color: #111111;

  font-size: 18px;
  font-weight: 700;
}


/* PARCELAMENTO */
.best-product-card__installments {
  color: #438478;

  font-size: 14px;

  line-height: 1.3;
}

.best-product-card__installments strong {
  color: #111111;

  font-weight: 700;
}


/* FRETE */
.best-product-card__shipping {
  width: 86%;
  max-width: 86%;

  min-height: 38px;

  padding: 0 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  border: 1px dashed #14c978;
  border-radius: 4px;

  color: #15bd70;
  font-size: 13px;
  line-height: 1.2;

  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;

  margin: auto;
}

.best-product-card__shipping strong {
  font-size: 12px;
  font-weight: 700;
}


/* ESPAÇO ANTES DO FRETE */
.best-product-card__content
.best-product-card__shipping {
  margin-top: 32px;
}




/* =================================
   DESKTOP MÉDIO
   4 CARDS
   ================================= */
@media (max-width: 1300px) {

  .best-product-card {
    flex: 0 0 calc((100% - 24px) / 4);

    min-width: calc((100% - 24px) / 4);
  }

}


/* =================================
   TABLET
   3 CARDS
   ================================= */
@media (max-width: 992px) {

  .best-sellers__container {
    padding: 0 14px;
  }

  .best-product-card {
    flex: 0 0 calc((100% - 16px) / 3);

    min-width: calc((100% - 16px) / 3);
  }

}


/* =================================
   CELULAR
   2 CARDS
   ================================= */
@media (max-width: 600px) {


  .best-sellers__container {
    padding: 0 13px;
  }

  .best-sellers__title {
    margin-bottom: 24px;

    font-size: 24px;
  }

  .best-sellers__track {
    gap: 8px;
  }

  .best-product-card {
    flex: 0 0 62%;
    min-width: 62%;
  }

  .best-product-card__image {
    aspect-ratio: 0.78;
  }

  .best-product-card__name {
    min-height: 42px;

    font-size: 14px;

    line-height: 1.45;
  }

  .best-product-card__price {
    font-size: 18px;
  }

  .best-product-card__installments {
    font-size: 12px;
  }

  .best-product-card__shipping {
    min-height: 38px;

    margin-top: 28px;

    font-size: 13px;
  }

  .best-sellers__controls {
    margin-top: 22px;
  }

}


/* =================================
   CELULAR PEQUENO
   MOSTRA 1.7 CARD
   ================================= */
@media (max-width: 390px) {

  .best-product-card {
    flex: 0 0 58%;

    min-width: 58%;
  }

}

.best-sellers__viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;

  cursor: grab;

  user-select: none;

  touch-action: pan-y;
}

.best-sellers__viewport:active {
  cursor: grabbing;
}

.best-sellers__track {
  display: flex;

  gap: 8px;

  will-change: transform;

  transform: translate3d(0, 0, 0);
}

.best-product-card,
.best-product-card img,
.best-product-card a {
  user-select: none;

  -webkit-user-drag: none;
}



.single-banner {
  width: 100%;
  overflow: hidden;
}

.single-banner picture {
  display: block;
  width: 100%;
}

.single-banner__image {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}


.about-store-section {
  width: 100%;

  /*
  background: #005a43;
  */

  padding: 36px 20px 60px;

  box-sizing: border-box;
}

.about-store-container {
  width: 100%;
  max-width: 1540px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  align-items: center;

  gap: 140px;
}


/* IMAGEM */
.about-store-image {
  width: 100%;
}

.about-store-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}


/* TEXTO */
.about-store-text {
  width: 100%;

  max-width: 430px;

  margin: 0 auto;

  text-align: center;

  color: #ffffff;
}

.about-store-text p {
  margin: 0 0 20px;

  color: var(--primary);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.28;
}

.about-store-text p:last-child {
  margin-bottom: 0;
}

.about-store-text strong {
  font-weight: 700;
}


/* =====================================
   TABLET
   ===================================== */

@media (max-width: 1100px) {

  .about-store-container {
    gap: 60px;
  }

  .about-store-text {
    max-width: 390px;
  }

}


/* =====================================
   MOBILE
   ===================================== */

@media (max-width: 767px) {

  .about-store-section {
    padding: 22px 10px 42px;
  }

  .about-store-container {
    display: flex;
    flex-direction: column;

    gap: 28px;
  }


  /* IMAGEM EM CIMA */
  .about-store-image {
    width: 100%;
  }

  .about-store-image img {
    width: 100%;

    height: auto;

    object-fit: cover;
  }


  /* TEXTO EMBAIXO */
  .about-store-text {
    width: 100%;

    max-width: 330px;

    margin: 0 auto;

    padding: 0 6px;

    text-align: center;
  }

  .about-store-text p {
    margin-bottom: 18px;

    font-size: 15px;

    line-height: 1.3;
  }

}


/* CELULAR PEQUENO */
@media (max-width: 390px) {

  .about-store-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-store-text {
    max-width: 310px;
  }

  .about-store-text p {
    font-size: 14px;

    line-height: 1.32;
  }

}


.trust-strip-exact {
  width: 100%;
  background: var(--primary);
  padding: 58px 20px 86px;
  box-sizing: border-box;
}

.trust-strip-exact__container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 90px;
}

.trust-strip-exact__item {
  flex: 1 1 0;
  max-width: 320px;

  text-align: center;
  color: #ffffff;
}

.trust-strip-exact__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
  color: #ffffff;
}

.trust-strip-exact__icon i {
  font-size: 34px;
  line-height: 1;
}

.trust-strip-exact__title {
  margin: 0 0 8px;
  color: #ffffff;

  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
}

.trust-strip-exact__text {
  margin: 0;
  color: #ffffff;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}


/* TABLET */
@media (max-width: 991px) {
  .trust-strip-exact {
    padding: 52px 20px 70px;
  }

  .trust-strip-exact__container {
    gap: 40px;
  }

  .trust-strip-exact__title {
    font-size: 23px;
  }

  .trust-strip-exact__text {
    font-size: 15px;
  }
}


/* MOBILE */
@media (max-width: 767px) {
  .trust-strip-exact {
    padding: 38px 18px 42px;
  }

  .trust-strip-exact__container {
    flex-direction: column;
    align-items: center;
    gap: 52px;
  }

  .trust-strip-exact__item {
    max-width: 100%;
  }

  .trust-strip-exact__icon {
    margin-bottom: 14px;
  }

  .trust-strip-exact__icon i {
    font-size: 31px;
  }

  .trust-strip-exact__title {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .trust-strip-exact__text {
    font-size: 15px;
    line-height: 1.3;
  }
}


/* =========================================================
   DRAWER
   ========================================================= */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;

  width: min(100%, 780px);
  max-width: 100%;
  background: #ffffff;

  z-index: 9999;

  display: flex;
  flex-direction: column;

  transform: translateX(102%);
  transition: transform 0.28s ease;

  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.08);
}

.cart-drawer.open {
  transform: translateX(0);
}


/* =========================================================
   HEADER
   ========================================================= */

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 26px 28px 20px;
  border-bottom: 1px solid #e9e9e9;
}

.cart-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer__title {
  margin: 0;

  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.cart-drawer__badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #edf1f1;
  color: #7c8b8b;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.cart-drawer__close {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border: 0;
  background: transparent;

  color: var(--primary);
  font-size: 19px;

  cursor: pointer;
}


/* =========================================================
   BODY
   ========================================================= */

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;

  padding: 22px 24px 18px;
}

.cart-empty {
  min-height: 260px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;

  text-align: center;
  color: #788888;
}

.cart-empty i {
  font-size: 38px;
  color: var(--primary);
}


/* =========================================================
   ITEM
   ========================================================= */

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr 150px 120px;
  gap: 16px;
  align-items: start;

  padding: 4px 0 18px;
}

.cart-item + .cart-item {
  margin-top: 12px;
}

.cart-item__image {
  width: 120px;
  height: 120px;

  overflow: hidden;
  background: #f8f8f8;
}

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

.cart-item__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cart-item__title {
  margin: 0 0 6px;

  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.cart-item__unit-price {
  color: #6b8483;
  font-size: 14px;
  line-height: 1.3;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;

  padding-top: 2px;
}

.cart-item__quantity {
  display: inline-flex;
  align-items: center;

  height: 46px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
}

.cart-item__quantity button {
  width: 42px;
  height: 44px;

  border: 0;
  background: transparent;
  color: #2a2a2a;

  font-size: 24px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
}

.cart-item__quantity span {
  min-width: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #1f1f1f;
  font-size: 22px;
  font-weight: 400;
}

.cart-item__remove {
  border: 0;
  background: transparent;
  padding: 0;

  color: var(--primary);
  font-size: 18px;

  cursor: pointer;
}

.cart-item__line-total {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;

  padding-top: 6px;

  color: var(--primary);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}


/* =========================================================
   FOOTER
   ========================================================= */

.cart-drawer__footer {
  padding: 22px 24px 24px;
  border-top: 1px solid #e8e8e8;
  background: #ffffff;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 22px;
}

.cart-summary span {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.cart-summary strong {
  color: var(--primary);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.cart-checkout-button {
  width: 100%;
  height: 50px;

  border: 0;
  border-radius: 10px;

  background: #14966f;
  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;
}

.cart-checkout-button:hover {
  background: #118761;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .cart-drawer {
    width: min(100%, 390px);
    max-width: 100%;
  }

  .cart-drawer__header {
    padding: 22px 14px 16px;
  }

  .cart-drawer__title {
    font-size: 20px;
  }

  .cart-drawer__body {
    padding: 18px 14px 18px;
  }

  .cart-item {
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: start;
  }

  .cart-item__image {
    width: 92px;
    height: 92px;
  }

  .cart-item__content {
    display: block;
  }

  .cart-item__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .cart-item__unit-price {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .cart-item__actions {
    gap: 8px;
    padding-top: 0;
    margin-bottom: 8px;
  }

  .cart-item__quantity {
    height: 30px;
  }

  .cart-item__quantity button {
    width: 22px;
    height: 28px;
    font-size: 18px;
  }

  .cart-item__quantity span {
    min-width: 18px;
    font-size: 16px;
  }

  .cart-item__remove {
    padding: 0 10px;
    min-height: 30px;

    border: 1px solid #bcbcbc;
    color: #303030;

    font-size: 13px;
  }

  .cart-item__line-total {
    grid-column: 2;
    justify-content: flex-start;

    padding-top: 0;

    font-size: 18px;
    font-weight: 700;
  }

  .cart-drawer__footer {
    padding: 18px 14px 16px;
  }

  .cart-summary strong {
    font-size: 18px;
    font-weight: 700;
  }

  .cart-checkout-button {
    height: 54px;
    font-size: 15px;
  }
}

/* =========================================================
   CORREÇÃO DE OVERFLOW HORIZONTAL MOBILE
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

main,
.site-header,
.topbar,
.product-section,
.product-gallery,
.product-info,
.gallery-main-wrap,
.gallery-main {
  max-width: 100%;
  min-width: 0;
}

/* Elementos flex/grid podem ultrapassar a viewport sem min-width:0 */
.product-section > *,
.header__inner > *,
.buy-row > * {
  min-width: 0;
}


/* =========================================================
   CARD DE PRODUTO COMPARTILHADO
   index.php / catalogo.php / produto.php
   ========================================================= */

.home-product {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.035);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-product:hover {
  transform: translateY(-4px);
  border-color: #ddd;
  box-shadow: 0 14px 32px rgba(0,0,0,.09);
}

.home-product__link,
.home-product__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-product__media {
  position: relative;
  padding: 7px 7px 0;
}

.home-product__image-link {
  position: relative;
}

.home-product__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 11px;
  background: #f7f7f7;
}

.home-product__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.home-product:hover .home-product__image img {
  transform: scale(1.035);
}

.home-product__image--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b0b0;
  font-size: 35px;
}

.home-product__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f59a09;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 5px 14px rgba(245,154,9,.22);
}

.home-product__badge i {
  font-size: 10px;
}

.home-product__badge--featured {
  background: var(--primary);
  box-shadow: none;
}

.home-product__quick-add {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.home-product__quick-add:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--primary-dark, var(--primary));
}

.home-product__quick-add:active {
  transform: scale(.96);
}

.home-product__body {
  padding: 14px 14px 16px;
  text-align: center;
}

.home-product__title {
  min-height: 42px;
  margin: 0 0 10px;
  color: #202020;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  min-height: 24px;
}

.home-product__price {
  color: #111;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.2px;
}

.home-product__old-price {
  color: #a2a2a2;
  font-size: 12px;
  text-decoration: line-through;
}

.home-product__installments {
  margin-top: 3px;
  color: #444;
  font-size: 11px;
  line-height: 1.35;
}

.home-product__installments strong {
  color: #242424;
  font-weight: 800;
}

.home-product__trust {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 700;
}

.home-product__stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: #ffc400;
  font-size: 14px;
  letter-spacing: -1px;
}

.home-product__review-count {
  color: #5f5f5f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.home-product__shipping {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
}

.home-product__shipping i {
  font-size: 12px;
}

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

.best-sellers__track .home-product {
  flex: 0 0 calc((100% - 72px) / 5);
}

@media (max-width: 1300px) {
  .best-sellers__track .home-product {
    flex-basis: calc((100% - 54px) / 4);
  }
}

@media (max-width: 992px) {
  .catalog-products {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .best-sellers__track .home-product {
    flex-basis: calc((100% - 36px) / 3);
  }
}

@media (max-width: 650px) {
  .catalog-products {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
  }

  .home-product {
    border-radius: 11px;
  }

  .home-product__media {
    padding: 5px 5px 0;
  }

  .home-product__image {
    border-radius: 9px;
  }

  .home-product__badge {
    top: 10px;
    left: 10px;
    min-height: 22px;
    padding: 0 7px;
    font-size: 9px;
  }

  .home-product__quick-add {
    right: 11px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .home-product__body {
    padding: 10px 9px 12px;
  }

  .home-product__title {
    min-height: 38px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .home-product__price {
    font-size: 16px;
  }

  .home-product__old-price {
    font-size: 10px;
  }

  .home-product__installments {
    font-size: 9.5px;
  }

  .home-product__trust {
    margin-top: 9px;
    padding-top: 8px;
    gap: 5px;
    font-size: 9px;
  }

  .home-product__stars {
    font-size: 12px;
  }

  .best-sellers__track .home-product {
    flex: 0 0 64%;
  }
}
