*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #e07840;
  --orange-dark: #c96a2e;
  --green: #25d366;
  --dark: #1a1a1a;
  --mid: #4b4b4b;
  --gray: #767676;
  --light: #f5f5f5;
  --border: #e8e8e8;
  --white: #fff;
  --radius: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font); color: var(--dark); background: #fff; overflow-x: hidden; max-width: 100%; }

/* ═══ HEADER ═══════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

/* TOP ROW */
.header-top {
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.header-top-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { text-decoration: none; flex-shrink: 0; }
.logo img { height: 38px; display: block; }

.header-top-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hdr-contact {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #444;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s;
}
.hdr-contact:hover { color: var(--orange); }
.hdr-contact svg { flex-shrink: 0; color: var(--gray); }
.hdr-login u { color: var(--orange); text-decoration: none; font-weight: 600; }
.hdr-sep { color: #ddd; font-size: 13px; }
.hdr-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: #444;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: color .15s, background .15s;
}
.hdr-icon-btn:hover { color: var(--orange); background: #faf5f0; }
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; }

/* NAV ROW */
.header-nav {
  background: #fff;
}
.header-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.nav-left { display: flex; align-items: center; gap: 0; }
.nav-right { display: flex; align-items: center; gap: 4px; }

/* Nav links left */
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 14px;
  height: 44px;
  color: var(--dark);
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }
.nav-promo svg, .nav-cupons svg { color: var(--orange); }
.nav-produtos {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 44px;
  color: var(--orange);
  border-bottom-color: var(--orange);
  transition: color .15s;
}
.nav-produtos svg:first-child { color: var(--orange); }
.dd-caret { transition: transform .2s; margin-left: 2px; }
.nav-item-dd.open .dd-caret { transform: rotate(180deg); }

/* Nav links right */
.nav-link-r {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--mid);
  padding: 0 10px;
  height: 44px;
  display: flex;
  align-items: center;
  transition: color .15s;
  white-space: nowrap;
}
.nav-link-r:hover { color: var(--dark); }

/* PRODUTOS MEGA-DROPDOWN */
.nav-item-dd { position: relative; }
.produtos-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  padding: 20px 24px;
  display: none;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  min-width: 900px;
  z-index: 300;
}
.nav-item-dd.open .produtos-dropdown { display: grid; }
.pd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dark);
  padding: 10px 6px;
  border-radius: 8px;
  transition: background .15s;
  text-align: center;
}
.pd-item:hover { background: #faf5f0; }
.pd-img-wrap {
  position: relative;
  width: 80px;
  height: 60px;
  background: #f5f2ee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pd-badge {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .2px;
  z-index: 2;
}
.pd-badge.orange { background: var(--orange); }
.pd-badge.green { background: #2e7d32; }
.pd-badge.purple { background: #7b1fa2; }
.pd-item > span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.3;
  color: var(--dark);
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e8e4de;
  line-height: 0;
  font-size: 0;
}
.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  line-height: 0;
  font-size: 0;
}
.carousel-slide a {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  font-size: 0;
  vertical-align: bottom;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  transition: all .2s;
  line-height: 1;
}
.carousel-btn:hover { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.c-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .2s;
}
.c-dot.active { background: #fff; transform: scale(1.2); }

/* BADGES BAR */
.badges-bar {
  background: #f9f6f2;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.badges-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--mid);
  line-height: 1.4;
}
.badge-item strong { color: var(--dark); }
.badge-icon { width: 28px; height: 28px; flex-shrink: 0; stroke: var(--orange); }
.badge-sep { width: 1px; height: 36px; background: var(--border); }

/* ═══ BARRA DE CATEGORIAS (fixa, sempre visível) ═══════════ */
.cat-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-bar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 14px 24px 10px;
  min-width: max-content;
  margin: 0 auto;
}
.cb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 6px 18px;
  border-right: 1px solid #eee;
  transition: opacity .2s;
}
.cb-item:last-child { border-right: none; }
.cb-item:hover { opacity: .75; }
.cb-img {
  position: relative;
  width: 90px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cb-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cb-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  color: #fff;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .3px;
  z-index: 2;
}
.cb-badge.orange { background: var(--orange); }
.cb-badge.green { background: #2e7d32; }
.cb-badge.purple { background: #7b1fa2; }
.cb-item > span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

/* CAT CAROUSEL */
.cat-carousel-section { padding: 48px 0 40px; background: #fff; }
.cat-carousel-head { max-width: 1400px; margin: 0 auto 24px; padding: 0 24px; }
.cat-carousel-head h2 { font-size: 26px; font-weight: 700; }
.cat-carousel-head .orange { color: var(--orange); font-weight: 800; }
.cat-carousel-wrapper { position: relative; }
.cat-track-outer { overflow: hidden; padding: 0 24px; }
.cat-track {
  display: flex;
  gap: 16px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  cursor: grab;
  user-select: none;
}
.cat-track:active { cursor: grabbing; }
.cat-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 260px;
  text-decoration: none;
  color: var(--dark);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ece8e0;
  border-radius: 10px;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.04); }
.cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .3px;
  z-index: 2;
}
.cat-badge.orange { background: var(--orange); }
.cat-badge.dark { background: var(--dark); }
.cat-info { padding: 12px 4px 4px; }
.cat-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.cat-info span { font-size: 13px; color: var(--orange); font-weight: 600; }
.cat-prev, .cat-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: all .2s;
  line-height: 1;
}
.cat-prev:hover, .cat-next:hover { box-shadow: 0 4px 20px rgba(0,0,0,.16); background: var(--light); }
.cat-prev { left: 4px; }
.cat-next { right: 4px; }

