/* =========================================================
   Ateliê Carla Denise — variante "Catálogo v2"
   Origem: Landing Page Catalogo v2.dc.html (Claude Design)
   Assinaturas do layout reproduzidas aqui:
     · loader com contador e véu que sobe
     · barra de progresso de leitura no topo
     · cabeçalho que encolhe + menu circular em tela cheia
     · display sans pesado com trechos em serifa itálica
     · marquee escuro entre o hero e o conteúdo
     · tabela de valores filtrável por categoria
   ========================================================= */

:root {
  --papel: #FAF0DC;        /* creme base                            */
  --papel-2: #F2E6CD;      /* faixa alternada, um tom abaixo        */
  --tinta: #1B1714;        /* preto quente do texto e dos blocos    */
  --tinta-fundo: #100D0B;  /* poço do bloco de vídeo                */

  --roxo: #734C80;         /* acento da marca                       */
  --roxo-escuro: #5C3D67;
  --lilas: #C9A6D6;        /* acento sobre fundo escuro             */
  --marrom: #684322;

  --texto: #4A423C;
  --texto-2: #5B534D;
  --texto-3: #7A6F66;
  --texto-4: #A39A92;

  --linha: rgba(27, 23, 20, .16);
  --linha-fraca: rgba(27, 23, 20, .09);
  --linha-marrom: rgba(104, 67, 34, .2);
  --linha-marrom-fraca: rgba(104, 67, 34, .14);
  --linha-clara: rgba(250, 240, 220, .16);

  --creme-82: rgba(250, 240, 220, .82);
  --creme-70: rgba(250, 240, 220, .70);
  --creme-62: rgba(250, 240, 220, .62);
  --creme-42: rgba(250, 240, 220, .42);

  --sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  --gutter: clamp(20px, 5vw, 44px);
  --max: 1400px;
  --secao: clamp(84px, 11vw, 130px);

  --suave: cubic-bezier(.16, 1, .3, 1);
  --veludo: cubic-bezier(.76, 0, .24, 1);
}

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

/* o atributo hidden precisa vencer os display: grid/flex das classes */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, p { margin: 0; }

