/* ==========================================================================
   VRM Biomedicina Estética — Landing page
   Paleta amostrada do logotipo: âmbar #fcb430 + carmim #b41824,
   assentados sobre uma base de cinzas neutros (identidade da clínica).
   ========================================================================== */

:root {
  /* — marca — */
  --carmim:        #b41824;
  --carmim-escuro: #8e1019;
  --carmim-tinta:  #5d0b12;
  --carmim-veu:    #fbecec;

  --ambar:         #fcb430;
  --ambar-fundo:   #e79a12;
  --ambar-tinta:   #8a5a05;   /* âmbar legível como texto (AA sobre claro) */
  --ambar-veu:     #fdf3de;

  /* — cinzas — */
  --c0:   #ffffff;
  --c25:  #fbfbfa;
  --c50:  #f5f5f3;
  --c100: #ededea;
  --c200: #e0dfdc;
  --c300: #c8c6c2;
  --c400: #a09d99;
  --c500: #78756f;
  --c600: #575450;
  --c700: #403e3b;
  --c800: #2b2a28;
  --c900: #1b1a19;

  --serifa: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --sombra-1: 0 1px 2px rgba(27, 26, 25, .05);
  --sombra-2: 0 12px 32px -16px rgba(27, 26, 25, .22);
  --sombra-3: 0 28px 64px -32px rgba(27, 26, 25, .32);

  --raio:    14px;
  --raio-sm: 10px;
  --largura: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c600);
  background: var(--c25);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serifa);
  font-weight: 500;
  line-height: 1.14;
  color: var(--c900);
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.35rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }
h1 em, h2 em { font-style: italic; color: var(--carmim); }

::selection { background: var(--ambar); color: var(--c900); }

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

.container { width: min(var(--largura), calc(100% - 48px)); margin-inline: auto; }
.secao     { padding: clamp(4rem, 8vw, 7.5rem) 0; }
section[id], main[id] { scroll-margin-top: 118px; }
.secao-clara { background: var(--c0); }
.secao-cinza { background: var(--c50); }

.pular-para-conteudo {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--c900); color: var(--c0); padding: .8rem 1.4rem;
}
.pular-para-conteudo:focus { left: 1rem; top: 1rem; }

/* ---------- selo / olho de seção -------------------------------------- */

.olho {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .74rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ambar-tinta);
  margin-bottom: 1.1rem;
}
.olho::before {
  content: ""; width: 30px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--ambar), var(--ambar-fundo));
}
.olho-centro { justify-content: center; }
.olho-centro::after {
  content: ""; width: 30px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--ambar-fundo), var(--ambar));
}

.regua-ouro {
  width: 62px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ambar), var(--ambar-fundo));
}

.cabecalho-secao { max-width: 720px; }
.cabecalho-secao.centro { max-width: 780px; margin-inline: auto; text-align: center; }
.cabecalho-secao p { margin-top: 1.1rem; font-size: 1.075rem; color: var(--c500); }

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

.botao {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  letter-spacing: .02em; line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.botao svg { width: 19px; height: 19px; flex: none; fill: currentColor; }

.botao-primario {
  background: var(--carmim); color: var(--c0);
  box-shadow: 0 12px 26px -14px rgba(180, 24, 36, .75);
}
.botao-primario:hover { background: var(--carmim-escuro); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(180, 24, 36, .8); }

.botao-contorno {
  background: transparent; color: var(--c800);
  border-color: var(--c300);
}
.botao-contorno:hover { border-color: var(--carmim); color: var(--carmim); transform: translateY(-2px); }

.botao-claro { background: var(--c0); color: var(--carmim); }
.botao-claro:hover { background: var(--ambar-veu); transform: translateY(-2px); }

.botao-largo { width: 100%; }

/* ---------- topo ------------------------------------------------------- */

.topo {
  position: sticky; top: 0; z-index: 60;
  border-top: 3px solid var(--carmim);
  border-bottom: 1px solid var(--c200);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.topo-interno {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: .7rem 0; min-height: 104px;
}
.marca img { height: 76px; width: auto; }
.topo-nav { display: flex; align-items: center; gap: 2rem; }
.topo-nav a {
  font-size: .82rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--c600); transition: color .15s ease;
}
.topo-nav a:hover { color: var(--carmim); }

.topo-contato {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.25;
  padding-left: 1.6rem; border-left: 1px solid var(--c200);
}
.topo-contato span {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c400);
}
.topo-contato strong {
  font-family: var(--serifa); font-size: 1.32rem; font-weight: 600; color: var(--c900);
  transition: color .15s ease;
}
.topo-contato:hover strong { color: var(--carmim); }

