/* ══════════════════════════════════════════════════════
   GLOBAL CSS — Vitrine do Artesão
   Compartilhado por todas as páginas.
   CSS específico de cada tela fica no <style> da própria página.
   ══════════════════════════════════════════════════════ */

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

:root {
  --black:        #1d1d1b;
  --brown:        #c66016;
  --orange:       #ef7d00;
  --orange-light: #f49836;
  --gray-light:   #ebebeb;
  --white:        #ffffff;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* ── Header sticky ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

/* ── Navbar ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 5%;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-search {
  flex: 1;
  max-width: 460px;
  position: relative;
}

.nav-search input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  background: #fafafa;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.nav-search input:focus {
  border-color: var(--orange);
  background: var(--white);
}
.nav-search input::placeholder { color: #aaa; }

.nav-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  width: 48px;
  background: var(--orange);
  border: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.nav-search-btn:hover { background: var(--brown); }

/* ── CEP widget ── */
.nav-cep {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-light);
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

.nav-cep:focus-within { border-color: var(--orange); background: var(--white); }

.nav-cep-icon {
  color: var(--orange);
  flex-shrink: 0;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.nav-cep-input {
  width: 118px;
  height: 100%;
  border: none;
  padding: 0 4px 0 0;
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--black);
  background: transparent;
  outline: none;
}

.nav-cep-input::placeholder { color: #bbb; font-weight: 400; }

.nav-cep-detect {
  height: 100%;
  width: 36px;
  border: none;
  border-left: 1px solid var(--gray-light);
  background: transparent;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.nav-cep-detect:hover {
  background: var(--orange);
  color: var(--white);
  border-left-color: var(--orange);
}

/* ── Ações da nav ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.nav-btn-seller {
  background: transparent;
  color: #555;
  border: none;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 0.82rem;
  gap: 5px;
}
.nav-btn-seller:hover {
  color: var(--orange);
  background: transparent;
}
.nav-btn-seller svg { opacity: 0.7; }

.nav-btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 1.5px solid var(--orange);
}
.nav-btn-primary:hover { background: var(--brown); border-color: var(--brown); }

.nav-btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  background: transparent;
  color: var(--black);
  border-radius: var(--radius-sm);
  border: none;
  position: relative;
}
.nav-btn-icon:hover { background: var(--gray-light); }

.nav-icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  pointer-events: none;
}

/* ── Catbar ── */
.catbar {
  position: relative;
  background: var(--orange);
  border-bottom: none;
}

.catbar-inner {
  display: flex;
  align-items: stretch;
  padding: 0 5%;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.catbar-inner::-webkit-scrollbar { display: none; }

.catbar-all-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px 0 0;
  margin-right: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.catbar-item-all .catbar-btn .chevron { color: rgba(255,255,255,0.6); }
.catbar-item-all:hover .catbar-btn .chevron { color: var(--white); }

.mega-all-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}

.mega-all-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-all-heading {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--orange);
  text-decoration: none;
  padding: 0 8px 10px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--gray-light);
  transition: color 0.15s;
}

.mega-all-heading:hover { color: var(--brown); }

.mega-all-col .mega-cat-link { padding: 6px 8px; }

.catbar-item { position: static; }

.catbar-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 46px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.catbar-btn .chevron {
  transition: transform 0.2s;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.catbar-item:hover .catbar-btn {
  background: rgba(0,0,0,0.12);
  color: var(--white);
  border-bottom-color: var(--white);
}

.catbar-item:hover .catbar-btn .chevron {
  transform: rotate(180deg);
  color: var(--white);
}

/* ── Mega painel ── */
.catbar-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--brown);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 28px 5% 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 98;
}

.catbar-item:hover .catbar-mega {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mega-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}

.mega-panel-header::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--black);
}

.mega-panel-title {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-panel-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}

.mega-panel-link:hover { gap: 7px; }

.mega-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px 8px;
}

.mega-cat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mega-cat-link:hover {
  background: #fff5ea;
  color: var(--orange);
}

.mega-cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  opacity: 0.35;
  transition: opacity 0.15s;
}

.mega-cat-link:hover .mega-cat-dot { opacity: 1; }

.mega-cat-count {
  margin-left: auto;
  font-size: 0.68rem;
  color: #bbb;
}

.mega-highlights {
  display: flex;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--gray-light);
}

.mega-highlight-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  text-decoration: none;
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.mega-highlight-card:hover { background: var(--orange); color: var(--white); }
.mega-highlight-card:hover .mega-highlight-icon { background: rgba(255,255,255,0.2); color: var(--white); }