.interno {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.interno--medio { max-width: 1300px; }
.interno--estreito { max-width: 1100px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.pular {
  position: absolute; left: 50%; top: 8px; z-index: 200;
  transform: translate(-50%, -160%);
  padding: 12px 22px; border-radius: 999px;
  background: var(--tinta); color: var(--papel);
  font-size: 14px;
  transition: transform .3s var(--suave);
}
.pular:focus-visible { transform: translate(-50%, 0); }

:focus-visible { outline: 2px solid var(--roxo); outline-offset: 3px; }

/* micro-rótulo em caixa alta, repetido em todas as seções */
.rotulo {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--roxo);
}
.rotulo--claro { color: var(--lilas); }

/* trecho em serifa itálica dentro dos displays */
.italico {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

/* sublinhado que cresce no hover */
.hoverline {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .5s var(--suave);
}
.hoverline:hover, .hoverline:focus-visible { background-size: 100% 1px; }

/* ====================== ANIMAÇÕES ====================== */

@keyframes riseIn  { from { opacity: 0; transform: translateY(110%) } to { opacity: 1; transform: none } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
@keyframes veil    { from { transform: scaleY(1) } to { transform: scaleY(0) } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes lineGrow{ from { transform: scaleX(0) } to { transform: scaleX(1) } }

/* revelação no scroll */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s var(--suave), transform 1.1s var(--suave);
}
.rv.on { opacity: 1; transform: none; }

/* Cascata dos cards — versão curta e barata da revelação.
   Blocos grandes de texto pedem os 30px e 1,1s do .rv; uma grade de cards
   com esse mesmo tempo parece lenta, porque são vários elementos chegando
   ao mesmo tempo no campo de visão. Aqui a distância é menor (14px), o
   corpo encolhe de leve (.985) e o atraso entre irmãos é de 70ms.
   Só transform e opacity: as duas propriedades que o navegador anima na
   GPU, sem recalcular layout — é o que mantém o scroll liso no celular. */
@keyframes cascataEntra {
  from { opacity: 0; transform: translateY(14px) scale(.985) }
  to   { opacity: 1; transform: none }
}
.rv--cascata { transform: none; }
/* animation em vez de transition de propósito: o card já usa transition para
   o hover, e as duas regras brigariam. Fill "backwards" segura o estado
   inicial durante o atraso e devolve o controle ao CSS normal no fim — sem
   isso, o preenchimento congelaria o transform e mataria o hover. */
.rv--cascata.on {
  animation: cascataEntra .55s var(--suave) calc(var(--fila, 0) * 70ms) backwards;
}

/* ====================== LOADER ====================== */

.loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: var(--tinta);
  transform-origin: top;
}
.loader.pronto {
  animation: veil .9s var(--veludo) forwards;
  pointer-events: none;
}
.loader__marca {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(30px, 5vw, 58px);
  color: var(--papel);
  letter-spacing: -.02em;
}
.loader__trilho {
  position: relative; overflow: hidden;
  width: min(46vw, 320px); height: 1px;
  margin: 26px auto 0;
  background: rgba(250, 240, 220, .22);
}
.loader__barra {
  position: absolute; inset: 0 auto 0 0;
  width: 0;
  background: var(--lilas);
  transition: width .18s linear;
}
.loader__pct {
  margin-top: 16px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .24em;
  color: var(--creme-62);
}

/* ====================== PROGRESSO DE LEITURA ====================== */

.progresso {
  position: fixed; left: 0; right: 0; top: 0; z-index: 80;
  height: 3px; pointer-events: none;
}
.progresso__barra {
  height: 100%;
  background: var(--roxo);
  transform: scaleX(0);
  transform-origin: left;
}

/* ====================== CABEÇALHO ====================== */

.cabecalho {
  position: fixed; left: 0; right: 0; top: 0; z-index: 70;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 26px var(--gutter);
  transition: padding .5s var(--suave), background .5s, box-shadow .5s;
}
.cabecalho.grudado {
  padding-block: 14px;
  background: rgba(250, 240, 220, .86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(27, 23, 20, .08);
}
.cabecalho__marca { display: flex; align-items: center; }
.cabecalho__marca img {
  height: clamp(50px, 5vw, 68px); width: auto;
  transition: height .5s var(--suave);
}
.cabecalho.grudado .cabecalho__marca img { height: clamp(40px, 3.8vw, 52px); }

.cabecalho__acoes { display: flex; align-items: center; gap: 26px; }
.cabecalho__agendar {
  display: none;
  font-size: 13.5px; letter-spacing: .06em; text-transform: uppercase;
}

.menu-botao {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 22px;
  border: 1px solid rgba(27, 23, 20, .2);
  border-radius: 999px;
  background: rgba(250, 240, 220, .7);
  backdrop-filter: blur(10px);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--suave), color .3s var(--suave), border-color .3s var(--suave);
}
.menu-botao:hover { background: var(--tinta); color: var(--papel); border-color: var(--tinta); }
.menu-botao__traco {
  display: block; position: relative;
  width: 16px; height: 1px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  transition: transform .4s, box-shadow .4s;
}
.menu-botao[aria-expanded="true"] { color: var(--papel); }
.menu-botao[aria-expanded="true"] .menu-botao__traco {
  transform: rotate(45deg);
  box-shadow: none;
}

/* ====================== MENU EM TELA CHEIA ====================== */

.menu {
  position: fixed; inset: 0; z-index: 65;
  background: var(--tinta);
  overflow-y: auto;
  clip-path: circle(0% at 92% 6%);
  opacity: 0; pointer-events: none;
  transition: clip-path 1s var(--veludo), opacity .4s;
}
.menu.aberto {
  clip-path: circle(150% at 92% 6%);
  opacity: 1; pointer-events: auto;
}
.menu__interno {
  max-width: 1200px; margin: 0 auto;
  padding: 132px var(--gutter) 60px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px; align-items: start;
}
.menu__links { display: flex; flex-direction: column; gap: 4px; }
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.12; letter-spacing: -.02em;
  color: var(--papel);
  transition: color .35s var(--suave), padding-left .35s var(--suave);
}
.menu__links a:hover, .menu__links a:focus-visible { color: var(--lilas); padding-left: 18px; }

.menu__meta { display: flex; flex-direction: column; gap: 34px; padding-top: 14px; }
.menu__meta dt {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--creme-42);
}
.menu__meta dd { margin: 12px 0 0; }
.menu__meta a { font-size: 17px; color: var(--papel); }

/* ====================== HERO ====================== */

