/* Identidade visual: manual de marca Luíza Sales, por Eliz Bossi (2026) */
:root {
  --terracota: #8f4b2f;
  --camel: #9d7961;
  --offwhite: #f4f2ed;
  --areia: #e8e4da;
  --bege: #d1c6b0;
  --canela: #613320;
  --borgonha: #551c0b;
  --carbono: #282119;

  --texto: var(--carbono);
  --texto-suave: #6e6259;
  --linha: rgba(40, 33, 25, 0.14);

  --sans: "Switzer", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4.5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--offwhite);
  color: var(--texto);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -0.035em; line-height: 1.02; }
h1 { font-size: clamp(2.08rem, 4.32vw, 3.84rem); }
h2 { font-size: clamp(1.68rem, 3.2vw, 2.8rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.2; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.selo { margin: 0 0 24px; font-size: 0.95rem; color: var(--terracota); }

/* ---------- marca (arquivos vetorizados do manual, usados como máscara) ---------- */
.logo, .icone {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask: var(--m) center / contain no-repeat;
          mask: var(--m) center / contain no-repeat;
}
.logo--assinatura { --m: url(/assets/assinatura.svg); aspect-ratio: 3654 / 588; }
.logo--monograma  { --m: url(/assets/monograma.svg);  aspect-ratio: 750 / 924; }
.logo--simbolo    { --m: url(/assets/simbolo.svg);    aspect-ratio: 792 / 756; }
.icone--implementacao { --m: url(/assets/icon-implementacao.svg); }
.icone--gestao3d      { --m: url(/assets/icon-gestao3d.svg); }
.icone--power         { --m: url(/assets/icon-power.svg); }
.icone--consultoria   { --m: url(/assets/icon-consultoria.svg); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border: 0; border-radius: 6px;
  background: var(--terracota); color: var(--offwhite);
  font: 500 0.95rem/1 var(--sans); letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn:hover { background: var(--canela); }
.btn--sm { padding: 11px 20px; font-size: 0.88rem; }
.btn--linha { background: transparent; color: var(--terracota); box-shadow: inset 0 0 0 1px var(--terracota); }
.btn--linha:hover { background: var(--terracota); color: var(--offwhite); }
.btn--bege { background: var(--bege); color: var(--canela); }
.btn--bege:hover { background: var(--terracota); color: var(--offwhite); }
.link { font-size: 0.95rem; color: var(--terracota); text-underline-offset: 4px; }
.acoes { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 40px; }

/* ---------- topo ---------- */
.topo { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--offwhite) 94%, transparent); backdrop-filter: blur(10px); }
.topo__inner { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); height: 80px; display: flex; align-items: center; justify-content: space-between; }
.marca { display: flex; color: var(--canela); }
.marca .logo--assinatura { width: 150px; }
.nav { display: flex; align-items: center; gap: 32px; font-size: 0.95rem; }
.nav a:not(.btn) { text-decoration: none; color: var(--texto-suave); }
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--terracota); }

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: clamp(560px, calc(100svh - 80px), 860px);
}
.hero__texto {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 80px) clamp(48px, 7vw, 96px) max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.hero h1 { font-weight: 300; font-size: clamp(1.92rem, 3.44vw, 3.12rem); }
.hero h1 em { color: var(--terracota); }
.hero__lead { margin: 28px 0 0; max-width: 46ch; color: var(--texto-suave); }
.hero__foto { position: relative; margin: 0; height: 100%; min-height: 560px; overflow: hidden; background: var(--areia); }
.hero__foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero__assinatura {
  position: absolute; right: 3%; top: 8%; bottom: 8%; width: 13%;
  background: var(--offwhite);
  -webkit-mask: url(/assets/assinatura-vertical.svg) center / contain no-repeat;
          mask: url(/assets/assinatura-vertical.svg) center / contain no-repeat;
}

