/* ANIMA — a folha de estilo, uma só.
 *
 * Marca "Atelier" — Home, Experiences, Design, Atelier. Paleta verde, calma
 * e sem género (handoff do Claude Design, 24 set 2026): névoa e salva para
 * fundos claros, oliva para acentos, tropa e musgo para fundos escuros,
 * tinta verde para texto e botões primários. Nada aqui é inline — a CSP
 * não deixa, e é melhor assim.
 */

@import url("/css/fontes.css");

:root {
  --nevoa: #edefe6;
  --salva: #c4c8ae;
  --salva-clara: #d3d6c1;
  --oliva: #6b7048;
  --tropa: #454b30;
  --musgo: #2f3322;
  --tinta: #20241a;
  --texto-secundario: #4f5538;
  --divisoria: #cfd2bf;
  --erro: #9a4b3c;

  --serif: "Noto Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Albert Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;

  --largura: 1400px;
  --margem: clamp(20px, 4cqi, 48px);
  --transicao: 250ms ease;
}

/* ------------------------------------------------------------------ base */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--nevoa);
  color: var(--tinta);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.sem-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--texto-secundario);
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

select {
  font: inherit;
}

.visualmente-oculto {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--largura);
  margin: 0 auto;
  padding: 0 var(--margem);
}

main {
  flex: 1;
}

/* --------------------------------------------------------------- logótipo */

@keyframes respirar {
  0%, 100% { letter-spacing: 0.02em; opacity: 0.9; }
  50% { letter-spacing: 0.16em; opacity: 1; }
}

.logotipo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.logotipo--respira {
  display: inline-block;
  animation: respirar 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logotipo--respira {
    animation: none;
    letter-spacing: 0.08em;
  }
}

.monograma-letra {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  line-height: 1;
}

/* ------------------------------------------------------------- cabeçalho */

.cabecalho {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(237, 239, 230, 0.94);
  color: var(--tinta);
}

.cabecalho--escuro {
  background: rgba(69, 75, 48, 0.9);
  color: var(--nevoa);
}

.cabecalho__linha {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 52px;
  font-size: 14px;
}

.cabecalho__menu {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
  gap: 4px;
  width: 18px;
}

.cabecalho__menu span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
}

.cabecalho__logo {
  justify-self: center;
  font-size: 28px;
}

/* ------------------------------------------------------------------ menu */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  background: var(--tropa);
  color: var(--nevoa);
  display: flex;
  flex-direction: column;
  padding: 22px 22px 30px;
}

.menu[hidden] {
  display: none;
}

.menu__topo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 52px;
  font-size: 14px;
}

.menu__fechar {
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
  padding: 0;
  justify-self: start;
}

.menu__lista {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--oliva);
}

.menu__item-nome {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(36px, 8cqi, 56px);
  line-height: 1;
}

.menu__item-sub {
  font-size: 13px;
  color: var(--salva-clara);
  white-space: nowrap;
}

.menu__conversar {
  height: 56px;
  border-radius: 28px;
  background: var(--nevoa);
  color: var(--tinta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: 18px 0;
}

.menu__contacto {
  font-size: 12px;
  color: var(--salva-clara);
}

/* ------------------------------------------------------------------ rodapé */

.rodape {
  background: var(--tinta);
  color: var(--nevoa);
  padding: 56px var(--margem) 40px;
}

.rodape__logo {
  font-size: clamp(56px, 14cqi, 140px);
}

.rodape__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 14px;
  padding: 28px 0;
}

.rodape__fim {
  font-size: 12px;
  color: var(--salva);
}

/* --------------------------------------------------------------- botões */

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border-radius: 28px;
  background: var(--tinta);
  color: var(--nevoa);
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--tinta);
  cursor: pointer;
}

.botao--claro {
  background: var(--nevoa);
  color: var(--tinta);
  border-color: var(--nevoa);
}

.botao--fantasma {
  background: transparent;
  color: var(--tinta);
  border: 1px solid var(--tinta);
}

.botao--largo {
  width: 100%;
}

.botao[disabled] {
  opacity: 0.5;
  cursor: default;
}

.rotulo {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--texto-secundario);
}

.rotulo--claro {
  color: var(--salva);
}

/* -------------------------------------------------------- botão flutuante */