.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px var(--gutter) 52px;
}
/* container do canvas WebGL — cobre o hero inteiro, atrás do conteúdo */
.hero__aura {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__brilho {
  position: absolute; border-radius: 50%;
  filter: blur(40px); pointer-events: none;
}

/* quando a aura em WebGL assume, os brilhos de fallback saem de cena.
   A transição evita o "pulo" no momento em que o shader entra. */
[data-webgl="on"] .hero__brilho {
  opacity: 0;
  transition: opacity .9s var(--suave);
}
.hero__brilho--roxo {
  right: -16%; top: -18%; width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(115, 76, 128, .20), rgba(115, 76, 128, 0) 66%);
}
.hero__brilho--marrom {
  left: -14%; bottom: -26%; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(104, 67, 34, .14), rgba(104, 67, 34, 0) 68%);
}
.hero__interno { position: relative; max-width: var(--max); margin: 0 auto; width: 100%; }

.hero__rotulo {
  letter-spacing: .28em;
  animation: fadeUp 1s var(--suave) .9s both;
}
.hero__titulo {
  margin-top: 26px;
  font-size: clamp(44px, 9.4vw, 148px);
  line-height: .9; letter-spacing: -.045em; font-weight: 600;
}
.hero__titulo span { display: block; overflow: hidden; }
.hero__titulo span > span { animation: riseIn 1.15s var(--suave) both; }
.hero__titulo span:nth-child(1) > span { animation-delay: 1.05s; }
.hero__titulo span:nth-child(2) > span { animation-delay: 1.18s; }
.hero__titulo span:nth-child(3) > span { animation-delay: 1.31s; }
.hero__titulo span:nth-child(4) > span { animation-delay: 1.44s; }
.hero__titulo em { color: var(--roxo); }

.hero__rodape {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 44px; flex-wrap: wrap; margin-top: 44px;
}
.hero__texto {
  max-width: 430px;
  font-size: 16.5px; line-height: 1.7; color: var(--texto-2);
  text-wrap: pretty;
  animation: fadeUp 1.1s var(--suave) 1.5s both;
}
.hero__assinatura {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  animation: fadeUp 1.1s var(--suave) 1.62s both;
}
.hero__linha {
  position: relative; width: 100%; max-width: var(--max);
  height: 1px; margin: 44px auto 0;
  background: var(--linha);
  transform-origin: left;
  animation: lineGrow 1.4s var(--suave) 1.75s both;
}

.retrato {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(104, 67, 34, .24);
}
.retrato--pequeno { width: 44px; height: 44px; }
.assinatura__nome { font-size: 14.5px; font-weight: 600; }
.assinatura__papel { font-size: 13px; color: var(--texto-3); margin-top: 3px; }

/* ====================== BOTÕES ====================== */

.botao {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 9px 9px 9px 26px;
  border-radius: 999px;   /* pill */
  font-size: 15px;
  will-change: transform;
  transition:
    background .2s var(--suave),
    color .2s var(--suave),
    border-color .2s var(--suave),
    box-shadow .2s var(--suave),
    transform .2s var(--suave);
}
.botao:active { transform: scale(.95); }

/* ícone lucide inline — herda a cor e a espessura do traço do botão */
.icone { display: block; width: 18px; height: 18px; flex: none; }

/* disco escuro com a seta inclinada */
.botao__seta {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  transition: transform .2s var(--suave), background .2s var(--suave), filter .2s var(--suave);
}
.botao:hover .botao__seta { transform: scale(1.1) rotate(8deg); }

.botao--tinta { background: var(--tinta); color: var(--papel); }
.botao--tinta .botao__seta { background: var(--papel); color: var(--tinta); }
.botao--tinta:hover {
  background: var(--roxo);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(27, 23, 20, .7);
}
.botao--tinta:active { transform: scale(.95); }

.botao--roxo { background: var(--roxo); color: var(--papel); }
.botao--roxo .botao__seta { background: var(--papel); color: var(--roxo); }
.botao--roxo:hover { background: var(--roxo-escuro); transform: translateY(-2px); }
.botao--roxo:active { transform: scale(.95); }

/* principal: creme com texto escuro e disco preto */
.botao--creme {
  background: var(--papel); color: var(--tinta);
  padding: 10px 10px 10px 30px; font-size: 16.5px;
}
.botao--creme .botao__seta { width: 40px; height: 40px; background: var(--tinta); color: var(--papel); }
.botao--creme .icone { width: 19px; height: 19px; }
.botao--creme:hover {
  background: #FFF7E6;   /* mesmo creme, um passo mais claro */
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(0, 0, 0, .75);
}
.botao--creme:hover .botao__seta { transform: scale(1.12) rotate(8deg); }
.botao--creme:active { transform: scale(.95); box-shadow: none; }