/* ---------- soluções (layout proposto pela designer) ---------- */
.solucoes { padding: clamp(48px, 6vw, 80px) 0 clamp(80px, 10vw, 140px); background: #fff; }
.solucoes__cab { margin: 0 auto clamp(56px, 7vw, 88px); text-align: center; }
.solucoes__titulo { font-weight: 300; font-size: clamp(1.9rem, 3.4vw, 3rem); text-wrap: balance; }
.solucoes__titulo em { color: var(--terracota); }
.solucoes__grade { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(28px, 3vw, 48px); }
.solucao { display: flex; flex-direction: column; align-items: center; text-align: center; }
.solucao__selo { width: 112px; height: 112px; margin-bottom: 28px; }
.solucao h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 1.7vw, 1.6rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--canela); }
.solucao p { flex: 1; margin: 16px 0 28px; font-size: 0.93rem; color: var(--texto-suave); }
.curso {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: clamp(56px, 7vw, 88px); padding: 26px 32px;
  background: var(--offwhite); text-decoration: none; transition: background .25s ease;
}
.curso:hover { background: var(--areia); }
.curso strong { font-weight: 500; color: var(--terracota); }
.curso__seta { flex: none; width: 26px; aspect-ratio: 792 / 756; background: var(--terracota); -webkit-mask: url(/assets/simbolo.svg) center / contain no-repeat; mask: url(/assets/simbolo.svg) center / contain no-repeat; transform: scaleX(-1); }

/* ---------- tríptico da marca ---------- */
.triptico { padding: clamp(80px, 10vw, 128px) 0 0; }
.triptico__frase { margin: 0 0 clamp(32px, 4vw, 56px); font-size: clamp(2.4rem, 6vw, 5.4rem); font-weight: 300; line-height: 1; letter-spacing: -0.045em; color: var(--canela); }
.triptico__frase em { color: var(--terracota); }
.triptico__fotos { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1.2vw, 16px); }
.triptico__fotos img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

/* ---------- sobre ---------- */
.sobre { padding: clamp(96px, 12vw, 160px) 0 clamp(72px, 9vw, 120px); }
.sobre__grade { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 7vw, 112px); align-items: start; }
.sobre__foto { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; position: sticky; top: 120px; }
.sobre__foto img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 20%; }
.sobre__texto h2 { margin-bottom: 36px; font-weight: 300; }
.sobre__texto p:not(.selo) { max-width: 56ch; margin: 0 0 20px; color: var(--texto-suave); }
.destaque-frase {
  position: relative; margin-top: clamp(72px, 9vw, 120px); padding: clamp(40px, 6vw, 80px);
  background: var(--canela); color: var(--offwhite); overflow: hidden;
}
.destaque-frase p { position: relative; margin: 0; max-width: 20ch; font-size: clamp(1.6rem, 3.52vw, 3.04rem); font-weight: 300; line-height: 1.04; letter-spacing: -0.035em; }
.destaque-frase em { color: var(--bege); }
.destaque-frase .logo--simbolo { position: absolute; right: -2%; bottom: -12%; width: clamp(180px, 26vw, 380px); color: var(--terracota); opacity: .55; }

/* ---------- blog ---------- */
.blog-home { padding: clamp(72px, 9vw, 120px) 0; }
.blog-home__cab { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 32px; }
.blog-home__cab h2 { font-weight: 300; }
.lista { border-top: 1px solid var(--texto); }
.linha {
  display: grid; grid-template-columns: 180px 1fr auto; gap: 24px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--linha); text-decoration: none;
  transition: padding .3s ease, color .2s ease;
}
.linha:hover { padding-left: 12px; color: var(--terracota); }
.linha__data { font-size: 0.88rem; color: var(--texto-suave); }
.linha__titulo { font-size: clamp(1.04rem, 1.6vw, 1.36rem); letter-spacing: -0.025em; line-height: 1.2; }
.linha__titulo small { margin-left: 8px; padding: 3px 8px; border-radius: 4px; background: var(--bege); color: var(--canela); font-size: 0.72rem; letter-spacing: 0; vertical-align: middle; }
.linha__cat { font-size: 0.88rem; color: var(--terracota); }

.blog-cab { padding: clamp(56px, 8vw, 112px) 0 clamp(40px, 5vw, 64px); }
.blog-cab__grade { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; align-items: end; }
.blog-cab h1 { font-weight: 300; max-width: 16ch; }
.blog-cab__grade > p { margin: 0; color: var(--texto-suave); }
.blog-lista { padding-bottom: clamp(80px, 10vw, 128px); }