.flutuante-conversar {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 15;
  height: 52px;
  border-radius: 26px;
  background: var(--tinta);
  color: var(--nevoa);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 8px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px -10px rgba(32, 36, 26, 0.5);
}

.flutuante-conversar__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tropa);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* ------------------------------------------------------------- tab bar */

.abas {
  display: none;
}

@media (max-width: 640px) {
  .abas {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 15;
    background: rgba(237, 239, 230, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--divisoria);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 10px 6px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .abas__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    font-size: 11px;
    color: var(--oliva);
    text-decoration: none;
    text-align: center;
  }

  .abas__item[aria-current="page"] {
    color: var(--tinta);
  }

  .abas__ponto {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: transparent;
  }

  .abas__item[aria-current="page"] .abas__ponto {
    background: var(--tinta);
  }

  main {
    padding-bottom: 84px;
  }

  .flutuante-conversar {
    /* A barra de abas já tem "conversar" — o botão flutuante fica só para
       o desktop, que não tem barra de abas (24 set 2026 → 26 set 2026). */
    display: none;
  }
}

/* ------------------------------------------------------------------ home */

.hero-visao {
  background: var(--tropa);
  color: var(--nevoa);
  margin-top: -52px;
  padding-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
}

.hero-visao__texto {
  padding: clamp(40px, 8cqi, 110px) var(--margem) clamp(32px, 5cqi, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
}

.hero-visao__titulo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(60px, 13cqi, 150px);
  line-height: 0.92;
  max-width: 9ch;
  margin: 0;
}

.hero-visao__texto p {
  font-size: clamp(16px, 2cqi, 19px);
  line-height: 1.55;
  color: var(--salva-clara);
  max-width: 38ch;
  margin: 0;
}

.hero-visao__foto {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-visao__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historia {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(36px, 6cqi, 80px);
  padding: clamp(56px, 9cqi, 120px) var(--margem);
}

.historia__bloco {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.historia__bloco h2 {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(40px, 6cqi, 64px);
  line-height: 1;
  margin: 0;
}

.historia__bloco p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--texto-secundario);
  max-width: 42ch;
  margin: 0;
  text-wrap: pretty;
}

.servicos {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.servico {
  position: relative;
  display: block;
  height: clamp(420px, 95cqi, 640px);
  overflow: hidden;
  background: var(--tropa);
  text-decoration: none;
  color: var(--nevoa);
}

.servico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servico::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 36, 26, 0) 45%, rgba(32, 36, 26, 0.65) 100%);
}

.servico__legenda {
  position: absolute;
  left: var(--margem);
  right: var(--margem);
  bottom: clamp(24px, 4cqi, 48px);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.servico__nome-bloco {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servico__numero {
  font-family: var(--mono);
  font-size: 11px;
}

.servico__nome {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(56px, 11cqi, 120px);
  line-height: 0.9;
}

.servico__seta {
  font-size: 14px;
  white-space: nowrap;
  padding-bottom: 8px;
}

.citacao {
  padding: clamp(56px, 9cqi, 120px) var(--margem) clamp(28px, 4cqi, 48px);
}

.citacao p {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 7cqi, 84px);
  line-height: 1;
  max-width: 15ch;
  margin: 0;
}

.fotos-tres {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
}

.fotos-tres > div {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.fotos-tres img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principios {
  padding: clamp(40px, 7cqi, 96px) var(--margem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 28px;
}

.principio {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--divisoria);
  padding-top: 18px;
}

.principio__titulo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
}

.principio__texto {
  font-size: 14px;
  line-height: 1.55;
  color: var(--texto-secundario);
}

/* --------------------------------------------------------------- páginas de secção (título + intro) */

.pagina-hero {
  padding: clamp(28px, 5cqi, 64px) var(--margem) clamp(24px, 4cqi, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pagina-hero__titulo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(72px, 14cqi, 160px);
  line-height: 0.9;
  margin: 0;
}

.pagina-hero p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--texto-secundario);
  max-width: 42ch;
  margin: 0;
}

/* ---------------------------------------------------------- experiences */

.exp-hero {
  position: relative;
  margin-top: -52px;
  height: clamp(640px, 165cqi, 860px);
  background: var(--musgo);
  color: var(--nevoa);
  overflow: hidden;
}