/* SECTION */
.products-section { padding: 56px 24px; }
.bg-light { background: #fafafa; }
.section-head {
  max-width: 1400px;
  margin: 0 auto 32px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.section-head h2 { font-size: 26px; font-weight: 800; letter-spacing: -.4px; }
.section-head p { font-size: 14px; color: var(--gray); flex-basis: 100%; margin-top: -4px; }
.see-all {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}
.see-all:hover { text-decoration: underline; }
.section-badge-launch {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  flex-basis: 100%;
}

/* PRODUCTS GRID */
.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.product-card:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.product-img-wrap {
  position: relative;
  background: #f7f4f0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

/* BADGES */
.badge-off {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: .3px;
}
.badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #2e7d32;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.badge-best {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* PRODUCT INFO */
.product-info {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
  color: var(--dark);
}
.prod-colors {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 10px;
}
.prod-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 2px; }
.price-old {
  font-size: 12px;
  color: var(--gray);
  text-decoration: line-through;
}
.price-new {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.3px;
}
.price-inst {
  font-size: 12px;
  color: var(--gray);
  display: block;
  margin-bottom: 12px;
}
.btn-comprar {
  display: block;
  width: 100%;
  padding: 11px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  margin-top: auto;
  letter-spacing: .3px;
}
.btn-comprar:hover { background: var(--orange); }

/* NEWSLETTER */
.newsletter-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 64px 24px;
}
.newsletter-box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.nl-text { flex: 1; min-width: 260px; }
.nl-text h2 { font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.nl-text p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.6; }
.nl-form { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 10px; }
.nl-form input {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form input:focus { border-color: var(--orange); }
.nl-form button {
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.nl-form button:hover { background: var(--orange-dark); }

/* FOOTER */
.footer { background: #111; color: rgba(255,255,255,.75); padding: 56px 24px 0; }
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 36px; filter: invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-bottom: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.footer-contact a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); text-decoration: none; font-size: 13px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.payment-icons span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.social-links { display: flex; gap: 12px; }
.social-links a { color: rgba(255,255,255,.5); transition: color .2s; }
.social-links a:hover { color: #fff; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25d366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.6); }

/* CART DRAWER */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 401;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,.12);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 { font-size: 17px; font-weight: 700; }
.cart-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--gray); padding: 4px 8px; border-radius: 6px; }
.cart-close:hover { background: var(--light); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty-msg { text-align: center; color: var(--gray); padding: 40px 20px; font-size: 14px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; background: #f0f0f0; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--dark); }
.cart-item-qty { font-size: 12px; color: var(--gray); }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 16px; padding: 4px; }
.cart-item-remove:hover { color: #e53935; }
.cart-drawer-footer { padding: 18px 20px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 16px; }
.cart-subtotal strong { font-size: 20px; font-weight: 800; }
.cart-checkout-btn {
  display: block;
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background .2s;
}
.cart-checkout-btn:hover { background: var(--orange); }
.cart-wa-btn {
  display: block;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.cart-wa-btn:hover { background: #1db954; }

/* ══ RESPONSIVE ══════════════════════════════════════════ */

/* Regra base global — imagens nunca transbordam */
img { max-width: 100%; }

@media (max-width: 1200px) {
  .products-grid   { grid-template-columns: repeat(3, 1fr); }
  .products-grid-5 { grid-template-columns: repeat(4, 1fr); }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav            { display: none; }
  .wa-pos         { display: none; }
  .hamburger      { display: flex; }
  .produtos-dropdown { display: none !important; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .products-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .badges-inner   { gap: 12px; }
  .badge-sep      { display: none; }
  .section-head h2 { font-size: 22px; }
  /* carousel categorias */
  .cat-track-outer { padding: 0 14px; overflow: hidden; }
  .cat-card        { min-width: 160px; flex: 0 0 160px; }
  .cat-carousel-section { padding: 28px 0 24px; }
  .hero-carousel  { overflow: hidden; }
  /* newsletter */
  .nl-text, .nl-form { min-width: 0; width: 100%; }
  .newsletter-box { flex-direction: column; gap: 20px; }
}

/* Mobile 600px e 400px gerenciados por index-mobile.css */