/* artigo */
.artigo__cab { max-width: 900px; padding-top: clamp(56px, 7vw, 96px); padding-bottom: 48px; }
.artigo__topo { margin: 0 0 32px; font-size: 0.92rem; color: var(--texto-suave); }
.artigo__topo a { color: var(--terracota); }
.artigo__cab h1 { font-weight: 300; }
.artigo__resumo { margin: 24px 0; max-width: 40ch; font-family: var(--serif); font-style: italic; font-size: 1.6rem; line-height: 1.3; color: var(--terracota); }
.artigo__meta { margin: 0; font-size: 0.88rem; color: var(--texto-suave); }
.artigo__rascunho { display: inline-block; margin-top: 16px; padding: 8px 14px; border-radius: 4px; background: var(--bege); color: var(--canela); font-size: 0.85rem; }
.artigo__corpo { max-width: 900px; margin: 0 auto; padding: 48px var(--gutter) 0; }
.artigo__corpo > * { max-width: 660px; }
.artigo__corpo { font-size: 1.08rem; line-height: 1.8; }
.artigo__corpo h2 { margin: 52px 0 12px; font-size: clamp(1.28rem, 2.08vw, 1.68rem); font-weight: 400; }
.artigo__corpo strong { font-weight: 500; }
.artigo__corpo a { color: var(--terracota); text-underline-offset: 3px; }
.artigo__corpo li { margin-bottom: 8px; }
.artigo__corpo li::marker { color: var(--terracota); }
.artigo__corpo blockquote { margin: 44px 0; padding: 32px 36px; background: var(--terracota); color: var(--offwhite); }
.artigo__corpo blockquote p { margin: 0; font-size: 1.5rem; font-weight: 300; line-height: 1.25; letter-spacing: -0.02em; }
.artigo__corpo--doc { padding-bottom: clamp(80px, 10vw, 120px); }
.artigo__autora { max-width: 900px; margin: 64px auto clamp(72px, 9vw, 112px); padding: 0 var(--gutter); display: flex; gap: 24px; }
.artigo__autora > div { max-width: 560px; padding-top: 28px; border-top: 1px solid var(--linha); }
.artigo__autora .logo--monograma { flex: none; width: 40px; color: var(--terracota); margin-top: 28px; }
.artigo__autora p { margin: 0 0 14px; font-size: 0.93rem; color: var(--texto-suave); }
.artigo__autora .artigo__autora-nome { margin-bottom: 4px; font-size: 1.1rem; font-weight: 500; color: var(--texto); }

/* ---------- newsletter "Puxa uma cadeira" ---------- */
.news { position: relative; overflow: hidden; background: var(--canela) url(/assets/estampa.svg) center top / 380px auto repeat; color: var(--offwhite); padding: clamp(80px, 10vw, 128px) 0; }

.news::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(97,51,32,.55) 0%, rgba(97,51,32,.2) 55%, rgba(97,51,32,0) 100%); pointer-events: none; }
.news__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 112px); align-items: center; }
.news .selo { color: var(--bege); }
.news h2 { font-weight: 300; font-size: clamp(2.08rem, 4vw, 3.52rem); }
.news__sub { margin: 20px 0 16px; font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.3; color: var(--bege); }
.news__texto > p:last-child { margin: 0; max-width: 46ch; color: rgba(244, 242, 237, .8); }
.news__form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: clamp(28px, 4vw, 44px); background: var(--offwhite); color: var(--texto); }
.news__campo span { display: block; margin-bottom: 6px; font-size: 0.85rem; color: var(--texto-suave); }
.news__campo input { width: 100%; height: 52px; padding: 0 16px; border: 1px solid var(--linha); border-radius: 6px; background: #fff; color: inherit; font: inherit; font-size: 1rem; }
.news__campo input:focus { outline: 2px solid var(--terracota); outline-offset: -1px; }
.news__aceite { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; margin-top: 6px; font-size: 0.8rem; line-height: 1.5; color: var(--texto-suave); cursor: pointer; }
.news__aceite input { flex: none; width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--terracota); }
.news__aceite a { color: inherit; }
.news__form .btn { grid-column: 1 / -1; height: 54px; margin-top: 6px; }
.news__form .btn:disabled { opacity: .6; }
.news__form.news__form--hl { display: block; padding: 0; background: transparent; }
.news__form--hl iframe { display: block; width: 100%; border: 0; background: transparent; }
.news__aviso { grid-column: 1 / -1; margin: 4px 0 0; font-size: 0.88rem; color: var(--terracota); }

/* ---------- contato ---------- */
.contato { padding: clamp(96px, 12vw, 160px) 0; }
.contato__grade { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 96px); align-items: end; }
.contato h2 { font-weight: 300; font-size: clamp(2.08rem, 4.32vw, 3.84rem); max-width: 12ch; }
.contato h2 em { color: var(--terracota); }
.contato p { margin: 0; max-width: 40ch; color: var(--texto-suave); }

