@font-face {
  font-family: 'Playfair Display';
  src: url('fontes/playfair.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'InterVar';
  src: url('fontes/inter.woff2') format('woff2');
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --rose-900: #7d4444;
  --rose-800: #a15a5a;
  --rose-700: #d07878;
  --rose-500: #d88888;
  --rose-300: #e8b8b8;
  --rose-100: #f2dcd9;
  --rose-50: #faf0ee;
  --sage: #b0b0a0;
  --sage-dark: #7f7f6d;
  --cream: #f7f5f2;
  --paper: #ffffff;
  --ink: #33292a;
  --ink-soft: #6d5f5f;
  --ink-faint: #9a8b8b;
  --cocoa: #2b1f1e;
  --linha: #ece3e0;
  --sombra: 0 1px 2px rgba(70, 40, 40, 0.04), 0 8px 24px rgba(70, 40, 40, 0.06);
  --sombra-alta: 0 2px 6px rgba(70, 40, 40, 0.06), 0 20px 50px rgba(70, 40, 40, 0.12);
  --raio: 14px;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'InterVar', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }

a { color: inherit; }

/* rotulo que troca entre tela larga e tela de celular */
.so-estreito { display: none; }
@media (max-width: 640px) {
  .so-largo { display: none; }
  .so-estreito { display: inline; }
}

.wrap { width: min(1180px, 100% - 48px); margin-inline: auto; }
.wrap-estreito { width: min(760px, 100% - 48px); margin-inline: auto; }

/* ---------- faixa de demonstracao ---------- */
.demo-faixa {
  background: var(--cocoa);
  color: #f0e6e2;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.demo-faixa b { color: var(--rose-300); font-weight: 600; }

/* ---------- topo ---------- */
.topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linha);
}
.topo-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }
.marca { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.marca img { width: 46px; height: 46px; border-radius: 50%; }
.marca-txt { display: flex; flex-direction: column; line-height: 1.1; }
.marca-nome { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--rose-900); }
.marca-sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.nav { display: flex; gap: 28px; font-size: 14px; }
.nav a { text-decoration: none; color: var(--ink-soft); transition: color 0.2s; }
.nav a:hover { color: var(--rose-700); }

/* botao do menu, so aparece quando a barra de links nao cabe */
.menu-btn {
  display: none;
  width: 42px; height: 42px; flex: none;
  align-content: center; justify-items: center; gap: 5px;
  padding: 0; border: 1px solid var(--linha); border-radius: 12px;
  background: var(--paper); cursor: pointer;
  transition: background 0.16s, border-color 0.16s;
}
.menu-btn span {
  display: block; width: 18px; height: 2px; border-radius: 2px;
  background: var(--rose-900);
  transition: transform 0.22s ease, opacity 0.16s ease;
}
.menu-btn:hover { background: var(--rose-50); border-color: var(--rose-300); }
.topo.aberto .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topo.aberto .menu-btn span:nth-child(2) { opacity: 0; }
.topo.aberto .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-principal { background: var(--rose-700); color: #fff; box-shadow: 0 6px 18px rgba(208, 120, 120, 0.32); }
.btn-principal:hover { background: var(--rose-800); transform: translateY(-1px); }
.btn-claro { background: var(--paper); color: var(--rose-900); border: 1px solid var(--rose-300); }
.btn-claro:hover { background: var(--rose-50); }
.btn-pequeno { padding: 9px 18px; font-size: 14px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.hero-txt { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px 72px 0; }
.selo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--rose-50);
  border: 1px solid var(--rose-300);
  color: var(--rose-900);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(38px, 4.6vw, 62px); color: var(--rose-900); }
.hero h1 em { font-style: italic; color: var(--rose-700); }
.hero-lead { font-size: 18px; color: var(--ink-soft); margin: 22px 0 32px; max-width: 46ch; }
.hero-acoes { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-fatos { display: flex; gap: 32px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--linha); }
.fato-n { font-family: var(--serif); font-size: 27px; color: var(--rose-800); line-height: 1; }
.fato-l { font-size: 12px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 5px; }
.hero-img { position: relative; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--cream) 0%, rgba(247, 245, 242, 0) 26%);
}

/* ---------- secoes ---------- */
.secao { padding: 90px 0; }
.secao-creme { background: var(--cream); }
.secao-papel { background: var(--paper); }
.secao-blush { background: linear-gradient(180deg, var(--rose-50) 0%, var(--cream) 100%); }