/* ---------- hero ------------------------------------------------------- */

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(920px 520px at 82% -8%, var(--ambar-veu) 0%, transparent 62%),
    linear-gradient(180deg, var(--c0) 0%, var(--c25) 100%);
}
.hero-grade {
  display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}

.hero-foto { position: relative; }
.hero-foto img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--raio);
  box-shadow: var(--sombra-3);
}
.hero-foto::before {                 /* moldura âmbar deslocada */
  content: ""; position: absolute; z-index: 0;
  inset: -16px -16px 34px 30px;
  border: 1px solid var(--ambar);
  border-radius: var(--raio);
  opacity: .55;
}
.hero-credencial {
  position: absolute; z-index: 2; left: -18px; bottom: 26px;
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1.15rem;
  background: var(--c0); border: 1px solid var(--c200);
  border-radius: var(--raio-sm); box-shadow: var(--sombra-2);
}
.hero-credencial-marca {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--carmim); color: var(--c0);
  font-family: var(--serifa); font-size: 1.05rem; font-weight: 600;
}
.hero-credencial b { display: block; font-size: .86rem; font-weight: 500; color: var(--c900); }
.hero-credencial span { font-size: .74rem; letter-spacing: .04em; color: var(--c500); }

.hero-copy h1 { margin-bottom: 1.15rem; }
.hero-servicos {
  font-size: .88rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c500); margin-bottom: 1.5rem;
}
.hero-copy .regua-ouro { margin-bottom: 1.6rem; }
.hero-copy p + p { margin-top: 1rem; }
.hero-copy .lead { font-size: 1.13rem; color: var(--c700); }
.hero-acoes { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero-selos {
  display: flex; flex-wrap: wrap; gap: .55rem 1.6rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--c200);
  font-size: .8rem; letter-spacing: .06em; color: var(--c500);
}
.hero-selos li { list-style: none; display: flex; align-items: center; gap: .5rem; }
.hero-selos li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ambar-fundo);
}

/* ---------- faixa de pilares ------------------------------------------ */

