@import url('enhancements.css');
@import url('customer-entry.css');
@import url('typography.css');
@import url('site-polish.css');
@import url('promotions.css');
@import url('quick-access.css');
@import url('support-icon-fix.css');
@import url('pix-info.css');
@import url('form-typography.css');
@import url('ui-standard.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
:root {
  --yellow: #ffd400;
  --black: #11110f;
  --muted: #696960;
  --paper: #f7f7f3;
  --white: #fff;
  --danger: #d62f2f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    'Nunito Sans',
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--black);
  background: var(--paper);
}
button,
input,
select,
textarea {
  font: inherit;
}
.top {
  height: 78px;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5vw, 24px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.brand > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: var(--yellow);
  color: #111;
  font-weight: 1000;
  transform: rotate(-3deg);
}
.brand strong {
  font-size: 21px;
  text-transform: uppercase;
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  margin-top: 6px;
  color: #aaa;
}
.cart-button {
  border: 0;
  background: var(--yellow);
  border-radius: 99px;
  padding: 11px 18px;
  font-weight: 900;
}
.hero {
  min-height: 480px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px max(8vw, 30px);
  overflow: hidden;
}
.eyebrow,
.section-title span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}
.hero h1 {
  font-size: clamp(45px, 7vw, 86px);
  line-height: 0.92;
  margin: 18px 0;
  font-weight: 900;
  letter-spacing: -3px;
}
.hero h1 em {
  font-style: normal;
  color: #fff;
  text-shadow: 3px 3px #111;
}
.hero p {
  font-size: 18px;
  margin-bottom: 28px;
}
.button {
  display: inline-block;
  padding: 15px 24px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}
.hero-mark {
  font-size: clamp(55px, 10vw, 145px);
  font-weight: 1000;
  line-height: 0.7;
  transform: rotate(-7deg);
  opacity: 0.13;
}
.info {
  max-width: 1100px;
  margin: -35px auto 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 35px #0002;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  padding: 24px;
}
.info > div {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 23px;
}
.info span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.info small {
  color: #777;
  margin-top: 4px;
}
.catalog {
  max-width: 1200px;
  margin: auto;
  padding: 35px 25px 80px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-title h2 {
  font-size: 38px;
  margin: 5px 0;
  font-weight: 900;
  letter-spacing: -1px;
}
.section-title span {
  color: #a58200;
}
.section-title input {
  padding: 13px 18px;
  border: 1px solid #ddd;
  border-radius: 99px;
  min-width: 260px;
}
.categories {
  display: flex;
  gap: 9px;
  overflow: auto;
  margin: 25px 0;
}
.categories button {
  white-space: nowrap;
  border: 0;
  padding: 10px 18px;
  border-radius: 99px;
  background: #e7e7e1;
  font-weight: 700;
  cursor: pointer;
}
.categories .active {
  background: #111;
  color: #fff;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 15px #0000000c;
}
.product-image {
  height: 180px;
  background: #eeeeea;
  display: grid;
  place-items: center;
  position: relative;
}
.product-image > span {
  font-size: 70px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
}
.product-image i {
  position: absolute;
  left: 10px;
  top: 10px;
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  padding: 6px 8px;
  border-radius: 5px;
}
.product-body {
  padding: 17px;
}
.product-body > small {
  color: #9a7b00;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
}
.product h3 {
  font-size: 17px;
  margin: 6px 0;
  font-weight: 800;
}
.product p {
  color: #777;
  font-size: 13px;
  height: 34px;
  margin: 7px 0 17px;
}
.product-body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product strong {
  font-size: 20px;
}
.add {
  border: 0;
  background: var(--yellow);
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.sold {
  font-size: 12px;
  color: var(--danger);
  font-weight: bold;
}
.cart {
  position: fixed;
  right: -440px;
  top: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 40;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.cart-open .cart {
  right: 0;
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #0008;
  z-index: 30;
}
.cart-open .overlay {
  display: block;
}
.cart-head {
  padding: 20px 24px;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.cart-head h2 {
  margin: 0;
}
.cart-head button {
  background: none;
  border: 0;
  color: #fff;
  font-size: 30px;
}
.cart-items {
  padding: 20px;
  flex: 1;
  overflow: auto;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}
.cart-item small {
  display: block;
  color: #777;
  margin-top: 5px;
}
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty button {
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid #ddd;
}
.cart-footer > div {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}
.cart-footer small {
  display: block;
  color: #777;
  margin: 8px 0 15px;
}
.cart-footer .button {
  display: block;
  text-align: center;
}
.disabled {
  opacity: 0.4;
  pointer-events: auto;
}
.empty {
  text-align: center;
  color: #888;
  padding: 60px 0;
  font-size: 30px;
}
.empty p {
  font-size: 15px;
}
footer {
  background: #111;
  color: #aaa;
  padding: 40px max(6vw, 25px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p {
  font-size: 12px;
}
.light {
  color: #fff;
}
@media (max-width: 850px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-mark {
    display: none;
  }
  .info {
    margin: 0;
    border-radius: 0;
  }
  .section-title {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }
  .section-title input {
    min-width: 0;
  }
  .hero {
    min-height: 420px;
  }
  .hero h1 {
    font-size: 52px;
  }
}
@media (max-width: 520px) {
  .top {
    height: 68px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand > span {
    width: 38px;
    height: 38px;
  }
  .info {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .info > div {
    justify-content: start;
  }
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .product-image {
    height: 130px;
  }
  .product-body {
    padding: 12px;
  }
  .product p {
    display: none;
  }
  .product h3 {
    font-size: 14px;
    height: 34px;
  }
  .product strong {
    font-size: 15px;
  }
  .catalog {
    padding-inline: 12px;
  }
  .hero {
    padding: 45px 25px;
  }
  .hero h1 {
    font-size: 45px;
  }
  footer {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
}

/* Contraste sutil entre o catálogo, filtros e áreas de imagem. */
.categories button {
  background: #e9e7de;
  border: 1px solid #dedbd0;
  box-shadow: inset 0 1px #fff8;
}
.categories button:hover {
  background: #dedbcf;
  border-color: #d0ccbd;
}
.categories .active {
  background: #111;
  color: #fff;
  border-color: #111;
  box-shadow: 0 5px 13px #1112;
}
.product {
  border: 1px solid #e9e7df;
  box-shadow: 0 7px 22px #2727160c;
}
.product-image {
  background: transparent;
  border-bottom: 1px solid #e2e0d7;
}
.product:hover {
  box-shadow: 0 14px 34px #2727161c;
}