/* ---------- rodapé com a assinatura gigante ---------- */
.rodape { background: var(--terracota); color: var(--offwhite); padding-top: 72px; overflow: hidden; }
.rodape__topo { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.rodape__frase { margin: 0; font-size: 1.1rem; }
.rodape__nav { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 0.95rem; }
.rodape__nav a { text-decoration: none; color: rgba(244, 242, 237, .8); }
.rodape__nav a:hover { color: var(--offwhite); }
.rodape__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; font-size: 0.85rem; color: rgba(244, 242, 237, .65); }
.rodape__base p { margin: 0; }
.rodape__base a { color: inherit; }
.rodape__gigante {
  margin: 40px auto 0; width: calc(100% - 2 * var(--gutter)); max-width: 1500px; aspect-ratio: 3654 / 470;
  background: var(--canela);
  -webkit-mask: url(/assets/assinatura.svg) center top / 100% auto no-repeat;
          mask: url(/assets/assinatura.svg) center top / 100% auto no-repeat;
}


/* ---------- páginas de produto ---------- */
.produto-hero { padding: clamp(32px, 5vw, 64px) 0 clamp(72px, 9vw, 120px); }
.produto-hero__grade { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.produto-hero__topo { margin: 0 0 40px; font-size: 0.92rem; color: var(--texto-suave); }
.produto-hero__topo a { color: var(--terracota); }
.produto-hero__icone { width: 64px; height: 64px; color: var(--terracota); }
.produto-hero__nome { margin: 20px 0 20px; font-size: 1.1rem; font-weight: 500; color: var(--canela); }
.produto-hero h1 { font-weight: 300; font-size: clamp(1.84rem, 3.36vw, 3.04rem); }
.produto-hero h1 em { color: var(--terracota); }
.produto-hero__resumo { margin: 28px 0 0; max-width: 50ch; color: var(--texto-suave); }
.produto-hero__foto { margin: 0; aspect-ratio: 4 / 5; border-radius: 0 0 220px 0; overflow: hidden; }
.produto-hero__foto img { width: 100%; height: 100%; object-fit: cover; }

.para-quem { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 128px) 0; background: var(--terracota); color: var(--offwhite); }
.para-quem__grade { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 96px); }
.para-quem h2 { font-weight: 300; }
.para-quem ul { list-style: none; margin: 0; padding: 0; }
.para-quem li { display: flex; gap: 20px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid rgba(244, 242, 237, .25); font-size: clamp(0.88rem, 1.28vw, 1.04rem); line-height: 1.4; letter-spacing: -0.01em; }
.para-quem li:first-child { padding-top: 0; }
.para-quem li .logo--simbolo { flex: none; width: 18px; color: var(--bege); transform: scaleX(-1); }

