:root {
  --primary: #9d6324;
  --primary-dark: #7a4a1a;
  --dark: #1a120c;
  --text: #2c2218;
  --muted: #8a7b6c;
  --bg: #FBF6F0;
  --card: #ffffff;
  --border: #e6ddd2;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(26,18,12,0.07);
  --header-h: 70px;
  --svc-green: #1e5c3a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  padding-bottom: 76px;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(157,99,36,0.08);
  z-index: 1000;
  display: flex; align-items: center;
}
.header-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  position: relative;
}
.logo img { height: 48px; width: auto; }
.header-right { display: flex; align-items: center; gap: 8px; }

/* Search inline no header */
.search-inline {
  display: flex; align-items: center; height: 40px;
  border: 1px solid var(--border); border-radius: 20px;
  background: #fff; overflow: hidden;
  width: 40px; flex-shrink: 0; position: relative;
  transition: width 0.3s ease, margin-left 0.3s ease, border-color 0.2s, border-radius 0.2s, box-shadow 0.2s;
}
.search-inline.open {
  width: min(720px, calc(100vw - 40px));
  border-color: var(--primary);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  margin-left: calc(40px - min(720px, calc(100vw - 40px)));
}
.search-inline input {
  flex: 1; height: 100%; border: none; outline: none; background: transparent;
  padding: 0; font-size: 14px; font-family: inherit; color: var(--text);
  min-width: 0; width: 0; opacity: 0; transition: opacity 0.2s, padding 0.2s;
}
.search-inline.open input { opacity: 1; width: auto; padding: 0 8px 0 14px; }
.search-inline .btn-search-toggle {
  width: 40px; height: 40px; flex-shrink: 0; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: 0.2s; padding: 0; margin: 0;
  border-radius: 50%;
}
.search-inline .btn-search-toggle svg {
  display: block; width: 17px; height: 17px; flex-shrink: 0;
}
.search-inline:hover { border-color: var(--primary); }
.search-inline:hover .btn-search-toggle { color: var(--primary); }
.search-inline.open .btn-search-toggle { color: var(--primary); border-radius: 0; }

.btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: 0.2s; position: relative;
}
.btn-icon:hover { border-color: var(--primary); color: var(--primary); }
.cart-badge {
  position: absolute; top: -3px; right: -3px; background: var(--primary); color: #fff;
  font-size: 9px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}
.cart-badge:empty, .cart-badge[data-count="0"] { display: none; }

/* Hamburger */
.btn-menu {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: 0.2s; flex-direction: column; gap: 5px;
}
.btn-menu:hover { border-color: var(--primary); color: var(--primary); }
.btn-menu span {
  display: block; width: 16px; height: 2px; background: currentColor;
  border-radius: 1px; transition: 0.25s;
}
.btn-menu.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-menu.open span:nth-child(2) { opacity: 0; }
.btn-menu.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav drawer / menu */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1100;
  opacity: 0; visibility: hidden; transition: 0.3s;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; width: min(320px, 100%); height: 100%;
  background: #fff; z-index: 1102; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-header {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-drawer-header h3 { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; }
.nav-drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); transition: 0.2s;
}
.nav-drawer-close:hover { background: var(--bg); color: var(--dark); }
.nav-drawer-body { flex: 1; padding: 12px 0; }
.nav-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; font-size: 15px; font-weight: 600; color: var(--dark);
  transition: 0.2s; border-left: 3px solid transparent;
}
.nav-link:hover, .nav-link.active {
  background: var(--bg); color: var(--primary); border-left-color: var(--primary);
}
.nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero-wrap {
  margin-top: calc(var(--header-h) + 16px);
  width: 100%;
  padding: 0 16px;
  display: flex; justify-content: center;
}
.hero {
  position: relative; width: 100%; max-width: 1200px;
  height: clamp(180px, 32vw, 380px);
  overflow: hidden; border-radius: 18px;
  background: #d4c8b8;
  box-shadow: 0 8px 32px rgba(26,18,12,0.1);
}
.hero-slide {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-start; padding: 28px 32px;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,12,0.55) 0%, rgba(26,18,12,0.15) 45%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 520px; }
.hero-content h1 {
  font-size: clamp(21px, 3.6vw, 35px); font-weight: 700;
  letter-spacing: 0.03em; line-height: 1.15; margin-bottom: 6px;
}
.hero-content p {
  font-size: clamp(13px, 1.7vw, 16px); opacity: 0.9; font-weight: 400;
}