.cabeca { max-width: 620px; margin-bottom: 44px; }
.cabeca.centro { margin-inline: auto; text-align: center; }
.olho {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-700);
  font-weight: 600;
  margin-bottom: 12px;
}
.cabeca h2 { font-size: clamp(29px, 3.2vw, 41px); color: var(--rose-900); }
.cabeca p { color: var(--ink-soft); font-size: 17px; margin: 14px 0 0; }

/* ---------- passos ---------- */
.passos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.passo { background: var(--paper); border: 1px solid var(--linha); border-radius: var(--raio); padding: 30px 26px; }
.passo-n {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose-100); color: var(--rose-900);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  margin-bottom: 16px;
}
.passo h3 { font-size: 20px; color: var(--rose-900); margin-bottom: 8px; }
.passo p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- controles da vitrine ---------- */
.controles {
  position: sticky; top: 76px; z-index: 30;
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  padding: 18px 22px;
  margin-bottom: 30px;
  box-shadow: var(--sombra);
}
.controle-linha { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.controle-linha + .controle-linha { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--linha); }
.controle-rot { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; min-width: 92px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--linha); background: var(--paper); color: var(--ink-soft);
  border-radius: 999px; padding: 8px 17px; font-size: 14px; font-family: var(--sans);
  cursor: pointer; transition: all 0.16s;
}
.chip:hover { border-color: var(--rose-300); color: var(--rose-800); }
.chip[aria-pressed='true'] { background: var(--rose-700); border-color: var(--rose-700); color: #fff; font-weight: 600; }
.peso-nota { font-size: 13px; color: var(--ink-faint); margin-left: 4px; }
.contagem { margin-left: auto; font-size: 14px; color: var(--ink-faint); }
.contagem b { color: var(--rose-800); font-weight: 600; }

/* ---------- cards de sabor ---------- */
.vitrine { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 18px; }
.sabor {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--linha);
  border-radius: var(--raio);
  padding: 26px 24px 22px;
  display: flex; flex-direction: column;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
}
.sabor::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 3px;
  border-radius: var(--raio) var(--raio) 0 0;
  background: linear-gradient(90deg, var(--rose-300), var(--rose-100));
}
.sabor:hover { transform: translateY(-3px); box-shadow: var(--sombra-alta); border-color: var(--rose-300); }
.sabor-fam { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); font-weight: 600; }
.sabor h3 { font-size: 22px; color: var(--rose-900); margin: 9px 0 10px; }
.sabor-rec { font-size: 14px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.sabor-pe { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--linha); }
.sabor-preco { font-family: var(--serif); font-size: 27px; color: var(--rose-800); line-height: 1; }
.sabor-preco small { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); display: block; margin-bottom: 3px; font-weight: 500; }
.sabor-serve { font-size: 12px; color: var(--ink-faint); text-align: right; line-height: 1.35; }
.vazio { text-align: center; padding: 60px 0; color: var(--ink-faint); grid-column: 1 / -1; }