.pilares { background: var(--c0); border-block: 1px solid var(--c200); }
.pilares-grade {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pilar {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: clamp(2rem, 3.5vw, 2.9rem) clamp(1.4rem, 2.6vw, 2.4rem);
  border-left: 1px solid var(--c200);
}
.pilar:first-child { border-left: 0; padding-left: 0; }
.pilar:last-child  { padding-right: 0; }
.pilar p { font-size: .98rem; color: var(--c600); }
.pilar strong { color: var(--c900); font-weight: 500; }

.pilar-icone {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
}
.pilar-icone svg { width: 21px; height: 21px; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icone-carmim { background: var(--carmim-veu); }
.icone-carmim svg { stroke: var(--carmim); }
.icone-ambar  { background: var(--ambar-veu); }
.icone-ambar svg  { stroke: var(--ambar-tinta); }
.icone-cinza  { background: var(--c100); }
.icone-cinza svg  { stroke: var(--c700); }

/* ---------- procedimentos --------------------------------------------- */

.proc-grade {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.1rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.proc-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--c0); border: 1px solid var(--c200); border-radius: var(--raio);
  box-shadow: var(--sombra-1);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.proc-card:hover { transform: translateY(-4px); box-shadow: var(--sombra-3); border-color: var(--c300); }
.proc-foto { position: relative; overflow: hidden; background: var(--c100); aspect-ratio: 16 / 9; }
.proc-foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.proc-card:hover .proc-foto img { transform: scale(1.035); }
.proc-numero {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(27, 26, 25, .72); color: var(--ambar);
  font-family: var(--serifa); font-size: 1rem; font-weight: 600;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.proc-conteudo { padding: 1.7rem clamp(1.4rem, 2.2vw, 1.9rem) 1.9rem; display: flex; flex-direction: column; flex: 1; }
.proc-conteudo h3 { margin-bottom: .9rem; }
.proc-conteudo p { font-size: 1rem; }
.proc-indicacao {
  margin-top: auto; padding-top: 1.3rem;
  border-top: 1px dashed var(--c200);
  font-size: .82rem; letter-spacing: .04em; color: var(--c500);
}
.proc-indicacao b {
  display: block; margin-bottom: .3rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ambar-tinta);
}
.cta-centro { display: flex; justify-content: center; margin-top: clamp(2.4rem, 4vw, 3.4rem); }

/* ---------- protocolo (passos) ---------------------------------------- */

.passos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  counter-reset: passo;
}
.passo { position: relative; padding-top: 2.1rem; border-top: 2px solid var(--c200); }
.passo::before {
  counter-increment: passo; content: "0" counter(passo);
  position: absolute; top: -.05rem; left: 0; transform: translateY(-50%);
  padding-right: .7rem; background: var(--c50);
  font-family: var(--serifa); font-size: 1.5rem; font-weight: 600; color: var(--ambar-fundo);
  line-height: 1;
}
.passo h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.passo p { font-size: .96rem; }

/* ---------- avaliações -------------------------------------------------- */

.aval-topo {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.6rem;
}
.estrelas { display: flex; gap: .18rem; margin-top: .9rem; color: var(--ambar-fundo); font-size: 1.15rem; letter-spacing: .1em; }
.google-link {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .8rem 1.3rem;
  border: 1px solid var(--c200); border-radius: 999px; background: var(--c0);
  font-size: .88rem; color: var(--c700);
  transition: border-color .18s ease, transform .18s ease;
}
.google-link:hover { border-color: var(--ambar); transform: translateY(-2px); }
.google-marca {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c100); color: var(--carmim);
  font-family: var(--serifa); font-weight: 600; font-size: .95rem;
}

.aval-grade {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.2vw, 1.9rem);
  margin-top: clamp(2.2rem, 3.6vw, 3rem);
}
.aval-card {
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--c0); border: 1px solid var(--c200); border-radius: var(--raio);
  box-shadow: var(--sombra-1);
}
.aval-card > p { font-size: 1rem; color: var(--c600); }
.aval-cabeca { display: flex; align-items: center; gap: .85rem; }
.aval-avatar {
  width: 44px; height: 44px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--c100), var(--c200));
  color: var(--c700); font-family: var(--serifa); font-size: 1.15rem; font-weight: 600;
}
.aval-cabeca strong { display: block; font-size: .92rem; font-weight: 500; color: var(--c900); line-height: 1.35; }
.aval-cabeca .estrelas { margin-top: .1rem; font-size: .92rem; }

/* ---------- clínica ---------------------------------------------------- */

.clinica-grade {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.clinica-foto img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--raio); box-shadow: var(--sombra-3);
}
.clinica-copy h2 { margin-bottom: 1.15rem; }
.clinica-copy p + p { margin-top: 1rem; }
.frentes { display: grid; gap: .7rem; margin: 2rem 0; }
.frente {
  display: flex; align-items: center; gap: .9rem;
  padding: .95rem 1.2rem;
  background: var(--c0); border: 1px solid var(--c200); border-left: 3px solid var(--ambar);
  border-radius: var(--raio-sm);
  font-size: .95rem; color: var(--c700);
}
.frente strong { font-weight: 500; color: var(--c900); }
.frente-icone { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--carmim); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- perguntas --------------------------------------------------- */