.botao--marrom {
  gap: 12px; padding: 16px 24px 16px 32px;
  border-radius: 4px;
  background: var(--marrom); color: var(--papel);
  font-size: 14.5px; letter-spacing: .03em;
}
.botao--marrom .icone { width: 17px; height: 17px; transition: transform .2s var(--suave); }
.botao--marrom:hover { background: var(--roxo); }
.botao--marrom:hover .icone { transform: translateX(4px); }
.botao--marrom:active { transform: scale(.97); }

/* secundários: ghost com borda fina, preenchem no hover */
.botao--fantasma {
  gap: 11px; padding: 15px 26px;
  border: 1px solid rgba(250, 240, 220, .28);
  background: transparent; color: var(--papel);
}
.botao--fantasma:hover {
  background: var(--papel);
  border-color: var(--papel);
  color: var(--tinta);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -18px rgba(0, 0, 0, .8);
}
.botao--fantasma:active { transform: scale(.95); box-shadow: none; }

/* ====================== MARQUEE ====================== */

.marquee {
  overflow: hidden;
  background: var(--tinta);
  padding: 20px 0;
  border-block: 1px solid rgba(250, 240, 220, .12);
}
.marquee__trilho {
  display: flex; width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.marquee__grupo {
  display: flex; align-items: center; gap: 46px;
  padding-right: 46px;
  font-family: var(--serif); font-style: italic; font-size: 26px;
  color: var(--creme-82); white-space: nowrap;
}
.marquee__grupo b { color: var(--roxo); font-weight: 400; }

/* ====================== O ATELIÊ ====================== */

.secao { padding: var(--secao) 0; }
.secao--papel { background: var(--papel); }
.secao--papel-2 { background: var(--papel-2); }
.secao--tinta { background: var(--tinta); color: var(--papel); }

.atelie__titulo {
  margin-top: 30px;
  font-size: clamp(38px, 6.4vw, 104px);
  line-height: .98; letter-spacing: -.04em; font-weight: 600;
  max-width: 14em;
}
.atelie__colunas {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px; margin-top: 72px; align-items: start;
}
.atelie__prosa { display: flex; flex-direction: column; gap: 24px; }
.atelie__prosa p { font-size: 17px; line-height: 1.75; color: var(--texto); text-wrap: pretty; }
.atelie__lado { display: flex; flex-direction: column; gap: 34px; }
.atelie__citacao {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; line-height: 1.42; color: var(--marrom);
  text-wrap: pretty;
}

.numeros {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--linha-marrom);
}
.numeros div {
  padding: 26px 22px 26px 0;
  border-bottom: 1px solid var(--linha-marrom-fraca);
}
.numeros dt {
  font-family: var(--serif); font-size: 40px;
  line-height: 1; letter-spacing: -.02em;
}
.numeros dd { margin: 9px 0 0; font-size: 13px; line-height: 1.4; color: var(--texto-3); }

/* ====================== MÉTODO REPIGMENT ====================== */

.repigment { position: relative; overflow: hidden; padding: 0 0 var(--secao); }
.repigment__topo { position: relative; padding: 120px var(--gutter) 96px; }
.repigment__fantasma {
  position: absolute; left: 50%; top: 42%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: min(48vw, 660px); line-height: .8;
  letter-spacing: -.05em;
  color: rgba(250, 240, 220, .045);
  pointer-events: none; white-space: nowrap;
}
.repigment__miolo { position: relative; max-width: 800px; margin: 0 auto; text-align: center; }
.repigment__rotulo { display: inline-flex; align-items: center; gap: 12px; }
.repigment__rotulo::before,
.repigment__rotulo::after {
  content: ''; width: 28px; height: 1px;
  background: rgba(201, 166, 214, .45);
}
.repigment__titulo {
  margin-top: 26px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1.04; letter-spacing: -.025em;
}
.repigment__titulo span { color: var(--lilas); }
.repigment__texto {
  max-width: 640px; margin: 30px auto 0;
  font-size: 16.5px; line-height: 1.78;
  color: rgba(250, 240, 220, .66);
  text-wrap: pretty;
}

