/* ============================================================
   Milly Duarte Nutricionista — folha de estilo
   Paleta e tipografia conforme a identidade visual da marca
   ============================================================ */

@font-face {
  font-family: 'Breath';
  src: url('../fonte/breath.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --vinho: #4E1937;
  --vinho-claro: #7A2A53;
  --rosa: #A63A71;
  --rosa-escuro: #8E3062;
  --ouro-claro: #FBC996;
  --ouro: #BFA096;
  --terra: #AB775F;
  --creme: #FBF7F4;
  --creme-2: #F5EDE7;
  --creme-3: #F7EDE6;
  --branco: #FFFFFF;
  --texto: #3A2B32;
  --texto-2: #5C4A50;
  --texto-3: #8A7368;
  --texto-4: #A6918A;
  --borda: #EFE4DC;
  --borda-2: #E8DCD4;

  --fonte: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Breath', 'Segoe Script', cursive;

  --largura: 1296px;
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 18px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--texto);
  font-family: var(--fonte);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
p { margin: 0; text-wrap: pretty; }
h1, h2, h3, h4 { margin: 0; font-weight: 300; text-wrap: balance; }
a { color: var(--terra); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rosa); }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--ouro-claro);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.pular-para-conteudo {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ouro-claro);
  color: var(--vinho);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.pular-para-conteudo:focus { left: 0; }

/* ---------- elementos recorrentes ---------- */

.rotulo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
}
.rotulo::before,
.rotulo.centro::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ouro);
  flex-shrink: 0;
}
.rotulo.centro { justify-content: center; }
.rotulo.claro { color: var(--ouro-claro); }

.script {
  font-family: var(--script);
  line-height: 0.9;
  color: var(--rosa);
}
.script.ouro { color: var(--ouro-claro); }

h1 { font-size: clamp(2rem, 1.15rem + 3.3vw, 3.625rem); font-weight: 200; line-height: 1.14; letter-spacing: -0.015em; }
h1 .script { font-size: clamp(2.9rem, 1.5rem + 5vw, 5.125rem); display: block; margin-top: 0.06em; }
h2 { font-size: clamp(1.65rem, 1.1rem + 2.1vw, 2.375rem); font-weight: 200; line-height: 1.22; }
h2 .script { font-size: clamp(2.4rem, 1.55rem + 3.1vw, 3.375rem); }
h3 { font-size: 1.05rem; font-weight: 500; }

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.botao svg { flex-shrink: 0; }
.botao--ouro { background: var(--ouro-claro); color: var(--vinho); }
.botao--ouro:hover { background: #ffd9b2; color: var(--vinho); transform: translateY(-2px); }
.botao--rosa { background: var(--rosa); color: var(--branco); }
.botao--rosa:hover { background: var(--vinho-claro); color: var(--branco); transform: translateY(-2px); }
.botao--contorno {
  color: #F4E3DA;
  font-weight: 300;
  border: 1px solid rgba(251, 201, 150, 0.42);
}
.botao--contorno:hover { color: var(--ouro-claro); border-color: var(--ouro-claro); }

.link-seta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--rosa);
  font-size: 0.875rem;
  font-weight: 500;
}
.link-seta svg { transition: transform .2s ease; }
.link-seta:hover svg { transform: translateX(4px); }

.secao { padding-block: clamp(3.5rem, 7vw, 6rem); }

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