/* ---------- portfolio ---------- */
.portfolio-showcase { position: relative; overflow: hidden; background: #2f2021; color: #fff; }
.portfolio-showcase::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(208,120,120,.19); filter: blur(70px); right: -180px; top: -170px; }
.portfolio-head { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px,7vw,110px); align-items: end; margin-bottom: 44px; }
.portfolio-head h2 { color: #fff; font-size: clamp(42px,6vw,78px); max-width: 800px; margin: 10px 0 0; line-height: .98; }
.portfolio-head .olho { color: #e8b8b8; }
.portfolio-intro p { color: #eadfdd; font-size: 17px; line-height: 1.75; }
.portfolio-proof { display: flex; gap: 24px; margin-top: 24px; color: #d9c8c5; font-size: 13px; }
.portfolio-proof b { display: block; color: #fff; font: 600 21px var(--serif); }
.galeria { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(190px,23vw); gap: 14px; }
.peca { position: relative; border-radius: 22px; overflow: hidden; background: var(--rose-100); min-height: 260px; }
.peca:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.peca:nth-child(2) { grid-row: span 2; }
.peca:nth-child(5) { grid-column: span 2; }
.peca img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.peca:hover img { transform: scale(1.065); }
.peca::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.13); border-radius: inherit; pointer-events: none; }
.peca-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 44px 20px 18px;
  background: linear-gradient(180deg, rgba(43, 31, 30, 0) 0%, rgba(43, 31, 30, 0.82) 62%);
  color: #fff;
}
.peca-cap strong { font-family: var(--serif); font-size: 19px; font-weight: 600; display: block; }
.peca-cap span { font-size: 13px; opacity: 0.85; }
.portfolio-showcase .ponte { border-color: rgba(255,255,255,.16); }
.portfolio-showcase .ponte p { color: #eadfdd; }
.portfolio-showcase .btn-principal { background: #f2dcd9; color: #4a292d; }

/* ---------- pronta entrega ---------- */
.pronta { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.item { background: var(--paper); border: 1px solid var(--linha); border-radius: var(--raio); overflow: hidden; }
.item-img { aspect-ratio: 1; background: var(--rose-50); }
.item-img img { width: 100%; height: 100%; object-fit: cover; }
.item-txt { padding: 14px 15px 16px; }
.item-txt h4 { font-family: var(--sans); font-size: 14px; font-weight: 600; margin: 0 0 4px; color: var(--ink); line-height: 1.3; }
.item-txt p { font-size: 12px; color: var(--ink-faint); margin: 0 0 9px; line-height: 1.4; min-height: 17px; }
.item-preco { font-family: var(--serif); font-size: 19px; color: var(--rose-800); }

/* ---------- formulario ---------- */
.form-secao { background: var(--cocoa); color: #efe4e1; padding: 90px 0; }
.form-secao .olho { color: var(--rose-300); }
.form-secao .cabeca h2 { color: #fff; }
.form-secao .cabeca p { color: rgba(239, 228, 225, 0.7); }
.form-caixa { background: var(--paper); border-radius: 20px; padding: 40px; color: var(--ink); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3); }
.campos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.campo { display: flex; flex-direction: column; gap: 7px; }
.campo.largo { grid-column: 1 / -1; }
.campo label { font-size: 13px; font-weight: 600; color: var(--ink); }
.campo label span { color: var(--rose-700); }
.dica { font-size: 12px; color: var(--ink-faint); font-weight: 400; }
.campo input, .campo select, .campo textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--linha); border-radius: 10px;
  padding: 12px 14px; width: 100%; transition: border-color 0.16s, box-shadow 0.16s;
}
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none; border-color: var(--rose-500); box-shadow: 0 0 0 3px rgba(216, 136, 136, 0.16); background: var(--paper);
}
.campo textarea { resize: vertical; min-height: 84px; }
.opcoes { display: flex; gap: 9px; flex-wrap: wrap; }
.opcao { position: relative; }
.opcao input { position: absolute; opacity: 0; pointer-events: none; }
.opcao > span {
  display: block; border: 1px solid var(--linha); background: var(--cream);
  border-radius: 10px; padding: 11px 17px; font-size: 14px; cursor: pointer; transition: all 0.16s;
}
.opcao input:checked + span { background: var(--rose-700); border-color: var(--rose-700); color: #fff; font-weight: 600; }
.opcao input:focus-visible + span { box-shadow: 0 0 0 3px rgba(216, 136, 136, 0.3); }

.resumo { background: var(--rose-50); border: 1px solid var(--rose-300); border-radius: 14px; padding: 22px 24px; margin-top: 26px; }
.resumo-topo { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.resumo-topo h4 { font-family: var(--serif); font-size: 20px; color: var(--rose-900); margin: 0; }
.resumo-total { font-family: var(--serif); font-size: 33px; color: var(--rose-800); line-height: 1; }
.resumo-linhas { display: grid; gap: 6px; font-size: 14px; color: var(--ink-soft); }
.resumo-linhas div { display: flex; justify-content: space-between; gap: 16px; }
.resumo-linhas b { color: var(--ink); font-weight: 600; text-align: right; }
.aviso-prazo {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--paper); border: 1px solid var(--linha); border-radius: 10px;
  padding: 12px 14px; margin-top: 14px; font-size: 13px; color: var(--ink-soft);
}
.aviso-prazo.alerta { border-color: var(--rose-500); background: #fff5f4; color: var(--rose-900); }
.form-rodape { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.form-nota { font-size: 13px; color: var(--ink-faint); max-width: 46ch; }

/* ---------- prazos ---------- */
.prazos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prazo { background: var(--paper); border: 1px solid var(--linha); border-radius: var(--raio); padding: 26px; text-align: center; }
.prazo-h { font-family: var(--serif); font-size: 34px; color: var(--rose-700); line-height: 1; }
.prazo h3 { font-size: 17px; margin: 12px 0 6px; color: var(--rose-900); }
.prazo p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- sobre ---------- */
.sobre { display: grid; grid-template-columns: 0.85fr 1fr; gap: 54px; align-items: center; }
.sobre-foto { margin: 0; position: relative; }
.sobre-foto img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 22%;
  border-radius: 18px; box-shadow: var(--sombra-alta);
}
.sobre-foto figcaption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(6px);
  color: var(--rose-900); font-size: 13px; font-weight: 600;
  padding: 8px 15px; border-radius: 999px;
}
.sobre p { color: var(--ink-soft); font-size: 17px; }

/* ---------- rodape ---------- */
.rodape { background: var(--cocoa); color: rgba(239, 228, 225, 0.72); padding: 66px 0 30px; font-size: 14px; }
.rodape-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.rodape h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-300); margin: 0 0 14px; font-weight: 600; }
.rodape-marca { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.rodape-marca img { width: 58px; height: 58px; border-radius: 50%; }
.rodape-marca strong { font-family: var(--serif); font-size: 22px; color: #fff; font-weight: 600; display: block; }
.rodape-marca span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; }
.rodape a { color: rgba(239, 228, 225, 0.72); text-decoration: none; }
.rodape a:hover { color: var(--rose-300); }
.rodape ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.rodape-fim { margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; opacity: 0.65; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal[open] { display: block; }
.modal-fundo { position: absolute; inset: 0; background: rgba(43, 31, 30, 0.55); backdrop-filter: blur(3px); }
.modal-caixa {
  position: relative; background: var(--paper); border-radius: 18px;
  width: min(520px, calc(100% - 32px)); margin: 8vh auto 0; padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); max-height: 84vh; overflow-y: auto;
}
.modal-fechar { position: absolute; top: 14px; right: 14px; border: 0; background: var(--cream); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 18px; color: var(--ink-soft); }
.modal-foto { display: block; width: 100%; height: 200px; object-fit: cover; border-radius: var(--raio); box-shadow: var(--sombra); margin-bottom: 18px; }
.modal-foto[hidden] { display: none; }
.tabela-pesos { width: 100%; border-collapse: collapse; margin: 18px 0 4px; font-size: 15px; }
.tabela-pesos th { text-align: left; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; padding-bottom: 8px; }
.tabela-pesos td { padding: 9px 0; border-top: 1px solid var(--linha); }
.tabela-pesos td:last-child { text-align: right; font-family: var(--serif); font-size: 18px; color: var(--rose-800); }
.tabela-pesos tr.destaque td { color: var(--rose-900); font-weight: 600; }

/* ---------- revelacao, visivel por padrao ---------- */
.js .rev { opacity: 0; transform: translateY(16px); }
.js .rev.visivel { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-txt { padding: 56px 0 44px; order: 2; }
  .hero-img { order: 1; height: 300px; }
  .hero-img::after { background: linear-gradient(0deg, var(--cream) 0%, rgba(247, 245, 242, 0) 34%); }
  .passos, .prazos, .galeria, .rodape-grid { grid-template-columns: 1fr 1fr; }
  .sobre { grid-template-columns: 1fr; gap: 34px; }

  /* a barra de links vira gaveta sob o topo */
  .menu-btn { display: grid; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--linha);
    box-shadow: var(--sombra-alta);
    padding: 4px 0 8px;
    font-size: 16px;
  }
  .topo.aberto .nav { display: flex; }
  .nav a {
    padding: 14px 24px; color: var(--ink);
    border-top: 1px solid var(--linha);
  }
  .nav a:first-child { border-top: 0; }
}
@media (max-width: 640px) {
  .wrap, .wrap-estreito { width: calc(100% - 32px); }
  .secao, .form-secao { padding: 62px 0; }
  .passos, .prazos, .galeria, .rodape-grid, .campos, .vitrine { grid-template-columns: 1fr; }
  .pronta { grid-template-columns: 1fr 1fr; }
  .form-caixa { padding: 26px 20px; }
  .controles { position: static; }
  .hero-fatos { gap: 20px; }
  .controle-rot { min-width: 0; width: 100%; }
  .marca-nome { font-size: 15px; white-space: nowrap; }
  .marca-sub { display: none; }
  .marca img { width: 34px; height: 34px; }
  .marca { gap: 9px; }
  .topo-in { gap: 10px; }
  .menu-btn { width: 38px; height: 38px; }
  .btn-pequeno { padding: 9px 13px; font-size: 13px; }
  .topo-cta { white-space: nowrap; }
  .peso-nota { width: 100%; margin: 2px 0 0; }
}

/* ---------- icone social no topo ---------- */
.icone-social {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--linha); color: var(--rose-800);
  background: var(--paper); flex: none;
  transition: background 0.16s, border-color 0.16s, color 0.16s, transform 0.16s;
}
.icone-social:hover { background: var(--rose-50); border-color: var(--rose-300); color: var(--rose-900); transform: translateY(-1px); }

/* ---------- prova social: google, instagram, tempo de casa ---------- */
.prova { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: stretch; }
.prova-google {
  background: var(--paper); border: 1px solid var(--linha); border-radius: 18px;
  padding: 30px 28px; box-shadow: var(--sombra);
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.aval-google {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.prova-linha { display: flex; align-items: baseline; gap: 16px; margin-top: -4px; }
.aval-n { font-family: var(--serif); font-size: 66px; line-height: 1; color: var(--rose-900); }
.aval-estrelas { color: #c97a12; font-size: 20px; letter-spacing: 3px; }
.aval-estrelas .meia { opacity: 0.42; }
.aval-total { font-size: 15px; color: var(--ink-soft); margin: -6px 0 0; }
.aval-total b { color: var(--ink); }
.prova-google .btn { margin-top: auto; align-self: stretch; }

.prova-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prova-num {
  background: var(--paper); border: 1px solid var(--linha); border-radius: 18px;
  padding: 28px 24px; box-shadow: var(--sombra);
}
.prova-n {
  font-family: var(--serif); font-size: 44px; line-height: 1;
  color: var(--rose-800); margin-bottom: 10px;
}
.prova-num h3 { font-size: 18px; color: var(--rose-900); margin-bottom: 8px; }
.prova-num p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.prova-num a { color: var(--rose-800); text-decoration: underline; text-underline-offset: 3px; }

.prova-fonte {
  font-size: 13px; color: var(--ink-soft); line-height: 1.65;
  margin: 26px 0 0; padding-top: 18px; border-top: 1px solid var(--linha);
  max-width: 72ch;
}

/* ---------- links do rodape com icone ---------- */
.rodape-links a { display: inline-flex; align-items: center; gap: 9px; }
.rodape-links svg { flex: none; opacity: 0.75; }
.rodape-links a:hover svg { opacity: 1; }

@media (max-width: 980px) {
  .prova { grid-template-columns: 1fr; gap: 20px; }
  .prova-nums { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .icone-social { display: none; }
  .prova-nums { grid-template-columns: 1fr; }
  .prova-num { padding: 22px 20px; }
  .prova-n { font-size: 38px; }
}

/* ---------- ponte entre portfolio e vitrine ---------- */
.ponte {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; text-align: center;
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--linha);
}
.ponte p { margin: 0; font-size: 17px; color: var(--ink-soft); }

/* ---------- sinal no resumo do pedido ---------- */
.resumo-sinal {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rose-300);
  display: grid; gap: 6px; font-size: 14px; color: var(--ink-soft);
}
.resumo-sinal div { display: flex; justify-content: space-between; gap: 16px; }
.resumo-sinal b { color: var(--rose-900); font-weight: 700; }
.resumo-sinal div:first-child b { font-size: 16px; }
.consentimento { display: flex !important; grid-template-columns: 22px 1fr; align-items: start; gap: 10px; font-size: 13px; color: var(--ink-soft); }
.consentimento input { margin-top: 3px; width: 18px; height: 18px; }
.form-sucesso { margin: 22px 28px 28px; padding: 24px; border-radius: var(--raio); background: #e4f2e9; color: #285c3d; text-align: center; }
.form-sucesso b { display: block; font-family: var(--serif); font-size: 27px; margin: 5px 0; }
@media(max-width:900px){.portfolio-head{grid-template-columns:1fr}.galeria{grid-template-columns:repeat(2,1fr);grid-auto-rows:280px}.peca:nth-child(1){grid-column:span 2;grid-row:span 1}.peca:nth-child(2){grid-row:span 1}.peca:nth-child(5){grid-column:span 1}}
@media(max-width:560px){.portfolio-proof{flex-direction:column;gap:10px}.galeria{grid-template-columns:1fr;grid-auto-rows:360px}.peca:nth-child(n){grid-column:span 1;grid-row:span 1}.portfolio-head h2{font-size:42px}}