.video {
  position: relative;
  max-width: 680px; margin: 48px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 6px; overflow: hidden;
  background: var(--tinta-fundo);
  border: 1px solid var(--linha-clara);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .7);
}
/* capa: troque por <img class="video__capa" src="..."> quando houver still do vídeo */
.video__capa {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.video__vazio {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 25%, rgba(115, 76, 128, .38), transparent 70%),
    radial-gradient(70% 90% at 78% 80%, rgba(104, 67, 34, .34), transparent 72%),
    var(--tinta-fundo);
}
.video__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s var(--suave);
}
.video:hover .video__play { transform: scale(1.06); }
.video__disco {
  display: flex; align-items: center; justify-content: center;
  width: 82px; height: 82px; border-radius: 50%;
  background: rgba(250, 240, 220, .94);
}
.video__disco::after {
  content: '';
  width: 0; height: 0; margin-left: 6px;
  border-left: 25px solid var(--marrom);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.video__legenda {
  margin-top: 16px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--creme-42);
}
.repigment__cta { margin-top: 38px; }

.etapas {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--linha-clara);
  border-left: 1px solid var(--linha-clara);
  border-radius: 6px; overflow: hidden;
}
.etapas li {
  padding: 36px 30px 40px;
  border-right: 1px solid var(--linha-clara);
  border-bottom: 1px solid var(--linha-clara);
  transition: background .35s var(--suave);
}
.etapas li:hover { background: rgba(250, 240, 220, .04); }
.etapas__n { font-family: var(--serif); font-size: 38px; line-height: 1; color: rgba(201, 166, 214, .55); }
.etapas__titulo { margin: 16px 0 10px; font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.etapas p { font-size: 14.5px; line-height: 1.68; color: rgba(250, 240, 220, .58); text-wrap: pretty; }

/* ====================== PROCEDIMENTOS ====================== */

.tabela__topo {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.tabela__titulo {
  margin-top: 26px;
  font-size: clamp(38px, 6vw, 92px);
  line-height: .98; letter-spacing: -.04em; font-weight: 600;
}
.tabela__titulo em { color: var(--marrom); }

.tabela__dica {
  max-width: 32em;
  font-family: var(--mono); font-size: 12px; line-height: 1.7;
  color: var(--texto-3);
}

.tabela__rodape { margin-top: 28px; }
.tabela__contagem { font-family: var(--mono); font-size: 12px; color: var(--texto-3); }

/* ---- placeholder de foto: pastel + hachuras + etiqueta ---- */

.placeholder {
  position: relative; overflow: hidden;
  display: flex; justify-content: center;
  background: var(--pastel, #f5f2ee);
}
.placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(120, 100, 85, .09) 0 1px, transparent 1px 9px);
}
.placeholder__etiqueta {
  position: relative;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 1px 2px rgba(27, 23, 20, .06), 0 0 0 1px rgba(27, 23, 20, .05);
  padding: 6px 14px;
  font-family: var(--mono); font-size: 11px;
  text-transform: lowercase; letter-spacing: .02em;
  color: var(--texto-3);
}
.placeholder--rosa  { --pastel: #FBEFEF; }
.placeholder--lilas { --pastel: #F3EDF8; }
.placeholder--azul  { --pastel: #ECF3F8; }
.placeholder--pink  { --pastel: #FBECF2; }
.placeholder--ambar { --pastel: #FAF2E4; }

.placeholder--capa { align-items: flex-start; padding-top: 20px; height: 180px; }
.placeholder--quadro {
  align-items: center; text-align: center;
  width: 82px; height: 82px; flex: none;
  border-radius: 12px; padding: 8px;
}

/* ---- foto real: entra no lugar do placeholder quando o campo
   "foto" é preenchido em dados/catalogo.json ---- */

.placeholder__img {
  display: block; width: 100%;
  object-fit: cover; object-position: center;
  padding: 0; background: none;
}
.placeholder__img.placeholder--capa { height: 180px; }
.placeholder__img.placeholder--quadro { width: 82px; height: 82px; flex: none; border-radius: 12px; }

/* ---- aviso de tabela indisponível (JSON não carregou) ---- */

.catalogo__erro {
  grid-column: 1 / -1;
  margin: 0; padding: 26px 28px;
  border-radius: 14px;
  background: rgba(115, 76, 128, .06);
  border: 1px solid rgba(115, 76, 128, .18);
  font-size: 15px; line-height: 1.6; color: var(--texto-2);
}
.catalogo__erro a { color: var(--roxo); text-decoration: underline; text-underline-offset: 3px; }

/* ---- grade de categorias ---- */

.catalogo { margin-top: 48px; }
.categorias {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card-cat {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(27, 23, 20, .04), 0 8px 24px -16px rgba(27, 23, 20, .18);
  transition: box-shadow .35s var(--suave), transform .35s var(--suave);
}
.card-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(27, 23, 20, .05), 0 18px 40px -22px rgba(27, 23, 20, .3);
}
.card-cat__corpo { display: flex; flex-direction: column; gap: 16px; flex: 1; padding: 24px; }
.card-cat__titulo { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
.card-cat__meta { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--texto-3); }
.card-cat__botao {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start; margin-top: auto;
  padding: 10px 20px; border: 0; border-radius: 999px;
  background: #f8f4eb; color: var(--marrom);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background .3s var(--suave), color .3s var(--suave), gap .3s var(--suave);
}
.card-cat__botao:hover { background: var(--marrom); color: #f8f4eb; gap: 12px; }

/* ---- lista de procedimentos da categoria ---- */

.voltar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 0; border-radius: 999px;
  background: transparent; color: var(--texto-3);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; cursor: pointer;
  transition: background .3s var(--suave), color .3s var(--suave);
}
.voltar:hover { background: rgba(27, 23, 20, .06); color: var(--tinta); }

.detalhe__cabeca { margin-top: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--linha); }
.detalhe__titulo { margin: 0; font-size: clamp(24px, 3.4vw, 34px); font-weight: 600; letter-spacing: -.025em; }
.detalhe__meta { margin-top: 10px; font-family: var(--mono); font-size: 12px; color: var(--texto-3); }

.itens-proc {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 12px; margin: 24px 0 0; padding: 0; list-style: none;
}
.item-proc {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 12px; border: 0; border-radius: 16px;
  background: #fff; text-align: left; cursor: pointer;
  box-shadow: 0 1px 2px rgba(27, 23, 20, .04), 0 0 0 1px rgba(27, 23, 20, .04);
  transition: box-shadow .3s var(--suave), background .3s var(--suave);
}
.item-proc:hover { box-shadow: 0 10px 28px -20px rgba(27, 23, 20, .45), 0 0 0 1px rgba(27, 23, 20, .06); }
.item-proc[aria-pressed="true"] {
  background: #f8f4eb;
  box-shadow: 0 10px 28px -20px rgba(27, 23, 20, .5), 0 0 0 2px var(--marrom);
}
.item-proc__texto { min-width: 0; flex: 1; }
.item-proc__nome { margin: 0; font-size: 16px; font-weight: 500; letter-spacing: -.01em; line-height: 1.35; }
.item-proc__meta { margin-top: 7px; font-family: var(--mono); font-size: 12px; color: var(--texto-3); }
.item-proc__preco { color: var(--marrom); }
.item-proc__marca {
  flex: none; width: 24px; height: 24px; margin-right: 6px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(27, 23, 20, .18);
  transition: background .3s var(--suave), box-shadow .3s var(--suave);
}
.item-proc[aria-pressed="true"] .item-proc__marca {
  background: var(--marrom) center / 12px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23f8f4eb' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.5 3.5L13 5'/%3E%3C/svg%3E");
  box-shadow: none;
}

/* ---- rodapé de agendamento ---- */

.cta-agendar {
  position: sticky; bottom: 16px; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 32px; padding: 20px 22px;
  border-radius: 16px;
  background: var(--tinta); color: var(--papel);
  box-shadow: 0 24px 50px -28px rgba(27, 23, 20, .7);
  opacity: 0; transform: translateY(16px);
  transition: opacity .45s var(--suave), transform .45s var(--suave);
}
.cta-agendar.visivel { opacity: 1; transform: none; }
.cta-agendar__texto { min-width: 0; }
.cta-agendar__rotulo {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--lilas);
}
.cta-agendar__nome { margin-top: 8px; font-size: 17px; font-weight: 500; letter-spacing: -.01em; }
.cta-agendar__meta { margin-top: 5px; font-family: var(--mono); font-size: 12px; color: var(--creme-62); }

/* ====================== CUIDADO ====================== */

.cuidado__titulo {
  font-size: clamp(34px, 5vw, 74px);
  line-height: 1; letter-spacing: -.038em; font-weight: 600;
  max-width: 14em;
}
.cuidado__titulo em { color: var(--roxo); }
.recursos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-top: 72px;
  border-top: 1px solid rgba(104, 67, 34, .22);
}
.recursos li {
  padding: 38px 34px 44px 0;
  border-bottom: 1px solid var(--linha-marrom-fraca);
}
.recursos__n { font-family: var(--mono); font-size: 11px; letter-spacing: .18em; color: var(--roxo); }
.recursos__titulo { margin: 18px 0 12px; font-size: 20px; font-weight: 600; letter-spacing: -.018em; }
.recursos p { font-size: 15px; line-height: 1.68; color: var(--texto-2); max-width: 34em; text-wrap: pretty; }

/* ====================== CITAÇÃO ====================== */

.citacao { padding: clamp(96px, 14vw, 150px) 0; text-align: center; }
.citacao__interno { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
.citacao blockquote {
  margin: 0;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 4.4vw, 58px);
  line-height: 1.24; letter-spacing: -.02em;
  text-wrap: pretty;
}
.citacao figcaption {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 44px;
}
.citacao figcaption > div { text-align: left; }
.citacao__nome { font-size: 14px; font-weight: 600; }
.citacao__papel {
  margin-top: 4px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--texto-3);
}

/* ====================== CHAMADA FINAL ====================== */

.agendar {
  position: relative; overflow: hidden;
  padding: clamp(96px, 14vw, 150px) var(--gutter) var(--secao);
  text-align: center;
}
.agendar__brilho {
  position: absolute; left: 50%; bottom: -40%;
  width: 900px; height: 900px; margin-left: -450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115, 76, 128, .34), rgba(115, 76, 128, 0) 66%);
  filter: blur(30px); pointer-events: none;
}
.agendar__interno { position: relative; max-width: 1000px; margin: 0 auto; }
.agendar__titulo {
  margin-top: 30px;
  font-size: clamp(40px, 7.5vw, 116px);
  line-height: .95; letter-spacing: -.045em; font-weight: 600;
}
.agendar__titulo em { color: var(--lilas); }
.agendar__texto {
  max-width: 540px; margin: 34px auto 0;
  font-size: 16.5px; line-height: 1.7; color: var(--creme-62);
}
.agendar__acoes {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-top: 46px;
}
.agendar__endereco {
  margin-top: 34px;
  font-style: normal;
  font-size: 14.5px; line-height: 1.65;
  color: var(--creme-70);
}