.como-funciona { padding: clamp(80px, 10vw, 128px) 0 0; }
.como-funciona h2 { font-weight: 300; margin-bottom: clamp(40px, 5vw, 64px); }
.etapas { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--texto); }
.etapas li { padding: 28px 28px 0 0; }
.etapas li + li { padding-left: 28px; border-left: 1px solid var(--linha); }
.etapas h3 { font-weight: 500; color: var(--canela); }
.etapas p { margin: 12px 0 0; font-size: 0.95rem; color: var(--texto-suave); }
.areas { list-style: none; margin: clamp(48px, 6vw, 72px) 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.areas li { padding: 9px 18px; border-radius: 6px; background: var(--bege); color: var(--canela); font-size: 0.92rem; }

.outras { padding: 0 0 clamp(80px, 10vw, 120px); }
.outras__grade { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.outra { display: flex; align-items: center; gap: 18px; padding: 24px 28px; background: #fff; text-decoration: none; font-weight: 500; color: var(--canela); transition: background .25s ease; }
.outra:hover { background: var(--areia); }
.outra .icone { width: 36px; height: 36px; color: var(--terracota); }

@media (max-width: 860px) {
  .produto-hero__grade, .para-quem__grade { grid-template-columns: 1fr; }
  .produto-hero__foto { max-width: 440px; }
  .etapas { grid-template-columns: 1fr 1fr; }
  .etapas li:nth-child(3) { padding-left: 0; border-left: 0; }
  .outras__grade { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .etapas { grid-template-columns: 1fr; }
  .etapas li + li { padding-left: 0; border-left: 0; }
}


/* ---------- página de vendas: Gestão One Page ---------- */
.gop-hero { padding: clamp(32px, 5vw, 64px) 0 clamp(72px, 9vw, 112px); }
.gop-hero__grade { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.gop-hero h1 { font-weight: 300; font-size: clamp(2.3rem, 4.6vw, 4.2rem); }
.gop-hero h1 em { color: var(--terracota); }
.gop-hero__lead { margin: 24px 0 0; max-width: 50ch; color: var(--texto-suave); }
.gop-hero__nota { margin: 18px 0 0; font-size: 0.85rem; color: var(--texto-suave); }
.gop-hero__foto { position: relative; margin: 0; aspect-ratio: 3 / 4; overflow: hidden; background: var(--areia); }
.gop-hero__foto img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.gop-hero__selo {
  position: absolute; left: 0; bottom: 0; display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; background: var(--terracota); color: var(--offwhite);
  font-size: 0.95rem; font-weight: 500; line-height: 1.15;
}
.gop-hero__selo .logo--monograma { width: 26px; color: var(--bege); }

.gop-ferias { padding: clamp(64px, 8vw, 104px) 0; background: var(--terracota); color: var(--offwhite); }
.gop-ferias p { margin: 0; max-width: 22ch; font-size: clamp(1.9rem, 3.8vw, 3.3rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.035em; }
.gop-ferias em { color: var(--bege); }

.gop-dor { padding: clamp(80px, 10vw, 128px) 0 0; }
.gop-dor__grade { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 96px); }
.gop-dor h2 { font-weight: 300; }
.gop-dor ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--texto); }
.gop-dor li { display: flex; gap: 18px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--linha); font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.4; }
.gop-dor li .logo--simbolo { flex: none; width: 16px; color: var(--terracota); transform: scaleX(-1); }
.gop-dor .destaque-frase p { max-width: 24ch; }

.gop-depoimentos { padding: clamp(80px, 10vw, 128px) 0; }
.gop-depoimentos h2 { max-width: 20ch; margin-bottom: clamp(32px, 4vw, 56px); font-weight: 300; }
.gop-depoimentos__faixa {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) 12px;
}
.gop-depoimentos__faixa img { flex: none; height: clamp(280px, 30vw, 420px); width: auto; border-radius: 6px; scroll-snap-align: start; background: #fff; }

.gop-conteudo { padding: clamp(80px, 10vw, 128px) 0; background: #fff; }
.gop-conteudo__grade { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.gop-conteudo h2 { font-weight: 300; }
.gop-lista { list-style: none; margin: 0; padding: 0; counter-reset: g; border-top: 1px solid var(--texto); }
.gop-lista li { counter-increment: g; display: grid; grid-template-columns: 48px 1fr; padding: 24px 0; border-bottom: 1px solid var(--linha); }
.gop-lista li::before { content: counter(g); font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.1; color: var(--terracota); }
.gop-lista h3 { font-weight: 400; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.4; letter-spacing: -0.01em; }

.gop-para-quem { padding: clamp(80px, 10vw, 128px) 0; }
.gop-para-quem__grade { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 96px); }
.gop-para-quem h2 { font-weight: 300; }
.gop-para-quem ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gop-para-quem li { padding: 24px; background: var(--areia); font-size: 0.98rem; line-height: 1.5; }

.gop-oferta { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 128px) 0; background: var(--canela) url(/assets/estampa.svg) center top / 380px auto repeat; color: var(--offwhite); }

.gop-oferta__grade { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.gop-oferta h2 { font-weight: 300; }
.gop-oferta__texto p { margin: 20px 0 0; max-width: 40ch; color: rgba(244, 242, 237, .8); }
.gop-card { padding: clamp(28px, 4vw, 48px); background: var(--offwhite); color: var(--texto); }
.gop-card__nome { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; font-size: 1.15rem; font-weight: 500; color: var(--canela); }
.gop-card__nome .logo--monograma { width: 24px; color: var(--terracota); }
.gop-card ul { list-style: none; margin: 0 0 28px; padding: 0; }
.gop-card li { position: relative; padding: 10px 0 10px 26px; border-bottom: 1px solid var(--linha); font-size: 0.95rem; }
.gop-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 12px; height: 7px; border-left: 2px solid var(--terracota); border-bottom: 2px solid var(--terracota); transform: rotate(-45deg); }
.gop-card__preco { margin: 0; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; letter-spacing: -0.04em; line-height: 1; color: var(--terracota); }
.gop-card__preco small { font-size: 1rem; letter-spacing: 0; color: var(--texto-suave); }
.gop-card__avista { margin: 6px 0 24px; color: var(--texto-suave); }
.gop-card .btn { width: 100%; }
.gop-card__seguro { margin: 12px 0 0; text-align: center; font-size: 0.8rem; color: var(--texto-suave); }

.gop-luiza { padding: clamp(80px, 10vw, 128px) 0 0; }
.gop-luiza__grade { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 7vw, 112px); align-items: center; }
.gop-luiza .sobre__foto { position: static; }
.gop-luiza h2 { font-weight: 300; margin-bottom: 28px; }
.gop-credenciais { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--texto); }
.gop-credenciais li { padding: 14px 0; border-bottom: 1px solid var(--linha); color: var(--texto-suave); }