.cabecalho {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 18px;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.cabecalho.rolado {
  background: rgba(78, 25, 55, 0.96);
  backdrop-filter: blur(10px);
  padding-block: 10px;
  box-shadow: 0 6px 30px rgba(40, 10, 28, 0.28);
}
.cabecalho__interno {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cabecalho__logo img { height: 46px; width: auto; transition: height .3s ease; }
.cabecalho.rolado .cabecalho__logo img { height: 38px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__link {
  color: #F4E3DA;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ouro-claro);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--ouro-claro); }
.nav__link:hover::after { width: 100%; }
.nav__divisor { width: 1px; height: 22px; background: rgba(251, 201, 150, 0.32); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ouro-claro);
  font-size: 0.875rem;
  font-weight: 400;
}
.nav__cta:hover { color: #ffd9b2; }

.menu-botao {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid rgba(251, 201, 150, 0.34);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

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

.hero {
  position: relative;
  background: var(--vinho);
  overflow: hidden;
  padding-top: clamp(6rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8.25rem);
}
.hero__textura {
  position: absolute;
  inset: 0;
  background-image: url('../img/padrao.png');
  background-size: 460px;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__halo {
  position: absolute;
  top: -220px; left: -180px;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 58, 113, 0.85) 0%, rgba(78, 25, 55, 0) 68%);
  pointer-events: none;
}
.hero__curva {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 96px;
  background: var(--creme);
  border-radius: 0 120px 0 0;
}
.hero__grade {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.hero__conteudo { display: flex; flex-direction: column; gap: 30px; max-width: 640px; }
.hero h1 { color: var(--branco); }
.hero__texto {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 30rem;
}
.hero__acoes { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-top: 6px; }
.hero__locais {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
}
.hero__local { display: flex; align-items: center; gap: 9px; }
.hero__locais .barra { width: 1px; height: 16px; background: rgba(251, 201, 150, 0.28); }

.hero__foto { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__brilho {
  position: absolute;
  right: 40px; bottom: 0;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 58, 113, 0.6) 0%, rgba(78, 25, 55, 0) 70%);
}
.arco {
  position: relative;
  width: 430px;
  aspect-ratio: 430 / 560;
  border-radius: 215px 215px 22px 22px;
  overflow: hidden;
  background: var(--rosa-escuro);
}
.arco img { width: 100%; height: 100%; object-fit: cover; }

.cartao-credencial {
  position: absolute;
  right: -24px; bottom: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--creme);
  padding: 14px 24px 14px 18px;
  border-radius: 14px;
  box-shadow: 0 22px 48px rgba(78, 25, 55, 0.34);
}
.cartao-credencial img { width: 52px; height: 52px; }
.cartao-credencial strong { display: block; color: var(--rosa); font-size: 0.9375rem; font-weight: 500; }
.cartao-credencial span { color: var(--texto-3); font-size: 0.75rem; letter-spacing: 0.06em; }

/* ============================================================
   FAIXA DE NÚMEROS
   ============================================================ */

.faixa { padding-top: 26px; padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.faixa__grade {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--borda-2);
  border-block: 1px solid var(--borda-2);
}
.faixa__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--creme);
  padding: 30px 26px;
}
.faixa__numero { color: var(--rosa); font-size: 1.75rem; font-weight: 200; line-height: 1.1; }
.faixa__numero small { font-size: 1rem; }
.faixa__item p { color: var(--texto-3); font-size: 0.8125rem; line-height: 1.5; }

/* ============================================================
   CABEÇALHO DE SEÇÃO
   ============================================================ */

.secao__topo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.75rem);
  padding-bottom: clamp(2rem, 4vw, 2.875rem);
}
.secao__topo--fim { align-items: flex-end; }
.secao__topo-texto { display: flex; flex-direction: column; gap: 16px; max-width: 36rem; }
.secao__topo p { color: var(--texto-3); font-size: 0.9375rem; line-height: 1.7; }
.secao__topo--centro {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.secao__topo--centro .secao__topo-texto { align-items: center; text-align: center; }
.secao__nota { color: #B3A099; font-size: 0.78rem; font-style: italic; max-width: 20rem; }

/* ============================================================
   ATENDIMENTOS
   ============================================================ */

.atendimentos { padding-top: 26px; }
.cartoes-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.cartao {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.cartao__cabeca { display: flex; align-items: center; gap: 14px; }
.cartao__cabeca h3 { font-size: 1.375rem; font-weight: 400; }
.icone-circulo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--creme-3);
  flex-shrink: 0;
}
.cartao > p { color: var(--texto-3); font-size: 0.9rem; line-height: 1.75; }
.lista-check { display: flex; flex-direction: column; gap: 10px; }
.lista-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--texto-2);
  font-size: 0.875rem;
  line-height: 1.5;
}
.lista-check svg { flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   ESPECIALIDADES
   ============================================================ */

.especialidades { background: var(--creme-2); }
.cartoes-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.cartao-especialidade {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--branco);
  border-radius: 16px;
  border-top: 2px solid var(--ouro-claro);
  padding: 34px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cartao-especialidade:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(120, 80, 60, 0.1); }