.agendar__nota {
  margin-top: 26px;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .1em; color: rgba(250, 240, 220, .4);
}

/* ============ SEÇÕES ALIMENTADAS PELO PAINEL ============
   Vídeos e galeria começam com [hidden] no HTML e só aparecem
   quando há conteúdo publicado — ver api/landing.js.
   ======================================================== */

.secao-conteudo { padding: 110px var(--gutter); }
.secao-conteudo__interno { max-width: var(--max); margin: 0 auto; }

.secao-conteudo__titulo {
  margin: 14px 0 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06; letter-spacing: -.02em;
}

/* ---- galeria de vídeos ---- */

.videos { background: var(--papel-2, #FFFDF8); border-top: 1px solid var(--linha-fraca); }

.videos__grade {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 46px;
}

.video-card__moldura {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 8px; overflow: hidden;
  background: var(--tinta-fundo, #201C1A);
  border: 1px solid var(--linha-fraca);
}
.video-card__moldura iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.video-card__play {
  position: absolute; inset: 0;
  padding: 0; border: 0; cursor: pointer;
  background: rgba(115, 76, 128, .12);
  display: grid; place-items: center;
}
.video-card__play img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.video-card__disco {
  position: relative;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(250, 240, 220, .94);
  display: grid; place-items: center;
  transition: transform .4s var(--suave);
}
.video-card__disco::after {
  content: '';
  width: 0; height: 0; margin-left: 5px;
  border-left: 19px solid var(--marrom);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.video-card__play:hover .video-card__disco { transform: scale(1.08); }

.video-card__externo {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--creme-70); font-size: 14px; text-decoration: none;
}

.video-card__titulo {
  margin: 18px 0 0;
  font-size: 19px; font-weight: 600; letter-spacing: -.015em;
}
.video-card__texto {
  margin: 8px 0 0;
  font-size: 14.5px; line-height: 1.6; color: var(--texto-2);
  text-wrap: pretty;
}

/* ---- galeria de imagens ---- */

.galeria__grade {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px; margin-top: 46px;
}
.galeria-item { margin: 0; overflow: hidden; border-radius: 4px; }
.galeria-item img {
  width: 100%; height: 100%; aspect-ratio: 1;
  object-fit: cover; display: block;
  transition: transform .7s var(--suave);
}
.galeria-item:hover img { transform: scale(1.04); }

/* ---- formulário de contato ---- */

.contato { background: var(--creme-suave, #F7EEDC); border-top: 1px solid var(--linha-fraca); }

.contato__interno {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px); align-items: start;
}

.contato__ajuda {
  margin: 24px 0 0; max-width: 42ch;
  font-size: 16.5px; line-height: 1.7; color: var(--texto-2);
  text-wrap: pretty;
}
.contato__direto { margin: 20px 0 0; font-size: 15px; color: var(--texto-2); }
.contato__direto a { color: var(--roxo); border-bottom: 1px solid rgba(115, 76, 128, .3); }

.contato__form {
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--linha-fraca);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(27, 23, 20, .04), 0 24px 60px -40px rgba(27, 23, 20, .35);
}

.campo-lead { display: flex; flex-direction: column; gap: 7px; }
.campo-lead > span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--texto-3);
}
.campo-lead > span em { font-style: normal; text-transform: none; letter-spacing: 0; opacity: .75; }

.campo-lead input, .campo-lead select, .campo-lead textarea {
  font-family: var(--sans); font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid var(--linha); border-radius: 8px;
  background: #fff; color: var(--tinta); width: 100%;
  transition: border-color .25s var(--suave);
}
.campo-lead textarea { resize: vertical; line-height: 1.6; }
.campo-lead input:focus, .campo-lead select:focus, .campo-lead textarea:focus { border-color: var(--roxo); }

.contato__form .botao { align-self: flex-start; margin-top: 4px; }

.contato__aviso {
  margin: 0; font-size: 14px; line-height: 1.55;
  padding: 12px 14px; border-radius: 8px;
  background: rgba(46, 107, 79, .09); color: #2E6B4F;
  border: 1px solid rgba(46, 107, 79, .2);
}
.contato__aviso[data-erro] {
  background: rgba(155, 59, 50, .08); color: #9B3B32;
  border-color: rgba(155, 59, 50, .2);
}

.contato__lgpd { margin: 0; font-size: 12px; line-height: 1.5; color: var(--texto-3); }

@media (max-width: 860px) {
  .secao-conteudo { padding: 76px var(--gutter); }
  .contato__interno { grid-template-columns: minmax(0, 1fr); }
  .contato__form { padding: 24px; }
}

/* ====================== RODAPÉ ====================== */

.rodape {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
  padding: 52px var(--gutter);
  background: var(--tinta);
  border-top: 1px solid rgba(250, 240, 220, .12);
}
.rodape__marca { display: flex; align-items: center; gap: 16px; }
.rodape__marca img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.rodape__marca span { font-size: 13.5px; color: rgba(250, 240, 220, .5); }
.rodape__contato {
  display: flex; flex-direction: column; gap: 5px;
  font-style: normal; font-size: 13.5px; line-height: 1.5;
  color: rgba(250, 240, 220, .5);
}
.rodape__tel {
  font-size: 16px; color: var(--creme-70);
  transition: color .3s var(--suave);
}
.rodape__tel:hover { color: var(--lilas); }

.rodape__links { display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; }
.rodape__links a { color: var(--creme-70); transition: color .3s var(--suave); }
.rodape__links a:hover { color: var(--lilas); }

/* ====================== RESPONSIVO ====================== */

@media (min-width: 900px) {
  .cabecalho__agendar { display: inline-block; }
}

@media (max-width: 760px) {
  .hero { padding-top: 120px; }
  .hero__rodape { gap: 30px; }
  .hero__assinatura { gap: 16px; }
  .numeros, .etapas { grid-template-columns: minmax(0, 1fr); }
  .etapas { border-left: 0; }
  .etapas li { border-right: 0; }
  .repigment__topo { padding-top: 92px; }
  .categorias { grid-template-columns: minmax(0, 1fr); }
  .itens-proc { grid-template-columns: minmax(0, 1fr); }
  .cta-agendar { gap: 16px; padding: 18px; }
  .cta-agendar .botao--creme { width: 100%; justify-content: space-between; }
  .recursos li { padding-right: 0; }
  .menu__interno { padding-top: 108px; gap: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;   /* senão a cascata só atrasa a chegada */
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv { opacity: 1; transform: none; }
}