.faq { max-width: 860px; margin: clamp(2.4rem, 4vw, 3.2rem) auto 0; }
.faq details {
  border-bottom: 1px solid var(--c200);
  background: transparent;
}
.faq details:first-of-type { border-top: 1px solid var(--c200); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  padding: 1.4rem 0; cursor: pointer; list-style: none;
  font-family: var(--serifa); font-size: 1.3rem; font-weight: 500; color: var(--c900);
  transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--carmim); }
.faq summary::after {
  content: ""; width: 11px; height: 11px; flex: none;
  border-right: 2px solid var(--ambar-fundo); border-bottom: 2px solid var(--ambar-fundo);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq details p { padding: 0 3rem 1.5rem 0; font-size: 1rem; color: var(--c600); }

/* ---------- chamada final ---------------------------------------------- */

.chamada {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--carmim-tinta) 0%, var(--carmim) 58%, var(--carmim-escuro) 100%);
  color: var(--c0);
  text-align: center;
}
.chamada::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1100px 460px at 50% -30%, rgba(252, 180, 48, .17), transparent 72%);
  pointer-events: none;
}
.chamada .container { position: relative; z-index: 1; }
.chamada h2 { color: var(--c0); max-width: 18ch; margin: 0 auto 1.2rem; }
.chamada p { max-width: 56ch; margin: 0 auto; color: rgba(255, 255, 255, .86); font-size: 1.075rem; }
.chamada .olho { color: var(--ambar); }
.chamada .olho::before, .chamada .olho::after { background: var(--ambar); }
.chamada-acoes { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.2rem; }
.chamada .botao-contorno { color: var(--c0); border-color: rgba(255, 255, 255, .45); }
.chamada .botao-contorno:hover { color: var(--c0); border-color: var(--ambar); background: rgba(255, 255, 255, .08); }

/* ---------- localização -------------------------------------------------- */

.local-grade {
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
}
.local-copy h2 { margin-bottom: .4rem; }
.local-copy address { font-style: normal; font-size: 1.1rem; color: var(--c700); margin: 1rem 0 1.8rem; }
.mapa {
  overflow: hidden; border-radius: var(--raio);
  border: 1px solid var(--c200); box-shadow: var(--sombra-2);
  background: var(--c100);
}
.mapa iframe { display: block; width: 100%; height: 380px; border: 0; }

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

.rodape { background: var(--c900); color: var(--c300); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.rodape-grade {
  display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.rodape-marca img { height: 84px; width: auto; margin-bottom: 1.3rem; }
.rodape-marca p { font-size: .93rem; color: var(--c400); max-width: 38ch; }
.rodape h4 {
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ambar);
  margin-bottom: 1.1rem;
}
.rodape ul { list-style: none; display: grid; gap: .6rem; font-size: .93rem; }
.rodape a:hover { color: var(--ambar); }
.rodape-base {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1rem 2rem;
  padding-top: 1.6rem; font-size: .8rem; line-height: 1.6; color: var(--c400);
}
.rodape-base p { max-width: 62ch; }

/* ---------- flutuantes --------------------------------------------------- */

.whats-flutuante {
  position: fixed; right: 22px; bottom: 26px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--carmim); color: var(--c0);
  box-shadow: 0 16px 34px -12px rgba(180, 24, 36, .8);
  transition: transform .2s ease, background-color .2s ease;
}
.whats-flutuante svg { width: 27px; height: 27px; fill: currentColor; }
.whats-flutuante:hover { transform: scale(1.07); background: var(--carmim-escuro); }

.barra-mobile { display: none; }

/* ---------- animação de entrada ----------------------------------------- */