.mega-highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: background 0.15s, color 0.15s;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 12px 5%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--orange); }

.breadcrumb-sep {
  color: #ccc;
}

.breadcrumb-current {
  color: var(--black);
  font-weight: 500;
}

/* ── Section shell ── */
.section { padding: 64px 5%; }
.section-gray { background: var(--gray-light); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 16px;
}

.section-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.15;
}

.section-sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  margin-top: 5px;
}

.link-all {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.link-all:hover { gap: 8px; }

/* ── Newsletter ── */
.newsletter {
  background: var(--black);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: var(--orange);
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 5%;
  width: 260px;
  height: 260px;
  background: var(--brown);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,125,0,0.15);
  border: 1px solid rgba(239,125,0,0.3);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.newsletter-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.newsletter-title span { color: var(--orange); }

.newsletter-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.newsletter-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-avatars { display: flex; }

.newsletter-avatars span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
}

.newsletter-avatars span:first-child { margin-left: 0; }

.newsletter-proof-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.newsletter-proof-text strong {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}

.newsletter-form:focus-within { border-color: var(--orange); }

.newsletter-form input {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  outline: none;
  color: var(--white);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form button {
  height: 52px;
  padding: 0 28px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--orange-light); }

.newsletter-fine {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Footer ── */
footer {
  background: #111110;
  color: rgba(255,255,255,0.6);
}

.footer-top-bar {
  display: flex;
  align-items: stretch;
  height: 4px;
}

.footer-top-bar span:nth-child(1) { flex: 3; background: var(--orange); }
.footer-top-bar span:nth-child(2) { flex: 1; background: var(--brown); }
.footer-top-bar span:nth-child(3) { flex: 4; background: rgba(255,255,255,0.06); }

.footer-main { padding: 60px 5% 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand-name {
  display: block;
  margin-bottom: 16px;
}

.footer-brand-name img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item:hover { color: var(--orange); }
.footer-contact-item svg { flex-shrink: 0; color: var(--orange); }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
}

.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col-label {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.2s;
  margin-right: 0;
  display: inline-block;
  vertical-align: middle;
}

.footer-col a:hover { color: var(--white); }

.footer-col a:hover::before {
  width: 10px;
  margin-right: 6px;
}

.footer-payments {
  padding: 24px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-payments-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

.footer-payments-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 28px;
  padding: 0 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}

.cert-badge svg { color: rgba(255,255,255,0.3); }

.footer-bottom {
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-copyright {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
}

.footer-made strong { color: rgba(255,255,255,0.4); font-weight: 600; }

.footer-bottom-links { display: flex; gap: 20px; align-items: center; }

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

.footer-back-top {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}

.footer-back-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ── Utilitários comuns ── */
.btn-primary {
  padding: 13px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

.stars { color: var(--orange); letter-spacing: -1px; }

.tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.tag:hover, .tag.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.tags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

.brush-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 5%;
  overflow: hidden;
}

.brush-divider::before {
  content: '';
  flex: 1;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.brush-divider::after {
  content: '';
  width: 48px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO — componentes globais (nav, catbar, footer)
   ═══════════════════════════════════════════════════════ */

/* ── Tablet ≤1024px ── */
@media (max-width: 1024px) {
  /* Esconde CEP e botão "Central do Vendedor" para não estourar */
  .nav-cep        { display: none; }
  .nav-btn-seller { display: none; }

  /* Footer: 3 colunas (marca ocupa a linha inteira) */
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }

  /* Newsletter: menos espaço entre colunas */
  .newsletter-inner { gap: 36px; }
}

/* ── Mobile ≤768px ── */
@media (max-width: 768px) {
  /* Nav quebra em duas linhas: logo+ações / busca */
  nav {
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    padding: 10px 4%;
    gap: 8px;
  }
  .nav-search {
    order: 3;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .nav-logo img { height: 48px; }
  .nav-actions   { gap: 0; margin-left: auto; }

  /* Catbar: padding menor, scroll horizontal já existe */
  .catbar-inner  { padding: 0 4%; }

  /* Sections */
  .section       { padding: 40px 4%; }
  .brush-divider { margin: 0 4%; }
  .breadcrumb    { padding: 10px 4%; }

  /* Footer: 2 colunas */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main  { padding: 40px 4% 0; }
  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 4%;
  }

  /* Newsletter: coluna única */
  .newsletter         { padding: 48px 4%; }
  .newsletter-inner   { grid-template-columns: 1fr; gap: 28px; }
}

/* ── Small mobile ≤480px ── */
@media (max-width: 480px) {
  .nav-logo img { height: 42px; }

  /* Footer: coluna única */
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}