@media (max-width: 860px) {
  .gop-hero__grade, .gop-dor__grade, .gop-conteudo__grade, .gop-para-quem__grade, .gop-oferta__grade, .gop-luiza__grade { grid-template-columns: 1fr; }
  .gop-hero__foto { max-width: 380px; }
  .gop-luiza .sobre__foto { max-width: 380px; }
}
@media (max-width: 560px) {
  .gop-para-quem ul { grid-template-columns: 1fr; }
}


/* ---------- instagram ---------- */
.insta { padding: 0 0 clamp(80px, 10vw, 120px); }
.insta__cab { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-bottom: 32px; }
.insta__cab h2 { font-weight: 300; }
.insta__grade { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta__grade--poucos { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.insta__post { display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--areia); }
.insta__post img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, opacity .3s ease; }
.insta__post:hover img { transform: scale(1.04); opacity: .9; }
@media (max-width: 860px) { .insta__grade { grid-template-columns: repeat(3, 1fr); } }


/* ---------- página de soluções ---------- */
.servicos-cab { padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 4vw, 48px); }
.servicos-cab h1 { max-width: 18ch; font-weight: 300; font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
.servicos-cab h1 em { color: var(--terracota); }
.servicos-nav { position: sticky; top: 80px; z-index: 5; background: color-mix(in srgb, var(--offwhite) 94%, transparent); backdrop-filter: blur(10px); border-block: 1px solid var(--linha); }
.servicos-nav__lista { display: flex; gap: 8px 32px; flex-wrap: wrap; align-items: center; padding-top: 14px; padding-bottom: 14px; }
.servicos-nav a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-style: italic; font-size: 1.05rem; font-weight: 400; color: var(--canela); text-decoration: none; }
.servicos-nav a:hover { color: var(--terracota); }
.servicos-nav img { width: 30px; height: 30px; }
.servicos-nav__curso { margin-left: auto; font-weight: 400 !important; color: var(--terracota) !important; text-decoration: underline !important; text-underline-offset: 4px; }

.servico { padding: clamp(80px, 10vw, 128px) 0; scroll-margin-top: 140px; }
.servico--invertido { background: #fff; }
.servico__topo { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.servico--invertido .servico__intro { order: 2; }
.servico__selo { width: 104px; height: 104px; }
.servico__nome { margin: 18px 0 14px; font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 1.8vw, 1.65rem); line-height: 1.1; color: var(--canela); }
.servico h2 { font-weight: 300; font-size: clamp(1.9rem, 3.4vw, 3rem); }
.servico h2 em { color: var(--terracota); }
.servico__resumo { margin: 22px 0 0; max-width: 50ch; color: var(--texto-suave); }
.servico__foto { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; }
.servico__foto img { width: 100%; height: 100%; object-fit: cover; }
.servico__detalhes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); margin-top: clamp(56px, 7vw, 88px); padding-top: 40px; border-top: 1px solid var(--texto); }
.servico__bloco h3 { margin-bottom: 20px; font-weight: 500; color: var(--canela); }
.servico__lista { list-style: none; margin: 0; padding: 0; }
.servico__lista li { display: flex; gap: 14px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--linha); line-height: 1.45; }
.servico__lista .logo--simbolo { flex: none; width: 14px; color: var(--terracota); transform: scaleX(-1); }
.servico__etapas { list-style: none; margin: 0; padding: 0; counter-reset: e; }
.servico__etapas li { counter-increment: e; position: relative; padding: 14px 0 14px 40px; border-bottom: 1px solid var(--linha); color: var(--texto-suave); line-height: 1.5; }
.servico__etapas li::before { content: counter(e); position: absolute; left: 0; top: 12px; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--terracota); }
.servico__etapas strong { display: block; font-weight: 500; color: var(--texto); }
.servico .areas { margin-top: 28px; }
.servico__frase { margin: clamp(48px, 6vw, 72px) 0 0; font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 300; line-height: 1.2; letter-spacing: -0.03em; color: var(--terracota); max-width: 30ch; }