/* ===== CATEGORIAS ===== */
.cat-wrap {
  max-width: 1200px; margin: 0 auto; padding: 18px 16px 4px;
  overflow-x: auto; scrollbar-width: none;
}
.cat-wrap::-webkit-scrollbar { display: none; }
.cat-menu {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: nowrap; min-width: max-content; margin: 0 auto;
}
.cat-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--border);
  background: #fff; color: var(--primary); font-family: inherit;
  font-size: 13px; font-weight: 600; white-space: nowrap; cursor: pointer;
  transition: 0.25s; box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.cat-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cat-btn:hover { border-color: var(--primary); box-shadow: 0 3px 12px rgba(157,99,36,0.12); }
.cat-btn.active {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(157,99,36,0.3);
}

/* ===== MAIN ===== */
.main { max-width: 1200px; margin: 0 auto; padding: 20px 16px 24px; }
.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--primary); margin-bottom: 4px;
}
.section-title {
  font-size: clamp(19px, 2.9vw, 27px); font-weight: 700; color: var(--dark);
  margin-bottom: 18px; letter-spacing: -0.02em;
}

/* ===== ESTEIRA =====
   Fade nas bordas removido a pedido: sem mask-image, então os itens
   não são "cortados" visualmente nas extremidades. */
.esteira-wrap { position: relative; margin-bottom: 24px; }
.esteira {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 4px 2px 10px; -webkit-overflow-scrolling: touch;
  /* espaço extra no final para o último item não ficar colado na borda ao rolar até o fim */
  scroll-padding-right: 16px;
  
}
.esteira::-webkit-scrollbar { display: none; }
/* espaçador invisível no final da lista: garante respiro depois do último item */
.esteira::after {
  content: '';
  flex: 0 0 8px;
}
.esteira-item {
  flex: 0 0 calc(12.5% - 11px); /* 12.5% é 100 dividido por 8 */
  scroll-snap-align: start;
  cursor: pointer; transition: 0.25s;
  position: relative; display: flex; flex-direction: column; align-items: center;
}
.esteira-item:hover { transform: translateY(-2px); }
.esteira-item .item-img-wrap {
  width: 100%; aspect-ratio: 3 / 5; border-radius: 14px; overflow: hidden;
  border: 2px solid transparent; background: #eee5d9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; transition: 0.25s;
}
.esteira-item:hover .item-img-wrap { box-shadow: var(--shadow); }
.esteira-item.active .item-img-wrap {
  border-color: var(--primary); box-shadow: 0 4px 18px rgba(157,99,36,0.2);
}
.esteira-item img { width: 100%; height: 100%; object-fit: cover; }
.esteira-item .item-name {
  display: block; margin-top: 8px; padding: 0 4px; font-size: 11px; font-weight: 600;
  text-align: center; letter-spacing: 0.01em;
  color: var(--text); line-height: 1.3; max-width: 100%;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.esteira-item .item-add {
  position: absolute; top: 8px; right: 8px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; line-height: 1; transition: 0.2s;
  box-shadow: 0 2px 8px rgba(157,99,36,0.35); z-index: 2;
}
.esteira-item .item-add:hover { background: var(--primary-dark); transform: scale(1.1); }
.esteira-item .item-add.in-cart { background: #2d6a4f; }
.esteira-arrow {
  position: absolute; top: 36%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; color: var(--dark); font-size: 17px; transition: 0.2s;
}
.esteira-arrow:hover { background: var(--primary); color: #fff; }
.esteira-prev { left: -4px; }
.esteira-next { right: -4px; }

/* Desktop: mostra no máximo 7 folhas por vez — o resto fica acessível
   pelas setas/scroll, sem a 8ª aparecer cortada na borda. */
@media (min-width: 901px) {
  .esteira-wrap {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ===== DETALHE ===== */
.detail {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 20px;
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  align-items: start;
}
.thumbs { display: flex; flex-direction: column; gap: 8px; }
.thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: 0.2s; background: #eee5d9;
}
.thumb.active { border-color: var(--primary); }
.thumb:hover { opacity: 0.85; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.main-img-wrap {
  border-radius: 14px; overflow: hidden; background: #eee5d9;
  aspect-ratio: 4 / 5; max-height: 520px; width: 100%; position: relative;
}
.main-img-wrap img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.zoom-hint {
  position: absolute; bottom: 10px; right: 10px; background: rgba(26,18,12,0.65);
  color: #fff; font-size: 10px; font-weight: 600; padding: 5px 10px; border-radius: 999px;
  display: flex; align-items: center; gap: 5px; pointer-events: none;
}
.zoom-hint svg { width: 12px; height: 12px; }

.info { display: flex; flex-direction: column; min-width: 0; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.breadcrumb span { color: var(--primary); font-weight: 500; }
.info h2 {
  font-size: clamp(19px, 2.3vw, 27px); font-weight: 700; color: var(--dark);
  letter-spacing: -0.02em; margin-bottom: 2px;
}
.info .tag { font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.stars { color: #e0a010; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.info .desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.65; }
.specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px;
  padding: 14px; background: var(--bg); border-radius: 12px;
}
.spec-item label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; color: var(--muted); margin-bottom: 2px;
}
.spec-item span { font-size: 13px; font-weight: 600; color: var(--dark); }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.btn-add {
  flex: 1 1 160px; min-width: 160px; height: 48px; padding: 0 18px;
  background: var(--primary); color: #fff;
  border-radius: 10px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; white-space: nowrap;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: 0.2s; box-shadow: 0 4px 14px rgba(157,99,36,0.25);
}
.btn-add svg { flex-shrink: 0; }
.btn-add:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-add.added { background: #2d6a4f; box-shadow: 0 4px 14px rgba(45,106,79,0.25); }
.btn-wa-detail {
  flex: 1 1 160px; min-width: 160px; height: 48px; padding: 0 18px;
  background: var(--dark); color: #fff;
  border-radius: 10px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; white-space: nowrap;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: 0.2s; box-shadow: 0 4px 14px rgba(26,18,12,0.2);
}
.btn-wa-detail svg { flex-shrink: 0; }
.btn-wa-detail:hover { background: #000; transform: translateY(-1px); }
.features {
  display: flex; flex-wrap: wrap; gap: 12px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.feat { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); font-weight: 500; }
.feat svg { color: var(--primary); flex-shrink: 0; width: 14px; height: 14px; }

.about {
  background: var(--card); border-radius: 16px; padding: 22px 24px;
  border: 1px solid var(--border); margin-bottom: 20px;
}
.about h3 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--dark); margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 2px solid var(--primary); display: inline-block;
}
.about p { font-size: 14px; color: var(--muted); max-width: 640px; line-height: 1.7; }

/* ===== PRODUTOS RELACIONADOS ===== */
.related-section {
  background: var(--card); border-radius: 16px; padding: 22px 24px;
  border: 1px solid var(--border); margin-bottom: 20px;
}
.related-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--dark); margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--primary); display: inline-block;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.related-card {
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(157,99,36,0.14);
}
.related-card .related-img {
  width: 100%; aspect-ratio: 4 / 3; background: #eee5d9; overflow: hidden;
}
.related-card .related-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card .related-name {
  font-size: 12px; font-weight: 600; color: var(--text); padding: 10px 10px 6px;
  line-height: 1.35; flex: 1;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.related-card .related-add {
  margin: 0 10px 10px; height: 30px; border-radius: 8px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  transition: 0.2s;
}
.related-card .related-add:hover { background: var(--primary-dark); }
.related-card .related-add.in-cart { background: #2d6a4f; }
.related-empty { font-size: 13px; color: var(--muted); padding: 4px 0 8px; }

/* ===== SERVIÇOS — cards ===== */
.servicos-view {
  display: none;
  margin-bottom: 28px;
}
.servicos-view.visible { display: block; }
.servicos-view .svc-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.svc-card .svc-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--svc-green);
}
.svc-card .svc-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--svc-green);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* ===== LEAD CAPTURE MODAL ===== */
.lead-overlay {
  position: fixed; inset: 0; background: rgba(10,7,4,0.7); z-index: 1300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.3s; padding: 16px;
}
.lead-overlay.open { opacity: 1; visibility: visible; }
.lead-modal {
  background: #fff; border-radius: 18px; padding: 28px 24px; max-width: 400px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25); position: relative;
}
.lead-modal h3 {
  font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px;
}
.lead-modal .lead-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5;
}
.lead-modal label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; color: var(--muted); margin-bottom: 4px;
}
.lead-modal input {
  width: 100%; height: 44px; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 0 14px; font-size: 15px; font-family: inherit; outline: none; margin-bottom: 14px;
  background: var(--bg); transition: 0.2s;
}
.lead-modal input:focus { border-color: var(--primary); background: #fff; }
.lead-modal .btn-lead {
  width: 100%; height: 48px; background: var(--primary); color: #fff;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; margin-top: 4px; transition: 0.2s;
}
.lead-modal .btn-lead:hover { background: var(--primary-dark); }
.lead-modal .btn-lead-skip {
  width: 100%; margin-top: 10px; height: 36px; font-size: 12px;
  color: var(--muted); font-weight: 600;
}
.lead-modal .btn-lead-skip:hover { color: var(--dark); }
.lead-close {
  position: absolute; top: 12px; right: 14px; width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); transition: 0.2s;
}
.lead-close:hover { background: var(--bg); color: var(--dark); }

/* ===== AVALIAÇÕES GOOGLE (CARROSSEL) =====
   Fade nas bordas removido também aqui, pelo mesmo motivo da esteira. */
.reviews-section { max-width: 1200px; margin: 0 auto; padding: 8px 16px 32px; }
.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin-bottom: 18px;
}
.google-badge {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 18px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.google-badge-text { display: flex; flex-direction: column; gap: 2px; }
.google-stars { color: #e0a010; font-size: 15px; letter-spacing: 2px; }
.google-badge-text span { font-size: 11px; color: var(--muted); font-weight: 500; }

.reviews-carousel-wrap {
  position: relative;
}
.reviews-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 10px;
  justify-content: flex-start;
  /* espaço extra no final para o último card não ficar colado na borda ao rolar até o fim */
  scroll-padding-right: 24px;
}
.reviews-grid::after {
  content: '';
  flex: 0 0 10px;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}
.review-card-head { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.review-name-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.review-name-wrap strong { font-size: 13px; font-weight: 700; color: var(--dark); display: block; }
.review-stars { color: #e0a010; font-size: 12px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
.review-time { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.03em; }

.reviews-arrow {
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  z-index: 3; color: var(--dark); font-size: 19px; transition: 0.2s;
  border: 1px solid var(--border);
}
.reviews-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.reviews-prev { left: -10px; }
.reviews-next { right: -10px; }

/* ===== FAQ ===== */
.faq-section { max-width: 1200px; margin: 0 auto; padding: 8px 16px 32px; text-align: center; }
.faq-section .section-label,
.faq-section .section-title { text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 4px 18px;
}
/* Container que segura os cards */
.reviews-grid {
  display: flex;
  gap: 14px; /* Espaço entre os cards */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  
  /* CENTRALIZAÇÃO */
  justify-content: flex-start; /* Alinha à esquerda para o scroll funcionar */
  scroll-padding: 0 14px;
}

/* O CARD individual */
.review-card {
  /* CÁLCULO: (100% / 4) menos o desconto dos gaps */
  flex: 0 0 calc(25% - 10.5px); 
  min-width: calc(25% - 10.5px);
  
  scroll-snap-align: start;
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px;
  text-align: center;
}

/* Ajuste para telas menores (Tablets: 2 cards) */
@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 7px);
    min-width: calc(50% - 7px);
  }
}