.cartao-especialidade p { color: var(--texto-3); font-size: 0.84rem; line-height: 1.7; }

/* ============================================================
   SOBRE
   ============================================================ */

.sobre__grade {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.sobre__foto { position: relative; }
.sobre__foto .arco {
  width: 100%;
  aspect-ratio: 520 / 560;
  border-radius: 260px 260px 18px 18px;
  background: #F0DCCE;
}
.sobre__selo {
  position: absolute;
  right: -34px; bottom: 40px;
  width: 108px; height: 108px;
  filter: drop-shadow(0 14px 30px rgba(78, 25, 55, 0.22));
}
.sobre__conteudo { display: flex; flex-direction: column; gap: 22px; }
.sobre__conteudo p { color: var(--texto-2); font-size: 0.96rem; line-height: 1.85; }
.sobre__dados {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  padding-top: 24px;
  margin-top: 10px;
  border-top: 1px solid var(--borda);
}
.sobre__dado strong { display: block; color: var(--rosa); font-size: 1.625rem; font-weight: 200; line-height: 1.2; }
.sobre__dado span { color: var(--texto-3); font-size: 0.8125rem; }

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

.metodo { position: relative; background: var(--vinho); overflow: hidden; }
.metodo__textura {
  position: absolute;
  inset: 0;
  background-image: url('../img/padrao.png');
  background-size: 460px;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
}
.metodo .container { position: relative; }
.metodo h2 { color: var(--branco); }
.metodo__intro { color: rgba(255, 255, 255, 0.62); font-size: 0.9rem; line-height: 1.75; max-width: 24rem; }
.passos { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.passo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(251, 201, 150, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.passo__numero { font-family: var(--script); color: var(--ouro-claro); font-size: 2.625rem; line-height: 1; }
.passo h3 { color: var(--branco); }
.passo p { color: rgba(255, 255, 255, 0.6); font-size: 0.84rem; line-height: 1.7; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */

.cartoes-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.depoimento {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}
.depoimento blockquote { margin: 0; color: var(--texto-2); font-size: 0.9rem; line-height: 1.8; }
.depoimento figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #F2E8E1;
}
.depoimento__avatar { width: 38px; height: 38px; border-radius: 50%; background: #F0DCCE; flex-shrink: 0; }
.depoimento__nome { color: var(--texto); font-size: 0.875rem; font-weight: 500; }
.depoimento__formato { color: var(--texto-4); font-size: 0.75rem; }

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

.chamada { padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.chamada__caixa {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--rosa) 0%, var(--vinho-claro) 62%, var(--vinho) 100%);
  border-radius: 26px;
  padding: clamp(2.5rem, 5vw, 4.125rem) clamp(1.75rem, 4vw, 4rem);
  overflow: hidden;
}
.chamada__anel {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251, 201, 150, 0.28);
  pointer-events: none;
}
.chamada__anel--1 { right: -70px; top: -70px; width: 340px; height: 340px; }
.chamada__anel--2 { right: 10px; bottom: -140px; width: 260px; height: 260px; border-color: rgba(251, 201, 150, 0.18); }
.chamada__texto { position: relative; display: flex; flex-direction: column; gap: 18px; max-width: 40rem; }
.chamada h2 { color: var(--branco); }
.chamada p { color: rgba(255, 255, 255, 0.72); font-size: 0.9375rem; line-height: 1.75; }
.chamada__acao { position: relative; display: flex; flex-direction: column; gap: 14px; }
.chamada__acao span { color: rgba(255, 255, 255, 0.55); font-size: 0.78rem; text-align: center; }

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

.rodape { background: var(--vinho); padding-top: clamp(3rem, 5vw, 4.5rem); padding-bottom: 28px; }
.rodape__grade {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.75rem);
  padding-bottom: 44px;
}
.rodape__marca { display: flex; flex-direction: column; gap: 20px; max-width: 22rem; }
.rodape__marca img { width: 230px; }
.rodape__marca p { color: rgba(255, 255, 255, 0.55); font-size: 0.84rem; line-height: 1.75; }
.rodape__titulo {
  color: var(--ouro-claro);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.rodape__coluna ul { display: flex; flex-direction: column; gap: 12px; }
.rodape__coluna a, .rodape__coluna li { color: rgba(255, 255, 255, 0.68); font-size: 0.84rem; }
.rodape__coluna a:hover { color: var(--ouro-claro); }
.rodape__coluna .apagado { color: rgba(255, 255, 255, 0.45); }
.rodape__redes { display: flex; gap: 12px; margin-bottom: 16px; }
.rodape__rede {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(251, 201, 150, 0.3);
  transition: border-color .2s ease, background-color .2s ease;
}
.rodape__rede:hover { border-color: var(--ouro-claro); background: rgba(251, 201, 150, 0.08); }
.rodape__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(251, 201, 150, 0.16);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

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

@media (max-width: 1180px) {
  .hero__grade { grid-template-columns: minmax(0, 1fr); }
  .hero__foto { justify-content: flex-start; margin-top: 8px; }
  .arco { width: min(380px, 80vw); }
  .cartao-credencial { right: auto; left: min(240px, 55vw); bottom: 20px; }
  .sobre__grade { grid-template-columns: minmax(0, 420px) minmax(0, 1fr); }
  .cartoes-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rodape__grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rodape__marca { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-botao { display: flex; }

  .nav--aberta {
    display: flex;
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    background: var(--vinho);
    padding: 0 var(--gutter);
    z-index: 200;
  }
  .nav--aberta .nav__link { font-size: 1.5rem; font-weight: 200; padding-block: 14px; }
  .nav--aberta .nav__divisor { display: none; }
  .nav--aberta .nav__cta { margin-top: 20px; font-size: 1.125rem; }

  .menu-fechar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px; right: var(--gutter);
    width: 48px; height: 48px;
    border: 1px solid rgba(251, 201, 150, 0.34);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .passos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cartoes-3 { grid-template-columns: minmax(0, 1fr); }
  .sobre__grade { grid-template-columns: minmax(0, 1fr); }
  .sobre__foto .arco { width: min(420px, 100%); }
  .sobre__selo { right: auto; left: min(340px, 78%); }
  .secao__topo { flex-direction: column; align-items: flex-start; }
  .secao__topo .rotulo { order: -1; }
  .secao__topo--centro .rotulo { order: 0; }
  .secao__topo--centro { align-items: center; }
  .secao__nota { max-width: none; }
  .faixa__grade { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .cartoes-2 { grid-template-columns: minmax(0, 1fr); }
  .cartoes-4 { grid-template-columns: minmax(0, 1fr); }
  .passos { grid-template-columns: minmax(0, 1fr); }
  .hero__curva { height: 60px; border-radius: 0 56px 0 0; }
  .hero__halo { width: 420px; height: 420px; top: -160px; left: auto; right: -140px; }
  .arco { width: 100%; }
  .hero__foto {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero__brilho { display: none; }
  .hero__locais .barra { display: none; }
  .hero__locais { gap: 10px 0; flex-direction: column; align-items: flex-start; }
  .cartao-credencial {
    position: relative;
    right: auto; left: auto; bottom: auto;
    margin: -34px 16px 0 16px;
    align-self: center;
  }
  .hero__acoes .botao { width: 100%; }
  .chamada__acao { width: 100%; }
  .chamada__acao .botao { width: 100%; }
  .sobre__selo { width: 84px; height: 84px; left: auto; right: 6px; bottom: -22px; }
  .sobre__foto { margin-bottom: 34px; }
  .rodape__grade { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- aparecer ao rolar ---------- */
.revelar { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.revelar.visivel { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .revelar { opacity: 1; transform: none; }
}

/* âncoras não ficam escondidas sob o cabeçalho fixo */
section[id] { scroll-margin-top: 88px; }