@media (max-width: 860px) {
  .servico__topo, .servico__detalhes { grid-template-columns: 1fr; }
  .servico--invertido .servico__intro { order: 0; }
  .servico__foto { max-width: 420px; }
  .servicos-nav { top: 80px; }
  .servicos-nav__lista { flex-wrap: nowrap; overflow-x: auto; }
  .servicos-nav a { white-space: nowrap; }
  .servicos-nav__curso { margin-left: 0; }
}


/* ---------- quebras entre seções ---------- */
/* faixa fina com a estampa da marca */
.faixa-estampa { height: clamp(44px, 5vw, 64px); background: var(--canela) url(/assets/estampa.svg) center / 300px auto repeat; }
/* foto de ponta a ponta com uma frase por cima */
.banda { position: relative; display: flex; align-items: flex-end; min-height: clamp(420px, 62vw, 720px); overflow: hidden; color: var(--offwhite); }
.banda img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banda::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(40,33,25,.72) 0%, rgba(40,33,25,.15) 55%, rgba(40,33,25,0) 100%); }
.banda .wrap { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(40px, 6vw, 88px); }
.banda p { margin: 0; max-width: 26ch; font-size: clamp(1.8rem, 3.6vw, 3.2rem); font-weight: 300; line-height: 1.08; letter-spacing: -0.035em; }
.banda em { color: var(--bege); }


/* ---------- galeria de artigos ---------- */
.galeria { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 56px) clamp(20px, 2.5vw, 32px); }
.cartao { display: flex; flex-direction: column; text-decoration: none; }
.cartao__capa { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--areia); margin-bottom: 20px; }
.cartao__capa img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.cartao:hover .cartao__capa img { transform: scale(1.04); }
.cartao__rascunho { position: absolute; left: 12px; top: 12px; padding: 4px 10px; background: var(--bege); color: var(--canela); font-size: 0.72rem; }
.cartao__meta { font-size: 0.82rem; color: var(--terracota); }
.cartao__titulo { margin-top: 8px; font-size: clamp(1.2rem, 1.7vw, 1.45rem); line-height: 1.2; letter-spacing: -0.025em; transition: color .2s ease; }
.cartao:hover .cartao__titulo { color: var(--terracota); }
.cartao__resumo { margin-top: 10px; font-size: 0.92rem; line-height: 1.55; color: var(--texto-suave); }
.blog-lista .galeria { padding-top: 40px; border-top: 1px solid var(--texto); }
.artigo__capa { max-width: 900px; margin: 0 auto; }
.artigo__capa img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
@media (max-width: 860px) { .galeria { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .galeria { grid-template-columns: 1fr; } }


/* ---------- depoimentos e clientes ---------- */
.depoimentos { padding: clamp(80px, 10vw, 128px) 0; background: var(--offwhite); }
.depoimentos__cab { max-width: 760px; margin-bottom: clamp(48px, 6vw, 72px); }
.depoimentos__cab h2 { font-weight: 300; }
.depoimentos__cab h2 em { color: var(--terracota); }
.prints { position: relative; }
.prints__faixa {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin-right: calc(-1 * max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)))); padding-right: var(--gutter);
}
.prints__faixa::-webkit-scrollbar { display: none; }
.prints__faixa img { flex: none; width: clamp(240px, 26vw, 340px); height: auto; scroll-snap-align: start; box-shadow: 0 1px 0 var(--linha), 0 12px 32px -18px rgba(40, 33, 25, .35); }
.prints__setas { display: flex; gap: 8px; margin-top: 24px; }
.prints__seta { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--texto); border-radius: 50%; background: transparent; color: var(--texto); cursor: pointer; transition: background .2s ease, color .2s ease; }
.prints__seta:hover { background: var(--terracota); border-color: var(--terracota); color: var(--offwhite); }
.prints__seta .logo--simbolo { width: 16px; }
.prints__seta--prox .logo--simbolo { transform: scaleX(-1); }