/* Ajuste para Celulares (1 card e meio para mostrar que tem mais) */
@media (max-width: 480px) {
  .review-card {
    flex: 0 0 85%;
    min-width: 85%;
  }
}
.faq-item summary {
  padding: 14px 0; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; color: var(--primary); font-weight: 400; flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; padding: 0 0 16px; }

/* ===== MAPA ===== */
.map-section { max-width: 1200px; margin: 0 auto; padding: 8px 16px 40px; }
.map-address { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 14px; }
.map-address svg { color: var(--primary); flex-shrink: 0; width: 18px; height: 18px; }
.map-frame { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-frame iframe { display: block; width: 100%; }
.map-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px;
  font-weight: 700; color: var(--primary); letter-spacing: 0.02em;
}
.map-link:hover { text-decoration: underline; }

/* ===== LIGHTBOX / ZOOM ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,7,4,0.95); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  width: 100%; height: 100%; overflow: hidden;
  display: flex; align-items: center; justify-content: center; touch-action: none;
}
.lightbox-stage img {
  max-width: 90vw; max-height: 85vh; object-fit: contain; cursor: zoom-in;
  user-select: none; -webkit-user-drag: none; will-change: transform;
}
.lightbox-close {
  position: absolute; top: 16px; right: 18px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center; z-index: 2001; transition: 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: 11px; text-align: center; padding: 0 16px;
}

/* ===== BOTTOM ===== */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; height: 64px; background: #fff;
  border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
}
.bottom-inner {
  width: 100%; max-width: 1200px; padding: 0 12px;
  display: flex; align-items: center; justify-content: space-around;
}
.bottom-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 6px 10px; color: var(--muted); font-size: 10px; font-weight: 600;
  letter-spacing: 0.03em; transition: 0.2s;
  position: relative; border-radius: 8px;
}
.bottom-btn:hover, .bottom-btn.active { color: var(--primary); }
.bottom-btn svg { width: 20px; height: 20px; }
.bottom-btn .badge {
  position: absolute; top: 2px; right: 4px; background: var(--primary); color: #fff;
  font-size: 8px; font-weight: 700; min-width: 14px; height: 14px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.bottom-btn .badge:empty, .bottom-btn .badge[data-count="0"] { display: none; }

/* ===== DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1100;
  opacity: 0; visibility: hidden; transition: 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; width: min(380px, 100%); height: 100%;
  background: #fff; z-index: 1101; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-header h3 { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; }
.drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); transition: 0.2s;
}
.drawer-close:hover { background: var(--bg); color: var(--dark); }
.drawer-body { flex: 1; overflow-y: auto; padding: 14px 20px; }
.cart-empty { text-align: center; padding: 40px 16px; color: var(--muted); font-size: 14px; }
.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.cart-item img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; background: #eee5d9; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.cart-item-info span { font-size: 11px; color: var(--muted); }
.cart-item-remove {
  width: 30px; height: 30px; border-radius: 50%; color: var(--muted);
  display: flex; align-items: center; justify-content: center; font-size: 15px; transition: 0.2s;
}
.cart-item-remove:hover { background: #fee; color: #c00; }
.drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.drawer-footer .btn-wa {
  width: 100%; height: 46px; justify-content: center; font-size: 13px; border-radius: 10px;
  background: #25d366; color: #fff; padding: 0 16px;
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700;
  letter-spacing: 0.05em; transition: 0.2s;
}
.drawer-footer .btn-wa:hover { background: #1ebe57; }
.drawer-footer .btn-clear {
  width: 100%; margin-top: 8px; height: 36px; font-size: 12px;
  color: var(--muted); font-weight: 600;
}
.drawer-footer .btn-clear:hover { color: var(--dark); }

.toast {
  position: fixed; bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--dark); color: #fff; padding: 11px 22px; border-radius: 10px;
  font-size: 13px; font-weight: 500; z-index: 1200; opacity: 0;
  transition: 0.3s; pointer-events: none; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .detail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
  }
  .thumbs {
    flex-direction: row;
    overflow-x: auto;
    order: 2;
    gap: 8px;
    padding-bottom: 2px;
  }
  .thumb { flex-shrink: 0; width: 52px; height: 52px; border-radius: 8px; }
  .main-img-wrap {
    order: 1;
    max-height: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
  }
  .info { order: 3; }
  .hero-slide { padding: 20px 20px; align-items: flex-start; }
  .esteira-item { flex: 0 0 96px; }
  .esteira-arrow { display: none; }
  .logo img { height: 40px; }
  .specs { gap: 8px; padding: 12px; }
  .actions { flex-direction: column; }
  .btn-add, .btn-wa-detail { min-width: 100%; height: 48px; font-size: 13px; }
  .about { padding: 16px; }
  .related-section { padding: 16px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 220px; }
  .reviews-arrow { display: none; }
  .map-frame iframe { height: 300px; }
  .search-inline.open {
    width: min(620px, calc(100vw - 30px));
    margin-left: calc(40px - min(620px, calc(100vw - 30px)));
  }
  .servicos-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-card { padding: 24px 20px; }
}
@media (max-width: 480px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 12px; }
  .logo img { height: 36px; }
  .hero-wrap { margin-top: calc(var(--header-h) + 10px); padding: 0 10px; }
  .hero { height: 160px; border-radius: 14px; }
  .hero-content h1 { font-size: 18px; }
  .hero-content p { font-size: 12px; }
  .cat-wrap { padding: 14px 10px 2px; }
  .cat-btn { padding: 8px 13px; font-size: 12px; gap: 5px; }
  .cat-btn svg { width: 14px; height: 14px; }
  .main { padding: 14px 10px 20px; }
  .main-img-wrap { max-height: 300px; }
  .detail { padding: 12px; gap: 12px; }
  .info h2 { font-size: 18px; }
  .info .desc { font-size: 13px; }
  .thumb { width: 44px; height: 44px; }
  .esteira-item { flex: 0 0 88px; }
  .esteira-item .item-name { font-size: 10px; }
  .esteira-item .item-add { width: 24px; height: 24px; font-size: 12px; }
  .reviews-section, .faq-section, .map-section { padding-left: 10px; padding-right: 10px; }
  .review-card { flex: 0 0 200px; }
  .faq-item summary { font-size: 14px; }
  .map-frame iframe { height: 260px; }
  .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; font-size: 22px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .related-section { padding: 14px; }
  .related-card .related-name { font-size: 11px; padding: 8px 8px 4px; }
  .related-card .related-add { margin: 0 8px 8px; height: 28px; font-size: 9px; }
  .search-inline.open {
    width: min(520px, calc(100vw - 24px));
    margin-left: calc(40px - min(520px, calc(100vw - 24px)));
  }
}

/* ===== BLOG ===== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.blog-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 24px) 16px 40px;
}
.blog-hero { margin-bottom: 28px; }
.blog-hero-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.blog-hero-lead {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-card-img {
  display: block;
  aspect-ratio: 16 / 10;
  background: #eee5d9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e6ddd2, #d4c8b8);
}
.blog-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
}
.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-meta {
  margin-top: auto;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.blog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-search {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.blog-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
}
.blog-search button {
  width: 44px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-search button:hover { color: var(--primary); }
.blog-side-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.blog-side-block h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 12px;
}
.blog-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: 0.2s;
}
.blog-cat-list a span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.blog-cat-list a:hover,
.blog-cat-list a.active {
  background: var(--bg);
  color: var(--primary);
}
.blog-nl-box p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.blog-nl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-nl-form input[type="email"] {
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  outline: none;
}
.blog-nl-form input:focus {
  border-color: var(--primary);
  background: #fff;
}
.blog-nl-form button {
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.2s;
}
.blog-nl-form button:hover { background: var(--primary-dark); }
.blog-nl-form-row {
  flex-direction: row;
  flex-wrap: wrap;
}
.blog-nl-form-row input[type="email"] {
  flex: 1;
  min-width: 180px;
}
.blog-nl-form-row button { padding: 0 20px; }
.blog-nl-msg {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 500;
}
.blog-nl-msg.ok { color: #1e5c3a; }
.blog-nl-msg.err { color: #b42318; }
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.blog-page-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}
.blog-page-btn:hover { border-color: var(--primary); }
.blog-page-status { font-size: 13px; color: var(--muted); }
.blog-empty, .blog-empty-home {
  text-align: center;
  padding: 40px 16px;
  color: var(--muted);
  font-size: 14px;
}
.blog-back-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}
.blog-search-info {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.post-main { max-width: 800px; }
.post-header { margin-bottom: 24px; }
.post-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.post-breadcrumb a { color: var(--primary); font-weight: 500; }
.post-breadcrumb a:hover { text-decoration: underline; }
.post-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 10px 0 14px;
}
.post-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.post-cover {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  background: #eee5d9;
}
.post-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.post-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.post-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.post-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
}
.post-content p { margin-bottom: 14px; }
.post-content ul, .post-content ol { margin: 0 0 16px 1.2em; }
.post-content li { margin-bottom: 6px; }
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 14px;
}
.post-content th, .post-content td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.post-content th {
  background: var(--bg);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.post-content strong { color: var(--dark); }
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 28px 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.post-tags a {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
}
.post-tags a:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.post-cta {
  background: var(--bg);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  margin: 24px 0 32px;
}
.post-cta p {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}
.post-cta .btn-wa-detail {
  display: inline-flex;
  min-width: 200px;
}
.post-related {
  margin: 40px 0 24px;
  max-width: 1200px;
}
.post-related h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.blog-grid-related { grid-template-columns: repeat(3, 1fr); }
.post-nl-section {
  margin: 32px 0 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.post-nl-inner h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.post-nl-inner > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}
.post-nl-inner .blog-nl-form {
  max-width: 420px;
  margin: 0 auto;
}
.home-blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 32px;
}
.home-blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.home-blog-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.home-blog-all:hover { text-decoration: underline; }
.home-blog-grid { grid-template-columns: repeat(3, 1fr); }
.home-nl-section {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 16px 40px;
}
.home-nl-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.home-nl-lead {
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 18px;
  line-height: 1.55;
}
.home-nl-inner .blog-nl-form {
  max-width: 440px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; order: -1; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-related,
  .home-blog-grid { grid-template-columns: 1fr; }
  .blog-main { padding-top: calc(var(--header-h) + 16px); }
  .post-main { padding-left: 12px; padding-right: 12px; }
}
@media (max-width: 480px) {
  .home-nl-inner { padding: 24px 18px; }
  .blog-nl-form-row { flex-direction: column; }
  .blog-nl-form-row button { width: 100%; }
}
/* Cor para as estrelas do detalhe do produto, do badge e dos cards de review */
.stars, 
.google-stars, 
.review-stars {
  color: #FFB400 !important; /* Amarelo ouro forte */
  text-shadow: 0 1px 1px rgba(0,0,0,0.1); /* Sombra leve para dar profundidade */
  letter-spacing: 2px;
  font-weight: bold;
  opacity: 1 !important;
}