.revelar { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.revelar.visivel { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .revelar { opacity: 1; transform: none; }
}

/* ---------- responsivo ---------------------------------------------------- */

@media (max-width: 1040px) {
  .topo-nav { display: none; }
  .hero-grade { grid-template-columns: 1fr; gap: 2.8rem; }
  .hero-foto { max-width: 440px; }
  .pilares-grade { grid-template-columns: 1fr; }
  .pilar { border-left: 0; border-top: 1px solid var(--c200); padding-inline: 0; }
  .pilar:first-child { border-top: 0; }
  .passos { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem; }
  .clinica-grade, .local-grade { grid-template-columns: 1fr; }
  .clinica-foto { order: -1; }
  .aval-grade { grid-template-columns: 1fr; }
  .rodape-grade { grid-template-columns: 1fr 1fr; }
  .rodape-marca { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 1.02rem; }
  .container { width: calc(100% - 36px); }
  .proc-grade { grid-template-columns: 1fr; }
  .marca img { height: 54px; }
  .topo-interno { min-height: 80px; }
  .topo-contato { padding-left: 0; border-left: 0; }
  .topo-contato span { display: none; }
  .topo-contato strong { font-size: 1.1rem; }
  .hero-foto::before { inset: -10px -10px 24px 20px; }
  .hero-credencial { left: 0; bottom: 16px; }
  .hero-acoes .botao { width: 100%; }
  .faq summary { font-size: 1.15rem; }
  .faq details p { padding-right: 1.5rem; }
  .mapa iframe { height: 300px; }

  .whats-flutuante { display: none; }
  .barra-mobile {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: .7rem 14px calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--c200);
  }
  .rodape { padding-bottom: 6.5rem; }
}

@media (max-width: 520px) {
  .passos { grid-template-columns: 1fr; }
  .rodape-grade { grid-template-columns: 1fr; }
  .aval-topo { flex-direction: column; align-items: flex-start; }
}

@media print {
  .topo, .whats-flutuante, .barra-mobile, .mapa { display: none; }
  body { background: #fff; }
  .revelar { opacity: 1; transform: none; }
}

@media (max-width: 760px) { section[id], main[id] { scroll-margin-top: 92px; } }

/* ---------- catálogo de tratamentos (links para as páginas internas) ------ */

.tratamentos-grade {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}
.tratamentos-grupo h3 {
  font-family: var(--sans); font-size: .7rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ambar-tinta);
  padding-bottom: .9rem; margin-bottom: .3rem;
  border-bottom: 1px solid var(--c200);
}
.tratamentos-lista { list-style: none; }
.tratamentos-lista li + li { border-top: 1px solid var(--c100); }
.tratamentos-lista a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .78rem 0;
  font-size: .97rem; color: var(--c700);
  transition: color .16s ease, padding-left .16s ease;
}
.tratamentos-lista a::after {
  content: "→"; flex: none;
  color: var(--c300); font-size: .95rem;
  transition: color .16s ease, transform .16s ease;
}
.tratamentos-lista a:hover { color: var(--carmim); padding-left: .35rem; }
.tratamentos-lista a:hover::after { color: var(--ambar-fundo); transform: translateX(3px); }

.tratamentos-rodape {
  margin-top: clamp(2rem, 3.5vw, 3rem); padding-top: 1.6rem;
  border-top: 1px solid var(--c200);
  text-align: center; font-size: .98rem; color: var(--c500);
}
.tratamentos-rodape a { color: var(--carmim); border-bottom: 1px solid var(--ambar); padding-bottom: 1px; }
.tratamentos-rodape a:hover { color: var(--carmim-escuro); border-bottom-color: var(--carmim); }

@media (max-width: 1040px) { .tratamentos-grade { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .tratamentos-grade { grid-template-columns: 1fr; gap: 2rem; } }

/* indicações em lista — o card 1 trouxe 4 itens e os quatro seguem o mesmo padrão */
.proc-indicacao ul { list-style: none; display: grid; gap: .4rem; }
.proc-indicacao li { position: relative; padding-left: 1.05rem; line-height: 1.5; }
.proc-indicacao li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--ambar-fundo);
}
