/* ==========================================================================
   Petit Bebê — móveis para quarto de bebê
   Tokens e estilos base
   ========================================================================== */

:root {
  --bg: #FBF8F4;
  --surface: #fff;
  --text: #1C1917;
  --text-2: #3F3A34;
  --text-3: #57534E;
  --muted: #78716C;
  --muted-2: #A8A29E;
  --border: #E7E1D8;
  /* dourado da marca. o --gold claro é o do logo, usado em fundos grandes;
     o --accent é o mesmo tom escurecido pra ler bem em texto e botão */
  --accent: #A08544;
  --gold: #C9B77D;
  --footer-bg: #F1EAD1;
  --footer-text: #726C55;
  --footer-border: #E1D6AF;
  --whats: #25D366;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Work Sans', system-ui, -apple-system, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; }
::selection { background: #F4CBA8; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; width: 100%; }
.serif { font-family: var(--serif); }
.hidden { display: none !important; }

@keyframes heroFade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }
@keyframes menuIn { from { opacity: 0; transform: translateY(-8px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Barra promocional ---------- */
.promo-bar {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--text);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: filter 0.15s ease;
}
.promo-bar:hover { filter: brightness(1.05); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
/* topo: busca à esquerda, logo no centro, carrinho à direita */
.header-topo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 16px;
}
.brand { cursor: pointer; background: none; border: none; padding: 0; justify-self: center; display: block; }
.brand img { height: 76px; width: auto; display: block; }

.main-nav {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px 30px; justify-content: center;
  padding: 0 24px 16px;
}
.main-nav button {
  font-size: 14px; font-weight: 500; color: var(--text-2); cursor: pointer;
  white-space: nowrap; background: none; border: none; padding: 4px 0;
  border-bottom: 1px solid transparent; transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav button:hover { color: var(--accent); border-bottom-color: var(--accent); }

.search { position: relative; justify-self: start; }
.search-abrir {
  background: none; border: none; padding: 6px; cursor: pointer;
  color: var(--text-2); display: flex; transition: color 0.15s ease;
}
.search-abrir:hover { color: var(--accent); }
.search-field {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 21;
  display: flex; align-items: center; gap: 8px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 20px; padding: 8px 14px;
  min-width: 280px; animation: menuIn 0.18s ease; transform-origin: top left;
}
.search-field input { width: 100%; border: none; outline: none; font-size: 13px; font-family: inherit; background: none; color: var(--text); }
.search-results {
  position: absolute; top: calc(100% + 58px); left: 0; width: 420px; max-width: calc(100vw - 48px);
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 16px 36px rgba(28, 25, 23, 0.16);
  padding: 12px; z-index: 20; animation: menuIn 0.18s ease; transform-origin: top left;
  max-height: 440px; overflow-y: auto;
}
.search-results button {
  display: flex; align-items: center; gap: 16px; width: 100%; text-align: left;
  border: none; background: none; padding: 12px; border-radius: 10px; cursor: pointer;
}
.search-results button:hover { background: var(--bg); }
.search-results img { width: 76px; height: 76px; flex-shrink: 0; object-fit: contain; background: var(--surface); border-radius: 6px; }
.search-results .r-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.search-results .r-price { font-size: 14px; color: var(--accent); font-weight: 700; }
.search-empty { padding: 16px 12px; font-size: 14px; color: var(--muted); }

.header-actions { display: flex; align-items: center; gap: 18px; justify-self: end; }
/* atalho discreto de atendimento no lugar do carrinho */
.header-wa {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  border: 1px solid var(--border); border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--text-2); white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.header-wa svg { color: var(--whats); flex-shrink: 0; }
.header-wa:hover { border-color: var(--whats); color: var(--text); }
@media (max-width: 700px) {
  .header-wa span { display: none; }
  .header-wa { padding: 8px; border-radius: 50%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 560px; width: 100%; overflow: hidden; }
.hero-img { position: absolute; inset: 0; animation: heroFade 0.5s ease; isolation: isolate; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,25,23,0.78) 0%, rgba(28,25,23,0.5) 32%, rgba(28,25,23,0.05) 58%, transparent 72%);
  display: flex; align-items: center; pointer-events: none; z-index: 1;
}
.hero-copy { padding: 0 56px 0 84px; max-width: 500px; }
.hero-eyebrow { color: #F5EFE6; font-size: 12px; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 14px; }
.hero h1 { font-family: var(--serif); color: #fff; font-size: 40px; line-height: 1.18; margin: 0 0 18px; }
.hero p { color: #F0E9DE; font-size: 15px; margin: 0 0 26px; max-width: 400px; }
.hero-cta {
  pointer-events: auto; background: var(--gold); color: var(--text); border: none;
  padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: 3px; cursor: pointer;
}
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.85);
  border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2;
}
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }
.hero-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 2; }
.hero-dots span { width: 6px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.5); cursor: pointer; transition: width 0.25s ease, background 0.25s ease; }
.hero-dots span.active { width: 22px; background: #fff; }

/* ---------- Selos ---------- */
.benefits { margin-top: 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; text-align: center; }
.benefits h3 { font-family: var(--serif); font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.benefits p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- Seções ---------- */
/* o header é sticky: sem isso o topo da seção fica escondido atrás dele */
.section { margin-top: 64px; scroll-margin-top: 110px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.section-head h2 { font-family: var(--serif); font-size: 28px; margin: 0; }
.filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2); transition: all 0.15s ease;
}
.chip.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.chip-marca { border-radius: 4px; }
.chip-marca.active { border-color: var(--text); background: var(--text); color: #fff; }
.chips-sep { width: 1px; align-self: stretch; background: var(--border); margin: 0 2px; }

.product-ref { font-size: 12px; color: var(--muted-2); margin: -14px 0 20px; letter-spacing: 0.04em; }
/* no card é só um empurrãozinho, não um preço: discreto de propósito */
.price-consulta {
  font-size: 13px; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.15s ease;
}
.price-consulta::after { content: '→'; font-size: 12px; }
.card:hover .price-consulta { color: var(--accent); }
.product-price.consulta { font-size: 22px; font-weight: 600; color: var(--text-3); }

.sort { position: relative; }
.sort-btn {
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
  padding: 10px 18px; border-radius: 24px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; transition: box-shadow 0.2s ease;
}
.sort-btn:hover { box-shadow: 0 4px 14px rgba(28,25,23,0.08); }
.sort-btn .label { color: var(--muted-2); font-weight: 500; }
.sort-menu {
  position: absolute; top: calc(100% + 8px); right: 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 12px 28px rgba(28,25,23,0.14);
  padding: 8px; min-width: 220px; z-index: 10; animation: menuIn 0.18s ease; transform-origin: top right;
}
.sort-menu button {
  display: block; width: 100%; text-align: left; padding: 10px 14px; border: none; background: none;
  border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text-2); cursor: pointer;
}
.sort-menu button:hover { background: var(--bg); }
.sort-menu button.active { color: var(--accent); font-weight: 700; }

/* ---------- Faixa de categorias ---------- */
.categorias {
  margin-top: 56px;
  display: flex; align-items: baseline; justify-content: center;
  flex-wrap: wrap; gap: 10px 18px;
  padding-top: 26px; padding-bottom: 26px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.categorias-rotulo {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 600;
}
.categorias-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; }
.categoria {
  background: none; border: none; padding: 2px 0; cursor: pointer;
  font-family: var(--serif); font-size: 17px; color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.categoria:hover { color: var(--accent); border-bottom-color: var(--accent); }
.categoria-qtd {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: var(--muted-2); margin-left: 5px; vertical-align: super;
}

/* ---------- Fileiras curadas da home ---------- */
.vitrine { margin-top: 72px; }
.vitrine .section-head { margin-bottom: 22px; }
.vitrine-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.vitrine-mais { text-align: center; margin-top: 32px; }
.vitrine-mais button {
  background: var(--accent); color: #fff; border: none;
  padding: 13px 42px; font-size: 14px; font-weight: 600;
  border-radius: 3px; cursor: pointer; font-family: inherit;
  transition: filter 0.15s ease;
}
.vitrine-mais button:hover { filter: brightness(1.08); }

.grid-contagem { font-size: 13px; color: var(--muted); margin: 0 0 20px; }

/* ---------- Grid de produtos ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; display: flex; flex-direction: column; cursor: pointer;
  text-align: left; padding: 0; font-family: inherit;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface); }
.card-media img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.4s ease; }
.badge {
  position: absolute; top: 10px; left: 10px; background: var(--text); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 4px 8px; border-radius: 2px;
}
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-line { font-size: 11px; letter-spacing: 0.06em; color: var(--muted-2); font-weight: 600; }
.card-name { font-family: var(--serif); font-size: 16px; font-weight: 700; line-height: 1.3; }
.card-price { margin-top: auto; padding-top: 8px; }
.price-old { font-size: 12px; color: var(--muted-2); text-decoration: line-through; }
.price-promo { font-size: 19px; font-weight: 700; color: var(--accent); }
.price-install { font-size: 12px; color: var(--muted); }

.empty-state { text-align: center; padding: 64px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; }
.empty-state svg { margin: 0 auto 16px; display: block; }
.empty-state h3 { font-family: var(--serif); font-size: 20px; color: var(--text); margin: 0 0 8px; font-weight: 400; }
.empty-state p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Grade de linhas ---------- */
.collections { position: relative; }
.collections-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.collection-card { position: relative; height: 260px; border-radius: 4px; overflow: hidden; cursor: pointer; border: none; padding: 0; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
/* card de linha que usa recorte em vez de foto de ambiente */
.collection-card--recorte { background: var(--surface); border: 1px solid var(--border); }
.collection-card--recorte img { padding: 16px 16px 44px; }
.collection-card--recorte .veil { background: linear-gradient(0deg, rgba(28,25,23,0.72), transparent 38%); }
.collection-card:hover img { transform: scale(1.06); }
.collection-card .veil {
  position: absolute; inset: 0; background: linear-gradient(0deg, rgba(28,25,23,0.65), transparent 55%);
  display: flex; align-items: flex-end; padding: 18px; pointer-events: none;
}
.collection-card .veil span { color: #fff; font-family: var(--serif); font-size: 19px; }
.collection-card .veil small {
  display: block; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-top: 3px;
}
.collections-mais { text-align: center; margin-top: 24px; }
.collections-mais button {
  background: none; border: 1px solid var(--border); color: var(--text-2);
  padding: 12px 28px; border-radius: 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.15s ease;
}
.collections-mais button:hover { border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   Página de produto
   ========================================================================== */

.breadcrumb { font-size: 12px; color: var(--muted); padding-top: 24px; margin-bottom: 4px; }
.breadcrumb button { background: none; border: none; padding: 0; cursor: pointer; font-size: 12px; color: var(--muted); font-family: inherit; }
.breadcrumb button:hover { color: var(--accent); text-decoration: underline; }

/* ---------- cabeçalho centralizado ---------- */
.pd-cabecalho { text-align: center; padding: 34px 0 44px; }
.pd-cabecalho .badge { position: static; display: inline-block; margin-bottom: 18px; }
.pd-cabecalho h1 {
  font-family: var(--serif); font-size: 42px; line-height: 1.15;
  margin: 0 auto 14px; max-width: 900px; font-weight: 700;
}
.pd-sub { font-size: 14px; color: var(--muted); margin: 0; letter-spacing: 0.02em; }
.pd-ref { font-size: 12px; color: var(--muted-2); margin: 6px 0 0; letter-spacing: 0.06em; }

/* ---------- galeria + caixa de compra ---------- */
.pd-compra { display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: start; }
.pd-foto {
  width: 100%; aspect-ratio: 4/3; border-radius: 4px; background: var(--surface);
  border: 1px solid var(--border); overflow: hidden;
}
.pd-foto img { width: 100%; height: 100%; object-fit: contain; display: block; }
.gallery-legenda { margin: 12px 2px 0; font-size: 13px; color: var(--muted); text-align: center; font-style: italic; }
.pd-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.thumb {
  width: 78px; height: 78px; background: var(--surface); border-radius: 3px; cursor: pointer;
  border: 1px solid var(--border); padding: 0; overflow: hidden; transition: border-color 0.15s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.thumb.active { border-color: var(--accent); }

.pd-caixa { position: sticky; top: 150px; }
.pd-garantias { list-style: none; margin: 28px 0 0; padding: 20px 0 0; border-top: 1px solid var(--border); }
.pd-garantias li { font-size: 13px; color: var(--muted); padding-left: 22px; position: relative; margin-bottom: 10px; }
.pd-garantias li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- foto de ambiente em largura total ---------- */
.pd-ambiente { position: relative; margin: 80px 0; height: 460px; overflow: hidden; }
.pd-ambiente img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-ambiente-veil {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 48px 56px; pointer-events: none;
  background: linear-gradient(0deg, rgba(28,25,23,0.6), transparent 55%);
}
.pd-ambiente-veil span { color: #fff; font-family: var(--serif); font-size: 34px; }

/* ---------- bloco editorial ---------- */
.pd-editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 80px; }
.pd-editorial h2 { font-family: var(--serif); font-size: 30px; line-height: 1.25; margin: 0 0 22px; }
.pd-editorial p { font-size: 15px; color: var(--text-3); margin: 0 0 14px; line-height: 1.7; }
.pd-destaques { list-style: none; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border); }
.pd-destaques li {
  font-size: 14px; color: var(--text-3); line-height: 1.6;
  padding-left: 20px; position: relative; margin-bottom: 12px;
}
.pd-destaques li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.pd-editorial-foto { aspect-ratio: 4/3; background: var(--surface); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.pd-editorial-foto img { width: 100%; height: 100%; display: block; }

/* ---------- fases ---------- */
.pd-fases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.pd-fase { margin: 0; }
.pd-fase img {
  width: 100%; aspect-ratio: 1; object-fit: contain; display: block;
  background: var(--surface); border-radius: 4px; border: 1px solid var(--border);
}
.pd-fase figcaption { text-align: center; font-size: 14px; color: var(--text-3); margin-top: 14px; }

/* ---------- informações em abas ---------- */
.pd-info-grid { display: grid; grid-template-columns: 250px 1fr; gap: 48px; align-items: start; }
.pd-abas { display: flex; flex-direction: column; gap: 8px; }
.pd-aba {
  text-align: left; background: var(--surface); border: 1px solid var(--border);
  padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--text-2);
  cursor: pointer; border-radius: 4px; font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pd-aba:hover { border-color: var(--accent); }
.pd-aba.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.pd-aba-conteudo p { font-size: 15px; color: var(--text-3); line-height: 1.75; margin: 0; }
.pd-aba-conteudo ul { margin: 0; padding-left: 20px; }
.pd-aba-conteudo li { font-size: 15px; color: var(--text-3); line-height: 1.7; margin-bottom: 9px; }

.product-info h1 { font-family: var(--serif); font-size: 30px; margin: 16px 0 10px; }
.product-line { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.swatches-label { font-size: 12px; font-weight: 600; color: var(--text-3); margin-bottom: 10px; }
.swatches { display: flex; gap: 10px; margin-bottom: 20px; }
.swatch { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border); padding: 0; }
.swatch.active { border: 2px solid #fff; box-shadow: 0 0 0 2px #fff, 0 0 0 4px currentColor; }
.product-price { font-size: 32px; font-weight: 700; color: var(--accent); margin: 2px 0; }
.product-install { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.btn-cart {
  background: var(--accent); color: #fff; border: none; width: 100%; padding: 16px;
  font-size: 15px; font-weight: 600; border-radius: 3px; cursor: pointer; margin-bottom: 12px;
}
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--border); padding: 14px; border-radius: 3px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-wa:hover { border-color: var(--whats); color: var(--text); }
/* quando é o único caminho de compra, ganha um pouco mais de presença,
   mas continua discreto: contorno, não bloco de cor */
.btn-wa-principal { padding: 16px; font-weight: 600; border-color: var(--text-2); }
.btn-wa-principal:hover { border-color: var(--whats); background: rgba(37, 211, 102, 0.06); }

.pd-convite { font-size: 14px; color: var(--text-3); line-height: 1.6; margin: 0 0 16px; }
.accordion { margin-top: 32px; border-top: 1px solid var(--border); }
.accordion-head {
  padding: 18px 0; display: flex; justify-content: space-between; cursor: pointer;
  border-bottom: 1px solid var(--border); font-weight: 600; font-size: 14px;
  width: 100%; background: none; border-left: none; border-right: none; border-top: none; text-align: left;
}
.accordion-body { padding: 14px 0; font-size: 14px; color: var(--text-3); }

.related { margin-top: 80px; padding-top: 40px; padding-bottom: 72px; border-top: 1px solid var(--border); }
.related h2 { font-family: var(--serif); font-size: 24px; margin: 0 0 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ---------- Sobre ---------- */
.about-hero { position: relative; height: 340px; border-radius: 6px; overflow: hidden; margin-bottom: 48px; }
.about-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero .veil { position: absolute; inset: 0; background: rgba(28,25,23,0.35); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.about-hero h1 { color: #fff; font-family: var(--serif); font-size: 36px; text-align: center; margin: 0; padding: 0 24px; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 56px; }
.eyebrow { font-size: 12px; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.about-split h2 { font-family: var(--serif); font-size: 26px; margin: 0 0 16px; }
.about-split p { font-size: 15px; color: var(--text-3); margin: 0 0 16px; }
.about-split img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; display: block; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 56px; }
.about-values h3 { font-family: var(--serif); font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.about-values p { font-size: 13px; color: var(--muted); margin: 0; }
.about-cta { text-align: center; }
.about-cta h2 { font-family: var(--serif); font-size: 24px; margin: 0 0 12px; }
.about-cta-texto { font-size: 15px; color: var(--text-3); margin: 0 auto 24px; max-width: 460px; }
.btn-accent {
  background: var(--accent); color: #fff; border: none; padding: 14px 32px;
  font-size: 14px; font-weight: 600; border-radius: 3px; cursor: pointer;
  font-family: inherit; display: inline-block;
}
.btn-linha {
  background: none; color: var(--text-2); border: 1px solid var(--border);
  padding: 13px 32px; font-size: 14px; font-weight: 600; border-radius: 3px;
  cursor: pointer; font-family: inherit; margin-left: 10px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-linha:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 560px) {
  .btn-accent, .btn-linha { display: block; width: 100%; margin: 0 0 10px; }
}

/* ---------- Contato ---------- */
.contact-head { text-align: center; margin-bottom: 48px; }
.contact-head h1 { font-family: var(--serif); font-size: 32px; margin: 0; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { flex-shrink: 0; color: var(--accent); }
.contact-item strong { font-weight: 600; font-size: 14px; display: block; }
.contact-item span { font-size: 14px; color: var(--muted); display: block; }
.contato-link { font-size: 14px; color: var(--muted); display: block; transition: color 0.15s ease; }
.contato-link:hover { color: var(--accent); text-decoration: underline; }
.contact-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; display: block; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.contact-form .fields { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-size: 12px; font-weight: 600; color: var(--text-3); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 3px;
  font-size: 14px; font-family: inherit; background: var(--surface); color: var(--text);
}
.contact-form textarea { resize: vertical; }
.contact-form button { background: var(--accent); color: #fff; border: none; padding: 14px; font-size: 14px; font-weight: 600; border-radius: 3px; cursor: pointer; }
.form-note { font-size: 13px; color: var(--muted); margin: 12px 0 0; }

/* ---------- Footer ---------- */
.site-footer { margin-top: auto; background: var(--footer-bg); color: #5B5642; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-top: 56px; padding-bottom: 28px; }
.footer-brand { font-family: var(--serif); font-size: 24px; color: var(--text); margin-bottom: 12px; }
.footer-grid p { font-size: 13px; color: var(--footer-text); max-width: 280px; margin: 0; }
.footer-title { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--text); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; align-items: flex-start; }
.footer-links button, .footer-links span { cursor: pointer; color: var(--footer-text); background: none; border: none; padding: 0; font-size: 13px; font-family: inherit; text-align: left; }
.footer-links button:hover { color: var(--text); }
.newsletter { display: flex; gap: 8px; }
.newsletter input { flex: 1; min-width: 0; padding: 11px; border-radius: 3px; border: 1px solid #D9CFA9; background: #fff; color: var(--text); font-size: 13px; font-family: inherit; }
.newsletter button { background: var(--text); color: var(--footer-bg); border: none; padding: 0 16px; border-radius: 3px; font-size: 13px; font-weight: 600; cursor: pointer; }
.footer-bottom { border-top: 1px solid var(--footer-border); padding-top: 20px; padding-bottom: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #8A8367; }

/* ---------- Bolhas flutuantes: Instagram e WhatsApp ---------- */
.social-flutuante {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  display: flex; flex-direction: column; gap: 12px;
}
.bolha {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bolha:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3); }
.bolha:active { transform: scale(0.96); }
.bolha-wa { background: var(--whats); }
/* degradê oficial do Instagram */
.bolha-ig {
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

@media (max-width: 560px) {
  .social-flutuante { bottom: 16px; right: 16px; gap: 10px; }
  .bolha { width: 50px; height: 50px; }
  .bolha svg { width: 24px; height: 24px; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero { height: 460px; }
  .hero-copy { padding: 0 32px; }
  .hero h1 { font-size: 32px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.6) 45%, rgba(28,25,23,0.15) 80%); }
  /* setas cobririam o texto do hero: no mobile ficam os pontinhos + troca automática */
  .hero-arrow { display: none; }
}
@media (max-width: 880px) {
  .chips-sep { display: none; }
  .section { scroll-margin-top: 190px; }
  .brand img { height: 60px; }
  .main-nav { gap: 8px 18px; font-size: 13px; }
  .categorias { gap: 8px 14px; padding-top: 20px; padding-bottom: 20px; }
  .categorias-track { gap: 6px 18px; }
  .categoria { font-size: 15px; }
  .search-field { min-width: 0; width: calc(100vw - 48px); }
  .product-layout, .about-split, .contact-split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-results { width: calc(100vw - 48px); max-width: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  /* página de produto */
  .pd-cabecalho { padding: 24px 0 32px; }
  .pd-cabecalho h1 { font-size: 30px; }
  .pd-compra { grid-template-columns: 1fr; gap: 32px; }
  .pd-caixa { position: static; }
  .pd-ambiente { margin: 56px 0; height: 300px; }
  .pd-ambiente-veil { padding: 28px 24px; }
  .pd-ambiente-veil span { font-size: 24px; }
  .pd-editorial { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  .pd-editorial h2 { font-size: 24px; }
  .pd-info-grid { grid-template-columns: 1fr; gap: 24px; }
  .pd-abas { flex-direction: row; flex-wrap: wrap; }
  .pd-aba { flex: 1 1 auto; text-align: center; padding: 13px 16px; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-body { padding: 12px; }
  .card-name { font-size: 14px; }
  .price-promo { font-size: 16px; }
  .price-consulta { font-size: 14px; }
  .card-line, .price-old, .price-install { font-size: 11px; }
  .brand img { height: 52px; }
  .header-topo { padding-top: 14px; padding-bottom: 10px; }
  .main-nav { gap: 6px 14px; font-size: 12px; padding-bottom: 12px; }
  .section-head h2 { font-size: 23px; }
  .categoria { font-size: 14px; }
  .categoria-qtd { display: none; }
  /* linhas ficam 2 por linha no celular: são só foto e nome, não precisam ser largas */
  .collections-track { grid-template-columns: 1fr 1fr; gap: 12px; }
  .collection-card { height: 190px; }
  .collection-card .veil { padding: 12px; }
  .collection-card .veil span { font-size: 15px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 420px; }
  .hero h1 { font-size: 27px; }
  .hero-copy { padding: 0 24px; }
  .about-hero h1 { font-size: 26px; }
}