.exp-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 36, 26, 0.25) 0%, rgba(32, 36, 26, 0.1) 35%, rgba(32, 36, 26, 0.8) 100%);
}

.exp-hero__conteudo {
  position: absolute;
  left: var(--margem);
  right: var(--margem);
  bottom: clamp(28px, 4cqi, 56px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.exp-hero__titulo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(72px, 15cqi, 168px);
  line-height: 0.9;
  margin: 0;
}

.exp-hero p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--nevoa);
  max-width: 40ch;
  margin: 0;
}

.exp-hero .botao {
  max-width: 360px;
}

.lista-secao {
  padding: clamp(40px, 7cqi, 96px) var(--margem) 0;
}

.lista-secao__rotulo {
  padding-bottom: 14px;
  display: block;
}

.lista-linha {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--divisoria);
}

.lista-linha__a {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(34px, 6cqi, 64px);
  line-height: 1;
}

.lista-linha__b {
  font-size: 14px;
  color: var(--texto-secundario);
  text-align: right;
}

.fotos-duas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  margin-top: clamp(40px, 7cqi, 96px);
}

.fotos-duas > div {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.fotos-duas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.passos {
  padding: clamp(40px, 7cqi, 96px) var(--margem);
}

.passos__rotulo {
  padding-bottom: 18px;
  display: block;
}

.passos__grelha {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 28px;
}

.passo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.passo__numero {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
  color: var(--oliva);
}

.passo__titulo {
  font-size: 18px;
}

.passo__texto {
  font-size: 14px;
  line-height: 1.55;
  color: var(--texto-secundario);
}

.foto-larga {
  overflow: hidden;
}

.foto-larga img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foto-larga--16-10 {
  aspect-ratio: 16 / 10;
}

.foto-larga--16-11 {
  aspect-ratio: 16 / 11;
}

/* ---------------------------------------------------------------- design */

.tipos-lista {
  padding: clamp(40px, 7cqi, 96px) var(--margem) 0;
}

.tipo-linha {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--divisoria);
}

.tipo-linha__a {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(34px, 6cqi, 64px);
  line-height: 1;
}

.tipo-linha__b {
  font-size: 14px;
  line-height: 1.55;
  color: var(--texto-secundario);
  max-width: 48ch;
}

.projectos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 3px;
  padding: 0 calc(var(--margem) - 20px);
}

.projecto {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 22px;
  text-decoration: none;
  color: inherit;
}

.projecto__foto {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.projecto__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projecto__legenda {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 14px;
}

.projecto__legenda span:last-child {
  color: var(--texto-secundario);
}

.cta-secao {
  padding: clamp(28px, 5cqi, 64px) var(--margem);
}

/* --------------------------------------------------------------- atelier */

.atelier-filtros {
  display: flex;
  gap: 22px;
  padding: 0 var(--margem) 22px;
  font-size: 14px;
  overflow-x: auto;
  white-space: nowrap;
}

.atelier-filtros a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  color: var(--texto-secundario);
  text-decoration: none;
}

.atelier-filtros a[aria-current="true"] {
  color: var(--tinta);
  border-bottom-color: var(--tinta);
}

.grelha-atelier {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(50% - 2px, 280px), 1fr));
  gap: 3px;
}

.peca-ficha {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
  text-decoration: none;
  color: inherit;
}

.peca-ficha__foto {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--salva);
}

.peca-ficha__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.peca-ficha__linha {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  font-size: 14px;
}

.peca-ficha__preco {
  color: var(--texto-secundario);
  white-space: nowrap;
}

.etiqueta {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--nevoa);
  color: var(--tinta);
  font-size: 11px;
  font-family: var(--mono);
  padding: 4px 10px;
  border-radius: 12px;
}

.etiqueta--esgotado {
  background: var(--musgo);
  color: var(--nevoa);
}

.vazio {
  padding: 40px var(--margem);
  color: var(--texto-secundario);
}

/* ------------------------------------------------------------------ peça */

.peca {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
}

.peca__foto {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--salva);
}

.peca__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.peca__voltar {
  position: absolute;
  top: 18px;
  left: var(--margem);
  font-size: 14px;
  background: var(--nevoa);
  color: var(--tinta);
  border-radius: 18px;
  padding: 8px 14px;
  text-decoration: none;
}