.clientes { margin-top: 0; }
.depoimentos__sub { margin: clamp(56px, 7vw, 88px) 0 24px; font-size: 0.95rem; color: var(--terracota); }
.clientes__titulo { margin: 0 0 24px; font-size: 0.95rem; color: var(--terracota); }
.clientes__lista { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(12px, 1.6vw, 24px); }
.clientes__lista--empresas { grid-template-columns: repeat(8, 1fr); margin-top: clamp(36px, 4vw, 56px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--linha); }
.clientes__lista a, .clientes__item { display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; }
.clientes__foto { width: 100%; max-width: 84px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; margin-bottom: 14px; box-shadow: 0 0 0 1px var(--linha); transition: transform .3s ease, box-shadow .3s ease; }
.clientes__lista a:hover .clientes__foto { transform: translateY(-3px); box-shadow: 0 0 0 2px var(--terracota); }
.clientes__nome { font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.15; color: var(--canela); }
.clientes__area { margin-top: 4px; font-size: 0.75rem; line-height: 1.35; color: var(--texto-suave); }
.clientes__ig { margin-top: 6px; font-size: 0.75rem; color: var(--terracota); word-break: break-all; }
@media (max-width: 860px) {
  .clientes__lista, .clientes__lista--empresas { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
}


/* ---------- card central dos produtos (home) ---------- */
.modal {
  width: min(880px, calc(100vw - 32px)); max-height: calc(100svh - 48px); padding: clamp(28px, 4vw, 56px);
  border: 0; background: var(--offwhite); color: var(--texto); overflow: auto;
  box-shadow: 0 30px 80px -30px rgba(40, 33, 25, .5);
}
.modal::backdrop { background: rgba(40, 33, 25, .55); backdrop-filter: blur(3px); }
.modal[open] { animation: modal-in .25s ease; }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__fechar { position: absolute; top: 14px; right: 18px; width: 40px; height: 40px; border: 0; background: none; font-size: 2rem; line-height: 1; color: var(--canela); cursor: pointer; }
.modal__topo { display: flex; gap: 24px; align-items: center; padding-right: 32px; }
.modal__selo { flex: none; width: 88px; height: 88px; }
.modal__nome { margin: 0 0 6px; font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--canela); }
.modal h2 { font-weight: 300; font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.1; }
.modal h2 em { color: var(--terracota); }
.modal__resumo { margin: 24px 0 0; color: var(--texto-suave); }
.modal__grade { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--texto); }
.modal h3 { margin-bottom: 12px; font-weight: 500; color: var(--canela); }
.modal__acoes { margin-top: 32px; }
body:has(.modal[open]) { overflow: hidden; }
@media (max-width: 700px) {
  .modal__topo { flex-direction: column; align-items: flex-start; }
  .modal__grade { grid-template-columns: 1fr; }
}

/* ---------- página da newsletter (/puxaumacadeira/) ---------- */
.pac { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: calc(100svh - 80px); }
.pac__foto { position: relative; margin: 0; overflow: hidden; background: var(--areia); }
.pac__foto img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.pac__conteudo {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(56px, 7vw, 104px) max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) clamp(56px, 7vw, 104px) clamp(32px, 6vw, 96px);
  background: var(--canela) url(/assets/estampa.svg) center top / 380px auto repeat; color: var(--offwhite);
}
.pac .selo { color: var(--bege); }
.pac h1 { font-weight: 300; font-size: clamp(2.6rem, 5vw, 4.4rem); }
.pac__texto { margin: 0 0 14px; max-width: 48ch; color: rgba(244, 242, 237, .82); }
.pac .news__form { margin-top: 20px; }
@media (max-width: 860px) {
  .pac { grid-template-columns: 1fr; }
  .pac__foto { aspect-ratio: 4 / 5; max-height: 70svh; }
  .pac__conteudo { padding: 56px var(--gutter); }
}

/* ---------- página não encontrada ---------- */
.nao-encontrada { padding: clamp(96px, 14vw, 180px) 0; }
.nao-encontrada h1 { max-width: 18ch; font-weight: 300; font-size: clamp(2.2rem, 4.4vw, 4rem); }
.nao-encontrada h1 em { color: var(--terracota); }
.nao-encontrada p:not(.selo) { margin: 24px 0 0; max-width: 46ch; color: var(--texto-suave); }

/* ---------- responsivo ---------- */
@media (max-width: 1000px) {
  .solucoes__grade { grid-template-columns: repeat(2, 1fr); row-gap: 64px; }
}
@media (max-width: 860px) {
  .nav a:not(.btn) { display: none; }
  .hero, .sobre__grade, .news__inner, .contato__grade, .blog-cab__grade { grid-template-columns: 1fr; }
  .hero__foto { min-height: 0; aspect-ratio: 4 / 5; }
  .hero__texto { padding: 48px var(--gutter); }
  .sobre__foto { position: static; max-width: 420px; }
  .linha { grid-template-columns: 1fr; gap: 6px; }
  .linha__cat { display: none; }
}
@media (max-width: 560px) {
  .solucoes__grade { grid-template-columns: 1fr; }
  .news__form { grid-template-columns: 1fr; }
  .curso { padding: 22px; }
  .marca .logo--assinatura { width: 124px; }
}