.peca__info {
  padding: clamp(28px, 5cqi, 64px) var(--margem);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.peca__titulo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(52px, 8cqi, 88px);
  line-height: 0.95;
  margin: 0;
}

.peca__preco {
  font-size: 18px;
}

.peca__descricao {
  font-size: 15px;
  line-height: 1.6;
  color: var(--texto-secundario);
  max-width: 44ch;
}

.peca__campo label {
  display: block;
  font-size: 13px;
  color: var(--texto-secundario);
  margin-bottom: 6px;
}

.peca__campo select {
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--divisoria);
  padding: 0 12px;
  background: var(--nevoa);
}

.quantidade {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--divisoria);
  border-radius: 28px;
  padding: 8px 18px;
}

.quantidade button {
  font-size: 18px;
  line-height: 1;
}

.peca__nota {
  font-size: 13px;
  color: var(--texto-secundario);
  text-align: center;
}

.detalhes {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--texto-secundario);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ---------------------------------------------------------------- saco */

.saco {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(28px, 5cqi, 64px) var(--margem) 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.saco__titulo {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: 72px;
  line-height: 0.9;
  margin: 0;
}

.saco-linha {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--divisoria);
}

.saco-linha__foto {
  width: 72px;
  height: 90px;
  overflow: hidden;
}

.saco-linha__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saco-linha__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.saco-linha__remover {
  font-size: 12px;
  color: var(--texto-secundario);
  text-decoration: underline;
}

.saco__total {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--tinta);
  font-size: 16px;
}

.saco__nota {
  font-size: 13px;
  color: var(--texto-secundario);
  text-align: center;
}

.saco__mensagem {
  font-size: 14px;
  color: var(--erro);
}

/* ------------------------------------------------------------- conversa */

.conversa {
  max-width: 620px;
  margin: 0 auto;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
}

.conversa__cabeca {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px var(--margem) 18px;
  border-bottom: 1px solid var(--divisoria);
}

.conversa__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tropa);
  color: var(--nevoa);
  display: grid;
  place-items: center;
  font-size: 26px;
}

.conversa__quem {
  display: flex;
  flex-direction: column;
}

.conversa__resposta {
  font-size: 12px;
  color: var(--texto-secundario);
}

.conversa__corpo {
  padding: 24px var(--margem) 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.balao {
  max-width: 80%;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.45;
}

.balao--eles {
  align-self: flex-start;
  background: var(--salva-clara);
  color: var(--tinta);
  border-radius: 20px 20px 20px 6px;
}

.balao--nos {
  align-self: flex-end;
  background: var(--tropa);
  color: var(--nevoa);
  border-radius: 20px 20px 6px 20px;
}

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

.chip {
  cursor: pointer;
  border: 1px solid var(--oliva);
  border-radius: 22px;
  padding: 11px 16px;
  font-size: 14px;
  background: none;
  color: inherit;
  font-family: inherit;
}

.conversa__formulario {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conversa__formulario input {
  height: 48px;
  border-radius: 24px;
  border: 1px solid var(--divisoria);
  padding: 0 18px;
  font: inherit;
  background: var(--nevoa);
}

/* ----------------------------------------------------- páginas de texto */

.pagina {
  padding: clamp(40px, 7cqi, 80px) var(--margem);
  max-width: 760px;
  margin: 0 auto;
}

.pagina__cabeca {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
}

.pagina__cabeca h1 {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: clamp(48px, 8cqi, 80px);
  line-height: 1;
  margin: 0;
}

.prosa h2 {
  font-family: var(--serif);
  font-stretch: 62.5%;
  font-weight: 300;
  font-size: 28px;
  margin: 40px 0 12px;
}

.prosa p,
.prosa li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--texto-secundario);
}

.prosa a {
  text-decoration: underline;
}

.centro {
  text-align: center;
  padding: clamp(56px, 9cqi, 96px) var(--margem);
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.centro .monograma-letra {
  font-size: 64px;
  color: var(--oliva);
}

.resumo {
  width: 100%;
  text-align: left;
  border-top: 1px solid var(--divisoria);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.resumo__linha {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.por-preencher {
  background: #fef3c7;
  color: #7c5c00;
  padding: 1px 4px;
  border-radius: 3px;
}
